pds-dev-kit-web-test 2.7.190 → 2.7.191
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 +2 -1
- package/dist/src/common/services/i18n/resources/es.json +2 -1
- package/dist/src/common/services/i18n/resources/fil.json +2 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +7 -0
- package/dist/src/common/services/i18n/resources/ja.json +2 -1
- package/dist/src/common/services/i18n/resources/ko.json +2 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +2 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +2 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +2 -3
- package/package.json +1 -1
@@ -103,6 +103,7 @@
|
|
103
103
|
"str_9070": "If Spanish is not entered, members will see the content in English.",
|
104
104
|
"str_upload": "Upload",
|
105
105
|
"str_delete": "Delete",
|
106
|
-
"str_reaction": "Reaction"
|
106
|
+
"str_reaction": "Reaction",
|
107
|
+
"str_9806": "There are no items added yet. Please add and edit items!"
|
107
108
|
}
|
108
109
|
}
|
@@ -103,6 +103,7 @@
|
|
103
103
|
"str_9070": "Si no ingresa en español, se mostrará a los miembros en inglés.",
|
104
104
|
"str_upload": "Subir",
|
105
105
|
"str_delete": "borrar",
|
106
|
-
"str_reaction": "Reaction"
|
106
|
+
"str_reaction": "Reaction",
|
107
|
+
"str_9806": "There are no items added yet. Please add and edit items!"
|
107
108
|
}
|
108
109
|
}
|
@@ -106,6 +106,7 @@ declare const locale: {
|
|
106
106
|
str_upload: string;
|
107
107
|
str_delete: string;
|
108
108
|
str_reaction: string;
|
109
|
+
str_9806: string;
|
109
110
|
};
|
110
111
|
};
|
111
112
|
readonly en: {
|
@@ -214,6 +215,7 @@ declare const locale: {
|
|
214
215
|
str_upload: string;
|
215
216
|
str_delete: string;
|
216
217
|
str_reaction: string;
|
218
|
+
str_9806: string;
|
217
219
|
};
|
218
220
|
};
|
219
221
|
readonly ja: {
|
@@ -322,6 +324,7 @@ declare const locale: {
|
|
322
324
|
str_upload: string;
|
323
325
|
str_delete: string;
|
324
326
|
str_reaction: string;
|
327
|
+
str_9806: string;
|
325
328
|
};
|
326
329
|
};
|
327
330
|
readonly es: {
|
@@ -430,6 +433,7 @@ declare const locale: {
|
|
430
433
|
str_upload: string;
|
431
434
|
str_delete: string;
|
432
435
|
str_reaction: string;
|
436
|
+
str_9806: string;
|
433
437
|
};
|
434
438
|
};
|
435
439
|
readonly 'zh-cn': {
|
@@ -538,6 +542,7 @@ declare const locale: {
|
|
538
542
|
str_upload: string;
|
539
543
|
str_delete: string;
|
540
544
|
str_reaction: string;
|
545
|
+
str_9806: string;
|
541
546
|
};
|
542
547
|
};
|
543
548
|
readonly 'zh-tw': {
|
@@ -646,6 +651,7 @@ declare const locale: {
|
|
646
651
|
str_upload: string;
|
647
652
|
str_delete: string;
|
648
653
|
str_reaction: string;
|
654
|
+
str_9806: string;
|
649
655
|
};
|
650
656
|
};
|
651
657
|
readonly fil: {
|
@@ -747,6 +753,7 @@ declare const locale: {
|
|
747
753
|
str_upload: string;
|
748
754
|
str_delete: string;
|
749
755
|
str_reaction: string;
|
756
|
+
str_9806: string;
|
750
757
|
};
|
751
758
|
};
|
752
759
|
};
|
@@ -21,6 +21,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
21
|
exports.createCompositions = void 0;
|
22
22
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
23
23
|
require("react");
|
24
|
+
var i18n_1 = __importDefault(require("../../../common/services/i18n"));
|
24
25
|
var styled_components_1 = __importDefault(require("styled-components"));
|
25
26
|
var compositionQueryContext_1 = require("../compositionQueryContext");
|
26
27
|
var Composition_1 = __importDefault(require("./Composition"));
|
@@ -32,9 +33,7 @@ function createCompositions(_a) {
|
|
32
33
|
var valueTypeCompositions = compositions.filter(function (composition) { return !(composition === null || composition === void 0 ? void 0 : composition.isDefault); });
|
33
34
|
// MANUAL ITEM이 없는 경우
|
34
35
|
if (!valueTypeCompositions.length) {
|
35
|
-
return [
|
36
|
-
(0, jsx_runtime_1.jsx)(S_EmptyLayer, { children: "\uC544\uC774\uD15C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. \uC544\uC774\uD15C\uC744 \uCD94\uAC00\uD574\uC8FC\uC138\uC694." }, "empty-manual-item")
|
37
|
-
];
|
36
|
+
return [(0, jsx_runtime_1.jsx)(S_EmptyLayer, { children: i18n_1.default.t('str_9806') }, "empty-manual-item")];
|
38
37
|
}
|
39
38
|
return valueTypeCompositions.map(function (composition) { return ((0, jsx_runtime_1.jsx)(Composition_1.default, __assign({}, composition), composition.id)); });
|
40
39
|
}
|