Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
940 changes: 940 additions & 0 deletions .yarn/releases/yarn-4.13.0.cjs

Large diffs are not rendered by default.

942 changes: 0 additions & 942 deletions .yarn/releases/yarn-4.9.4.cjs

This file was deleted.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ npmRegistries:
"https://registry.npmjs.org":
npmAuthToken: "${NODE_AUTH_TOKEN:-}"

yarnPath: .yarn/releases/yarn-4.9.4.cjs
yarnPath: .yarn/releases/yarn-4.13.0.cjs
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"@carbon/icons-react": "^11.52.0",
"@carbon/react": "^1.73.0",
"@carbon/styles": "^1.72.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
Expand All @@ -61,7 +61,7 @@
"@carbon/react": "^1.100.0",
"@carbon/styles": "^1.99.0",
"@eslint/js": "^9.10.0",
"@kaoto/camel-catalog": "^0.3.0",
"@kaoto/camel-catalog": "^0.4.4",
"@lerna-lite/cli": "^4.11.2",
"@lerna-lite/publish": "^4.11.2",
"@lerna-lite/version": "^4.11.2",
Expand All @@ -76,9 +76,9 @@
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.14.168",
"@types/node": "^24.0.8",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-jest": "^29.4.2",
"copyfiles": "^2.4.1",
"cypress": "^14.5.0",
Expand All @@ -93,10 +93,10 @@
"monaco-editor": "^0.55.0",
"postcss": "^8.4.45",
"prettier": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-monaco-editor": "^0.59.0",
"react-test-renderer": "^18.3.1",
"react-test-renderer": "^19.2.4",
"rimraf": "^6.0.0",
"sass-embedded": "^1.79.5",
"stylelint": "^16.1.0",
Expand All @@ -105,9 +105,9 @@
"ts-node": "^10.9.1",
"typescript": "^5.4.2",
"typescript-eslint": "^8.5.0",
"vite": "^7.0.0",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.1.0"
"vite-plugin-static-copy": "^4.0.0"
},
"packageManager": "yarn@4.9.4"
"packageManager": "yarn@4.13.0"
}
20 changes: 10 additions & 10 deletions src/form/Typeahead/__snapshots__/Typeahead.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports[`Typeahead should renders the Typeahead component 1`] = `
<input
aria-activedescendant=""
aria-autocomplete="list"
aria-controls="downshift-:r2:-menu"
aria-controls="downshift-_r_2_-menu"
aria-expanded="false"
aria-haspopup="listbox"
aria-label="Typeahead"
Expand All @@ -30,11 +30,11 @@ exports[`Typeahead should renders the Typeahead component 1`] = `
value=""
/>
<button
aria-controls="downshift-:r2:-menu"
aria-controls="downshift-_r_2_-menu"
aria-expanded="false"
aria-label="Open"
class="cds--list-box__menu-icon"
id="downshift-:r2:-toggle-button"
id="downshift-_r_2_-toggle-button"
tabindex="-1"
title="Open"
type="button"
Expand All @@ -56,9 +56,9 @@ exports[`Typeahead should renders the Typeahead component 1`] = `
</button>
</div>
<ul
aria-labelledby="downshift-:r2:-label"
aria-labelledby="downshift-_r_2_-label"
class="cds--list-box__menu"
id="downshift-:r2:-menu"
id="downshift-_r_2_-menu"
role="listbox"
/>
</div>
Expand All @@ -82,7 +82,7 @@ exports[`Typeahead should renders the Typeahead component with disabled button 1
<input
aria-activedescendant=""
aria-autocomplete="list"
aria-controls="downshift-:r5:-menu"
aria-controls="downshift-_r_5_-menu"
aria-expanded="false"
aria-haspopup="listbox"
aria-label="Typeahead"
Expand All @@ -98,12 +98,12 @@ exports[`Typeahead should renders the Typeahead component with disabled button 1
value=""
/>
<button
aria-controls="downshift-:r5:-menu"
aria-controls="downshift-_r_5_-menu"
aria-expanded="false"
aria-label="Open"
class="cds--list-box__menu-icon"
disabled=""
id="downshift-:r5:-toggle-button"
id="downshift-_r_5_-toggle-button"
tabindex="-1"
title="Open"
type="button"
Expand All @@ -125,9 +125,9 @@ exports[`Typeahead should renders the Typeahead component with disabled button 1
</button>
</div>
<ul
aria-labelledby="downshift-:r5:-label"
aria-labelledby="downshift-_r_5_-label"
class="cds--list-box__menu"
id="downshift-:r5:-menu"
id="downshift-_r_5_-menu"
role="listbox"
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/form/__snapshots__/KaotoForm.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exports[`KaotoForm should validate the model 1`] = `
class="cds--popover-container cds--popover--caret cds--popover--high-contrast cds--popover--auto-align cds--autoalign cds--popover--bottom cds--toggletip cds--autoalign"
>
<button
aria-controls="id-:r14:"
aria-controls="id-_r_14_"
aria-expanded="false"
aria-label="More info for Name field"
class="cds--toggletip-button"
Expand Down Expand Up @@ -63,7 +63,7 @@ exports[`KaotoForm should validate the model 1`] = `
</button>
<span
class="cds--popover"
id="id-:r14:"
id="id-_r_14_"
>
<span
class="cds--popover-content"
Expand Down Expand Up @@ -148,7 +148,7 @@ exports[`KaotoForm should validate the model 1`] = `
<button
aria-expanded="false"
aria-haspopup="true"
aria-labelledby="tooltip-:r17:"
aria-labelledby="tooltip-_r_17_"
class="cds--overflow-menu cds--overflow-menu--sm cds--btn cds--btn--sm cds--layout--size-sm cds--btn--ghost cds--btn--icon-only"
data-testid="#.name__field-actions"
type="button"
Expand Down Expand Up @@ -186,7 +186,7 @@ exports[`KaotoForm should validate the model 1`] = `
<span
aria-hidden="true"
class="cds--popover"
id="tooltip-:r17:"
id="tooltip-_r_17_"
role="tooltip"
>
<span
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exports[`OneOfField should render correctly with basic oneOf schema 1`] = `
class="cds--popover-container cds--popover--caret cds--popover--high-contrast cds--popover--top cds--toggletip"
>
<button
aria-controls="id-:r0:"
aria-controls="id-_r_0_"
aria-expanded="false"
aria-label="More info for Test Schema 1 field"
class="cds--toggletip-button"
Expand Down Expand Up @@ -50,7 +50,7 @@ exports[`OneOfField should render correctly with basic oneOf schema 1`] = `
</button>
<span
class="cds--popover"
id="id-:r0:"
id="id-_r_0_"
>
<span
class="cds--popover-content"
Expand Down
20 changes: 10 additions & 10 deletions src/form/fields/OneOfField/__snapshots__/SchemaList.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ exports[`SchemaList should use Typeahead when items > 5, none selected 1`] = `
<input
aria-activedescendant=""
aria-autocomplete="list"
aria-controls="downshift-:r2:-menu"
aria-controls="downshift-_r_2_-menu"
aria-expanded="false"
aria-haspopup="listbox"
aria-label="Choose an item"
Expand All @@ -128,11 +128,11 @@ exports[`SchemaList should use Typeahead when items > 5, none selected 1`] = `
value=""
/>
<button
aria-controls="downshift-:r2:-menu"
aria-controls="downshift-_r_2_-menu"
aria-expanded="false"
aria-label="Open"
class="cds--list-box__menu-icon"
id="downshift-:r2:-toggle-button"
id="downshift-_r_2_-toggle-button"
tabindex="-1"
title="Open"
type="button"
Expand All @@ -154,9 +154,9 @@ exports[`SchemaList should use Typeahead when items > 5, none selected 1`] = `
</button>
</div>
<ul
aria-labelledby="downshift-:r2:-label"
aria-labelledby="downshift-_r_2_-label"
class="cds--list-box__menu"
id="downshift-:r2:-menu"
id="downshift-_r_2_-menu"
role="listbox"
/>
</div>
Expand Down Expand Up @@ -188,7 +188,7 @@ exports[`SchemaList should use Typeahead when items > 5, one selected 1`] = `
<input
aria-activedescendant=""
aria-autocomplete="list"
aria-controls="downshift-:r5:-menu"
aria-controls="downshift-_r_5_-menu"
aria-expanded="false"
aria-haspopup="listbox"
aria-label="Choose an item"
Expand Down Expand Up @@ -225,11 +225,11 @@ exports[`SchemaList should use Typeahead when items > 5, one selected 1`] = `
</svg>
</button>
<button
aria-controls="downshift-:r5:-menu"
aria-controls="downshift-_r_5_-menu"
aria-expanded="false"
aria-label="Open"
class="cds--list-box__menu-icon"
id="downshift-:r5:-toggle-button"
id="downshift-_r_5_-toggle-button"
tabindex="-1"
title="Open"
type="button"
Expand All @@ -251,9 +251,9 @@ exports[`SchemaList should use Typeahead when items > 5, one selected 1`] = `
</button>
</div>
<ul
aria-labelledby="downshift-:r5:-label"
aria-labelledby="downshift-_r_5_-label"
class="cds--list-box__menu"
id="downshift-:r5:-menu"
id="downshift-_r_5_-menu"
role="listbox"
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/form/fields/__snapshots__/DisabledField.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exports[`DisabledField should render 1`] = `
class="cds--accordion__item"
>
<button
aria-controls="accordion-item-:r0:"
aria-controls="accordion-item-_r_0_"
aria-expanded="false"
class="cds--accordion__heading"
type="button"
Expand Down Expand Up @@ -53,7 +53,7 @@ exports[`DisabledField should render 1`] = `
>
<div
class="cds--accordion__content"
id="accordion-item-:r0:"
id="accordion-item-_r_0_"
>
<code>
<pre>
Expand Down
12 changes: 6 additions & 6 deletions src/form/fields/__snapshots__/PasswordField.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports[`PasswordField should render 1`] = `
class="cds--popover-container cds--popover--caret cds--popover--high-contrast cds--popover--auto-align cds--autoalign cds--popover--bottom cds--toggletip cds--autoalign"
>
<button
aria-controls="id-:r0:"
aria-controls="id-_r_0_"
aria-expanded="false"
aria-label="More info for # field"
class="cds--toggletip-button"
Expand Down Expand Up @@ -47,7 +47,7 @@ exports[`PasswordField should render 1`] = `
</button>
<span
class="cds--popover"
id="id-:r0:"
id="id-_r_0_"
>
<span
class="cds--popover-content"
Expand Down Expand Up @@ -108,7 +108,7 @@ exports[`PasswordField should render 1`] = `
class="cds--tooltip-trigger__wrapper"
>
<button
aria-labelledby="tooltip-:r2:"
aria-labelledby="tooltip-_r_2_"
class="cds--text-input--password__visibility__toggle cds--btn cds--tooltip__trigger cds--tooltip--a11y cds--tooltip--bottom cds--tooltip--align-end"
type="button"
>
Expand All @@ -135,7 +135,7 @@ exports[`PasswordField should render 1`] = `
<span
aria-hidden="true"
class="cds--popover"
id="tooltip-:r2:"
id="tooltip-_r_2_"
role="tooltip"
>
<span
Expand Down Expand Up @@ -164,7 +164,7 @@ exports[`PasswordField should render 1`] = `
<button
aria-expanded="false"
aria-haspopup="true"
aria-labelledby="tooltip-:r5:"
aria-labelledby="tooltip-_r_5_"
class="cds--overflow-menu cds--overflow-menu--sm cds--btn cds--btn--sm cds--layout--size-sm cds--btn--ghost cds--btn--icon-only"
data-testid="#__field-actions"
type="button"
Expand Down Expand Up @@ -202,7 +202,7 @@ exports[`PasswordField should render 1`] = `
<span
aria-hidden="true"
class="cds--popover"
id="tooltip-:r5:"
id="tooltip-_r_5_"
role="tooltip"
>
<span
Expand Down
8 changes: 4 additions & 4 deletions src/form/fields/__snapshots__/StringField.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports[`StringField should render 1`] = `
class="cds--popover-container cds--popover--caret cds--popover--high-contrast cds--popover--auto-align cds--autoalign cds--popover--bottom cds--toggletip cds--autoalign"
>
<button
aria-controls="id-:r0:"
aria-controls="id-_r_0_"
aria-expanded="false"
aria-label="More info for # field"
class="cds--toggletip-button"
Expand Down Expand Up @@ -47,7 +47,7 @@ exports[`StringField should render 1`] = `
</button>
<span
class="cds--popover"
id="id-:r0:"
id="id-_r_0_"
>
<span
class="cds--popover-content"
Expand Down Expand Up @@ -126,7 +126,7 @@ exports[`StringField should render 1`] = `
<button
aria-expanded="false"
aria-haspopup="true"
aria-labelledby="tooltip-:r3:"
aria-labelledby="tooltip-_r_3_"
class="cds--overflow-menu cds--overflow-menu--sm cds--btn cds--btn--sm cds--layout--size-sm cds--btn--ghost cds--btn--icon-only"
data-testid="#__field-actions"
type="button"
Expand Down Expand Up @@ -164,7 +164,7 @@ exports[`StringField should render 1`] = `
<span
aria-hidden="true"
class="cds--popover"
id="tooltip-:r3:"
id="tooltip-_r_3_"
role="tooltip"
>
<span
Expand Down
Loading
Loading