pds-dev-kit-web-test 0.3.55 → 0.3.57

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.
Files changed (44) hide show
  1. package/dist/src/common/assets/icons/fill/Sales.js +1 -1
  2. package/dist/src/common/assets/icons/fill/Shoppingbag.js +1 -1
  3. package/dist/src/common/assets/icons/fill/StarShaped.d.ts +4 -0
  4. package/dist/src/common/assets/icons/fill/StarShaped.js +30 -0
  5. package/dist/src/common/assets/icons/fill/Target.js +1 -1
  6. package/dist/src/common/assets/icons/fill/Xmark.d.ts +4 -0
  7. package/dist/src/common/assets/icons/fill/Xmark.js +30 -0
  8. package/dist/src/common/assets/icons/fill/index.d.ts +2 -0
  9. package/dist/src/common/assets/icons/fill/index.js +5 -1
  10. package/dist/src/common/assets/icons/line/StarShaped.d.ts +4 -0
  11. package/dist/src/common/assets/icons/line/StarShaped.js +30 -0
  12. package/dist/src/common/assets/icons/line/Ticket.d.ts +4 -0
  13. package/dist/src/common/assets/icons/line/Ticket.js +30 -0
  14. package/dist/src/common/assets/icons/line/index.d.ts +2 -0
  15. package/dist/src/common/assets/icons/line/index.js +4 -0
  16. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  17. package/dist/src/common/styles/colorSet/index.d.ts +1 -0
  18. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  19. package/dist/src/common/types/components.d.ts +1 -0
  20. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +1 -2
  21. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +1 -1
  22. package/dist/src/desktop/components/ContextMenuItem/ContextMenuItem.js +17 -5
  23. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.js +1 -1
  24. package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/SecondaryMenu.js +68 -3
  25. package/dist/src/desktop/components/DynamicDesktopNavBar/templates/DynamicDesktopNavBarTemplates.d.ts +0 -1
  26. package/dist/src/desktop/components/DynamicDesktopNavBar/templates/constants.d.ts +0 -1
  27. package/dist/src/desktop/components/DynamicDesktopNavBar/templates/constants.js +5 -6
  28. package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.d.ts +2 -1
  29. package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.js +20 -9
  30. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +1 -2
  31. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +1 -1
  32. package/dist/src/mobile/components/ContextMenuItem/ContextMenuItem.js +15 -3
  33. package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +126 -4
  34. package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +544 -9
  35. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +19 -2
  36. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +6 -2
  37. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Iframe/Iframe.d.ts +5 -0
  38. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Iframe/Iframe.js +52 -0
  39. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Iframe/types.d.ts +6 -0
  40. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Iframe/types.js +2 -0
  41. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +9 -2
  42. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -0
  43. package/package.json +1 -1
  44. package/release-note.md +5 -6
@@ -28,7 +28,7 @@ var hybrid_1 = require("../../../hybrid");
28
28
  var components_1 = require("../../components");
29
29
  var Components_1 = require("./Components");
