@progress/kendo-theme-material 8.0.0-dev.8 → 8.0.0

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 (38) hide show
  1. package/dist/all.css +224 -93
  2. package/dist/all.scss +356 -72
  3. package/dist/meta/sassdoc-data.json +35593 -28945
  4. package/dist/meta/sassdoc-raw-data.json +4815 -1293
  5. package/dist/meta/variables.json +64 -64
  6. package/lib/swatches/material-aqua-dark.json +1 -1
  7. package/lib/swatches/material-arctic.json +1 -1
  8. package/lib/swatches/material-burnt-teal.json +1 -1
  9. package/lib/swatches/material-dataviz-v4.json +1 -1
  10. package/lib/swatches/material-eggplant.json +1 -1
  11. package/lib/swatches/material-lime-dark.json +1 -1
  12. package/lib/swatches/material-lime.json +1 -1
  13. package/lib/swatches/material-main-dark.json +1 -1
  14. package/lib/swatches/material-main.json +1 -1
  15. package/lib/swatches/material-nova.json +1 -1
  16. package/lib/swatches/material-pacific-dark.json +1 -1
  17. package/lib/swatches/material-pacific.json +1 -1
  18. package/lib/swatches/material-sky-dark.json +1 -1
  19. package/lib/swatches/material-sky.json +1 -1
  20. package/lib/swatches/material-smoke.json +1 -1
  21. package/package.json +6 -6
  22. package/scss/button/_layout.scss +9 -0
  23. package/scss/button/_theme.scss +20 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/calendar/_variables.scss +11 -0
  26. package/scss/checkbox/_variables.scss +1 -1
  27. package/scss/chip/_theme.scss +3 -3
  28. package/scss/chip/_variables.scss +1 -1
  29. package/scss/core/border-radii/index.import.scss +26 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +1 -1
  31. package/scss/core/color-system/_swatch.scss +1 -1
  32. package/scss/drawer/_variables.scss +12 -2
  33. package/scss/scheduler/_variables.scss +1 -1
  34. package/scss/switch/_variables.scss +1 -1
  35. package/scss/timeline/_variables.scss +1 -1
  36. package/scss/toolbar/_theme.scss +27 -0
  37. package/scss/tooltip/_variables.scss +1 -1
  38. package/scss/typography/_variables.scss +159 -1
@@ -31,7 +31,7 @@
31
31
  }
32
32
  } @else if ($name == "warning") {
33
33
  @include fill(
34
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
34
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
35
35
  );
36
36
 
37
37
  &:focus,
@@ -44,14 +44,14 @@
44
44
  &.k-hover {
45
45
  @include fill(
46
46
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint( $color, 80% )),
47
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
47
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
48
48
  );
49
49
  }
50
50
 
51
51
  &.k-selected {
52
52
  @include fill(
53
53
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 65% )),
54
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
54
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
55
55
  );
56
56
  }
57
57
  } @else {
@@ -146,7 +146,7 @@ $kendo-chip-solid-selected-text: null !default;
146
146
  $kendo-chip-outline-bg: $kendo-component-bg !default;
147
147
  /// The base text color of the outline Chip.
148
148
  /// @group chip
149
- $kendo-chip-outline-text: $kendo-chip-solid-text !default;
149
+ $kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
150
150
  /// The base border color of the outline Chip.
151
151
  /// @group chip
152
152
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
@@ -1,9 +1,35 @@
1
+ /// The none border radius used across the Components.
2
+ /// @group radii
3
+ $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4
+ /// The extra small border radius used across the Components.
5
+ /// @group radii
6
+ $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
7
+ /// The small border radius used across the Components.
8
+ /// @group radii
9
+ $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
10
+ /// The medium border radius used across the Components.
11
+ /// @group radii
12
+ $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
13
+ /// The large border radius used across the Components.
14
+ /// @group radii
1
15
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 2) !default;
16
+ /// The extra large border radius used across the Components.
17
+ /// @group radii
2
18
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 3) !default;
19
+ /// The third largest border radius used across the Components.
20
+ /// @group radii
3
21
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 4) !default;
22
+ /// The second largest border radius used across the Components.
23
+ /// @group radii
4
24
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 5) !default;
5
25
 
