pds-dev-kit-web-test 2.7.520 → 2.7.522
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/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +3 -0
- package/package.json +1 -1
|
@@ -113,6 +113,7 @@ declare const locale: {
|
|
|
113
113
|
str_10477: string;
|
|
114
114
|
str_10478: string;
|
|
115
115
|
str_paid: string;
|
|
116
|
+
str_10597: string;
|
|
116
117
|
};
|
|
117
118
|
};
|
|
118
119
|
readonly en: {
|
|
@@ -228,6 +229,7 @@ declare const locale: {
|
|
|
228
229
|
str_10477: string;
|
|
229
230
|
str_10478: string;
|
|
230
231
|
str_paid: string;
|
|
232
|
+
str_10597: string;
|
|
231
233
|
};
|
|
232
234
|
};
|
|
233
235
|
readonly ja: {
|
|
@@ -343,6 +345,7 @@ declare const locale: {
|
|
|
343
345
|
str_10477: string;
|
|
344
346
|
str_10478: string;
|
|
345
347
|
str_paid: string;
|
|
348
|
+
str_10597: string;
|
|
346
349
|
};
|
|
347
350
|
};
|
|
348
351
|
readonly es: {
|
|
@@ -458,6 +461,7 @@ declare const locale: {
|
|
|
458
461
|
str_10477: string;
|
|
459
462
|
str_10478: string;
|
|
460
463
|
str_paid: string;
|
|
464
|
+
str_10597: string;
|
|
461
465
|
};
|
|
462
466
|
};
|
|
463
467
|
readonly 'zh-cn': {
|
|
@@ -573,6 +577,7 @@ declare const locale: {
|
|
|
573
577
|
str_10477: string;
|
|
574
578
|
str_10478: string;
|
|
575
579
|
str_paid: string;
|
|
580
|
+
str_10597: string;
|
|
576
581
|
};
|
|
577
582
|
};
|
|
578
583
|
readonly 'zh-tw': {
|
|
@@ -688,6 +693,7 @@ declare const locale: {
|
|
|
688
693
|
str_10477: string;
|
|
689
694
|
str_10478: string;
|
|
690
695
|
str_paid: string;
|
|
696
|
+
str_10597: string;
|
|
691
697
|
};
|
|
692
698
|
};
|
|
693
699
|
readonly fil: {
|
|
@@ -796,6 +802,7 @@ declare const locale: {
|
|
|
796
802
|
str_10477: string;
|
|
797
803
|
str_10478: string;
|
|
798
804
|
str_paid: string;
|
|
805
|
+
str_10597: string;
|
|
799
806
|
};
|
|
800
807
|
};
|
|
801
808
|
};
|
|
@@ -109,6 +109,9 @@ function Text(props) {
|
|
|
109
109
|
if (formatOption) {
|
|
110
110
|
return formatOption.formatter(convertToUTC(value));
|
|
111
111
|
}
|
|
112
|
+
if (!value && mode === 'EDIT') {
|
|
113
|
+
return t('str_10597');
|
|
114
|
+
}
|
|
112
115
|
return value;
|
|
113
116
|
}
|
|
114
117
|
return 'ERROR: data connected but no data';
|