Skip to content

Commit 71bcae5

Browse files
Merge branch 'main' into fix/tree-view-expanded-nodes-clipped
2 parents 0f84846 + f308dc0 commit 71bcae5

820 files changed

Lines changed: 13922 additions & 6179 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v5
1212
with:
13-
fetch-depth: 2
13+
fetch-depth: 0
1414
- uses: actions/setup-node@v6
1515
with:
1616
node-version-file: .nvmrc

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"pre-push": "yarn --cwd packages/eui pre-push",
1313
"start": "printf $'\\x1b[K\\x1b[37;41mPlease run this script from the \\x1b[1;4mpackages/eui\\x1b[0m\\x1b[37;41m directory instead\\x1b[0m\\n'; exit 1",
1414
"build": "printf $'\\x1b[K\\x1b[37;41mPlease run this script from the \\x1b[1;4mpackages/eui\\x1b[0m\\x1b[37;41m directory instead\\x1b[0m\\n'; exit 1",
15+
"watch": "node scripts/watch-eui.js",
1516
"release": "node scripts/release",
1617
"clean": "node scripts/clean.mjs"
1718
},
@@ -23,6 +24,8 @@
2324
"pre-push"
2425
],
2526
"devDependencies": {
27+
"chalk": "^4.1.0",
28+
"chokidar": "^4.0.3",
2629
"pre-push": "^0.1.4",
2730
"rimraf": "^6.0.1"
2831
},

packages/docusaurus-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "~5.5.4"
2121
},
2222
"peerDependencies": {
23-
"@elastic/eui-docusaurus-theme": "^2.2.0",
23+
"@elastic/eui-docusaurus-theme": "^2.3.0",
2424
"react": "^18.0.0 || ^19.0.0",
2525
"react-dom": "^18.0.0 || ^19.0.0"
2626
}

packages/docusaurus-theme/changelogs/CHANGELOG_2026.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [`v2.3.0`](https://github.com/elastic/eui/releases/v2.3.0)
2+
3+
- Added `versionsUrl` prop to `VersionSwitcher` component to fetch the versions list at runtime from the main deployment, ensuring all released versions are always visible in the version switcher ([#9363](https://github.com/elastic/eui/pull/9363))
4+
15
## [`v2.2.0`](https://github.com/elastic/eui/releases/v2.2.0)
26

37
- Added `extraFiles` prop to the `Demo` component. It allows to pass extra files that will be added to the Codesandbox instance. ([#9317](https://github.com/elastic/eui/pull/9317))

packages/docusaurus-theme/changelogs/upcoming/9363.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/docusaurus-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elastic/eui-docusaurus-theme",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "EUI theme for Docusaurus",
55
"license": "SEE LICENSE IN LICENSE.txt",
66
"scripts": {

packages/docusaurus-theme/src/components/demo/actions_bar/actions_bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const DemoActionsBar = ({
8181
<EuiToolTip content="Copy to clipboard">
8282
<EuiButtonIcon
8383
size="s"
84-
iconType="copyClipboard"
84+
iconType="copy"
8585
color="text"
8686
onClick={onClickCopyToClipboard}
8787
aria-label="Copy code to clipboard"

packages/docusaurus-theme/src/components/version_switcher/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const VersionSwitcher = ({
123123
<EuiButtonEmpty
124124
size="s"
125125
color="text"
126-
iconType="arrowDown"
126+
iconType="chevronSingleDown"
127127
iconSide="right"
128128
css={styles.button}
129129
onClick={() => setPopoverOpen((isOpen) => !isOpen)}

packages/docusaurus-theme/src/theme/Admonition/Types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const VARIANT_TO_PROPS_MAP: Record<
3232
tip: { iconType: 'faceHappy', color: 'success' },
3333
info: { iconType: 'info', color: 'primary' },
3434
accessibility: { iconType: 'accessibility', color: 'primary' },
35-
warning: { iconType: 'alert', color: 'warning' },
35+
warning: { iconType: 'warning', color: 'warning' },
3636
danger: { iconType: 'error', color: 'danger' },
3737
// Undocumented legacy admonition type aliases
3838
secondary: {},

packages/docusaurus-theme/src/theme/DocBreadcrumbs/Items/Home/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function HomeBreadcrumbItem(): JSX.Element {
3535
>
3636
{title}
3737
</Link>
38-
<EuiIcon type="arrowRight" size="s" css={styles.icon} />
38+
<EuiIcon type="chevronSingleRight" size="s" css={styles.icon} />
3939
</li>
4040
);
4141
}

0 commit comments

Comments
 (0)