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.
@@ -41,67 +41,21 @@
41
41
  /// )
42
42
 
43
43
  @mixin th-property(
44
- $heading,
45
44
  $property-name,
45
+ $heading,
46
46
  $breakpoint: false,
47
47
  $convert: true,
48
48
  $base-font-size: $th-base-font-size
49
49
  ){
50
50
  @if font-size != $property-name {
51
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size);
52
- }
53
- @if th-list-has($_th-core-properties, $property-name) {
54
- $breakpoint: _th-core-breakpoint-context($breakpoint);
55
- #{$property-name}: call(th-property-#{$property-name},
56
- $heading: $heading,
57
- $breakpoint: $breakpoint,
58
- $convert: $convert,
59
- $base-font-size: $base-font-size
51
+ $base-font-size: _th-property-base(
52
+ $heading,
53
+ $breakpoint,
54
+ $base-font-size
60
55
  );
61
56
  }
62
- }
63
-
64
- // th-property-font-size()
65
- /// Output heading font size styles.
66
- ///
67
- /// @since 0.0.10
68
- ///
69
- /// @param {string} $heading - A heading map key.
70
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
71
- /// @param {boolean | string} $convert [true] - (false | px | em | rem | rel | percent) - If returned value should be unit converted or overridden.
72
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
73
- ///
74
- /// @example scss - Output h1 font size styles.
75
- /// @include th-property-font-size(h1)
76
- /// @example scss - Output h1 font size styles with 768px breakpoint.
77
- /// @include th-property-font-size(
78
- /// $heading: h1,
79
- /// $breakpoint: 768px
80
- /// )
81
- /// @example scss - Output h1 font size styles without unit conversion.
82
- /// @include th-property-font-size(
83
- /// $heading: h1,
84
- /// $convert: false
85
- /// )
86
- /// @example scss - Output h1 font size styles and unit override to percent.
87
- /// @include th-property-font-size(
88
- /// $heading: h1,
89
- /// $convert: percent
90
- /// )
91
- /// @example scss - Output h1 font size with a base font size of 24px.
92
- /// @include th-property-font-size(
93
- /// $heading: h1,
94
- /// $base-font-size: 24px
95
- /// )
96
-
97
- @mixin th-property-font-size(
98
- $heading,
99
- $breakpoint: false,
100
- $convert: true,
101
- $base-font-size: $th-base-font-size
102
- ){
103
- @include th-property(
104
- $property-name: font-size,
57
+ #{$property-name}: th-property(
58
+ $property-name: $property-name,
105
59
  $heading: $heading,
106
60
  $breakpoint: $breakpoint,
107
61
  $convert: $convert,
@@ -109,146 +63,20 @@
109
63
  );
110
64
  }
111
65
 
112
- // th-property-line-height()
113
- /// Output heading line height styles.
114
- ///
115
- /// @since 0.0.10
116
- ///
117
- /// @param {string} $heading - A heading map key.
118
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
119
- /// @param {boolean | string} $convert [true] - (false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
120
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
66
+ // th-p()
67
+ /// Alias to th-property() mixin.
121
68
  ///
122
- /// @example scss - Output h1 line height styles.
123
- /// @include th-property-line-height(h1)
124
- /// @example scss - Output h1 line height styles with 768px breakpoint.
125
- /// @include th-property-line-height(
126
- /// $heading: h1,
127
- /// $breakpoint: 768px
128
- /// )
129
- /// @example scss - Output h1 line height styles without unit conversion.
130
- /// @include th-property-line-height(
131
- /// $heading: h1,
132
- /// $convert: false
133
- /// )
134
- /// @example scss - Output h1 line height styles and unit override to percent.
135
- /// @include th-property-line-height(
136
- /// $heading: h1,
137
- /// $convert: percent
138
- /// )
139
- /// @example scss - Output h1 line height with a base font size of 24px.
140
- /// @include th-property-line-height(
141
- /// $heading: h1,
142
- /// $base-font-size: 24px
143
- /// )
69
+ /// @since 0.0.15
144
70
 
