@total_onion/onion-library 1.0.82 → 1.0.84

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.
Files changed (20) hide show
  1. package/components/block-post-info-v3/post-info-v3.scss +16 -17
  2. package/components/block-section-separator-v3/section-separator-v3.scss +11 -9
  3. package/components/block-single-responsive-image-v3/single-responsive-image-v3.scss +0 -2
  4. package/components/block-standard-content-v3/standard-content-v3.scss +0 -1
  5. package/components/block-sub-group-container-v3/sub-group-container-v3.scss +6 -12
  6. package/components/component-animations-v3/animations-v3.scss +117 -0
  7. package/components/component-content-container-settings-v3/content-container-settings-v3.scss +13 -13
  8. package/components/component-element-positioning-v3/element-positioning-v3.scss +2 -3
  9. package/components/component-grid-layout-container-v3/grid-layout-container-v3.scss +5 -5
  10. package/components/component-grid-layout-element-v3/grid-layout-element-v3.scss +25 -0
  11. package/components/component-text-editor-settings-element-classes-v3/text-editor-settings-element-classes-v3.twig +4 -1
  12. package/components/component-text-editor-settings-v3/group_687a4e2334e37.json +26 -11
  13. package/components/fields-animations-v3/animations-v3.scss +121 -0
  14. package/components/fields-core-critical-v3/core-critical-v3.scss +5 -5
  15. package/components/fields-core-css-sizing-vars-v3/core-css-sizing-vars-v3.scss +20 -86
  16. package/components/fields-core-mixins-v3/core-mixins-v3.scss +1563 -1759
  17. package/components/fields-core-typography-mixins-v3/core-typography-mixins-v3.scss +988 -0
  18. package/components/fields-core-typography-v3/core-typography-v3.php +53 -53
  19. package/components/fields-core-typography-v3/core-typography-v3.scss +445 -166
  20. package/package.json +1 -1
@@ -129,59 +129,59 @@ function core_typography_v3()
129
129
  --paragraph-extra-small-font-family:' . (remove_underscore($options['paragraphs']['paragraph_extra_small_font_family'] ?? 'arial')) . ';
130
130
  --paragraph-extra-extra-small-font-family:' . (remove_underscore($options['paragraphs']['paragraph_extra_extra_small_font_family'] ?? 'arial')) . ';
131
131
 
