pds-dev-kit-web-test 2.5.346 → 2.5.347

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 (40) hide show
  1. package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +3 -0
  2. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +7 -4
  3. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +14 -7
  4. package/dist/src/sub/DynamicLayout/CompositionRenderer/connectedDataHelpers.d.ts +9 -0
  5. package/dist/src/sub/DynamicLayout/CompositionRenderer/connectedDataHelpers.js +29 -0
  6. package/dist/src/sub/DynamicLayout/mock_composition.js +1 -1
  7. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +3 -3
  8. package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +2 -0
  9. package/dist/src/sub/DynamicLayout/mock_contentsList.js +296 -0
  10. package/dist/src/sub/DynamicLayout/mock_slideBanner.js +4 -4
  11. package/dist/src/sub/DynamicLayout/mocks.d.ts +3 -1
  12. package/dist/src/sub/DynamicLayout/mocks.js +14 -2
  13. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +5 -0
  14. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +10 -16
  15. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +1 -1
  16. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +1 -1
  17. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigation.js +4 -3
  18. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomPagination.js +2 -2
  19. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +8 -0
  20. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +92 -0
  21. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +17 -0
  22. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +39 -0
  23. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +27 -0
  24. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +188 -0
  25. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +30 -0
  26. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +357 -0
  27. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +1 -0
  28. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.js +8 -0
  29. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +46 -0
  30. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +2 -0
  31. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigation.js +4 -3
  32. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +2 -2
  33. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +2 -2
  34. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +17 -6
  35. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +11 -3
  36. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -0
  37. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
  38. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +17 -2
  39. package/dist/src/sub/DynamicLayout/types.d.ts +1 -1
  40. package/package.json +1 -1
@@ -238,7 +238,7 @@ export type DynamicLayoutProps = {
238
238
  queryData?: QueryData;
239
239
  };
240
240
  export type QueryData = {
241
- [key: string]: any;
241
+ [key: string]: Array<Record<string, unknown>>;
242
242
  };
243
243
  export type NavHandlerAction = {
244
244
  openNewTab: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web-test",
3
- "version": "2.5.346",
3
+ "version": "2.5.347",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",