@makeswift/runtime 0.10.12 → 0.10.13
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.cjs.js +1 -1
- package/dist/Box.es.js +2 -2
- package/dist/Button.cjs.js +1 -1
- package/dist/Button.es.js +2 -2
- package/dist/Carousel.cjs.js +1 -1
- package/dist/Carousel.es.js +2 -2
- package/dist/Countdown.cjs.js +1 -1
- package/dist/Countdown.es.js +2 -2
- package/dist/Divider.cjs.js +1 -1
- package/dist/Divider.es.js +2 -2
- package/dist/Embed.es.js +1 -1
- package/dist/Form.cjs.js +1 -1
- package/dist/Form.es.js +2 -2
- package/dist/Image.cjs.js +1 -1
- package/dist/Image.es.js +2 -2
- package/dist/LiveProvider.cjs.js +1 -1
- package/dist/LiveProvider.es.js +2 -2
- package/dist/Navigation.cjs.js +1 -1
- package/dist/Navigation.es.js +2 -2
- package/dist/PreviewProvider.cjs.js +1 -1
- package/dist/PreviewProvider.es.js +2 -2
- package/dist/ReadOnlyText.cjs.js +1 -1
- package/dist/ReadOnlyText.es.js +2 -2
- package/dist/ReadOnlyTextV2.cjs.js +1 -1
- package/dist/ReadOnlyTextV2.es.js +2 -2
- package/dist/Root.cjs.js +1 -1
- package/dist/Root.es.js +2 -2
- package/dist/SocialLinks.cjs.js +1 -1
- package/dist/SocialLinks.es.js +2 -2
- package/dist/Video.es.js +1 -1
- package/dist/components.cjs.js +1 -1
- package/dist/components.es.js +1 -1
- package/dist/control-serialization.es.js +1 -1
- package/dist/controls.cjs.js +13 -10
- package/dist/controls.cjs.js.map +1 -1
- package/dist/controls.es.js +2 -2
- package/dist/index.cjs.js +29 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs8.js +1 -1
- package/dist/index.cjs9.js +1 -1
- package/dist/index.es.js +22 -3
- 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 +2 -2
- package/dist/index.es9.js +2 -2
- package/dist/next.cjs.js +1 -1
- package/dist/next.es.js +1 -1
- package/dist/number.cjs.js +14 -0
- package/dist/number.cjs.js.map +1 -0
- package/dist/number.es.js +10 -0
- package/dist/number.es.js.map +1 -0
- package/dist/prop-controllers.cjs.js +1 -0
- package/dist/prop-controllers.cjs.js.map +1 -1
- package/dist/prop-controllers.es.js +1 -1
- package/dist/react-page.cjs.js +94 -16
- package/dist/react-page.cjs.js.map +1 -1
- package/dist/react-page.es.js +83 -14
- package/dist/react-page.es.js.map +1 -1
- package/dist/react.cjs.js +1 -1
- package/dist/react.es.js +1 -1
- package/dist/slate.cjs.js +1 -1
- package/dist/slate.es.js +2 -2
- package/dist/toText.es.js +1 -1
- package/dist/types/src/controls/control.d.ts +1 -0
- package/dist/types/src/controls/control.d.ts.map +1 -1
- package/dist/types/src/controls/list.d.ts +3 -0
- package/dist/types/src/controls/list.d.ts.map +1 -1
- package/dist/types/src/controls/shape.d.ts +3 -0
- package/dist/types/src/controls/shape.d.ts.map +1 -1
- package/dist/types/src/next/api-handler/handlers/translatable-data.d.ts +13 -0
- package/dist/types/src/next/api-handler/handlers/translatable-data.d.ts.map +1 -0
- package/dist/types/src/next/api-handler/index.d.ts +2 -1
- package/dist/types/src/next/api-handler/index.d.ts.map +1 -1
- package/dist/types/src/next/client.d.ts +2 -1
- package/dist/types/src/next/client.d.ts.map +1 -1
- package/dist/types/src/prop-controllers/copy/images.d.ts +2 -2
- package/dist/types/src/prop-controllers/copy/images.d.ts.map +1 -1
- package/dist/types/src/prop-controllers/descriptors.d.ts +16 -4
- package/dist/types/src/prop-controllers/descriptors.d.ts.map +1 -1
- package/dist/types/src/prop-controllers/index.d.ts +2 -1
- package/dist/types/src/prop-controllers/index.d.ts.map +1 -1
- package/dist/types/src/prop-controllers/introspection.d.ts.map +1 -1
- package/dist/types/src/runtimes/react/index.d.ts +2 -0
- package/dist/types/src/runtimes/react/index.d.ts.map +1 -1
- package/dist/types/src/state/react-page.d.ts +1 -0
- package/dist/types/src/state/react-page.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/text-input.cjs.js +0 -26
- package/dist/text-input.cjs.js.map +0 -1
- package/dist/text-input.es.js +0 -18
- package/dist/text-input.es.js.map +0 -1
package/dist/Box.cjs.js
CHANGED
|
@@ -43,7 +43,7 @@ require("use-sync-external-store/shim/with-selector");
|
|
|
43
43
|
require("next/dynamic");
|
|
44
44
|
require("./actions.cjs.js");
|
|
45
45
|
require("zod");
|
|
46
|
-
require("./
|
|
46
|
+
require("./number.cjs.js");
|
|
47
47
|
require("./combobox.cjs.js");
|
|
48
48
|
require("slate");
|
|
49
49
|
require("ts-pattern");
|
package/dist/Box.es.js
CHANGED
|
@@ -33,7 +33,7 @@ import { forwardRef, useRef, useCallback, useImperativeHandle, useState, useEffe
|
|
|
33
33
|
import { cx } from "@emotion/css";
|
|
34
34
|
import { v4 } from "uuid";
|
|
35
35
|
import { n as useResponsiveStyle, E as Element } from "./index.es.js";
|
|
36
|
-
import {
|
|
36
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
37
37
|
import { jsx } from "react/jsx-runtime";
|
|
38
38
|
import { a as useBoxAnimation, b as areBoxAnimationPropsEqual, B as BackgroundsContainer, G as GridItem } from "./index.es2.js";
|
|
39
39
|
import { p as parse, c as createBox } from "./box-models.es.js";
|
|
@@ -41,7 +41,7 @@ import "use-sync-external-store/shim/with-selector";
|
|
|
41
41
|
import "next/dynamic";
|
|
42
42
|
import "./actions.es.js";
|
|
43
43
|
import "zod";
|
|
44
|
-
import "./
|
|
44
|
+
import "./number.es.js";
|
|
45
45
|
import "./combobox.es.js";
|
|
46
46
|
import "slate";
|
|
47
47
|
import "ts-pattern";
|
package/dist/Button.cjs.js
CHANGED
|
@@ -42,7 +42,7 @@ require("use-sync-external-store/shim/with-selector");
|
|
|
42
42
|
require("next/dynamic");
|
|
43
43
|
require("./actions.cjs.js");
|
|
44
44
|
require("zod");
|
|
45
|
-
require("./
|
|
45
|
+
require("./number.cjs.js");
|
|
46
46
|
require("./combobox.cjs.js");
|
|
47
47
|
require("uuid");
|
|
48
48
|
require("slate");
|
package/dist/Button.es.js
CHANGED
|
@@ -33,14 +33,14 @@ import { forwardRef } from "react";
|
|
|
33
33
|
import ColorHelper from "color";
|
|
34
34
|
import { o as useResponsiveWidth, n as useResponsiveStyle, p as useResponsiveTextStyle, q as colorToString } from "./index.es.js";
|
|
35
35
|
import { L as Link } from "./index.es3.js";
|
|
36
|
-
import {
|
|
36
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
37
37
|
import { cx } from "@emotion/css";
|
|
38
38
|
import { jsx } from "react/jsx-runtime";
|
|
39
39
|
import "use-sync-external-store/shim/with-selector";
|
|
40
40
|
import "next/dynamic";
|
|
41
41
|
import "./actions.es.js";
|
|
42
42
|
import "zod";
|
|
43
|
-
import "./
|
|
43
|
+
import "./number.es.js";
|
|
44
44
|
import "./combobox.es.js";
|
|
45
45
|
import "uuid";
|
|
46
46
|
import "slate";
|
package/dist/Carousel.cjs.js
CHANGED
|
@@ -49,7 +49,7 @@ var state_breakpoints = require("./state/breakpoints.cjs.js");
|
|
|
49
49
|
var jsxRuntime = require("react/jsx-runtime");
|
|
50
50
|
require("use-sync-external-store/shim/with-selector");
|
|
51
51
|
require("next/dynamic");
|
|
52
|
-
require("./
|
|
52
|
+
require("./number.cjs.js");
|
|
53
53
|
require("./combobox.cjs.js");
|
|
54
54
|
require("redux");
|
|
55
55
|
require("redux-thunk");
|
package/dist/Carousel.es.js
CHANGED
|
@@ -35,7 +35,7 @@ import { useGesture } from "@use-gesture/react";
|
|
|
35
35
|
import { wrap } from "@popmotion/popcorn";
|
|
36
36
|
import { r as useBreakpoints, n as useResponsiveStyle, q as colorToString } from "./index.es.js";
|
|
37
37
|
import "use-sync-external-store/shim";
|
|
38
|
-
import {
|
|
38
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
39
39
|
import "./actions.es.js";
|
|
40
40
|
import "uuid";
|
|
41
41
|
import "slate";
|
|
@@ -47,7 +47,7 @@ import { getBaseBreakpoint } from "./state/breakpoints.es.js";
|
|
|
47
47
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
48
48
|
import "use-sync-external-store/shim/with-selector";
|
|
49
49
|
import "next/dynamic";
|
|
50
|
-
import "./
|
|
50
|
+
import "./number.es.js";
|
|
51
51
|
import "./combobox.es.js";
|
|
52
52
|
import "redux";
|
|
53
53
|
import "redux-thunk";
|
package/dist/Countdown.cjs.js
CHANGED
|
@@ -50,7 +50,7 @@ require("@emotion/utils");
|
|
|
50
50
|
require("is-hotkey");
|
|
51
51
|
require("use-sync-external-store/shim/with-selector");
|
|
52
52
|
require("next/dynamic");
|
|
53
|
-
require("./
|
|
53
|
+
require("./number.cjs.js");
|
|
54
54
|
require("./combobox.cjs.js");
|
|
55
55
|
require("use-sync-external-store/shim");
|
|
56
56
|
require("./types.cjs.js");
|
package/dist/Countdown.es.js
CHANGED
|
@@ -31,7 +31,7 @@ var __objRest = (source, exclude) => {
|
|
|
31
31
|
};
|
|
32
32
|
import { cx } from "@emotion/css";
|
|
33
33
|
import { forwardRef, useState, useEffect } from "react";
|
|
34
|
-
import {
|
|
34
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
35
35
|
import { n as useResponsiveStyle, q as colorToString } from "./index.es.js";
|
|
36
36
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
37
37
|
import "redux";
|
|
@@ -48,7 +48,7 @@ import "@emotion/utils";
|
|
|
48
48
|
import "is-hotkey";
|
|
49
49
|
import "use-sync-external-store/shim/with-selector";
|
|
50
50
|
import "next/dynamic";
|
|
51
|
-
import "./
|
|
51
|
+
import "./number.es.js";
|
|
52
52
|
import "./combobox.es.js";
|
|
53
53
|
import "use-sync-external-store/shim";
|
|
54
54
|
import "./types.es.js";
|
package/dist/Divider.cjs.js
CHANGED
|
@@ -9,7 +9,7 @@ require("use-sync-external-store/shim/with-selector");
|
|
|
9
9
|
require("next/dynamic");
|
|
10
10
|
require("./actions.cjs.js");
|
|
11
11
|
require("zod");
|
|
12
|
-
require("./
|
|
12
|
+
require("./number.cjs.js");
|
|
13
13
|
require("./combobox.cjs.js");
|
|
14
14
|
require("uuid");
|
|
15
15
|
require("slate");
|
package/dist/Divider.es.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { forwardRef } from "react";
|
|
2
2
|
import { n as useResponsiveStyle, q as colorToString } from "./index.es.js";
|
|
3
|
-
import {
|
|
3
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
4
4
|
import { cx } from "@emotion/css";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
import "use-sync-external-store/shim/with-selector";
|
|
7
7
|
import "next/dynamic";
|
|
8
8
|
import "./actions.es.js";
|
|
9
9
|
import "zod";
|
|
10
|
-
import "./
|
|
10
|
+
import "./number.es.js";
|
|
11
11
|
import "./combobox.es.js";
|
|
12
12
|
import "uuid";
|
|
13
13
|
import "slate";
|
package/dist/Embed.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { forwardRef, useState, useImperativeHandle, useEffect } from "react";
|
|
2
2
|
import { u as useIsomorphicLayoutEffect } from "./useIsomorphicLayoutEffect.es.js";
|
|
3
|
-
import {
|
|
3
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
4
4
|
import { cx } from "@emotion/css";
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
6
|
import "redux";
|
package/dist/Form.cjs.js
CHANGED
|
@@ -55,7 +55,7 @@ require("@emotion/utils");
|
|
|
55
55
|
require("is-hotkey");
|
|
56
56
|
require("use-sync-external-store/shim/with-selector");
|
|
57
57
|
require("next/dynamic");
|
|
58
|
-
require("./
|
|
58
|
+
require("./number.cjs.js");
|
|
59
59
|
require("./combobox.cjs.js");
|
|
60
60
|
require("use-sync-external-store/shim");
|
|
61
61
|
require("./types.cjs.js");
|
package/dist/Form.es.js
CHANGED
|
@@ -33,7 +33,7 @@ import * as React from "react";
|
|
|
33
33
|
import { forwardRef, useRef, useImperativeHandle, useState, useEffect, useMemo } from "react";
|
|
34
34
|
import { Field as Field$1, getIn, Formik } from "formik";
|
|
35
35
|
import { cx, keyframes } from "@emotion/css";
|
|
36
|
-
import {
|
|
36
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
37
37
|
import { n as useResponsiveStyle, S as Shapes, s as Sizes, C as Contrasts, q as colorToString, t as useFormContext, p as useResponsiveTextStyle, u as useIsInBuilder, v as useResponsiveGridItem, w as useTable, x as useMakeswiftClient, y as Provider, A as Alignments } from "./index.es.js";
|
|
38
38
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
39
39
|
import ColorHelper from "color";
|
|
@@ -54,7 +54,7 @@ import "@emotion/utils";
|
|
|
54
54
|
import "is-hotkey";
|
|
55
55
|
import "use-sync-external-store/shim/with-selector";
|
|
56
56
|
import "next/dynamic";
|
|
57
|
-
import "./
|
|
57
|
+
import "./number.es.js";
|
|
58
58
|
import "./combobox.es.js";
|
|
59
59
|
import "use-sync-external-store/shim";
|
|
60
60
|
import "./types.es.js";
|
package/dist/Image.cjs.js
CHANGED
|
@@ -25,7 +25,7 @@ require("@emotion/utils");
|
|
|
25
25
|
require("is-hotkey");
|
|
26
26
|
require("use-sync-external-store/shim/with-selector");
|
|
27
27
|
require("next/dynamic");
|
|
28
|
-
require("./
|
|
28
|
+
require("./number.cjs.js");
|
|
29
29
|
require("./combobox.cjs.js");
|
|
30
30
|
require("use-sync-external-store/shim");
|
|
31
31
|
require("./types.cjs.js");
|
package/dist/Image.es.js
CHANGED
|
@@ -4,7 +4,7 @@ import { findBreakpointOverride } from "./state/breakpoints.es.js";
|
|
|
4
4
|
import { p as placeholders } from "./placeholders.es.js";
|
|
5
5
|
import { L as Link } from "./index.es3.js";
|
|
6
6
|
import { cx } from "@emotion/css";
|
|
7
|
-
import {
|
|
7
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
8
8
|
import { z as useFile, r as useBreakpoints, o as useResponsiveWidth, n as useResponsiveStyle } from "./index.es.js";
|
|
9
9
|
import { m as major } from "./next-version.es.js";
|
|
10
10
|
import { match, P } from "ts-pattern";
|
|
@@ -23,7 +23,7 @@ import "@emotion/utils";
|
|
|
23
23
|
import "is-hotkey";
|
|
24
24
|
import "use-sync-external-store/shim/with-selector";
|
|
25
25
|
import "next/dynamic";
|
|
26
|
-
import "./
|
|
26
|
+
import "./number.es.js";
|
|
27
27
|
import "./combobox.es.js";
|
|
28
28
|
import "use-sync-external-store/shim";
|
|
29
29
|
import "./types.es.js";
|
package/dist/LiveProvider.cjs.js
CHANGED
|
@@ -8,7 +8,7 @@ require("use-sync-external-store/shim/with-selector");
|
|
|
8
8
|
require("next/dynamic");
|
|
9
9
|
require("./actions.cjs.js");
|
|
10
10
|
require("zod");
|
|
11
|
-
require("./
|
|
11
|
+
require("./number.cjs.js");
|
|
12
12
|
require("./combobox.cjs.js");
|
|
13
13
|
require("uuid");
|
|
14
14
|
require("slate");
|
package/dist/LiveProvider.es.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { useMemo } from "react";
|
|
2
2
|
import { a as ReactRuntime, K as StoreContext, M as MakeswiftProvider } from "./index.es.js";
|
|
3
|
-
import {
|
|
3
|
+
import { aw as configureStore } from "./react-page.es.js";
|
|
4
4
|
import { jsx } from "react/jsx-runtime";
|
|
5
5
|
import "use-sync-external-store/shim/with-selector";
|
|
6
6
|
import "next/dynamic";
|
|
7
7
|
import "./actions.es.js";
|
|
8
8
|
import "zod";
|
|
9
|
-
import "./
|
|
9
|
+
import "./number.es.js";
|
|
10
10
|
import "./combobox.es.js";
|
|
11
11
|
import "uuid";
|
|
12
12
|
import "slate";
|
package/dist/Navigation.cjs.js
CHANGED
|
@@ -62,7 +62,7 @@ require("@emotion/utils");
|
|
|
62
62
|
require("is-hotkey");
|
|
63
63
|
require("use-sync-external-store/shim/with-selector");
|
|
64
64
|
require("next/dynamic");
|
|
65
|
-
require("./
|
|
65
|
+
require("./number.cjs.js");
|
|
66
66
|
require("./combobox.cjs.js");
|
|
67
67
|
require("./types.cjs.js");
|
|
68
68
|
require("./box-models.cjs.js");
|
package/dist/Navigation.es.js
CHANGED
|
@@ -34,7 +34,7 @@ import { forwardRef, useRef, useState, createElement, Fragment as Fragment$1 } f
|
|
|
34
34
|
import { G as GutterContainer } from "./index.es4.js";
|
|
35
35
|
import ImageComponent from "./Image.es.js";
|
|
36
36
|
import Button from "./Button.es.js";
|
|
37
|
-
import {
|
|
37
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
38
38
|
import { jsx, Fragment, jsxs } from "react/jsx-runtime";
|
|
39
39
|
import { l as useResponsiveColor, p as useResponsiveTextStyle, n as useResponsiveStyle, q as colorToString } from "./index.es.js";
|
|
40
40
|
import "use-sync-external-store/shim";
|
|
@@ -61,7 +61,7 @@ import "@emotion/utils";
|
|
|
61
61
|
import "is-hotkey";
|
|
62
62
|
import "use-sync-external-store/shim/with-selector";
|
|
63
63
|
import "next/dynamic";
|
|
64
|
-
import "./
|
|
64
|
+
import "./number.es.js";
|
|
65
65
|
import "./combobox.es.js";
|
|
66
66
|
import "./types.es.js";
|
|
67
67
|
import "./box-models.es.js";
|
|
@@ -33,7 +33,7 @@ var controlSerialization = require("./control-serialization.cjs.js");
|
|
|
33
33
|
var jsxRuntime = require("react/jsx-runtime");
|
|
34
34
|
require("use-sync-external-store/shim/with-selector");
|
|
35
35
|
require("next/dynamic");
|
|
36
|
-
require("./
|
|
36
|
+
require("./number.cjs.js");
|
|
37
37
|
require("./combobox.cjs.js");
|
|
38
38
|
require("uuid");
|
|
39
39
|
require("slate");
|
|
@@ -23,7 +23,7 @@ import { J as ElementImperativeHandle, a as ReactRuntime, K as StoreContext, M a
|
|
|
23
23
|
import { createStore, applyMiddleware, combineReducers } from "redux";
|
|
24
24
|
import thunk from "redux-thunk";
|
|
25
25
|
import Router from "next/router";
|
|
26
|
-
import {
|
|
26
|
+
import { c4 as getInitialState$3, c5 as reducer$4, c6 as getDocument$1, c as createDocument, c7 as getComponentsMeta$1, c8 as getComponentPropControllerDescriptors$1, ay as getBreakpoints, k as getLocales, j as getDefaultLocale, e as deepEqual, aF as getBuilderEditMode, c9 as BuilderEditMode, ca as getDocumentKeysSortedByDepth, cb as getPropController, cc as getPropControllersHandle, cd as getElement, ce as getElementPropControllerDescriptors, cf as createPropController, h as isElementReference, a5 as isPropControllersHandle, cg as reducer$5, ch as reducer$7, ci as reducer$8, cj as reducer$9, ck as reducer$a, cl as reducer$b, cm as reducer$c, cn as reducer$e, co as getInitialState$4 } from "./react-page.es.js";
|
|
27
27
|
import { removeIn, setIn } from "immutable";
|
|
28
28
|
import { A as ActionTypes, w as unregisterMeasurable, x as registerMeasurable, y as registerBuilderComponent, j as setBreakpoints, l as setLocales, z as setDefaultLocale, k as setLocale, B as changePathnameStart, C as changePathnameComplete, D as changeElementBoxModels, E as changeDocumentElementSize, F as handleWheel, G as handlePointerMove, H as elementFromPointChange, I as setIsInBuilder, J as unregisterBuilderComponent, K as unregisterPropControllers, L as registerPropControllers, M as registerPropControllersHandle, r as registerDocument, N as registerComponentHandle, O as messageBuilderPropController, P as registerDocumentEffect } from "./actions.es.js";
|
|
29
29
|
import { i as isMeasurable, a as getMeasurables$1, b as getBoxModels$1, m as measure, d as getBoxModel$1, r as reducer$6 } from "./box-models.es.js";
|
|
@@ -32,7 +32,7 @@ import { a as serializeControls } from "./control-serialization.es.js";
|
|
|
32
32
|
import { jsx } from "react/jsx-runtime";
|
|
33
33
|
import "use-sync-external-store/shim/with-selector";
|
|
34
34
|
import "next/dynamic";
|
|
35
|
-
import "./
|
|
35
|
+
import "./number.es.js";
|
|
36
36
|
import "./combobox.es.js";
|
|
37
37
|
import "uuid";
|
|
38
38
|
import "slate";
|
package/dist/ReadOnlyText.cjs.js
CHANGED
|
@@ -15,7 +15,7 @@ require("slate-react");
|
|
|
15
15
|
var index = require("./index.cjs3.js");
|
|
16
16
|
require("use-sync-external-store/shim/with-selector");
|
|
17
17
|
require("next/dynamic");
|
|
18
|
-
require("./
|
|
18
|
+
require("./number.cjs.js");
|
|
19
19
|
require("./combobox.cjs.js");
|
|
20
20
|
require("use-sync-external-store/shim");
|
|
21
21
|
require("redux");
|
package/dist/ReadOnlyText.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { cx } from "@emotion/css";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import { L as useEnhancedTypography, N as useTypographyClassName, n as useResponsiveStyle } from "./index.es.js";
|
|
4
|
-
import {
|
|
4
|
+
import { bx as richTextDTOtoDAO, $ as useStyle, bX as BlockType, bY as InlineType } from "./react-page.es.js";
|
|
5
5
|
import "./actions.es.js";
|
|
6
6
|
import "slate";
|
|
7
7
|
import "ts-pattern";
|
|
@@ -13,7 +13,7 @@ import "slate-react";
|
|
|
13
13
|
import { L as Link } from "./index.es3.js";
|
|
14
14
|
import "use-sync-external-store/shim/with-selector";
|
|
15
15
|
import "next/dynamic";
|
|
16
|
-
import "./
|
|
16
|
+
import "./number.es.js";
|
|
17
17
|
import "./combobox.es.js";
|
|
18
18
|
import "use-sync-external-store/shim";
|
|
19
19
|
import "redux";
|
|
@@ -40,7 +40,7 @@ require("scroll-into-view-if-needed");
|
|
|
40
40
|
require("next/link");
|
|
41
41
|
require("use-sync-external-store/shim/with-selector");
|
|
42
42
|
require("next/dynamic");
|
|
43
|
-
require("./
|
|
43
|
+
require("./number.cjs.js");
|
|
44
44
|
require("./combobox.cjs.js");
|
|
45
45
|
require("use-sync-external-store/shim");
|
|
46
46
|
require("./types.cjs.js");
|
|
@@ -14,7 +14,7 @@ var __objRest = (source, exclude) => {
|
|
|
14
14
|
return target;
|
|
15
15
|
};
|
|
16
16
|
import { forwardRef } from "react";
|
|
17
|
-
import {
|
|
17
|
+
import { bA as RichTextV2Mode, bT as InlineModePlugin, bR as BlockPlugin, bM as TypographyPlugin, bV as TextAlignPlugin, b$ as InlinePlugin, $ as useStyle } from "./react-page.es.js";
|
|
18
18
|
import "./actions.es.js";
|
|
19
19
|
import "slate";
|
|
20
20
|
import "ts-pattern";
|
|
@@ -38,7 +38,7 @@ import "scroll-into-view-if-needed";
|
|
|
38
38
|
import "next/link";
|
|
39
39
|
import "use-sync-external-store/shim/with-selector";
|
|
40
40
|
import "next/dynamic";
|
|
41
|
-
import "./
|
|
41
|
+
import "./number.es.js";
|
|
42
42
|
import "./combobox.es.js";
|
|
43
43
|
import "use-sync-external-store/shim";
|
|
44
44
|
import "./types.es.js";
|
package/dist/Root.cjs.js
CHANGED
|
@@ -22,7 +22,7 @@ require("uuid");
|
|
|
22
22
|
require("is-hotkey");
|
|
23
23
|
require("use-sync-external-store/shim/with-selector");
|
|
24
24
|
require("next/dynamic");
|
|
25
|
-
require("./
|
|
25
|
+
require("./number.cjs.js");
|
|
26
26
|
require("./combobox.cjs.js");
|
|
27
27
|
require("use-sync-external-store/shim");
|
|
28
28
|
require("./types.cjs.js");
|
package/dist/Root.es.js
CHANGED
|
@@ -2,7 +2,7 @@ var _a;
|
|
|
2
2
|
import { normalize } from "polished";
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
import { forwardRef, useRef } from "react";
|
|
5
|
-
import {
|
|
5
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
6
6
|
import { jsx } from "react/jsx-runtime";
|
|
7
7
|
import { E as Element } from "./index.es.js";
|
|
8
8
|
import { B as BackgroundsContainer, G as GridItem } from "./index.es2.js";
|
|
@@ -21,7 +21,7 @@ import "uuid";
|
|
|
21
21
|
import "is-hotkey";
|
|
22
22
|
import "use-sync-external-store/shim/with-selector";
|
|
23
23
|
import "next/dynamic";
|
|
24
|
-
import "./
|
|
24
|
+
import "./number.es.js";
|
|
25
25
|
import "./combobox.es.js";
|
|
26
26
|
import "use-sync-external-store/shim";
|
|
27
27
|
import "./types.es.js";
|
package/dist/SocialLinks.cjs.js
CHANGED
|
@@ -44,7 +44,7 @@ require("use-sync-external-store/shim/with-selector");
|
|
|
44
44
|
require("next/dynamic");
|
|
45
45
|
require("./actions.cjs.js");
|
|
46
46
|
require("zod");
|
|
47
|
-
require("./
|
|
47
|
+
require("./number.cjs.js");
|
|
48
48
|
require("./combobox.cjs.js");
|
|
49
49
|
require("uuid");
|
|
50
50
|
require("slate");
|
package/dist/SocialLinks.es.js
CHANGED
|
@@ -35,7 +35,7 @@ import { L as Link } from "./index.es3.js";
|
|
|
35
35
|
import { n as useResponsiveStyle, q as colorToString } from "./index.es.js";
|
|
36
36
|
import { jsx, Fragment } from "react/jsx-runtime";
|
|
37
37
|
import { G as GutterContainer } from "./index.es4.js";
|
|
38
|
-
import {
|
|
38
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
39
39
|
import { cx } from "@emotion/css";
|
|
40
40
|
import "scroll-into-view-if-needed";
|
|
41
41
|
import "next/link";
|
|
@@ -43,7 +43,7 @@ import "use-sync-external-store/shim/with-selector";
|
|
|
43
43
|
import "next/dynamic";
|
|
44
44
|
import "./actions.es.js";
|
|
45
45
|
import "zod";
|
|
46
|
-
import "./
|
|
46
|
+
import "./number.es.js";
|
|
47
47
|
import "./combobox.es.js";
|
|
48
48
|
import "uuid";
|
|
49
49
|
import "slate";
|
package/dist/Video.es.js
CHANGED
|
@@ -20,7 +20,7 @@ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
|
20
20
|
import { cx } from "@emotion/css";
|
|
21
21
|
import { forwardRef, useState, useEffect } from "react";
|
|
22
22
|
import ReactPlayer from "react-player";
|
|
23
|
-
import {
|
|
23
|
+
import { $ as useStyle } from "./react-page.es.js";
|
|
24
24
|
import { p as placeholders } from "./placeholders.es.js";
|
|
25
25
|
import { jsx } from "react/jsx-runtime";
|
|
26
26
|
import "redux";
|
package/dist/components.cjs.js
CHANGED
|
@@ -37,7 +37,7 @@ require("./box-models.cjs.js");
|
|
|
37
37
|
require("css-box-model");
|
|
38
38
|
require("use-sync-external-store/shim/with-selector");
|
|
39
39
|
require("next/dynamic");
|
|
40
|
-
require("./
|
|
40
|
+
require("./number.cjs.js");
|
|
41
41
|
require("./combobox.cjs.js");
|
|
42
42
|
require("use-sync-external-store/shim");
|
|
43
43
|
require("./types.cjs.js");
|
package/dist/components.es.js
CHANGED
|
@@ -35,7 +35,7 @@ import "./box-models.es.js";
|
|
|
35
35
|
import "css-box-model";
|
|
36
36
|
import "use-sync-external-store/shim/with-selector";
|
|
37
37
|
import "next/dynamic";
|
|
38
|
-
import "./
|
|
38
|
+
import "./number.es.js";
|
|
39
39
|
import "./combobox.es.js";
|
|
40
40
|
import "use-sync-external-store/shim";
|
|
41
41
|
import "./types.es.js";
|
|
@@ -31,7 +31,7 @@ var __objRest = (source, exclude) => {
|
|
|
31
31
|
};
|
|
32
32
|
const import_meta = {};
|
|
33
33
|
import { C as ComboboxControlType } from "./combobox.es.js";
|
|
34
|
-
import {
|
|
34
|
+
import { ae as ListControlType, af as ShapeControlType, ad as StyleV2ControlType, aa as RichTextV2ControlType, ap as Types } from "./react-page.es.js";
|
|
35
35
|
import "./actions.es.js";
|
|
36
36
|
import "uuid";
|
|
37
37
|
import "slate";
|
package/dist/controls.cjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
var
|
|
3
|
+
var number = require("./number.cjs.js");
|
|
4
4
|
var reactPage = require("./react-page.cjs.js");
|
|
5
5
|
var combobox = require("./combobox.cjs.js");
|
|
6
6
|
require("redux");
|
|
@@ -18,14 +18,10 @@ require("@emotion/serialize");
|
|
|
18
18
|
require("@emotion/utils");
|
|
19
19
|
require("react/jsx-runtime");
|
|
20
20
|
require("is-hotkey");
|
|
21
|
-
exports.Checkbox =
|
|
22
|
-
exports.CheckboxControlType =
|
|
23
|
-
exports.Number =
|
|
24
|
-
exports.NumberControlType =
|
|
25
|
-
exports.TextArea = textInput.TextArea;
|
|
26
|
-
exports.TextAreaControlType = textInput.TextAreaControlType;
|
|
27
|
-
exports.TextInput = textInput.TextInput;
|
|
28
|
-
exports.TextInputControlType = textInput.TextInputControlType;
|
|
21
|
+
exports.Checkbox = number.Checkbox;
|
|
22
|
+
exports.CheckboxControlType = number.CheckboxControlType;
|
|
23
|
+
exports.Number = number.Number;
|
|
24
|
+
exports.NumberControlType = number.NumberControlType;
|
|
29
25
|
exports.Color = reactPage.Color;
|
|
30
26
|
exports.ColorControlType = reactPage.ColorControlType;
|
|
31
27
|
exports.IconRadioGroupControlType = reactPage.IconRadioGroupControlType;
|
|
@@ -65,8 +61,12 @@ exports.StyleControlType = reactPage.StyleControlType;
|
|
|
65
61
|
exports.StyleV2Control = reactPage.StyleV2Control;
|
|
66
62
|
exports.StyleV2ControlMessageType = reactPage.StyleV2ControlMessageType;
|
|
67
63
|
exports.StyleV2ControlType = reactPage.StyleV2ControlType;
|
|
64
|
+
exports.TextArea = reactPage.TextArea$1;
|
|
65
|
+
exports.TextAreaControlType = reactPage.TextAreaControlType;
|
|
66
|
+
exports.TextInput = reactPage.TextInput$1;
|
|
67
|
+
exports.TextInputControlType = reactPage.TextInputControlType;
|
|
68
68
|
exports.TypographyControlType = reactPage.TypographyControlType;
|
|
69
|
-
exports.copy = reactPage.copy$
|
|
69
|
+
exports.copy = reactPage.copy$2;
|
|
70
70
|
exports.copyColorData = reactPage.copyColorData;
|
|
71
71
|
exports.copyImageData = reactPage.copyImageData;
|
|
72
72
|
exports.copyLinkData = reactPage.copyLinkData;
|
|
@@ -80,12 +80,15 @@ exports.getListElementChildren = reactPage.getListElementChildren;
|
|
|
80
80
|
exports.getListFileIds = reactPage.getListFileIds;
|
|
81
81
|
exports.getListPageIds = reactPage.getListPageIds;
|
|
82
82
|
exports.getListSwatchIds = reactPage.getListSwatchIds;
|
|
83
|
+
exports.getListTranslatableData = reactPage.getListTranslatableData;
|
|
83
84
|
exports.getListTypographyIds = reactPage.getListTypographyIds;
|
|
84
85
|
exports.getShapeElementChildren = reactPage.getShapeElementChildren;
|
|
85
86
|
exports.getShapeFileIds = reactPage.getShapeFileIds;
|
|
86
87
|
exports.getShapePageIds = reactPage.getShapePageIds;
|
|
87
88
|
exports.getShapeSwatchIds = reactPage.getShapeSwatchIds;
|
|
89
|
+
exports.getShapeTranslatableData = reactPage.getShapeTranslatableData;
|
|
88
90
|
exports.getShapeTypographyIds = reactPage.getShapeTypographyIds;
|
|
91
|
+
exports.getTranslatableData = reactPage.getTranslatableData;
|
|
89
92
|
exports.getTypographySwatchIds = reactPage.getTypographySwatchIds;
|
|
90
93
|
exports.getTypographyTypographyIds = reactPage.getTypographyTypographyIds;
|
|
91
94
|
exports.isRichTextV1Data = reactPage.isRichTextV1Data;
|
package/dist/controls.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controls.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"controls.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/controls.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { a as Checkbox, C as CheckboxControlType, b as Number, N as NumberControlType } from "./number.es.js";
|
|
2
|
+
export { aJ as Color, aj as ColorControlType, ai as IconRadioGroupControlType, aQ as Image, ah as ImageControlType, a4 as ImageControlValueFormat, aS as Link, ag as LinkControlType, aU as List, aW as ListControl, aV as ListControlMessageType, ae as ListControlType, bt as ObjectType, Z as RichText, bv as RichTextControl, bu as RichTextControlMessageType, ab as RichTextControlType, bC as RichTextV2Control, bB as RichTextV2ControlMessageType, aa as RichTextV2ControlType, bA as RichTextV2Mode, b2 as Select, ak as SelectControlType, b3 as Shape, b5 as ShapeControl, b4 as ShapeControlMessageType, af as ShapeControlType, bd as Slot, bf as SlotControl, be as SlotControlMessageType, ac as SlotControlType, bi as Style, bk as StyleControl, bj as StyleControlMessageType, a3 as StyleControlProperty, a9 as StyleControlType, bp as StyleV2Control, bo as StyleV2ControlMessageType, ad as StyleV2ControlType, bq as TextArea, al as TextAreaControlType, br as TextInput, am as TextInputControlType, a8 as TypographyControlType, aL as copy, aK as copyColorData, aR as copyImageData, aT as copyLinkData, aX as copyListData, bs as copyRichTextData, b6 as copyShapeData, bg as copySlotData, bl as copyStyleData, bF as createRichTextV2Plugin, aY as getListElementChildren, a_ as getListFileIds, b0 as getListPageIds, aZ as getListSwatchIds, b1 as getListTranslatableData, a$ as getListTypographyIds, b7 as getShapeElementChildren, bb as getShapeFileIds, ba as getShapePageIds, b8 as getShapeSwatchIds, bc as getShapeTranslatableData, b9 as getShapeTypographyIds, aN as getTranslatableData, bH as getTypographySwatchIds, bI as getTypographyTypographyIds, a6 as isRichTextV1Data, aM as merge, bh as mergeSlotData, bz as richTextDAOToDTO, bx as richTextDTOtoDAO, bw as richTextDTOtoSelection, bD as richTextV2DataToDescendents, bE as richTextV2DescendentsToData, by as toSelectionDTO, aP as unstable_IconRadioGroup, aO as unstable_IconRadioGroupIcon, bn as unstable_StyleV2, bG as unstable_Typography, bm as unstable_useStyleV2ClassName } from "./react-page.es.js";
|
|
3
3
|
export { a as Combobox, C as ComboboxControlType } from "./combobox.es.js";
|
|
4
4
|
import "redux";
|
|
5
5
|
import "redux-thunk";
|