mirror of
https://github.com/strapi/strapi.git
synced 2025-12-10 14:34:22 +00:00
Merge branch 'develop' into fix/review-workflow-find-all
This commit is contained in:
commit
90b74f7798
@ -13,7 +13,7 @@
|
||||
"strapi": "strapi"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/plugin-color-picker": "workspace:*",
|
||||
"@strapi/plugin-documentation": "workspace:*",
|
||||
"@strapi/plugin-graphql": "workspace:*",
|
||||
|
||||
@ -27,8 +27,8 @@
|
||||
"@strapi/strapi": "workspace:*"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"eslint": "8.50.0",
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0",
|
||||
|
||||
@ -84,8 +84,8 @@
|
||||
"@radix-ui/react-context": "1.0.1",
|
||||
"@radix-ui/react-toolbar": "1.0.4",
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/permissions": "5.12.1",
|
||||
"@strapi/types": "5.12.1",
|
||||
"@strapi/typescript-utils": "5.12.1",
|
||||
|
||||
@ -64,8 +64,8 @@
|
||||
"@radix-ui/react-toolbar": "1.0.4",
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@sindresorhus/slugify": "1.1.0",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/types": "5.12.1",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"codemirror5": "npm:codemirror@^5.65.11",
|
||||
|
||||
@ -60,8 +60,8 @@
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/database": "5.12.1",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/types": "5.12.1",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"date-fns": "2.30.0",
|
||||
|
||||
@ -99,7 +99,6 @@ exports[`<AttributeOptions /> renders and matches the snapshot 1`] = `
|
||||
|
||||
.c2 {
|
||||
min-width: 100%;
|
||||
padding-inline: 4px;
|
||||
}
|
||||
|
||||
.c12 {
|
||||
|
||||
@ -62,9 +62,9 @@
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@sindresorhus/slugify": "1.1.0",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/generators": "5.12.1",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"date-fns": "2.30.0",
|
||||
"fs-extra": "11.2.0",
|
||||
|
||||
@ -56,8 +56,8 @@
|
||||
"watch": "run -T rollup -c -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/provider-email-sendmail": "5.12.1",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"koa2-ratelimit": "^1.1.3",
|
||||
|
||||
@ -1,27 +1,38 @@
|
||||
import { unstable_useDocument } from '@strapi/content-manager/strapi-admin';
|
||||
import { render as renderRTL, waitFor, server } from '@tests/utils';
|
||||
import { render as renderRTL, waitFor, server, screen, act } from '@tests/utils';
|
||||
import { rest } from 'msw';
|
||||
import { Route, Routes } from 'react-router-dom';
|
||||
|
||||
import { AssigneeSelect } from '../AssigneeSelect';
|
||||
|
||||
// Mock the content manager hook more comprehensively
|
||||
jest.mock('@strapi/content-manager/strapi-admin', () => ({
|
||||
unstable_useDocument: jest.fn().mockReturnValue({
|
||||
document: {
|
||||
documentId: '12345',
|
||||
id: 12345,
|
||||
['strapi_assignee']: {
|
||||
id: 1,
|
||||
firstname: 'John',
|
||||
lastname: 'Doe',
|
||||
},
|
||||
},
|
||||
}),
|
||||
unstable_useDocument: jest.fn(),
|
||||
}));
|
||||
|
||||
describe('AssigneeSelect', () => {
|
||||
beforeEach(() => {
|
||||
// Reset the mock implementation before each test
|
||||
jest.mocked(unstable_useDocument).mockReturnValue({
|
||||
document: {
|
||||
documentId: '12345',
|
||||
id: 12345,
|
||||
['strapi_assignee']: {
|
||||
id: 1,
|
||||
firstname: 'John',
|
||||
lastname: 'Doe',
|
||||
},
|
||||
},
|
||||
isLoading: false,
|
||||
components: {},
|
||||
validate: jest.fn(),
|
||||
getInitialFormValues: jest.fn(),
|
||||
getTitle: jest.fn(),
|
||||
refetch: jest.fn(),
|
||||
});
|
||||
});
|
||||
const render = () =>
|
||||
renderRTL(<AssigneeSelect />, {
|
||||
renderRTL(<AssigneeSelect isCompact={false} />, {
|
||||
renderOptions: {
|
||||
wrapper: ({ children }) => {
|
||||
return (
|
||||
@ -35,20 +46,20 @@ describe('AssigneeSelect', () => {
|
||||
});
|
||||
|
||||
it('renders a select with users, none is selected', async () => {
|
||||
const { getByRole, queryByText, user, findByText } = render();
|
||||
const { user } = render();
|
||||
|
||||
await waitFor(() => expect(queryByText('John Doe')).not.toBeInTheDocument());
|
||||
await waitFor(() => expect(screen.queryByText('John Doe')).not.toBeInTheDocument());
|
||||
|
||||
await user.click(getByRole('combobox'));
|
||||
await waitFor(() => expect(queryByText('Loading content...')).not.toBeInTheDocument());
|
||||
await user.click(screen.getByRole('combobox'));
|
||||
await waitFor(() => expect(screen.queryByText('Loading content...')).not.toBeInTheDocument());
|
||||
|
||||
await findByText('John Doe');
|
||||
await screen.findByText('John Doe');
|
||||
});
|
||||
|
||||
it('renders a select with users, first user is selected', async () => {
|
||||
const { queryByRole } = render();
|
||||
it.skip('renders a select with users, first user is selected', async () => {
|
||||
render();
|
||||
|
||||
await waitFor(() => expect(queryByRole('combobox')).toHaveValue('John Doe'));
|
||||
await waitFor(() => expect(screen.getByRole('combobox')).toHaveValue('John Doe'));
|
||||
});
|
||||
|
||||
it('renders a disabled select when there are no users to select', async () => {
|
||||
@ -64,9 +75,11 @@ describe('AssigneeSelect', () => {
|
||||
})
|
||||
);
|
||||
|
||||
const { queryByRole } = render();
|
||||
render();
|
||||
|
||||
await waitFor(() => expect(queryByRole('combobox')).toHaveAttribute('aria-disabled', 'true'));
|
||||
await waitFor(() =>
|
||||
expect(screen.queryByRole('combobox')).toHaveAttribute('aria-disabled', 'true')
|
||||
);
|
||||
});
|
||||
|
||||
it('renders an error message, when fetching user fails', async () => {
|
||||
@ -89,9 +102,9 @@ describe('AssigneeSelect', () => {
|
||||
})
|
||||
);
|
||||
|
||||
const { findByText } = render();
|
||||
render();
|
||||
|
||||
await findByText('An error occurred while fetching users');
|
||||
await screen.findByText('An error occurred while fetching users');
|
||||
|
||||
console.error = origConsoleError;
|
||||
});
|
||||
@ -131,13 +144,13 @@ describe('AssigneeSelect', () => {
|
||||
)
|
||||
);
|
||||
|
||||
const { getByRole, getByText, queryByText, user, findByText } = render();
|
||||
const { user } = render();
|
||||
|
||||
await user.click(getByRole('combobox'));
|
||||
await waitFor(() => expect(queryByText('Loading content...')).not.toBeInTheDocument());
|
||||
await user.click(getByText('John Doe'));
|
||||
await user.click(screen.getByRole('combobox'));
|
||||
await waitFor(() => expect(screen.queryByText('Loading content...')).not.toBeInTheDocument());
|
||||
await user.click(screen.getByText('John Doe'));
|
||||
|
||||
await findByText('Server side error message');
|
||||
await screen.findByText('Server side error message');
|
||||
|
||||
console.error = origConsoleError;
|
||||
});
|
||||
|
||||
@ -57,8 +57,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"fractional-indexing": "3.2.0",
|
||||
"react-dnd": "16.0.1",
|
||||
|
||||
@ -200,7 +200,6 @@ exports[`BulkMoveDialog renders and matches the snapshot 1`] = `
|
||||
|
||||
.c14 {
|
||||
min-width: 100%;
|
||||
padding-inline: 4px;
|
||||
}
|
||||
|
||||
.c3 {
|
||||
|
||||
@ -354,7 +354,6 @@ exports[`<EditAssetDialog /> renders and matches the snapshot 1`] = `
|
||||
|
||||
.c14 {
|
||||
min-width: 100%;
|
||||
padding-inline: 4px;
|
||||
}
|
||||
|
||||
.c3 {
|
||||
|
||||
@ -354,7 +354,6 @@ exports[`<EditAssetDialog /> renders and matches the snapshot 1`] = `
|
||||
|
||||
.c14 {
|
||||
min-width: 100%;
|
||||
padding-inline: 4px;
|
||||
}
|
||||
|
||||
.c3 {
|
||||
|
||||
@ -261,7 +261,6 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = `
|
||||
|
||||
.c14 {
|
||||
min-width: 100%;
|
||||
padding-inline: 4px;
|
||||
}
|
||||
|
||||
.c3 {
|
||||
|
||||
@ -61,8 +61,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@mux/mux-player-react": "3.1.0",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/provider-upload-local": "5.12.1",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"byte-size": "8.1.1",
|
||||
|
||||
@ -40,8 +40,8 @@
|
||||
"watch": "run -T rollup -c -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"react-intl": "6.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@ -57,8 +57,8 @@
|
||||
"watch": "run -T rollup -c -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"react-colorful": "5.6.1",
|
||||
"react-intl": "6.6.2"
|
||||
},
|
||||
|
||||
@ -60,8 +60,8 @@
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/admin": "5.12.1",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"cheerio": "^1.0.0",
|
||||
|
||||
@ -57,8 +57,8 @@
|
||||
"@graphql-tools/schema": "10.0.3",
|
||||
"@graphql-tools/utils": "^10.1.3",
|
||||
"@koa/cors": "5.0.0",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"graphql": "^16.8.1",
|
||||
"graphql-depth-limit": "^1.1.0",
|
||||
|
||||
@ -57,8 +57,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "1.9.7",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"lodash": "4.17.21",
|
||||
"qs": "6.11.1",
|
||||
|
||||
@ -54,8 +54,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/node": "7.112.2",
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18"
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/strapi": "5.12.1",
|
||||
|
||||
@ -48,8 +48,8 @@
|
||||
"watch": "run -T rollup -c -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@strapi/design-system": "2.0.0-rc.18",
|
||||
"@strapi/icons": "2.0.0-rc.18",
|
||||
"@strapi/design-system": "2.0.0-rc.21",
|
||||
"@strapi/icons": "2.0.0-rc.21",
|
||||
"@strapi/utils": "5.12.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"formik": "2.4.5",
|
||||
|
||||
88
yarn.lock
88
yarn.lock
@ -8421,8 +8421,8 @@ __metadata:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/admin-test-utils": "npm:5.12.1"
|
||||
"@strapi/data-transfer": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/permissions": "npm:5.12.1"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/typescript-utils": "npm:5.12.1"
|
||||
@ -8554,8 +8554,8 @@ __metadata:
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/database": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/react": "npm:15.0.7"
|
||||
@ -8618,8 +8618,8 @@ __metadata:
|
||||
"@strapi/admin-test-utils": "npm:5.12.1"
|
||||
"@strapi/content-manager": "npm:5.12.1"
|
||||
"@strapi/database": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/dom": "npm:10.1.0"
|
||||
@ -8660,9 +8660,9 @@ __metadata:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@sindresorhus/slugify": "npm:1.1.0"
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/generators": "npm:5.12.1"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/dom": "npm:10.1.0"
|
||||
@ -8836,9 +8836,9 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/design-system@npm:2.0.0-rc.18":
|
||||
version: 2.0.0-rc.18
|
||||
resolution: "@strapi/design-system@npm:2.0.0-rc.18"
|
||||
"@strapi/design-system@npm:2.0.0-rc.21":
|
||||
version: 2.0.0-rc.21
|
||||
resolution: "@strapi/design-system@npm:2.0.0-rc.21"
|
||||
dependencies:
|
||||
"@codemirror/lang-json": "npm:6.0.1"
|
||||
"@floating-ui/react-dom": "npm:2.1.0"
|
||||
@ -8861,7 +8861,7 @@ __metadata:
|
||||
"@radix-ui/react-tabs": "npm:1.0.4"
|
||||
"@radix-ui/react-tooltip": "npm:1.0.7"
|
||||
"@radix-ui/react-use-callback-ref": "npm:1.0.1"
|
||||
"@strapi/ui-primitives": "npm:2.0.0-rc.18"
|
||||
"@strapi/ui-primitives": "npm:2.0.0-rc.21"
|
||||
"@uiw/react-codemirror": "npm:4.22.2"
|
||||
lodash: "npm:4.17.21"
|
||||
react-remove-scroll: "npm:2.5.10"
|
||||
@ -8870,7 +8870,7 @@ __metadata:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
styled-components: ^6.0.0
|
||||
checksum: 10c0/8e0dfbad48c0cdea11ce7d02a4e51c94200c7fd2fdb006254e17fce3b4b6613ae02ba25442d58f6137c7b62adde144aed612b915835d241c423e46c7c5ac012b
|
||||
checksum: 10c0/6671c7c5571418ec5bc5075ece98d16d9bbbe6e3186a28987f4e8cf4129b7ae6c97a85758c07b6b628946add30ba7843bd7ede4d001c03f7c233fba948ee2c04
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -8879,8 +8879,8 @@ __metadata:
|
||||
resolution: "@strapi/email@workspace:packages/core/email"
|
||||
dependencies:
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/provider-email-sendmail": "npm:5.12.1"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
@ -8967,8 +8967,8 @@ __metadata:
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/admin-test-utils": "npm:5.12.1"
|
||||
"@strapi/content-manager": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/react": "npm:15.0.7"
|
||||
@ -8994,14 +8994,14 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/icons@npm:2.0.0-rc.18":
|
||||
version: 2.0.0-rc.18
|
||||
resolution: "@strapi/icons@npm:2.0.0-rc.18"
|
||||
"@strapi/icons@npm:2.0.0-rc.21":
|
||||
version: 2.0.0-rc.21
|
||||
resolution: "@strapi/icons@npm:2.0.0-rc.21"
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
styled-components: ^6.0.0
|
||||
checksum: 10c0/e8268aa5af412dd06e80de09765246bd97383fdc5f3a3db00fda3504f4d2ecc0b2733e046612a729924de2b0e1929916d9b0796030d9511c23130fa9630f7b9d
|
||||
checksum: 10c0/6d6da81b420f37fc508db0ab5ce76d604bbf43e070fa0002a966f736c056e0a5b0af0f53939dcbc6f18aea4072d8a894a9b1d93338206fb03c0b3e5aa2b4a924
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -9065,8 +9065,8 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/sdk-plugin": "npm:^5.2.0"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
eslint-config-custom: "npm:5.12.1"
|
||||
@ -9090,8 +9090,8 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/sdk-plugin": "npm:^5.2.0"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
"@testing-library/react": "npm:15.0.7"
|
||||
@ -9120,8 +9120,8 @@ __metadata:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/admin-test-utils": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
@ -9170,8 +9170,8 @@ __metadata:
|
||||
"@graphql-tools/schema": "npm:10.0.3"
|
||||
"@graphql-tools/utils": "npm:^10.1.3"
|
||||
"@koa/cors": "npm:5.0.0"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
@ -9210,8 +9210,8 @@ __metadata:
|
||||
resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry"
|
||||
dependencies:
|
||||
"@sentry/node": "npm:7.112.2"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
react: "npm:18.3.1"
|
||||
react-dom: "npm:18.3.1"
|
||||
@ -9230,8 +9230,8 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/strapi": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/dom": "npm:10.1.0"
|
||||
@ -9374,8 +9374,8 @@ __metadata:
|
||||
"@reduxjs/toolkit": "npm:1.9.7"
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/content-manager": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
"@testing-library/react": "npm:15.0.7"
|
||||
@ -9571,9 +9571,9 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@strapi/ui-primitives@npm:2.0.0-rc.18":
|
||||
version: 2.0.0-rc.18
|
||||
resolution: "@strapi/ui-primitives@npm:2.0.0-rc.18"
|
||||
"@strapi/ui-primitives@npm:2.0.0-rc.21":
|
||||
version: 2.0.0-rc.21
|
||||
resolution: "@strapi/ui-primitives@npm:2.0.0-rc.21"
|
||||
dependencies:
|
||||
"@radix-ui/number": "npm:1.0.1"
|
||||
"@radix-ui/primitive": "npm:1.0.1"
|
||||
@ -9598,7 +9598,7 @@ __metadata:
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
checksum: 10c0/1421d68e2293874c1d3c54d197603686f99236b4335d92a83ef7b4b2a85ed993f685c8dbd34cc85d2cc55c7e3579d7952e2b896ee34283e21b4602286eb1f4c3
|
||||
checksum: 10c0/6324c99d6b2de754035c642bc49bc642fd346bb13d390188fe890775d239b62795b2fb821a3f356f1bc86591006089328325d79410cf32c79efae0c2929c55cf
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -9636,8 +9636,8 @@ __metadata:
|
||||
dependencies:
|
||||
"@mux/mux-player-react": "npm:3.1.0"
|
||||
"@strapi/admin": "npm:5.12.1"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/provider-upload-local": "npm:5.12.1"
|
||||
"@strapi/types": "npm:5.12.1"
|
||||
"@strapi/utils": "npm:5.12.1"
|
||||
@ -18676,7 +18676,7 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "getstarted@workspace:examples/getstarted"
|
||||
dependencies:
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/plugin-color-picker": "workspace:*"
|
||||
"@strapi/plugin-documentation": "workspace:*"
|
||||
"@strapi/plugin-graphql": "workspace:*"
|
||||
@ -28927,8 +28927,8 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "strapi-plugin-todo-example@workspace:examples/plugins/todo-example"
|
||||
dependencies:
|
||||
"@strapi/design-system": "npm:2.0.0-rc.18"
|
||||
"@strapi/icons": "npm:2.0.0-rc.18"
|
||||
"@strapi/design-system": "npm:2.0.0-rc.21"
|
||||
"@strapi/icons": "npm:2.0.0-rc.21"
|
||||
"@strapi/sdk-plugin": "npm:^5.2.0"
|
||||
"@strapi/strapi": "workspace:*"
|
||||
eslint: "npm:8.50.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user