pds-dev-kit-web-test 2.7.508 → 2.7.509
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
|
@@ -112,6 +112,7 @@ declare const locale: {
|
|
|
112
112
|
str_10476: string;
|
|
113
113
|
str_10477: string;
|
|
114
114
|
str_10478: string;
|
|
115
|
+
str_paid: string;
|
|
115
116
|
};
|
|
116
117
|
};
|
|
117
118
|
readonly en: {
|
|
@@ -226,6 +227,7 @@ declare const locale: {
|
|
|
226
227
|
str_10476: string;
|
|
227
228
|
str_10477: string;
|
|
228
229
|
str_10478: string;
|
|
230
|
+
str_paid: string;
|
|
229
231
|
};
|
|
230
232
|
};
|
|
231
233
|
readonly ja: {
|
|
@@ -340,6 +342,7 @@ declare const locale: {
|
|
|
340
342
|
str_10476: string;
|
|
341
343
|
str_10477: string;
|
|
342
344
|
str_10478: string;
|
|
345
|
+
str_paid: string;
|
|
343
346
|
};
|
|
344
347
|
};
|
|
345
348
|
readonly es: {
|
|
@@ -454,6 +457,7 @@ declare const locale: {
|
|
|
454
457
|
str_10476: string;
|
|
455
458
|
str_10477: string;
|
|
456
459
|
str_10478: string;
|
|
460
|
+
str_paid: string;
|
|
457
461
|
};
|
|
458
462
|
};
|
|
459
463
|
readonly 'zh-cn': {
|
|
@@ -568,6 +572,7 @@ declare const locale: {
|
|
|
568
572
|
str_10476: string;
|
|
569
573
|
str_10477: string;
|
|
570
574
|
str_10478: string;
|
|
575
|
+
str_paid: string;
|
|
571
576
|
};
|
|
572
577
|
};
|
|
573
578
|
readonly 'zh-tw': {
|
|
@@ -682,6 +687,7 @@ declare const locale: {
|
|
|
682
687
|
str_10476: string;
|
|
683
688
|
str_10477: string;
|
|
684
689
|
str_10478: string;
|
|
690
|
+
str_paid: string;
|
|
685
691
|
};
|
|
686
692
|
};
|
|
687
693
|
readonly fil: {
|
|
@@ -789,6 +795,7 @@ declare const locale: {
|
|
|
789
795
|
str_10476: string;
|
|
790
796
|
str_10477: string;
|
|
791
797
|
str_10478: string;
|
|
798
|
+
str_paid: string;
|
|
792
799
|
};
|
|
793
800
|
};
|
|
794
801
|
};
|
|
@@ -92,6 +92,9 @@ function Text(props) {
|
|
|
92
92
|
var isDataConnected = CB_CONTENT_PROP_TEXT_SPEC_VALUETYPE === 'DATA' ||
|
|
93
93
|
CB_CONTENT_PROP_TEXT_SPEC_VALUETYPE === 'DELEGATEDDATA';
|
|
94
94
|
if (isDataConnected) {
|
|
95
|
+
if (CB_CONTENT_PROP_TEXT_SPEC_CONNECTDATA === 'paid') {
|
|
96
|
+
return t('str_paid');
|
|
97
|
+
}
|
|
95
98
|
if (queryContext === null || queryContext === void 0 ? void 0 : queryContext.queryData) {
|
|
96
99
|
var value = queryContext.queryData[CB_CONTENT_PROP_TEXT_SPEC_CONNECTDATA];
|
|
97
100
|
if (formatOption) {
|