@wix/editor-react-components 1.2254.0 → 1.2256.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/site/components/AccordionComponent/component.js +4 -81
- package/dist/site/components/AccordionComponent/manifest.js +1 -1
- package/dist/site/components/AudioPlayer/component.js +1 -1
- package/dist/site/components/AudioPlayer/manifest.js +1 -1
- package/dist/site/components/Breadcrumbs/component.js +1 -1
- package/dist/site/components/Breadcrumbs/manifest.js +1 -1
- package/dist/site/components/CollapsibleText/component.js +1 -1
- package/dist/site/components/CollapsibleText/manifest.js +1 -1
- package/dist/site/components/Dropdown/Dropdown.d.ts +3 -0
- package/dist/site/components/Dropdown/Dropdown.types.d.ts +91 -0
- package/dist/site/components/Dropdown/component.d.ts +2 -0
- package/dist/site/components/Dropdown/component.js +31100 -0
- package/dist/site/components/Dropdown/component.preview.d.ts +4 -0
- package/dist/site/components/Dropdown/components/DropdownChips.d.ts +7 -0
- package/dist/site/components/Dropdown/components/DropdownList.d.ts +17 -0
- package/dist/site/components/Dropdown/components/DropdownTrigger.d.ts +18 -0
- package/dist/site/components/Dropdown/constants.d.ts +140 -0
- package/dist/site/components/Dropdown/css.css +255 -0
- package/dist/site/components/Dropdown/dropdownUtils.d.ts +24 -0
- package/dist/site/components/Dropdown/hooks/useChipOverflow.d.ts +9 -0
- package/dist/site/components/Dropdown/hooks/useDropdownQuery.d.ts +15 -0
- package/dist/site/components/Dropdown/hooks/useDropdownSelection.d.ts +16 -0
- package/dist/site/components/Dropdown/index.d.ts +2 -0
- package/dist/site/components/Dropdown/index.js +6 -0
- package/dist/site/components/Dropdown/manifest.d.ts +5 -0
- package/dist/site/components/Dropdown/manifest.js +418 -0
- package/dist/site/components/Line/manifest.js +3 -39
- package/dist/site/components/chunks/_baseSlice.js +43 -0
- package/dist/site/components/chunks/constants29.js +114 -46
- package/dist/site/components/chunks/constants30.js +53 -71
- package/dist/site/components/chunks/constants31.js +73 -77
- package/dist/site/components/chunks/constants32.js +76 -57
- package/dist/site/components/chunks/constants33.js +72 -0
- package/dist/site/components/chunks/isArray.js +12 -0
- package/dist/site/components/chunks/isArrayLike.js +88 -0
- package/dist/site/components/chunks/isObjectLike.js +5 -15
- package/dist/site/components/chunks/manifestSdkMixins.js +13 -0
- package/dist/site/components/chunks/useConsentPolicyProps.js +5 -5
- package/dist/site/components/extensions.js +51 -46
- package/package.json +4 -3
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
const DISPLAY_NAMES = {
|
|
2
|
+
component: "Accordion",
|
|
3
|
+
elements: {
|
|
4
|
+
accordionItems: "Accordion items",
|
|
5
|
+
itemContent: "Item content",
|
|
6
|
+
itemTitles: "Item titles"
|
|
7
|
+
},
|
|
8
|
+
actions: {
|
|
9
|
+
manageAccordion: "Manage Accordion",
|
|
10
|
+
animatedIcon: "Customize Icon"
|
|
11
|
+
},
|
|
12
|
+
data: {
|
|
13
|
+
items: "Item",
|
|
14
|
+
title: "Title",
|
|
15
|
+
activeItem: "Active Item",
|
|
16
|
+
allowMultipleOpen: "Allow multiple open items",
|
|
17
|
+
defaultState: "Choose the default state"
|
|
18
|
+
},
|
|
19
|
+
defaultStateOptions: {
|
|
20
|
+
allClosed: "All items closed",
|
|
21
|
+
firstOpened: "First item opened",
|
|
22
|
+
allOpened: "All items opened"
|
|
23
|
+
},
|
|
24
|
+
displayGroups: {
|
|
25
|
+
accordionItems: "Accordion Items"
|
|
26
|
+
},
|
|
27
|
+
layout: {
|
|
28
|
+
itemsGap: "Space between items"
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
const DEFAULT_PROPS = {
|
|
32
|
+
items: [],
|
|
33
|
+
defaultOpen: "none",
|
|
34
|
+
allowMultipleOpen: false,
|
|
35
|
+
titleHtmlTag: "h3"
|
|
36
|
+
};
|
|
37
|
+
const accordionManifestDefaults = {
|
|
38
|
+
data: { ...DEFAULT_PROPS },
|
|
39
|
+
style: {
|
|
40
|
+
itemsGap: "0px"
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
const CONTAINER_INITIAL_HEIGHT = 240;
|
|
44
|
+
const DesignStates = {
|
|
45
|
+
accordionItem: {
|
|
46
|
+
hover: {
|
|
47
|
+
displayName: "Hover",
|
|
48
|
+
className: "accordion-component__accordion-item--hover"
|
|
49
|
+
},
|
|
50
|
+
selected: {
|
|
51
|
+
displayName: "Selected",
|
|
52
|
+
className: "accordion-component__accordion-item--selected"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
itemTitle: {
|
|
56
|
+
hover: {
|
|
57
|
+
displayName: "Hover",
|
|
58
|
+
className: "accordion-component__item-title--hover"
|
|
59
|
+
},
|
|
60
|
+
selected: {
|
|
61
|
+
displayName: "Selected",
|
|
62
|
+
className: "accordion-component__item-title--selected"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
export {
|
|
67
|
+
CONTAINER_INITIAL_HEIGHT as C,
|
|
68
|
+
DEFAULT_PROPS as D,
|
|
69
|
+
DesignStates as a,
|
|
70
|
+
DISPLAY_NAMES as b,
|
|
71
|
+
accordionManifestDefaults as c
|
|
72
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var isArray_1;
|
|
2
|
+
var hasRequiredIsArray;
|
|
3
|
+
function requireIsArray() {
|
|
4
|
+
if (hasRequiredIsArray) return isArray_1;
|
|
5
|
+
hasRequiredIsArray = 1;
|
|
6
|
+
var isArray = Array.isArray;
|
|
7
|
+
isArray_1 = isArray;
|
|
8
|
+
return isArray_1;
|
|
9
|
+
}
|
|
10
|
+
export {
|
|
11
|
+
requireIsArray as r
|
|
12
|
+
};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { a as require_baseGetTag } from "./isObjectLike.js";
|
|
2
|
+
var isObject_1;
|
|
3
|
+
var hasRequiredIsObject;
|
|
4
|
+
function requireIsObject() {
|
|
5
|
+
if (hasRequiredIsObject) return isObject_1;
|
|
6
|
+
hasRequiredIsObject = 1;
|
|
7
|
+
function isObject(value) {
|
|
8
|
+
var type = typeof value;
|
|
9
|
+
return value != null && (type == "object" || type == "function");
|
|
10
|
+
}
|
|
11
|
+
isObject_1 = isObject;
|
|
12
|
+
return isObject_1;
|
|
13
|
+
}
|
|
14
|
+
var eq_1;
|
|
15
|
+
var hasRequiredEq;
|
|
16
|
+
function requireEq() {
|
|
17
|
+
if (hasRequiredEq) return eq_1;
|
|
18
|
+
hasRequiredEq = 1;
|
|
19
|
+
function eq(value, other) {
|
|
20
|
+
return value === other || value !== value && other !== other;
|
|
21
|
+
}
|
|
22
|
+
eq_1 = eq;
|
|
23
|
+
return eq_1;
|
|
24
|
+
}
|
|
25
|
+
var isFunction_1;
|
|
26
|
+
var hasRequiredIsFunction;
|
|
27
|
+
function requireIsFunction() {
|
|
28
|
+
if (hasRequiredIsFunction) return isFunction_1;
|
|
29
|
+
hasRequiredIsFunction = 1;
|
|
30
|
+
var baseGetTag = require_baseGetTag(), isObject = requireIsObject();
|
|
31
|
+
var asyncTag = "[object AsyncFunction]", funcTag = "[object Function]", genTag = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
|
|
32
|
+
function isFunction(value) {
|
|
33
|
+
if (!isObject(value)) {
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
var tag = baseGetTag(value);
|
|
37
|
+
return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
|
|
38
|
+
}
|
|
39
|
+
isFunction_1 = isFunction;
|
|
40
|
+
return isFunction_1;
|
|
41
|
+
}
|
|
42
|
+
var _isIndex;
|
|
43
|
+
var hasRequired_isIndex;
|
|
44
|
+
function require_isIndex() {
|
|
45
|
+
if (hasRequired_isIndex) return _isIndex;
|
|
46
|
+
hasRequired_isIndex = 1;
|
|
47
|
+
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
48
|
+
var reIsUint = /^(?:0|[1-9]\d*)$/;
|
|
49
|
+
function isIndex(value, length) {
|
|
50
|
+
var type = typeof value;
|
|
51
|
+
length = length == null ? MAX_SAFE_INTEGER : length;
|
|
52
|
+
return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
|
|
53
|
+
}
|
|
54
|
+
_isIndex = isIndex;
|
|
55
|
+
return _isIndex;
|
|
56
|
+
}
|
|
57
|
+
var isLength_1;
|
|
58
|
+
var hasRequiredIsLength;
|
|
59
|
+
function requireIsLength() {
|
|
60
|
+
if (hasRequiredIsLength) return isLength_1;
|
|
61
|
+
hasRequiredIsLength = 1;
|
|
62
|
+
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
63
|
+
function isLength(value) {
|
|
64
|
+
return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
|
|
65
|
+
}
|
|
66
|
+
isLength_1 = isLength;
|
|
67
|
+
return isLength_1;
|
|
68
|
+
}
|
|
69
|
+
var isArrayLike_1;
|
|
70
|
+
var hasRequiredIsArrayLike;
|
|
71
|
+
function requireIsArrayLike() {
|
|
72
|
+
if (hasRequiredIsArrayLike) return isArrayLike_1;
|
|
73
|
+
hasRequiredIsArrayLike = 1;
|
|
74
|
+
var isFunction = requireIsFunction(), isLength = requireIsLength();
|
|
75
|
+
function isArrayLike(value) {
|
|
76
|
+
return value != null && isLength(value.length) && !isFunction(value);
|
|
77
|
+
}
|
|
78
|
+
isArrayLike_1 = isArrayLike;
|
|
79
|
+
return isArrayLike_1;
|
|
80
|
+
}
|
|
81
|
+
export {
|
|
82
|
+
requireEq as a,
|
|
83
|
+
requireIsArrayLike as b,
|
|
84
|
+
require_isIndex as c,
|
|
85
|
+
requireIsFunction as d,
|
|
86
|
+
requireIsLength as e,
|
|
87
|
+
requireIsObject as r
|
|
88
|
+
};
|
|
@@ -29,15 +29,6 @@ function require_Symbol() {
|
|
|
29
29
|
_Symbol = Symbol;
|
|
30
30
|
return _Symbol;
|
|
31
31
|
}
|
|
32
|
-
var isArray_1;
|
|
33
|
-
var hasRequiredIsArray;
|
|
34
|
-
function requireIsArray() {
|
|
35
|
-
if (hasRequiredIsArray) return isArray_1;
|
|
36
|
-
hasRequiredIsArray = 1;
|
|
37
|
-
var isArray = Array.isArray;
|
|
38
|
-
isArray_1 = isArray;
|
|
39
|
-
return isArray_1;
|
|
40
|
-
}
|
|
41
32
|
var _getRawTag;
|
|
42
33
|
var hasRequired_getRawTag;
|
|
43
34
|
function require_getRawTag() {
|
|
@@ -110,10 +101,9 @@ function requireIsObjectLike() {
|
|
|
110
101
|
return isObjectLike_1;
|
|
111
102
|
}
|
|
112
103
|
export {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
require_baseGetTag as r
|
|
104
|
+
require_baseGetTag as a,
|
|
105
|
+
requireIsObjectLike as b,
|
|
106
|
+
require_root as c,
|
|
107
|
+
require_freeGlobal as d,
|
|
108
|
+
require_Symbol as r
|
|
119
109
|
};
|
|
@@ -2,6 +2,7 @@ import { D as DATA } from "./chunk-JPMZBG44.js";
|
|
|
2
2
|
import { D as DomEventType } from "./types.impl.js";
|
|
3
3
|
const MANIFEST_DEFAULT_FUNCTION_DISPLAY_NAMES = {
|
|
4
4
|
onChange: "On Change",
|
|
5
|
+
onInput: "On Input",
|
|
5
6
|
onClick: "On Click",
|
|
6
7
|
onDblClick: "On Double Click",
|
|
7
8
|
onFocus: "On Focus",
|
|
@@ -27,6 +28,17 @@ function manifestChangeable(names = {}) {
|
|
|
27
28
|
)
|
|
28
29
|
};
|
|
29
30
|
}
|
|
31
|
+
function manifestInputable(names = {}) {
|
|
32
|
+
const payload = {
|
|
33
|
+
parameters: [{ domEvent: DomEventType.CHANGE }]
|
|
34
|
+
};
|
|
35
|
+
return {
|
|
36
|
+
onInput: manifestFunction(
|
|
37
|
+
names.onInput ?? MANIFEST_DEFAULT_FUNCTION_DISPLAY_NAMES.onInput,
|
|
38
|
+
payload
|
|
39
|
+
)
|
|
40
|
+
};
|
|
41
|
+
}
|
|
30
42
|
function manifestClickable(names = {}) {
|
|
31
43
|
const payload = {
|
|
32
44
|
parameters: [{ domEvent: DomEventType.POINTER }]
|
|
@@ -76,5 +88,6 @@ export {
|
|
|
76
88
|
manifestMouseHover as a,
|
|
77
89
|
manifestClickable as b,
|
|
78
90
|
manifestChangeable as c,
|
|
91
|
+
manifestInputable as d,
|
|
79
92
|
manifestFocusable as m
|
|
80
93
|
};
|
|
@@ -4,8 +4,8 @@ import React__default, { useState, useEffect, useMemo } from "react";
|
|
|
4
4
|
import { c as clsx } from "./clsx.js";
|
|
5
5
|
import { a as getDataAttributes } from "./dataUtils.js";
|
|
6
6
|
import { a as activateBySpaceOrEnterButton, e as getTabIndexAttribute } from "./a11y.js";
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
7
|
+
import * as __rspack_external_react_dom_7136dc57 from "react-dom";
|
|
8
|
+
import __rspack_external_react_dom_7136dc57__default from "react-dom";
|
|
9
9
|
import { g as getDefaultExportFromCjs } from "./_commonjsHelpers.js";
|
|
10
10
|
import { useService } from "@wix/services-manager-react";
|
|
11
11
|
import { E as EnvironmentDefinition } from "./index2.js";
|
|
@@ -1665,7 +1665,7 @@ var usePopper$1 = function usePopper(referenceElement, popperElement, options) {
|
|
|
1665
1665
|
fn: function fn2(_ref) {
|
|
1666
1666
|
var state2 = _ref.state;
|
|
1667
1667
|
var elements = Object.keys(state2.elements);
|
|
1668
|
-
|
|
1668
|
+
__rspack_external_react_dom_7136dc57.flushSync(function() {
|
|
1669
1669
|
setState({
|
|
1670
1670
|
styles: fromEntries(elements.map(function(element) {
|
|
1671
1671
|
return [element, state2.styles[element] || {}];
|
|
@@ -1967,7 +1967,7 @@ const CookieIcon = ({
|
|
|
1967
1967
|
]
|
|
1968
1968
|
}
|
|
1969
1969
|
);
|
|
1970
|
-
const canUsePortal = typeof
|
|
1970
|
+
const canUsePortal = typeof __rspack_external_react_dom_7136dc57__default.createPortal === "function";
|
|
1971
1971
|
const Tooltip = ({
|
|
1972
1972
|
id,
|
|
1973
1973
|
datahook,
|
|
@@ -2056,7 +2056,7 @@ const Tooltip = ({
|
|
|
2056
2056
|
}
|
|
2057
2057
|
};
|
|
2058
2058
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
2059
|
-
poppersWrapper && loadTooltip && canUsePortal &&
|
|
2059
|
+
poppersWrapper && loadTooltip && canUsePortal && __rspack_external_react_dom_7136dc57__default.createPortal(
|
|
2060
2060
|
/* @__PURE__ */ jsx(
|
|
2061
2061
|
TooltipBox,
|
|
2062
2062
|
{
|
|
@@ -6,53 +6,54 @@ import manifest$3 from "./BoxContainer/manifest.js";
|
|
|
6
6
|
import manifest$4 from "./Breadcrumbs/manifest.js";
|
|
7
7
|
import manifest$5 from "./Button/manifest.js";
|
|
8
8
|
import manifest$6 from "./CollapsibleText/manifest.js";
|
|
9
|
-
import manifest$7 from "./
|
|
10
|
-
import manifest$8 from "./
|
|
9
|
+
import manifest$7 from "./Dropdown/manifest.js";
|
|
10
|
+
import manifest$8 from "./GoogleMap/manifest.js";
|
|
11
|
+
import manifest$9 from "./HipaaIcon/manifest.js";
|
|
11
12
|
import { H as HIPAA_SETTINGS_PANEL_ID } from "./chunks/constants27.js";
|
|
12
|
-
import manifest$
|
|
13
|
-
import manifest$
|
|
14
|
-
import manifest$
|
|
15
|
-
import manifest$
|
|
16
|
-
import manifest$
|
|
17
|
-
import manifest$
|
|
18
|
-
import manifest$
|
|
19
|
-
import manifest$
|
|
20
|
-
import manifest$
|
|
21
|
-
import manifest$
|
|
22
|
-
import manifest$
|
|
23
|
-
import manifest$
|
|
24
|
-
import manifest$
|
|
25
|
-
import manifest$
|
|
26
|
-
import manifest$
|
|
27
|
-
import manifest$
|
|
28
|
-
import manifest$
|
|
29
|
-
import manifest$
|
|
30
|
-
import manifest$
|
|
31
|
-
import manifest$
|
|
32
|
-
import manifest$
|
|
33
|
-
import manifest$
|
|
34
|
-
import manifest$
|
|
35
|
-
import manifest$
|
|
36
|
-
import manifest$
|
|
37
|
-
import manifest$
|
|
38
|
-
import manifest$
|
|
39
|
-
import manifest$
|
|
40
|
-
import manifest$
|
|
41
|
-
import manifest$
|
|
42
|
-
import manifest$
|
|
43
|
-
import manifest$
|
|
44
|
-
import manifest$
|
|
45
|
-
import manifest$
|
|
46
|
-
import manifest$
|
|
47
|
-
import manifest$
|
|
48
|
-
import manifest$
|
|
49
|
-
import manifest$
|
|
50
|
-
import manifest$
|
|
51
|
-
import manifest$
|
|
52
|
-
import manifest$
|
|
53
|
-
import manifest$
|
|
54
|
-
import manifest$
|
|
55
|
-
import manifest$
|
|
13
|
+
import manifest$a from "./HTMLComponent/manifest.js";
|
|
14
|
+
import manifest$b from "./Image3/manifest.js";
|
|
15
|
+
import manifest$c from "./LegacyAppWidget/manifest.js";
|
|
16
|
+
import manifest$d from "./LegacyContainer/manifest.js";
|
|
17
|
+
import manifest$e from "./LegacyMultiStateBox/manifest.js";
|
|
18
|
+
import manifest$f from "./Line/manifest.js";
|
|
19
|
+
import manifest$g from "./LinkBar/manifest.js";
|
|
20
|
+
import manifest$h from "./Lottie/manifest.js";
|
|
21
|
+
import manifest$i from "./Logo/manifest.js";
|
|
22
|
+
import manifest$j from "./Menu/manifest.js";
|
|
23
|
+
import manifest$k from "./MultiStateBox/manifest.js";
|
|
24
|
+
import manifest$l from "./ProgressBar/manifest.js";
|
|
25
|
+
import manifest$m from "./Repeater/manifest.js";
|
|
26
|
+
import manifest$n from "./ShareButtons/manifest.js";
|
|
27
|
+
import manifest$o from "./SiteLogo/manifest.js";
|
|
28
|
+
import manifest$p from "./SlotsPlaceholder/manifest.js";
|
|
29
|
+
import manifest$q from "./Slideshow/manifest.js";
|
|
30
|
+
import manifest$r from "./SocialPlayerFacebook/manifest.js";
|
|
31
|
+
import manifest$s from "./SocialPlayerInstagram/manifest.js";
|
|
32
|
+
import manifest$t from "./SocialPlayerSnapchat/manifest.js";
|
|
33
|
+
import manifest$u from "./SocialPlayerTikTok/manifest.js";
|
|
34
|
+
import manifest$v from "./SocialPlayerVimeo/manifest.js";
|
|
35
|
+
import manifest$w from "./SocialPlayerYoutube/manifest.js";
|
|
36
|
+
import manifest$x from "./SvgImage/manifest.js";
|
|
37
|
+
import manifest$y from "./Tabs/manifest.js";
|
|
38
|
+
import manifest$z from "./TestComp/manifest.js";
|
|
39
|
+
import manifest$A from "./TextEffects3d/manifest.js";
|
|
40
|
+
import manifest$B from "./TextEffectsBauhaus/manifest.js";
|
|
41
|
+
import manifest$C from "./TextEffectsGlass/manifest.js";
|
|
42
|
+
import manifest$D from "./TextEffectsGlitch/manifest.js";
|
|
43
|
+
import manifest$E from "./TextEffectsLetterPress/manifest.js";
|
|
44
|
+
import manifest$F from "./TextEffectsMatrix/manifest.js";
|
|
45
|
+
import manifest$G from "./TextEffectsNeonSign/manifest.js";
|
|
46
|
+
import manifest$H from "./TextEffectsNoisy/manifest.js";
|
|
47
|
+
import manifest$I from "./TextEffectsOutlineOut/manifest.js";
|
|
48
|
+
import manifest$J from "./TextEffectsRetro/manifest.js";
|
|
49
|
+
import manifest$K from "./TextEffectsShook/manifest.js";
|
|
50
|
+
import manifest$L from "./TextEffectsSticker/manifest.js";
|
|
51
|
+
import manifest$M from "./TextEffectsStriped/manifest.js";
|
|
52
|
+
import manifest$N from "./TextInput/manifest.js";
|
|
53
|
+
import manifest$O from "./TextMarquee/manifest.js";
|
|
54
|
+
import manifest$P from "./TransparentVideo/manifest.js";
|
|
55
|
+
import manifest$Q from "./VideoUpload/manifest.js";
|
|
56
|
+
import manifest$R from "./WRichText/manifest.js";
|
|
56
57
|
const animatedIconPanelExtension = extensions.editorReactComponentPanel({
|
|
57
58
|
id: "d8d9ddca-d5e4-453a-bd36-7deb8b302d26",
|
|
58
59
|
displayName: "Animated Icon",
|
|
@@ -580,6 +581,10 @@ const appConfig = app().use(
|
|
|
580
581
|
extensions.editorReactComponent(
|
|
581
582
|
manifest$Q
|
|
582
583
|
)
|
|
584
|
+
).use(
|
|
585
|
+
extensions.editorReactComponent(
|
|
586
|
+
manifest$R
|
|
587
|
+
)
|
|
583
588
|
);
|
|
584
589
|
appConfig.use(animatedIconPanelExtension).use(googleMapManageLocationsPanelExtension).use(hipaaIconSettingsPanelExtension).use(htmlComponentPanelExtension).use(maskPanelExtension).use(lineFormatPanelExtension).use(linkBarOrientationPanelExtension).use(logoCustomizePanelExtension).use(menuFormatPanelExtension).use(repeaterFormatPanelExtension).use(shareButtonsFormatPanelExtension).use(shareButtonsManagePanelExtension).use(siteLogoCustomizePanelExtension).use(socialPlayerFacebookSettingsPanelExtension).use(socialPlayerInstagramSettingsPanelExtension).use(socialPlayerSnapchatSettingsPanelExtension).use(socialPlayerTikTokSettingsPanelExtension).use(socialPlayerVimeoSettingsPanelExtension).use(socialPlayerYoutubeSettingsPanelExtension).use(svgImageSvgColorsPanelExtension).use(textEffectsTextTwistPanelExtension).use(textEffectsBauhausPatternsPanelExtension).use(textEffectsGlassPatternsPanelExtension).use(textEffectsGlitchPatternsPanelExtension).use(textEffectsLetterPressPatternsPanelExtension).use(textEffectsMatrixPatternsPanelExtension).use(textEffectsNeonSignPatternsPanelExtension).use(textEffectsNoisyPatternsPanelExtension).use(textEffectsOutlineOutPatternsPanelExtension).use(textEffectsRetroPatternsPanelExtension).use(textEffectsShookPatternsPanelExtension).use(textEffectsStickerPatternsPanelExtension).use(textMarqueePanelExtension).use(transparentVideoPanelExtension).use(videoUploadPanelExtension);
|
|
585
590
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2256.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"@wix/business-tools": "^1.0.225",
|
|
107
107
|
"@wix/ci-build-info": "^1.0.333",
|
|
108
108
|
"@wix/cli": "^1.1.223",
|
|
109
|
-
"@wix/cli-app": "^1.1.
|
|
109
|
+
"@wix/cli-app": "^1.1.223",
|
|
110
110
|
"@wix/component-protocol": "^1.237.0",
|
|
111
111
|
"@wix/component-storybook-utils": "^1.0.0",
|
|
112
112
|
"@wix/components-infra": "^1.0.0",
|
|
@@ -129,6 +129,7 @@
|
|
|
129
129
|
"@wix/media": "^1.0.263",
|
|
130
130
|
"@wix/react-component-schema": "^1.7.0",
|
|
131
131
|
"@wix/seo-service": "^1.5.0",
|
|
132
|
+
"@wix/site-ui": "^1.0.0",
|
|
132
133
|
"@wix/sled-playwright": "^1.302.0",
|
|
133
134
|
"@wix/thunderbolt-components-native": "^1.0.0",
|
|
134
135
|
"@wix/thunderbolt-elements": "^1.0.0",
|
|
@@ -197,5 +198,5 @@
|
|
|
197
198
|
"registry": "https://registry.npmjs.org/",
|
|
198
199
|
"access": "public"
|
|
199
200
|
},
|
|
200
|
-
"falconPackageHash": "
|
|
201
|
+
"falconPackageHash": "13d9cb34d432fe9d91061550d406ace653c0354caf7bdd4fc8792dc9"
|
|
201
202
|
}
|