@intlayer/design-system 9.0.0-canary.7 → 9.0.0-canary.8
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/DictionaryFieldEditor/ContentEditor.mjs +39 -67
- package/dist/esm/components/DictionaryFieldEditor/ContentEditor.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs +46 -72
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs +0 -62
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs +2 -4
- package/dist/esm/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs +64 -145
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.mjs.map +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs +1 -1
- package/dist/esm/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.mjs.map +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/MarkDownRender/MarkDownRender.mjs +1 -1
- package/dist/esm/components/MarkDownRender/MarkDownRender.mjs.map +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/Tab/Tab.mjs +1 -1
- package/dist/esm/hooks/index.mjs +8 -8
- package/dist/types/components/Badge/index.d.ts +1 -1
- package/dist/types/components/Button/Button.d.ts +3 -3
- package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +2 -2
- package/dist/types/components/Command/index.d.ts +1 -1
- package/dist/types/components/Container/index.d.ts +5 -5
- package/dist/types/components/DictionaryFieldEditor/ContentEditor.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +0 -62
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts +3 -5
- package/dist/types/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts.map +1 -1
- package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts +1 -1
- package/dist/types/components/Input/Checkbox.d.ts +1 -1
- package/dist/types/components/Input/Radio.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/SwitchSelector.d.ts +2 -2
- package/dist/types/components/SwitchSelector/VerticalSwitchSelector.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/dist/types/components/Toaster/Toast.d.ts +1 -1
- package/package.json +15 -15
|
@@ -28,7 +28,7 @@ declare const Command: {
|
|
|
28
28
|
ref?: React.Ref<HTMLInputElement>;
|
|
29
29
|
} & {
|
|
30
30
|
asChild?: boolean;
|
|
31
|
-
}, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "
|
|
31
|
+
}, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "type" | "value" | "onChange"> & {
|
|
32
32
|
value?: string;
|
|
33
33
|
onValueChange?: (search: string) => void;
|
|
34
34
|
} & _$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?: "
|
|
12
|
-
transparency?: "
|
|
13
|
-
padding?: "
|
|
11
|
+
roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "4xl" | "full";
|
|
12
|
+
transparency?: "sm" | "md" | "lg" | "xs" | "xl" | "none" | "full";
|
|
13
|
+
padding?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
|
|
14
14
|
separator?: "both" | "without" | "x" | "y";
|
|
15
15
|
border?: "with" | "none";
|
|
16
|
-
borderColor?: "
|
|
16
|
+
borderColor?: "text" | "primary" | "secondary" | "neutral" | "error" | "success" | "card" | "warning";
|
|
17
17
|
background?: "with" | "none" | "hoverable";
|
|
18
|
-
gap?: "
|
|
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
|
type ContainerRoundedSize = 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentEditor.d.ts","names":[],"sources":["../../../../src/components/DictionaryFieldEditor/ContentEditor.tsx"],"mappings":";;;;KA4BK,eAAA;EACH,UAAA,EAAY,UAAA;EACZ,UAAA;AAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"ContentEditor.d.ts","names":[],"sources":["../../../../src/components/DictionaryFieldEditor/ContentEditor.tsx"],"mappings":";;;;KA4BK,eAAA;EACH,UAAA,EAAY,UAAA;EACZ,UAAA;AAAA;AAAA,cAWW,aAAA,EAAe,EAAA,CAAG,eAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DictionaryCreationForm.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.tsx"],"mappings":";;;KAwBK,2BAAA;EACH,mBAAA;AAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"DictionaryCreationForm.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/DictionaryCreationForm.tsx"],"mappings":";;;KAwBK,2BAAA;EACH,mBAAA;AAAA;AAAA,cAqIW,sBAAA,EAAwB,EAAA,CAAG,2BAAA"}
|
|
@@ -334,68 +334,6 @@ declare const dictionaryFormContent: {
|
|
|
334
334
|
uk: string;
|
|
335
335
|
}>;
|
|
336
336
|
};
|
|
337
|
-
metaIdInput: {
|
|
338
|
-
label: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
339
|
-
en: string;
|
|
340
|
-
'en-GB': string;
|
|
341
|
-
fr: string;
|
|
342
|
-
es: string;
|
|
343
|
-
de: string;
|
|
344
|
-
ja: string;
|
|
345
|
-
ko: string;
|
|
346
|
-
zh: string;
|
|
347
|
-
it: string;
|
|
348
|
-
pt: string;
|
|
349
|
-
hi: string;
|
|
350
|
-
ar: string;
|
|
351
|
-
ru: string;
|
|
352
|
-
tr: string;
|
|
353
|
-
pl: string;
|
|
354
|
-
id: string;
|
|
355
|
-
vi: string;
|
|
356
|
-
uk: string;
|
|
357
|
-
}>;
|
|
358
|
-
placeholder: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
359
|
-
en: string;
|
|
360
|
-
'en-GB': string;
|
|
361
|
-
fr: string;
|
|
362
|
-
es: string;
|
|
363
|
-
de: string;
|
|
364
|
-
ja: string;
|
|
365
|
-
ko: string;
|
|
366
|
-
zh: string;
|
|
367
|
-
it: string;
|
|
368
|
-
pt: string;
|
|
369
|
-
hi: string;
|
|
370
|
-
ar: string;
|
|
371
|
-
ru: string;
|
|
372
|
-
tr: string;
|
|
373
|
-
pl: string;
|
|
374
|
-
id: string;
|
|
375
|
-
vi: string;
|
|
376
|
-
uk: string;
|
|
377
|
-
}>;
|
|
378
|
-
description: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
379
|
-
en: string;
|
|
380
|
-
'en-GB': string;
|
|
381
|
-
fr: string;
|
|
382
|
-
es: string;
|
|
383
|
-
de: string;
|
|
384
|
-
ja: string;
|
|
385
|
-
ko: string;
|
|
386
|
-
zh: string;
|
|
387
|
-
it: string;
|
|
388
|
-
pt: string;
|
|
389
|
-
hi: string;
|
|
390
|
-
ar: string;
|
|
391
|
-
ru: string;
|
|
392
|
-
tr: string;
|
|
393
|
-
pl: string;
|
|
394
|
-
id: string;
|
|
395
|
-
vi: string;
|
|
396
|
-
uk: string;
|
|
397
|
-
}>;
|
|
398
|
-
};
|
|
399
337
|
createDictionaryButton: {
|
|
400
338
|
text: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
401
339
|
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;;;;aAqYS,4BAAA,CAAA,kBAAA"}
|
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
import { z } from "zod/v4";
|
|
2
2
|
|
|
3
3
|
//#region src/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.d.ts
|
|
4
|
-
declare const QUALIFIER_TYPES: readonly ["none", "item", "variant"
|
|
4
|
+
declare const QUALIFIER_TYPES: readonly ["none", "item", "variant"];
|
|
5
5
|
type QualifierType = (typeof QUALIFIER_TYPES)[number];
|
|
6
6
|
declare const useDictionarySchema: (projectId: string) => z.ZodObject<{
|
|
7
7
|
key: z.ZodDefault<z.ZodString>;
|
|
8
8
|
projectIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9
9
|
qualifierType: z.ZodDefault<z.ZodEnum<{
|
|
10
|
-
meta: "meta";
|
|
11
|
-
none: "none";
|
|
12
|
-
item: "item";
|
|
13
10
|
variant: "variant";
|
|
11
|
+
item: "item";
|
|
12
|
+
none: "none";
|
|
14
13
|
}>>;
|
|
15
14
|
item: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16
15
|
variant: z.ZodOptional<z.ZodString>;
|
|
17
|
-
metaId: z.ZodOptional<z.ZodString>;
|
|
18
16
|
}, z.core.$strip>;
|
|
19
17
|
type DictionaryFormData = z.infer<ReturnType<typeof useDictionarySchema>>;
|
|
20
18
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDictionaryFormSchema.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.ts"],"mappings":";;;cAGa,eAAA;AAAA,KACD,aAAA,WAAwB,eAAA;AAAA,cAEvB,mBAAA,GAAuB,SAAA,aAAiB,CAAA,CAAA,SAAA
|
|
1
|
+
{"version":3,"file":"useDictionaryFormSchema.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.ts"],"mappings":";;;cAGa,eAAA;AAAA,KACD,aAAA,WAAwB,eAAA;AAAA,cAEvB,mBAAA,GAAuB,SAAA,aAAiB,CAAA,CAAA,SAAA;;;;;;;;;;;KAkCzC,kBAAA,GAAqB,CAAA,CAAE,KAAA,CACjC,UAAA,QAAkB,mBAAA"}
|
package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DictionaryDetailsForm.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.tsx"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"DictionaryDetailsForm.d.ts","names":[],"sources":["../../../../../src/components/DictionaryFieldEditor/DictionaryDetails/DictionaryDetailsForm.tsx"],"mappings":";;;;KAwCK,sBAAA;EACH,UAAA,EAAY,UAAA;EACZ,IAAA;EACA,eAAA,IAAmB,UAAA,EAAY,UAAA;EAC/B,UAAA;AAAA;AAAA,cA2CW,qBAAA,EAAuB,EAAA,CAAG,sBAAA"}
|
package/dist/types/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts
CHANGED
|
@@ -986,7 +986,7 @@ declare const dictionaryDetailsContent: {
|
|
|
986
986
|
vi: string;
|
|
987
987
|
uk: string;
|
|
988
988
|
}>;
|
|
989
|
-
|
|
989
|
+
variantJsonError: _$_intlayer_core_transpiler0.TranslationContent<unknown, {
|
|
990
990
|
en: string;
|
|
991
991
|
'en-GB': string;
|
|
992
992
|
fr: string;
|
|
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
6
6
|
declare const checkboxVariants: (props?: {
|
|
7
7
|
variant?: "default";
|
|
8
8
|
size?: "sm" | "md" | "lg" | "xs";
|
|
9
|
-
color?: "
|
|
9
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "success" | "light" | "text-inverse" | "dark" | "custom";
|
|
10
10
|
validationStyleEnabled?: "enabled" | "disabled";
|
|
11
11
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
12
12
|
type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
6
6
|
declare const radioVariants: (props?: {
|
|
7
7
|
variant?: "default";
|
|
8
8
|
size?: "sm" | "md" | "lg" | "xs";
|
|
9
|
-
color?: "
|
|
9
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "success" | "light" | "text-inverse" | "dark" | "custom";
|
|
10
10
|
validationStyleEnabled?: "enabled" | "disabled";
|
|
11
11
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
12
12
|
type RadioSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -14,8 +14,8 @@ type LinkSize = 'sm' | 'md' | 'lg' | 'xl' | 'custom';
|
|
|
14
14
|
type LinkUnderlined = 'default' | 'true' | 'false';
|
|
15
15
|
declare const linkVariants: (props?: {
|
|
16
16
|
variant?: "default" | "button" | "invisible-link" | "hoverable" | "button-outlined";
|
|
17
|
-
roundedSize?: "
|
|
18
|
-
color?: "
|
|
17
|
+
roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
|
|
18
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "success" | "light" | "text-inverse" | "dark" | "custom";
|
|
19
19
|
size?: "sm" | "md" | "lg" | "xl" | "custom";
|
|
20
20
|
underlined?: boolean | "default";
|
|
21
21
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
@@ -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?: "
|
|
8
|
+
color?: "text" | "primary" | "secondary" | "neutral";
|
|
9
9
|
variant?: "default" | "bordered" | "ghost";
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
type PaginationSize = 'sm' | 'md' | 'lg';
|
|
@@ -25,14 +25,14 @@ type SwitchSelectorBaseProps<T = boolean> = {
|
|
|
25
25
|
};
|
|
26
26
|
type SwitchSelectorProps<T = boolean> = SwitchSelectorBaseProps<T> & VariantProps<typeof switchSelectorVariant> & VariantProps<typeof choiceVariant>;
|
|
27
27
|
declare const switchSelectorVariant: (props?: {
|
|
28
|
-
color?: "
|
|
28
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "light" | "dark";
|
|
29
29
|
disabled?: boolean;
|
|
30
30
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
31
31
|
declare const choiceVariant: (props?: {
|
|
32
32
|
size?: "sm" | "md" | "lg" | "xs";
|
|
33
33
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
34
34
|
declare const indicatorVariant: (props?: {
|
|
35
|
-
color?: "
|
|
35
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "light" | "dark";
|
|
36
36
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
37
37
|
/**
|
|
38
38
|
* Component that allows the user to select one of the provided choices.
|
|
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/SwitchSelector/VerticalSwitchSelector.d.ts
|
|
7
7
|
declare const verticalSwitchSelectorVariant: (props?: {
|
|
8
|
-
color?: "
|
|
8
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "light" | "dark";
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
11
11
|
declare const verticalChoiceVariant: (props?: {
|
|
@@ -7,7 +7,7 @@ import { ItemSelectorOrientation } from "@hooks/useItemSelector";
|
|
|
7
7
|
//#region src/components/TabSelector/TabSelector.d.ts
|
|
8
8
|
type TabSelectorColor = 'primary' | 'secondary' | 'error' | 'neutral' | 'light' | 'dark' | 'text';
|
|
9
9
|
declare const tabSelectorVariant: (props?: {
|
|
10
|
-
color?: "
|
|
10
|
+
color?: "text" | "primary" | "secondary" | "neutral" | "error" | "light" | "dark";
|
|
11
11
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
12
12
|
type TabSelectorItemProps = HTMLAttributes<HTMLElement> & {
|
|
13
13
|
key: string | number;
|
|
@@ -146,8 +146,8 @@ type TagBorder = 'none' | 'with';
|
|
|
146
146
|
*/
|
|
147
147
|
type TagBackground = 'none' | 'with';
|
|
148
148
|
declare const containerVariants: (props?: {
|
|
149
|
-
roundedSize?: "
|
|
150
|
-
color?: "
|
|
149
|
+
roundedSize?: "sm" | "md" | "lg" | "xl" | "none" | "full" | "xxl" | "xxxl";
|
|
150
|
+
color?: "text" | "primary" | "neutral" | "error" | "success" | "warning" | "black" | "white";
|
|
151
151
|
size?: "sm" | "md" | "lg" | "xs" | "xl";
|
|
152
152
|
border?: "with" | "none";
|
|
153
153
|
background?: "with" | "none";
|
|
@@ -25,7 +25,7 @@ declare const ToastViewport: FC<ComponentProps<typeof ToastPrimitives.Viewport>>
|
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
declare const toastVariants: (props?: {
|
|
28
|
-
variant?: "
|
|
28
|
+
variant?: "default" | "error" | "success";
|
|
29
29
|
} & _$class_variance_authority_types0.ClassProp) => string;
|
|
30
30
|
/**
|
|
31
31
|
* Toast Component
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/design-system",
|
|
3
|
-
"version": "9.0.0-canary.
|
|
3
|
+
"version": "9.0.0-canary.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Intlayer design system, including UI components used in the Intlayer editor, website, and visual editor/CMS.",
|
|
6
6
|
"keywords": [
|
|
@@ -442,13 +442,13 @@
|
|
|
442
442
|
"dependencies": {
|
|
443
443
|
"@better-auth/passkey": "1.6.20",
|
|
444
444
|
"@better-auth/sso": "1.6.20",
|
|
445
|
-
"@intlayer/api": "9.0.0-canary.
|
|
446
|
-
"@intlayer/chokidar": "9.0.0-canary.
|
|
447
|
-
"@intlayer/config": "9.0.0-canary.
|
|
448
|
-
"@intlayer/core": "9.0.0-canary.
|
|
449
|
-
"@intlayer/dictionaries-entry": "9.0.0-canary.
|
|
450
|
-
"@intlayer/editor-react": "9.0.0-canary.
|
|
451
|
-
"@intlayer/types": "9.0.0-canary.
|
|
445
|
+
"@intlayer/api": "9.0.0-canary.8",
|
|
446
|
+
"@intlayer/chokidar": "9.0.0-canary.8",
|
|
447
|
+
"@intlayer/config": "9.0.0-canary.8",
|
|
448
|
+
"@intlayer/core": "9.0.0-canary.8",
|
|
449
|
+
"@intlayer/dictionaries-entry": "9.0.0-canary.8",
|
|
450
|
+
"@intlayer/editor-react": "9.0.0-canary.8",
|
|
451
|
+
"@intlayer/types": "9.0.0-canary.8",
|
|
452
452
|
"@radix-ui/react-dialog": "1.1.17",
|
|
453
453
|
"@radix-ui/react-select": "2.3.1",
|
|
454
454
|
"@radix-ui/react-slot": "1.3.0",
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
"defu": "6.1.7",
|
|
482
482
|
"dompurify": "3.4.10",
|
|
483
483
|
"isomorphic-dompurify": "3.17.0",
|
|
484
|
-
"react-intlayer": "9.0.0-canary.
|
|
484
|
+
"react-intlayer": "9.0.0-canary.8",
|
|
485
485
|
"react-moveable": "^0.56.0",
|
|
486
486
|
"rollup-preserve-directives": "1.1.3",
|
|
487
487
|
"tippy.js": "^6.3.7",
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
"zod": "4.4.3"
|
|
493
493
|
},
|
|
494
494
|
"devDependencies": {
|
|
495
|
-
"@intlayer/backend": "9.0.0-canary.
|
|
495
|
+
"@intlayer/backend": "9.0.0-canary.8",
|
|
496
496
|
"@shikijs/transformers": "4.2.0",
|
|
497
497
|
"@storybook/addon-a11y": "8.6.14",
|
|
498
498
|
"@storybook/addon-essentials": "8.6.14",
|
|
@@ -522,33 +522,33 @@
|
|
|
522
522
|
"@utils/ts-config": "1.0.4",
|
|
523
523
|
"@utils/ts-config-types": "1.0.4",
|
|
524
524
|
"fast-glob": "3.3.3",
|
|
525
|
-
"intlayer": "9.0.0-canary.
|
|
525
|
+
"intlayer": "9.0.0-canary.8",
|
|
526
526
|
"rimraf": "6.1.3",
|
|
527
527
|
"shiki": "4.2.0",
|
|
528
528
|
"storybook": "8.6.17",
|
|
529
529
|
"tsdown": "0.21.10",
|
|
530
530
|
"typescript": "6.0.3",
|
|
531
531
|
"vite": "8.1.0",
|
|
532
|
-
"vite-intlayer": "9.0.0-canary.
|
|
532
|
+
"vite-intlayer": "9.0.0-canary.8",
|
|
533
533
|
"vite-plugin-dts": "5.0.2",
|
|
534
534
|
"vitest": "4.1.9"
|
|
535
535
|
},
|
|
536
536
|
"peerDependencies": {
|
|
537
537
|
"@better-fetch/fetch": "1.3.1",
|
|
538
538
|
"@hookform/resolvers": "5.4.0",
|
|
539
|
-
"@intlayer/backend": "9.0.0-canary.
|
|
539
|
+
"@intlayer/backend": "9.0.0-canary.8",
|
|
540
540
|
"@monaco-editor/react": "4.7.0",
|
|
541
541
|
"@shikijs/transformers": "4.2.0",
|
|
542
542
|
"@tanstack/react-query": "5.101.1",
|
|
543
543
|
"@tanstack/react-query-devtools": "5.101.1",
|
|
544
544
|
"framer-motion": "12.41.0",
|
|
545
545
|
"fuse.js": "7.4.2",
|
|
546
|
-
"intlayer": "9.0.0-canary.
|
|
546
|
+
"intlayer": "9.0.0-canary.8",
|
|
547
547
|
"lucide-react": "1.21.0",
|
|
548
548
|
"react": ">=16.0.0",
|
|
549
549
|
"react-dom": ">=16.0.0",
|
|
550
550
|
"react-hook-form": "7.79.0",
|
|
551
|
-
"react-intlayer": "9.0.0-canary.
|
|
551
|
+
"react-intlayer": "9.0.0-canary.8",
|
|
552
552
|
"shiki": "4.2.0",
|
|
553
553
|
"tailwindcss": "4.3.1"
|
|
554
554
|
},
|