@intlayer/design-system 8.6.9 → 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.
- package/dist/esm/components/ContentEditor/ContentEditorTextArea.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/ContentEditorView/TextEditor.mjs +2 -2
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs +0 -82
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs +3 -3
- package/dist/esm/components/DictionaryFieldEditor/DictionaryFieldEditor.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/NavigationView/NavigationViewNode.mjs +2 -2
- package/dist/esm/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.mjs +0 -42
- package/dist/esm/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/SaveForm/SaveForm.mjs +2 -2
- package/dist/esm/components/DictionaryFieldEditor/StructureView/StructureView.mjs +1 -1
- package/dist/esm/components/Form/elements/OTPElement.mjs +1 -1
- package/dist/esm/components/LocaleSwitcherContentDropDown/LocaleSwitcherContent.mjs +1 -1
- package/dist/esm/components/Modal/Modal.mjs +2 -2
- package/dist/esm/components/Navbar/MobileNavbar.mjs +1 -1
- package/dist/esm/components/Pagination/Pagination.mjs +1 -1
- package/dist/esm/components/RightDrawer/RightDrawer.mjs +3 -3
- package/dist/esm/components/TabSelector/TabSelector.mjs +1 -1
- package/dist/esm/components/TabSelector/TabSelector.mjs.map +1 -1
- package/dist/esm/hooks/index.mjs +9 -9
- package/dist/types/components/Badge/index.d.ts +2 -2
- package/dist/types/components/Button/Button.d.ts +3 -3
- package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +1 -1
- package/dist/types/components/Command/index.d.ts +2 -2
- package/dist/types/components/Container/index.d.ts +7 -7
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +0 -82
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts +0 -42
- package/dist/types/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts.map +1 -1
- package/dist/types/components/Input/Checkbox.d.ts +3 -3
- package/dist/types/components/Input/Input.d.ts +1 -1
- package/dist/types/components/Link/Link.d.ts +2 -2
- package/dist/types/components/Pagination/Pagination.d.ts +1 -1
- package/dist/types/components/SwitchSelector/index.d.ts +1 -1
- package/dist/types/components/TabSelector/TabSelector.d.ts +1 -1
- package/dist/types/components/Tag/index.d.ts +2 -2
- package/package.json +334 -29
|
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
5
5
|
//#region src/components/CollapsibleTable/CollapsibleTable.d.ts
|
|
6
6
|
declare const collapsibleTableVariants: (props?: {
|
|
7
7
|
size?: "sm" | "md" | "lg" | "xl" | "full";
|
|
8
|
-
variant?: "default" | "
|
|
8
|
+
variant?: "default" | "ghost" | "dark" | "outlined";
|
|
9
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> {
|
|
@@ -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">, "type" | "
|
|
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>>;
|
|
@@ -73,7 +73,7 @@ declare const Command: {
|
|
|
73
73
|
ref?: React.Ref<HTMLDivElement>;
|
|
74
74
|
} & {
|
|
75
75
|
asChild?: boolean;
|
|
76
|
-
}, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "
|
|
76
|
+
}, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
|
|
77
77
|
disabled?: boolean;
|
|
78
78
|
onSelect?: (value: string) => void;
|
|
79
79
|
value?: string;
|
|
@@ -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?: "sm" | "md" | "lg" | "xl" | "
|
|
12
|
-
transparency?: "
|
|
13
|
-
padding?: "sm" | "md" | "lg" | "xl" | "
|
|
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?: "
|
|
16
|
-
borderColor?: "error" | "
|
|
17
|
-
background?: "
|
|
18
|
-
gap?: "sm" | "md" | "lg" | "xl" | "
|
|
15
|
+
border?: "with" | "none";
|
|
16
|
+
borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "card" | "warning";
|
|
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;;;;
|
|
1
|
+
{"version":3,"file":"dictionaryCreationForm.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.ts"],"mappings":";;;cAEa,qBAAA;;;;aAoLS,4BAAA,CAAA,kBAAA"}
|
package/dist/types/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts
CHANGED
|
@@ -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;;;
|
|
1
|
+
{"version":3,"file":"navigationViewNode.content.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.ts"],"mappings":";;;cAEa,qBAAA;;;oBA0NS,4BAAA,CAAA,kBAAA"}
|
|
@@ -5,9 +5,9 @@ import { VariantProps } from "class-variance-authority";
|
|
|
5
5
|
//#region src/components/Input/Checkbox.d.ts
|
|
6
6
|
declare const checkboxVariants: (props?: {
|
|
7
7
|
variant?: "default";
|
|
8
|
-
size?: "
|
|
9
|
-
color?: "error" | "
|
|
10
|
-
validationStyleEnabled?: "
|
|
8
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
9
|
+
color?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "destructive" | "light" | "dark" | "custom";
|
|
10
|
+
validationStyleEnabled?: "enabled" | "disabled";
|
|
11
11
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
12
12
|
declare enum CheckboxSize {
|
|
13
13
|
XS = "xs",
|
|
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
6
6
|
declare const inputVariants: (props?: {
|
|
7
7
|
variant?: "default" | "invisible";
|
|
8
8
|
size?: "sm" | "md" | "lg";
|
|
9
|
-
validationStyleEnabled?: "
|
|
9
|
+
validationStyleEnabled?: "enabled" | "disabled";
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
declare enum InputVariant {
|
|
12
12
|
DEFAULT = "default",
|
|
@@ -54,9 +54,9 @@ declare enum LinkUnderlined {
|
|
|
54
54
|
}
|
|
55
55
|
declare const linkVariants: (props?: {
|
|
56
56
|
variant?: "default" | "invisible-link" | "hoverable" | "button" | "button-outlined";
|
|
57
|
-
roundedSize?: "
|
|
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
|
-
size?: "
|
|
59
|
+
size?: "sm" | "md" | "lg" | "xl" | "custom";
|
|
60
60
|
underlined?: boolean | LinkUnderlined.DEFAULT;
|
|
61
61
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
62
62
|
type LinkProps = DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & VariantProps<typeof linkVariants> & {
|
|
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
5
5
|
//#region src/components/Pagination/Pagination.d.ts
|
|
6
6
|
declare const paginationVariants: (props?: {
|
|
7
7
|
size?: "sm" | "md" | "lg";
|
|
8
|
-
color?: "text" | "primary" | "secondary" | "
|
|
8
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "destructive";
|
|
9
9
|
variant?: "default" | "bordered" | "ghost";
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
declare enum PaginationSize {
|
|
@@ -15,7 +15,7 @@ declare enum TabSelectorColor {
|
|
|
15
15
|
TEXT = "text"
|
|
16
16
|
}
|
|
17
17
|
declare const tabSelectorVariant: (props?: {
|
|
18
|
-
color?: "text" | "primary" | "secondary" | "
|
|
18
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "destructive" | "light" | "dark";
|
|
19
19
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
20
20
|
type TabSelectorItemProps = HTMLAttributes<HTMLElement> & {
|
|
21
21
|
key: string | number;
|
|
@@ -185,9 +185,9 @@ declare enum TagBackground {
|
|
|
185
185
|
WITH = "with"
|
|
186
186
|
}
|
|
187
187
|
declare const containerVariants: (props?: {
|
|
188
|
-
roundedSize?: "
|
|
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
|
-
size?: "
|
|
190
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
191
191
|
border?: "none" | "with";
|
|
192
192
|
background?: "none" | "with";
|
|
193
193
|
} & _$class_variance_authority_types0.ClassProp) => string;
|