26
+ /// The global radii Map.
27
+ /// @group radii
6
28
  $kendo-border-radii: (
29
+ none: $kendo-border-radius-none,
30
+ xs: $kendo-border-radius-xs,
31
+ sm: $kendo-border-radius-sm,
32
+ md: $kendo-border-radius-md,
7
33
  lg: $kendo-border-radius-lg,
8
34
  xl: $kendo-border-radius-xl,
9
35
  xxl: $kendo-border-radius-xxl,
@@ -1,6 +1,7 @@
1
1
  @if ($kendo-enable-color-system) {
2
2
  $kendo-color-primary: k-color( primary );
3
3
  $kendo-color-primary-contrast: k-color( on-primary );
4
+ $kendo-color-primary-darker: k-color( primary-active );
4
5
  $kendo-color-secondary: k-color( secondary );
5
6
  $kendo-color-secondary-contrast: k-color( on-secondary );
6
7
  $kendo-color-tertiary: k-color( tertiary );
@@ -61,5 +62,4 @@
61
62
  "inverse": $kendo-color-inverse,
62
63
  );
63
64
 
64
-
65
65
  }
@@ -114,7 +114,7 @@ $_default-colors: (
114
114
  light-emphasis: k-map-get( $kendo-palette-gray, 5 ),
115
115
  light-on-subtle: k-map-get( $kendo-palette-gray, 15 ),
116
116
  on-light: k-map-get( $kendo-palette-gray, black ),
117
- light-on-surface: k-map-get( $kendo-palette-gray, 13 ),
117
+ light-on-surface: k-map-get( $kendo-palette-gray, 4 ),
118
118
  // Dark
119
119
  dark-subtle: k-map-get( $kendo-palette-gray, 7 ),
120
120
  dark-subtle-hover: k-map-get( $kendo-palette-gray, 8 ),
@@ -12,13 +12,23 @@ $kendo-drawer-border: $kendo-component-border !default;
12
12
  /// The border width of the Drawer.
13
13
  /// @group drawer
14
14
  $kendo-drawer-border-width: 1px !default;
15
+
16
+ /// The font family of the Drawer.
17
+ /// @group drawer
15
18
  $kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
19
+ /// The font size of the Drawer.
20
+ /// @group drawer
16
21
  $kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
22
+ /// The line height of the Drawer.
23
+ /// @group drawer
17
24
  $kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
18
- $kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
25
+
26
+ /// The horizontal padding of the Drawer content.
27
+ /// @group drawer
28
+ $kendo-drawer-content-padding-x: null !default;
19
29
  /// The vertical padding of the Drawer content.
20
30
  /// @group drawer
21
- $kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
31
+ $kendo-drawer-content-padding-y: null !default;
22
32
 
23
33
  /// The width of the Drawer scrollbar.
24
34
  /// @group drawer
@@ -209,7 +209,7 @@ $kendo-scheduler-tooltip-title-margin-y: k-spacing(2) !default;
209
209
  $kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
210
210
  /// The font size of the day inside the Scheduler Tooltip.
211
211
  /// @group scheduler
212
- $kendo-scheduler-tooltip-day-font-size: calc( #{$kendo-scheduler-tooltip-month-font-size} * 2 ) !default;
212
+ $kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
213
213
 
214
214
  /// The max height of the events inside the Scheduler Tooltip.
215
215
  /// @group scheduler
@@ -112,7 +112,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
112
112
 
113
113
  /// The background of the track when the Switch is checked.
114
114
  /// @group switch
115
- $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
115
+ $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 44%, transparent), rgba( $kendo-color-primary, .54 )) !default;
116
116
  /// The text color of the track when the Switch is checked.
117
117
  /// @group switch
118
118
  $kendo-switch-on-track-text: null !default;
@@ -67,7 +67,7 @@ $kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2
67
67
  $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
68
68
  /// The background color of the Timeline track.
69
69
  /// @group timeline