145
- @mixin th-property-line-height(
146
- $heading,
147
- $breakpoint: false,
148
- $convert: true,
149
- $base-font-size: $th-base-font-size
150
- ){
151
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size);
152
- @include th-property(
153
- $property-name: line-height,
154
- $heading: $heading,
155
- $breakpoint: $breakpoint,
156
- $convert: $convert,
157
- $base-font-size: $base-font-size
158
- );
159
- }
160
-
161
- // th-property-margin-top()
162
- /// Output heading margin top styles.
163
- ///
164
- /// @since 0.0.10
165
- ///
166
- /// @param {string} $heading - A heading map key.
167
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
168
- /// @param {boolean | string} $convert [true] - (false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
169
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
170
- ///
171
- /// @example scss - Output h1 margin top styles.
172
- /// @include th-property-margin-top(h1)
173
- /// @example scss - Output h1 margin top styles with 768px breakpoint.
174
- /// @include th-property-margin-top(
175
- /// $heading: h1,
176
- /// $breakpoint: 768px
177
- /// )
178
- /// @example scss - Output h1 margin top styles without unit conversion.
179
- /// @include th-property-margin-top(
180
- /// $heading: h1,
181
- /// $convert: false
182
- /// )
183
- /// @example scss - Output h1 margin top styles and unit override to percent.
184
- /// @include th-property-margin-top(
185
- /// $heading: h1,
186
- /// $convert: percent
187
- /// )
188
- /// @example scss - Output h1 margin top with a base font size of 24px.
189
- /// @include th-property-margin-top(
190
- /// $heading: h1,
191
- /// $base-font-size: 24px
192
- /// )
193
-
194
- @mixin th-property-margin-top(
195
- $heading,
196
- $breakpoint: false,
197
- $convert: true,
198
- $base-font-size: $th-base-font-size
199
- ){
200
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size);
201
- @include th-property(
202
- $property-name: margin-top,
203
- $heading: $heading,
204
- $breakpoint: $breakpoint,
205
- $convert: $convert,
206
- $base-font-size: $base-font-size
207
- );
208
- }
209
-
210
- // th-property-margin-bottom()
211
- /// Output heading margin bottom styles.
212
- ///
213
- /// @since 0.0.10
214
- ///
215
- /// @param {string} $heading - A heading map key.
216
- /// @param {number | boolean} $breakpoint [false] - A heading list breakpoint.
217
- /// @param {boolean | string} $convert [true] - (false | px | em | rem | rel | percent) If returned value should be unit converted or overridden.
218
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
219
- ///
220
- /// @example scss - Output h1 margin bottom styles.
221
- /// @include th-property-margin-bottom(h1)
222
- /// @example scss - Output h1 margin bottom styles with 768px breakpoint.
223
- /// @include th-property-margin-bottom(
224
- /// $heading: h1,
225
- /// $breakpoint: 768px
226
- /// )
227
- /// @example scss - Output h1 margin bottom styles without unit conversion.
228
- /// @include th-property-margin-bottom(
229
- /// $heading: h1,
230
- /// $convert: false
231
- /// )
232
- /// @example scss - Output h1 margin bottom styles and unit override to percent.
233
- /// @include th-property-margin-bottom(
234
- /// $heading: h1,
235
- /// $convert: percent
236
- /// )
237
- /// @example scss - Output h1 margin bottom with a base font size of 24px.
238
- /// @include th-property-margin-bottom(
239
- /// $heading: h1,
240
- /// $base-font-size: 24px
241
- /// )
242
-
243
- @mixin th-property-margin-bottom(
71
+ @mixin th-p(
72
+ $property-name,
244
73
  $heading,
245
74
  $breakpoint: false,
246
75
  $convert: true,
247
76
  $base-font-size: $th-base-font-size
248
77
  ){
249
- $base-font-size: _th-property-base($heading, $breakpoint, $base-font-size);
250
78
  @include th-property(
251
- $property-name: margin-bottom,
79
+ $property-name: $property-name,
252
80
  $heading: $heading,
253
81
  $breakpoint: $breakpoint,
254
82
  $convert: $convert,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type-heading
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliot Mitchum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-23 00:00:00.000000000 Z
11
+ date: 2015-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -62,12 +62,12 @@ files:
62
62
  - lib/type-heading.rb
63
63
  - stylesheets/_type-heading.scss
64
64
  - stylesheets/type-heading/_settings.scss
65
- - stylesheets/type-heading/functions/_core.scss
65
+ - stylesheets/type-heading/api/_core.scss
66
+ - stylesheets/type-heading/api/_deprecated.scss
67
+ - stylesheets/type-heading/api/_helpers.scss
66
68
  - stylesheets/type-heading/functions/_heading.scss
67
- - stylesheets/type-heading/functions/_helpers.scss
68
69
  - stylesheets/type-heading/functions/_property.scss
69
70
  - stylesheets/type-heading/mixins/_breakpoint.scss
70
- - stylesheets/type-heading/mixins/_core.scss
71
71
  - stylesheets/type-heading/mixins/_heading.scss
72
72
  - stylesheets/type-heading/mixins/_property.scss
73
73
  - templates/project/manifest.rb
@@ -1,73 +0,0 @@
1
- ////
2
- /// Core
3
- /// @group Core
4
- ////
5
-
6
- // $_th-core-breakpoint-context
7
- /// Global breakpoint variable for various mixins and functions.
8
- ///
9
- /// @since 0.0.12
10
- /// @type Bool | Number
11
- /// @access private
12
-
13
- $_th-core-breakpoint-context: false !default;
14
-
15
- // $_th-core-with
16
- /// Map of heading property values within a th-with loop.
17
- ///
18
- /// @since 0.0.14
19
- /// @see {function} th-with
20
- /// @type Map
21
- /// @access private
22
-
23
- $_th-core-with: () !default;
24
-
25
- // $_th-core-properties
26
- /// List of available heading property names.
27
- ///
28
- /// @since 0.0.14
29
- /// @type List
30
- /// @access private
31
-
32
- $_th-core-properties: (margin-top margin-bottom font-size line-height);
33
-
34
- // _th-core-breakpoint-context()
35
- /// Return either contextual breakpoint if set or current breakpoint value.
36
- ///
37
- /// @since 0.0.12
38
- /// @return {number} Current or contextual breakpoint.
39
- ///
40
- /// @param {number} $breakpoint - A heading breakpoint.
41
-
42
- @function _th-core-breakpoint-context(
43
- $breakpoint
44
- ){
45
- @if global-variable-exists('_th-core-breakpoint-context') and $_th-core-breakpoint-context {
46
- @return $_th-core-breakpoint-context;
47
- } @else {
48
- @return $breakpoint;
49
- }
50
- }
51
-
52
- // th-with-get()
53
- /// Return a heading property value within a th-with loop.
54
- ///
55
- /// @since 0.0.14
56
- /// @see {mixin} th-with
57
- /// @return {number} Heading property value.
58
- ///
59
- /// @param {string} $property-name - Name of the heading property to return.
60
- ///
61
- /// @example scss - Return font size from within a th-with loop.
62
- /// @include th-with(h1) {
63
- /// font-size: th-with-get(font-size);
64
- /// }
65
- /// // font-size: 18px;
66
-
67
- @function th-with-get(
68
- $property-name
69
- ){
70
- @if $_th-core-with {
71
- @return map-get($_th-core-with, $property-name);
72
- }
73
- }
@@ -1,154 +0,0 @@
1
- ////
2
- /// Core
3
- /// @group Core
4
- ////
5
-
6
- // _th-core-breakpoint-context
7
- /// Global breakpoint variable for various mixins and functions.
8
- ///
9
- /// @since 0.0.12
10
- /// @type Bool | Number
11
- /// @access private
12
-
13
- $_th-core-breakpoint-context: false !default;
14
-
15
- // _th-core-with
16
- /// Map of heading property values within a th-with loop.
17
- ///
18
- /// @since 0.0.14
19
- /// @see {function} th-with
20
- /// @type Map
21
- /// @access private
22
-
23
- $_th-core-with: () !default;
24
-
25
- // th-with-breakpoint()
26
- /// Use a breakpoint for a section of code.
27
- ///
28
- /// @since 0.0.12
29
- /// @content
30
- ///
31
- /// @param {number} $breakpoint - A heading list breakpoint.
32
- ///
33
- /// @example scss - Output a heading with a 768px breakpoint.
34
- /// @include th-with-breakpoint(768px) {
35
- /// @include th-heading(h1);
36
- /// }
37
-
38
- @mixin th-with-breakpoint(
39
- $breakpoint
40
- ){
41
- $cache: $_th-core-breakpoint-context;
42
- $_th-core-breakpoint-context: $breakpoint !global;
43
- @content;
44
- $_th-core-breakpoint-context: $cache !global;
45
- }
46
-
47
- // _th-heading-loop
48
- /// Loops through a heading map and outputs @content with breakpoint context.
49
- ///
50
- /// @since 0.0.14
51
- /// @access private
52
- /// @content
53
- ///
54
- /// @param {type} $name
55
- /// @param {list | string} $heading - A heading map key or list.
56
-
57
- @mixin _th-heading-loop(
58
- $heading
59
- ){
60
- $heading-map: th-heading-get-map($heading);
61
- @if _th-heading-has-next($heading-map) {
62
- @each $heading-list in $heading-map {
63
- $breakpoint: _th-property-get($heading-list, breakpoint);
64
- @if $breakpoint {
65
- @include th-breakpoint($breakpoint, $breakpoint) {
66
- @content;
67
- }
68
- } @else {
69
- @content;
70
- }
71
- }
72
- } @else {
73
- @content;
74
- }
75
- }
76
-
77
- // _th-with-var-set()
78
- /// Sets $_th-core-with global variable with contextual heading property values.
79
- ///
80
- /// @since 0.0.14
81
- /// @see th-with
82
- /// @access private
83
- ///
84
- /// @param {list} $heading-list - A list of heading property values.
85
- /// @param {boolean} $convert [false] - If returned value should be unit converted.
86
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
87
-
88
- @mixin _th-with-var-set(
89
- $heading-list,
90
- $convert: false,
91
- $base-font-size: $th-base-font-size
92
- ){
93
- $th-with-vars: ();
94
- $font-size: th-property-font-size(
95
- $heading: $heading-list,
96
- $base-font-size: $base-font-size,
97
- $convert: false
98
- );
99
- @each $property in $_th-core-properties {
100
- $base: th-if(font-size == $property, $base-font-size, $font-size);
101
- $th-with-vars: map-merge($th-with-vars, (
102
- $property: call(th-property-#{$property},
103
- $heading: $heading-list,
104
- $convert: $convert,
105
- $base-font-size: $base
106
- ))
107
- );
108
- }
109
- $_th-core-with: $th-with-vars !global;
110
- }
111
-
112
- // _th-with-var-reset()
113
- /// Resets $th-with-vars global variable.
114
- ///
115
- /// @since 0.0.14
116
- /// @access private
117
-
118
- @mixin _th-with-var-reset {
119
- $_th-core-with: false !global;
120
- }
121
-
122
- // th-with()
123
- /// Loop through a headings breakpoints with access to it's
124
- /// property values as a global variable. $th-font-size, $th-line-height,
125
- /// $th-margin-top, $th-margin-bottom will become available to you within the
126
- /// mixin.
127
- ///
128
- /// @since 0.0.14
129
- /// @see {function} th-with-get
130
- /// @content [Styles for the contextual heading list]
131
- ///
132
- /// @param {list | string} $heading - A heading map key or list.
133
- /// @param {boolean} $convert [false] - If returned value should be unit converted.
134
- /// @param {number} $base-font-size [$th-base-font-size] - Font size used for relative calculations.
135
- ///
136
- /// @example scss - Output font-size, line-height, margin-top and margin-bottom properties individually for a heading.
137
- /// @include th-with(h1) {
138
- /// margin-top: th-with-get(margin-top);
139
- /// margin-bottom: th-with-get(margin-bottom);
140
- /// font-size: th-with-get(font-size);;
141
- /// line-height: th-with-get(line-height);
142
- /// }
143
-
144
- @mixin th-with(
145
- $heading,
146
- $convert: false,
147
- $base-font-size: $th-base-font-size
148
- ){
149
- @include _th-heading-loop($heading) {
150
- @include _th-with-var-set($heading, $convert, $base-font-size);
151
- @content;
152
- @include _th-with-var-reset;
153
- }
154
- }