Skip to content

Commit

Permalink
Merge branch 'feature/css-in-js' into css-in-js/sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsongl committed Mar 11, 2021
2 parents 60ef501 + 1a35553 commit e7c9c43
Show file tree
Hide file tree
Showing 498 changed files with 1,474 additions and 862 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '* */8 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
stale-issue-message: '👋 Hey there. This issue hasn''t had any activity for 180 days. We''ll automatically close it if that trend continues for another week. If you feel this issue is still valid and needs attention please let us know with a comment.'
stale-pr-message: '👋 Hey there. This PR hasn''t had any activity for 90 days. We''ll automatically close it if that trend continues for another week. If you feel this issue is still valid and needs attention please let us know with a comment.'
close-issue-message: '❌ We''re automatically closing this issue due to lack of activity. Please comment if you feel this was done in error.'
close-pr-message: '❌ We''re automatically closing this PR due to lack of activity. Please comment if you feel this was done in error.'
days-before-pr-stale: 90
days-before-issue-stale: 180
days-before-close: 7
stale-issue-label: 'stale-issue'
close-issue-label: 'stale-issue-closed'
exempt-issue-labels: 'bug,skip-stale-check,meta'
stale-pr-label: 'stale-pr'
close-pr-label: 'stale-pr-closed'
exempt-pr-labels: 'skip-stale-check,meta'
operations-per-run: 1000
remove-stale-when-updated: true
enable-statistics: true
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
## [`master`](https://github.com/elastic/eui/tree/master)

No public interface changes since `31.10.0`.

## [`31.10.0`](https://github.com/elastic/eui/tree/v31.10.0)

- Added `panelProps` to `EuiPopover` ([#4573](https://github.com/elastic/eui/pull/4573))
- Updated the default of the `EuiPopover`s `ownFocus` prop from `false` to `true` ([#4551](https://github.com/elastic/eui/pull/4551))
- Added `src` prop to `EuiImage` as an alternative to `url` ([#4611](https://github.com/elastic/eui/pull/4611))
- Added `EuiSplitPanel` component ([#4539](https://github.com/elastic/eui/pull/4539))

**Bug fixes**

- Fixed hover effect of nested clickable rows in `EuiBasicTable` ([#4566](https://github.com/elastic/eui/pull/4566))
- Fixed visual bug in drag&drop sections when nested in an popover ([#4590](https://github.com/elastic/eui/pull/4590))
- Fixed an errant export of `EuiSideNavProps` type from JS code ([#4604](https://github.com/elastic/eui/pull/4604))
- Fixed misaligned `EuiComboBox` options list ([#4607](https://github.com/elastic/eui/pull/4607))
- Fixed missing `forwardRef` on `EuiHeaderSectionItemButton` ([#4631](https://github.com/elastic/eui/pull/4631))

## [`31.9.1`](https://github.com/elastic/eui/tree/v31.9.1)

**Bug fixes**

- Fixed an errant export of two non-existant values ([#4597](https://github.com/elastic/eui/pull/4564597))
- Fixed an errant export of two non-existant values ([#4597](https://github.com/elastic/eui/pull/4597))

## [`31.9.0`](https://github.com/elastic/eui/tree/v31.9.0)

Expand Down
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ EUI has strict quality and testing standards due to its large downstream footpri

If you have a preference, let us know when you make your PR, but never feel guilty about just handing it off. We're here to help.

### We utilize Github actions to keep the repo tidy

We use Github actions for some automation tasks to keep this repo tidy. Specifically we close out issues and PRs using [the actions/stale workflow](https://github.com/actions/stale) when we notice a lack of activity over a long period of time. This is done as much to remind us of older issues that need attention as it is to keep our total issue count managable. These action counters can easily be soft reset by commenting on the issues/PRs directly.

## Helpful documents

* [Component design](wiki/component-design.md)
Expand Down
Loading

0 comments on commit e7c9c43

Please sign in to comment.