type-heading 0.0.14 → 0.0.16

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.
@@ -3,20 +3,6 @@
3
3
  /// @group Property
4
4
  ////
5
5
 
6
- // $th-properties
7
- /// An ordered list of available properties.
8
- ///
9
- /// @since 0.0.10
10
- /// @type list
11
- /// @access private
12
-
13
- $th-properties: (
14
- font-size,
15
- line-height,
16
- (margin-top margin-bottom),
17
- breakpoint
18
- );
19
-
20
6
  // th-property()
21
7
  /// Return heading list property value.
22
8
  ///
@@ -60,20 +46,19 @@ $th-properties: (
60
46
  /// )
61
47
 
62
48
  @function th-property(
63
- $heading,
64
49
  $property-name,
50
+ $heading,
65
51
  $breakpoint: false,
66
52
  $convert: true,
67
53
  $base-font-size: $th-base-font-size
68
54
  ){
69
55
  $heading: th-heading($heading, $breakpoint);
70
- $breakpoint: _th-core-breakpoint-context($breakpoint);
71
56
  $property: _th-property-get($heading, $property-name);
72
57
  @if $property-name != font-size {
73
58
  $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size);
74
59
  }
75
60
  @if $property == default or $property == false {
76
- $property: th-property-default($property-name, $base-font-size, false);
61
+ $property: _th-property-default($property-name, $base-font-size, false);
77
62
  }
78
63
  @if string == type-of($convert) {
79
64
  $property: th-unit-convert($convert, $property, $base-font-size);
@@ -100,210 +85,15 @@ $th-properties: (
100
85
  $heading,
101
86
  $property-name
102
87
  ){
103
- $property-indexes: th-list-get-index-deep($th-properties, $property-name);
88
+ $property-indexes: th-list-get-index-deep($_th-core-heading-structure, $property-name);
104
89
  @return th-list-get-nth-deep($heading, $property-indexes);
105
90
  }
106
91
 
107
- // th-property-font-size()
108
- /// Return heading font size value.
109
- ///
110
- /// @since 0.0.10
111
- /// @return {number} The heading font size value.
112
- ///
113
- /// @param {list | string} $heading - A heading map key or list.
114
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
115
- /// @param {boolean | string} $convert [true] - (true | false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
116
- /// @param {number} $base-font-size [$th-base-font-size] Font size used for relative calculations.
117
- ///
118
- /// @example scss - Return font size from a h1 heading map.
119
- /// th-property-font-size(h1)
120
- /// @example scss - Return font size from a h1 heading map with a breakpoint of 768px.
121
- /// th-property-font-size(
122
- /// $heading: h1,
123
- /// $breakpoint: 768px
124
- /// )
125
- /// @example scss - Return font size from a h1 heading map without unit conversion.
126
- /// th-property-font-size(
127
- /// $heading: h1,
128
- /// $convert: false
129
- /// )
130
- /// @example scss - Return font size from a h1 heading map and unit override to percent.
131
- /// th-property-font-size(
132
- /// $heading: h1,
133
- /// $convert: percent
134
- /// )
135
- /// @example scss - Return font size from a h1 with a base font size of 24px.
136
- /// th-property-font-size(
137
- /// $heading: h1,
138
- /// $base-font-size: 24px
139
- /// )
140
-
141
- @function th-property-font-size(
142
- $heading,
143
- $breakpoint: false,
144
- $convert: true,
145
- $base-font-size: $th-base-font-size
146
- ){
147
- @return th-property(
148
- $heading: $heading,
149
- $property-name: font-size,
150
- $breakpoint: $breakpoint,
151
- $convert: $convert,
152
- $base-font-size: $base-font-size
153
- );
154
- }
155
-
156
- // th-property-line-height()
157
- /// Return heading line height value.
158
- ///
159
- /// @since 0.0.10
160
- /// @return {number} The heading line height value.
161
- ///
162
- /// @param {list | string} $heading - A heading map key or list.
163
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
164
- /// @param {boolean | string} $convert [true] - (true | false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
165
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
166
- ///
167
- /// @example scss - Return line height from a h1 heading map.
168
- /// th-property-line-height(h1)
169
- /// @example scss - Return line height from a h1 heading map with a breakpoint of 768px.
170
- /// th-property-line-height(
171
- /// $heading: h1,
172
- /// $breakpoint: 768px
173
- /// )
174
- /// @example scss - Return line height from a h1 heading map without unit conversion.
175
- /// th-property-line-height(
176
- /// $heading: h1,
177
- /// $convert: false
178
- /// )
179
- /// @example scss - Return line height from a h1 heading map and unit override to percent.
180
- /// th-property-line-height(
181
- /// $heading: h1,
182
- /// $convert: percent
183
- /// )
184
- /// @example scss - Return line height from a h1 with a base font size of 24px.
185
- /// th-property-line-height(
186
- /// $heading: h1,
187
- /// $base-font-size: 24px
188
- /// )
189
-
190
- @function th-property-line-height(
191
- $heading,
192
- $breakpoint: false,
193
- $base-font-size: th-property-font-size($heading, $breakpoint, false),
194
- $convert: true
195
- ){
196
- @return th-property(
197
- $heading: $heading,
198
- $property-name: line-height,
199
- $breakpoint: $breakpoint,
200
- $convert: $convert,
201
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size)
202
- );
203
- }
204
-
205
- // th-property-margin-top()
206
- /// Return heading margin top value.
207
- ///
208
- /// @since 0.0.10
209
- /// @return {number} The heading margin top value.
210
- ///
211
- /// @param {list | string} $heading - A heading map key or list.
212
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
213
- /// @param {boolean | string} $convert [true] - (true | false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
214
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
215
- ///
216
- /// @example scss - Return margin top from a h1 heading map.
217
- /// th-property-margin-top(h1)
218
- /// @example scss - Return margin top from a h1 heading map with a breakpoint of 768px.
219
- /// th-property-margin-top(
220
- /// $heading: h1,
221
- /// $breakpoint: 768px
222
- /// )
223
- /// @example scss - Return margin top from a h1 heading map without unit conversion.
224
- /// th-property-margin-top(
225
- /// $heading: h1,
226
- /// $convert: false
227
- /// )
228
- /// @example scss - Return margin top from a h1 heading map and unit override to percent.
229
- /// th-property-margin-top(
230
- /// $heading: h1,
231
- /// $convert: percent
232
- /// )
233
- /// @example scss - Return margin top from a h1 with a base font size of 24px.
234
- /// th-property-margin-top(
235
- /// $heading: h1,
236
- /// $base-font-size: 24px
237
- /// )
238
-
239
- @function th-property-margin-top(
240
- $heading,
241
- $breakpoint: false,
242
- $base-font-size: th-property-font-size($heading, $breakpoint, false),
243
- $convert: true
244
- ){
245
- @return th-property(
246
- $heading: $heading,
247
- $property-name: margin-top,
248
- $breakpoint: $breakpoint,
249
- $convert: $convert,
250
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size)
251
- );
252
- }
253
-
254
- // th-property-margin-bottom()
255
- /// Return heading margin bottom value.
256
- ///
257
- /// @since 0.0.10
258
- /// @return {number} The heading margin bottom value.
259
- ///
260
- /// @param {list | string} $heading - A heading map key or list.
261
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
262
- /// @param {boolean | string} $convert [true] - (true | false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
263
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
264
- ///
265
- /// @example scss - Return margin bottom from a h1 heading map.
266
- /// th-property-margin-bottom(h1)
267
- /// @example scss - Return margin bottom from a h1 heading map with a breakpoint of 768px.
268
- /// th-property-margin-bottom(
269
- /// $heading: h1,
270
- /// $breakpoint: 768px
271
- /// )
272
- /// @example scss - Return margin bottom from a h1 heading map without unit conversion.
273
- /// th-property-margin-bottom(
274
- /// $heading: h1,
275
- /// $convert: false
276
- /// )
277
- /// @example scss - Return margin bottom from a h1 heading map and unit override to percent.
278
- /// th-property-margin-bottom(
279
- /// $heading: h1,
280
- /// $convert: percent
281
- /// )
282
- /// @example scss - Return margin bottom from a h1 with a base font size of 24px.
283
- /// th-property-margin-bottom(
284
- /// $heading: h1,
285
- /// $base-font-size: 24px
286
- /// )
287
-
288
- @function th-property-margin-bottom(
289
- $heading,
290
- $breakpoint: false,
291
- $base-font-size: th-property-font-size($heading, $breakpoint, false),
292
- $convert: true
293
- ){
294
- @return th-property(
295
- $heading: $heading,
296
- $property-name: margin-bottom,
297
- $breakpoint: $breakpoint,
298
- $convert: $convert,
299
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size)
300
- );
301
- }
302
-
303
- // th-property-default()
92
+ // _th-property-default()
304
93
  /// Return default property value.
