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
1,153 changes: 789 additions & 364 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-backgrounds": "^8.4.7",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-viewport": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
"@storybook/addon-a11y": "^8.6.12",
"@storybook/addon-backgrounds": "^8.6.12",
"@storybook/addon-docs": "^8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-viewport": "^8.6.12",
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
"@storybook/client-api": "^7.6.17",
"@storybook/client-logger": "^8.4.7",
"@storybook/client-logger": "^8.6.12",
"@storybook/csf": "^0.1.13",
"@storybook/csf-tools": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/csf-tools": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/rollup": "^8.0.1",
"@svgr/webpack": "^8.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/activation-notice/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"stylis-plugin-rtl": "^2.1.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-essentials": "^8.6.12",
"@testing-library/react": "^14.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"devDependencies": {
"@googleforcreators/karma-fixture": "*",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-essentials": "^8.6.12",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"uuid": "^11.1.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-essentials": "^8.6.12",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/big.js": "^6.2.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const Button = forwardRef(function Button(
onMenuItemBlur: actions.onMenuItemBlur,
onMenuItemFocus: actions.onMenuItemFocus,
}));
const autoGeneratedId = useMemo(uuidv4, []);
const autoGeneratedId = useMemo(() => uuidv4(), []);
const elementId = id || autoGeneratedId;

const handleBlur = (evt: FocusEvent<HTMLButtonElement>) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function Link({
onMenuItemBlur: actions.onMenuItemBlur,
onMenuItemFocus: actions.onMenuItemFocus,
}));
const autoGeneratedId = useMemo(uuidv4, []);
const autoGeneratedId = useMemo(() => uuidv4(), []);
const elementId = id || autoGeneratedId;

const handleBlur = (evt: SyntheticEvent<HTMLAnchorElement>) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/masks/src/borderedMaskedElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function BorderedMaskedElement({
}: BorderedMaskedElementProps) {
// This component is used twice - random id appended to make sure
// id is unique for the Mask.
const randomId = useMemo(uuidv4, []);
const randomId = useMemo(() => uuidv4(), []);
const mask = getElementMask(element);
const { id, flip, border } = element;

Expand Down
2 changes: 1 addition & 1 deletion packages/story-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"devDependencies": {
"@googleforcreators/karma-fixture": "*",
"@googleforcreators/test-utils": "*",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-essentials": "^8.6.12",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^12.1.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/wp-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"uuid": "^11.1.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-essentials": "^8.6.12",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1"
Expand Down