70
- $kendo-timeline-track-bg: #e0e0e0 !default;
70
+ $kendo-timeline-track-bg: if($kendo-enable-color-system, k-color( base-subtle ), #e0e0e0) !default;
71
71
  /// The border color of the Timeline track.
72
72
  /// @group timeline
73
73
  $kendo-timeline-track-border-color: $kendo-timeline-track-bg !default;
@@ -11,6 +11,33 @@
11
11
  background-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
12
12
  border-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
13
13
 
14
+ // Hover state
15
+ &:hover,
16
+ &.k-hover {
17
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
18
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
19
+ }
20
+
21
+ // Focus state
22
+ &:focus,
23
+ &.k-focus {
24
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
26
+ }
27
+
28
+ // Active state
29
+ &:active,
30
+ &.k-active {
31
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
32
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
33
+ }
34
+
35
+ // Selected state
36
+ &.k-selected {
37
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
38
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
39
+ }
40
+
14
41
  &.k-input-button,
15
42
  &.k-input-spinner .k-spinner-increase,
16
43
  &.k-input-spinner .k-spinner-decrease {
@@ -25,7 +25,7 @@ $kendo-tooltip-line-height: k-math-div( 20, 14 ) !default;
25
25
 
26
26
  /// The font size of the Tooltip title.
27
27
  /// @group tooltip
28
- $kendo-tooltip-title-font-size: calc( #{$kendo-tooltip-font-size} * 1.25 ) !default;
28
+ $kendo-tooltip-title-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 1.25 ) !default;
29
29
  /// The line height of the Tooltip title.
30
30
  /// @group tooltip
31
31
  $kendo-tooltip-title-line-height: 1 !default;
@@ -2,48 +2,124 @@
2
2
 
3
3
 
4
4
  // Headings
5
+
6
+ /// The font size of the highest level heading.
7
+ /// @group typography
5
8
  $kendo-h1-font-size: 96px !default;
9
+ /// The font size of the second highest level heading.
10
+ /// @group typography
6
11
  $kendo-h2-font-size: 60px !default;
12
+ /// The font size of the third highest level heading.
13
+ /// @group typography
7
14
  $kendo-h3-font-size: 48px !default;
15
+ /// The font size of the fourth highest level heading.
16
+ /// @group typography
8
17
  $kendo-h4-font-size: 34px !default;
18
+ /// The font size of the fifth highest level heading.
19
+ /// @group typography
9
20
  $kendo-h5-font-size: 24px !default;
21
+ /// The font size of the sixth highest level heading.
22
+ /// @group typography
10
23
  $kendo-h6-font-size: 20px !default;
11
24
 
25
+ /// The font family of the highest level heading.
26
+ /// @group typography
12
27
  $kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
28
+ /// The font family of the second highest level heading.
29
+ /// @group typography
13
30
  $kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
31
+ /// The font family of the third highest level heading.
32
+ /// @group typography
14
33
  $kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
34
+ /// The font family of the fourth highest level heading.
35
+ /// @group typography
15
36
  $kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
37
+ /// The font family of the fifth highest level heading.
38
+ /// @group typography
16
39
  $kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
40
+ /// The font family of the sixth highest level heading.
41
+ /// @group typography
17
42
  $kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
18
43
 
44
+ /// The line height of the highest level heading.
45
+ /// @group typography
19
46
  $kendo-h1-line-height: 112px !default;
47
+ /// The line height of the second highest level heading.
48
+ /// @group typography
20
49
  $kendo-h2-line-height: 72px !default;
50
+ /// The line height of the third highest level heading.
51
+ /// @group typography
21
52
  $kendo-h3-line-height: 56px !default;
53
+ /// The line height of the fourth highest level heading.
54
+ /// @group typography
22
55
  $kendo-h4-line-height: 36px !default;
56
+ /// The line height of the fifth highest level heading.
57
+ /// @group typography
23
58
  $kendo-h5-line-height: 24px !default;
59
+ /// The line height of the sixth highest level heading.
60
+ /// @group typography
24
61
  $kendo-h6-line-height: 24px !default;
25
62
 
63
+ /// The font weight of the highest level heading.
64
+ /// @group typography
26
65
  $kendo-h1-font-weight: var( --kendo-font-weight-light, normal ) !default;
66
+ /// The font weight of the second highest level heading.
67
+ /// @group typography
27
68
  $kendo-h2-font-weight: var( --kendo-font-weight-light, normal ) !default;
69
+ /// The font weight of the third highest level heading.
70
+ /// @group typography
28
71
  $kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
72
+ /// The font weight of the fourth highest level heading.
73
+ /// @group typography
29
74
  $kendo-h4-font-weight: var( --kendo-font-weight-normal, normal ) !default;
75
+ /// The font weight of the fifth highest level heading.
76
+ /// @group typography
30
77
  $kendo-h5-font-weight: var( --kendo-font-weight-normal, normal ) !default;
78
+ /// The font weight of the sixth highest level heading.
79
+ /// @group typography
31
80
  $kendo-h6-font-weight: var( --kendo-font-weight-medium, normal ) !default;
32
81
 
82
+ /// The letter spacing of the highest level heading.
83
+ /// @group typography
33
84
  $kendo-h1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
85
+ /// The letter spacing of the second highest level heading.
86
+ /// @group typography
34
87
  $kendo-h2-letter-spacing: var( --kendo-letter-spacing-tight, normal ) !default;
88
+ /// The letter spacing of the third highest level heading.
89
+ /// @group typography
35
90
  $kendo-h3-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
91
+ /// The letter spacing of the fourth highest level heading.
92
+ /// @group typography
36
93
  $kendo-h4-letter-spacing: var( --kendo-letter-spacing-wider, normal ) !default;
94
+ /// The letter spacing of the fifth highest level heading.
95
+ /// @group typography
37
96
  $kendo-h5-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
97
+ /// The letter spacing of the sixth highest level heading.
98
+ /// @group typography
38
99
  $kendo-h6-letter-spacing: var( --kendo-letter-spacing-wide, normal ) !default;
39
100
 
101
+
102
+ /// The margin of the highest level heading.
103
+ /// @group typography
40
104
  $kendo-h1-margin: 0 0 12px !default;
105
+ /// The margin of the second highest level heading.
106
+ /// @group typography
41
107
  $kendo-h2-margin: 0 0 12px !default;
108
+ /// The margin of the third highest level heading.
109
+ /// @group typography
42
110
  $kendo-h3-margin: 0 0 12px !default;
111
+ /// The margin of the fourth highest level heading.
112
+ /// @group typography
43
113
  $kendo-h4-margin: 0 0 12px !default;
114
+ /// The margin of the fifth highest level heading.
115
+ /// @group typography
44
116
  $kendo-h5-margin: 0 0 12px !default;
117
+ /// The margin of the sixth highest level heading.
118
+ /// @group typography
45
119
  $kendo-h6-margin: 0 0 12px !default;
46
120
 
121
+ /// The headings Map.
122
+ /// @group typography
47
123
  $kendo-headings: (
48
124
  h1: (
49
125
  font-size: $kendo-h1-font-size,
@@ -98,58 +174,140 @@ $kendo-headings: (
98
174
 
99
175
 
100
176
  // Paragraph
177
+
178
+ /// The margin of the paragraph.
179
+ /// @group typography
101
180
  $kendo-paragraph-margin: 0 0 12px !default;
181
+ /// The font size of the paragraph.
182
+ /// @group typography
102
183
  $kendo-paragraph-font-size: 1rem !default;
184
+ /// The font family of the paragraph.
185
+ /// @group typography
103
186
  $kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
187
+ /// The line height of the paragraph.
188
+ /// @group typography
104
189
  $kendo-paragraph-line-height: var( --kendo-line-height-lg, normal ) !default;
190
+ /// The font weight of the paragraph.
191
+ /// @group typography
105
192
  $kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
193
+ /// The letter spacing of the paragraph.
194
+ /// @group typography
106
195
  $kendo-paragraph-letter-spacing: .0313em !default;
107
196
 
108
197
 
109
198
  // Code
199
+
200
+ /// The font size of the code tag.
201
+ /// @group typography
110
202
  $kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
203
+ /// The font family of the code tag.
204
+ /// @group typography
111
205
  $kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
206
+ /// The line height of the code tag.
207
+ /// @group typography
112
208
  $kendo-code-line-height: var( --kendo-line-height, normal ) !default;
209
+ /// The font weight of the code tag.
210
+ /// @group typography
113
211
  $kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
212
+ /// The letter spacing of the code tag.
213
+ /// @group typography
114
214
  $kendo-code-letter-spacing: null !default;
115
215
 
216
+ /// The horizontal padding of the code tag.
217
+ /// @group typography
116
218
  $kendo-code-padding-x: k-spacing(1) !default;
219
+ /// The vertical padding of the code tag.
220
+ /// @group typography
117
221
  $kendo-code-padding-y: k-spacing(0) !default;
222
+ /// The horizontal padding of the preformatted text.
223
+ /// @group typography
118
224
  $kendo-pre-padding-x: k-spacing(6) !default;
225
+ /// The vertical padding of the preformatted text.
226
+ /// @group typography
119
227
  $kendo-pre-padding-y: k-spacing(4) !default;
228
+ /// The border width of the code tag.
229
+ /// @group typography
120
230
  $kendo-code-border-width: 1px !default;
121
231
 
232
+ /// The background color of the code tag.
233
+ /// @group typography
122
234
  $kendo-code-bg: $kendo-base-bg !default;
235
+ /// The text color of the code tag.
236
+ /// @group typography
123
237
  $kendo-code-text: $kendo-component-text !default;
238
+ /// The border color of the code tag.
239
+ /// @group typography
124
240
  $kendo-code-border: $kendo-component-border !default;
125
241
 
126
-
127
242
  // Display
243
+
244
+ /// The font size of the largest display text.
245
+ /// @group typography
128
246
  $kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 9.5 ) !default;
247
+ /// The font size of the second largest display text.
248
+ /// @group typography
129
249
  $kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 8.75 ) !default;
250
+ /// The font size of the third largest display text.
251
+ /// @group typography
130
252
  $kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 8 ) !default;
253
+ /// The font size of the fourth largest display text.
254
+ /// @group typography
131
255
  $kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 7.25 ) !default;
132
256
 
257
+ /// The font family of the largest display text.
258
+ /// @group typography
133
259
  $kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
260
+ /// The font family of the second largest display text.
261
+ /// @group typography
134
262
  $kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
263
+ /// The font family of the third largest display text.
264
+ /// @group typography
135
265
  $kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
266
+ /// The font family of the fourth largest display text.
267
+ /// @group typography
136
268
  $kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
137
269
 
270
+ /// The line height of the largest display text.
271
+ /// @group typography
138
272
  $kendo-display1-line-height: 1.2 !default;
273
+ /// The line height of the second largest display text.
274
+ /// @group typography
139
275
  $kendo-display2-line-height: 1.2 !default;
276
+ /// The line height of the third largest display text.
277
+ /// @group typography
140
278
  $kendo-display3-line-height: 1.2 !default;
279
+ /// The line height of the fourth largest display text.
280
+ /// @group typography
141
281
  $kendo-display4-line-height: 1.2 !default;
142
282
 
283
+ /// The font weight of the largest display text.
284
+ /// @group typography
143
285
  $kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
286
+ /// The font weight of the second largest display text.
287
+ /// @group typography
144
288
  $kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
289
+ /// The font weight of the third largest display text.
290
+ /// @group typography
145
291
  $kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
292
+ /// The font weight of the fourth largest display text.
293
+ /// @group typography
146
294
  $kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
147
295
 
296
+ /// The letter spacing of the largest display text.
297
+ /// @group typography
148
298
  $kendo-display1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
299
+ /// The letter spacing of the second largest display text.
300
+ /// @group typography
149
301
  $kendo-display2-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
302
+ /// The letter spacing of the third largest display text.
303
+ /// @group typography
150
304
  $kendo-display3-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
305
+ /// The letter spacing of the fourth largest display text.
306
+ /// @group typography
151
307
  $kendo-display4-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
152
308
 
309
+ /// The displays Map.
310
+ /// @group typography
153
311
  $kendo-display: (
154
312
  1: (
155
313
  font-size: $kendo-display1-font-size,