@makeswift/runtime 0.10.16 → 0.11.1

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 (63) hide show
  1. package/dist/Box.es.js +1 -1
  2. package/dist/Button.es.js +1 -1
  3. package/dist/Carousel.es.js +1 -1
  4. package/dist/Countdown.es.js +1 -1
  5. package/dist/Divider.es.js +1 -1
  6. package/dist/Embed.es.js +1 -1
  7. package/dist/Form.es.js +1 -1
  8. package/dist/Image.es.js +1 -1
  9. package/dist/LiveProvider.es.js +1 -1
  10. package/dist/Navigation.es.js +1 -1
  11. package/dist/PreviewProvider.cjs.js +8 -11
  12. package/dist/PreviewProvider.cjs.js.map +1 -1
  13. package/dist/PreviewProvider.es.js +10 -13
  14. package/dist/PreviewProvider.es.js.map +1 -1
  15. package/dist/ReadOnlyText.es.js +1 -1
  16. package/dist/ReadOnlyTextV2.es.js +1 -1
  17. package/dist/Root.es.js +1 -1
  18. package/dist/SocialLinks.es.js +1 -1
  19. package/dist/Video.es.js +1 -1
  20. package/dist/actions.cjs.js +8 -14
  21. package/dist/actions.cjs.js.map +1 -1
  22. package/dist/actions.es.js +8 -12
  23. package/dist/actions.es.js.map +1 -1
  24. package/dist/control-serialization.es.js +1 -1
  25. package/dist/controls.es.js +1 -1
  26. package/dist/index.cjs.js +18 -19
  27. package/dist/index.cjs.js.map +1 -1
  28. package/dist/index.es.js +20 -21
  29. package/dist/index.es.js.map +1 -1
  30. package/dist/index.es2.js +1 -1
  31. package/dist/index.es4.js +1 -1
  32. package/dist/index.es5.js +1 -1
  33. package/dist/index.es6.js +1 -1
  34. package/dist/index.es8.js +1 -1
  35. package/dist/index.es9.js +1 -1
  36. package/dist/main.cjs.js +1 -1
  37. package/dist/main.es.js +1 -1
  38. package/dist/react-page.cjs.js +42 -94
  39. package/dist/react-page.cjs.js.map +1 -1
  40. package/dist/react-page.es.js +35 -83
  41. package/dist/react-page.es.js.map +1 -1
  42. package/dist/slate.es.js +1 -1
  43. package/dist/toText.es.js +1 -1
  44. package/dist/types/src/api/react.d.ts +4 -1
  45. package/dist/types/src/api/react.d.ts.map +1 -1
  46. package/dist/types/src/controls/rich-text/translation.d.ts.map +1 -1
  47. package/dist/types/src/controls/rich-text-v2/translation.d.ts.map +1 -1
  48. package/dist/types/src/index.d.ts +1 -1
  49. package/dist/types/src/index.d.ts.map +1 -1
  50. package/dist/types/src/next/client.d.ts +3 -2
  51. package/dist/types/src/next/client.d.ts.map +1 -1
  52. package/dist/types/src/runtimes/react/index.d.ts +1 -3
  53. package/dist/types/src/runtimes/react/index.d.ts.map +1 -1
  54. package/dist/types/src/state/actions.d.ts +10 -14
  55. package/dist/types/src/state/actions.d.ts.map +1 -1
  56. package/dist/types/src/state/react-builder-preview.d.ts +1 -3
  57. package/dist/types/src/state/react-builder-preview.d.ts.map +1 -1
  58. package/dist/types/src/state/react-page.d.ts +1 -7
  59. package/dist/types/src/state/react-page.d.ts.map +1 -1
  60. package/dist/types/types/locale.d.ts +1 -1
  61. package/package.json +1 -1
  62. package/dist/types/src/state/modules/locales.d.ts +0 -15
  63. package/dist/types/src/state/modules/locales.d.ts.map +0 -1
@@ -37,8 +37,8 @@ const import_meta = {};
37
37
  var _c;
38
38
  import { combineReducers, createStore, applyMiddleware } from "redux";
