@team-monolith/cds 1.83.1 → 1.83.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -78,6 +78,7 @@ interface CodleColors {
78
78
  obsidianOnContainer: string;
79
79
  marbleContainer: string;
80
80
  marbleOnContainer: string;
81
+ primaryContainer: string;
81
82
  };
82
83
  brand: {
83
84
  brandOriginal: string;
@@ -83,6 +83,7 @@ export const light = {
83
83
  obsidianOnContainer: COLOR.grey03,
84
84
  marbleContainer: COLOR.grey03,
85
85
  marbleOnContainer: COLOR.grey07,
86
+ primaryContainer: COLOR.blue01,
86
87
  },
87
88
  brand: {
88
89
  brandOriginal: COLOR.blue06,
@@ -230,6 +231,7 @@ export const dark = {
230
231
  obsidianOnContainer: COLOR.grey03,
231
232
  marbleContainer: COLOR.grey03,
232
233
  marbleOnContainer: COLOR.grey07,
234
+ primaryContainer: COLOR.blue01,
233
235
  },
234
236
  brand: {
235
237
  brandOriginal: COLOR.blue06,
@@ -312,6 +312,7 @@ export function ComponentPickerMenuPlugin(props) {
312
312
  (regex.test(option.title) ||
313
313
  option.keywords.some((keyword) => regex.test(keyword)))),
314
314
  ];
315
+ // eslint-disable-next-line react-hooks/exhaustive-deps
315
316
  }, [editor, queryString, setOpen]);
316
317
  const onSelectOption = useCallback((selectedOption, nodeToRemove, closeMenu, matchingString) => {
317
318
  if (selectedOption instanceof ComponentDrawerOption) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "1.83.1",
3
+ "version": "1.83.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,
@@ -78,6 +78,7 @@
78
78
  "eslint": "^8.57.0",
79
79
  "eslint-plugin-import": "^2.29.1",
80
80
  "eslint-plugin-react": "^7.34.4",
81
+ "eslint-plugin-react-hooks": "^4.6.2",
81
82
  "eslint-plugin-storybook": "^0.8.0",
82
83
  "globals": "^15.8.0",
83
84
  "pascalcase": "^2.0.0",