@total_onion/onion-library 2.0.201 → 2.0.203
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/assembleAssetList.js +21 -2
- package/components/fields-core-css-sizing-vars-v3/core-css-sizing-vars-v3.scss +102 -74
- package/components/fields-core-root-variables-v3/core-root-variables-v3.scss +39 -37
- package/components/webc-loadmore-trigger/index.html +30 -0
- package/components/webc-loadmore-trigger/loadmore-trigger.css +20 -0
- package/components/webc-loadmore-trigger/loadmore-trigger.html +3 -0
- package/components/webc-loadmore-trigger/loadmore-trigger.js +23 -0
- package/components/webc-post-filter-module/dev-content/dev-content.js +68 -0
- package/components/webc-post-filter-module/index.html +30 -0
- package/components/webc-post-filter-module/post-filter-module.css +10 -0
- package/components/webc-post-filter-module/post-filter-module.html +14 -0
- package/components/webc-post-filter-module/post-filter-module.js +197 -0
- package/components/webc-post-grid-display-module/index.html +30 -0
- package/components/webc-post-grid-display-module/post-grid-display-module.css +20 -0
- package/components/webc-post-grid-display-module/post-grid-display-module.html +7 -0
- package/components/webc-post-grid-display-module/post-grid-display-module.js +37 -0
- package/components/webc-ptfg-9000/index.html +50 -0
- package/components/webc-ptfg-9000/ptfg-9000.css +8 -0
- package/components/webc-ptfg-9000/ptfg-9000.html +5 -0
- package/components/webc-ptfg-9000/ptfg-9000.js +39 -0
- package/createJsAssets-v3.js +1 -1
- package/esbuild.mjs +39 -6
- package/onion-loader-local.js +1 -1
- package/package.json +1 -1
- package/public/assetList.mjs +78 -2
- package/public/block-group-container-v3/group-container-v3.css +26 -26
- package/public/block-post-info-v3/post-info-v3.css +429 -429
- package/public/block-post-type-filter-grid-v4/dev-content/dev-content.js +38 -0
- package/public/block-post-type-filter-grid-v4/post-type-filter-grid-v4.css +42 -0
- package/public/block-post-type-filter-grid-v4/post-type-filter-grid-v4.js +181 -0
- package/public/block-product-info-v3/product-info-v3.css +257 -257
- package/public/block-sub-group-container-v3/sub-group-container-v3.css +23 -23
- package/public/jsAssets.mjs +41 -3
- package/public/publicBundleBase.css +4800 -0
- package/public/{publicBundle.scss → publicBundleBase.scss} +6 -2
- package/public/publicBundle.css +0 -6392
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
.group-container-v3 {
|
|
2
|
+
.group-container-v3:not(#\#) {
|
|
3
3
|
display: grid;
|
|
4
4
|
grid-template: "main"/1fr;
|
|
5
5
|
align-items: center;
|
|
6
6
|
justify-items: center;
|
|
7
7
|
place-items: center;
|
|
8
8
|
}
|
|
9
|
-
.group-container-v3__grid-container {
|
|
9
|
+
.group-container-v3__grid-container:not(#\#) {
|
|
10
10
|
grid-area: main;
|
|
11
11
|
align-self: stretch;
|
|
12
12
|
justify-self: stretch;
|
|
13
13
|
place-self: stretch;
|
|
14
14
|
}
|
|
15
|
-
.group-container-v3__grid-container.flex-layout-container {
|
|
15
|
+
.group-container-v3__grid-container.flex-layout-container:not(#\#) {
|
|
16
16
|
display: flex;
|
|
17
17
|
display: var(--display-type, flex);
|
|
18
18
|
justify-content: flex-start;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
flex-wrap: var(--flex-wrap-mobile, nowrap);
|
|
28
28
|
}
|
|
29
29
|
@media screen and (min-width: 768px) {
|
|
30
|
-
.group-container-v3__grid-container.flex-layout-container {
|
|
30
|
+
.group-container-v3__grid-container.flex-layout-container:not(#\#) {
|
|
31
31
|
justify-content: flex-start;
|
|
32
32
|
justify-content: var(--justify-content-portrait, flex-start);
|
|
33
33
|
flex-direction: row;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
@media screen and (min-width: 1024px) {
|
|
44
|
-
.group-container-v3__grid-container.flex-layout-container {
|
|
44
|
+
.group-container-v3__grid-container.flex-layout-container:not(#\#) {
|
|
45
45
|
justify-content: flex-start;
|
|
46
46
|
justify-content: var(--justify-content-desktop, flex-start);
|
|
47
47
|
flex-direction: row;
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
flex-wrap: var(--flex-wrap-desktop, nowrap);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
57
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
58
58
|
display: "grid";
|
|
59
59
|
display: var(--display-type, "grid");
|
|
60
60
|
position: relative;
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
scroll-snap-type: none;
|
|
64
64
|
scroll-snap-type: var(--scroll-snap-type-mobile, none);
|
|
65
65
|
}
|
|
66
|
-
.group-container-v3__grid-container.grid-layout-container > div {
|
|
66
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) > div {
|
|
67
67
|
scroll-snap-align: start;
|
|
68
68
|
scroll-snap-align: var(--scroll-snap-align-mobile, start);
|
|
69
69
|
}
|
|
70
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
70
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
71
71
|
overflow: hidden;
|
|
72
72
|
overflow: var(--container-overflow-type-mobile, hidden);
|
|
73
73
|
grid-gap: calc(var(--global-inline-spacing) * 0) calc(var(--global-inline-spacing) * 0);
|
|
@@ -204,15 +204,15 @@
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
@media screen and (min-width: 768px) {
|
|
207
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
207
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
208
208
|
scroll-snap-type: none;
|
|
209
209
|
scroll-snap-type: var(--scroll-snap-type-portrait, none);
|
|
210
210
|
}
|
|
211
|
-
.group-container-v3__grid-container.grid-layout-container > div {
|
|
211
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) > div {
|
|
212
212
|
scroll-snap-align: start;
|
|
213
213
|
scroll-snap-align: var(--scroll-snap-align-portrait, start);
|
|
214
214
|
}
|
|
215
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
215
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
216
216
|
overflow: hidden;
|
|
217
217
|
overflow: var(--container-overflow-type-portrait, hidden);
|
|
218
218
|
grid-auto-flow: row;
|
|
@@ -230,15 +230,15 @@
|
|
|
230
230
|
}
|
|
231
231
|
}
|
|
232
232
|
@media screen and (min-width: 1024px) {
|
|
233
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
233
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
234
234
|
scroll-snap-type: none;
|
|
235
235
|
scroll-snap-type: var(--scroll-snap-type-desktop, none);
|
|
236
236
|
}
|
|
237
|
-
.group-container-v3__grid-container.grid-layout-container > div {
|
|
237
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) > div {
|
|
238
238
|
scroll-snap-align: start;
|
|
239
239
|
scroll-snap-align: var(--scroll-snap-align-desktop, start);
|
|
240
240
|
}
|
|
241
|
-
.group-container-v3__grid-container.grid-layout-container {
|
|
241
|
+
.group-container-v3__grid-container.grid-layout-container:not(#\#) {
|
|
242
242
|
overflow: hidden;
|
|
243
243
|
overflow: var(--container-overflow-type-desktop, hidden);
|
|
244
244
|
grid-gap: calc(var(--global-inline-spacing) * 0) calc(var(--global-inline-spacing) * 0);
|
|
@@ -255,11 +255,11 @@
|
|
|
255
255
|
grid-template-rows: var(--grid-template-rows-custom-desktop, repeat(var(--grid-template-rows-desktop), var(--grid-auto-rows-desktop, 1fr)));
|
|
256
256
|
}
|
|
257
257
|
}
|
|
258
|
-
.group-container-v3__block-container {
|
|
258
|
+
.group-container-v3__block-container:not(#\#) {
|
|
259
259
|
pointer-events: none;
|
|
260
260
|
position: relative;
|
|
261
261
|
}
|
|
262
|
-
.group-container-v3__block-container.grid-layout-container {
|
|
262
|
+
.group-container-v3__block-container.grid-layout-container:not(#\#) {
|
|
263
263
|
display: grid;
|
|
264
264
|
z-index: 5;
|
|
265
265
|
z-index: var(--element-z-index, 5);
|
|
@@ -269,49 +269,49 @@
|
|
|
269
269
|
justify-self: var(--grid-horizontal-placement-mobile);
|
|
270
270
|
place-self: var(--grid-vertical-placement-mobile) var(--grid-horizontal-placement-mobile);
|
|
271
271
|
}
|
|
272
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile) {
|
|
272
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile):not(#\#) {
|
|
273
273
|
grid-template-rows: subgrid;
|
|
274
274
|
}
|
|
275
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile) > section {
|
|
275
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile):not(#\#) > section {
|
|
276
276
|
grid-row: 1/-1;
|
|
277
277
|
grid-column: 1/-1;
|
|
278
278
|
}
|
|
279
279
|
@media screen and (min-width: 768px) {
|
|
280
|
-
.group-container-v3__block-container.grid-layout-container {
|
|
280
|
+
.group-container-v3__block-container.grid-layout-container:not(#\#) {
|
|
281
281
|
grid-row: var(--grid-row-start-portrait)/span var(--grid-row-span-portrait);
|
|
282
282
|
grid-column: var(--grid-column-start-portrait)/span var(--grid-column-span-portrait);
|
|
283
283
|
align-self: var(--grid-vertical-placement-portrait);
|
|
284
284
|
justify-self: var(--grid-horizontal-placement-portrait);
|
|
285
285
|
place-self: var(--grid-vertical-placement-portrait) var(--grid-horizontal-placement-portrait);
|
|
286
286
|
}
|
|
287
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait) {
|
|
287
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait):not(#\#) {
|
|
288
288
|
grid-template-rows: subgrid;
|
|
289
289
|
}
|
|
290
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait) > section {
|
|
290
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait):not(#\#) > section {
|
|
291
291
|
grid-row: 1/-1;
|
|
292
292
|
grid-column: 1/-1;
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
295
|
@media screen and (min-width: 1024px) {
|
|
296
|
-
.group-container-v3__block-container.grid-layout-container {
|
|
296
|
+
.group-container-v3__block-container.grid-layout-container:not(#\#) {
|
|
297
297
|
grid-row: var(--grid-row-start)/span var(--grid-row-span);
|
|
298
298
|
grid-column: var(--grid-column-start)/span var(--grid-column-span);
|
|
299
299
|
align-self: var(--grid-vertical-placement-desktop);
|
|
300
300
|
justify-self: var(--grid-horizontal-placement-desktop);
|
|
301
301
|
place-self: var(--grid-vertical-placement-desktop) var(--grid-horizontal-placement-desktop);
|
|
302
302
|
}
|
|
303
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop) {
|
|
303
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop):not(#\#) {
|
|
304
304
|
grid-template-rows: subgrid;
|
|
305
305
|
}
|
|
306
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop) > section {
|
|
306
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop):not(#\#) > section {
|
|
307
307
|
grid-row: 1/-1;
|
|
308
308
|
grid-column: 1/-1;
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
|
-
.group-container-v3__block-container:has(.video-content-v3__video-container.video-playing.video-playing--high-z-index) {
|
|
311
|
+
.group-container-v3__block-container:has(.video-content-v3__video-container.video-playing.video-playing--high-z-index):not(#\#) {
|
|
312
312
|
z-index: 50;
|
|
313
313
|
}
|
|
314
|
-
.group-container-v3__block-number {
|
|
314
|
+
.group-container-v3__block-number:not(#\#) {
|
|
315
315
|
z-index: 99;
|
|
316
316
|
position: absolute;
|
|
317
317
|
font-size: 40px;
|