@wix/editor-react-components 1.2297.0 → 1.2299.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.
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { ResolveManifestOverrides } from '../../../utils/ResolveManifestOverrides';
|
|
3
2
|
import { RepeaterProps } from './types';
|
|
4
3
|
export default function RepeaterPreview(props: RepeaterProps): React.JSX.Element;
|
|
5
|
-
export declare const resolveManifestOverrides: ResolveManifestOverrides;
|
|
@@ -58,8 +58,6 @@ export declare const DisplayNames: {
|
|
|
58
58
|
readonly emptyState: "Empty State";
|
|
59
59
|
readonly emptyState_title: "Title";
|
|
60
60
|
readonly emptyState_description: "Description";
|
|
61
|
-
readonly hasMore: "Has More Items";
|
|
62
|
-
readonly isLoading: "Is Loading";
|
|
63
61
|
readonly loadMore: "Load More";
|
|
64
62
|
};
|
|
65
63
|
readonly customActions: {
|
|
@@ -2,8 +2,8 @@ import { I as INTERACTIONS, L as LAYOUT, a as ACTIONS, C as CSS_PROPERTIES, b as
|
|
|
2
2
|
import { g as getSelector } from "../chunks/manifest.js";
|
|
3
3
|
import { p as presets, a as DisplayNames, D as DEFAULT_ITEMS_PER_ROW, s as semanticClassNames } from "../chunks/constants23.js";
|
|
4
4
|
const manifest = {
|
|
5
|
-
id: "
|
|
6
|
-
type: "wixEditorElements.
|
|
5
|
+
id: "3f08612b-67ee-4b00-9340-9323e660aa60",
|
|
6
|
+
type: "wixEditorElements.Repeater",
|
|
7
7
|
description: "A container component that renders a collection of items from a data source using a repeated template layout",
|
|
8
8
|
installation: {
|
|
9
9
|
presets: {
|
|
@@ -35,20 +35,13 @@ const manifest = {
|
|
|
35
35
|
hide: [presets.slider_vertical, presets.cards_off]
|
|
36
36
|
},
|
|
37
37
|
data: {
|
|
38
|
-
hide: [
|
|
39
|
-
"emptyState",
|
|
40
|
-
"direction",
|
|
41
|
-
"renderItem",
|
|
42
|
-
"isLoading",
|
|
43
|
-
"hasMore",
|
|
44
|
-
"isLoadingFunc",
|
|
45
|
-
"hasMoreFunc",
|
|
46
|
-
"onLoadMoreFunc",
|
|
47
|
-
"activeItem"
|
|
48
|
-
]
|
|
38
|
+
hide: ["emptyState", "direction", "renderItem", "activeItem"]
|
|
49
39
|
},
|
|
50
40
|
actions: {
|
|
51
41
|
hide: ["manageItems"]
|
|
42
|
+
},
|
|
43
|
+
cssCustomProperties: {
|
|
44
|
+
hide: ["items-per-row", "column-count"]
|
|
52
45
|
}
|
|
53
46
|
},
|
|
54
47
|
data: {
|
|
@@ -78,15 +71,6 @@ const manifest = {
|
|
|
78
71
|
}
|
|
79
72
|
}
|
|
80
73
|
},
|
|
81
|
-
isLoading: {
|
|
82
|
-
displayName: DisplayNames.root.data.isLoading,
|
|
83
|
-
dataType: DATA.DATA_TYPE.booleanValue
|
|
84
|
-
},
|
|
85
|
-
hasMore: {
|
|
86
|
-
displayName: DisplayNames.root.data.hasMore,
|
|
87
|
-
dataType: DATA.DATA_TYPE.booleanValue,
|
|
88
|
-
defaultValue: false
|
|
89
|
-
},
|
|
90
74
|
onLoadMore: {
|
|
91
75
|
displayName: DisplayNames.root.data.loadMore,
|
|
92
76
|
dataType: DATA.DATA_TYPE.function,
|
|
@@ -94,21 +78,6 @@ const manifest = {
|
|
|
94
78
|
async: true
|
|
95
79
|
}
|
|
96
80
|
},
|
|
97
|
-
isLoadingFunc: {
|
|
98
|
-
displayName: DisplayNames.root.data.isLoading,
|
|
99
|
-
dataType: DATA.DATA_TYPE.function,
|
|
100
|
-
[DATA.DATA_TYPE.function]: {}
|
|
101
|
-
},
|
|
102
|
-
hasMoreFunc: {
|
|
103
|
-
displayName: DisplayNames.root.data.hasMore,
|
|
104
|
-
dataType: DATA.DATA_TYPE.function,
|
|
105
|
-
[DATA.DATA_TYPE.function]: {}
|
|
106
|
-
},
|
|
107
|
-
onLoadMoreFunc: {
|
|
108
|
-
displayName: DisplayNames.root.data.loadMore,
|
|
109
|
-
dataType: DATA.DATA_TYPE.function,
|
|
110
|
-
[DATA.DATA_TYPE.function]: {}
|
|
111
|
-
},
|
|
112
81
|
a11y: {
|
|
113
82
|
dataType: DATA.DATA_TYPE.a11y,
|
|
114
83
|
[DATA.DATA_TYPE.a11y]: {
|
|
@@ -160,12 +129,6 @@ const manifest = {
|
|
|
160
129
|
selectedItemIndex: "activeItem"
|
|
161
130
|
}
|
|
162
131
|
},
|
|
163
|
-
itemsPerRowGroup: {
|
|
164
|
-
groupType: DISPLAY_GROUPS.GROUP_TYPE.cssDataType,
|
|
165
|
-
cssDataType: {
|
|
166
|
-
items: ["items-per-row", "column-count"]
|
|
167
|
-
}
|
|
168
|
-
},
|
|
169
132
|
gapGroup: {
|
|
170
133
|
displayName: "Spacing",
|
|
171
134
|
groupType: DISPLAY_GROUPS.GROUP_TYPE.gap,
|
|
@@ -432,9 +395,7 @@ const manifest = {
|
|
|
432
395
|
"column-min-width",
|
|
433
396
|
"row-min-height",
|
|
434
397
|
"keep-rows-equal",
|
|
435
|
-
"single-row-behavior"
|
|
436
|
-
"items-per-row",
|
|
437
|
-
"column-count"
|
|
398
|
+
"single-row-behavior"
|
|
438
399
|
]
|
|
439
400
|
}
|
|
440
401
|
}
|
|
@@ -453,8 +414,6 @@ const manifest = {
|
|
|
453
414
|
displayFilters: {
|
|
454
415
|
cssCustomProperties: {
|
|
455
416
|
hide: [
|
|
456
|
-
"items-per-row",
|
|
457
|
-
"column-count",
|
|
458
417
|
"column-gap",
|
|
459
418
|
"scroll-snap-align",
|
|
460
419
|
"show-scrollbar",
|
|
@@ -488,8 +447,6 @@ const manifest = {
|
|
|
488
447
|
displayFilters: {
|
|
489
448
|
cssCustomProperties: {
|
|
490
449
|
hide: [
|
|
491
|
-
"items-per-row",
|
|
492
|
-
"column-count",
|
|
493
450
|
"row-gap",
|
|
494
451
|
"overflow-content",
|
|
495
452
|
"column-min-width",
|
|
@@ -521,8 +478,6 @@ const manifest = {
|
|
|
521
478
|
displayFilters: {
|
|
522
479
|
cssCustomProperties: {
|
|
523
480
|
hide: [
|
|
524
|
-
"items-per-row",
|
|
525
|
-
"column-count",
|
|
526
481
|
"column-gap",
|
|
527
482
|
"overflow-content",
|
|
528
483
|
"column-min-width",
|
|
@@ -555,12 +510,7 @@ const manifest = {
|
|
|
555
510
|
},
|
|
556
511
|
displayFilters: {
|
|
557
512
|
cssCustomProperties: {
|
|
558
|
-
hide: [
|
|
559
|
-
"items-per-row",
|
|
560
|
-
"column-count",
|
|
561
|
-
"scroll-snap-align",
|
|
562
|
-
"show-scrollbar"
|
|
563
|
-
]
|
|
513
|
+
hide: ["scroll-snap-align", "show-scrollbar"]
|
|
564
514
|
},
|
|
565
515
|
cssProperties: {
|
|
566
516
|
hide: ["justifyContent"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2299.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@vimeo/player": "^2.20.1",
|
|
77
77
|
"@vis.gl/react-google-maps": "^1.5.2",
|
|
78
78
|
"@wix/services-manager-react": "^0.1.27",
|
|
79
|
-
"@wix/site-ui": "1.
|
|
79
|
+
"@wix/site-ui": "1.139.0",
|
|
80
80
|
"@wix/video": "^1.85.0",
|
|
81
81
|
"@wix/wix-ui-icons-common": "^3.173.0",
|
|
82
82
|
"bidi-js": "^1.0.3",
|
|
@@ -186,5 +186,5 @@
|
|
|
186
186
|
"registry": "https://registry.npmjs.org/",
|
|
187
187
|
"access": "public"
|
|
188
188
|
},
|
|
189
|
-
"falconPackageHash": "
|
|
189
|
+
"falconPackageHash": "98319e4961b1a9aafc7eb584929b7a5b4471ba8811fd281f1e739770"
|
|
190
190
|
}
|