@snack-uikit/locale 0.14.1-preview-6c5a9bc3.0 → 0.15.1
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/CHANGELOG.md +22 -0
- package/dist/cjs/components/LocaleProvider/LocaleProvider.d.ts +1 -1
- package/dist/cjs/locales/en_GB.d.ts +0 -3
- package/dist/cjs/locales/en_GB.js +0 -3
- package/dist/cjs/locales/index.d.ts +0 -6
- package/dist/cjs/locales/ru_RU.js +0 -3
- package/dist/esm/components/LocaleProvider/LocaleProvider.d.ts +1 -1
- package/dist/esm/locales/en_GB.d.ts +0 -3
- package/dist/esm/locales/en_GB.js +0 -3
- package/dist/esm/locales/index.d.ts +0 -6
- package/dist/esm/locales/ru_RU.js +0 -3
- package/package.json +2 -2
- package/src/locales/en_GB.ts +0 -3
- package/src/locales/ru_RU.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 0.15.1 (2025-05-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PDS-2227:** remove tooltip from code copy button ([adee4e2](https://github.com/cloud-ru-tech/snack-uikit/commit/adee4e273a99c484456481530636cc49894c13bc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 0.15.0 (2025-05-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **PDS-2227:** add copy button for code editor ([6891964](https://github.com/cloud-ru-tech/snack-uikit/commit/6891964be3dffecab54a3a226f250f6d303da7e9))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 0.14.0 (2025-03-20)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -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" |
|
|
29
|
+
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | keyof D>(componentName: C): {
|
|
30
30
|
t: GetLocaleText<D, C>;
|
|
31
31
|
lang: LocaleLang;
|
|
32
32
|
};
|
|
@@ -75,9 +75,6 @@ export declare const LOCALES: {
|
|
|
75
75
|
uploaded: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
CodeEditor: {
|
|
79
|
-
copyButtonToolTip: string;
|
|
80
|
-
};
|
|
81
78
|
};
|
|
82
79
|
readonly 'ru-RU': {
|
|
83
80
|
Table: {
|
|
@@ -155,8 +152,5 @@ export declare const LOCALES: {
|
|
|
155
152
|
uploaded: string;
|
|
156
153
|
};
|
|
157
154
|
};
|
|
158
|
-
CodeEditor: {
|
|
159
|
-
copyButtonToolTip: string;
|
|
160
|
-
};
|
|
161
155
|
};
|
|
162
156
|
};
|
|
@@ -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" |
|
|
29
|
+
<C extends LocaleComponentName<D> = "Table" | "List" | "Chips" | "Fields" | "SearchPrivate" | "ColorPicker" | "Calendar" | "Toolbar" | "ToastUpload" | keyof D>(componentName: C): {
|
|
30
30
|
t: GetLocaleText<D, C>;
|
|
31
31
|
lang: LocaleLang;
|
|
32
32
|
};
|
|
@@ -75,9 +75,6 @@ export declare const LOCALES: {
|
|
|
75
75
|
uploaded: string;
|
|
76
76
|
};
|
|
77
77
|
};
|
|
78
|
-
CodeEditor: {
|
|
79
|
-
copyButtonToolTip: string;
|
|
80
|
-
};
|
|
81
78
|
};
|
|
82
79
|
readonly 'ru-RU': {
|
|
83
80
|
Table: {
|
|
@@ -155,8 +152,5 @@ export declare const LOCALES: {
|
|
|
155
152
|
uploaded: string;
|
|
156
153
|
};
|
|
157
154
|
};
|
|
158
|
-
CodeEditor: {
|
|
159
|
-
copyButtonToolTip: string;
|
|
160
|
-
};
|
|
161
155
|
};
|
|
162
156
|
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Locale",
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.15.1",
|
|
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": "988d11cb5e0902f5dbe0add54fa0d09e6285219c"
|
|
45
45
|
}
|
package/src/locales/en_GB.ts
CHANGED