@wix/editor-react-components 1.2468.0 → 1.2470.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 +79 -11
- package/dist/site/components/AccordionComponent/manifestConfigs/iconPositionConfig.d.ts +2 -2
- package/dist/site/components/AudioPlayer/manifestConfigs/controlsConfig.d.ts +8 -8
- package/dist/site/components/AudioPlayer/manifestConfigs/coverMediaConfig.d.ts +1 -1
- package/dist/site/components/Line/manifestConfigs/shapeConfig.d.ts +2 -2
- package/dist/site/components/Line/manifestConfigs/typeConfig.d.ts +2 -2
- package/dist/site/components/Menu/manifestConfigs/dropdownConfig.d.ts +45 -45
- package/dist/site/components/ShareButtons/constants.d.ts +1 -1
- package/dist/site/components/TextEffectsShared/manifestBase.d.ts +15 -15
- package/dist/site/components/TransparentVideo/useTransparentVideo.d.ts +1 -1
- package/dist/site/components/chunks/types.impl.js +107 -0
- package/package.json +8 -8
|
@@ -1365,18 +1365,18 @@ function composeContextScopes(...scopes) {
|
|
|
1365
1365
|
createScope.scopeName = baseScope.scopeName;
|
|
1366
1366
|
return createScope;
|
|
1367
1367
|
}
|
|
1368
|
-
function setRef(ref, value) {
|
|
1368
|
+
function setRef$2(ref, value) {
|
|
1369
1369
|
if (typeof ref === "function") {
|
|
1370
1370
|
return ref(value);
|
|
1371
1371
|
} else if (ref !== null && ref !== void 0) {
|
|
1372
1372
|
ref.current = value;
|
|
1373
1373
|
}
|
|
1374
1374
|
}
|
|
1375
|
-
function composeRefs(...refs) {
|
|
1375
|
+
function composeRefs$2(...refs) {
|
|
1376
1376
|
return (node) => {
|
|
1377
1377
|
let hasCleanup = false;
|
|
1378
1378
|
const cleanups = refs.map((ref) => {
|
|
1379
|
-
const cleanup = setRef(ref, node);
|
|
1379
|
+
const cleanup = setRef$2(ref, node);
|
|
1380
1380
|
if (!hasCleanup && typeof cleanup == "function") {
|
|
1381
1381
|
hasCleanup = true;
|
|
1382
1382
|
}
|
|
@@ -1389,15 +1389,15 @@ function composeRefs(...refs) {
|
|
|
1389
1389
|
if (typeof cleanup == "function") {
|
|
1390
1390
|
cleanup();
|
|
1391
1391
|
} else {
|
|
1392
|
-
setRef(refs[i], null);
|
|
1392
|
+
setRef$2(refs[i], null);
|
|
1393
1393
|
}
|
|
1394
1394
|
}
|
|
1395
1395
|
};
|
|
1396
1396
|
}
|
|
1397
1397
|
};
|
|
1398
1398
|
}
|
|
1399
|
-
function useComposedRefs(...refs) {
|
|
1400
|
-
return React.useCallback(composeRefs(...refs), refs);
|
|
1399
|
+
function useComposedRefs$2(...refs) {
|
|
1400
|
+
return React.useCallback(composeRefs$2(...refs), refs);
|
|
1401
1401
|
}
|
|
1402
1402
|
// @__NO_SIDE_EFFECTS__
|
|
1403
1403
|
function createSlot$2(ownerName) {
|
|
@@ -1431,7 +1431,7 @@ function createSlotClone$2(ownerName) {
|
|
|
1431
1431
|
const childrenRef = getElementRef$3(children);
|
|
1432
1432
|
const props2 = mergeProps$2(slotProps, children.props);
|
|
1433
1433
|
if (children.type !== React.Fragment) {
|
|
1434
|
-
props2.ref = forwardedRef ? composeRefs(forwardedRef, childrenRef) : childrenRef;
|
|
1434
|
+
props2.ref = forwardedRef ? composeRefs$2(forwardedRef, childrenRef) : childrenRef;
|
|
1435
1435
|
}
|
|
1436
1436
|
return React.cloneElement(children, props2);
|
|
1437
1437
|
}
|
|
@@ -1502,7 +1502,7 @@ function createCollection(name) {
|
|
|
1502
1502
|
(props, forwardedRef) => {
|
|
1503
1503
|
const { scope, children } = props;
|
|
1504
1504
|
const context = useCollectionContext(COLLECTION_SLOT_NAME, scope);
|
|
1505
|
-
const composedRefs = useComposedRefs(forwardedRef, context.collectionRef);
|
|
1505
|
+
const composedRefs = useComposedRefs$2(forwardedRef, context.collectionRef);
|
|
1506
1506
|
return /* @__PURE__ */ jsx(CollectionSlotImpl, { ref: composedRefs, children });
|
|
1507
1507
|
}
|
|
1508
1508
|
);
|
|
@@ -1514,7 +1514,7 @@ function createCollection(name) {
|
|
|
1514
1514
|
(props, forwardedRef) => {
|
|
1515
1515
|
const { scope, children, ...itemData } = props;
|
|
1516
1516
|
const ref = React__default.useRef(null);
|
|
1517
|
-
const composedRefs = useComposedRefs(forwardedRef, ref);
|
|
1517
|
+
const composedRefs = useComposedRefs$2(forwardedRef, ref);
|
|
1518
1518
|
const context = useCollectionContext(ITEM_SLOT_NAME, scope);
|
|
1519
1519
|
React__default.useEffect(() => {
|
|
1520
1520
|
context.itemMap.set(ref, { ref, ...itemData });
|
|
@@ -1544,6 +1544,40 @@ function createCollection(name) {
|
|
|
1544
1544
|
createCollectionScope2
|
|
1545
1545
|
];
|
|
1546
1546
|
}
|
|
1547
|
+
function setRef$1(ref, value) {
|
|
1548
|
+
if (typeof ref === "function") {
|
|
1549
|
+
return ref(value);
|
|
1550
|
+
} else if (ref !== null && ref !== void 0) {
|
|
1551
|
+
ref.current = value;
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
function composeRefs$1(...refs) {
|
|
1555
|
+
return (node) => {
|
|
1556
|
+
let hasCleanup = false;
|
|
1557
|
+
const cleanups = refs.map((ref) => {
|
|
1558
|
+
const cleanup = setRef$1(ref, node);
|
|
1559
|
+
if (!hasCleanup && typeof cleanup == "function") {
|
|
1560
|
+
hasCleanup = true;
|
|
1561
|
+
}
|
|
1562
|
+
return cleanup;
|
|
1563
|
+
});
|
|
1564
|
+
if (hasCleanup) {
|
|
1565
|
+
return () => {
|
|
1566
|
+
for (let i = 0; i < cleanups.length; i++) {
|
|
1567
|
+
const cleanup = cleanups[i];
|
|
1568
|
+
if (typeof cleanup == "function") {
|
|
1569
|
+
cleanup();
|
|
1570
|
+
} else {
|
|
1571
|
+
setRef$1(refs[i], null);
|
|
1572
|
+
}
|
|
1573
|
+
}
|
|
1574
|
+
};
|
|
1575
|
+
}
|
|
1576
|
+
};
|
|
1577
|
+
}
|
|
1578
|
+
function useComposedRefs$1(...refs) {
|
|
1579
|
+
return React.useCallback(composeRefs$1(...refs), refs);
|
|
1580
|
+
}
|
|
1547
1581
|
function composeEventHandlers$1(originalEventHandler, ourEventHandler, { checkForDefaultPrevented = true } = {}) {
|
|
1548
1582
|
return function handleEvent(event) {
|
|
1549
1583
|
originalEventHandler == null ? void 0 : originalEventHandler(event);
|
|
@@ -1652,7 +1686,7 @@ function createSlotClone$1(ownerName) {
|
|
|
1652
1686
|
const childrenRef = getElementRef$2(children);
|
|
1653
1687
|
const props2 = mergeProps$1(slotProps, children.props);
|
|
1654
1688
|
if (children.type !== React.Fragment) {
|
|
1655
|
-
props2.ref = forwardedRef ? composeRefs(forwardedRef, childrenRef) : childrenRef;
|
|
1689
|
+
props2.ref = forwardedRef ? composeRefs$1(forwardedRef, childrenRef) : childrenRef;
|
|
1656
1690
|
}
|
|
1657
1691
|
return React.cloneElement(children, props2);
|
|
1658
1692
|
}
|
|
@@ -1745,6 +1779,40 @@ function composeEventHandlers(originalEventHandler, ourEventHandler, { checkForD
|
|
|
1745
1779
|
}
|
|
1746
1780
|
var useLayoutEffect2$1 = (globalThis == null ? void 0 : globalThis.document) ? React.useLayoutEffect : () => {
|
|
1747
1781
|
};
|
|
1782
|
+
function setRef(ref, value) {
|
|
1783
|
+
if (typeof ref === "function") {
|
|
1784
|
+
return ref(value);
|
|
1785
|
+
} else if (ref !== null && ref !== void 0) {
|
|
1786
|
+
ref.current = value;
|
|
1787
|
+
}
|
|
1788
|
+
}
|
|
1789
|
+
function composeRefs(...refs) {
|
|
1790
|
+
return (node) => {
|
|
1791
|
+
let hasCleanup = false;
|
|
1792
|
+
const cleanups = refs.map((ref) => {
|
|
1793
|
+
const cleanup = setRef(ref, node);
|
|
1794
|
+
if (!hasCleanup && typeof cleanup == "function") {
|
|
1795
|
+
hasCleanup = true;
|
|
1796
|
+
}
|
|
1797
|
+
return cleanup;
|
|
1798
|
+
});
|
|
1799
|
+
if (hasCleanup) {
|
|
1800
|
+
return () => {
|
|
1801
|
+
for (let i = 0; i < cleanups.length; i++) {
|
|
1802
|
+
const cleanup = cleanups[i];
|
|
1803
|
+
if (typeof cleanup == "function") {
|
|
1804
|
+
cleanup();
|
|
1805
|
+
} else {
|
|
1806
|
+
setRef(refs[i], null);
|
|
1807
|
+
}
|
|
1808
|
+
}
|
|
1809
|
+
};
|
|
1810
|
+
}
|
|
1811
|
+
};
|
|
1812
|
+
}
|
|
1813
|
+
function useComposedRefs(...refs) {
|
|
1814
|
+
return React.useCallback(composeRefs(...refs), refs);
|
|
1815
|
+
}
|
|
1748
1816
|
// @__NO_SIDE_EFFECTS__
|
|
1749
1817
|
function createSlot(ownerName) {
|
|
1750
1818
|
const SlotClone = /* @__PURE__ */ createSlotClone(ownerName);
|
|
@@ -2219,7 +2287,7 @@ var AccordionImpl = React__default.forwardRef(
|
|
|
2219
2287
|
(props, forwardedRef) => {
|
|
2220
2288
|
const { __scopeAccordion, disabled, dir, orientation = "vertical", ...accordionProps } = props;
|
|
2221
2289
|
const accordionRef = React__default.useRef(null);
|
|
2222
|
-
const composedRefs = useComposedRefs(accordionRef, forwardedRef);
|
|
2290
|
+
const composedRefs = useComposedRefs$1(accordionRef, forwardedRef);
|
|
2223
2291
|
const getItems = useCollection(__scopeAccordion);
|
|
2224
2292
|
const direction = useDirection(dir);
|
|
2225
2293
|
const isDirectionLTR = direction === "ltr";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const iconPositionConfig: {
|
|
2
2
|
customEnum: {
|
|
3
|
-
cssPropertyType: import('@wix/
|
|
3
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
4
4
|
options: {
|
|
5
5
|
value: string;
|
|
6
6
|
displayName: string;
|
|
@@ -12,5 +12,5 @@ export declare const iconPositionConfig: {
|
|
|
12
12
|
};
|
|
13
13
|
displayName: string;
|
|
14
14
|
defaultValue: string;
|
|
15
|
-
cssPropertyType: import('@wix/
|
|
15
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
16
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NATIVE_STATE_TYPE } from '@wix/component-protocol/schema';
|
|
2
2
|
export declare const controlsConfig: {
|
|
3
|
-
elementType: import('@wix/
|
|
3
|
+
elementType: import('@wix/component-protocol/schema').ElementTypeEnumElementType;
|
|
4
4
|
inlineElement: {
|
|
5
5
|
selector: string;
|
|
6
6
|
displayName: string;
|
|
@@ -10,27 +10,27 @@ export declare const controlsConfig: {
|
|
|
10
10
|
};
|
|
11
11
|
cssCustomProperties: {
|
|
12
12
|
'progress-fill-color': {
|
|
13
|
-
cssPropertyType: import('@wix/
|
|
13
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
14
14
|
displayName: string;
|
|
15
15
|
defaultValue: string;
|
|
16
16
|
};
|
|
17
17
|
'volume-control-color': {
|
|
18
|
-
cssPropertyType: import('@wix/
|
|
18
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
19
19
|
displayName: string;
|
|
20
20
|
defaultValue: string;
|
|
21
21
|
};
|
|
22
22
|
'time-display-color': {
|
|
23
|
-
cssPropertyType: import('@wix/
|
|
23
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
24
24
|
displayName: string;
|
|
25
25
|
defaultValue: string;
|
|
26
26
|
};
|
|
27
27
|
'play-icon-color': {
|
|
28
|
-
cssPropertyType: import('@wix/
|
|
28
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
29
29
|
displayName: string;
|
|
30
30
|
defaultValue: string;
|
|
31
31
|
};
|
|
32
32
|
'play-icon-size': {
|
|
33
|
-
cssPropertyType: import("@wix/
|
|
33
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.length;
|
|
34
34
|
displayName: string;
|
|
35
35
|
defaultValue: string;
|
|
36
36
|
};
|
|
@@ -46,14 +46,14 @@ export declare const controlsConfig: {
|
|
|
46
46
|
displayGroups: {
|
|
47
47
|
fillColors: {
|
|
48
48
|
displayName: string;
|
|
49
|
-
groupType: import('@wix/
|
|
49
|
+
groupType: import('@wix/component-protocol/schema').GroupType;
|
|
50
50
|
cssDataType: {
|
|
51
51
|
items: string[];
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
icon: {
|
|
55
55
|
displayName: string;
|
|
56
|
-
groupType: import('@wix/
|
|
56
|
+
groupType: import('@wix/component-protocol/schema').GroupType;
|
|
57
57
|
cssDataType: {
|
|
58
58
|
items: string[];
|
|
59
59
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const coverMediaConfig: {
|
|
2
|
-
elementType: import('@wix/
|
|
2
|
+
elementType: import('@wix/component-protocol/schema').ElementTypeEnumElementType;
|
|
3
3
|
refElement: {
|
|
4
4
|
selector: string;
|
|
5
5
|
type: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export type Edge = 'before' | 'after';
|
|
2
2
|
export declare const getShapeConfig: (edge: Edge, displayName: string) => {
|
|
3
|
-
cssPropertyType: import('@wix/
|
|
3
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
4
4
|
defaultValue: string;
|
|
5
5
|
displayName: string;
|
|
6
6
|
customEnum: {
|
|
7
|
-
cssPropertyType: import('@wix/
|
|
7
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
8
8
|
options: {
|
|
9
9
|
value: string;
|
|
10
10
|
displayName: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const newTypeConfig: {
|
|
2
2
|
customEnum: {
|
|
3
|
-
cssPropertyType: import('@wix/
|
|
3
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
4
4
|
options: {
|
|
5
5
|
value: string;
|
|
6
6
|
displayName: string;
|
|
@@ -12,5 +12,5 @@ export declare const newTypeConfig: {
|
|
|
12
12
|
};
|
|
13
13
|
displayName: string;
|
|
14
14
|
defaultValue: string;
|
|
15
|
-
cssPropertyType: import('@wix/
|
|
15
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
16
16
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementItem } from '@wix/component-protocol/schema';
|
|
2
2
|
import { elementKeys } from '../constants';
|
|
3
3
|
export declare const dropdownConfig: {
|
|
4
|
-
elementType: import("@wix/
|
|
4
|
+
elementType: import("@wix/component-protocol/schema").ElementTypeEnumElementType.inlineElement;
|
|
5
5
|
inlineElement: {
|
|
6
6
|
selector: string;
|
|
7
7
|
displayName: string;
|
|
@@ -10,7 +10,7 @@ export declare const dropdownConfig: {
|
|
|
10
10
|
};
|
|
11
11
|
displayGroups: {
|
|
12
12
|
dropdownContainerGroup: {
|
|
13
|
-
groupType: import("@wix/
|
|
13
|
+
groupType: import("@wix/component-protocol/schema").GroupType.padding;
|
|
14
14
|
padding: {
|
|
15
15
|
top: string;
|
|
16
16
|
bottom: string;
|
|
@@ -19,7 +19,7 @@ export declare const dropdownConfig: {
|
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
gapGroup: {
|
|
22
|
-
groupType: import("@wix/
|
|
22
|
+
groupType: import("@wix/component-protocol/schema").GroupType.gap;
|
|
23
23
|
displayName: string;
|
|
24
24
|
gap: {
|
|
25
25
|
columnGap: string;
|
|
@@ -27,7 +27,7 @@ export declare const dropdownConfig: {
|
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
borderColorGroup: {
|
|
30
|
-
groupType: import("@wix/
|
|
30
|
+
groupType: import("@wix/component-protocol/schema").GroupType.borderColor;
|
|
31
31
|
borderColor: {
|
|
32
32
|
top: string;
|
|
33
33
|
right: string;
|
|
@@ -36,7 +36,7 @@ export declare const dropdownConfig: {
|
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
borderWidthGroup: {
|
|
39
|
-
groupType: import("@wix/
|
|
39
|
+
groupType: import("@wix/component-protocol/schema").GroupType.borderWidth;
|
|
40
40
|
borderWidth: {
|
|
41
41
|
top: string;
|
|
42
42
|
right: string;
|
|
@@ -45,7 +45,7 @@ export declare const dropdownConfig: {
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
borderStyleGroup: {
|
|
48
|
-
groupType: import("@wix/
|
|
48
|
+
groupType: import("@wix/component-protocol/schema").GroupType.borderStyle;
|
|
49
49
|
borderStyle: {
|
|
50
50
|
top: string;
|
|
51
51
|
right: string;
|
|
@@ -54,7 +54,7 @@ export declare const dropdownConfig: {
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
borderGroup: {
|
|
57
|
-
groupType: import("@wix/
|
|
57
|
+
groupType: import("@wix/component-protocol/schema").GroupType.border;
|
|
58
58
|
border: {
|
|
59
59
|
color: string;
|
|
60
60
|
width: string;
|
|
@@ -62,7 +62,7 @@ export declare const dropdownConfig: {
|
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
layoutGroup: {
|
|
65
|
-
groupType: import("@wix/
|
|
65
|
+
groupType: import("@wix/component-protocol/schema").GroupType.cssDataType;
|
|
66
66
|
cssDataType: {
|
|
67
67
|
items: string[];
|
|
68
68
|
};
|
|
@@ -71,10 +71,10 @@ export declare const dropdownConfig: {
|
|
|
71
71
|
cssCustomProperties: {
|
|
72
72
|
anchor: {
|
|
73
73
|
displayName: string;
|
|
74
|
-
cssPropertyType: import("@wix/
|
|
74
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.customEnum;
|
|
75
75
|
defaultValue: string;
|
|
76
76
|
customEnum: {
|
|
77
|
-
cssPropertyType: import("@wix/
|
|
77
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.string;
|
|
78
78
|
options: ({
|
|
79
79
|
displayName: string;
|
|
80
80
|
value: string;
|
|
@@ -101,10 +101,10 @@ export declare const dropdownConfig: {
|
|
|
101
101
|
};
|
|
102
102
|
align: {
|
|
103
103
|
displayName: string;
|
|
104
|
-
cssPropertyType: import("@wix/
|
|
104
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.customEnum;
|
|
105
105
|
defaultValue: string;
|
|
106
106
|
customEnum: {
|
|
107
|
-
cssPropertyType: import("@wix/
|
|
107
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.string;
|
|
108
108
|
options: {
|
|
109
109
|
displayName: string;
|
|
110
110
|
value: string;
|
|
@@ -113,10 +113,10 @@ export declare const dropdownConfig: {
|
|
|
113
113
|
};
|
|
114
114
|
'items-width': {
|
|
115
115
|
displayName: string;
|
|
116
|
-
cssPropertyType: import("@wix/
|
|
116
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.customEnum;
|
|
117
117
|
defaultValue: string;
|
|
118
118
|
customEnum: {
|
|
119
|
-
cssPropertyType: import("@wix/
|
|
119
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.string;
|
|
120
120
|
options: {
|
|
121
121
|
value: string;
|
|
122
122
|
displayName: string;
|
|
@@ -129,106 +129,106 @@ export declare const dropdownConfig: {
|
|
|
129
129
|
};
|
|
130
130
|
'dropdown-menu-item-text-align': {
|
|
131
131
|
displayName: string;
|
|
132
|
-
cssPropertyType: import("@wix/
|
|
132
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.justifyContent;
|
|
133
133
|
};
|
|
134
134
|
'dropdown-menu-item-container-align': {
|
|
135
135
|
displayName: string;
|
|
136
|
-
cssPropertyType: import("@wix/
|
|
136
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.justifyContent;
|
|
137
137
|
};
|
|
138
138
|
'columns-number': {
|
|
139
139
|
displayName: string;
|
|
140
|
-
cssPropertyType: import("@wix/
|
|
140
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.number;
|
|
141
141
|
number: {
|
|
142
142
|
minimum: number;
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
145
|
'space-above': {
|
|
146
146
|
displayName: string;
|
|
147
|
-
cssPropertyType: import("@wix/
|
|
147
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.rowGap;
|
|
148
148
|
};
|
|
149
149
|
'horizontal-margin': {
|
|
150
150
|
displayName: string;
|
|
151
|
-
cssPropertyType: import("@wix/
|
|
151
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.columnGap;
|
|
152
152
|
};
|
|
153
153
|
'dropdown-container-background': {
|
|
154
|
-
cssPropertyType: import("@wix/
|
|
154
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.background;
|
|
155
155
|
background: {};
|
|
156
156
|
};
|
|
157
157
|
'dropdown-container-box-shadow': {
|
|
158
|
-
cssPropertyType: import("@wix/
|
|
158
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.boxShadow;
|
|
159
159
|
};
|
|
160
160
|
'dropdown-container-border-inline-start-color': {
|
|
161
|
-
cssPropertyType: import("@wix/
|
|
161
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineStartColor;
|
|
162
162
|
};
|
|
163
163
|
'dropdown-container-border-inline-start-style': {
|
|
164
|
-
cssPropertyType: import("@wix/
|
|
164
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineStartStyle;
|
|
165
165
|
};
|
|
166
166
|
'dropdown-container-border-inline-start-width': {
|
|
167
|
-
cssPropertyType: import("@wix/
|
|
167
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineStartWidth;
|
|
168
168
|
};
|
|
169
169
|
'dropdown-container-border-inline-end-color': {
|
|
170
|
-
cssPropertyType: import("@wix/
|
|
170
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineEndColor;
|
|
171
171
|
};
|
|
172
172
|
'dropdown-container-border-inline-end-style': {
|
|
173
|
-
cssPropertyType: import("@wix/
|
|
173
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineEndStyle;
|
|
174
174
|
};
|
|
175
175
|
'dropdown-container-border-inline-end-width': {
|
|
176
|
-
cssPropertyType: import("@wix/
|
|
176
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderInlineEndWidth;
|
|
177
177
|
};
|
|
178
178
|
'dropdown-container-border-top-color': {
|
|
179
|
-
cssPropertyType: import("@wix/
|
|
179
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderTopColor;
|
|
180
180
|
};
|
|
181
181
|
'dropdown-container-border-top-style': {
|
|
182
|
-
cssPropertyType: import("@wix/
|
|
182
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderTopStyle;
|
|
183
183
|
};
|
|
184
184
|
'dropdown-container-border-top-width': {
|
|
185
|
-
cssPropertyType: import("@wix/
|
|
185
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderTopWidth;
|
|
186
186
|
};
|
|
187
187
|
'dropdown-container-border-bottom-color': {
|
|
188
|
-
cssPropertyType: import("@wix/
|
|
188
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderBottomColor;
|
|
189
189
|
};
|
|
190
190
|
'dropdown-container-border-bottom-style': {
|
|
191
|
-
cssPropertyType: import("@wix/
|
|
191
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderBottomStyle;
|
|
192
192
|
};
|
|
193
193
|
'dropdown-container-border-bottom-width': {
|
|
194
|
-
cssPropertyType: import("@wix/
|
|
194
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderBottomWidth;
|
|
195
195
|
};
|
|
196
196
|
'dropdown-container-border-start-start-radius': {
|
|
197
|
-
cssPropertyType: import("@wix/
|
|
197
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderStartStartRadius;
|
|
198
198
|
};
|
|
199
199
|
'dropdown-container-border-start-end-radius': {
|
|
200
|
-
cssPropertyType: import("@wix/
|
|
200
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderStartEndRadius;
|
|
201
201
|
};
|
|
202
202
|
'dropdown-container-border-end-start-radius': {
|
|
203
|
-
cssPropertyType: import("@wix/
|
|
203
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderEndStartRadius;
|
|
204
204
|
};
|
|
205
205
|
'dropdown-container-border-end-end-radius': {
|
|
206
|
-
cssPropertyType: import("@wix/
|
|
206
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.borderEndEndRadius;
|
|
207
207
|
};
|
|
208
208
|
'dropdown-container-padding-top': {
|
|
209
|
-
cssPropertyType: import("@wix/
|
|
209
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.paddingTop;
|
|
210
210
|
};
|
|
211
211
|
'dropdown-container-padding-bottom': {
|
|
212
|
-
cssPropertyType: import("@wix/
|
|
212
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.paddingBottom;
|
|
213
213
|
};
|
|
214
214
|
'dropdown-container-padding-inline-start': {
|
|
215
|
-
cssPropertyType: import("@wix/
|
|
215
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.paddingInlineStart;
|
|
216
216
|
};
|
|
217
217
|
'dropdown-container-padding-inline-end': {
|
|
218
|
-
cssPropertyType: import("@wix/
|
|
218
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.paddingInlineEnd;
|
|
219
219
|
};
|
|
220
220
|
'dropdown-menu-item-horizontal-spacing': {
|
|
221
|
-
cssPropertyType: import("@wix/
|
|
221
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.columnGap;
|
|
222
222
|
};
|
|
223
223
|
'dropdown-menu-item-vertical-spacing': {
|
|
224
|
-
cssPropertyType: import("@wix/
|
|
224
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.rowGap;
|
|
225
225
|
};
|
|
226
226
|
'item-position': {
|
|
227
227
|
displayName: string;
|
|
228
|
-
cssPropertyType: import("@wix/
|
|
228
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.customEnum;
|
|
229
229
|
defaultValue: string;
|
|
230
230
|
customEnum: {
|
|
231
|
-
cssPropertyType: import("@wix/
|
|
231
|
+
cssPropertyType: import("@wix/component-protocol/schema").CssPropertyEnumCssPropertyType.string;
|
|
232
232
|
options: {
|
|
233
233
|
displayName: string;
|
|
234
234
|
value: string;
|
|
@@ -152,5 +152,5 @@ export declare const DefaultButtons: {
|
|
|
152
152
|
isDefault: boolean;
|
|
153
153
|
}[];
|
|
154
154
|
export declare const DisplayConfig: {
|
|
155
|
-
displayValues: import('@wix/
|
|
155
|
+
displayValues: import('@wix/component-protocol/schema').DisplayValueEnumDisplayValue[];
|
|
156
156
|
};
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
export declare const textEffectsInstallation: {
|
|
2
2
|
initialSize: {
|
|
3
3
|
width: {
|
|
4
|
-
sizingType: import('@wix/
|
|
4
|
+
sizingType: import('@wix/component-protocol/schema').SizingType;
|
|
5
5
|
};
|
|
6
6
|
height: {
|
|
7
|
-
sizingType: import('@wix/
|
|
7
|
+
sizingType: import('@wix/component-protocol/schema').SizingType;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
export declare const textEffectsLayout: {
|
|
12
|
-
resizeDirection: import('@wix/
|
|
13
|
-
contentResizeDirection: import('@wix/
|
|
12
|
+
resizeDirection: import('@wix/component-protocol/schema').ResizeDirection;
|
|
13
|
+
contentResizeDirection: import('@wix/component-protocol/schema').ContentResizeDirection;
|
|
14
14
|
disableStretching: boolean;
|
|
15
15
|
disablePositioning: boolean;
|
|
16
16
|
};
|
|
17
17
|
export declare const textEffectsCommonData: {
|
|
18
18
|
direction: {
|
|
19
|
-
dataType: import('@wix/
|
|
19
|
+
dataType: import('@wix/component-protocol/schema').DataType;
|
|
20
20
|
};
|
|
21
21
|
patternScope: {
|
|
22
22
|
displayName: string;
|
|
23
|
-
dataType: import('@wix/
|
|
23
|
+
dataType: import('@wix/component-protocol/schema').DataType;
|
|
24
24
|
textEnum: {
|
|
25
25
|
options: ({
|
|
26
26
|
value: "none";
|
|
@@ -36,9 +36,9 @@ export declare const textEffectsCommonData: {
|
|
|
36
36
|
defaultValue: "none";
|
|
37
37
|
};
|
|
38
38
|
a11y: {
|
|
39
|
-
dataType: import('@wix/
|
|
39
|
+
dataType: import('@wix/component-protocol/schema').DataType;
|
|
40
40
|
a11y: {
|
|
41
|
-
attributes: import('@wix/
|
|
41
|
+
attributes: import('@wix/component-protocol/schema').A11yAttributes[];
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
};
|
|
@@ -58,12 +58,12 @@ export declare const textEffectsBaseCssProperties: {
|
|
|
58
58
|
textTransform: {};
|
|
59
59
|
};
|
|
60
60
|
export declare const textEffectsInteractions: {
|
|
61
|
-
triggers: import('@wix/
|
|
61
|
+
triggers: import('@wix/component-protocol/schema').InteractionsTrigger[];
|
|
62
62
|
};
|
|
63
63
|
export declare const textEffectsPatternCssCustomProperties: {
|
|
64
64
|
'rotation-pattern-intensity': {
|
|
65
65
|
displayName: string;
|
|
66
|
-
cssPropertyType: import('@wix/
|
|
66
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
67
67
|
number: {
|
|
68
68
|
min: string;
|
|
69
69
|
max: string;
|
|
@@ -71,7 +71,7 @@ export declare const textEffectsPatternCssCustomProperties: {
|
|
|
71
71
|
};
|
|
72
72
|
'offset-pattern-intensity': {
|
|
73
73
|
displayName: string;
|
|
74
|
-
cssPropertyType: import('@wix/
|
|
74
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
75
75
|
number: {
|
|
76
76
|
min: string;
|
|
77
77
|
max: string;
|
|
@@ -79,9 +79,9 @@ export declare const textEffectsPatternCssCustomProperties: {
|
|
|
79
79
|
};
|
|
80
80
|
'pattern-preset': {
|
|
81
81
|
displayName: string;
|
|
82
|
-
cssPropertyType: import('@wix/
|
|
82
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
83
83
|
customEnum: {
|
|
84
|
-
cssPropertyType: import('@wix/
|
|
84
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
85
85
|
options: ({
|
|
86
86
|
value: "Fridge Magnet" | "Wave" | "Bounce";
|
|
87
87
|
displayName: "Fridge Magnet" | "Wave" | "Bounce";
|
|
@@ -93,9 +93,9 @@ export declare const textEffectsPatternCssCustomProperties: {
|
|
|
93
93
|
};
|
|
94
94
|
'is-capitalize': {
|
|
95
95
|
displayName: string;
|
|
96
|
-
cssPropertyType: import('@wix/
|
|
96
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
97
97
|
customEnum: {
|
|
98
|
-
cssPropertyType: import('@wix/
|
|
98
|
+
cssPropertyType: import('@wix/component-protocol/schema').CssPropertyEnumCssPropertyType;
|
|
99
99
|
options: {
|
|
100
100
|
value: string;
|
|
101
101
|
displayName: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { MouseEvent } from 'react';
|
|
2
2
|
import { TransparentVideoProps, VideoEndType } from './TransparentVideo.types';
|
|
3
3
|
export declare function useTransparentVideo(props: TransparentVideoProps): {
|
|
4
|
-
a11y: Pick<typeof import('@wix/
|
|
4
|
+
a11y: Pick<typeof import('@wix/component-protocol/schema').A11yAttributes, "ariaLabel"> | undefined;
|
|
5
5
|
className: string | undefined;
|
|
6
6
|
canvasRef: import('react').RefObject<HTMLCanvasElement>;
|
|
7
7
|
isMuted: boolean;
|
|
@@ -423,6 +423,8 @@ var ComponentType;
|
|
|
423
423
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
424
424
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
425
425
|
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
426
|
+
ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
|
|
427
|
+
ComponentType2["APP_TOOLS"] = "APP_TOOLS";
|
|
426
428
|
})(ComponentType || (ComponentType = {}));
|
|
427
429
|
var AuthType;
|
|
428
430
|
(function(AuthType2) {
|
|
@@ -441,12 +443,35 @@ var DispatchHttpMethod;
|
|
|
441
443
|
DispatchHttpMethod2["HEAD"] = "HEAD";
|
|
442
444
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
443
445
|
})(DispatchHttpMethod || (DispatchHttpMethod = {}));
|
|
446
|
+
var ResponseBodyDecoding;
|
|
447
|
+
(function(ResponseBodyDecoding2) {
|
|
448
|
+
ResponseBodyDecoding2["UNKNOWN_RESPONSE_BODY_DECODING"] = "UNKNOWN_RESPONSE_BODY_DECODING";
|
|
449
|
+
ResponseBodyDecoding2["BASE64_TEXT"] = "BASE64_TEXT";
|
|
450
|
+
})(ResponseBodyDecoding || (ResponseBodyDecoding = {}));
|
|
451
|
+
var DurableCredentialMode;
|
|
452
|
+
(function(DurableCredentialMode2) {
|
|
453
|
+
DurableCredentialMode2["UNKNOWN_DURABLE_CREDENTIAL_MODE"] = "UNKNOWN_DURABLE_CREDENTIAL_MODE";
|
|
454
|
+
DurableCredentialMode2["REFRESH_TOKEN"] = "REFRESH_TOKEN";
|
|
455
|
+
DurableCredentialMode2["LONG_LIVED_ACCESS_TOKEN"] = "LONG_LIVED_ACCESS_TOKEN";
|
|
456
|
+
})(DurableCredentialMode || (DurableCredentialMode = {}));
|
|
444
457
|
var IdentityHttpMethod;
|
|
445
458
|
(function(IdentityHttpMethod2) {
|
|
446
459
|
IdentityHttpMethod2["UNKNOWN_IDENTITY_HTTP_METHOD"] = "UNKNOWN_IDENTITY_HTTP_METHOD";
|
|
447
460
|
IdentityHttpMethod2["GET"] = "GET";
|
|
448
461
|
IdentityHttpMethod2["POST"] = "POST";
|
|
449
462
|
})(IdentityHttpMethod || (IdentityHttpMethod = {}));
|
|
463
|
+
var RevocationBodyStyle;
|
|
464
|
+
(function(RevocationBodyStyle2) {
|
|
465
|
+
RevocationBodyStyle2["UNKNOWN_REVOCATION_BODY_STYLE"] = "UNKNOWN_REVOCATION_BODY_STYLE";
|
|
466
|
+
RevocationBodyStyle2["FORM"] = "FORM";
|
|
467
|
+
RevocationBodyStyle2["JSON"] = "JSON";
|
|
468
|
+
})(RevocationBodyStyle || (RevocationBodyStyle = {}));
|
|
469
|
+
var RevocationHttpMethod;
|
|
470
|
+
(function(RevocationHttpMethod2) {
|
|
471
|
+
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
472
|
+
RevocationHttpMethod2["POST"] = "POST";
|
|
473
|
+
RevocationHttpMethod2["DELETE"] = "DELETE";
|
|
474
|
+
})(RevocationHttpMethod || (RevocationHttpMethod = {}));
|
|
450
475
|
var ScopeSeparator;
|
|
451
476
|
(function(ScopeSeparator2) {
|
|
452
477
|
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
@@ -459,6 +484,41 @@ var TokenEndpointAuthMethod;
|
|
|
459
484
|
TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
|
|
460
485
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
461
486
|
})(TokenEndpointAuthMethod || (TokenEndpointAuthMethod = {}));
|
|
487
|
+
var ReplayProtection;
|
|
488
|
+
(function(ReplayProtection2) {
|
|
489
|
+
ReplayProtection2["UNKNOWN_REPLAY_PROTECTION"] = "UNKNOWN_REPLAY_PROTECTION";
|
|
490
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
491
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
492
|
+
})(ReplayProtection || (ReplayProtection = {}));
|
|
493
|
+
var SignatureEncoding;
|
|
494
|
+
(function(SignatureEncoding2) {
|
|
495
|
+
SignatureEncoding2["UNKNOWN_SIGNATURE_ENCODING"] = "UNKNOWN_SIGNATURE_ENCODING";
|
|
496
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
497
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
498
|
+
})(SignatureEncoding || (SignatureEncoding = {}));
|
|
499
|
+
var SignedPayload;
|
|
500
|
+
(function(SignedPayload2) {
|
|
501
|
+
SignedPayload2["UNKNOWN_SIGNED_PAYLOAD"] = "UNKNOWN_SIGNED_PAYLOAD";
|
|
502
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
503
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
504
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
505
|
+
})(SignedPayload || (SignedPayload = {}));
|
|
506
|
+
var VerificationMethod;
|
|
507
|
+
(function(VerificationMethod2) {
|
|
508
|
+
VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
|
|
509
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
510
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
511
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
512
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
513
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
514
|
+
})(VerificationMethod || (VerificationMethod = {}));
|
|
515
|
+
var VerificationSource;
|
|
516
|
+
(function(VerificationSource2) {
|
|
517
|
+
VerificationSource2["UNKNOWN_VERIFICATION_SOURCE"] = "UNKNOWN_VERIFICATION_SOURCE";
|
|
518
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
519
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
520
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
521
|
+
})(VerificationSource || (VerificationSource = {}));
|
|
462
522
|
var Type;
|
|
463
523
|
(function(Type2) {
|
|
464
524
|
Type2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
@@ -1891,6 +1951,7 @@ var Tag;
|
|
|
1891
1951
|
Tag2["OWNER_CHECKOUT"] = "OWNER_CHECKOUT";
|
|
1892
1952
|
Tag2["ECOM_PREVIEW_CHECKOUT"] = "ECOM_PREVIEW_CHECKOUT";
|
|
1893
1953
|
Tag2["ALL_CATEGORIES"] = "ALL_CATEGORIES";
|
|
1954
|
+
Tag2["ECOM_TAX_GROUPS"] = "ECOM_TAX_GROUPS";
|
|
1894
1955
|
})(Tag || (Tag = {}));
|
|
1895
1956
|
var ThumbnailType;
|
|
1896
1957
|
(function(ThumbnailType2) {
|
|
@@ -2578,6 +2639,10 @@ var Exposure;
|
|
|
2578
2639
|
Exposure2["INTERNAL"] = "INTERNAL";
|
|
2579
2640
|
Exposure2["PUBLIC"] = "PUBLIC";
|
|
2580
2641
|
})(Exposure || (Exposure = {}));
|
|
2642
|
+
var AnimationType;
|
|
2643
|
+
(function(AnimationType2) {
|
|
2644
|
+
AnimationType2["VIEW"] = "VIEW";
|
|
2645
|
+
})(AnimationType || (AnimationType = {}));
|
|
2581
2646
|
var AppType;
|
|
2582
2647
|
(function(AppType2) {
|
|
2583
2648
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
@@ -2696,12 +2761,38 @@ var LineStyle;
|
|
|
2696
2761
|
LineStyle2["DASHED"] = "DASHED";
|
|
2697
2762
|
LineStyle2["DOTTED"] = "DOTTED";
|
|
2698
2763
|
})(LineStyle || (LineStyle = {}));
|
|
2764
|
+
var LineCap;
|
|
2765
|
+
(function(LineCap2) {
|
|
2766
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
2767
|
+
LineCap2["ROUND"] = "ROUND";
|
|
2768
|
+
})(LineCap || (LineCap = {}));
|
|
2699
2769
|
var DividerDataWidth;
|
|
2700
2770
|
(function(DividerDataWidth2) {
|
|
2701
2771
|
DividerDataWidth2["LARGE"] = "LARGE";
|
|
2702
2772
|
DividerDataWidth2["MEDIUM"] = "MEDIUM";
|
|
2703
2773
|
DividerDataWidth2["SMALL"] = "SMALL";
|
|
2704
2774
|
})(DividerDataWidth || (DividerDataWidth = {}));
|
|
2775
|
+
var EntranceEffectType;
|
|
2776
|
+
(function(EntranceEffectType2) {
|
|
2777
|
+
EntranceEffectType2["FADE"] = "FADE";
|
|
2778
|
+
EntranceEffectType2["ARC"] = "ARC";
|
|
2779
|
+
EntranceEffectType2["BLUR"] = "BLUR";
|
|
2780
|
+
EntranceEffectType2["BOUNCE"] = "BOUNCE";
|
|
2781
|
+
EntranceEffectType2["DROP"] = "DROP";
|
|
2782
|
+
EntranceEffectType2["EXPAND"] = "EXPAND";
|
|
2783
|
+
EntranceEffectType2["FLIP"] = "FLIP";
|
|
2784
|
+
EntranceEffectType2["FLOAT"] = "FLOAT";
|
|
2785
|
+
EntranceEffectType2["FOLD"] = "FOLD";
|
|
2786
|
+
EntranceEffectType2["GLIDE"] = "GLIDE";
|
|
2787
|
+
EntranceEffectType2["REVEAL"] = "REVEAL";
|
|
2788
|
+
EntranceEffectType2["SHAPE"] = "SHAPE";
|
|
2789
|
+
EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
|
|
2790
|
+
EntranceEffectType2["SLIDE"] = "SLIDE";
|
|
2791
|
+
EntranceEffectType2["SPIN"] = "SPIN";
|
|
2792
|
+
EntranceEffectType2["TILT"] = "TILT";
|
|
2793
|
+
EntranceEffectType2["TURN"] = "TURN";
|
|
2794
|
+
EntranceEffectType2["WINK"] = "WINK";
|
|
2795
|
+
})(EntranceEffectType || (EntranceEffectType = {}));
|
|
2705
2796
|
var PDFSettingsViewMode;
|
|
2706
2797
|
(function(PDFSettingsViewMode2) {
|
|
2707
2798
|
PDFSettingsViewMode2["NONE"] = "NONE";
|
|
@@ -2829,6 +2920,22 @@ var StylesPosition;
|
|
|
2829
2920
|
StylesPosition2["TOP"] = "TOP";
|
|
2830
2921
|
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
2831
2922
|
})(StylesPosition || (StylesPosition = {}));
|
|
2923
|
+
var LoopEffectType;
|
|
2924
|
+
(function(LoopEffectType2) {
|
|
2925
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
2926
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
2927
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
2928
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
2929
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
2930
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
2931
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
2932
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
2933
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
2934
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
2935
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
2936
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
2937
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
2938
|
+
})(LoopEffectType || (LoopEffectType = {}));
|
|
2832
2939
|
var MapType;
|
|
2833
2940
|
(function(MapType2) {
|
|
2834
2941
|
MapType2["ROADMAP"] = "ROADMAP";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2470.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
"@radix-ui/react-accordion": "^1.2.11",
|
|
78
78
|
"@vimeo/player": "^2.20.1",
|
|
79
79
|
"@vis.gl/react-google-maps": "^1.5.2",
|
|
80
|
-
"@wix/ambassador-devcenter-v1-component-type-data": "^1.0.
|
|
80
|
+
"@wix/ambassador-devcenter-v1-component-type-data": "^1.0.506",
|
|
81
81
|
"@wix/design-system-illustrations": "^2.19.0",
|
|
82
82
|
"@wix/sdk": "^1.21.14",
|
|
83
83
|
"@wix/services-manager-react": "^0.1.27",
|
|
84
84
|
"@wix/site-service-rendering-context": "^1.0.1",
|
|
85
|
-
"@wix/site-ui": "1.
|
|
85
|
+
"@wix/site-ui": "1.208.0",
|
|
86
86
|
"@wix/video": "^1.85.0",
|
|
87
|
-
"@wix/viewer-service-consent-policy": "^1.0.
|
|
87
|
+
"@wix/viewer-service-consent-policy": "^1.0.101",
|
|
88
88
|
"@wix/web-bi-logger": "^2.1.29",
|
|
89
89
|
"@wix/wix-ui-icons-common": "^3.173.0",
|
|
90
90
|
"bidi-js": "^1.0.3",
|
|
@@ -140,14 +140,14 @@
|
|
|
140
140
|
"@wix/viewer-playwright-app": "^1.0.730",
|
|
141
141
|
"@wix/viewer-service-anchors": "^1.0.40",
|
|
142
142
|
"@wix/viewer-service-environment": "^1.0.47",
|
|
143
|
-
"@wix/viewer-service-link-utils": "^1.0.
|
|
143
|
+
"@wix/viewer-service-link-utils": "^1.0.63",
|
|
144
144
|
"@wix/viewer-service-pages": "^1.0.9",
|
|
145
145
|
"@wix/viewer-service-renderer-configuration": "^1.0.7",
|
|
146
146
|
"@wix/viewer-service-sdk-state": "^1.0.28",
|
|
147
|
-
"@wix/viewer-service-site-scroll-blocker": "^1.0.
|
|
147
|
+
"@wix/viewer-service-site-scroll-blocker": "^1.0.65",
|
|
148
148
|
"@wix/viewer-service-topology": "^1.0.26",
|
|
149
149
|
"@wix/viewer-service-translations": "^1.0.23",
|
|
150
|
-
"@wix/viewer-service-url": "^1.0.
|
|
150
|
+
"@wix/viewer-service-url": "^1.0.70",
|
|
151
151
|
"astro": "^5.16.6",
|
|
152
152
|
"clsx": "2.0.0",
|
|
153
153
|
"react-aria-components": "^1.11.0",
|
|
@@ -197,5 +197,5 @@
|
|
|
197
197
|
"registry": "https://registry.npmjs.org/",
|
|
198
198
|
"access": "public"
|
|
199
199
|
},
|
|
200
|
-
"falconPackageHash": "
|
|
200
|
+
"falconPackageHash": "04f00361b008ac42476b8f5565b484e6768b526174d943677bb04e8e"
|
|
201
201
|
}
|