@wix/editor-react-components 1.2530.0 → 1.2532.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/Menu/constants.d.ts +4 -0
- package/dist/site/components/Menu/manifest.js +36 -8
- package/dist/site/components/Menu/manifestConfigs/dropdownConfig.d.ts +14 -0
- package/dist/site/components/Slideshow/css.css +3 -0
- package/dist/site/components/chunks/constants27.js +5 -1
- package/package.json +2 -2
|
@@ -178,6 +178,7 @@ export declare const DisplayNames: {
|
|
|
178
178
|
};
|
|
179
179
|
displayGroups: {
|
|
180
180
|
gapGroup: string;
|
|
181
|
+
cornersGroup: string;
|
|
181
182
|
};
|
|
182
183
|
};
|
|
183
184
|
dropdownItem: {
|
|
@@ -200,6 +201,9 @@ export declare const DisplayNames: {
|
|
|
200
201
|
};
|
|
201
202
|
hamburgerMenu: {
|
|
202
203
|
elementDisplayName: string;
|
|
204
|
+
displayGroups: {
|
|
205
|
+
cornersGroup: string;
|
|
206
|
+
};
|
|
203
207
|
cssCustomProperties: {
|
|
204
208
|
'hamburger-wrapper-width': string;
|
|
205
209
|
'wrapper-position': string;
|
|
@@ -177,6 +177,16 @@ const dropdownConfig = {
|
|
|
177
177
|
style: "displayGroups.borderStyleGroup"
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
|
+
cornersGroup: {
|
|
181
|
+
groupType: DISPLAY_GROUPS.GROUP_TYPE.borderRadius,
|
|
182
|
+
displayName: DisplayNames.dropdown.displayGroups.cornersGroup,
|
|
183
|
+
borderRadius: {
|
|
184
|
+
topLeft: "dropdown-container-border-start-start-radius",
|
|
185
|
+
topRight: "dropdown-container-border-start-end-radius",
|
|
186
|
+
bottomLeft: "dropdown-container-border-end-start-radius",
|
|
187
|
+
bottomRight: "dropdown-container-border-end-end-radius"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
180
190
|
layoutGroup: {
|
|
181
191
|
groupType: DISPLAY_GROUPS.GROUP_TYPE.cssDataType,
|
|
182
192
|
cssDataType: {
|
|
@@ -356,16 +366,20 @@ const dropdownConfig = {
|
|
|
356
366
|
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderBottomWidth
|
|
357
367
|
},
|
|
358
368
|
"dropdown-container-border-start-start-radius": {
|
|
359
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartStartRadius
|
|
369
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartStartRadius,
|
|
370
|
+
defaultValue: "0px"
|
|
360
371
|
},
|
|
361
372
|
"dropdown-container-border-start-end-radius": {
|
|
362
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartEndRadius
|
|
373
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartEndRadius,
|
|
374
|
+
defaultValue: "0px"
|
|
363
375
|
},
|
|
364
376
|
"dropdown-container-border-end-start-radius": {
|
|
365
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndStartRadius
|
|
377
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndStartRadius,
|
|
378
|
+
defaultValue: "0px"
|
|
366
379
|
},
|
|
367
380
|
"dropdown-container-border-end-end-radius": {
|
|
368
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndEndRadius
|
|
381
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndEndRadius,
|
|
382
|
+
defaultValue: "0px"
|
|
369
383
|
},
|
|
370
384
|
"dropdown-container-padding-top": {
|
|
371
385
|
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.paddingTop
|
|
@@ -952,6 +966,16 @@ const hamburgerMenuConfig = {
|
|
|
952
966
|
width: "displayGroups.borderWidthGroup",
|
|
953
967
|
style: "displayGroups.borderStyleGroup"
|
|
954
968
|
}
|
|
969
|
+
},
|
|
970
|
+
cornersGroup: {
|
|
971
|
+
groupType: DISPLAY_GROUPS.GROUP_TYPE.borderRadius,
|
|
972
|
+
displayName: DisplayNames.hamburgerMenu.displayGroups.cornersGroup,
|
|
973
|
+
borderRadius: {
|
|
974
|
+
topLeft: "border-start-start-radius",
|
|
975
|
+
topRight: "border-start-end-radius",
|
|
976
|
+
bottomLeft: "border-end-start-radius",
|
|
977
|
+
bottomRight: "border-end-end-radius"
|
|
978
|
+
}
|
|
955
979
|
}
|
|
956
980
|
},
|
|
957
981
|
cssCustomProperties: {
|
|
@@ -1144,16 +1168,20 @@ const hamburgerMenuConfig = {
|
|
|
1144
1168
|
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderInlineEndWidth
|
|
1145
1169
|
},
|
|
1146
1170
|
"border-start-start-radius": {
|
|
1147
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartStartRadius
|
|
1171
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartStartRadius,
|
|
1172
|
+
defaultValue: "0px"
|
|
1148
1173
|
},
|
|
1149
1174
|
"border-start-end-radius": {
|
|
1150
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartEndRadius
|
|
1175
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderStartEndRadius,
|
|
1176
|
+
defaultValue: "0px"
|
|
1151
1177
|
},
|
|
1152
1178
|
"border-end-start-radius": {
|
|
1153
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndStartRadius
|
|
1179
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndStartRadius,
|
|
1180
|
+
defaultValue: "0px"
|
|
1154
1181
|
},
|
|
1155
1182
|
"border-end-end-radius": {
|
|
1156
|
-
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndEndRadius
|
|
1183
|
+
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.borderEndEndRadius,
|
|
1184
|
+
defaultValue: "0px"
|
|
1157
1185
|
},
|
|
1158
1186
|
"padding-top": {
|
|
1159
1187
|
cssPropertyType: CSS_PROPERTIES.CSS_PROPERTY_TYPE.paddingTop
|
|
@@ -61,6 +61,16 @@ export declare const dropdownConfig: {
|
|
|
61
61
|
style: string;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
cornersGroup: {
|
|
65
|
+
groupType: import("@wix/ambassador-devcenter-v1-component-type-data/types").GroupType.borderRadius;
|
|
66
|
+
displayName: string;
|
|
67
|
+
borderRadius: {
|
|
68
|
+
topLeft: string;
|
|
69
|
+
topRight: string;
|
|
70
|
+
bottomLeft: string;
|
|
71
|
+
bottomRight: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
64
74
|
layoutGroup: {
|
|
65
75
|
groupType: import("@wix/ambassador-devcenter-v1-component-type-data/types").GroupType.cssDataType;
|
|
66
76
|
cssDataType: {
|
|
@@ -195,15 +205,19 @@ export declare const dropdownConfig: {
|
|
|
195
205
|
};
|
|
196
206
|
'dropdown-container-border-start-start-radius': {
|
|
197
207
|
cssPropertyType: import("@wix/ambassador-devcenter-v1-component-type-data/types").CssPropertyType.borderStartStartRadius;
|
|
208
|
+
defaultValue: string;
|
|
198
209
|
};
|
|
199
210
|
'dropdown-container-border-start-end-radius': {
|
|
200
211
|
cssPropertyType: import("@wix/ambassador-devcenter-v1-component-type-data/types").CssPropertyType.borderStartEndRadius;
|
|
212
|
+
defaultValue: string;
|
|
201
213
|
};
|
|
202
214
|
'dropdown-container-border-end-start-radius': {
|
|
203
215
|
cssPropertyType: import("@wix/ambassador-devcenter-v1-component-type-data/types").CssPropertyType.borderEndStartRadius;
|
|
216
|
+
defaultValue: string;
|
|
204
217
|
};
|
|
205
218
|
'dropdown-container-border-end-end-radius': {
|
|
206
219
|
cssPropertyType: import("@wix/ambassador-devcenter-v1-component-type-data/types").CssPropertyType.borderEndEndRadius;
|
|
220
|
+
defaultValue: string;
|
|
207
221
|
};
|
|
208
222
|
'dropdown-container-padding-top': {
|
|
209
223
|
cssPropertyType: import("@wix/ambassador-devcenter-v1-component-type-data/types").CssPropertyType.paddingTop;
|
|
@@ -253,7 +253,8 @@ const DisplayNames = {
|
|
|
253
253
|
belowItems: "Below items"
|
|
254
254
|
},
|
|
255
255
|
displayGroups: {
|
|
256
|
-
gapGroup: "Space between items"
|
|
256
|
+
gapGroup: "Space between items",
|
|
257
|
+
cornersGroup: "Corner radius"
|
|
257
258
|
}
|
|
258
259
|
},
|
|
259
260
|
dropdownItem: {
|
|
@@ -276,6 +277,9 @@ const DisplayNames = {
|
|
|
276
277
|
},
|
|
277
278
|
hamburgerMenu: {
|
|
278
279
|
elementDisplayName: "Hamburger menu",
|
|
280
|
+
displayGroups: {
|
|
281
|
+
cornersGroup: "Corner radius"
|
|
282
|
+
},
|
|
279
283
|
cssCustomProperties: {
|
|
280
284
|
"hamburger-wrapper-width": "Width",
|
|
281
285
|
"wrapper-position": "Position",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2532.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -197,5 +197,5 @@
|
|
|
197
197
|
"registry": "https://registry.npmjs.org/",
|
|
198
198
|
"access": "public"
|
|
199
199
|
},
|
|
200
|
-
"falconPackageHash": "
|
|
200
|
+
"falconPackageHash": "3a9f602b2c8b57b83ac4939557d825b7f68ee99bcf89e68a3e6282a1"
|
|
201
201
|
}
|