@snack-uikit/locale 0.14.0 → 0.14.1-preview-580e8472.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/cjs/components/LocaleProvider/LocaleProvider.d.ts +1 -1
- package/dist/cjs/locales/en_GB.d.ts +4 -0
- package/dist/cjs/locales/en_GB.js +4 -0
- package/dist/cjs/locales/index.d.ts +8 -0
- package/dist/cjs/locales/ru_RU.js +4 -0
- package/dist/esm/components/LocaleProvider/LocaleProvider.d.ts +1 -1
- package/dist/esm/locales/en_GB.d.ts +4 -0
- package/dist/esm/locales/en_GB.js +4 -0
- package/dist/esm/locales/index.d.ts +8 -0
- package/dist/esm/locales/ru_RU.js +4 -0
- package/package.json +2 -2
- package/src/locales/en_GB.ts +4 -0
- package/src/locales/ru_RU.ts +4 -0
|
@@ -26,7 +26,7 @@ export declare function createLocaleContext<D extends Dictionary>({ extendedDict
|
|
|
26
26
|
t: GetLocaleText<D>;
|
|
27
27
|
lang: LocaleLang;
|
|
28
28
|
};
|
|
29
|
-
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | keyof D>(componentName: C): {
|
|
29
|
+
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | "Markdown" | keyof D>(componentName: C): {
|
|
30
30
|
t: GetLocaleText<D, C>;
|
|
31
31
|
lang: LocaleLang;
|
|
32
32
|
};
|
|
@@ -75,6 +75,10 @@ export declare const LOCALES: {
|
|
|
75
75
|
uploaded: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
+
Markdown: {
|
|
79
|
+
copyButtonToolTip: string;
|
|
80
|
+
codeEditorTitle: string;
|
|
81
|
+
};
|
|
78
82
|
};
|
|
79
83
|
readonly 'ru-RU': {
|
|
80
84
|
Table: {
|
|
@@ -152,5 +156,9 @@ export declare const LOCALES: {
|
|
|
152
156
|
uploaded: string;
|
|
153
157
|
};
|
|
154
158
|
};
|
|
159
|
+
Markdown: {
|
|
160
|
+
copyButtonToolTip: string;
|
|
161
|
+
codeEditorTitle: string;
|
|
162
|
+
};
|
|
155
163
|
};
|
|
156
164
|
};
|
|
@@ -26,7 +26,7 @@ export declare function createLocaleContext<D extends Dictionary>({ extendedDict
|
|
|
26
26
|
t: GetLocaleText<D>;
|
|
27
27
|
lang: LocaleLang;
|
|
28
28
|
};
|
|
29
|
-
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | keyof D>(componentName: C): {
|
|
29
|
+
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | "Markdown" | keyof D>(componentName: C): {
|
|
30
30
|
t: GetLocaleText<D, C>;
|
|
31
31
|
lang: LocaleLang;
|
|
32
32
|
};
|
|
@@ -75,6 +75,10 @@ export declare const LOCALES: {
|
|
|
75
75
|
uploaded: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
+
Markdown: {
|
|
79
|
+
copyButtonToolTip: string;
|
|
80
|
+
codeEditorTitle: string;
|
|
81
|
+
};
|
|
78
82
|
};
|
|
79
83
|
readonly 'ru-RU': {
|
|
80
84
|
Table: {
|
|
@@ -152,5 +156,9 @@ export declare const LOCALES: {
|
|
|
152
156
|
uploaded: string;
|
|
153
157
|
};
|
|
154
158
|
};
|
|
159
|
+
Markdown: {
|
|
160
|
+
copyButtonToolTip: string;
|
|
161
|
+
codeEditorTitle: string;
|
|
162
|
+
};
|
|
155
163
|
};
|
|
156
164
|
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Locale",
|
|
7
|
-
"version": "0.14.0",
|
|
7
|
+
"version": "0.14.1-preview-580e8472.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/lodash.merge": "4.6.9"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "83474111057d185ee911d5bb4489288c89f1490f"
|
|
45
45
|
}
|
package/src/locales/en_GB.ts
CHANGED