@intlayer/design-system 8.6.10 → 8.7.0-canary.0

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.
Files changed (35) hide show
  1. package/dist/esm/components/ContentEditor/ContentEditorTextArea.mjs +1 -1
  2. package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs +2 -2
  3. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs +1 -1
  4. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs +0 -82
  5. package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs.map +1 -1
  6. package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs +3 -3
  7. package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs +1 -1
  8. package/dist/esm/components/DictionaryFieldEditor/NavigationView/NavigationViewNode.mjs +1 -1
  9. package/dist/esm/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.mjs +0 -42
  10. package/dist/esm/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.mjs.map +1 -1
  11. package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs +2 -2
  12. package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs +1 -1
  13. package/dist/esm/components/Form/elements/OTPElement.mjs +1 -1
  14. package/dist/esm/components/LocaleSwitcherContentDropDown/LocaleSwitcherContent.mjs +1 -1
  15. package/dist/esm/components/Modal/Modal.mjs +2 -2
  16. package/dist/esm/components/Navbar/MobileNavbar.mjs +1 -1
  17. package/dist/esm/components/Pagination/Pagination.mjs +1 -1
  18. package/dist/esm/components/RightDrawer/RightDrawer.mjs +3 -3
  19. package/dist/esm/components/TabSelector/TabSelector.mjs +1 -1
  20. package/dist/esm/components/TabSelector/TabSelector.mjs.map +1 -1
  21. package/dist/esm/hooks/index.mjs +9 -9
  22. package/dist/esm/hooks/useAuth/useOAuth2.mjs +1 -1
  23. package/dist/esm/hooks/useAuth/useSession.mjs +1 -1
  24. package/dist/esm/libs/auth.mjs +1 -1
  25. package/dist/types/components/Button/Button.d.ts +1 -1
  26. package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +1 -1
  27. package/dist/types/components/Command/index.d.ts +1 -1
  28. package/dist/types/components/Container/index.d.ts +6 -6
  29. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +0 -82
  30. package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
  31. package/dist/types/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts +0 -42
  32. package/dist/types/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts.map +1 -1
  33. package/dist/types/components/Link/Link.d.ts +1 -1
  34. package/dist/types/components/Tag/index.d.ts +1 -1
  35. package/package.json +334 -29
