pds-dev-kit-web-test 2.2.99 → 2.3.2

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 (19) hide show
  1. package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +7 -1
  2. package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +9 -9
  3. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +5 -0
  4. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +20 -10
  5. package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.d.ts +3 -0
  6. package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.js +70 -0
  7. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +1 -1
  8. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +41 -24
  9. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.js +1 -1
  10. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +12 -1
  11. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.d.ts +11 -0
  12. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.js +59 -0
  13. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.d.ts +7 -0
  14. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.js +87 -0
  15. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.d.ts +1 -0
  16. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.js +15 -0
  17. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.d.ts +12 -0
  18. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.js +74 -0
  19. package/package.json +1 -1
@@ -21,13 +21,19 @@ var __rest = (this && this.__rest) || function (s, e) {
21
21
  }
22
22
  return t;
23
23
  };
24
+ var __importDefault = (this && this.__importDefault) || function (mod) {
25
+ return (mod && mod.__esModule) ? mod : { "default": mod };
26
+ };
24
27
  Object.defineProperty(exports, "__esModule", { value: true });
25
28
  var jsx_runtime_1 = require("react/jsx-runtime");
29
+ require("../../../DynamicLayout/sections/CustomSection/NewCustomSection");
30
+ var TempCustomSection_1 = __importDefault(require("../../../DynamicLayout/sections/TempCustomSection/TempCustomSection"));
26
31
  var sections_1 = require("../../sections");
27
32
  function SectionMatcher(_a) {
28
33
  var props = __rest(_a, []);
29
34
  if (props.type === 'CUSTOM') {
30
- return (0, jsx_runtime_1.jsx)(sections_1.CustomSection, __assign({}, props));
35
+ // return <CustomSection {...props} />;
36
+ return (0, jsx_runtime_1.jsx)(TempCustomSection_1.default, { section: props });
31
37
  }
32
38
  var schema = props.manifest.schema;
33
39
  switch (schema) {
@@ -2965,7 +2965,7 @@ exports.sampleCustomsection5 = {
2965
2965
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX: 8,
2966
2966
  'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX:MOBILE': 4,
2967
2967
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY: 12,
2968
- 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE': 7,
2968
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE': 4,
2969
2969
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX: 1,
2970
2970
  'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX:MOBILE': 1
2971
2971
  },
@@ -3128,7 +3128,7 @@ exports.sampleCustomsection5 = {
3128
3128
  CB_CONTENT_PROP_HOVER_SPEC_MUSE: true
3129
3129
  },
3130
3130
  CB_CONTENT_PROP_TEXT: {
3131
- CB_CONTENT_PROP_TEXT_SPEC_TEXT: '국내🇰🇷 및 해외🌎 결제 지원으로 폭넓은 서비스를 제공할 수 있어요.'
3131
+ CB_CONTENT_PROP_TEXT_SPEC_TEXT: '국내🇰🇷 및 해외🌎 결제 지원으로 폭넓은 서비스를 제공할 수 있어요. 국내🇰🇷 및 해외🌎 결제 지원으로 폭넓은 서비스를 제공할 수 있어요. 국내🇰🇷 및 해외🌎 결제 지원으로 폭넓은 서비스를 제공할 수 있어요. 국내🇰🇷 및 해외🌎 결제 지원으로 폭넓은 서비스를 제공할 수 있어요.'
3132
3132
  },
3133
3133
  CB_CONTENT_PROP_VISIBILITY: {
3134
3134
  CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP: true,
@@ -3167,7 +3167,7 @@ exports.sampleCustomsection5 = {
3167
3167
  },
3168
3168
  CB_PLACEMENT_PROP_PLACEMENT: {
3169
3169
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS: 16,
3170
- 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE': 8,
3170
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE': 4,
3171
3171
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS: 2,
3172
3172
  'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE': 2,
3173
3173
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX: 4,
@@ -3699,14 +3699,14 @@ exports.sampleCustomsection5 = {
3699
3699
  'CB_LAYOUT_PROP_PADDING_SPEC_PADDING:MOBILE': null
3700
3700
  },
3701
3701
  CB_PLACEMENT_PROP_PLACEMENT: {
3702
- CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS: 9,
3702
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS: 16,
3703
3703
  'CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE': 8,
3704
- CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS: 5,
3705
- 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE': 5,
3704
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS: 2,
3705
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE': 2,
3706
3706
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX: 4,
3707
- 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX:MOBILE': 0,
3708
- CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY: 0,
3709
- 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE': 0,
3707
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX:MOBILE': 4,
3708
+ CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY: 4,
3709
+ 'CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE': 4,
3710
3710
  CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX: 1,
3711
3711
  'CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX:MOBILE': 1
3712
3712
  },
@@ -9,6 +9,11 @@ export type CustomSectionImperativeHandleRef = {
9
9
  selectCB: (cbId: number | 'group') => void;
10
10
  selectCBInBulk: (cbIds: string[]) => void;
11
11
  };
12
+ export declare const DESKTOP_GRID_COLS = 24;
13
+ export declare const MOBILE_GRID_COLS = 8;
14
+ export declare const GLE_MIN_WIDTH_DESKTOP_PX: string;
15
+ export declare const GLE_MIN_WIDTH_MOBILE_PX: string;
12
16
  export declare const GUTTER = 10;
17
+ export declare const S_gleStyles: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
13
18
  declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<ISection & React.RefAttributes<unknown>>>;
14
19
  export default _default;