305
94
  ///
306
95
  /// @since 0.0.10
96
+ /// @access private
307
97
  /// @return {number} The default property value.
308
98
  ///
309
99
  /// @param {string} $property-name - (font-size | line-height | margin-top | margin-bottom | breakpoint) A property name.
@@ -311,9 +101,9 @@ $th-properties: (
311
101
  /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
312
102
  ///
313
103
  /// @example scss - Get default font size.
314
- /// th-property-default(font-size)
104
+ /// _th-property-default(font-size)
315
105
 
316
- @function th-property-default(
106
+ @function _th-property-default(
317
107
  $property-name,
318
108
  $convert: true,
319
109
  $base-font-size: $th-base-font-size
@@ -381,10 +171,36 @@ $th-properties: (
381
171
  $heading,
382
172
  $breakpoint,
383
173
  $base-font-size
384
- ) {
174
+ ){
385
175
  $_return: $base-font-size;
386
176
  @if $base-font-size == $th-base-font-size {
387
- $_return: th-property-font-size($heading, $breakpoint, false);
177
+ $_return: th-property(
178
+ $property-name: font-size,
179
+ $heading: $heading,
180
+ $breakpoint: $breakpoint,
181
+ $convert: false
182
+ );
388
183
  }
389
184
  @return $_return;
185
+ }
186
+
187
+ // th-p()
188
+ /// Alias to th-property() function.
189
+ ///
190
+ /// @since 0.0.15
191
+
192
+ @function th-p(
193
+ $property-name,
194
+ $heading,
195
+ $breakpoint: false,
196
+ $convert: true,
197
+ $base-font-size: $th-base-font-size
198
+ ){
199
+ @return th-property(
200
+ $property-name: $property-name,
201
+ $heading: $heading,
202
+ $breakpoint: $breakpoint,
203
+ $convert: $convert,
204
+ $base-font-size: $base-font-size
205
+ );
390
206
  }
@@ -4,7 +4,7 @@
4
4
  ////
5
5
 
6
6
  // th-breakpoint()
7
- /// Output styles with a breakpoint within a media query. Requires the
7
+ /// Output styles with a breakpoint context and a media query. Requires the
8
8
  /// Breakpoint gem (https://github.com/at-import/breakpoint).
9
9
  ///
10
10
  /// @since 0.0.10
@@ -12,11 +12,12 @@
12
12
  /// @throw th-breakpoint() requires the Breakpoint gem - https://github.com/at-import/breakpoint
13
13
  ///
14
14
  /// @param {list} $query - Media query to parse (https://github.com/at-import/breakpoint/wiki/Basic-Media-Queries).
15
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
15
+ /// @param {number} $breakpoint - A heading list breakpoint.
16
16
  ///
17
- /// @example scss - Output a heading with a 768px within a 768px min-width media query.
17
+ /// @example scss - Output a heading with a 768px breakpoint within a 768px min-width media query.
18
18
  /// @include th-breakpoint(min-width 768px, 768px) {
19
- /// @include th-heading(h1);
19
+ /// $heading: th-core-context-get(heading);
20
+ /// @include th-heading($heading);
20
21
  /// }
21
22
 
22
23
  @mixin th-breakpoint(
@@ -25,11 +26,33 @@
25
26
  ){
26
27
  @if variable-exists('breakpoint') and mixin-exists('breakpoint') {
27
28
  @include breakpoint($query) {
28
- @include th-with-breakpoint($breakpoint) {
29
+ @include th-breakpoint-context($breakpoint) {
29
30
  @content;
30
31
  }
31
32
  }
32
33
  } @else {
33
34
  @warn 'th-breakpoint requires the Breakpoint gem - https://github.com/at-import/breakpoint';
34
35
  }
36
+ }
37
+
38
+ // th-breakpoint-context
39
+ /// Output content with breakpoint context.
40
+ ///
41
+ /// @since 0.0.15
42
+ /// @content [Output with breakpoint context]
43
+ ///
44
+ /// @param {number} $breakpoint - A heading list breakpoint.
45
+ ///
46
+ /// @example scss - Output a heading with a 768px breakpoint context.
47
+ /// @include th-breakpoint(768px) {
48
+ /// $heading: th-core-context-get(heading);
49
+ /// @include th-heading($heading);
50
+ /// }
51
+
52
+ @mixin th-breakpoint-context(
53
+ $breakpoint
54
+ ){
55
+ @include th-core-context-set(breakpoint, $breakpoint) {
56
+ @content;
57
+ }
35
58
  }
@@ -35,23 +35,23 @@
35
35
  $heading,
36
36
  $breakpoint: false,
37
37
  $base-font-size: $th-base-font-size,
38
- $include: false
38
+ $include: (font-size line-height margin-top margin-bottom)
39
39
  ){
40
- $breakpoint: _th-core-breakpoint-context($breakpoint);
41
- @include th-with-breakpoint($breakpoint) {
42
- $font-size: th-property-font-size(
43
- $heading: $heading,
44
- $base-font-size: $base-font-size,
45
- $convert: false
46
- );
47
- @each $property in $_th-core-properties {
48
- @if not $include or th-list-has($include, $property) {
49
- @include th-property(
50
- $property-name: $property,
51
- $heading: $heading,
52
- $base-font-size: th-if(font-size == $property, $base-font-size, $font-size)
53
- );
54
- }
40
+ $heading: th-heading($heading, $breakpoint);
41
+ $font-size: th-property(
42
+ $property-name: font-size,
43
+ $heading: $heading,
44
+ $base-font-size: $base-font-size,
45
+ $convert: false
46
+ );
47
+ $properties: th-list-flatten($_th-core-heading-structure);
48
+ @each $property in $properties {
49
+ @if not $include or th-list-has($include, $property) {
50
+ @include th-property(
51
+ $property-name: $property,
52
+ $heading: $heading,
53
+ $base-font-size: th-if(font-size == $property, $base-font-size, $font-size)
54
+ );
55
55
  }
56
56
  }
57
57
  }
@@ -76,13 +76,123 @@
76
76
  @mixin th-headings(
77
77
  $heading,
78
78
  $base-font-size: $th-base-font-size,
79
- $include: false
79
+ $include: (font-size line-height margin-top margin-bottom)
80
80
  ){
81
- @include _th-heading-loop($heading) {
81
+ @include th-heading-context($heading, true) {
82
+ $heading: th-core-context-get(heading);
82
83
  @include th-heading(
83
84
  $heading: $heading,
84
85
  $base-font-size: $base-font-size,
85
86
  $include: $include
86
87
  );
87
88
  }
89
+ }
90
+
91
+ // th-heading-context
92
+ /// Output content with heading context.
93
+ ///
94
+ /// @since 0.0.15
95
+ /// @content [Output with heading context]
96
+ ///
97
+ /// @param {list | string} $heading - A heading map key or list.
98
+ ///
99
+ /// @example scss - Output a heading with a 768px breakpoint.
100
+ /// @include th-heading-context(h1) {
101
+ /// $heading: th-core-context-get(heading);
102
+ /// @include th-heading($heading);
103
+ /// }
104
+
105
+ @mixin th-heading-context(
106
+ $heading,
107
+ $breakpoint-output: false
108
+ ){
109
+
110
+ $heading: th-heading-get-map($heading);
111
+ @if _th-heading-has-next($heading) {
112
+ @include _th-heading-context-loop($heading, $breakpoint-output) {
113
+ @include th-core-context-set(
114
+ heading, th-heading(
115
+ $heading: $heading,
116
+ $breakpoint: th-core-context-get(breakpoint)
117
+ )
118
+ ){
119
+ @content;
120
+ }
121
+ }
122
+ } @else {
123
+ @include th-core-context-set(heading, $heading) {
124
+ @content;
125
+ }
126
+ }
127
+ }
128
+
129
+ // _th-heading-context-loop
130
+ /// Loops through a heading map and outputs @content with breakpoint context.
131
+ ///
132
+ /// @since 0.0.14
133
+ /// @access private
134
+ /// @content
135
+ ///
136
+ /// @param {type} $name
137
+ /// @param {list | string} $heading - A heading map key or list.
138
+
139
+ @mixin _th-heading-context-loop(
140
+ $heading,
141
+ $breakpoint-output: false
142
+ ){
143
+ $heading-map: th-heading-get-map($heading);
144
+ @if _th-heading-has-next($heading) {
145
+ @each $heading-list in $heading-map {
146
+ $breakpoint: _th-property-get($heading-list, breakpoint);
147
+ @if $breakpoint {
148
+ @if $breakpoint-output {
149
+ @include th-breakpoint($breakpoint, $breakpoint) {
150
+ @content;
151
+ }
152
+ } @else {
153
+ @include th-breakpoint-context($breakpoint) {
154
+ @content;
155
+ }
156
+ }
157
+ } @else {
158
+ @content;
159
+ }
160
+ }
161
+ }
162
+ }
163
+
164
+ // th-h()
165
+ /// Alias to th-heading() mixin.
166
+ ///
167
+ /// @since 0.0.15
168
+
169
+ @mixin th-h(
170
+ $heading,
171
+ $breakpoint: false,
172
+ $base-font-size: $th-base-font-size,
173
+ $include: (font-size line-height margin-top margin-bottom)
174
+ ){
175
+ @include th-heading(
176
+ $heading: $heading,
177
+ $breakpoint: $breakpoint,
178
+ $base-font-size: $base-font-size,
179
+ $include: $include
180
+ );
181
+ }
182
+
183
+ // th-h()
184
+ /// Alias to th-headings() mixin.
185
+ ///
186
+ /// @since 0.0.15
187
+
188
+ @mixin th-hs(
189
+ $heading,
190
+ $base-font-size: $th-base-font-size,
191
+ $include: (font-size line-height margin-top margin-bottom)
192
+ ){
193
+ @include th-headings(
194
+ $heading: $heading,
195
+ $base-font-size: $base-font-size,
196
+ $include: $include
197
+ );
88
198
  }