@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.
- package/dist/Box.es.js +1 -1
- package/dist/Button.es.js +1 -1
- package/dist/Carousel.es.js +1 -1
- package/dist/Countdown.es.js +1 -1
- package/dist/Divider.es.js +1 -1
- package/dist/Embed.es.js +1 -1
- package/dist/Form.es.js +1 -1
- package/dist/Image.es.js +1 -1
- package/dist/LiveProvider.es.js +1 -1
- package/dist/Navigation.es.js +1 -1
- package/dist/PreviewProvider.cjs.js +8 -11
- package/dist/PreviewProvider.cjs.js.map +1 -1
- package/dist/PreviewProvider.es.js +10 -13
- package/dist/PreviewProvider.es.js.map +1 -1
- package/dist/ReadOnlyText.es.js +1 -1
- package/dist/ReadOnlyTextV2.es.js +1 -1
- package/dist/Root.es.js +1 -1
- package/dist/SocialLinks.es.js +1 -1
- package/dist/Video.es.js +1 -1
- package/dist/actions.cjs.js +8 -14
- package/dist/actions.cjs.js.map +1 -1
- package/dist/actions.es.js +8 -12
- package/dist/actions.es.js.map +1 -1
- package/dist/control-serialization.es.js +1 -1
- package/dist/controls.es.js +1 -1
- package/dist/index.cjs.js +18 -19
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +20 -21
- package/dist/index.es.js.map +1 -1
- package/dist/index.es2.js +1 -1
- package/dist/index.es4.js +1 -1
- package/dist/index.es5.js +1 -1
- package/dist/index.es6.js +1 -1
- package/dist/index.es8.js +1 -1
- package/dist/index.es9.js +1 -1
- package/dist/main.cjs.js +1 -1
- package/dist/main.es.js +1 -1
- package/dist/react-page.cjs.js +42 -94
- package/dist/react-page.cjs.js.map +1 -1
- package/dist/react-page.es.js +35 -83
- package/dist/react-page.es.js.map +1 -1
- package/dist/slate.es.js +1 -1
- package/dist/toText.es.js +1 -1
- package/dist/types/src/api/react.d.ts +4 -1
- package/dist/types/src/api/react.d.ts.map +1 -1
- package/dist/types/src/controls/rich-text/translation.d.ts.map +1 -1
- package/dist/types/src/controls/rich-text-v2/translation.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +1 -1
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/next/client.d.ts +3 -2
- package/dist/types/src/next/client.d.ts.map +1 -1
- package/dist/types/src/runtimes/react/index.d.ts +1 -3
- package/dist/types/src/runtimes/react/index.d.ts.map +1 -1
- package/dist/types/src/state/actions.d.ts +10 -14
- package/dist/types/src/state/actions.d.ts.map +1 -1
- package/dist/types/src/state/react-builder-preview.d.ts +1 -3
- package/dist/types/src/state/react-builder-preview.d.ts.map +1 -1
- package/dist/types/src/state/react-page.d.ts +1 -7
- package/dist/types/src/state/react-page.d.ts.map +1 -1
- package/dist/types/types/locale.d.ts +1 -1
- package/package.json +1 -1
- package/dist/types/src/state/modules/locales.d.ts +0 -15
- package/dist/types/src/state/modules/locales.d.ts.map +0 -1
package/dist/react-page.es.js
CHANGED
|
@@ -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
|
|
41
|
-
import { findBreakpointOverride, reducer as reducer$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
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$
|
|
238
|
+
function getInitialState$2() {
|
|
239
239
|
return false;
|
|
240
240
|
}
|
|
241
|
-
function reducer$
|
|
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$
|
|
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$
|
|
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
|
|
266
|
+
function getInitialState() {
|
|
267
267
|
return null;
|
|
268
268
|
}
|
|
269
|
-
function reducer$
|
|
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$
|
|
4585
|
-
reactComponents: reducer$
|
|
4586
|
-
componentsMeta: reducer$
|
|
4587
|
-
propControllers: reducer$
|
|
4588
|
-
propControllerHandles: reducer$
|
|
4589
|
-
isInBuilder: reducer$
|
|
4590
|
-
isPreview: reducer$
|
|
4591
|
-
builderEditMode: reducer$
|
|
4592
|
-
breakpoints: reducer$
|
|
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$
|
|
4783
|
-
breakpoints: getInitialState$
|
|
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 {
|
|
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
|