30
30
  function DesktopTutorialModal(_a) {
31
- var modalTitleText = _a.modalTitleText, infoArray = _a.infoArray, onClose = _a.onClose;
31
+ var modalTitleText = _a.modalTitleText, infoArray = _a.infoArray, _b = _a.sequenceMode, sequenceMode = _b === void 0 ? 'use' : _b, onClose = _a.onClose;
32
32
  var container = (0, react_1.useState)(function () {
33
33
  var modalRoot = document.createElement('div');
34
34
  modalRoot.setAttribute('id', 'DesktopTutorialModal');
@@ -44,12 +44,7 @@ function DesktopTutorialModal(_a) {
44
44
  root.removeChild(container);
45
45
  };
46
46
  }, []);
47
- var handleClickCloseBtn = function (e) {
48
- if (onClose) {
49
- onClose(e);
50
- }
51
- };
52
- var _b = (0, react_1.useState)("".concat(infoArray[0].sideTabTitleText, "0")), selectedItem = _b[0], setSelectedItem = _b[1];
47
+ var _c = (0, react_1.useState)("".concat(infoArray[0].sideTabTitleText, "0")), selectedItem = _c[0], setSelectedItem = _c[1];
53
48
  var sideTabTitleArray = infoArray.map(function (data, index) {
54
49
  return {
55
50
  title: data.sideTabTitleText,
@@ -57,15 +52,31 @@ function DesktopTutorialModal(_a) {
57
52
  onClick: function () { return setSelectedItem("".concat(data.sideTabTitleText).concat(index)); }
58
53
  };
59
54
  });
55
+ var lastIndex = infoArray.length - 1;
56
+ var numberPattern = /\d+$/;
57
+ var selectedItemIndexPart = selectedItem.match(numberPattern);
58
+ var selectedItemIndex = selectedItemIndexPart && parseInt(selectedItemIndexPart[0], 10);
59
+ var handleClickNextBtn = function () {
60
+ if (selectedItemIndexPart) {
61
+ var incrementedIndex = parseInt(selectedItemIndexPart[0], 10) + 1;
62
+ var newSelectedItem = "".concat(infoArray[incrementedIndex].sideTabTitleText).concat(incrementedIndex);
63
+ setSelectedItem(newSelectedItem);
64
+ }
65
+ };
66
+ var handleClickCloseBtn = function (e) {
67
+ if (onClose) {
68
+ onClose(e);
69
+ }
70
+ };
60
71
  return react_dom_1.default.createPortal((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(S_ModalOverlay, {}), (0, jsx_runtime_1.jsxs)(S_ModalWrapper, __assign({ "x-pds-name": "DesktopTutorialModal", "x-pds-element-type": "panel", "x-pds-device-type": "desktop" }, { children: [(0, jsx_runtime_1.jsxs)(S_LeftPanel, { children: [(0, jsx_runtime_1.jsx)(S_Header, { children: (0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: modalTitleText, lineLimit: 2, ellipsisMode: "use", styleTheme: "headingBold" }) }), (0, jsx_runtime_1.jsxs)(S_SideTabWrapper, { children: [(0, jsx_runtime_1.jsx)(Components_1.SideTab, { itemArray: sideTabTitleArray }), (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_i" })] })] }), infoArray
61
72
  .filter(function (data, index) { return selectedItem === "".concat(data.sideTabTitleText).concat(index); })
62
- .map(function (data, index) { return ((0, jsx_runtime_1.jsxs)(S_RightPanel, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.ImageView, { src: data.imageSrc, shapeType: "rectangle", width: "responsive", ratio: "16_9", scaleType: "cover", backgroundFillMode: "use" }), (0, jsx_runtime_1.jsxs)(S_InfoBox, { children: [(0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: data.infoTitleText ? data.infoTitleText : data.sideTabTitleText, styleTheme: "headingBold" }), (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_d" }), (0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: data.infoDescText, styleTheme: "body2Regular", colorTheme: "sysTextSecondary" })] }), data.btnMode === 'btn_amount1' && ((0, jsx_runtime_1.jsx)(S_Footer, { children: (0, jsx_runtime_1.jsx)(components_1.MainButton, { text: data.btn1Text, type: "button", size: "medium", onClick: data.onClickBtn1 }) }))] }, "".concat(data.sideTabTitleText).concat(index))); }), (0, jsx_runtime_1.jsx)(S_IconButtonWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.IconButton, { shapeType: "circular", baseSize: "medium", baseColorKey: "ui_cpnt_button_fill_base_tutorialmodal", iconName: "ic_xmark", iconColorKey: "ui_cpnt_button_icon_white", onClick: handleClickCloseBtn }) })] }))] }), container);
73
+ .map(function (data, index) { return ((0, jsx_runtime_1.jsxs)(S_RightPanel, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.ImageView, { src: data.imageSrc, shapeType: "rectangle", width: "responsive", ratio: "16_9", scaleType: "cover", backgroundFillMode: "use" }), (0, jsx_runtime_1.jsxs)(S_InfoBox, { children: [(0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: data.infoTitleText ? data.infoTitleText : data.sideTabTitleText, styleTheme: "headingBold" }), (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_d" }), (0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: data.infoDescText, styleTheme: "body2Regular", colorTheme: "sysTextSecondary" })] }), data.btnMode === 'btn_amount1' && ((0, jsx_runtime_1.jsx)(S_Footer, { children: (0, jsx_runtime_1.jsx)(components_1.MainButton, { text: data.btn1Text, type: "button", size: "medium", onClick: data.onClickBtn1 }) }))] }, "".concat(data.sideTabTitleText).concat(index))); }), (0, jsx_runtime_1.jsx)(S_IconButtonWrapper, { children: sequenceMode === 'use' && selectedItemIndex !== lastIndex ? ((0, jsx_runtime_1.jsx)(components_1.IconButton, { shapeType: "circular", baseSize: "medium", baseColorKey: "ui_cpnt_button_fill_base_tutorialmodal", iconName: "ic_arrow_right", iconColorKey: "ui_cpnt_button_icon_white", onClick: handleClickNextBtn })) : ((0, jsx_runtime_1.jsx)(components_1.IconButton, { shapeType: "circular", baseSize: "medium", baseColorKey: "ui_cpnt_button_fill_base_tutorialmodal", iconName: "ic_xmark", iconColorKey: "ui_cpnt_button_icon_white", onClick: handleClickCloseBtn })) })] }))] }), container);
63
74
  }
64
75
  var S_ModalOverlay = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n height: 100vh;\n left: 0;\n position: fixed;\n top: 0;\n width: 100vw;\n\n ", "\n"], ["\n background-color: ", ";\n height: 100vh;\n left: 0;\n position: fixed;\n top: 0;\n width: 100vw;\n\n ", "\n"])), function (_a) {
65
76
  var theme = _a.theme;
66
77
  return theme.ui_cpnt_modal_dimmed;
67
78
  }, animationStyle_1.modalOverlayOnAni);
68
- var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border-radius: 24px;\n box-shadow: ", ";\n box-sizing: border-box;\n display: flex;\n display: flex;\n height: 80vh;\n left: 50%;\n max-height: 720px;\n min-height: 560px;\n overflow: hidden;\n pointer-events: auto;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 960px;\n\n ", "\n"], ["\n background-color: ", ";\n border-radius: 24px;\n box-shadow: ", ";\n box-sizing: border-box;\n display: flex;\n display: flex;\n height: 80vh;\n left: 50%;\n max-height: 720px;\n min-height: 560px;\n overflow: hidden;\n pointer-events: auto;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 960px;\n\n ", "\n"])), function (_a) {
79
+ var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border-radius: 24px;\n box-shadow: ", ";\n box-sizing: border-box;\n display: flex;\n height: 80vh;\n left: 50%;\n max-height: 720px;\n min-height: 560px;\n overflow: hidden;\n pointer-events: auto;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 960px;\n\n ", "\n"], ["\n background-color: ", ";\n border-radius: 24px;\n box-shadow: ", ";\n box-sizing: border-box;\n display: flex;\n height: 80vh;\n left: 50%;\n max-height: 720px;\n min-height: 560px;\n overflow: hidden;\n pointer-events: auto;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 960px;\n\n ", "\n"])), function (_a) {
69
80
  var theme = _a.theme;
70
81
  return theme.ui_cpnt_modal_base;
71
82
  }, function (_a) {
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("../../../../hybrid/components");
5
4
  var MainButton_1 = require("../../MainButton");
6
5
  var MainButton = function (_a) {
7
6
  var text = _a.text, state = _a.state, fill = _a.fill, onClick = _a.onClick;
8
- return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(MainButton_1.MainButton, { text: text, state: state, fillType: fill ? 'fill' : 'line', size: "small", onClick: onClick }), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" })] }));
7
+ return ((0, jsx_runtime_1.jsx)(MainButton_1.MainButton, { text: text, state: state, fillType: fill ? 'fill' : 'line', size: "small", onClick: onClick }));
9
8
  };
10
9
  exports.default = MainButton;
@@ -12,7 +12,7 @@ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Switch = function (_a) {
14
14
  var name = _a.name, state = _a.state, status = _a.status, onClick = _a.onClick;
15
- return ((0, jsx_runtime_1.jsxs)(S_SwitchWrapper, { children: [(0, jsx_runtime_1.jsx)(components_1.Switch, { name: name, state: state, status: status, onClick: onClick }), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" })] }));
15
+ return ((0, jsx_runtime_1.jsx)(S_SwitchWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.Switch, { name: name, state: state, status: status, onClick: onClick }) }));
16
16
  };
17
17
  var S_SwitchWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n justify-content: flex-end;\n min-height: 32px;\n min-width: 68px;\n position: relative;\n right: 0;\n"], ["\n display: flex;\n justify-content: flex-end;\n min-height: 32px;\n min-width: 68px;\n position: relative;\n right: 0;\n"])));
18
18
  exports.default = Switch;
@@ -65,13 +65,23 @@ function ContextMenuItem(_a) {
65
65
  if (state === 'disabled') {
66
66
  textColorTheme = 'sysTextTertiary';
67
67
  }
68
+ var descTextColorTheme;
69
+ if (isSelected) {
70
+ descTextColorTheme = 'sysTextTertiary';
71
+ }
72
+ if (!isSelected && state === 'normal') {
73
+ descTextColorTheme = 'sysTextTertiary';
74
+ }
75
+ if (state === 'disabled') {
76
+ descTextColorTheme = 'sysTextTertiary';
77
+ }
68
78
  var getIconColorKey = function () {
69
79
  if (state === 'disabled') {
70
80
  return 'ui_cpnt_dropdown_display_icon_disabled';
71
81
  }
72
82
  return 'ui_cpnt_dropdown_display_icon_normal';
73
83
  };
74
- return ((0, jsx_runtime_1.jsxs)(S_ContextMenuItem, __assign({ "x-pds-name": "ContextMenuItem", "x-pds-element-type": "component", "x-pds-device-type": "mobile", size: size, onClick: handleClick, selected: isSelected, displayType: displayType }, { children: [(displayType === 'icon_only' || displayType === 'icon_text') && (option === null || option === void 0 ? void 0 : option.iconName) && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.Icon, { size: size === 'small' ? 20 : 24, iconName: option.iconName, fillType: option.iconFillType, colorKey: getIconColorKey() }), displayType === 'icon_text' && (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_b", spacingType: "width" }), ' '] })), (displayType === 'text_only' || displayType === 'icon_text') && (option === null || option === void 0 ? void 0 : option.text) && ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: option.text || text, styleTheme: option.fontWeight === 'bold' ? 'form2Bold' : 'form2Regular', singleLineMode: "use", colorTheme: textColorTheme, ellipsisMode: "use", lineLimit: 1, wordBreak: "break_all" }))] })));
84
+ return ((0, jsx_runtime_1.jsxs)(S_ContextMenuItem, __assign({ "x-pds-name": "ContextMenuItem", "x-pds-element-type": "component", "x-pds-device-type": "mobile", size: size, onClick: handleClick, selected: isSelected, displayType: displayType }, { children: [(0, jsx_runtime_1.jsxs)(S_LeftSide, { children: [(displayType === 'icon_only' || displayType === 'icon_text') && (option === null || option === void 0 ? void 0 : option.iconName) && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.Icon, { size: size === 'small' ? 20 : 24, iconName: option.iconName, fillType: option.iconFillType, colorKey: getIconColorKey() }), displayType === 'icon_text' && (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_b", spacingType: "width" }), ' '] })), (displayType === 'text_only' || displayType === 'icon_text') && (option === null || option === void 0 ? void 0 : option.text) && ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: option.text || text, styleTheme: option.fontWeight === 'bold' ? 'form2Bold' : 'form2Regular', singleLineMode: "use", colorTheme: textColorTheme, ellipsisMode: "use", lineLimit: 1, wordBreak: "break_all" }))] }), (0, jsx_runtime_1.jsx)(S_RightSide, { children: (displayType === 'text_only' || displayType === 'icon_text') && (option === null || option === void 0 ? void 0 : option.descText) && ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: option.descText, styleTheme: "form2Regular", singleLineMode: "use", colorTheme: descTextColorTheme, ellipsisMode: "use", lineLimit: 1, wordBreak: "break_all", textAlign: "right" })) })] })));
75
85
  }
76
86
  var large = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n height: 48px;\n padding: 0 ", ";\n\n & > div {\n height: 48px;\n line-height: 48px;\n }\n"], ["\n height: 48px;\n padding: 0 ", ";\n\n & > div {\n height: 48px;\n line-height: 48px;\n }\n"])), function (_a) {
77
87
  var theme = _a.theme;
@@ -85,7 +95,7 @@ var small = (0, styled_components_1.css)(templateObject_3 || (templateObject_3 =
85
95
  var theme = _a.theme;
86
96
  return theme.spacing.spacingD;
87
97
  });
88
- var S_ContextMenuItem = styled_components_1.default.li(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n box-sizing: border-box;\n display: flex;\n\n ", ";\n ", ";\n"], ["\n align-items: center;\n background-color: ", ";\n box-sizing: border-box;\n display: flex;\n\n ", ";\n ", ";\n"])), function (_a) {
98
+ var S_ContextMenuItem = styled_components_1.default.li(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n box-sizing: border-box;\n display: flex;\n justify-content: space-between;\n\n ", ";\n ", ";\n"], ["\n align-items: center;\n background-color: ", ";\n box-sizing: border-box;\n display: flex;\n justify-content: space-between;\n\n ", ";\n ", ";\n"])), function (_a) {
89
99
  var theme = _a.theme, selected = _a.selected;
90
100
  return selected
91
101
  ? theme.ui_cpnt_contextmenu_menu_base_selected
@@ -97,5 +107,7 @@ var S_ContextMenuItem = styled_components_1.default.li(templateObject_4 || (temp
97
107
  var size = _a.size;
98
108
  return size && { large: large, medium: medium, small: small }[size];
99
109
  });
110
+ var S_LeftSide = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n"], ["\n align-items: center;\n display: flex;\n"])));
111
+ var S_RightSide = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n"], ["\n align-items: center;\n display: flex;\n"])));
100
112
  exports.default = ContextMenuItem;
101
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4;
113
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
@@ -2092,6 +2092,120 @@ export declare const sampleCustomsection5: {
2092
2092
  administrativeTitle: string;
2093
2093
  appearanceTemplate: string;
2094
2094
  componentBlocks: ({
2095
+ availablePlugins: never[];
2096
+ componentBlockCode: string;
2097
+ componentBlockType: string;
2098
+ dynamicLayoutSectionId: number;
2099
+ id: number;
2100
+ insertedAt: string;
2101
+ jsonProperties: {
2102
+ currentVersion: string;
2103
+ data: {
2104
+ CB_CONTENT_PROP_HOVER: {
2105
+ CB_CONTENT_PROP_HOVER_SPEC_MUSE: boolean;
2106
+ };
2107
+ CB_CONTENT_PROP_TWITTER: {
2108
+ CB_CONTENT_PROP_TWITTER_SPEC_SRC: string;
2109
+ };
2110
+ CB_CONTENT_PROP_VISIBILITY: {
2111
+ CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP: boolean;
2112
+ CB_CONTENT_PROP_VISIBILITY_SPEC_MOBILEWEB: boolean;
2113
+ };
2114
+ CB_EFFECT_PROP_ENTANIM: {
2115
+ CB_EFFECT_PROP_ENTANIM_SPEC_TYPE: string;
2116
+ 'CB_EFFECT_PROP_ENTANIM_SPEC_TYPE:MOBILE': string;
2117
+ CB_EFFECT_PROP_ENTANIM_SPEC_DURATION: number;
2118
+ 'CB_EFFECT_PROP_ENTANIM_SPEC_DURATION:MOBILE': null;
2119
+ CB_EFFECT_PROP_ENTANIM_SPEC_REPEAT: number;
2120
+ 'CB_EFFECT_PROP_ENTANIM_SPEC_REPEAT:MOBILE': null;
2121
+ CB_EFFECT_PROP_ENTANIM_SPEC_TFUNC: string;
2122
+ 'CB_EFFECT_PROP_ENTANIM_SPEC_TFUNC:MOBILE': null;
2123
+ };
2124
+ CB_LAYOUT_PROP_ARRANGE: {
2125
+ CB_LAYOUT_PROP_ARRANGE_SPEC_HORIZONTAL: string;
2126
+ 'CB_LAYOUT_PROP_ARRANGE_SPEC_HORIZONTAL:MOBILE': string;
2127
+ CB_LAYOUT_PROP_ARRANGE_SPEC_VERTICAL: null;
2128
+ 'CB_LAYOUT_PROP_ARRANGE_SPEC_VERTICAL:MOBILE': null;
2129
+ };
2130
+ CB_LAYOUT_PROP_PADDING: {
2131
+ CB_LAYOUT_PROP_PADDING_SPEC_FIX: boolean;
2132
+ 'CB_LAYOUT_PROP_PADDING_SPEC_FIX:MOBILE': null;
2133
+ CB_LAYOUT_PROP_PADDING_SPEC_PADDING: {
2134
+ bottom: number;
2135
+ left: number;
2136
+ right: number;
2137
+ top: number;
2138
+ };
2139
+ 'CB_LAYOUT_PROP_PADDING_SPEC_PADDING:MOBILE': null;
2140
+ };
2141
+ CB_PLACEMENT_PROP_PLACEMENT: {
2142
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS: number;
2143
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE': number;
2144
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS: number;
2145
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE': number;
2146
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX: number;
2147
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX:MOBILE': number;
2148
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY: number;
2149
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE': number;
2150
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX: number;
2151
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX:MOBILE': number;
2152
+ };
2153
+ CB_STYLE_PROP_OPACITY: {
2154
+ CB_STYLE_PROP_OPACITY_SPEC_OPACITY: number;
2155
+ 'CB_STYLE_PROP_OPACITY_SPEC_OPACITY:HOVER': number;
2156
+ 'CB_STYLE_PROP_OPACITY_SPEC_OPACITY:MOBILE': null;
2157
+ 'CB_STYLE_PROP_OPACITY_SPEC_OPACITY:MOBILE:HOVER': null;
2158
+ };
2159
+ CB_STYLE_PROP_SHADOW: {
2160
+ CB_STYLE_PROP_SHADOW_SPEC_BLUR: number;
2161
+ 'CB_STYLE_PROP_SHADOW_SPEC_BLUR:HOVER': number;
2162
+ 'CB_STYLE_PROP_SHADOW_SPEC_BLUR:MOBILE': null;
2163
+ 'CB_STYLE_PROP_SHADOW_SPEC_BLUR:MOBILE:HOVER': null;
2164
+ CB_STYLE_PROP_SHADOW_SPEC_COLOR: string;
2165
+ 'CB_STYLE_PROP_SHADOW_SPEC_COLOR:HOVER': string;
2166
+ 'CB_STYLE_PROP_SHADOW_SPEC_COLOR:MOBILE': null;
2167
+ 'CB_STYLE_PROP_SHADOW_SPEC_COLOR:MOBILE:HOVER': null;
2168
+ CB_STYLE_PROP_SHADOW_SPEC_OPACITY: number;
2169
+ 'CB_STYLE_PROP_SHADOW_SPEC_OPACITY:HOVER': number;
2170
+ 'CB_STYLE_PROP_SHADOW_SPEC_OPACITY:MOBILE': null;
2171
+ 'CB_STYLE_PROP_SHADOW_SPEC_OPACITY:MOBILE:HOVER': null;
2172
+ CB_STYLE_PROP_SHADOW_SPEC_SPREAD: number;
2173
+ 'CB_STYLE_PROP_SHADOW_SPEC_SPREAD:HOVER': number;
2174
+ 'CB_STYLE_PROP_SHADOW_SPEC_SPREAD:MOBILE': null;
2175
+ 'CB_STYLE_PROP_SHADOW_SPEC_SPREAD:MOBILE:HOVER': null;
2176
+ CB_STYLE_PROP_SHADOW_SPEC_TYPE: string;
2177
+ 'CB_STYLE_PROP_SHADOW_SPEC_TYPE:HOVER': string;
2178
+ 'CB_STYLE_PROP_SHADOW_SPEC_TYPE:MOBILE': null;
2179
+ 'CB_STYLE_PROP_SHADOW_SPEC_TYPE:MOBILE:HOVER': null;
2180
+ CB_STYLE_PROP_SHADOW_SPEC_X: number;
2181
+ 'CB_STYLE_PROP_SHADOW_SPEC_X:HOVER': number;
2182
+ 'CB_STYLE_PROP_SHADOW_SPEC_X:MOBILE': null;
2183
+ 'CB_STYLE_PROP_SHADOW_SPEC_X:MOBILE:HOVER': null;
2184
+ CB_STYLE_PROP_SHADOW_SPEC_Y: number;
2185
+ 'CB_STYLE_PROP_SHADOW_SPEC_Y:HOVER': number;
2186
+ 'CB_STYLE_PROP_SHADOW_SPEC_Y:MOBILE': null;
2187
+ 'CB_STYLE_PROP_SHADOW_SPEC_Y:MOBILE:HOVER': null;
2188
+ };
2189
+ CB_STYLE_PROP_TWITTER: {
2190
+ CB_STYLE_PROP_TWITTER_SPEC_THEME: string;
2191
+ 'CB_STYLE_PROP_TWITTER_SPEC_THEME:MOBILE': null;
2192
+ };
2193
+ CB_EFFECT_PROP_HOVERANIM?: undefined;
2194
+ CB_STYLE_PROP_DIVIDER?: undefined;
2195
+ CB_CONTENT_PROP_CLINK?: undefined;
2196
+ CB_CONTENT_PROP_TEXT?: undefined;
2197
+ CB_STYLE_PROP_BORDER?: undefined;
2198
+ CB_STYLE_PROP_BTNCOLOR?: undefined;
2199
+ CB_STYLE_PROP_BTNTEXT?: undefined;
2200
+ CB_STYLE_PROP_TEXT?: undefined;
2201
+ };
2202
+ minVersion: string;
2203
+ version: string;
2204
+ };
2205
+ queryableDefinitionPreset: string;
2206
+ queryableTapSrc: string;
2207
+ updatedAt: string;
2208
+ } | {
2095
2209
  availablePlugins: never[];
2096
2210
  componentBlockCode: string;
2097
2211
  componentBlockType: string;
@@ -2171,13 +2285,15 @@ export declare const sampleCustomsection5: {
2171
2285
  'CB_STYLE_PROP_DIVIDER_SPEC_WIDTH:MOBILE': null;
2172
2286
  'CB_STYLE_PROP_DIVIDER_SPEC_WIDTH:MOBILE:HOVER': null;
2173
2287
  };
2288
+ CB_CONTENT_PROP_TWITTER?: undefined;
2289
+ CB_STYLE_PROP_OPACITY?: undefined;
2290
+ CB_STYLE_PROP_SHADOW?: undefined;
2291
+ CB_STYLE_PROP_TWITTER?: undefined;
2174
2292
  CB_CONTENT_PROP_CLINK?: undefined;
2175
2293
  CB_CONTENT_PROP_TEXT?: undefined;
2176
2294
  CB_STYLE_PROP_BORDER?: undefined;
2177
2295
  CB_STYLE_PROP_BTNCOLOR?: undefined;
2178
2296
  CB_STYLE_PROP_BTNTEXT?: undefined;
2179
- CB_STYLE_PROP_OPACITY?: undefined;
2180
- CB_STYLE_PROP_SHADOW?: undefined;
2181
2297
  CB_STYLE_PROP_TEXT?: undefined;
2182
2298
  };
2183
2299
  minVersion: string;
@@ -2386,7 +2502,9 @@ export declare const sampleCustomsection5: {
2386
2502
  'CB_STYLE_PROP_SHADOW_SPEC_Y:MOBILE': null;
2387
2503
  'CB_STYLE_PROP_SHADOW_SPEC_Y:MOBILE:HOVER': null;
2388
2504
  };
2505
+ CB_CONTENT_PROP_TWITTER?: undefined;
2389
2506
  CB_LAYOUT_PROP_ARRANGE?: undefined;
2507
+ CB_STYLE_PROP_TWITTER?: undefined;
2390
2508
  CB_STYLE_PROP_DIVIDER?: undefined;
2391
2509
  CB_STYLE_PROP_TEXT?: undefined;
2392
2510
  };
@@ -2505,12 +2623,14 @@ export declare const sampleCustomsection5: {
2505
2623
  'CB_STYLE_PROP_TEXT_SPEC_WEIGHT:MOBILE': null;
2506
2624
  'CB_STYLE_PROP_TEXT_SPEC_WEIGHT:MOBILE:HOVER': null;
2507
2625
  };
2626
+ CB_CONTENT_PROP_TWITTER?: undefined;
2508
2627
  CB_LAYOUT_PROP_ARRANGE?: undefined;
2628
+ CB_STYLE_PROP_SHADOW?: undefined;
2629
+ CB_STYLE_PROP_TWITTER?: undefined;
2509
2630
  CB_STYLE_PROP_DIVIDER?: undefined;
2510
2631
  CB_STYLE_PROP_BORDER?: undefined;
2511
2632
  CB_STYLE_PROP_BTNCOLOR?: undefined;
2512
2633
  CB_STYLE_PROP_BTNTEXT?: undefined;
2513
- CB_STYLE_PROP_SHADOW?: undefined;
2514
2634
  };
2515
2635
  minVersion: string;
2516
2636
  version: string;
@@ -2627,12 +2747,14 @@ export declare const sampleCustomsection5: {
2627
2747
  'CB_STYLE_PROP_TEXT_SPEC_WEIGHT:MOBILE': number;
2628
2748
  'CB_STYLE_PROP_TEXT_SPEC_WEIGHT:MOBILE:HOVER': null;
2629
2749
  };
2750
+ CB_CONTENT_PROP_TWITTER?: undefined;
2630
2751
  CB_LAYOUT_PROP_ARRANGE?: undefined;
2752
+ CB_STYLE_PROP_SHADOW?: undefined;
2753
+ CB_STYLE_PROP_TWITTER?: undefined;
2631
2754
  CB_STYLE_PROP_DIVIDER?: undefined;
2632
2755
  CB_STYLE_PROP_BORDER?: undefined;
2633
2756
  CB_STYLE_PROP_BTNCOLOR?: undefined;
2634
2757
  CB_STYLE_PROP_BTNTEXT?: undefined;
2635
- CB_STYLE_PROP_SHADOW?: undefined;
2636
2758
  };
2637
2759
  minVersion: string;
2638
2760
  version: string;