@total_onion/onion-library 1.0.35 → 1.0.36
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/components/component-text-editor-settings-v3/group_687a4e2334e37.json +66 -66
- package/components/component-wysiwyg-editor-v3/wysiwyg-editor-v3.twig +8 -2
- package/components/fields-core-mixins-v3/core-mixins-v3.scss +1930 -0
- package/components/fields-core-typography-v3/core-typography-v3.scss +44 -45
- package/components/fields-post-info-v3/group_6867bbe167dd2.json +1 -123
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use 'Assets/scss/modules/library-modules/core-mixins/core-mixins';
|
|
1
|
+
@use 'Assets/scss/modules/library-modules/core-mixins-v3/core-mixins-v3';
|
|
2
2
|
@use 'sass:math';
|
|
3
3
|
|
|
4
4
|
/* Box sizing rules */
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
//***** TYPOGRAPHY *****\\
|
|
12
12
|
body {
|
|
13
|
-
@include core-mixins.fontSecondary();
|
|
13
|
+
@include core-mixins-v3.fontSecondary();
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
h1,
|
|
@@ -21,7 +21,7 @@ h5,
|
|
|
21
21
|
h6 {
|
|
22
22
|
margin: 0; //reset default margin
|
|
23
23
|
font-weight: unset; //reset default font weight
|
|
24
|
-
@include core-mixins.fontPrimary();
|
|
24
|
+
@include core-mixins-v3.fontPrimary();
|
|
25
25
|
margin-top: unset;
|
|
26
26
|
}
|
|
27
27
|
.override-element-styles {
|
|
@@ -58,7 +58,7 @@ h6 {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
h1 {
|
|
61
|
-
@include core-mixins.h1();
|
|
61
|
+
@include core-mixins-v3.h1();
|
|
62
62
|
|
|
63
63
|
&:has(.font-tertiary) {
|
|
64
64
|
line-height: calc(
|
|
@@ -69,7 +69,7 @@ h1 {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
h2 {
|
|
72
|
-
@include core-mixins.h2();
|
|
72
|
+
@include core-mixins-v3.h2();
|
|
73
73
|
|
|
74
74
|
&:has(.font-tertiary) {
|
|
75
75
|
line-height: calc(
|
|
@@ -80,7 +80,7 @@ h2 {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
h3 {
|
|
83
|
-
@include core-mixins.h3();
|
|
83
|
+
@include core-mixins-v3.h3();
|
|
84
84
|
|
|
85
85
|
&:has(.font-tertiary) {
|
|
86
86
|
line-height: calc(
|
|
@@ -91,7 +91,7 @@ h3 {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
h4 {
|
|
94
|
-
@include core-mixins.h4();
|
|
94
|
+
@include core-mixins-v3.h4();
|
|
95
95
|
|
|
96
96
|
&:has(.font-tertiary) {
|
|
97
97
|
line-height: calc(
|
|
@@ -102,7 +102,7 @@ h4 {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
h5 {
|
|
105
|
-
@include core-mixins.h5();
|
|
105
|
+
@include core-mixins-v3.h5();
|
|
106
106
|
|
|
107
107
|
&:has(.font-tertiary) {
|
|
108
108
|
line-height: calc(
|
|
@@ -113,7 +113,7 @@ h5 {
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
h6 {
|
|
116
|
-
@include core-mixins.h6();
|
|
116
|
+
@include core-mixins-v3.h6();
|
|
117
117
|
|
|
118
118
|
&:has(.font-tertiary) {
|
|
119
119
|
line-height: calc(
|
|
@@ -124,7 +124,7 @@ h6 {
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.sh1-sizing {
|
|
127
|
-
@include core-mixins.sh1();
|
|
127
|
+
@include core-mixins-v3.sh1();
|
|
128
128
|
|
|
129
129
|
&:has(.font-tertiary) {
|
|
130
130
|
line-height: calc(
|
|
@@ -135,7 +135,7 @@ h6 {
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.sh2-sizing {
|
|
138
|
-
@include core-mixins.sh2();
|
|
138
|
+
@include core-mixins-v3.sh2();
|
|
139
139
|
|
|
140
140
|
&:has(.font-tertiary) {
|
|
141
141
|
line-height: calc(
|
|
@@ -146,7 +146,7 @@ h6 {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.sh3-sizing {
|
|
149
|
-
@include core-mixins.sh3();
|
|
149
|
+
@include core-mixins-v3.sh3();
|
|
150
150
|
|
|
151
151
|
&:has(.font-tertiary) {
|
|
152
152
|
line-height: calc(
|
|
@@ -157,7 +157,7 @@ h6 {
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.sh4-sizing {
|
|
160
|
-
@include core-mixins.sh4();
|
|
160
|
+
@include core-mixins-v3.sh4();
|
|
161
161
|
|
|
162
162
|
&:has(.font-tertiary) {
|
|
163
163
|
line-height: calc(
|
|
@@ -168,7 +168,7 @@ h6 {
|
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
.sh5-sizing {
|
|
171
|
-
@include core-mixins.sh5();
|
|
171
|
+
@include core-mixins-v3.sh5();
|
|
172
172
|
|
|
173
173
|
&:has(.font-tertiary) {
|
|
174
174
|
line-height: calc(
|
|
@@ -179,7 +179,7 @@ h6 {
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
.sh6-sizing {
|
|
182
|
-
@include core-mixins.sh6();
|
|
182
|
+
@include core-mixins-v3.sh6();
|
|
183
183
|
|
|
184
184
|
&:has(.font-tertiary) {
|
|
185
185
|
line-height: calc(
|
|
@@ -191,7 +191,7 @@ h6 {
|
|
|
191
191
|
|
|
192
192
|
p {
|
|
193
193
|
margin: 0; //reset default margin
|
|
194
|
-
@include core-mixins.p();
|
|
194
|
+
@include core-mixins-v3.p();
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
a:not([class*='cmpl-cta-style-']) {
|
|
@@ -258,7 +258,7 @@ ul {
|
|
|
258
258
|
list-style-type: disc;
|
|
259
259
|
}
|
|
260
260
|
li {
|
|
261
|
-
@include core-mixins.p();
|
|
261
|
+
@include core-mixins-v3.p-medium();
|
|
262
262
|
}
|
|
263
263
|
ol {
|
|
264
264
|
padding: 0; //reset default padding
|
|
@@ -280,105 +280,104 @@ ol {
|
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
.font-primary {
|
|
283
|
-
@include core-mixins.fontPrimary();
|
|
283
|
+
@include core-mixins-v3.fontPrimary();
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
.font-secondary {
|
|
287
|
-
@include core-mixins.fontSecondary();
|
|
287
|
+
@include core-mixins-v3.fontSecondary();
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
.font-tertiary {
|
|
291
|
-
@include core-mixins.fontTertiary();
|
|
291
|
+
@include core-mixins-v3.fontTertiary();
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
.font-quaternary {
|
|
295
|
-
@include core-mixins.fontQuaternary();
|
|
295
|
+
@include core-mixins-v3.fontQuaternary();
|
|
296
296
|
}
|
|
297
297
|
.h1-l-sizing,
|
|
298
298
|
.h-extra-large {
|
|
299
|
-
@include core-mixins.
|
|
299
|
+
@include core-mixins-v3.h-x-large();
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
.h1-sizing,
|
|
303
303
|
.h-large {
|
|
304
|
-
@include core-mixins.
|
|
304
|
+
@include core-mixins-v3.h-large();
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
.h2-sizing,
|
|
308
308
|
.h-medium {
|
|
309
|
-
@include core-mixins.
|
|
309
|
+
@include core-mixins-v3.h-medium();
|
|
310
|
+
&-mobile {
|
|
311
|
+
}
|
|
310
312
|
}
|
|
311
313
|
|
|
312
314
|
.h3-sizing,
|
|
313
315
|
.h-small {
|
|
314
|
-
@include core-mixins.
|
|
316
|
+
@include core-mixins-v3.h-small();
|
|
315
317
|
}
|
|
316
318
|
|
|
317
319
|
.h4-sizing,
|
|
318
320
|
.h-xsmall {
|
|
319
|
-
@include core-mixins.
|
|
321
|
+
@include core-mixins-v3.h-x-small();
|
|
320
322
|
}
|
|
321
323
|
|
|
322
324
|
.h5-sizing,
|
|
323
325
|
.h-xxsmall {
|
|
324
|
-
@include core-mixins.
|
|
326
|
+
@include core-mixins-v3.h-xx-small();
|
|
325
327
|
}
|
|
326
328
|
|
|
327
329
|
.h6-sizing,
|
|
328
330
|
.h-xxxsmall {
|
|
329
|
-
@include core-mixins.
|
|
331
|
+
@include core-mixins-v3.h-xxx-small();
|
|
330
332
|
}
|
|
331
333
|
|
|
332
334
|
.sh1-sizing,
|
|
333
335
|
.sh-extra-large {
|
|
334
|
-
@include core-mixins.
|
|
336
|
+
@include core-mixins-v3.sh-x-large();
|
|
335
337
|
}
|
|
336
338
|
|
|
337
339
|
.sh2-sizing,
|
|
338
340
|
.sh-large {
|
|
339
|
-
@include core-mixins.
|
|
341
|
+
@include core-mixins-v3.sh-large();
|
|
340
342
|
}
|
|
341
343
|
|
|
342
344
|
.sh3-sizing,
|
|
343
345
|
.sh-medium {
|
|
344
|
-
@include core-mixins.
|
|
346
|
+
@include core-mixins-v3.sh-medium();
|
|
345
347
|
}
|
|
346
348
|
|
|
347
349
|
.sh4-sizing,
|
|
348
350
|
.sh-small {
|
|
349
|
-
@include core-mixins.
|
|
351
|
+
@include core-mixins-v3.sh-small();
|
|
350
352
|
}
|
|
351
353
|
|
|
352
354
|
.sh5-sizing,
|
|
353
355
|
.sh-xsmall {
|
|
354
|
-
@include core-mixins.
|
|
356
|
+
@include core-mixins-v3.sh-x-small();
|
|
355
357
|
}
|
|
356
358
|
|
|
357
359
|
.sh6-sizing,
|
|
358
360
|
.sh-xxsmall {
|
|
359
|
-
@include core-mixins.
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.p-sizing {
|
|
363
|
-
@include core-mixins.p();
|
|
361
|
+
@include core-mixins-v3.sh-xx-small();
|
|
364
362
|
}
|
|
365
363
|
|
|
366
364
|
.p-l-sizing {
|
|
367
|
-
@include core-mixins.p-
|
|
365
|
+
@include core-mixins-v3.p-large();
|
|
366
|
+
}
|
|
367
|
+
.p-sizing {
|
|
368
|
+
@include core-mixins-v3.p-medium();
|
|
368
369
|
}
|
|
369
|
-
|
|
370
370
|
.p-s-sizing {
|
|
371
|
-
@include core-mixins.p-
|
|
371
|
+
@include core-mixins-v3.p-small();
|
|
372
372
|
}
|
|
373
|
-
|
|
374
373
|
.p-xs-sizing {
|
|
375
|
-
@include core-mixins.p-
|
|
374
|
+
@include core-mixins-v3.p-x-small();
|
|
376
375
|
}
|
|
377
376
|
|
|
378
377
|
.p-xxs-sizing {
|
|
379
|
-
@include core-mixins.p-xxs();
|
|
378
|
+
@include core-mixins-v3.p-xxs();
|
|
380
379
|
}
|
|
381
380
|
|
|
382
381
|
.p-xxxs-sizing {
|
|
383
|
-
@include core-mixins.p-xxxs();
|
|
382
|
+
@include core-mixins-v3.p-xxxs();
|
|
384
383
|
}
|
|
@@ -902,128 +902,6 @@
|
|
|
902
902
|
"acfe_wysiwyg_auto_init": 0,
|
|
903
903
|
"acfe_wysiwyg_min_height": 300,
|
|
904
904
|
"acfe_wysiwyg_toolbar_buttons": []
|
|
905
|
-
},
|
|
906
|
-
{
|
|
907
|
-
"key": "field_6867bbe17e150",
|
|
908
|
-
"label": "Author",
|
|
909
|
-
"name": "",
|
|
910
|
-
"aria-label": "",
|
|
911
|
-
"type": "tab",
|
|
912
|
-
"instructions": "",
|
|
913
|
-
"required": 0,
|
|
914
|
-
"conditional_logic": 0,
|
|
915
|
-
"wrapper": {
|
|
916
|
-
"width": "",
|
|
917
|
-
"class": "",
|
|
918
|
-
"id": ""
|
|
919
|
-
},
|
|
920
|
-
"hide_field": "",
|
|
921
|
-
"hide_label": "",
|
|
922
|
-
"hide_instructions": "",
|
|
923
|
-
"hide_required": "",
|
|
924
|
-
"wpml_cf_preferences": 3,
|
|
925
|
-
"placement": "top",
|
|
926
|
-
"endpoint": 0,
|
|
927
|
-
"no_preference": 0,
|
|
928
|
-
"instruction_placement": "",
|
|
929
|
-
"acfe_permissions": "",
|
|
930
|
-
"selected": 0
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"key": "field_6867bbe17e53e",
|
|
934
|
-
"label": "Post Author",
|
|
935
|
-
"name": "post_author",
|
|
936
|
-
"aria-label": "",
|
|
937
|
-
"type": "clone",
|
|
938
|
-
"instructions": "",
|
|
939
|
-
"required": 0,
|
|
940
|
-
"conditional_logic": 0,
|
|
941
|
-
"wrapper": {
|
|
942
|
-
"width": "",
|
|
943
|
-
"class": "",
|
|
944
|
-
"id": ""
|
|
945
|
-
},
|
|
946
|
-
"hide_field": "",
|
|
947
|
-
"hide_label": "",
|
|
948
|
-
"hide_instructions": "",
|
|
949
|
-
"hide_required": "",
|
|
950
|
-
"wpml_cf_preferences": 3,
|
|
951
|
-
"clone": [
|
|
952
|
-
"group_67a1430a08630"
|
|
953
|
-
],
|
|
954
|
-
"display": "seamless",
|
|
955
|
-
"layout": "block",
|
|
956
|
-
"prefix_label": 0,
|
|
957
|
-
"prefix_name": 0,
|
|
958
|
-
"acfe_settings": "",
|
|
959
|
-
"instruction_placement": "",
|
|
960
|
-
"acfe_permissions": "",
|
|
961
|
-
"acfe_seamless_style": 0,
|
|
962
|
-
"acfe_clone_modal": 0,
|
|
963
|
-
"acfe_clone_modal_close": 0,
|
|
964
|
-
"acfe_clone_modal_button": "",
|
|
965
|
-
"acfe_clone_modal_size": "large"
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
"key": "field_6867bbe17e91f",
|
|
969
|
-
"label": "Truncated Content",
|
|
970
|
-
"name": "",
|
|
971
|
-
"aria-label": "",
|
|
972
|
-
"type": "tab",
|
|
973
|
-
"instructions": "",
|
|
974
|
-
"required": 0,
|
|
975
|
-
"conditional_logic": 0,
|
|
976
|
-
"wrapper": {
|
|
977
|
-
"width": "",
|
|
978
|
-
"class": "",
|
|
979
|
-
"id": ""
|
|
980
|
-
},
|
|
981
|
-
"hide_field": "",
|
|
982
|
-
"hide_label": "",
|
|
983
|
-
"hide_instructions": "",
|
|
984
|
-
"hide_required": "",
|
|
985
|
-
"wpml_cf_preferences": 3,
|
|
986
|
-
"placement": "top",
|
|
987
|
-
"endpoint": 0,
|
|
988
|
-
"no_preference": 0,
|
|
989
|
-
"instruction_placement": "",
|
|
990
|
-
"acfe_permissions": "",
|
|
991
|
-
"selected": 0
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
"key": "field_6867bbe17ec4f",
|
|
995
|
-
"label": "Truncated Text",
|
|
996
|
-
"name": "truncated_text",
|
|
997
|
-
"aria-label": "",
|
|
998
|
-
"type": "clone",
|
|
999
|
-
"instructions": "",
|
|
1000
|
-
"required": 0,
|
|
1001
|
-
"conditional_logic": 0,
|
|
1002
|
-
"wrapper": {
|
|
1003
|
-
"width": "",
|
|
1004
|
-
"class": "",
|
|
1005
|
-
"id": ""
|
|
1006
|
-
},
|
|
1007
|
-
"hide_field": "",
|
|
1008
|
-
"hide_label": "",
|
|
1009
|
-
"hide_instructions": "",
|
|
1010
|
-
"hide_required": "",
|
|
1011
|
-
"wpml_cf_preferences": 3,
|
|
1012
|
-
"clone": [
|
|
1013
|
-
"group_677bd1bc69968"
|
|
1014
|
-
],
|
|
1015
|
-
"display": "group",
|
|
1016
|
-
"layout": "block",
|
|
1017
|
-
"prefix_label": 0,
|
|
1018
|
-
"prefix_name": 0,
|
|
1019
|
-
"acfe_seamless_style": 0,
|
|
1020
|
-
"acfe_clone_modal": 0,
|
|
1021
|
-
"acfe_settings": "",
|
|
1022
|
-
"instruction_placement": "",
|
|
1023
|
-
"acfe_permissions": "",
|
|
1024
|
-
"acfe_clone_modal_close": 0,
|
|
1025
|
-
"acfe_clone_modal_button": "",
|
|
1026
|
-
"acfe_clone_modal_size": "large"
|
|
1027
905
|
}
|
|
1028
906
|
],
|
|
1029
907
|
"location": [
|
|
@@ -1074,5 +952,5 @@
|
|
|
1074
952
|
"acfe_permissions": "",
|
|
1075
953
|
"acfe_meta": "",
|
|
1076
954
|
"acfe_note": "",
|
|
1077
|
-
"modified":
|
|
955
|
+
"modified": 1752848849
|
|
1078
956
|
}
|