@@ -62,7 +62,7 @@ declare enum ButtonTextAlign {
62
62
  declare const buttonVariants: (props?: {
63
63
  size?: "sm" | "md" | "lg" | "xl" | "icon-sm" | "icon-md" | "icon-lg" | "icon-xl";
64
64
  color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "card" | "light" | "dark" | "current" | "text-inverse" | "error" | "success" | "custom";
65
- roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "full";
65
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "5xl" | "full";
66
66
  variant?: "input" | "none" | "default" | "outline" | "link" | "invisible-link" | "hoverable" | "fade";
67
67
  textAlign?: "left" | "center" | "right";
68
68
  isFullWidth?: boolean;
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
6
6
  declare const collapsibleTableVariants: (props?: {
7
7
  size?: "sm" | "md" | "lg" | "xl" | "full";
8
8
  variant?: "default" | "ghost" | "dark" | "outlined";
9
- spacing?: "none" | "sm" | "md" | "lg" | "auto";
9
+ spacing?: "sm" | "md" | "lg" | "none" | "auto";
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  interface CollapsibleTableProps extends Omit<HTMLAttributes<HTMLElement>, 'title'>, VariantProps<typeof collapsibleTableVariants> {
12
12
  /** Table title displayed in the header */
@@ -29,7 +29,7 @@ declare const Command: {
29
29
  ref?: React.Ref<HTMLInputElement>;
30
30
  } & {
31
31
  asChild?: boolean;
32
- }, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "onChange" | "type" | "value"> & {
32
+ }, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "type" | "onChange" | "value"> & {
33
33
  value?: string;
34
34
  onValueChange?: (search: string) => void;
35
35
  } & _$react.RefAttributes<HTMLInputElement>>;
@@ -8,14 +8,14 @@ import { VariantProps } from "class-variance-authority";
8
8
  * Provides flexible styling options for background, padding, borders, and layout
9
9
  */
10
10
  declare const containerVariants: (props?: {
11
- roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "full";
12
- transparency?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full";
13
- padding?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
11
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "full";
12
+ transparency?: "xs" | "sm" | "md" | "lg" | "xl" | "none" | "full";
13
+ padding?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
14
14
  separator?: "both" | "without" | "x" | "y";
15
- border?: "none" | "with";
15
+ border?: "with" | "none";
16
16
  borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "card" | "warning";
17
- background?: "none" | "with" | "hoverable";
18
- gap?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
17
+ background?: "with" | "none" | "hoverable";
18
+ gap?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
19
19
  } & _$class_variance_authority_types0.ClassProp) => string;
20
20
  /** Available rounded corner sizes for the container */
21
21
  declare enum ContainerRoundedSize {
@@ -88,88 +88,6 @@ declare const dictionaryFormContent: {
88
88
  uk: string;
89
89
  }>;
90
90
  };
91
- noDictionaryView: {
92
- title: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
93
- en: string;
94
- 'en-GB': string;
95
- fr: string;
96
- es: string;
97
- de: string;
98
- ja: string;
99
- ko: string;
100
- zh: string;
101
- it: string;
102
- pt: string;
103
- hi: string;
104
- ar: string;
105
- ru: string;
106
- tr: string;
107
- pl: string;
108
- id: string;
109
- vi: string;
110
- uk: string;
111
- }>;
112
- description: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
113
- en: string;
114
- 'en-GB': string;
115
- fr: string;
116
- es: string;
117
- de: string;
118
- ja: string;
119
- ko: string;
120
- zh: string;
121
- it: string;
122
- pt: string;
123
- hi: string;
124
- ar: string;
125
- ru: string;
126
- tr: string;
127
- pl: string;
128
- id: string;
129
- vi: string;
130
- uk: string;
131
- }>;
132
- };
133
- createDictionaryTitle: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
134
- en: string;
135
- 'en-GB': string;
136
- fr: string;
137
- es: string;
138
- de: string;
139
- ja: string;
140
- ko: string;
141
- zh: string;
142
- it: string;
143
- pt: string;
144
- hi: string;
145
- ar: string;
146
- ru: string;
147
- tr: string;
148
- pl: string;
149
- id: string;
150
- vi: string;
151
- uk: string;
152
- }>;
153
- createDictionaryDescription: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
154
- en: string;
155
- 'en-GB': string;
156
- fr: string;
157
- es: string;
158
- de: string;
159
- ja: string;
160
- ko: string;
161
- zh: string;
162
- it: string;
163
- pt: string;
164
- hi: string;
165
- ar: string;
166
- ru: string;
167
- tr: string;
168
- pl: string;
169
- id: string;
170
- vi: string;
171
- uk: string;
172
- }>;
173
91
  createDictionaryButton: {
174
92
  text: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
175
93
  en: string;
@@ -1 +1 @@
1
- {"version":3,"file":"dictionaryCreationForm.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.ts"],"mappings":";;;cAEa,qBAAA;;;;aAyQS,4BAAA,CAAA,kBAAA"}
1
+ {"version":3,"file":"dictionaryCreationForm.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.ts"],"mappings":";;;cAEa,qBAAA;;;;aAoLS,4BAAA,CAAA,kBAAA"}
@@ -214,48 +214,6 @@ declare const navigationViewContent: {
214
214
  uk: string;
215
215
  }>;
216
216
  };
217
- addNewCondition: {
218
- label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
219
- en: string;
220
- 'en-GB': string;
221
- fr: string;
222
- es: string;
223
- de: string;
224
- ja: string;
225
- ko: string;
226
- zh: string;
227
- it: string;
228
- pt: string;
229
- hi: string;
230
- ar: string;
231
- ru: string;
232
- tr: string;
233
- pl: string;
234
- id: string;
235
- vi: string;
236
- uk: string;
237
- }>;
238
- text: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
239
- en: string;
240
- 'en-GB': string;
241
- fr: string;
242
- es: string;
243
- de: string;
244
- ja: string;
245
- ko: string;
246
- zh: string;
247
- it: string;
248
- pt: string;
249
- hi: string;
250
- ar: string;
251
- ru: string;
252
- tr: string;
253
- pl: string;
254
- id: string;
255
- vi: string;
256
- uk: string;
257
- }>;
258
- };
259
217
  };
260
218
  title: string;
261
219
  description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"navigationViewNode.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.ts"],"mappings":";;;cAEa,qBAAA;;;oBAoQS,4BAAA,CAAA,kBAAA"}
1
+ {"version":3,"file":"navigationViewNode.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.ts"],"mappings":";;;cAEa,qBAAA;;;oBA0NS,4BAAA,CAAA,kBAAA"}
@@ -54,7 +54,7 @@ declare enum LinkUnderlined {
54
54
  }
55
55
  declare const linkVariants: (props?: {
56
56
  variant?: "default" | "invisible-link" | "hoverable" | "button" | "button-outlined";
57
- roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
57
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
58
58
  color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text-inverse" | "error" | "success" | "custom";
59
59
  size?: "sm" | "md" | "lg" | "xl" | "custom";
60
60
  underlined?: boolean | LinkUnderlined.DEFAULT;
@@ -185,7 +185,7 @@ declare enum TagBackground {
185
185
  WITH = "with"
186
186
  }
187
187
  declare const containerVariants: (props?: {
188
- roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
188
+ roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
189
189
  color?: "text" | "primary" | "neutral" | "error" | "success" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
190
190
  size?: "xs" | "sm" | "md" | "lg" | "xl";
191
191
  border?: "none" | "with";