@snack-uikit/locale 0.14.0 → 0.14.1-preview-6c5a9bc3.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.
@@ -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" | "CodeEditor" | keyof D>(componentName: C): {
30
30
  t: GetLocaleText<D, C>;
31
31
  lang: LocaleLang;
32
32
  };
@@ -74,4 +74,7 @@ export declare const en_GB: {
74
74
  uploaded: string;
75
75
  };
76
76
  };
77
+ CodeEditor: {
78
+ copyButtonToolTip: string;
79
+ };
77
80
  };
@@ -79,5 +79,8 @@ exports.en_GB = {
79
79
  errorUploaded: 'Error uploaded',
80
80
  uploaded: 'Uploaded'
81
81
  }
82
+ },
83
+ CodeEditor: {
84
+ copyButtonToolTip: 'Copy'
82
85
  }
83
86
  };
@@ -75,6 +75,9 @@ export declare const LOCALES: {
75
75
  uploaded: string;
76
76
  };
77
77
  };
78
+ CodeEditor: {
79
+ copyButtonToolTip: string;
80
+ };
78
81
  };
79
82
  readonly 'ru-RU': {
80
83
  Table: {
@@ -152,5 +155,8 @@ export declare const LOCALES: {
152
155
  uploaded: string;
153
156
  };
154
157
  };
158
+ CodeEditor: {
159
+ copyButtonToolTip: string;
160
+ };
155
161
  };
156
162
  };
@@ -79,5 +79,8 @@ exports.ru_RU = {
79
79
  errorUploaded: 'Ошибка при загрузке',
80
80
  uploaded: 'Загружено'
81
81
  }
82
+ },
83
+ CodeEditor: {
84
+ copyButtonToolTip: 'Копировать'
82
85
  }
83
86
  };
@@ -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" | "CodeEditor" | keyof D>(componentName: C): {
30
30
  t: GetLocaleText<D, C>;
31
31
  lang: LocaleLang;
32
32
  };
@@ -74,4 +74,7 @@ export declare const en_GB: {
74
74
  uploaded: string;
75
75
  };
76
76
  };
77
+ CodeEditor: {
78
+ copyButtonToolTip: string;
79
+ };
77
80
  };
@@ -74,4 +74,7 @@ export const en_GB = {
74
74
  uploaded: 'Uploaded',
75
75
  },
76
76
  },
77
+ CodeEditor: {
78
+ copyButtonToolTip: 'Copy',
79
+ },
77
80
  };
@@ -75,6 +75,9 @@ export declare const LOCALES: {
75
75
  uploaded: string;
76
76
  };
77
77
  };
78
+ CodeEditor: {
79
+ copyButtonToolTip: string;
80
+ };
78
81
  };
79
82
  readonly 'ru-RU': {
80
83
  Table: {
@@ -152,5 +155,8 @@ export declare const LOCALES: {
152
155
  uploaded: string;
153
156
  };
154
157
  };
158
+ CodeEditor: {
159
+ copyButtonToolTip: string;
160
+ };
155
161
  };
156
162
  };
@@ -74,4 +74,7 @@ export const ru_RU = {
74
74
  uploaded: 'Загружено',
75
75
  },
76
76
  },
77
+ CodeEditor: {
78
+ copyButtonToolTip: 'Копировать',
79
+ },
77
80
  };
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-6c5a9bc3.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": "2c50d707746c6aeab336e4097df6e4c8494d67a4"
44
+ "gitHead": "f7b20fc5008846a7aaddf93c2cbeb6197978e97f"
45
45
  }
@@ -76,4 +76,7 @@ export const en_GB = {
76
76
  uploaded: 'Uploaded',
77
77
  },
78
78
  },
79
+ CodeEditor: {
80
+ copyButtonToolTip: 'Copy',
81
+ },
79
82
  } satisfies Dictionary;
@@ -76,4 +76,7 @@ export const ru_RU: typeof en_GB = {
76
76
  uploaded: 'Загружено',
77
77
  },
78
78
  },
79
+ CodeEditor: {
80
+ copyButtonToolTip: 'Копировать',
81
+ },
79
82
  };