132
- --h1-l-desktop:' . ($options['headings']['h1_l_desktop'] ?? 40) . ';
133
- --h1-l-landscape:' . ($options['headings']['h1_l_landscape'] ?? 40) . ';
134
- --h1-l-portrait:' . ($options['headings']['h1_l_portrait'] ?? 40) . ';
135
- --h1-l-mobile:' . ($options['headings']['h1_l_mobile'] ?? 40) . ';
136
- --h1-desktop:' . ($options['headings']['h1_desktop'] ?? 40) . ';
137
- --h1-landscape:' . ($options['headings']['h1_landscape'] ?? 40) . ';
138
- --h1-portrait:' . ($options['headings']['h1_portrait'] ?? 40) . ';
139
- --h1-mobile:' . ($options['headings']['h1_mobile'] ?? 40) . ';
140
- --h2-desktop:' . ($options['headings']['h2_desktop'] ?? 36) . ';
141
- --h2-landscape:' . ($options['headings']['h2_landscape'] ?? 36) . ';
142
- --h2-portrait:' . ($options['headings']['h2_portrait'] ?? 36) . ';
143
- --h2-mobile:' . ($options['headings']['h2_mobile'] ?? 36) . ';
144
- --h3-desktop:' . ($options['headings']['h3_desktop'] ?? 34) . ';
145
- --h3-landscape:' . ($options['headings']['h3_landscape'] ?? 34) . ';
146
- --h3-portrait:' . ($options['headings']['h3_portrait'] ?? 34) . ';
147
- --h3-mobile:' . ($options['headings']['h3_mobile'] ?? 34) . ';
148
- --h4-desktop:' . ($options['headings']['h4_desktop'] ?? 32) . ';
149
- --h4-landscape:' . ($options['headings']['h4_landscape'] ?? 32) . ';
150
- --h4-portrait:' . ($options['headings']['h4_portrait'] ?? 32) . ';
151
- --h4-mobile:' . ($options['headings']['h4_mobile'] ?? 32) . ';
152
- --h5-desktop:' . ($options['headings']['h5_desktop'] ?? 26) . ';
153
- --h5-landscape:' . ($options['headings']['h5_landscape'] ?? 26) . ';
154
- --h5-portrait:' . ($options['headings']['h5_portrait'] ?? 26) . ';
155
- --h5-mobile:' . ($options['headings']['h5_mobile'] ?? 26) . ';
156
- --h6-desktop:' . ($options['headings']['h6_desktop'] ?? 24) . ';
157
- --h6-landscape:' . ($options['headings']['h6_landscape'] ?? 24) . ';
158
- --h6-portrait:' . ($options['headings']['h6_portrait'] ?? 24) . ';
159
- --h6-mobile:' . ($options['headings']['h6_mobile'] ?? 24) . ';
160
-
161
- --sh1-desktop:' . ($options['sub_headings']['sh1_desktop'] ?? 40) . ';
162
- --sh1-landscape:' . ($options['sub_headings']['sh1_landscape'] ?? 40) . ';
163
- --sh1-portrait:' . ($options['sub_headings']['sh1_portrait'] ?? 40) . ';
164
- --sh1-mobile:' . ($options['sub_headings']['sh1_mobile'] ?? 40) . ';
165
- --sh2-desktop:' . ($options['sub_headings']['sh2_desktop'] ?? 36) . ';
166
- --sh2-landscape:' . ($options['sub_headings']['sh2_landscape'] ?? 36) . ';
167
- --sh2-portrait:' . ($options['sub_headings']['sh2_portrait'] ?? 36) . ';
168
- --sh2-mobile:' . ($options['sub_headings']['sh2_mobile'] ?? 36) . ';
169
- --sh3-desktop:' . ($options['sub_headings']['sh3_desktop'] ?? 34) . ';
170
- --sh3-landscape:' . ($options['sub_headings']['sh3_landscape'] ?? 34) . ';
171
- --sh3-portrait:' . ($options['sub_headings']['sh3_portrait'] ?? 34) . ';
172
- --sh3-mobile:' . ($options['sub_headings']['sh3_mobile'] ?? 34) . ';
173
- --sh4-desktop:' . ($options['sub_headings']['sh4_desktop'] ?? 32) . ';
174
- --sh4-landscape:' . ($options['sub_headings']['sh4_landscape'] ?? 32) . ';
175
- --sh4-portrait:' . ($options['sub_headings']['sh4_portrait'] ?? 32) . ';
176
- --sh4-mobile:' . ($options['sub_headings']['sh4_mobile'] ?? 32) . ';
177
- --sh5-desktop:' . ($options['sub_headings']['sh5_desktop'] ?? 26) . ';
178
- --sh5-landscape:' . ($options['sub_headings']['sh5_landscape'] ?? 26) . ';
179
- --sh5-portrait:' . ($options['sub_headings']['sh5_portrait'] ?? 26) . ';
180
- --sh5-mobile:' . ($options['sub_headings']['sh5_mobile'] ?? 26) . ';
181
- --sh6-desktop:' . ($options['sub_headings']['sh6_desktop'] ?? 24) . ';
182
- --sh6-landscape:' . ($options['sub_headings']['sh6_landscape'] ?? 24) . ';
183
- --sh6-portrait:' . ($options['sub_headings']['sh6_portrait'] ?? 24) . ';
184
- --sh6-mobile:' . ($options['sub_headings']['sh6_mobile'] ?? 24) . ';
132
+ --h-xl-desktop:' . ($options['headings']['h1_l_desktop'] ?? 40) . ';
133
+ --h-xl-landscape:' . ($options['headings']['h1_l_landscape'] ?? 40) . ';
134
+ --h-xl-portrait:' . ($options['headings']['h1_l_portrait'] ?? 40) . ';
135
+ --h-xl-mobile:' . ($options['headings']['h1_l_mobile'] ?? 40) . ';
136
+ --h-l-desktop:' . ($options['headings']['h1_desktop'] ?? 40) . ';
137
+ --h-l-landscape:' . ($options['headings']['h1_landscape'] ?? 40) . ';
138
+ --h-l-portrait:' . ($options['headings']['h1_portrait'] ?? 40) . ';
139
+ --h-l-mobile:' . ($options['headings']['h1_mobile'] ?? 40) . ';
140
+ --h-m-desktop:' . ($options['headings']['h2_desktop'] ?? 36) . ';
141
+ --h-m-landscape:' . ($options['headings']['h2_landscape'] ?? 36) . ';
142
+ --h-m-portrait:' . ($options['headings']['h2_portrait'] ?? 36) . ';
143
+ --h-m-mobile:' . ($options['headings']['h2_mobile'] ?? 36) . ';
144
+ --h-s-desktop:' . ($options['headings']['h3_desktop'] ?? 34) . ';
145
+ --h-s-landscape:' . ($options['headings']['h3_landscape'] ?? 34) . ';
146
+ --h-s-portrait:' . ($options['headings']['h3_portrait'] ?? 34) . ';
147
+ --h-s-mobile:' . ($options['headings']['h3_mobile'] ?? 34) . ';
148
+ --h-xs-desktop:' . ($options['headings']['h4_desktop'] ?? 32) . ';
149
+ --h-xs-landscape:' . ($options['headings']['h4_landscape'] ?? 32) . ';
150
+ --h-xs-portrait:' . ($options['headings']['h4_portrait'] ?? 32) . ';
151
+ --h-xs-mobile:' . ($options['headings']['h4_mobile'] ?? 32) . ';
152
+ --h-xxs-desktop:' . ($options['headings']['h5_desktop'] ?? 26) . ';
153
+ --h-xxs-landscape:' . ($options['headings']['h5_landscape'] ?? 26) . ';
154
+ --h-xxs-portrait:' . ($options['headings']['h5_portrait'] ?? 26) . ';
155
+ --h-xxs-mobile:' . ($options['headings']['h5_mobile'] ?? 26) . ';
156
+ --h-xxxs-desktop:' . ($options['headings']['h6_desktop'] ?? 24) . ';
157
+ --h-xxxs-landscape:' . ($options['headings']['h6_landscape'] ?? 24) . ';
158
+ --h-xxxs-portrait:' . ($options['headings']['h6_portrait'] ?? 24) . ';
159
+ --h-xxxs-mobile:' . ($options['headings']['h6_mobile'] ?? 24) . ';
160
+
161
+ --sh-xl-desktop:' . ($options['sub_headings']['sh1_desktop'] ?? 40) . ';
162
+ --sh-xl-landscape:' . ($options['sub_headings']['sh1_landscape'] ?? 40) . ';
163
+ --sh-xl-portrait:' . ($options['sub_headings']['sh1_portrait'] ?? 40) . ';
164
+ --sh-xl-mobile:' . ($options['sub_headings']['sh1_mobile'] ?? 40) . ';
165
+ --sh-l-desktop:' . ($options['sub_headings']['sh2_desktop'] ?? 36) . ';
166
+ --sh-l-landscape:' . ($options['sub_headings']['sh2_landscape'] ?? 36) . ';
167
+ --sh-l-portrait:' . ($options['sub_headings']['sh2_portrait'] ?? 36) . ';
168
+ --sh-l-mobile:' . ($options['sub_headings']['sh2_mobile'] ?? 36) . ';
169
+ --sh-m-desktop:' . ($options['sub_headings']['sh3_desktop'] ?? 34) . ';
170
+ --sh-m-landscape:' . ($options['sub_headings']['sh3_landscape'] ?? 34) . ';
171
+ --sh-m-portrait:' . ($options['sub_headings']['sh3_portrait'] ?? 34) . ';
172
+ --sh-m-mobile:' . ($options['sub_headings']['sh3_mobile'] ?? 34) . ';
173
+ --sh-s-desktop:' . ($options['sub_headings']['sh4_desktop'] ?? 32) . ';
174
+ --sh-s-landscape:' . ($options['sub_headings']['sh4_landscape'] ?? 32) . ';
175
+ --sh-s-portrait:' . ($options['sub_headings']['sh4_portrait'] ?? 32) . ';
176
+ --sh-s-mobile:' . ($options['sub_headings']['sh4_mobile'] ?? 32) . ';
177
+ --sh-xs-desktop:' . ($options['sub_headings']['sh5_desktop'] ?? 26) . ';
178
+ --sh-xs-landscape:' . ($options['sub_headings']['sh5_landscape'] ?? 26) . ';
179
+ --sh-xs-portrait:' . ($options['sub_headings']['sh5_portrait'] ?? 26) . ';
180
+ --sh-xs-mobile:' . ($options['sub_headings']['sh5_mobile'] ?? 26) . ';
181
+ --sh-xxs-desktop:' . ($options['sub_headings']['sh6_desktop'] ?? 24) . ';
182
+ --sh-xxs-landscape:' . ($options['sub_headings']['sh6_landscape'] ?? 24) . ';
183
+ --sh-xxs-portrait:' . ($options['sub_headings']['sh6_portrait'] ?? 24) . ';
184
+ --sh-xxs-mobile:' . ($options['sub_headings']['sh6_mobile'] ?? 24) . ';
185
185
 
186
186
  --p-l-desktop:' . ($options['paragraphs']['p_l_desktop'] ?? 18) . ';
187
187
  --p-l-landscape:' . ($options['paragraphs']['p_l_landscape'] ?? 18) . ';