pds-dev-kit-web-test 2.5.47 → 2.5.49
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/sub/DynamicLayout/pagesPreviewMock.d.ts +80 -0
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +179 -16
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +85 -82
- package/dist/src/sub/DynamicLayout/types.d.ts +3 -2
- package/package.json +2 -1
@@ -6,6 +6,7 @@ import type { CB_EFFECT_PROP_ENTANIM_SPECS } from './sections/CustomSection/util
|
|
6
6
|
import type { CB_LAYOUT_PROP_PADDING_SPECS } from './sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding';
|
7
7
|
import type { CB_STYLE_PROP_BGCOLOR_SPECS } from './sections/CustomSection/util/stylePropParsers/parseStylePropBgColor';
|
8
8
|
import type { CB_STYLE_PROP_BGOVERLAY_SPECS } from './sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay';
|
9
|
+
import type { Block } from 'publ-echo-test/dist/lib/GridLayoutEditor/group';
|
9
10
|
import type { Ref } from 'react';
|
10
11
|
export { TypeOfSectionAction };
|
11
12
|
export type TypeOfSectionManifestSchema = 'BASE_INTRO' | 'BASE_CONTENTS' | 'BASE_CONTENTS_CAROUSEL' | 'BASE_FOOTER' | 'BASE_INFO_BOX' | 'EXP_IFRAME' | 'PRG_MEMBERSHIP_DISPLAY' | 'CUSTOM';
|
@@ -58,10 +59,9 @@ export interface ISection {
|
|
58
59
|
};
|
59
60
|
};
|
60
61
|
componentBlocks?: ComponentBlock[];
|
61
|
-
pedigree?: SectionPedigree;
|
62
62
|
jsonProperties?: ISectionJsonProperties;
|
63
63
|
}
|
64
|
-
export type SectionPedigree =
|
64
|
+
export type SectionPedigree = Block[];
|
65
65
|
export interface SubscriptionProductInList {
|
66
66
|
id: number;
|
67
67
|
type: SubscriptionProductType;
|
@@ -301,6 +301,7 @@ export type IMembershipDisplay = {
|
|
301
301
|
connectedMemberships: IConnectedMembership[];
|
302
302
|
};
|
303
303
|
export type ISectionJsonProperties = {
|
304
|
+
pedigree?: SectionPedigree;
|
304
305
|
data: {
|
305
306
|
CB_CONTENT_PROP_SECTION: {
|
306
307
|
CB_CONTENT_PROP_SECTION_SPEC_VARIABLEROOTFONTSIZE: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pds-dev-kit-web-test",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.49",
|
4
4
|
"license": "MIT",
|
5
5
|
"private": false,
|
6
6
|
"main": "dist/index.js",
|
@@ -23,6 +23,7 @@
|
|
23
23
|
"lottie-react": "^2.3.1",
|
24
24
|
"nuka-carousel": "^4.8.4",
|
25
25
|
"publ-echo": "^0.0.99",
|
26
|
+
"publ-echo-test": "^0.0.70",
|
26
27
|
"react-hook-form": "^7.28.1",
|
27
28
|
"react-i18next": "^11.12.0",
|
28
29
|
"react-router-dom": "^5.2.0",
|