39
39
  import thunk from "redux-thunk";
40
- import { A as ActionTypes, n as localeStringSchema } from "./actions.es.js";
41
- import { findBreakpointOverride, reducer as reducer$a, getInitialState as getInitialState$9 } from "./state/breakpoints.es.js";
40
+ import { A as ActionTypes } from "./actions.es.js";
41
+ import { findBreakpointOverride, reducer as reducer$9, getInitialState as getInitialState$8 } from "./state/breakpoints.es.js";
42
42
  import { match, P } from "ts-pattern";
43
43
  import ipsum from "corporate-ipsum";
44
44
  import { Element, Range, Editor, Text, Path, Transforms, Node, Point } from "slate";
@@ -74,7 +74,7 @@ const ComponentIcon = {
74
74
  Users: "users",
75
75
  Video: "video"
76
76
  };
77
- function getInitialState$8({
77
+ function getInitialState$7({
78
78
  componentsMeta = /* @__PURE__ */ new Map()
79
79
  } = {}) {
80
80
  return componentsMeta;
@@ -82,7 +82,7 @@ function getInitialState$8({
82
82
  function getComponentsMeta(state) {
83
83
  return state;
84
84
  }
85
- function reducer$9(state = getInitialState$8(), action) {
85
+ function reducer$8(state = getInitialState$7(), action) {
86
86
  switch (action.type) {
87
87
  case ActionTypes.REGISTER_COMPONENT:
88
88
  return new Map(state).set(action.payload.type, action.payload.meta);
@@ -104,7 +104,7 @@ function createDocumentReference(key) {
104
104
  function createDocument(key, rootElement) {
105
105
  return { key, rootElement };
106
106
  }
107
- function getInitialState$7({
107
+ function getInitialState$6({
108
108
  rootElements = /* @__PURE__ */ new Map()
109
109
  } = {}) {
110
110
  const initialState = /* @__PURE__ */ new Map();
@@ -120,7 +120,7 @@ function getDocument$1(state, documentKey) {
120
120
  var _a;
121
121
  return (_a = getDocuments(state).get(documentKey)) != null ? _a : null;
122
122
  }
123
- function reducer$8(state = getInitialState$7(), action) {
123
+ function reducer$7(state = getInitialState$6(), action) {
124
124
  switch (action.type) {
125
125
  case ActionTypes.REGISTER_DOCUMENT:
126
126
  return new Map(state).set(action.payload.documentKey, action.payload.document);
@@ -133,7 +133,7 @@ function reducer$8(state = getInitialState$7(), action) {
133
133
  return state;
134
134
  }
135
135
  }
136
- function getInitialState$6({
136
+ function getInitialState$5({
137
137
  reactComponents = /* @__PURE__ */ new Map()
138
138
  } = {}) {
139
139
  return reactComponents;
@@ -145,7 +145,7 @@ function getReactComponent$1(state, type) {
145
145
  var _a;
146
146
  return (_a = getReactComponents(state).get(type)) != null ? _a : null;
147
147
  }
148
- function reducer$7(state = getInitialState$6(), action) {
148
+ function reducer$6(state = getInitialState$5(), action) {
149
149
  switch (action.type) {
150
150
  case ActionTypes.REGISTER_REACT_COMPONENT:
151
151
  return new Map(state).set(action.payload.type, action.payload.component);
@@ -158,7 +158,7 @@ function reducer$7(state = getInitialState$6(), action) {
158
158
  return state;
159
159
  }
160
160
  }
161
- function getInitialState$5({
161
+ function getInitialState$4({
162
162
  propControllerDescriptors = /* @__PURE__ */ new Map()
163
163
  } = {}) {
164
164
  return propControllerDescriptors;
@@ -170,7 +170,7 @@ function getComponentPropControllerDescriptors$1(state, componentType) {
170
170
  var _a;
171
171
  return (_a = getPropControllerDescriptors$1(state).get(componentType)) != null ? _a : null;
172
172
  }
173
- function reducer$6(state = getInitialState$5(), action) {
173
+ function reducer$5(state = getInitialState$4(), action) {
174
174
  switch (action.type) {
175
175
  case ActionTypes.REGISTER_COMPONENT:
176
176
  return new Map(state).set(action.payload.type, action.payload.propControllerDescriptors);
@@ -189,7 +189,7 @@ function isPropControllersHandle(value) {
189
189
  }
190
190
  return false;
191
191
  }
192
- function getInitialState$4() {
192
+ function getInitialState$3() {
193
193
  return { handles: /* @__PURE__ */ new Map(), instances: /* @__PURE__ */ new Map() };
194
194
  }
195
195
  function getPropControllersHandle(state, documentKey, elementKey) {
@@ -204,7 +204,7 @@ function getPropController(state, documentKey, elementKey, propName) {
204
204
  var _a, _b;
205
205
  return (_b = (_a = getPropControllers$1(state, documentKey, elementKey)) == null ? void 0 : _a[propName]) != null ? _b : null;
206
206
  }
207
- function reducer$5(state = getInitialState$4(), action) {
207
+ function reducer$4(state = getInitialState$3(), action) {
208
208
  var _a, _b, _c2, _d;
209
209
  switch (action.type) {
210
210
  case ActionTypes.REGISTER_PROP_CONTROLLERS_HANDLE: {
@@ -235,10 +235,10 @@ function reducer$5(state = getInitialState$4(), action) {
235
235
  return state;
236
236
  }
237
237
  }
238
- function getInitialState$3() {
238
+ function getInitialState$2() {
239
239
  return false;
240
240
  }
241
- function reducer$4(state = getInitialState$3(), action) {
241
+ function reducer$3(state = getInitialState$2(), action) {
242
242
  switch (action.type) {
243
243
  case ActionTypes.SET_IS_IN_BUILDER:
244
244
  return action.payload;
@@ -246,13 +246,13 @@ function reducer$4(state = getInitialState$3(), action) {
246
246
  return state;
247
247
  }
248
248
  }
249
- function getInitialState$2(isPreview = false) {
249
+ function getInitialState$1(isPreview = false) {
250
250
  return isPreview;
251
251
  }
252
252
  function getIsPreview$1(state) {
253
253
  return state;
254
254
  }
255
- function reducer$3(state = getInitialState$2(), action) {
255
+ function reducer$2(state = getInitialState$1(), action) {
256
256
  switch (action.type) {
257
257
  default:
258
258
  return state;
@@ -263,10 +263,10 @@ const BuilderEditMode = {
263
263
  CONTENT: "content",
264
264
  INTERACT: "interact"
265
265
  };
266
- function getInitialState$1() {
266
+ function getInitialState() {
267
267
  return null;
268
268
  }
269
- function reducer$2(state = getInitialState$1(), action) {
269
+ function reducer$1(state = getInitialState(), action) {
270
270
  switch (action.type) {
271
271
  case ActionTypes.SET_BUILDER_EDIT_MODE:
272
272
  return action.payload.editMode;
@@ -274,47 +274,6 @@ function reducer$2(state = getInitialState$1(), action) {
274
274
  return state;
275
275
  }
276
276
  }
277
- function getInitialState(initialState) {
278
- var _a, _b, _c2;
279
- return {
280
- locales: (_a = initialState == null ? void 0 : initialState.locales) != null ? _a : [],
281
- locale: (_b = initialState == null ? void 0 : initialState.locale) != null ? _b : null,
282
- defaultLocale: (_c2 = initialState == null ? void 0 : initialState.defaultLocale) != null ? _c2 : null
283
- };
284
- }
285
- function reducer$1(state = getInitialState(), action) {
286
- switch (action.type) {
287
- case ActionTypes.SET_LOCALES: {
288
- const locales = action.payload.locales;
289
- return __spreadProps(__spreadValues({}, state), { locales });
290
- }
291
- case ActionTypes.SET_LOCALE: {
292
- if (action.payload.locale === state.locale)
293
- return state;
294
- return __spreadProps(__spreadValues({}, state), { locale: action.payload.locale });
295
- }
296
- case ActionTypes.SET_DEFAULT_LOCALE: {
297
- if (action.payload.defaultLocale === state.defaultLocale)
298
- return state;
299
- return __spreadProps(__spreadValues({}, state), { defaultLocale: action.payload.defaultLocale });
300
- }
301
- default:
302
- return state;
303
- }
304
- }
305
- function parseLocalesInput(input) {
306
- if (input.locales == null) {
307
- throw new Error(`Locales cannot be null or undefined. Please provide the locales array.`);
308
- }
309
- if (input.locales.includes(input.defaultLocale) === false) {
310
- throw new Error(`Default locale "${input.defaultLocale}" is not included in locales: ${input.locales}. Please add the default locale to the locales array.`);
311
- }
312
- return {
313
- locales: input.locales.map((locale) => localeStringSchema.parse(locale)),
314
- defaultLocale: localeStringSchema.parse(input.defaultLocale),
315
- locale: null
316
- };
317
- }
318
277
  const ColorControlType = "makeswift::controls::color";
319
278
  function Color(config = {}) {
320
279
  return { type: ColorControlType, config };
@@ -2208,7 +2167,9 @@ function richTextDTOtoSelection(data) {
2208
2167
  }
2209
2168
  function richTextDTOtoDAO(data) {
2210
2169
  var _a, _b, _c2;
2211
- return (_c2 = (_b = (_a = data.document) == null ? void 0 : _a.nodes) == null ? void 0 : _b.flatMap(toNodeDAO)) != null ? _c2 : [];
2170
+ return (_c2 = (_b = (_a = data.document) == null ? void 0 : _a.nodes) == null ? void 0 : _b.flatMap(toNodeDAO)) != null ? _c2 : [
2171
+ { type: BlockType.Default, children: [{ text: "" }] }
2172
+ ];
2212
2173
  }
2213
2174
  function toInlineOrTextDTO(node) {
2214
2175
  var _a;
@@ -3897,7 +3858,7 @@ function isRichTextV1Data(value) {
3897
3858
  return value !== void 0 && typeof value === "object" && !Array.isArray(value) && "document" in value;
3898
3859
  }
3899
3860
  function richTextV2DataToDescendents(data) {
3900
- return data.descendants;
3861
+ return data.descendants.length === 0 ? [{ type: BlockType.Default, children: [{ text: "" }] }] : data.descendants;
3901
3862
  }
3902
3863
  function richTextV2DescendentsToData(descendants, key) {
3903
3864
  return {
@@ -4581,16 +4542,15 @@ var introspection = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineP
4581
4542
  getPageIds
4582
4543
  }, Symbol.toStringTag, { value: "Module" }));
4583
4544
  const reducer = combineReducers({
4584
- documents: reducer$8,
4585
- reactComponents: reducer$7,
4586
- componentsMeta: reducer$9,
4587
- propControllers: reducer$6,
4588
- propControllerHandles: reducer$5,
4589
- isInBuilder: reducer$4,
4590
- isPreview: reducer$3,
4591
- builderEditMode: reducer$2,
4592
- breakpoints: reducer$a,
4593
- locales: reducer$1
4545
+ documents: reducer$7,
4546
+ reactComponents: reducer$6,
4547
+ componentsMeta: reducer$8,
4548
+ propControllers: reducer$5,
4549
+ propControllerHandles: reducer$4,
4550
+ isInBuilder: reducer$3,
4551
+ isPreview: reducer$2,
4552
+ builderEditMode: reducer$1,
4553
+ breakpoints: reducer$9
4594
4554
  });
4595
4555
  function getDocumentsStateSlice(state) {
4596
4556
  return state.documents;
@@ -4766,23 +4726,15 @@ function getBuilderEditMode(state) {
4766
4726
  function getBreakpoints(state) {
4767
4727
  return state.breakpoints;
4768
4728
  }
4769
- function getLocales(state) {
4770
- return state.locales.locales.map((locale) => new Intl.Locale(locale));
4771
- }
4772
- function getDefaultLocale(state) {
4773
- return state.locales.defaultLocale ? new Intl.Locale(state.locales.defaultLocale) : null;
4774
- }
4775
4729
  function configureStore({
4776
4730
  rootElements,
4777
4731
  preloadedState,
4778
- breakpoints,
4779
- locales
4732
+ breakpoints
4780
4733
  } = {}) {
4781
4734
  return createStore(reducer, __spreadProps(__spreadValues({}, preloadedState), {
4782
- documents: getInitialState$7({ rootElements }),
4783
- breakpoints: getInitialState$9(breakpoints != null ? breakpoints : preloadedState == null ? void 0 : preloadedState.breakpoints),
4784
- locales: getInitialState(locales != null ? locales : preloadedState == null ? void 0 : preloadedState.locales)
4735
+ documents: getInitialState$6({ rootElements }),
4736
+ breakpoints: getInitialState$8(breakpoints != null ? breakpoints : preloadedState == null ? void 0 : preloadedState.breakpoints)
4785
4737
  }), applyMiddleware(thunk));
4786
4738
  }
4787
- export { Video as $, TextInput$1 as A, Backgrounds as B, ComponentIcon as C, ResponsiveColor as D, ElementID as E, TextStyle as F, GapY as G, Date as H, Images as I, Font as J, ResponsiveLength as K, Link$1 as L, Margin as M, Number as N, TextArea$1 as O, Padding as P, Table as Q, RichTextPropControllerMessageType as R, Shadows as S, TableFormFieldsMessageType as T, TableFormFields as U, Image$1 as V, Width as W, ResponsiveOpacity as X, NavigationLinks as Y, SocialLinks as Z, RichText as _, copy$9 as a, getListFileIds as a$, useStyle as a0, getBorderSwatchIds as a1, getBoxShadowsSwatchIds as a2, getResponsiveColorSwatchIds as a3, StyleControlProperty as a4, ImageControlValueFormat as a5, isPropControllersHandle as a6, isRichTextV1Data as a7, isNonNullable as a8, TypographyControlType as a9, getElementTreeTranslatableData as aA, parseLocalesInput as aB, getDocument as aC, getElementId as aD, getIsInBuilder as aE, getReactComponent as aF, getBuilderEditMode as aG, getIsPreview as aH, getBackgroundsFileIds as aI, getBackgroundsSwatchIds as aJ, Color as aK, copyColorData as aL, copy as aM, merge as aN, getTranslatableData as aO, unstable_IconRadioGroupIcon as aP, unstable_IconRadioGroup as aQ, Image as aR, copyImageData as aS, Link as aT, copyLinkData as aU, List as aV, ListControlMessageType as aW, ListControl as aX, copyListData as aY, getListElementChildren as aZ, getListSwatchIds as a_, StyleControlType as aa, RichTextV2ControlType as ab, RichTextControlType as ac, SlotControlType as ad, StyleV2ControlType as ae, ListControlType as af, ShapeControlType as ag, LinkControlType as ah, ImageControlType as ai, IconRadioGroupControlType as aj, ColorControlType as ak, SelectControlType as al, TextAreaControlType as am, TextInputControlType as an, getComponentPropControllerDescriptors as ao, getPropControllers as ap, Types as aq, BorderPropControllerFormat as ar, ShadowsPropControllerFormat as as, BorderRadiusPropControllerFormat as at, MarginPropControllerFormat as au, PaddingPropControllerFormat as av, WidthPropControllerFormat as aw, configureStore as ax, copyElementTree as ay, getBreakpoints as az, copy$8 as b, withInline as b$, getListTypographyIds as b0, getListPageIds as b1, getListTranslatableData as b2, Select as b3, Shape as b4, ShapeControlMessageType as b5, ShapeControl as b6, copyShapeData as b7, getShapeElementChildren as b8, getShapeSwatchIds as b9, richTextDAOToDTO as bA, RichTextV2Mode as bB, RichTextV2ControlMessageType as bC, RichTextV2Control as bD, richTextV2DataToDescendents as bE, richTextV2DescendentsToData as bF, createRichTextV2Plugin as bG, unstable_Typography as bH, getTypographySwatchIds as bI, getTypographyTypographyIds as bJ, TypographyActions as bK, TYPOGRAPHY_KEY as bL, withTypography as bM, TypographyPlugin as bN, BlockActions as bO, ListActions as bP, onKeyDown as bQ, withBlock as bR, BlockPlugin as bS, withInlineMode as bT, InlineModePlugin as bU, withTextAlign as bV, TextAlignPlugin as bW, RootBlockType as bX, BlockType as bY, InlineType as bZ, BlockTextAlignment as b_, getShapeTypographyIds as ba, getShapePageIds as bb, getShapeFileIds as bc, getShapeTranslatableData as bd, Slot as be, SlotControlMessageType as bf, SlotControl as bg, copySlotData as bh, mergeSlotData as bi, Style as bj, StyleControlMessageType as bk, StyleControl as bl, copyStyleData as bm, unstable_useStyleV2ClassName as bn, unstable_StyleV2 as bo, StyleV2ControlMessageType as bp, StyleV2Control as bq, TextArea as br, TextInput as bs, copyRichTextData as bt, ObjectType as bu, RichTextControlMessageType as bv, RichTextControl as bw, richTextDTOtoSelection as bx, richTextDTOtoDAO as by, toSelectionDTO as bz, createDocument as c, InlinePlugin as c0, ElementUtils as c1, onChange$1 as c2, getValue$3 as c3, isLinkElement as c4, getInitialState$7 as c5, reducer$8 as c6, getDocument$1 as c7, getComponentsMeta as c8, getComponentPropControllerDescriptors$1 as c9, BuilderEditMode as ca, getDocumentKeysSortedByDepth as cb, getPropController as cc, getPropControllersHandle as cd, getElement as ce, getElementPropControllerDescriptors as cf, createPropController as cg, reducer$7 as ch, reducer$9 as ci, reducer$6 as cj, reducer$5 as ck, reducer$4 as cl, reducer$3 as cm, reducer$2 as cn, reducer$1 as co, getInitialState$2 as cp, descriptors as d, copy$e as e, deepEqual as f, createDocumentReference as g, getPropControllerDescriptors as h, introspection as i, isElementReference as j, getDefaultLocale as k, getLocales as l, getSwatchIds as m, getFileIds as n, getTypographyIds as o, getTableIds as p, getPageIds as q, getElementChildren as r, ResponsiveIconRadioGroup as s, Border as t, BorderRadius as u, GapX as v, ResponsiveSelect as w, ResponsiveNumber as x, Checkbox as y, Grid as z };
4739
+ export { getBorderSwatchIds as $, TextStyle as A, Backgrounds as B, ComponentIcon as C, Date as D, ElementID as E, Font as F, GapY as G, ResponsiveLength as H, Images as I, TextArea$1 as J, Table as K, Link$1 as L, Margin as M, Number as N, TableFormFields as O, Padding as P, Image$1 as Q, RichTextPropControllerMessageType as R, Shadows as S, TableFormFieldsMessageType as T, ResponsiveOpacity as U, NavigationLinks as V, Width as W, SocialLinks as X, RichText as Y, Video as Z, useStyle as _, copy$9 as a, getListTranslatableData as a$, getBoxShadowsSwatchIds as a0, getResponsiveColorSwatchIds as a1, StyleControlProperty as a2, ImageControlValueFormat as a3, isPropControllersHandle as a4, isRichTextV1Data as a5, isNonNullable as a6, TypographyControlType as a7, StyleControlType as a8, RichTextV2ControlType as a9, getElementId as aA, getIsInBuilder as aB, getReactComponent as aC, getBuilderEditMode as aD, getIsPreview as aE, getBackgroundsFileIds as aF, getBackgroundsSwatchIds as aG, Color as aH, copyColorData as aI, copy as aJ, merge as aK, getTranslatableData as aL, unstable_IconRadioGroupIcon as aM, unstable_IconRadioGroup as aN, Image as aO, copyImageData as aP, Link as aQ, copyLinkData as aR, List as aS, ListControlMessageType as aT, ListControl as aU, copyListData as aV, getListElementChildren as aW, getListSwatchIds as aX, getListFileIds as aY, getListTypographyIds as aZ, getListPageIds as a_, RichTextControlType as aa, SlotControlType as ab, StyleV2ControlType as ac, ListControlType as ad, ShapeControlType as ae, LinkControlType as af, ImageControlType as ag, IconRadioGroupControlType as ah, ColorControlType as ai, SelectControlType as aj, TextAreaControlType as ak, TextInputControlType as al, getComponentPropControllerDescriptors as am, getPropControllers as an, Types as ao, BorderPropControllerFormat as ap, ShadowsPropControllerFormat as aq, BorderRadiusPropControllerFormat as ar, MarginPropControllerFormat as as, PaddingPropControllerFormat as at, WidthPropControllerFormat as au, configureStore as av, copyElementTree as aw, getBreakpoints as ax, getElementTreeTranslatableData as ay, getDocument as az, copy$8 as b, onChange$1 as b$, Select as b0, Shape as b1, ShapeControlMessageType as b2, ShapeControl as b3, copyShapeData as b4, getShapeElementChildren as b5, getShapeSwatchIds as b6, getShapeTypographyIds as b7, getShapePageIds as b8, getShapeFileIds as b9, RichTextV2Control as bA, richTextV2DataToDescendents as bB, richTextV2DescendentsToData as bC, createRichTextV2Plugin as bD, unstable_Typography as bE, getTypographySwatchIds as bF, getTypographyTypographyIds as bG, TypographyActions as bH, TYPOGRAPHY_KEY as bI, withTypography as bJ, TypographyPlugin as bK, BlockActions as bL, ListActions as bM, onKeyDown as bN, withBlock as bO, BlockPlugin as bP, withInlineMode as bQ, InlineModePlugin as bR, withTextAlign as bS, TextAlignPlugin as bT, RootBlockType as bU, BlockType as bV, InlineType as bW, BlockTextAlignment as bX, withInline as bY, InlinePlugin as bZ, ElementUtils as b_, getShapeTranslatableData as ba, Slot as bb, SlotControlMessageType as bc, SlotControl as bd, copySlotData as be, mergeSlotData as bf, Style as bg, StyleControlMessageType as bh, StyleControl as bi, copyStyleData as bj, unstable_useStyleV2ClassName as bk, unstable_StyleV2 as bl, StyleV2ControlMessageType as bm, StyleV2Control as bn, TextArea as bo, TextInput as bp, copyRichTextData as bq, ObjectType as br, RichTextControlMessageType as bs, RichTextControl as bt, richTextDTOtoSelection as bu, richTextDTOtoDAO as bv, toSelectionDTO as bw, richTextDAOToDTO as bx, RichTextV2Mode as by, RichTextV2ControlMessageType as bz, createDocument as c, getValue$3 as c0, isLinkElement as c1, getInitialState$6 as c2, reducer$7 as c3, getDocument$1 as c4, getComponentsMeta as c5, getComponentPropControllerDescriptors$1 as c6, BuilderEditMode as c7, getDocumentKeysSortedByDepth as c8, getPropController as c9, getPropControllersHandle as ca, getElement as cb, getElementPropControllerDescriptors as cc, createPropController as cd, reducer$6 as ce, reducer$8 as cf, reducer$5 as cg, reducer$4 as ch, reducer$3 as ci, reducer$2 as cj, reducer$1 as ck, getInitialState$1 as cl, descriptors as d, copy$e as e, deepEqual as f, createDocumentReference as g, getPropControllerDescriptors as h, introspection as i, isElementReference as j, getSwatchIds as k, getFileIds as l, getTypographyIds as m, getTableIds as n, getPageIds as o, getElementChildren as p, ResponsiveIconRadioGroup as q, Border as r, BorderRadius as s, GapX as t, ResponsiveSelect as u, ResponsiveNumber as v, Checkbox as w, Grid as x, TextInput$1 as y, ResponsiveColor as z };
4788
4740
  //# sourceMappingURL=react-page.es.js.map