pds-dev-kit-web-test 2.3.4 → 2.3.5

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/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +1 -7
  2. package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +709 -1375
  3. package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +1124 -2381
  4. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +0 -10
  5. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +0 -6
  6. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +64 -77
  7. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +1 -2
  8. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -3
  9. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +1 -1
  10. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.d.ts +1 -3
  11. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +1 -60
  12. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.js +1 -1
  13. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.d.ts +1 -1
  14. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.js +3 -3
  15. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.d.ts +1 -1
  16. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.js +2 -2
  17. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +1 -12
  18. package/dist/src/sub/SandollFontKit/constants.d.ts +9 -0
  19. package/dist/src/sub/SandollFontKit/constants.js +33 -0
  20. package/dist/src/sub/SandollFontKit/headless/SandollFontItem.d.ts +13 -0
  21. package/dist/src/sub/SandollFontKit/headless/SandollFontItem.js +93 -0
  22. package/dist/src/sub/SandollFontKit/headless/SandollFontsList.d.ts +17 -0
  23. package/dist/src/sub/SandollFontKit/headless/SandollFontsList.js +145 -0
  24. package/dist/src/sub/SandollFontKit/index.d.ts +4 -0
  25. package/dist/src/sub/SandollFontKit/index.js +26 -0
  26. package/dist/src/sub/SandollFontKit/types.d.ts +22 -0
  27. package/dist/src/sub/SandollFontKit/types.js +2 -0
  28. package/dist/src/sub/SandollFontKit/utils/delay.d.ts +1 -0
  29. package/dist/src/sub/SandollFontKit/utils/delay.js +6 -0
  30. package/package.json +1 -4
  31. package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.d.ts +0 -3
  32. package/dist/src/sub/DynamicLayout/sections/CustomSection/NewCustomSection.js +0 -70
  33. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.d.ts +0 -1
  34. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/index.js +0 -8
  35. package/dist/src/sub/DynamicLayout/sections/CustomSection/customSectionContext.d.ts +0 -10
  36. package/dist/src/sub/DynamicLayout/sections/CustomSection/customSectionContext.js +0 -21
  37. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.d.ts +0 -11
  38. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/FlexGridItem.js +0 -69
  39. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.d.ts +0 -7
  40. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/TempCustomSection.js +0 -87
  41. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.d.ts +0 -1
  42. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useIsMounted.js +0 -15
  43. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.d.ts +0 -12
  44. package/dist/src/sub/DynamicLayout/sections/TempCustomSection/useResizableObserver.js +0 -74
@@ -21,19 +21,13 @@ 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
- };
27
24
  Object.defineProperty(exports, "__esModule", { value: true });
28
25
  var jsx_runtime_1 = require("react/jsx-runtime");
29
- require("../../../DynamicLayout/sections/CustomSection/NewCustomSection");
30
- var TempCustomSection_1 = __importDefault(require("../../../DynamicLayout/sections/TempCustomSection/TempCustomSection"));
31
26
  var sections_1 = require("../../sections");
32
27
  function SectionMatcher(_a) {
33
28
  var props = __rest(_a, []);
34
29
  if (props.type === 'CUSTOM') {
35
- // return <CustomSection {...props} />;
36
- return (0, jsx_runtime_1.jsx)(TempCustomSection_1.default, { section: props });
30
+ return (0, jsx_runtime_1.jsx)(sections_1.CustomSection, __assign({}, props));
37
31
  }
38
32
  var schema = props.manifest.schema;
39
33
  switch (schema) {