pds-dev-kit-web-test 2.6.21 → 2.6.22
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/src/common/services/i18n/resources/en.json +1 -1
- package/dist/src/common/services/i18n/resources/es.json +1 -1
- package/dist/src/common/services/i18n/resources/fil.json +1 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +7 -7
- package/dist/src/common/services/i18n/resources/ja.json +1 -1
- package/dist/src/common/services/i18n/resources/ko.json +1 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +1 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +1 -1
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +1 -1
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const locale: {
|
2
2
|
readonly ko: {
|
3
|
-
|
3
|
+
pds_translations: {
|
4
4
|
str_rows_per_page: string;
|
5
5
|
str_n_selected: string;
|
6
6
|
str_dlayout_section: string;
|
@@ -98,7 +98,7 @@ declare const locale: {
|
|
98
98
|
};
|
99
99
|
};
|
100
100
|
readonly en: {
|
101
|
-
|
101
|
+
pds_translations: {
|
102
102
|
str_rows_per_page: string;
|
103
103
|
str_n_selected: string;
|
104
104
|
str_dlayout_section: string;
|
@@ -196,7 +196,7 @@ declare const locale: {
|
|
196
196
|
};
|
197
197
|
};
|
198
198
|
readonly ja: {
|
199
|
-
|
199
|
+
pds_translations: {
|
200
200
|
str_rows_per_page: string;
|
201
201
|
str_n_selected: string;
|
202
202
|
str_dlayout_section: string;
|
@@ -294,7 +294,7 @@ declare const locale: {
|
|
294
294
|
};
|
295
295
|
};
|
296
296
|
readonly es: {
|
297
|
-
|
297
|
+
pds_translations: {
|
298
298
|
str_rows_per_page: string;
|
299
299
|
str_n_selected: string;
|
300
300
|
str_dlayout_section: string;
|
@@ -392,7 +392,7 @@ declare const locale: {
|
|
392
392
|
};
|
393
393
|
};
|
394
394
|
readonly 'zh-cn': {
|
395
|
-
|
395
|
+
pds_translations: {
|
396
396
|
str_rows_per_page: string;
|
397
397
|
str_n_selected: string;
|
398
398
|
str_dlayout_section: string;
|
@@ -490,7 +490,7 @@ declare const locale: {
|
|
490
490
|
};
|
491
491
|
};
|
492
492
|
readonly 'zh-tw': {
|
493
|
-
|
493
|
+
pds_translations: {
|
494
494
|
str_rows_per_page: string;
|
495
495
|
str_n_selected: string;
|
496
496
|
str_dlayout_section: string;
|
@@ -588,7 +588,7 @@ declare const locale: {
|
|
588
588
|
};
|
589
589
|
};
|
590
590
|
readonly fil: {
|
591
|
-
|
591
|
+
pds_translations: {
|
592
592
|
str_rows_per_page: string;
|
593
593
|
str_n_selected: string;
|
594
594
|
str_dlayout_section: string;
|
@@ -40,7 +40,7 @@ var LANGUAGE_I18N_KEYS = {
|
|
40
40
|
function MultilingualModal(_a) {
|
41
41
|
var _b, _c;
|
42
42
|
var isOpen = _a.isOpen, onClose = _a.onClose, config = _a.config, _d = _a.size, size = _d === void 0 ? 'medium' : _d, onHiddenInputUpdate = _a.onHiddenInputUpdate, _e = _a.scrollVisibleType, scrollVisibleType = _e === void 0 ? 'visible' : _e;
|
43
|
-
var t = (0, react_i18next_1.useTranslation)('
|
43
|
+
var t = (0, react_i18next_1.useTranslation)('pds_translations').t;
|
44
44
|
var allLangInReadonly = (_b = config === null || config === void 0 ? void 0 : config.visibleLanguages) === null || _b === void 0 ? void 0 : _b.every(function (item) { var _a; return (_a = config === null || config === void 0 ? void 0 : config.readonlyLanguages) === null || _a === void 0 ? void 0 : _a.includes(item); });
|
45
45
|
// FormProvider에서 사용할 기본값 계산
|
46
46
|
var getDefaultValues = function () {
|