diff --git a/.changeset/afraid-rivers-talk.md b/.changeset/afraid-rivers-talk.md deleted file mode 100644 index 4488ce29a6..0000000000 --- a/.changeset/afraid-rivers-talk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/admin-color-picker": patch ---- - -Add missing spacing to the clear-color button of `ColorPicker` diff --git a/.changeset/brown-eggs-remember.md b/.changeset/brown-eggs-remember.md deleted file mode 100644 index 833eb3b561..0000000000 --- a/.changeset/brown-eggs-remember.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -"@comet/admin": minor ---- - -Add the `dataGridDateColumn` and `dataGridDateTimeColumn` helpers for using the "date" and "dateTime" types in Data Grid - -```diff --import { GridColDef } from "@comet/admin"; -+import { GridColDef, dataGridDateColumn, dataGridDateTimeColumn } from "@comet/admin"; - - // ... - - const columns: GridColDef[] = [ - { -- type: "date", -- valueGetter: ({ value }) => value && new Date(value), -- renderCell: ({ value }) => value && , -+ ...dataGridDateColumn, - field: "createdAt", - headerName: "Created At", - }, - { -- type: "dateTime", -- valueGetter: ({ value }) => value && new Date(value), -- renderCell: ({ value }) => value && , -+ ...dataGridDateTimeColumn, - field: "updatedAt", - headerName: "Updated At", - }, - ]; -``` diff --git a/.changeset/eight-owls-shop.md b/.changeset/eight-owls-shop.md deleted file mode 100644 index 928c2c093a..0000000000 --- a/.changeset/eight-owls-shop.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@comet/admin-icons": minor -"@comet/cms-admin": minor -"@comet/admin": minor ---- - -Add UI for Impersonation Feature - -- Add indicator to display when impersonation mode is active in `UserHeaderItem` -- Add button to allow users to switch on impersonation in the `UserGrid` -- Integrate `CrudMoreActionsMenu` in `UserPageToolbar` with an impersonation entry for easy access to this feature. -- Add `ImpersonateUser` icon diff --git a/.changeset/friendly-dots-hunt.md b/.changeset/friendly-dots-hunt.md deleted file mode 100644 index c3474e8bf8..0000000000 --- a/.changeset/friendly-dots-hunt.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -"@comet/blocks-admin": minor ---- - -Add `hiddenForState` option to `createCompositeBlock` - -This function can be used to hide a block in the `AdminComponent` for a given state. - -**Example** - -```tsx -const TextWithMediaVariantBlock = createCompositeBlock({ - name: "TextWithMediaVariant", - blocks: { - variant: { - block: createCompositeBlockSelectField({ - defaultValue: "text-image", - fieldProps: { label: "Variant", fullWidth: true }, - options: [ - { value: "text-image", label: "Text Image" }, - { value: "text-only", label: "Text Only" }, - ], - }), - }, - text: { - block: RichTextBlock, - }, - media: { - block: MediaBlock, - // The media block isn't needed for the "text-only" variant - hiddenForState: (state) => state.variant === "text-only", - }, - }, -}); -``` diff --git a/.changeset/giant-feet-live.md b/.changeset/giant-feet-live.md deleted file mode 100644 index a64e3da2f0..0000000000 --- a/.changeset/giant-feet-live.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@comet/admin-theme": patch -"@comet/admin": patch ---- - -Fix styling issues of inputs like `FinalFormInput`, `FinalFormNumberInput`, `FinalFormSelect`, `TextAreaField` - -- Change background-color, border-color and color of the label for different states (`default`, `disabled` and `focused`). -- For required inputs, fix spacing between the label and asterisk. -- Fix font-weight and margin of `helperText`. diff --git a/.changeset/hot-turkeys-notice.md b/.changeset/hot-turkeys-notice.md deleted file mode 100644 index c2c943e44e..0000000000 --- a/.changeset/hot-turkeys-notice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/cms-admin": patch ---- - -Use consistent date and time formatting across the Admin UI diff --git a/.changeset/modern-berries-marry.md b/.changeset/modern-berries-marry.md deleted file mode 100644 index 1853f648f2..0000000000 --- a/.changeset/modern-berries-marry.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@comet/blocks-admin": minor ---- - -Add `label` prop to `ColumnsLayoutPreview` - -Use it to customize the label of the column displayed in the `FinalFormLayoutSelect`. -For instance, to add an icon or add custom text: - -```tsx -} /> -``` diff --git a/.changeset/new-buses-wave.md b/.changeset/new-buses-wave.md deleted file mode 100644 index 47beaee4f4..0000000000 --- a/.changeset/new-buses-wave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/admin": patch ---- - -Remove right padding from form fields without an end adornment diff --git a/.changeset/nice-ants-eat.md b/.changeset/nice-ants-eat.md deleted file mode 100644 index 3245d3f7e4..0000000000 --- a/.changeset/nice-ants-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/cms-admin": patch ---- - -Prevent `ContentScopeIndicator` from crashing when a scope part is `undefined` diff --git a/.changeset/serious-bears-shake.md b/.changeset/serious-bears-shake.md deleted file mode 100644 index 5e7fb082ff..0000000000 --- a/.changeset/serious-bears-shake.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@comet/admin-icons": patch -"@comet/admin-theme": patch ---- - -Add icon for indeterminate checkbox diff --git a/.changeset/seven-nails-applaud.md b/.changeset/seven-nails-applaud.md deleted file mode 100644 index 87daa3fe6d..0000000000 --- a/.changeset/seven-nails-applaud.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/cms-admin": patch ---- - -Don't add non-existing scope parts to the `DamScope` as `undefined` diff --git a/.changeset/ten-tenors-sing.md b/.changeset/ten-tenors-sing.md deleted file mode 100644 index 86b8eed2fc..0000000000 --- a/.changeset/ten-tenors-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/cms-admin": patch ---- - -Fix DAM license duration input when no values are provided diff --git a/.changeset/wild-lions-study.md b/.changeset/wild-lions-study.md deleted file mode 100644 index 9db2f83c11..0000000000 --- a/.changeset/wild-lions-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@comet/admin-theme": minor ---- - -Add hover styling for MUI's `Switch` diff --git a/.changeset/wise-houses-juggle.md b/.changeset/wise-houses-juggle.md deleted file mode 100644 index 3749487a59..0000000000 --- a/.changeset/wise-houses-juggle.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -"@comet/blocks-admin": minor ---- - -Add `visibleOrderedBlocksForState` option to `createCompositeBlock` - -The option can be used to hide and order child blocks in the `AdminComponent`. -It should return an array of visible block keys for a given state. -The order of the keys define the order in which the blocks will be rendered. -If key is not present in the array, the block will not be rendered. - -**Example** - -```tsx -const LayoutBlock = createCompositeBlock({ - /* ... */ - blocks: { - layout: { - /* A layout select */ - }, - headline1: { block: HeadlineBlock }, - image1: { block: DamImageBlock }, - headline2: { block: HeadlineBlock }, - image2: { block: DamImageBlock }, - }, - visibleOrderedBlocksForState: (state: LayoutBlockData) => { - if (state.layout === "compact") { - // headline2 and image2 will be hidden - return ["headline1", "image1"]; - } else { - return ["headline1", "image1", "headline2", "image2"]; - } - }, -}); -``` diff --git a/packages/admin/admin-babel-preset/CHANGELOG.md b/packages/admin/admin-babel-preset/CHANGELOG.md index e642b082f1..ed92c4da79 100644 --- a/packages/admin/admin-babel-preset/CHANGELOG.md +++ b/packages/admin/admin-babel-preset/CHANGELOG.md @@ -1,5 +1,7 @@ # @comet/admin-babel-preset +## 7.9.0 + ## 7.8.0 ## 7.7.0 diff --git a/packages/admin/admin-babel-preset/package.json b/packages/admin/admin-babel-preset/package.json index 24bcd9bab1..f91cd79cc1 100644 --- a/packages/admin/admin-babel-preset/package.json +++ b/packages/admin/admin-babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-babel-preset", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", diff --git a/packages/admin/admin-color-picker/CHANGELOG.md b/packages/admin/admin-color-picker/CHANGELOG.md index 6787d89024..eadaedc60e 100644 --- a/packages/admin/admin-color-picker/CHANGELOG.md +++ b/packages/admin/admin-color-picker/CHANGELOG.md @@ -1,5 +1,18 @@ # @comet/admin-color-picker +## 7.9.0 + +### Patch Changes + +- 1d73f3f45: Add missing spacing to the clear-color button of `ColorPicker` +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/admin/admin-color-picker/package.json b/packages/admin/admin-color-picker/package.json index 561ec24965..15ab1ad4a7 100644 --- a/packages/admin/admin-color-picker/package.json +++ b/packages/admin/admin-color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-color-picker", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -26,8 +26,8 @@ "start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", "clsx": "^1.1.1", "react-colorful": "^5.5.1", "tinycolor2": "^1.4.1", @@ -36,8 +36,8 @@ "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", diff --git a/packages/admin/admin-date-time/CHANGELOG.md b/packages/admin/admin-date-time/CHANGELOG.md index 517a200c6f..f3dc209d66 100644 --- a/packages/admin/admin-date-time/CHANGELOG.md +++ b/packages/admin/admin-date-time/CHANGELOG.md @@ -1,5 +1,17 @@ # @comet/admin-date-time +## 7.9.0 + +### Patch Changes + +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/admin/admin-date-time/package.json b/packages/admin/admin-date-time/package.json index a4999dfcfe..ed93791b96 100644 --- a/packages/admin/admin-date-time/package.json +++ b/packages/admin/admin-date-time/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-date-time", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -26,8 +26,8 @@ "start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", "@mui/utils": "^5.4.1", "clsx": "^1.1.1", "date-fns": "^2.28.0", @@ -36,8 +36,8 @@ "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@types/react": "^17.0", "@types/react-date-range": "^1.4.3", diff --git a/packages/admin/admin-icons/CHANGELOG.md b/packages/admin/admin-icons/CHANGELOG.md index f852ffe2b8..805f669ec6 100644 --- a/packages/admin/admin-icons/CHANGELOG.md +++ b/packages/admin/admin-icons/CHANGELOG.md @@ -1,5 +1,20 @@ # @comet/admin-icons +## 7.9.0 + +### Minor Changes + +- 7cea765fe: Add UI for Impersonation Feature + + - Add indicator to display when impersonation mode is active in `UserHeaderItem` + - Add button to allow users to switch on impersonation in the `UserGrid` + - Integrate `CrudMoreActionsMenu` in `UserPageToolbar` with an impersonation entry for easy access to this feature. + - Add `ImpersonateUser` icon + +### Patch Changes + +- 55d40ef08: Add icon for indeterminate checkbox + ## 7.8.0 ### Minor Changes diff --git a/packages/admin/admin-icons/package.json b/packages/admin/admin-icons/package.json index 7678499eef..be490ccb55 100644 --- a/packages/admin/admin-icons/package.json +++ b/packages/admin/admin-icons/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-icons", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -29,8 +29,8 @@ "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@types/cli-progress": "^3.8.0", "@types/node": "^22.0.0", diff --git a/packages/admin/admin-react-select/CHANGELOG.md b/packages/admin/admin-react-select/CHANGELOG.md index eb2bfc88c6..1812a52efe 100644 --- a/packages/admin/admin-react-select/CHANGELOG.md +++ b/packages/admin/admin-react-select/CHANGELOG.md @@ -1,5 +1,17 @@ # @comet/admin-react-select +## 7.9.0 + +### Patch Changes + +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/admin/admin-react-select/package.json b/packages/admin/admin-react-select/package.json index 51df55b9d2..f1fe2daf5f 100644 --- a/packages/admin/admin-react-select/package.json +++ b/packages/admin/admin-react-select/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-react-select", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -26,15 +26,15 @@ "start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", "classnames": "^2.2.6" }, "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", diff --git a/packages/admin/admin-rte/CHANGELOG.md b/packages/admin/admin-rte/CHANGELOG.md index 61e58eb528..1162408482 100644 --- a/packages/admin/admin-rte/CHANGELOG.md +++ b/packages/admin/admin-rte/CHANGELOG.md @@ -1,5 +1,17 @@ # @comet/admin-rte +## 7.9.0 + +### Patch Changes + +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/admin/admin-rte/package.json b/packages/admin/admin-rte/package.json index 85cdbabaf8..8e757837a3 100644 --- a/packages/admin/admin-rte/package.json +++ b/packages/admin/admin-rte/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-rte", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -28,8 +28,8 @@ "test:watch": "jest --watch" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", "detect-browser": "^5.2.1", "draft-js-export-html": "^1.4.1", "draft-js-import-html": "^1.4.1", @@ -39,8 +39,8 @@ "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^12.0.0", diff --git a/packages/admin/admin-theme/CHANGELOG.md b/packages/admin/admin-theme/CHANGELOG.md index e04b95462c..cd996537aa 100644 --- a/packages/admin/admin-theme/CHANGELOG.md +++ b/packages/admin/admin-theme/CHANGELOG.md @@ -1,5 +1,24 @@ # @comet/admin-theme +## 7.9.0 + +### Minor Changes + +- 9aa6947b7: Add hover styling for MUI's `Switch` + +### Patch Changes + +- 48cac4dac: Fix styling issues of inputs like `FinalFormInput`, `FinalFormNumberInput`, `FinalFormSelect`, `TextAreaField` + + - Change background-color, border-color and color of the label for different states (`default`, `disabled` and `focused`). + - For required inputs, fix spacing between the label and asterisk. + - Fix font-weight and margin of `helperText`. + +- 55d40ef08: Add icon for indeterminate checkbox +- Updated dependencies [7cea765fe] +- Updated dependencies [55d40ef08] + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/admin/admin-theme/package.json b/packages/admin/admin-theme/package.json index a3c6df2abb..bafefb85be 100644 --- a/packages/admin/admin-theme/package.json +++ b/packages/admin/admin-theme/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin-theme", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -26,14 +26,14 @@ "start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput" }, "dependencies": { - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin-icons": "workspace:^7.9.0", "@mui/utils": "^5.4.1" }, "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@mui/material": "^5.0.0", "@mui/system": "^5.0.0", "@mui/x-data-grid": "^5.0.0", diff --git a/packages/admin/admin/CHANGELOG.md b/packages/admin/admin/CHANGELOG.md index 4eda0961f8..249829a255 100644 --- a/packages/admin/admin/CHANGELOG.md +++ b/packages/admin/admin/CHANGELOG.md @@ -1,5 +1,60 @@ # @comet/admin +## 7.9.0 + +### Minor Changes + +- 6d6131b16: Add the `dataGridDateColumn` and `dataGridDateTimeColumn` helpers for using the "date" and "dateTime" types in Data Grid + + ```diff + -import { GridColDef } from "@comet/admin"; + +import { GridColDef, dataGridDateColumn, dataGridDateTimeColumn } from "@comet/admin"; + + // ... + + const columns: GridColDef[] = [ + { + - type: "date", + - valueGetter: ({ value }) => value && new Date(value), + - renderCell: ({ value }) => value && , + + ...dataGridDateColumn, + field: "createdAt", + headerName: "Created At", + }, + { + - type: "dateTime", + - valueGetter: ({ value }) => value && new Date(value), + - renderCell: ({ value }) => value && , + + ...dataGridDateTimeColumn, + field: "updatedAt", + headerName: "Updated At", + }, + ]; + ``` + +- 7cea765fe: Add UI for Impersonation Feature + + - Add indicator to display when impersonation mode is active in `UserHeaderItem` + - Add button to allow users to switch on impersonation in the `UserGrid` + - Integrate `CrudMoreActionsMenu` in `UserPageToolbar` with an impersonation entry for easy access to this feature. + - Add `ImpersonateUser` icon + +### Patch Changes + +- 48cac4dac: Fix styling issues of inputs like `FinalFormInput`, `FinalFormNumberInput`, `FinalFormSelect`, `TextAreaField` + + - Change background-color, border-color and color of the label for different states (`default`, `disabled` and `focused`). + - For required inputs, fix spacing between the label and asterisk. + - Fix font-weight and margin of `helperText`. + +- 0919e3ba6: Remove right padding from form fields without an end adornment +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [55d40ef08] +- Updated dependencies [9aa6947b7] + - @comet/admin-icons@7.9.0 + - @comet/admin-theme@7.9.0 + ## 7.8.0 ### Minor Changes diff --git a/packages/admin/admin/package.json b/packages/admin/admin/package.json index d8047e2d4d..e14790b3b6 100644 --- a/packages/admin/admin/package.json +++ b/packages/admin/admin/package.json @@ -1,6 +1,6 @@ { "name": "@comet/admin", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -28,8 +28,8 @@ "test:watch": "jest --watch" }, "dependencies": { - "@comet/admin-icons": "workspace:^7.8.0", - "@comet/admin-theme": "workspace:^7.8.0", + "@comet/admin-icons": "workspace:^7.9.0", + "@comet/admin-theme": "workspace:^7.9.0", "@mui/lab": "^5.0.0-alpha.76", "@mui/private-theming": "^5.0.0", "clsx": "^1.1.1", @@ -49,8 +49,8 @@ "@apollo/client": "^3.7.0", "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", "@mui/material": "^5.0.0", diff --git a/packages/admin/blocks-admin/CHANGELOG.md b/packages/admin/blocks-admin/CHANGELOG.md index e1123602b2..2acddc1728 100644 --- a/packages/admin/blocks-admin/CHANGELOG.md +++ b/packages/admin/blocks-admin/CHANGELOG.md @@ -1,5 +1,92 @@ # @comet/blocks-admin +## 7.9.0 + +### Minor Changes + +- 92f9d078f: Add `hiddenForState` option to `createCompositeBlock` + + This function can be used to hide a block in the `AdminComponent` for a given state. + + **Example** + + ```tsx + const TextWithMediaVariantBlock = createCompositeBlock({ + name: "TextWithMediaVariant", + blocks: { + variant: { + block: createCompositeBlockSelectField({ + defaultValue: "text-image", + fieldProps: { label: "Variant", fullWidth: true }, + options: [ + { value: "text-image", label: "Text Image" }, + { value: "text-only", label: "Text Only" }, + ], + }), + }, + text: { + block: RichTextBlock, + }, + media: { + block: MediaBlock, + // The media block isn't needed for the "text-only" variant + hiddenForState: (state) => state.variant === "text-only", + }, + }, + }); + ``` + +- 047b9d17b: Add `label` prop to `ColumnsLayoutPreview` + + Use it to customize the label of the column displayed in the `FinalFormLayoutSelect`. + For instance, to add an icon or add custom text: + + ```tsx + } /> + ``` + +- 59b4b6f77: Add `visibleOrderedBlocksForState` option to `createCompositeBlock` + + The option can be used to hide and order child blocks in the `AdminComponent`. + It should return an array of visible block keys for a given state. + The order of the keys define the order in which the blocks will be rendered. + If key is not present in the array, the block will not be rendered. + + **Example** + + ```tsx + const LayoutBlock = createCompositeBlock({ + /* ... */ + blocks: { + layout: { + /* A layout select */ + }, + headline1: { block: HeadlineBlock }, + image1: { block: DamImageBlock }, + headline2: { block: HeadlineBlock }, + image2: { block: DamImageBlock }, + }, + visibleOrderedBlocksForState: (state: LayoutBlockData) => { + if (state.layout === "compact") { + // headline2 and image2 will be hidden + return ["headline1", "image1"]; + } else { + return ["headline1", "image1", "headline2", "image2"]; + } + }, + }); + ``` + +### Patch Changes + +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [48cac4dac] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + ## 7.8.0 ### Minor Changes diff --git a/packages/admin/blocks-admin/package.json b/packages/admin/blocks-admin/package.json index 57e74b8ff8..6557f25ec8 100644 --- a/packages/admin/blocks-admin/package.json +++ b/packages/admin/blocks-admin/package.json @@ -1,6 +1,6 @@ { "name": "@comet/blocks-admin", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -30,8 +30,8 @@ "test:watch": "jest --watch" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", "@mui/lab": "^5.0.0-alpha.76", "clipboard-copy": "^4.0.0", "clsx": "^1.1.1", @@ -43,9 +43,9 @@ "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/cli": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/cli": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", "@mui/lab": "^5.0.0-alpha.76", diff --git a/packages/admin/cms-admin/CHANGELOG.md b/packages/admin/cms-admin/CHANGELOG.md index f7060a8836..e235461333 100644 --- a/packages/admin/cms-admin/CHANGELOG.md +++ b/packages/admin/cms-admin/CHANGELOG.md @@ -1,5 +1,38 @@ # @comet/cms-admin +## 7.9.0 + +### Minor Changes + +- 7cea765fe: Add UI for Impersonation Feature + + - Add indicator to display when impersonation mode is active in `UserHeaderItem` + - Add button to allow users to switch on impersonation in the `UserGrid` + - Integrate `CrudMoreActionsMenu` in `UserPageToolbar` with an impersonation entry for easy access to this feature. + - Add `ImpersonateUser` icon + +### Patch Changes + +- 6d6131b16: Use consistent date and time formatting across the Admin UI +- 27510c22f: Prevent `ContentScopeIndicator` from crashing when a scope part is `undefined` +- 8ed5795a1: Don't add non-existing scope parts to the `DamScope` as `undefined` +- 7ce4b0f0a: Fix DAM license duration input when no values are provided +- Updated dependencies [6d6131b16] +- Updated dependencies [7cea765fe] +- Updated dependencies [92f9d078f] +- Updated dependencies [48cac4dac] +- Updated dependencies [047b9d17b] +- Updated dependencies [0919e3ba6] +- Updated dependencies [55d40ef08] +- Updated dependencies [9aa6947b7] +- Updated dependencies [59b4b6f77] + - @comet/admin@7.9.0 + - @comet/admin-icons@7.9.0 + - @comet/blocks-admin@7.9.0 + - @comet/admin-theme@7.9.0 + - @comet/admin-date-time@7.9.0 + - @comet/admin-rte@7.9.0 + ## 7.8.0 ### Minor Changes diff --git a/packages/admin/cms-admin/package.json b/packages/admin/cms-admin/package.json index 22a808482c..4860c27337 100644 --- a/packages/admin/cms-admin/package.json +++ b/packages/admin/cms-admin/package.json @@ -1,6 +1,6 @@ { "name": "@comet/cms-admin", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -35,12 +35,12 @@ "test:watch": "jest --watch" }, "dependencies": { - "@comet/admin": "workspace:^7.8.0", - "@comet/admin-date-time": "workspace:^7.8.0", - "@comet/admin-icons": "workspace:^7.8.0", - "@comet/admin-rte": "workspace:^7.8.0", - "@comet/admin-theme": "workspace:^7.8.0", - "@comet/blocks-admin": "workspace:^7.8.0", + "@comet/admin": "workspace:^7.9.0", + "@comet/admin-date-time": "workspace:^7.9.0", + "@comet/admin-icons": "workspace:^7.9.0", + "@comet/admin-rte": "workspace:^7.9.0", + "@comet/admin-theme": "workspace:^7.9.0", + "@comet/blocks-admin": "workspace:^7.9.0", "@graphql-tools/graphql-file-loader": "^7.5.17", "@graphql-tools/load": "^7.8.14", "@graphql-typed-document-node/core": "^3.1.1", @@ -85,9 +85,9 @@ "@apollo/client": "^3.7.0", "@babel/cli": "^7.17.6", "@babel/core": "^7.20.12", - "@comet/admin-babel-preset": "workspace:^7.8.0", - "@comet/cli": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/admin-babel-preset": "workspace:^7.9.0", + "@comet/cli": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@emotion/react": "^11.5.0", "@emotion/styled": "^11.3.0", "@graphql-codegen/cli": "^2.0.0", diff --git a/packages/api/blocks-api/CHANGELOG.md b/packages/api/blocks-api/CHANGELOG.md index 6e7488e81d..a71674e096 100644 --- a/packages/api/blocks-api/CHANGELOG.md +++ b/packages/api/blocks-api/CHANGELOG.md @@ -1,5 +1,7 @@ # @comet/blocks-api +## 7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/api/blocks-api/package.json b/packages/api/blocks-api/package.json index 82a8753ba4..0cd9672ea6 100644 --- a/packages/api/blocks-api/package.json +++ b/packages/api/blocks-api/package.json @@ -1,6 +1,6 @@ { "name": "@comet/blocks-api", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -30,7 +30,7 @@ "rimraf": "^3.0.0" }, "devDependencies": { - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/eslint-config": "workspace:^7.9.0", "@nestjs/common": "^9.0.0", "@types/draft-js": "^0.11.10", "@types/jest": "^29.5.0", diff --git a/packages/api/cms-api/CHANGELOG.md b/packages/api/cms-api/CHANGELOG.md index de3208b91a..5ee84585e2 100644 --- a/packages/api/cms-api/CHANGELOG.md +++ b/packages/api/cms-api/CHANGELOG.md @@ -1,5 +1,11 @@ # @comet/cms-api +## 7.9.0 + +### Patch Changes + +- @comet/blocks-api@7.9.0 + ## 7.8.0 ### Minor Changes diff --git a/packages/api/cms-api/package.json b/packages/api/cms-api/package.json index c7e3139e90..c01e86a5f0 100644 --- a/packages/api/cms-api/package.json +++ b/packages/api/cms-api/package.json @@ -1,6 +1,6 @@ { "name": "@comet/cms-api", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -36,7 +36,7 @@ "@azure-rest/ai-translation-text": "^1.0.0-beta.1", "@azure/openai": "1.0.0-beta.11", "@azure/storage-blob": "^12.23.0", - "@comet/blocks-api": "workspace:^7.8.0", + "@comet/blocks-api": "workspace:^7.9.0", "@fast-csv/parse": "^4.3.6", "@golevelup/nestjs-discovery": "^3.0.0", "@hapi/accept": "^5.0.2", @@ -85,7 +85,7 @@ }, "devDependencies": { "@aws-sdk/types": "3.609.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/eslint-config": "workspace:^7.9.0", "@golevelup/ts-jest": "^0.4.0", "@kubernetes/client-node": "^0.18.1", "@mikro-orm/core": "^5.9.8", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e5d93f6083..851cf4dc58 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @comet/cli +## 7.9.0 + ## 7.8.0 ## 7.7.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index a32bfbd620..ebb93a4e69 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@comet/cli", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -30,7 +30,7 @@ "prettier": "^2.7.1" }, "devDependencies": { - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/eslint-config": "workspace:^7.9.0", "@types/node": "^22.0.0", "eslint": "^8.0.0", "npm-run-all": "^4.1.5", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 569dedefd8..46baeca7fb 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -1,5 +1,11 @@ # @comet/eslint-config +## 7.9.0 + +### Patch Changes + +- @comet/eslint-plugin@7.9.0 + ## 7.8.0 ### Patch Changes diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index a1395f8dfe..88bbb003eb 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@comet/eslint-config", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -15,7 +15,7 @@ }, "dependencies": { "@calm/eslint-plugin-react-intl": "^1.4.1", - "@comet/eslint-plugin": "workspace:^7.8.0", + "@comet/eslint-plugin": "workspace:^7.9.0", "@next/eslint-plugin-next": "^14.0.0", "@typescript-eslint/eslint-plugin": "^5.48.2", "@typescript-eslint/parser": "^5.48.2", diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md index 8b5a0a8315..a9656bc40f 100644 --- a/packages/eslint-plugin/CHANGELOG.md +++ b/packages/eslint-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # @comet/eslint-plugin +## 7.9.0 + ## 7.8.0 ## 7.7.0 diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 11144077ba..0a5479e143 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@comet/eslint-plugin", - "version": "7.8.0", + "version": "7.9.0", "main": "lib/index.js", "scripts": { "build": "$npm_execpath run clean && tsc", diff --git a/packages/site/cms-site/CHANGELOG.md b/packages/site/cms-site/CHANGELOG.md index 878ac6417b..cd84b01dd1 100644 --- a/packages/site/cms-site/CHANGELOG.md +++ b/packages/site/cms-site/CHANGELOG.md @@ -1,5 +1,7 @@ # @comet/cms-site +## 7.9.0 + ## 7.8.0 ### Minor Changes diff --git a/packages/site/cms-site/package.json b/packages/site/cms-site/package.json index 1fb1027682..1a74131f1d 100644 --- a/packages/site/cms-site/package.json +++ b/packages/site/cms-site/package.json @@ -1,6 +1,6 @@ { "name": "@comet/cms-site", - "version": "7.8.0", + "version": "7.9.0", "repository": { "type": "git", "url": "https://github.com/vivid-planet/comet", @@ -33,8 +33,8 @@ "usehooks-ts": "^3.1.0" }, "devDependencies": { - "@comet/cli": "workspace:^7.8.0", - "@comet/eslint-config": "workspace:^7.8.0", + "@comet/cli": "workspace:^7.9.0", + "@comet/eslint-config": "workspace:^7.9.0", "@gitbeaker/node": "^34.0.0", "@types/draft-js": "^0.11.10", "@types/jest": "^29.5.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1e66dfde38..aade502f0b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1118,10 +1118,10 @@ importers: packages/admin/admin: dependencies: '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons '@comet/admin-theme': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-theme '@mui/lab': specifier: ^5.0.0-alpha.76 @@ -1176,10 +1176,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@emotion/react': specifier: ^11.5.0 @@ -1341,10 +1341,10 @@ importers: packages/admin/admin-color-picker: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons clsx: specifier: ^1.1.1 @@ -1366,10 +1366,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1417,10 +1417,10 @@ importers: packages/admin/admin-date-time: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons '@mui/utils': specifier: ^5.4.1 @@ -1442,10 +1442,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1506,10 +1506,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1566,10 +1566,10 @@ importers: packages/admin/admin-react-select: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons classnames: specifier: ^2.2.6 @@ -1582,10 +1582,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1633,10 +1633,10 @@ importers: packages/admin/admin-rte: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons detect-browser: specifier: ^5.2.1 @@ -1661,10 +1661,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1742,7 +1742,7 @@ importers: packages/admin/admin-theme: dependencies: '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons '@mui/utils': specifier: ^5.4.1 @@ -1755,10 +1755,10 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@mui/material': specifier: ^5.0.0 @@ -1800,10 +1800,10 @@ importers: packages/admin/blocks-admin: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons '@mui/lab': specifier: ^5.0.0-alpha.76 @@ -1834,13 +1834,13 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/cli': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../cli '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@emotion/react': specifier: ^11.5.0 @@ -1930,22 +1930,22 @@ importers: packages/admin/cms-admin: dependencies: '@comet/admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin '@comet/admin-date-time': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-date-time '@comet/admin-icons': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-icons '@comet/admin-rte': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-rte '@comet/admin-theme': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-theme '@comet/blocks-admin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../blocks-admin '@graphql-tools/graphql-file-loader': specifier: ^7.5.17 @@ -2075,13 +2075,13 @@ importers: specifier: ^7.20.12 version: 7.20.12 '@comet/admin-babel-preset': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../admin-babel-preset '@comet/cli': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../cli '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@emotion/react': specifier: ^11.5.0 @@ -2256,7 +2256,7 @@ importers: version: 3.0.2 devDependencies: '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@nestjs/common': specifier: ^9.0.0 @@ -2322,7 +2322,7 @@ importers: specifier: ^12.23.0 version: 12.24.0 '@comet/blocks-api': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../blocks-api '@fast-csv/parse': specifier: ^4.3.6 @@ -2464,7 +2464,7 @@ importers: specifier: 3.609.0 version: 3.609.0 '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@golevelup/ts-jest': specifier: ^0.4.0 @@ -2603,7 +2603,7 @@ importers: version: 2.8.3 devDependencies: '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../eslint-config '@types/node': specifier: ^22.0.0 @@ -2630,7 +2630,7 @@ importers: specifier: ^1.4.1 version: 1.4.1 '@comet/eslint-plugin': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../eslint-plugin '@next/eslint-plugin-next': specifier: ^14.0.0 @@ -2734,10 +2734,10 @@ importers: version: 3.1.0(react@18.3.1) devDependencies: '@comet/cli': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../cli '@comet/eslint-config': - specifier: workspace:^7.8.0 + specifier: workspace:^7.9.0 version: link:../../eslint-config '@gitbeaker/node': specifier: ^34.0.0