@wix/editor-react-components 1.2244.0 → 1.2246.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.
|
@@ -177,7 +177,7 @@ const manifest = {
|
|
|
177
177
|
hide: ["animatedIcon"]
|
|
178
178
|
},
|
|
179
179
|
data: {
|
|
180
|
-
hide: ["label", "iconCollapsed", "link"]
|
|
180
|
+
hide: ["label", "iconCollapsed", "link", "disabled"]
|
|
181
181
|
},
|
|
182
182
|
cssProperties: {
|
|
183
183
|
hide: ["columnGap", "rowGap", "display"]
|
|
@@ -189,7 +189,8 @@ const manifest = {
|
|
|
189
189
|
data: {
|
|
190
190
|
label: { disableEditing: true },
|
|
191
191
|
iconCollapsed: { disableEditing: true },
|
|
192
|
-
link: { disableEditing: true }
|
|
192
|
+
link: { disableEditing: true },
|
|
193
|
+
disabled: { disableEditing: true }
|
|
193
194
|
},
|
|
194
195
|
cssProperties: {
|
|
195
196
|
columnGap: { disableEditing: true },
|
|
@@ -117,7 +117,14 @@ const manifest = {
|
|
|
117
117
|
hide: ["label"]
|
|
118
118
|
},
|
|
119
119
|
data: {
|
|
120
|
-
hide: [
|
|
120
|
+
hide: [
|
|
121
|
+
"a11y",
|
|
122
|
+
"link",
|
|
123
|
+
"label",
|
|
124
|
+
"iconCollapsed",
|
|
125
|
+
"direction",
|
|
126
|
+
"disabled"
|
|
127
|
+
]
|
|
121
128
|
},
|
|
122
129
|
cssProperties: {
|
|
123
130
|
hide: ["rowGap", "columnGap"]
|
|
@@ -131,7 +138,8 @@ const manifest = {
|
|
|
131
138
|
link: { disableEditing: true },
|
|
132
139
|
label: { disableEditing: true },
|
|
133
140
|
iconCollapsed: { disableEditing: true },
|
|
134
|
-
direction: { disableEditing: true }
|
|
141
|
+
direction: { disableEditing: true },
|
|
142
|
+
disabled: { disableEditing: true }
|
|
135
143
|
},
|
|
136
144
|
cssProperties: {
|
|
137
145
|
insetInlineEnd: { defaultValue: playButtonDefaults.insetInlineEnd },
|
|
@@ -773,7 +773,7 @@ const displayFilters = {
|
|
|
773
773
|
hide: ["label"]
|
|
774
774
|
},
|
|
775
775
|
data: {
|
|
776
|
-
hide: ["label", "link", "iconCollapsed"]
|
|
776
|
+
hide: ["label", "link", "iconCollapsed", "disabled"]
|
|
777
777
|
},
|
|
778
778
|
cssCustomProperties: {
|
|
779
779
|
hide: ["content-horizontal-alignment"]
|
|
@@ -789,6 +789,9 @@ const hamburgerOpenButtonConfig = {
|
|
|
789
789
|
selectable: false
|
|
790
790
|
},
|
|
791
791
|
actions: { design: {}, settings: {} },
|
|
792
|
+
data: {
|
|
793
|
+
disabled: { disableEditing: true }
|
|
794
|
+
},
|
|
792
795
|
displayFilters
|
|
793
796
|
}
|
|
794
797
|
};
|
|
@@ -801,6 +804,9 @@ const hamburgerCloseButtonConfig = {
|
|
|
801
804
|
behaviors: {
|
|
802
805
|
selectable: true
|
|
803
806
|
},
|
|
807
|
+
data: {
|
|
808
|
+
disabled: { disableEditing: true }
|
|
809
|
+
},
|
|
804
810
|
displayFilters
|
|
805
811
|
}
|
|
806
812
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2246.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": "7d557f7e3d84c00f6c199cbe0d050b9565163aacaba151c295b34a4d"
|
|
201
201
|
}
|