@gem-sdk/core 1.58.0-dev.121 → 1.58.0-dev.123
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.
|
@@ -155,11 +155,19 @@ function composeAdvanceStyle(data, tag, pageType) {
|
|
|
155
155
|
'FormCheckbox',
|
|
156
156
|
'SubmitButton'
|
|
157
157
|
];
|
|
158
|
+
const collectionElements = [
|
|
159
|
+
'CollectionTitle',
|
|
160
|
+
'CollectionDescription',
|
|
161
|
+
'CollectionBanner',
|
|
162
|
+
'CollectionToolbar',
|
|
163
|
+
'CollectionPaginator'
|
|
164
|
+
];
|
|
158
165
|
const listElementShadowV2 = [
|
|
159
166
|
...baseElements,
|
|
160
167
|
...productElements,
|
|
161
168
|
...boostElements,
|
|
162
|
-
...formElements
|
|
169
|
+
...formElements,
|
|
170
|
+
...collectionElements
|
|
163
171
|
];
|
|
164
172
|
let hasBoxShadowV2 = hasBoxShadow;
|
|
165
173
|
if (listElementShadowV2.includes(tag || '')) {
|
|
@@ -153,11 +153,19 @@ function composeAdvanceStyle(data, tag, pageType) {
|
|
|
153
153
|
'FormCheckbox',
|
|
154
154
|
'SubmitButton'
|
|
155
155
|
];
|
|
156
|
+
const collectionElements = [
|
|
157
|
+
'CollectionTitle',
|
|
158
|
+
'CollectionDescription',
|
|
159
|
+
'CollectionBanner',
|
|
160
|
+
'CollectionToolbar',
|
|
161
|
+
'CollectionPaginator'
|
|
162
|
+
];
|
|
156
163
|
const listElementShadowV2 = [
|
|
157
164
|
...baseElements,
|
|
158
165
|
...productElements,
|
|
159
166
|
...boostElements,
|
|
160
|
-
...formElements
|
|
167
|
+
...formElements,
|
|
168
|
+
...collectionElements
|
|
161
169
|
];
|
|
162
170
|
let hasBoxShadowV2 = hasBoxShadow;
|
|
163
171
|
if (listElementShadowV2.includes(tag || '')) {
|