diff --git a/react/package.json b/react/package.json index d9eec91688..b796de348a 100644 --- a/react/package.json +++ b/react/package.json @@ -69,8 +69,7 @@ "format": "pnpm dlx prettier --check 'src/**/*.{js,jsx,ts,tsx}'", "format-fix": "pnpm dlx prettier --write './src/**/*.{js,jsx,ts,tsx}'", "storybook": "storybook dev -p 6006", - "build-storybook": "storybook build", - "postinstall": "patch-package" + "build-storybook": "storybook build" }, "eslintConfig": { "extends": [ @@ -121,7 +120,6 @@ "eslint-plugin-storybook": "^0.8.0", "html-webpack-plugin": "5.6.0", "nodemon": "^3.1.4", - "patch-package": "^8.0.0", "prop-types": "^15.8.1", "react-test-renderer": "^18.3.1", "relay-compiler": "^18.1.0", @@ -135,5 +133,10 @@ "typescript": "^5.4.5", "react-refresh": "0.11.0" }, - "proxy": "http://localhost:3081" + "proxy": "http://localhost:3081", + "pnpm": { + "patchedDependencies": { + "@cloudscape-design/board-components@3.0.60": "patches/@cloudscape-design__board-components@3.0.60.patch" + } + } } diff --git a/react/patches/@cloudscape-design+board-components+3.0.60.patch b/react/patches/@cloudscape-design__board-components@3.0.60.patch similarity index 74% rename from react/patches/@cloudscape-design+board-components+3.0.60.patch rename to react/patches/@cloudscape-design__board-components@3.0.60.patch index dfef9de8d3..7fcfea5d48 100644 --- a/react/patches/@cloudscape-design+board-components+3.0.60.patch +++ b/react/patches/@cloudscape-design__board-components@3.0.60.patch @@ -1,7 +1,75 @@ -diff --git a/node_modules/@cloudscape-design/board-components/board-item/interfaces.d.ts b/node_modules/@cloudscape-design/board-components/board-item/interfaces.d.ts -index 7451c23..2f0221c 100644 ---- a/node_modules/@cloudscape-design/board-components/board-item/interfaces.d.ts -+++ b/node_modules/@cloudscape-design/board-components/board-item/interfaces.d.ts +diff --git a/board/interfaces.d.ts b/board/interfaces.d.ts +index 8833051d82fdfa2caea90018f88d607d2f598e74..4c47c4d044a4c12d9de6ba675711220f8a5cf5a4 100644 +--- a/board/interfaces.d.ts ++++ b/board/interfaces.d.ts +@@ -65,6 +65,7 @@ export interface BoardProps { + * When items are loading the slot can be used to render the loading indicator. + */ + empty: ReactNode; ++ className?: String; + } + export declare namespace BoardProps { + type Item = BoardItemDefinition; +diff --git a/board/internal.js b/board/internal.js +index 39c479f6f060dc1f447acfdd542d5c3d6a8e4442..6e4e4a981941f5d35d2c08792654a7893bfde834 100644 +--- a/board/internal.js ++++ b/board/internal.js +@@ -22,7 +22,7 @@ import { selectTransitionRows, useTransition } from "./transition"; + import { announcementToString } from "./utils/announcements"; + import { createTransforms } from "./utils/create-transforms"; + import { createItemsChangeEvent } from "./utils/events"; +-export function InternalBoard({ items, renderItem, onItemsChange, empty, i18nStrings, __internalRootRef, ...rest }) { ++export function InternalBoard({ className, items, renderItem, onItemsChange, empty, i18nStrings, __internalRootRef, ...rest }) { + var _a, _b; + const containerAccessRef = useRef(null); + const [currentColumns, containerQueryRef] = useContainerColumns(); +@@ -161,7 +161,7 @@ export function InternalBoard({ items, renderItem, onItemsChange, empty, i18nStr + const announcement = transitionAnnouncement + ? announcementToString(transitionAnnouncement, items, i18nStrings, itemsLayout.columns) + : ""; +- return (_jsxs("div", { ref: __internalRootRef, ...getDataAttributes(rest), children: [_jsx(ScreenReaderGridNavigation, { items: items, itemsLayout: itemsLayout, ariaLabel: i18nStrings.navigationAriaLabel, ariaDescription: i18nStrings.navigationAriaDescription, itemAriaLabel: i18nStrings.navigationItemAriaLabel, onActivateItem: focusItem }), _jsx("div", { ref: containerRef, className: clsx(styles.root, { [styles.empty]: rows === 0 }), children: rows > 0 ? (_jsx(Grid, { columns: itemsLayout.columns, layout: [...placeholdersLayout.items, ...itemsLayout.items], children: (gridContext) => { ++ return (_jsxs("div", { ref: __internalRootRef, ...getDataAttributes(rest), children: [_jsx(ScreenReaderGridNavigation, { items: items, itemsLayout: itemsLayout, ariaLabel: i18nStrings.navigationAriaLabel, ariaDescription: i18nStrings.navigationAriaDescription, itemAriaLabel: i18nStrings.navigationItemAriaLabel, onActivateItem: focusItem }), _jsx("div", { ref: containerRef, className: clsx(styles.root + (className?` ${className}`:'') , { [styles.empty]: rows === 0 }), children: rows > 0 ? (_jsx(Grid, { columns: itemsLayout.columns, layout: [...placeholdersLayout.items, ...itemsLayout.items], children: (gridContext) => { + var _a; + const layoutShift = (_a = transition === null || transition === void 0 ? void 0 : transition.layoutShift) !== null && _a !== void 0 ? _a : removeTransition === null || removeTransition === void 0 ? void 0 : removeTransition.layoutShift; + const transforms = layoutShift ? createTransforms(itemsLayout, layoutShift.moves, gridContext) : {}; +diff --git a/board/styles.css.js b/board/styles.css.js +index 0cad188b9aa6c0c6ccdb3ccf7da69d21810332bb..6acfdb26bd1fd269d0d6f421282eca6f9fd639bd 100644 +--- a/board/styles.css.js ++++ b/board/styles.css.js +@@ -1,9 +1,9 @@ + + import './styles.scoped.css'; + export default { +- "placeholder": "awsui_placeholder_1h7dk_inx8o_1", +- "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5", +- "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8", ++ "placeholder": "awsui_placeholder_1h7dk_inx8o_1 bai_board_placeholder", ++ "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5 bai_board_placeholder--active", ++ "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8 bai_board_placeholder--hover", + "root": "awsui_root_1h7dk_inx8o_12", + "empty": "awsui_empty_1h7dk_inx8o_16" + }; +diff --git a/board/styles.selectors.js b/board/styles.selectors.js +index be32160b170a3e025133ca909f7fc2ed0b4c9a5a..eea1a961905bd63a1b81bae6b774a84ee34a4ac9 100644 +--- a/board/styles.selectors.js ++++ b/board/styles.selectors.js +@@ -2,9 +2,9 @@ + // es-module interop with Babel and Typescript + Object.defineProperty(exports, "__esModule", { value: true }); + module.exports.default = { +- "placeholder": "awsui_placeholder_1h7dk_inx8o_1", +- "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5", +- "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8", ++ "placeholder": "awsui_placeholder_1h7dk_inx8o_1 bai_board_placeholder", ++ "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5 bai_board_placeholder--active", ++ "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8 bai_board_placeholder--hover", + "root": "awsui_root_1h7dk_inx8o_12", + "empty": "awsui_empty_1h7dk_inx8o_16" + }; +diff --git a/board-item/interfaces.d.ts b/board-item/interfaces.d.ts +index 7451c23943846d46ee2e44f0a4cd42e817c5e279..2f0221c21a6e88e509ca1fa04e9f801562616f4d 100644 +--- a/board-item/interfaces.d.ts ++++ b/board-item/interfaces.d.ts @@ -31,6 +31,7 @@ export interface BoardItemProps { * * `resizeHandleAriaDescription` (string, optional) - the ARIA description for the resize handle. */ @@ -10,10 +78,10 @@ index 7451c23..2f0221c 100644 } export declare namespace BoardItemProps { interface I18nStrings { -diff --git a/node_modules/@cloudscape-design/board-components/board-item/internal.js b/node_modules/@cloudscape-design/board-components/board-item/internal.js -index 9ce96ef..cd0a89e 100644 ---- a/node_modules/@cloudscape-design/board-components/board-item/internal.js -+++ b/node_modules/@cloudscape-design/board-components/board-item/internal.js +diff --git a/board-item/internal.js b/board-item/internal.js +index 9ce96efb6b78053be6c29b4ab98115e465c02372..cd0a89e0e5f5b092ba03ff191c720d29527ea8ce 100644 +--- a/board-item/internal.js ++++ b/board-item/internal.js @@ -11,12 +11,12 @@ import ResizeHandle from "../internal/resize-handle"; import ScreenreaderOnly from "../internal/screenreader-only"; import WidgetContainerHeader from "./header"; @@ -30,10 +98,10 @@ index 9ce96ef..cd0a89e 100644 } //# sourceMappingURL=internal.js.map \ No newline at end of file -diff --git a/node_modules/@cloudscape-design/board-components/board-item/styles.css.js b/node_modules/@cloudscape-design/board-components/board-item/styles.css.js -index 1dcaf7c..f1d982c 100644 ---- a/node_modules/@cloudscape-design/board-components/board-item/styles.css.js -+++ b/node_modules/@cloudscape-design/board-components/board-item/styles.css.js +diff --git a/board-item/styles.css.js b/board-item/styles.css.js +index 1dcaf7ccab588a3e3a1a9bfdab40d1b3e7d4a69f..f1d982c4f3451cb351c817e4e62b8bc3028caeea 100644 +--- a/board-item/styles.css.js ++++ b/board-item/styles.css.js @@ -2,15 +2,15 @@ import './styles.scoped.css'; export default { @@ -55,10 +123,10 @@ index 1dcaf7c..f1d982c 100644 }; \ No newline at end of file -diff --git a/node_modules/@cloudscape-design/board-components/board-item/styles.selectors.js b/node_modules/@cloudscape-design/board-components/board-item/styles.selectors.js -index 2acfd3b..beebd8d 100644 ---- a/node_modules/@cloudscape-design/board-components/board-item/styles.selectors.js -+++ b/node_modules/@cloudscape-design/board-components/board-item/styles.selectors.js +diff --git a/board-item/styles.selectors.js b/board-item/styles.selectors.js +index 2acfd3b34f880ec39462ec5d44f7f780e041fbec..beebd8d83a48e0326fb8d68e67e2549f1ffcd2b3 100644 +--- a/board-item/styles.selectors.js ++++ b/board-item/styles.selectors.js @@ -3,15 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true }); module.exports.default = { @@ -80,78 +148,10 @@ index 2acfd3b..beebd8d 100644 }; \ No newline at end of file -diff --git a/node_modules/@cloudscape-design/board-components/board/interfaces.d.ts b/node_modules/@cloudscape-design/board-components/board/interfaces.d.ts -index 8833051..4c47c4d 100644 ---- a/node_modules/@cloudscape-design/board-components/board/interfaces.d.ts -+++ b/node_modules/@cloudscape-design/board-components/board/interfaces.d.ts -@@ -65,6 +65,7 @@ export interface BoardProps { - * When items are loading the slot can be used to render the loading indicator. - */ - empty: ReactNode; -+ className?: String; - } - export declare namespace BoardProps { - type Item = BoardItemDefinition; -diff --git a/node_modules/@cloudscape-design/board-components/board/internal.js b/node_modules/@cloudscape-design/board-components/board/internal.js -index 39c479f..6e4e4a9 100644 ---- a/node_modules/@cloudscape-design/board-components/board/internal.js -+++ b/node_modules/@cloudscape-design/board-components/board/internal.js -@@ -22,7 +22,7 @@ import { selectTransitionRows, useTransition } from "./transition"; - import { announcementToString } from "./utils/announcements"; - import { createTransforms } from "./utils/create-transforms"; - import { createItemsChangeEvent } from "./utils/events"; --export function InternalBoard({ items, renderItem, onItemsChange, empty, i18nStrings, __internalRootRef, ...rest }) { -+export function InternalBoard({ className, items, renderItem, onItemsChange, empty, i18nStrings, __internalRootRef, ...rest }) { - var _a, _b; - const containerAccessRef = useRef(null); - const [currentColumns, containerQueryRef] = useContainerColumns(); -@@ -161,7 +161,7 @@ export function InternalBoard({ items, renderItem, onItemsChange, empty, i18nStr - const announcement = transitionAnnouncement - ? announcementToString(transitionAnnouncement, items, i18nStrings, itemsLayout.columns) - : ""; -- return (_jsxs("div", { ref: __internalRootRef, ...getDataAttributes(rest), children: [_jsx(ScreenReaderGridNavigation, { items: items, itemsLayout: itemsLayout, ariaLabel: i18nStrings.navigationAriaLabel, ariaDescription: i18nStrings.navigationAriaDescription, itemAriaLabel: i18nStrings.navigationItemAriaLabel, onActivateItem: focusItem }), _jsx("div", { ref: containerRef, className: clsx(styles.root, { [styles.empty]: rows === 0 }), children: rows > 0 ? (_jsx(Grid, { columns: itemsLayout.columns, layout: [...placeholdersLayout.items, ...itemsLayout.items], children: (gridContext) => { -+ return (_jsxs("div", { ref: __internalRootRef, ...getDataAttributes(rest), children: [_jsx(ScreenReaderGridNavigation, { items: items, itemsLayout: itemsLayout, ariaLabel: i18nStrings.navigationAriaLabel, ariaDescription: i18nStrings.navigationAriaDescription, itemAriaLabel: i18nStrings.navigationItemAriaLabel, onActivateItem: focusItem }), _jsx("div", { ref: containerRef, className: clsx(styles.root + (className?` ${className}`:'') , { [styles.empty]: rows === 0 }), children: rows > 0 ? (_jsx(Grid, { columns: itemsLayout.columns, layout: [...placeholdersLayout.items, ...itemsLayout.items], children: (gridContext) => { - var _a; - const layoutShift = (_a = transition === null || transition === void 0 ? void 0 : transition.layoutShift) !== null && _a !== void 0 ? _a : removeTransition === null || removeTransition === void 0 ? void 0 : removeTransition.layoutShift; - const transforms = layoutShift ? createTransforms(itemsLayout, layoutShift.moves, gridContext) : {}; -diff --git a/node_modules/@cloudscape-design/board-components/board/styles.css.js b/node_modules/@cloudscape-design/board-components/board/styles.css.js -index 0cad188..6acfdb2 100644 ---- a/node_modules/@cloudscape-design/board-components/board/styles.css.js -+++ b/node_modules/@cloudscape-design/board-components/board/styles.css.js -@@ -1,9 +1,9 @@ - - import './styles.scoped.css'; - export default { -- "placeholder": "awsui_placeholder_1h7dk_inx8o_1", -- "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5", -- "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8", -+ "placeholder": "awsui_placeholder_1h7dk_inx8o_1 bai_board_placeholder", -+ "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5 bai_board_placeholder--active", -+ "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8 bai_board_placeholder--hover", - "root": "awsui_root_1h7dk_inx8o_12", - "empty": "awsui_empty_1h7dk_inx8o_16" - }; -diff --git a/node_modules/@cloudscape-design/board-components/board/styles.selectors.js b/node_modules/@cloudscape-design/board-components/board/styles.selectors.js -index be32160..eea1a96 100644 ---- a/node_modules/@cloudscape-design/board-components/board/styles.selectors.js -+++ b/node_modules/@cloudscape-design/board-components/board/styles.selectors.js -@@ -2,9 +2,9 @@ - // es-module interop with Babel and Typescript - Object.defineProperty(exports, "__esModule", { value: true }); - module.exports.default = { -- "placeholder": "awsui_placeholder_1h7dk_inx8o_1", -- "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5", -- "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8", -+ "placeholder": "awsui_placeholder_1h7dk_inx8o_1 bai_board_placeholder", -+ "placeholder--active": "awsui_placeholder--active_1h7dk_inx8o_5 bai_board_placeholder--active", -+ "placeholder--hover": "awsui_placeholder--hover_1h7dk_inx8o_8 bai_board_placeholder--hover", - "root": "awsui_root_1h7dk_inx8o_12", - "empty": "awsui_empty_1h7dk_inx8o_16" - }; -diff --git a/node_modules/@cloudscape-design/board-components/internal/grid/styles.css.js b/node_modules/@cloudscape-design/board-components/internal/grid/styles.css.js -index ec202e1..0c0ed57 100644 ---- a/node_modules/@cloudscape-design/board-components/internal/grid/styles.css.js -+++ b/node_modules/@cloudscape-design/board-components/internal/grid/styles.css.js +diff --git a/internal/grid/styles.css.js b/internal/grid/styles.css.js +index ec202e1a6c757f5513ffa0a2566a1691b8ed18df..0c0ed570ea9c72e7e484c0371825c9710896085c 100644 +--- a/internal/grid/styles.css.js ++++ b/internal/grid/styles.css.js @@ -7,6 +7,5 @@ "columns-2": "awsui_columns-2_1hw7z_1ywbc_17", "columns-4": "awsui_columns-4_1hw7z_1ywbc_21", @@ -161,10 +161,10 @@ index ec202e1..0c0ed57 100644 }; - \ No newline at end of file -diff --git a/node_modules/@cloudscape-design/board-components/internal/grid/styles.selectors.js b/node_modules/@cloudscape-design/board-components/internal/grid/styles.selectors.js -index e9bd94a..cf7bcb1 100644 ---- a/node_modules/@cloudscape-design/board-components/internal/grid/styles.selectors.js -+++ b/node_modules/@cloudscape-design/board-components/internal/grid/styles.selectors.js +diff --git a/internal/grid/styles.selectors.js b/internal/grid/styles.selectors.js +index e9bd94ad593d417dc9de17ef419997f48d01a710..cf7bcb13e9a9cae86ad2cefc4f14b066ed5e01ab 100644 +--- a/internal/grid/styles.selectors.js ++++ b/internal/grid/styles.selectors.js @@ -8,6 +8,6 @@ "columns-2": "awsui_columns-2_1hw7z_1ywbc_17", "columns-4": "awsui_columns-4_1hw7z_1ywbc_21", @@ -173,4 +173,3 @@ index e9bd94a..cf7bcb1 100644 + "grid__item": "awsui_grid__item_1hw7z_1ywbc_29 bai_grid_item" }; -\ No newline at end of file diff --git a/react/pnpm-lock.yaml b/react/pnpm-lock.yaml index 4483bdb2cd..87bbf718a4 100644 --- a/react/pnpm-lock.yaml +++ b/react/pnpm-lock.yaml @@ -4,6 +4,11 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +patchedDependencies: + '@cloudscape-design/board-components@3.0.60': + hash: rsmnk3j6im54fq6gec5lp7suky + path: patches/@cloudscape-design__board-components@3.0.60.patch + importers: .: @@ -22,7 +27,7 @@ importers: version: 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@cloudscape-design/board-components': specifier: 3.0.60 - version: 3.0.60(@cloudscape-design/components@3.0.677(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@cloudscape-design/design-tokens@3.0.40)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 3.0.60(patch_hash=rsmnk3j6im54fq6gec5lp7suky)(@cloudscape-design/components@3.0.677(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@cloudscape-design/design-tokens@3.0.40)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@codemirror/language': specifier: ^6.10.2 version: 6.10.2 @@ -255,9 +260,6 @@ importers: nodemon: specifier: ^3.1.4 version: 3.1.4 - patch-package: - specifier: ^8.0.0 - version: 8.0.0 prop-types: specifier: ^15.8.1 version: 15.8.1 @@ -2869,9 +2871,6 @@ packages: resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - '@yarnpkg/lockfile@1.1.0': - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} deprecated: Use your platform's native atob() and btoa() methods instead @@ -4467,9 +4466,6 @@ packages: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} - find-yarn-workspace-root@2.0.0: - resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} - flat-cache@3.2.0: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -5484,10 +5480,6 @@ packages: json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json-stable-stringify@1.1.1: - resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==} - engines: {node: '>= 0.4'} - json2mq@0.2.0: resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==} @@ -5508,9 +5500,6 @@ packages: jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - jsonify@0.0.1: - resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} - jsonpath@1.1.1: resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==} @@ -5529,9 +5518,6 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - klaw-sync@6.0.0: - resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==} - kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} @@ -6092,10 +6078,6 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} - open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} @@ -6112,10 +6094,6 @@ packages: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -6178,11 +6156,6 @@ packages: pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - patch-package@8.0.0: - resolution: {integrity: sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==} - engines: {node: '>=14', npm: '>5'} - hasBin: true - path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -7426,11 +7399,6 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported @@ -7616,10 +7584,6 @@ packages: sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} - slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -8014,10 +7978,6 @@ packages: resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} engines: {node: '>=14.0.0'} - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} @@ -9810,7 +9770,7 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@cloudscape-design/board-components@3.0.60(@cloudscape-design/components@3.0.677(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@cloudscape-design/design-tokens@3.0.40)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@cloudscape-design/board-components@3.0.60(patch_hash=rsmnk3j6im54fq6gec5lp7suky)(@cloudscape-design/components@3.0.677(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@cloudscape-design/design-tokens@3.0.40)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@cloudscape-design/component-toolkit': 1.0.0-beta.64 '@cloudscape-design/components': 3.0.677(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -12240,8 +12200,6 @@ snapshots: '@types/emscripten': 1.39.13 tslib: 1.14.1 - '@yarnpkg/lockfile@1.1.0': {} - abab@2.0.6: {} accepts@1.3.8: @@ -14231,10 +14189,6 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 - find-yarn-workspace-root@2.0.0: - dependencies: - micromatch: 4.0.7 - flat-cache@3.2.0: dependencies: flatted: 3.3.1 @@ -15556,13 +15510,6 @@ snapshots: json-stable-stringify-without-jsonify@1.0.1: {} - json-stable-stringify@1.1.1: - dependencies: - call-bind: 1.0.7 - isarray: 2.0.5 - jsonify: 0.0.1 - object-keys: 1.1.1 - json2mq@0.2.0: dependencies: string-convert: 0.2.1 @@ -15585,8 +15532,6 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonify@0.0.1: {} - jsonpath@1.1.1: dependencies: esprima: 1.2.2 @@ -15608,10 +15553,6 @@ snapshots: kind-of@6.0.3: {} - klaw-sync@6.0.0: - dependencies: - graceful-fs: 4.2.11 - kleur@3.0.3: {} klona@2.0.6: {} @@ -16260,11 +16201,6 @@ snapshots: dependencies: mimic-fn: 4.0.0 - open@7.4.2: - dependencies: - is-docker: 2.2.1 - is-wsl: 2.2.0 - open@8.4.2: dependencies: define-lazy-prop: 2.0.0 @@ -16301,8 +16237,6 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 - os-tmpdir@1.0.2: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -16382,24 +16316,6 @@ snapshots: no-case: 3.0.4 tslib: 2.6.3 - patch-package@8.0.0: - dependencies: - '@yarnpkg/lockfile': 1.1.0 - chalk: 4.1.2 - ci-info: 3.9.0 - cross-spawn: 7.0.3 - find-yarn-workspace-root: 2.0.0 - fs-extra: 9.1.0 - json-stable-stringify: 1.1.1 - klaw-sync: 6.0.0 - minimist: 1.2.8 - open: 7.4.2 - rimraf: 2.7.1 - semver: 7.6.3 - slash: 2.0.0 - tmp: 0.0.33 - yaml: 2.5.0 - path-browserify@1.0.1: {} path-exists@3.0.0: {} @@ -17878,10 +17794,6 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@2.7.1: - dependencies: - glob: 7.2.3 - rimraf@3.0.2: dependencies: glob: 7.2.3 @@ -18085,8 +17997,6 @@ snapshots: sisteransi@1.0.5: {} - slash@2.0.0: {} - slash@3.0.0: {} slash@4.0.0: {} @@ -18574,10 +18484,6 @@ snapshots: tinyspy@2.2.1: {} - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 - tmpl@1.0.5: {} to-fast-properties@2.0.0: {}