@uniformdev/design-system 20.29.2-alpha.14 → 20.29.2-alpha.6

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.
package/dist/esm/index.js CHANGED
@@ -11092,11 +11092,8 @@ var ObjectListItem = css83`
11092
11092
  container-type: inline-size;
11093
11093
  grid-template-columns: minmax(0, auto) 1fr auto;
11094
11094
 
11095
- &:hover,
11096
- &:focus-within,
11097
- &:focus-visible {
11095
+ &:hover {
11098
11096
  background: var(--gray-50);
11099
- outline: none;
11100
11097
  }
11101
11098
  `;
11102
11099
  var ObjectListItemSingle = css83`
@@ -15051,7 +15048,7 @@ var ParameterRichTextInner = ({
15051
15048
  onError: (error) => {
15052
15049
  console.error(error);
15053
15050
  },
15054
- editorState: typeof value === "function" ? value : value ? JSON.stringify(value) : void 0,
15051
+ editorState: value ? JSON.stringify(value) : void 0,
15055
15052
  nodes: [
15056
15053
  ListNode3,
15057
15054
  ListItemNode,
package/dist/index.d.mts CHANGED
@@ -3473,7 +3473,7 @@ type RichTextProps = {
3473
3473
  };
3474
3474
  type RichTextParamValue = SerializedEditorState | undefined | null;
3475
3475
  type ParameterRichTextInnerProps = RichTextProps & {
3476
- value: RichTextParamValue | ((editor: LexicalEditor) => void);
3476
+ value: RichTextParamValue;
3477
3477
  editorWrapperClassName?: string;
3478
3478
  editorFooter?: React.ReactNode;
3479
3479
  };
package/dist/index.d.ts CHANGED
@@ -3473,7 +3473,7 @@ type RichTextProps = {
3473
3473
  };
3474
3474
  type RichTextParamValue = SerializedEditorState | undefined | null;
3475
3475
  type ParameterRichTextInnerProps = RichTextProps & {
3476
- value: RichTextParamValue | ((editor: LexicalEditor) => void);
3476
+ value: RichTextParamValue;
3477
3477
  editorWrapperClassName?: string;
3478
3478
  editorFooter?: React.ReactNode;
3479
3479
  };
package/dist/index.js CHANGED
@@ -12978,11 +12978,8 @@ var ObjectListItem = import_react127.css`
12978
12978
  container-type: inline-size;
12979
12979
  grid-template-columns: minmax(0, auto) 1fr auto;
12980
12980
 
12981
- &:hover,
12982
- &:focus-within,
12983
- &:focus-visible {
12981
+ &:hover {
12984
12982
  background: var(--gray-50);
12985
- outline: none;
12986
12983
  }
12987
12984
  `;
12988
12985
  var ObjectListItemSingle = import_react127.css`
@@ -16900,7 +16897,7 @@ var ParameterRichTextInner = ({
16900
16897
  onError: (error) => {
16901
16898
  console.error(error);
16902
16899
  },
16903
- editorState: typeof value === "function" ? value : value ? JSON.stringify(value) : void 0,
16900
+ editorState: value ? JSON.stringify(value) : void 0,
16904
16901
  nodes: [
16905
16902
  import_list3.ListNode,
16906
16903
  import_list3.ListItemNode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "20.29.2-alpha.14+f2c4af25fb",
3
+ "version": "20.29.2-alpha.6+d5ee1a7418",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "exports": {
@@ -38,8 +38,8 @@
38
38
  "@storybook/theming": "^8.3.3",
39
39
  "@types/react": "18.3.11",
40
40
  "@types/react-dom": "18.3.1",
41
- "@uniformdev/canvas": "^20.29.2-alpha.14+f2c4af25fb",
42
- "@uniformdev/richtext": "^20.29.2-alpha.14+f2c4af25fb",
41
+ "@uniformdev/canvas": "^20.29.2-alpha.6+d5ee1a7418",
42
+ "@uniformdev/richtext": "^20.29.2-alpha.6+d5ee1a7418",
43
43
  "@vitest/coverage-v8": "^3.1.2",
44
44
  "autoprefixer": "10.4.21",
45
45
  "hygen": "6.2.11",
@@ -91,5 +91,5 @@
91
91
  "publishConfig": {
92
92
  "access": "public"
93
93
  },
94
- "gitHead": "f2c4af25fbc09fcc9f412d56b48fa6fffa8c9037"
94
+ "gitHead": "d5ee1a7418f79368f898c41bba5e5db14c25626e"
95
95
  }