@contentful/experiences-core 3.7.0-dev-20250917T1357-4fbbff5.0 → 3.7.0-dev-20250918T1641-6da833a.0
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/constants.cjs +196 -0
- package/dist/constants.cjs.map +1 -0
- package/dist/index.cjs +5372 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/utils/sanitizeNodeProps.d.ts +3 -2
- package/package.json +21 -8
- package/dist/exports.js +0 -2
- package/dist/exports.js.map +0 -1
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
4
|
+
const SCROLL_STATES = {
|
|
5
|
+
Start: 'scrollStart',
|
|
6
|
+
IsScrolling: 'isScrolling',
|
|
7
|
+
End: 'scrollEnd',
|
|
8
|
+
};
|
|
9
|
+
const OUTGOING_EVENTS = {
|
|
10
|
+
Connected: 'connected',
|
|
11
|
+
DesignTokens: 'registerDesignTokens',
|
|
12
|
+
RegisteredBreakpoints: 'registeredBreakpoints',
|
|
13
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
14
|
+
MouseMove: 'mouseMove',
|
|
15
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
16
|
+
ComponentSelected: 'componentSelected',
|
|
17
|
+
RegisteredComponents: 'registeredComponents',
|
|
18
|
+
RequestComponentTreeUpdate: 'requestComponentTreeUpdate',
|
|
19
|
+
CanvasReload: 'canvasReload',
|
|
20
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
21
|
+
UpdateSelectedComponentCoordinates: 'updateSelectedComponentCoordinates',
|
|
22
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
23
|
+
CanvasScroll: 'canvasScrolling',
|
|
24
|
+
CanvasError: 'canvasError',
|
|
25
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
26
|
+
OutsideCanvasClick: 'outsideCanvasClick',
|
|
27
|
+
SDKFeatures: 'sdkFeatures',
|
|
28
|
+
RequestEntities: 'REQUEST_ENTITIES',
|
|
29
|
+
CanvasGeometryUpdated: 'canvasGeometryUpdated',
|
|
30
|
+
CanvasPan: 'canvasPan',
|
|
31
|
+
};
|
|
32
|
+
const INCOMING_EVENTS = {
|
|
33
|
+
RequestEditorMode: 'requestEditorMode',
|
|
34
|
+
RequestReadOnlyMode: 'requestReadOnlyMode',
|
|
35
|
+
ExperienceUpdated: 'componentTreeUpdated',
|
|
36
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
37
|
+
ComponentDraggingChanged: 'componentDraggingChanged',
|
|
38
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
39
|
+
ComponentDragCanceled: 'componentDragCanceled',
|
|
40
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
41
|
+
ComponentDragStarted: 'componentDragStarted',
|
|
42
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
43
|
+
ComponentDragEnded: 'componentDragEnded',
|
|
44
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
45
|
+
ComponentMoveEnded: 'componentMoveEnded',
|
|
46
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
47
|
+
CanvasResized: 'canvasResized',
|
|
48
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
49
|
+
SelectComponent: 'selectComponent',
|
|
50
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
51
|
+
HoverComponent: 'hoverComponent',
|
|
52
|
+
UpdatedEntity: 'updatedEntity',
|
|
53
|
+
AssembliesAdded: 'assembliesAdded',
|
|
54
|
+
AssembliesRegistered: 'assembliesRegistered',
|
|
55
|
+
/** @deprecated will be removed when dropping backward compatibility for old DND */
|
|
56
|
+
MouseMove: 'mouseMove',
|
|
57
|
+
RequestedEntities: 'REQUESTED_ENTITIES',
|
|
58
|
+
};
|
|
59
|
+
const INTERNAL_EVENTS = {
|
|
60
|
+
ComponentsRegistered: 'cfComponentsRegistered',
|
|
61
|
+
VisualEditorInitialize: 'cfVisualEditorInitialize',
|
|
62
|
+
};
|
|
63
|
+
const VISUAL_EDITOR_EVENTS = {
|
|
64
|
+
Ready: 'cfVisualEditorReady',
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* These modes are ONLY intended to be internally used within the context of
|
|
68
|
+
* editing an experience inside of Contentful Studio. i.e. these modes
|
|
69
|
+
* intentionally do not include preview/delivery modes.
|
|
70
|
+
*/
|
|
71
|
+
exports.StudioCanvasMode = void 0;
|
|
72
|
+
(function (StudioCanvasMode) {
|
|
73
|
+
StudioCanvasMode["READ_ONLY"] = "readOnlyMode";
|
|
74
|
+
StudioCanvasMode["EDITOR"] = "editorMode";
|
|
75
|
+
StudioCanvasMode["NONE"] = "none";
|
|
76
|
+
})(exports.StudioCanvasMode || (exports.StudioCanvasMode = {}));
|
|
77
|
+
const VISUAL_EDITOR_CONTAINER_ID = 'cf-visual-editor';
|
|
78
|
+
const CONTENTFUL_COMPONENT_CATEGORY = 'contentful-component';
|
|
79
|
+
const CONTENTFUL_DEFAULT_CATEGORY = 'Contentful';
|
|
80
|
+
const CONTENTFUL_COMPONENTS = {
|
|
81
|
+
section: {
|
|
82
|
+
id: 'contentful-section',
|
|
83
|
+
name: 'Section',
|
|
84
|
+
},
|
|
85
|
+
container: {
|
|
86
|
+
id: 'contentful-container',
|
|
87
|
+
name: 'Container',
|
|
88
|
+
},
|
|
89
|
+
columns: {
|
|
90
|
+
id: 'contentful-columns',
|
|
91
|
+
name: 'Columns',
|
|
92
|
+
},
|
|
93
|
+
singleColumn: {
|
|
94
|
+
id: 'contentful-single-column',
|
|
95
|
+
name: 'Column',
|
|
96
|
+
},
|
|
97
|
+
button: {
|
|
98
|
+
id: 'contentful-button',
|
|
99
|
+
name: 'Button',
|
|
100
|
+
},
|
|
101
|
+
heading: {
|
|
102
|
+
id: 'contentful-heading',
|
|
103
|
+
name: 'Heading',
|
|
104
|
+
},
|
|
105
|
+
image: {
|
|
106
|
+
id: 'contentful-image',
|
|
107
|
+
name: 'Image',
|
|
108
|
+
},
|
|
109
|
+
richText: {
|
|
110
|
+
id: 'contentful-richText',
|
|
111
|
+
name: 'Rich Text',
|
|
112
|
+
},
|
|
113
|
+
text: {
|
|
114
|
+
id: 'contentful-text',
|
|
115
|
+
name: 'Text',
|
|
116
|
+
},
|
|
117
|
+
divider: {
|
|
118
|
+
id: 'contentful-divider',
|
|
119
|
+
name: 'Divider',
|
|
120
|
+
},
|
|
121
|
+
carousel: {
|
|
122
|
+
id: 'contentful-carousel',
|
|
123
|
+
name: 'Carousel',
|
|
124
|
+
},
|
|
125
|
+
};
|
|
126
|
+
const ASSEMBLY_NODE_TYPE = 'assembly';
|
|
127
|
+
const ASSEMBLY_DEFAULT_CATEGORY = 'Assemblies';
|
|
128
|
+
const ASSEMBLY_BLOCK_NODE_TYPE = 'assemblyBlock';
|
|
129
|
+
const ASSEMBLY_NODE_TYPES = [ASSEMBLY_NODE_TYPE, ASSEMBLY_BLOCK_NODE_TYPE];
|
|
130
|
+
const LATEST_SCHEMA_VERSION = '2023-09-28';
|
|
131
|
+
const CF_STYLE_ATTRIBUTES = [
|
|
132
|
+
'cfVisibility',
|
|
133
|
+
'cfHorizontalAlignment',
|
|
134
|
+
'cfVerticalAlignment',
|
|
135
|
+
'cfMargin',
|
|
136
|
+
'cfPadding',
|
|
137
|
+
'cfBackgroundColor',
|
|
138
|
+
'cfWidth',
|
|
139
|
+
'cfMaxWidth',
|
|
140
|
+
'cfHeight',
|
|
141
|
+
'cfImageAsset',
|
|
142
|
+
'cfImageOptions',
|
|
143
|
+
'cfBackgroundImageUrl',
|
|
144
|
+
'cfBackgroundImageOptions',
|
|
145
|
+
'cfFlexDirection',
|
|
146
|
+
'cfFlexWrap',
|
|
147
|
+
'cfFlexReverse',
|
|
148
|
+
'cfBorder',
|
|
149
|
+
'cfBorderRadius',
|
|
150
|
+
'cfGap',
|
|
151
|
+
'cfColumnSpan',
|
|
152
|
+
'cfColumnSpanLock',
|
|
153
|
+
'cfColumns',
|
|
154
|
+
'cfFontSize',
|
|
155
|
+
'cfFontWeight',
|
|
156
|
+
'cfLineHeight',
|
|
157
|
+
'cfLetterSpacing',
|
|
158
|
+
'cfTextColor',
|
|
159
|
+
'cfTextAlign',
|
|
160
|
+
'cfTextTransform',
|
|
161
|
+
'cfTextBold',
|
|
162
|
+
'cfTextItalic',
|
|
163
|
+
'cfTextUnderline',
|
|
164
|
+
];
|
|
165
|
+
const EMPTY_CONTAINER_SIZE = '80px';
|
|
166
|
+
const HYPERLINK_DEFAULT_PATTERN = `/{locale}/{entry.fields.slug}/`;
|
|
167
|
+
exports.PostMessageMethods = void 0;
|
|
168
|
+
(function (PostMessageMethods) {
|
|
169
|
+
PostMessageMethods["REQUEST_ENTITIES"] = "REQUEST_ENTITIES";
|
|
170
|
+
PostMessageMethods["REQUESTED_ENTITIES"] = "REQUESTED_ENTITIES";
|
|
171
|
+
})(exports.PostMessageMethods || (exports.PostMessageMethods = {}));
|
|
172
|
+
const SUPPORTED_IMAGE_FORMATS = ['jpg', 'png', 'webp', 'gif', 'avif'];
|
|
173
|
+
const PATTERN_PROPERTY_DIVIDER = '-----';
|
|
174
|
+
const SIDELOADED_PREFIX = 'sideloaded_';
|
|
175
|
+
|
|
176
|
+
exports.ASSEMBLY_BLOCK_NODE_TYPE = ASSEMBLY_BLOCK_NODE_TYPE;
|
|
177
|
+
exports.ASSEMBLY_DEFAULT_CATEGORY = ASSEMBLY_DEFAULT_CATEGORY;
|
|
178
|
+
exports.ASSEMBLY_NODE_TYPE = ASSEMBLY_NODE_TYPE;
|
|
179
|
+
exports.ASSEMBLY_NODE_TYPES = ASSEMBLY_NODE_TYPES;
|
|
180
|
+
exports.CF_STYLE_ATTRIBUTES = CF_STYLE_ATTRIBUTES;
|
|
181
|
+
exports.CONTENTFUL_COMPONENTS = CONTENTFUL_COMPONENTS;
|
|
182
|
+
exports.CONTENTFUL_COMPONENT_CATEGORY = CONTENTFUL_COMPONENT_CATEGORY;
|
|
183
|
+
exports.CONTENTFUL_DEFAULT_CATEGORY = CONTENTFUL_DEFAULT_CATEGORY;
|
|
184
|
+
exports.EMPTY_CONTAINER_SIZE = EMPTY_CONTAINER_SIZE;
|
|
185
|
+
exports.HYPERLINK_DEFAULT_PATTERN = HYPERLINK_DEFAULT_PATTERN;
|
|
186
|
+
exports.INCOMING_EVENTS = INCOMING_EVENTS;
|
|
187
|
+
exports.INTERNAL_EVENTS = INTERNAL_EVENTS;
|
|
188
|
+
exports.LATEST_SCHEMA_VERSION = LATEST_SCHEMA_VERSION;
|
|
189
|
+
exports.OUTGOING_EVENTS = OUTGOING_EVENTS;
|
|
190
|
+
exports.PATTERN_PROPERTY_DIVIDER = PATTERN_PROPERTY_DIVIDER;
|
|
191
|
+
exports.SCROLL_STATES = SCROLL_STATES;
|
|
192
|
+
exports.SIDELOADED_PREFIX = SIDELOADED_PREFIX;
|
|
193
|
+
exports.SUPPORTED_IMAGE_FORMATS = SUPPORTED_IMAGE_FORMATS;
|
|
194
|
+
exports.VISUAL_EDITOR_CONTAINER_ID = VISUAL_EDITOR_CONTAINER_ID;
|
|
195
|
+
exports.VISUAL_EDITOR_EVENTS = VISUAL_EDITOR_EVENTS;
|
|
196
|
+
//# sourceMappingURL=constants.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.cjs","sources":["../src/constants.ts"],"sourcesContent":["/** @deprecated will be removed when dropping backward compatibility for old DND */\nexport const SCROLL_STATES = {\n Start: 'scrollStart',\n IsScrolling: 'isScrolling',\n End: 'scrollEnd',\n} as const;\n\nexport const OUTGOING_EVENTS = {\n Connected: 'connected',\n DesignTokens: 'registerDesignTokens',\n RegisteredBreakpoints: 'registeredBreakpoints',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n MouseMove: 'mouseMove',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentSelected: 'componentSelected',\n RegisteredComponents: 'registeredComponents',\n RequestComponentTreeUpdate: 'requestComponentTreeUpdate',\n CanvasReload: 'canvasReload',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n UpdateSelectedComponentCoordinates: 'updateSelectedComponentCoordinates',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n CanvasScroll: 'canvasScrolling',\n CanvasError: 'canvasError',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n OutsideCanvasClick: 'outsideCanvasClick',\n SDKFeatures: 'sdkFeatures',\n RequestEntities: 'REQUEST_ENTITIES',\n CanvasGeometryUpdated: 'canvasGeometryUpdated',\n CanvasPan: 'canvasPan',\n} as const;\n\nexport const INCOMING_EVENTS = {\n RequestEditorMode: 'requestEditorMode',\n RequestReadOnlyMode: 'requestReadOnlyMode',\n ExperienceUpdated: 'componentTreeUpdated',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentDraggingChanged: 'componentDraggingChanged',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentDragCanceled: 'componentDragCanceled',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentDragStarted: 'componentDragStarted',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentDragEnded: 'componentDragEnded',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n ComponentMoveEnded: 'componentMoveEnded',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n CanvasResized: 'canvasResized',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n SelectComponent: 'selectComponent',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n HoverComponent: 'hoverComponent',\n UpdatedEntity: 'updatedEntity',\n AssembliesAdded: 'assembliesAdded',\n AssembliesRegistered: 'assembliesRegistered',\n /** @deprecated will be removed when dropping backward compatibility for old DND */\n MouseMove: 'mouseMove',\n RequestedEntities: 'REQUESTED_ENTITIES',\n} as const;\n\nexport const INTERNAL_EVENTS = {\n ComponentsRegistered: 'cfComponentsRegistered',\n VisualEditorInitialize: 'cfVisualEditorInitialize',\n} as const;\n\nexport const VISUAL_EDITOR_EVENTS = {\n Ready: 'cfVisualEditorReady',\n};\n\n/**\n * These modes are ONLY intended to be internally used within the context of\n * editing an experience inside of Contentful Studio. i.e. these modes\n * intentionally do not include preview/delivery modes.\n */\nexport enum StudioCanvasMode {\n READ_ONLY = 'readOnlyMode',\n EDITOR = 'editorMode',\n NONE = 'none',\n}\n\nexport const VISUAL_EDITOR_CONTAINER_ID = 'cf-visual-editor';\nexport const CONTENTFUL_COMPONENT_CATEGORY = 'contentful-component';\nexport const CONTENTFUL_DEFAULT_CATEGORY = 'Contentful';\n\nexport const CONTENTFUL_COMPONENTS = {\n section: {\n id: 'contentful-section',\n name: 'Section',\n },\n container: {\n id: 'contentful-container',\n name: 'Container',\n },\n columns: {\n id: 'contentful-columns',\n name: 'Columns',\n },\n singleColumn: {\n id: 'contentful-single-column',\n name: 'Column',\n },\n button: {\n id: 'contentful-button',\n name: 'Button',\n },\n heading: {\n id: 'contentful-heading',\n name: 'Heading',\n },\n image: {\n id: 'contentful-image',\n name: 'Image',\n },\n richText: {\n id: 'contentful-richText',\n name: 'Rich Text',\n },\n text: {\n id: 'contentful-text',\n name: 'Text',\n },\n divider: {\n id: 'contentful-divider',\n name: 'Divider',\n },\n carousel: {\n id: 'contentful-carousel',\n name: 'Carousel',\n },\n} as const;\n\nexport const ASSEMBLY_NODE_TYPE = 'assembly';\nexport const ASSEMBLY_DEFAULT_CATEGORY = 'Assemblies';\nexport const ASSEMBLY_BLOCK_NODE_TYPE = 'assemblyBlock';\nexport const ASSEMBLY_NODE_TYPES = [ASSEMBLY_NODE_TYPE, ASSEMBLY_BLOCK_NODE_TYPE];\nexport const LATEST_SCHEMA_VERSION = '2023-09-28';\nexport const CF_STYLE_ATTRIBUTES = [\n 'cfVisibility',\n 'cfHorizontalAlignment',\n 'cfVerticalAlignment',\n 'cfMargin',\n 'cfPadding',\n 'cfBackgroundColor',\n 'cfWidth',\n 'cfMaxWidth',\n 'cfHeight',\n 'cfImageAsset',\n 'cfImageOptions',\n 'cfBackgroundImageUrl',\n 'cfBackgroundImageOptions',\n 'cfFlexDirection',\n 'cfFlexWrap',\n 'cfFlexReverse',\n 'cfBorder',\n 'cfBorderRadius',\n 'cfGap',\n 'cfColumnSpan',\n 'cfColumnSpanLock',\n 'cfColumns',\n 'cfFontSize',\n 'cfFontWeight',\n 'cfLineHeight',\n 'cfLetterSpacing',\n 'cfTextColor',\n 'cfTextAlign',\n 'cfTextTransform',\n 'cfTextBold',\n 'cfTextItalic',\n 'cfTextUnderline',\n];\n\nexport const EMPTY_CONTAINER_SIZE = '80px';\n\nexport const HYPERLINK_DEFAULT_PATTERN = `/{locale}/{entry.fields.slug}/`;\n\nexport enum PostMessageMethods {\n REQUEST_ENTITIES = 'REQUEST_ENTITIES',\n REQUESTED_ENTITIES = 'REQUESTED_ENTITIES',\n}\n\nexport const SUPPORTED_IMAGE_FORMATS = ['jpg', 'png', 'webp', 'gif', 'avif'] as const;\n\nexport const PATTERN_PROPERTY_DIVIDER = '-----';\n\nexport const SIDELOADED_PREFIX = 'sideloaded_';\n"],"names":["StudioCanvasMode","PostMessageMethods"],"mappings":"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"}
|