pds-dev-kit-web-test 2.7.501 → 2.7.502
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/assets/icons/fill/index.d.ts +0 -1
- package/dist/src/common/assets/icons/fill/index.js +0 -2
- package/dist/src/common/assets/icons/line/index.d.ts +0 -1
- package/dist/src/common/assets/icons/line/index.js +0 -2
- package/dist/src/common/services/i18n/resources/en.json +4 -1
- package/dist/src/common/services/i18n/resources/es.json +4 -1
- package/dist/src/common/services/i18n/resources/fil.json +4 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +21 -0
- package/dist/src/common/services/i18n/resources/ja.json +4 -1
- package/dist/src/common/services/i18n/resources/ko.json +4 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +4 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +4 -1
- package/dist/src/common/styles/colorSet/UIColor.json +1 -3
- package/dist/src/common/styles/colorSet/index.d.ts +387 -389
- package/dist/src/common/styles/colorSet/index.js +3 -3
- package/dist/src/common/styles/colorSet/ui-type.d.ts +0 -2
- package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +1 -1
- package/dist/src/desktop/components/BoxItem/BoxItem.js +11 -23
- package/dist/src/desktop/components/ReactionButton/ReactionButton.js +1 -1
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.d.ts +1 -1
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.js +3 -13
- package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +1 -1
- package/dist/src/mobile/components/BoxItem/BoxItem.js +11 -23
- package/dist/src/mobile/components/ReactionButton/ReactionButton.js +1 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +9 -9
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +5 -52
- package/dist/src/sub/DynamicLayout/mock_section.json +5 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +71 -42
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +10 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +73 -56
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +63 -36
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +11 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +3 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.js +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.js +5 -12
- package/package.json +1 -1
- package/release-note.md +2 -2
- package/dist/src/common/assets/icons/fill/Plugin.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/Plugin.js +0 -30
- package/dist/src/common/assets/icons/line/Plugin.d.ts +0 -4
- package/dist/src/common/assets/icons/line/Plugin.js +0 -30
|
@@ -88,7 +88,6 @@ declare const fillIcons: {
|
|
|
88
88
|
readonly ic_photo: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
89
89
|
readonly ic_pin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
90
90
|
readonly ic_plan: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
91
|
-
readonly ic_plugin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
92
91
|
readonly ic_plus_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
93
92
|
readonly ic_plus_round: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
94
93
|
readonly ic_post_free: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -106,7 +106,6 @@ var Paste_1 = __importDefault(require("./Paste"));
|
|
|
106
106
|
var Photo_1 = __importDefault(require("./Photo"));
|
|
107
107
|
var Pin_1 = __importDefault(require("./Pin"));
|
|
108
108
|
var Plan_1 = __importDefault(require("./Plan"));
|
|
109
|
-
var Plugin_1 = __importDefault(require("./Plugin"));
|
|
110
109
|
var PlusCircle_1 = __importDefault(require("./PlusCircle"));
|
|
111
110
|
var PlusRound_1 = __importDefault(require("./PlusRound"));
|
|
112
111
|
var PostFree_1 = __importDefault(require("./PostFree"));
|
|
@@ -263,7 +262,6 @@ var fillIcons = {
|
|
|
263
262
|
ic_photo: Photo_1.default,
|
|
264
263
|
ic_pin: Pin_1.default,
|
|
265
264
|
ic_plan: Plan_1.default,
|
|
266
|
-
ic_plugin: Plugin_1.default,
|
|
267
265
|
ic_plus_circle: PlusCircle_1.default,
|
|
268
266
|
ic_plus_round: PlusRound_1.default,
|
|
269
267
|
ic_post_free: PostFree_1.default,
|
|
@@ -150,7 +150,6 @@ declare const lineIcons: {
|
|
|
150
150
|
readonly ic_photo: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
151
151
|
readonly ic_photo_multiple: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
152
152
|
readonly ic_plan: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
153
|
-
readonly ic_plugin: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
154
153
|
readonly ic_plus: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
155
154
|
readonly ic_plus_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
156
155
|
readonly ic_plus_round: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -169,7 +169,6 @@ var PaymentSetting_1 = __importDefault(require("./PaymentSetting"));
|
|
|
169
169
|
var Photo_1 = __importDefault(require("./Photo"));
|
|
170
170
|
var PhotoMultiple_1 = __importDefault(require("./PhotoMultiple"));
|
|
171
171
|
var Plan_1 = __importDefault(require("./Plan"));
|
|
172
|
-
var Plugin_1 = __importDefault(require("./Plugin"));
|
|
173
172
|
var Plus_1 = __importDefault(require("./Plus"));
|
|
174
173
|
var PlusCircle_1 = __importDefault(require("./PlusCircle"));
|
|
175
174
|
var PlusRound_1 = __importDefault(require("./PlusRound"));
|
|
@@ -486,7 +485,6 @@ var lineIcons = {
|
|
|
486
485
|
ic_photo: Photo_1.default,
|
|
487
486
|
ic_photo_multiple: PhotoMultiple_1.default,
|
|
488
487
|
ic_plan: Plan_1.default,
|
|
489
|
-
ic_plugin: Plugin_1.default,
|
|
490
488
|
ic_plus: Plus_1.default,
|
|
491
489
|
ic_plus_circle: PlusCircle_1.default,
|
|
492
490
|
ic_plus_round: PlusRound_1.default,
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"str_reaction": "Reaction",
|
|
107
107
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
108
108
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
109
|
-
"str_grid_height_variable": "Variable"
|
|
109
|
+
"str_grid_height_variable": "Variable",
|
|
110
|
+
"str_10476": "Loading data information.",
|
|
111
|
+
"str_10477": "Data value not linked",
|
|
112
|
+
"str_10478": "No data values to link."
|
|
110
113
|
}
|
|
111
114
|
}
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"str_reaction": "Reaction",
|
|
107
107
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
108
108
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
109
|
-
"str_grid_height_variable": "Variable"
|
|
109
|
+
"str_grid_height_variable": "Variable",
|
|
110
|
+
"str_10476": "Loading data information.",
|
|
111
|
+
"str_10477": "Data value not linked",
|
|
112
|
+
"str_10478": "No data values to link."
|
|
110
113
|
}
|
|
111
114
|
}
|
|
@@ -99,6 +99,9 @@
|
|
|
99
99
|
"str_reaction": "Reaction",
|
|
100
100
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
101
101
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
102
|
-
"str_grid_height_variable": "Variable"
|
|
102
|
+
"str_grid_height_variable": "Variable",
|
|
103
|
+
"str_10476": "Loading data information.",
|
|
104
|
+
"str_10477": "Data value not linked",
|
|
105
|
+
"str_10478": "No data values to link."
|
|
103
106
|
}
|
|
104
107
|
}
|
|
@@ -109,6 +109,9 @@ declare const locale: {
|
|
|
109
109
|
str_9806: string;
|
|
110
110
|
str_10106: string;
|
|
111
111
|
str_grid_height_variable: string;
|
|
112
|
+
str_10476: string;
|
|
113
|
+
str_10477: string;
|
|
114
|
+
str_10478: string;
|
|
112
115
|
};
|
|
113
116
|
};
|
|
114
117
|
readonly en: {
|
|
@@ -220,6 +223,9 @@ declare const locale: {
|
|
|
220
223
|
str_9806: string;
|
|
221
224
|
str_10106: string;
|
|
222
225
|
str_grid_height_variable: string;
|
|
226
|
+
str_10476: string;
|
|
227
|
+
str_10477: string;
|
|
228
|
+
str_10478: string;
|
|
223
229
|
};
|
|
224
230
|
};
|
|
225
231
|
readonly ja: {
|
|
@@ -331,6 +337,9 @@ declare const locale: {
|
|
|
331
337
|
str_9806: string;
|
|
332
338
|
str_10106: string;
|
|
333
339
|
str_grid_height_variable: string;
|
|
340
|
+
str_10476: string;
|
|
341
|
+
str_10477: string;
|
|
342
|
+
str_10478: string;
|
|
334
343
|
};
|
|
335
344
|
};
|
|
336
345
|
readonly es: {
|
|
@@ -442,6 +451,9 @@ declare const locale: {
|
|
|
442
451
|
str_9806: string;
|
|
443
452
|
str_10106: string;
|
|
444
453
|
str_grid_height_variable: string;
|
|
454
|
+
str_10476: string;
|
|
455
|
+
str_10477: string;
|
|
456
|
+
str_10478: string;
|
|
445
457
|
};
|
|
446
458
|
};
|
|
447
459
|
readonly 'zh-cn': {
|
|
@@ -553,6 +565,9 @@ declare const locale: {
|
|
|
553
565
|
str_9806: string;
|
|
554
566
|
str_10106: string;
|
|
555
567
|
str_grid_height_variable: string;
|
|
568
|
+
str_10476: string;
|
|
569
|
+
str_10477: string;
|
|
570
|
+
str_10478: string;
|
|
556
571
|
};
|
|
557
572
|
};
|
|
558
573
|
readonly 'zh-tw': {
|
|
@@ -664,6 +679,9 @@ declare const locale: {
|
|
|
664
679
|
str_9806: string;
|
|
665
680
|
str_10106: string;
|
|
666
681
|
str_grid_height_variable: string;
|
|
682
|
+
str_10476: string;
|
|
683
|
+
str_10477: string;
|
|
684
|
+
str_10478: string;
|
|
667
685
|
};
|
|
668
686
|
};
|
|
669
687
|
readonly fil: {
|
|
@@ -768,6 +786,9 @@ declare const locale: {
|
|
|
768
786
|
str_9806: string;
|
|
769
787
|
str_10106: string;
|
|
770
788
|
str_grid_height_variable: string;
|
|
789
|
+
str_10476: string;
|
|
790
|
+
str_10477: string;
|
|
791
|
+
str_10478: string;
|
|
771
792
|
};
|
|
772
793
|
};
|
|
773
794
|
};
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"str_reaction": "Reaction",
|
|
107
107
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
108
108
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
109
|
-
"str_grid_height_variable": "Variable"
|
|
109
|
+
"str_grid_height_variable": "Variable",
|
|
110
|
+
"str_10476": "Loading data information.",
|
|
111
|
+
"str_10477": "Data value not linked",
|
|
112
|
+
"str_10478": "No data values to link."
|
|
110
113
|
}
|
|
111
114
|
}
|
|
@@ -107,6 +107,9 @@
|
|
|
107
107
|
"str_reaction": "반응",
|
|
108
108
|
"str_9806": "아직 추가된 항목이 없어요. 항목을 추가하고 편집해주세요!",
|
|
109
109
|
"str_10106": "내용에 따라 높이가 조절됩니다.",
|
|
110
|
-
"str_grid_height_variable": "가변"
|
|
110
|
+
"str_grid_height_variable": "가변",
|
|
111
|
+
"str_10476": "데이터 정보를 불러오는 중입니다.",
|
|
112
|
+
"str_10477": "데이터 값 연결되지 않음",
|
|
113
|
+
"str_10478": "연결할 데이터 값이 없습니다."
|
|
111
114
|
}
|
|
112
115
|
}
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"str_reaction": "Reaction",
|
|
107
107
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
108
108
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
109
|
-
"str_grid_height_variable": "Variable"
|
|
109
|
+
"str_grid_height_variable": "Variable",
|
|
110
|
+
"str_10476": "Loading data information.",
|
|
111
|
+
"str_10477": "Data value not linked",
|
|
112
|
+
"str_10478": "No data values to link."
|
|
110
113
|
}
|
|
111
114
|
}
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"str_reaction": "Reaction",
|
|
107
107
|
"str_9806": "There are no items added yet. Please add and edit items!",
|
|
108
108
|
"str_10106": "The height is adjusted\naccording to the content.",
|
|
109
|
-
"str_grid_height_variable": "Variable"
|
|
109
|
+
"str_grid_height_variable": "Variable",
|
|
110
|
+
"str_10476": "Loading data information.",
|
|
111
|
+
"str_10477": "Data value not linked",
|
|
112
|
+
"str_10478": "No data values to link."
|
|
110
113
|
}
|
|
111
114
|
}
|
|
@@ -917,7 +917,5 @@
|
|
|
917
917
|
"ui_cpnt_badge_disabled": "sys_widget_grey_03",
|
|
918
918
|
"ui_147": "sys_cpnt_sheet_base_55",
|
|
919
919
|
"ui_sw_subsidebar_label_text_emphasis": "sys_component_base_orange",
|
|
920
|
-
"ui_pa_figure_text_secondary": "sys_component_base_grey"
|
|
921
|
-
"ui_148": "sys_widget_grey_07",
|
|
922
|
-
"ui_149": "sys_widget_grey_01"
|
|
920
|
+
"ui_pa_figure_text_secondary": "sys_component_base_grey"
|
|
923
921
|
}
|