@intlayer/design-system 5.3.1 → 5.3.2
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/components/Auth/ChangePasswordForm/changePasswordForm.content.d.ts +144 -0
- package/dist/components/Auth/ChangePasswordForm/changePasswordForm.content.d.ts.map +1 -1
- package/dist/components/Auth/ChangePasswordForm/useChangePasswordSchema.content.d.ts +144 -0
- package/dist/components/Auth/ChangePasswordForm/useChangePasswordSchema.content.d.ts.map +1 -1
- package/dist/components/Auth/DefineNewPasswordForm/defineNewPasswordForm.content.d.ts +108 -0
- package/dist/components/Auth/DefineNewPasswordForm/defineNewPasswordForm.content.d.ts.map +1 -1
- package/dist/components/Auth/DefineNewPasswordForm/useDefineNewPasswordSchema.content.d.ts +108 -0
- package/dist/components/Auth/DefineNewPasswordForm/useDefineNewPasswordSchema.content.d.ts.map +1 -1
- package/dist/components/Auth/ExternalsLoginButtons/externalsLoginButtons.content.d.ts +90 -0
- package/dist/components/Auth/ExternalsLoginButtons/externalsLoginButtons.content.d.ts.map +1 -1
- package/dist/components/Auth/ResetPasswordForm/resetPasswordContent.content.d.ts +126 -0
- package/dist/components/Auth/ResetPasswordForm/resetPasswordContent.content.d.ts.map +1 -1
- package/dist/components/Auth/ResetPasswordForm/useResetPasswordSchema.content.d.ts +54 -0
- package/dist/components/Auth/ResetPasswordForm/useResetPasswordSchema.content.d.ts.map +1 -1
- package/dist/components/Auth/SignInForm/signIn.content.d.ts +234 -0
- package/dist/components/Auth/SignInForm/signIn.content.d.ts.map +1 -1
- package/dist/components/Auth/SignInForm/useSignInSchema.content.d.ts +72 -0
- package/dist/components/Auth/SignInForm/useSignInSchema.content.d.ts.map +1 -1
- package/dist/components/Auth/SignUpForm/signUpForm.content.d.ts +198 -0
- package/dist/components/Auth/SignUpForm/signUpForm.content.d.ts.map +1 -1
- package/dist/components/Auth/SignUpForm/useSignUpSchema.content.d.ts +126 -0
- package/dist/components/Auth/SignUpForm/useSignUpSchema.content.d.ts.map +1 -1
- package/dist/components/Auth/VerifyEmailForm/index.content.d.ts +72 -0
- package/dist/components/Auth/VerifyEmailForm/index.content.d.ts.map +1 -1
- package/dist/components/Breadcrumb/breadcrumb.content.d.ts +18 -0
- package/dist/components/Breadcrumb/breadcrumb.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts +234 -0
- package/dist/components/DictionaryFieldEditor/DictionaryCreationForm/dictionaryCreationForm.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.content.d.ts +72 -0
- package/dist/components/DictionaryFieldEditor/DictionaryCreationForm/useDictionaryFormSchema.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts +303 -0
- package/dist/components/DictionaryFieldEditor/DictionaryDetails/dictionaryDetails.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/DictionaryDetails/useDictionaryDetailsSchema.content.d.ts +216 -0
- package/dist/components/DictionaryFieldEditor/DictionaryDetails/useDictionaryDetailsSchema.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts +270 -0
- package/dist/components/DictionaryFieldEditor/NavigationView/navigationViewNode.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/SaveForm/saveForm.content.d.ts +144 -0
- package/dist/components/DictionaryFieldEditor/SaveForm/saveForm.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/StructureView/structureView.content.d.ts +72 -0
- package/dist/components/DictionaryFieldEditor/StructureView/structureView.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/VersionSwitcherDropDown/versionSwitcherDropDown.content.d.ts +54 -0
- package/dist/components/DictionaryFieldEditor/VersionSwitcherDropDown/versionSwitcherDropDown.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/dictionaryFieldEditor.content.d.ts +36 -0
- package/dist/components/DictionaryFieldEditor/dictionaryFieldEditor.content.d.ts.map +1 -1
- package/dist/components/DictionaryFieldEditor/nodeTypeSelector.content.d.ts +217 -0
- package/dist/components/DictionaryFieldEditor/nodeTypeSelector.content.d.ts.map +1 -1
- package/dist/components/IDE/CopyButton.content.d.ts +18 -0
- package/dist/components/IDE/CopyButton.content.d.ts.map +1 -1
- package/dist/components/Loader/index.content.d.ts +15 -0
- package/dist/components/Loader/index.content.d.ts.map +1 -1
- package/dist/components/LocaleSwitcherContentDropDown/localeSwitcher.content.d.ts +144 -0
- package/dist/components/LocaleSwitcherContentDropDown/localeSwitcher.content.d.ts.map +1 -1
- package/dist/components/LocaleSwitcherDropDown/localeSwitcher.content.d.ts +108 -0
- package/dist/components/LocaleSwitcherDropDown/localeSwitcher.content.d.ts.map +1 -1
- package/package.json +20 -20
|
@@ -15,6 +15,24 @@ declare const localeSwitcherContent: {
|
|
|
15
15
|
hi: string;
|
|
16
16
|
ar: string;
|
|
17
17
|
ru: string;
|
|
18
|
+
}, {
|
|
19
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
20
|
+
} & {
|
|
21
|
+
translation: {
|
|
22
|
+
en: string;
|
|
23
|
+
'en-GB': string;
|
|
24
|
+
fr: string;
|
|
25
|
+
es: string;
|
|
26
|
+
de: string;
|
|
27
|
+
ja: string;
|
|
28
|
+
ko: string;
|
|
29
|
+
zh: string;
|
|
30
|
+
it: string;
|
|
31
|
+
pt: string;
|
|
32
|
+
hi: string;
|
|
33
|
+
ar: string;
|
|
34
|
+
ru: string;
|
|
35
|
+
};
|
|
18
36
|
}>;
|
|
19
37
|
languageListLabel: import('@intlayer/core').TypedNodeModel<import("@intlayer/core").NodeType.Translation, {
|
|
20
38
|
en: string;
|
|
@@ -30,6 +48,24 @@ declare const localeSwitcherContent: {
|
|
|
30
48
|
hi: string;
|
|
31
49
|
ar: string;
|
|
32
50
|
ru: string;
|
|
51
|
+
}, {
|
|
52
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
53
|
+
} & {
|
|
54
|
+
translation: {
|
|
55
|
+
en: string;
|
|
56
|
+
'en-GB': string;
|
|
57
|
+
fr: string;
|
|
58
|
+
es: string;
|
|
59
|
+
de: string;
|
|
60
|
+
ja: string;
|
|
61
|
+
ko: string;
|
|
62
|
+
zh: string;
|
|
63
|
+
it: string;
|
|
64
|
+
pt: string;
|
|
65
|
+
hi: string;
|
|
66
|
+
ar: string;
|
|
67
|
+
ru: string;
|
|
68
|
+
};
|
|
33
69
|
}>;
|
|
34
70
|
switchTo: import('@intlayer/core').TypedNodeModel<import("@intlayer/core").NodeType.Translation, {
|
|
35
71
|
en: string;
|
|
@@ -45,6 +81,24 @@ declare const localeSwitcherContent: {
|
|
|
45
81
|
hi: string;
|
|
46
82
|
ar: string;
|
|
47
83
|
ru: string;
|
|
84
|
+
}, {
|
|
85
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
86
|
+
} & {
|
|
87
|
+
translation: {
|
|
88
|
+
en: string;
|
|
89
|
+
fr: string;
|
|
90
|
+
es: string;
|
|
91
|
+
'en-GB': string;
|
|
92
|
+
de: string;
|
|
93
|
+
ja: string;
|
|
94
|
+
ko: string;
|
|
95
|
+
zh: string;
|
|
96
|
+
it: string;
|
|
97
|
+
pt: string;
|
|
98
|
+
hi: string;
|
|
99
|
+
ar: string;
|
|
100
|
+
ru: string;
|
|
101
|
+
};
|
|
48
102
|
}>;
|
|
49
103
|
searchInput: {
|
|
50
104
|
text: import('@intlayer/core').TypedNodeModel<import("@intlayer/core").NodeType.Translation, {
|
|
@@ -61,6 +115,24 @@ declare const localeSwitcherContent: {
|
|
|
61
115
|
hi: string;
|
|
62
116
|
ar: string;
|
|
63
117
|
ru: string;
|
|
118
|
+
}, {
|
|
119
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
120
|
+
} & {
|
|
121
|
+
translation: {
|
|
122
|
+
en: string;
|
|
123
|
+
'en-GB': string;
|
|
124
|
+
fr: string;
|
|
125
|
+
es: string;
|
|
126
|
+
de: string;
|
|
127
|
+
ja: string;
|
|
128
|
+
ko: string;
|
|
129
|
+
zh: string;
|
|
130
|
+
it: string;
|
|
131
|
+
pt: string;
|
|
132
|
+
hi: string;
|
|
133
|
+
ar: string;
|
|
134
|
+
ru: string;
|
|
135
|
+
};
|
|
64
136
|
}>;
|
|
65
137
|
placeholder: import('@intlayer/core').TypedNodeModel<import("@intlayer/core").NodeType.Translation, {
|
|
66
138
|
en: string;
|
|
@@ -76,6 +148,24 @@ declare const localeSwitcherContent: {
|
|
|
76
148
|
hi: string;
|
|
77
149
|
ar: string;
|
|
78
150
|
ru: string;
|
|
151
|
+
}, {
|
|
152
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
153
|
+
} & {
|
|
154
|
+
translation: {
|
|
155
|
+
en: string;
|
|
156
|
+
'en-GB': string;
|
|
157
|
+
fr: string;
|
|
158
|
+
es: string;
|
|
159
|
+
de: string;
|
|
160
|
+
ja: string;
|
|
161
|
+
ko: string;
|
|
162
|
+
zh: string;
|
|
163
|
+
it: string;
|
|
164
|
+
pt: string;
|
|
165
|
+
hi: string;
|
|
166
|
+
ar: string;
|
|
167
|
+
ru: string;
|
|
168
|
+
};
|
|
79
169
|
}>;
|
|
80
170
|
ariaLabel: import('@intlayer/core').TypedNodeModel<import("@intlayer/core").NodeType.Translation, {
|
|
81
171
|
en: string;
|
|
@@ -91,6 +181,24 @@ declare const localeSwitcherContent: {
|
|
|
91
181
|
hi: string;
|
|
92
182
|
ar: string;
|
|
93
183
|
ru: string;
|
|
184
|
+
}, {
|
|
185
|
+
nodeType: import("@intlayer/core").NodeType.Translation | "translation";
|
|
186
|
+
} & {
|
|
187
|
+
translation: {
|
|
188
|
+
en: string;
|
|
189
|
+
'en-GB': string;
|
|
190
|
+
fr: string;
|
|
191
|
+
es: string;
|
|
192
|
+
de: string;
|
|
193
|
+
ja: string;
|
|
194
|
+
ko: string;
|
|
195
|
+
zh: string;
|
|
196
|
+
it: string;
|
|
197
|
+
pt: string;
|
|
198
|
+
hi: string;
|
|
199
|
+
ar: string;
|
|
200
|
+
ru: string;
|
|
201
|
+
};
|
|
94
202
|
}>;
|
|
95
203
|
};
|
|
96
204
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localeSwitcher.content.d.ts","sourceRoot":"","sources":["../../../src/components/LocaleSwitcherDropDown/localeSwitcher.content.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"localeSwitcher.content.d.ts","sourceRoot":"","sources":["../../../src/components/LocaleSwitcherDropDown/localeSwitcher.content.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgGL,CAAC;AAEvB,eAAe,qBAAqB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/design-system",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2",
|
|
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": [
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"tailwind-merge": "^3.0.2",
|
|
79
79
|
"zod": "^3.24.1",
|
|
80
80
|
"zustand": "^4.5.6",
|
|
81
|
-
"@intlayer/api": "5.3.
|
|
82
|
-
"@intlayer/config": "5.3.
|
|
83
|
-
"@intlayer/
|
|
84
|
-
"@intlayer/
|
|
85
|
-
"
|
|
86
|
-
"@intlayer/
|
|
87
|
-
"
|
|
81
|
+
"@intlayer/api": "5.3.2",
|
|
82
|
+
"@intlayer/config": "5.3.2",
|
|
83
|
+
"@intlayer/core": "5.3.2",
|
|
84
|
+
"@intlayer/dictionaries-entry": "5.3.2",
|
|
85
|
+
"@intlayer/editor": "5.3.2",
|
|
86
|
+
"@intlayer/editor-react": "5.3.2",
|
|
87
|
+
"react-intlayer": "5.3.2"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@chromatic-com/storybook": "^3.2.3",
|
|
@@ -121,11 +121,11 @@
|
|
|
121
121
|
"vite": "^6.0.11",
|
|
122
122
|
"vite-plugin-dts": "^4.5.0",
|
|
123
123
|
"vitest": "^3.0.5",
|
|
124
|
-
"@intlayer/backend": "5.3.
|
|
125
|
-
"@utils/ts-config": "1.0.4",
|
|
124
|
+
"@intlayer/backend": "5.3.2",
|
|
126
125
|
"@utils/eslint-config": "1.0.4",
|
|
127
|
-
"@utils/
|
|
128
|
-
"@utils/
|
|
126
|
+
"@utils/tsup-config": "1.0.4",
|
|
127
|
+
"@utils/ts-config": "1.0.4",
|
|
128
|
+
"@utils/ts-config-types": "1.0.4"
|
|
129
129
|
},
|
|
130
130
|
"peerDependencies": {
|
|
131
131
|
"@monaco-editor/react": "^4.6.0",
|
|
@@ -136,14 +136,14 @@
|
|
|
136
136
|
"react-dom": ">=16.0.0",
|
|
137
137
|
"tailwind-merge": "^3.0.2",
|
|
138
138
|
"zustand": "^4.5.6",
|
|
139
|
-
"@intlayer/api": "5.3.
|
|
140
|
-
"@intlayer/config": "5.3.
|
|
141
|
-
"@intlayer/
|
|
142
|
-
"@intlayer/
|
|
143
|
-
"@intlayer/editor
|
|
144
|
-
"react
|
|
145
|
-
"intlayer": "5.3.
|
|
146
|
-
"
|
|
139
|
+
"@intlayer/api": "5.3.2",
|
|
140
|
+
"@intlayer/config": "5.3.2",
|
|
141
|
+
"@intlayer/core": "5.3.2",
|
|
142
|
+
"@intlayer/dictionaries-entry": "5.3.2",
|
|
143
|
+
"@intlayer/editor": "5.3.2",
|
|
144
|
+
"@intlayer/editor-react": "5.3.2",
|
|
145
|
+
"react-intlayer": "5.3.2",
|
|
146
|
+
"intlayer": "5.3.2"
|
|
147
147
|
},
|
|
148
148
|
"scripts": {
|
|
149
149
|
"build": "pnpm build:package && pnpm build:css",
|