@progress/kendo-theme-utils 11.1.0-dev.4 → 11.1.0-dev.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-utils",
3
3
  "description": "Utility first library alongside Kendo UI",
4
- "version": "11.1.0-dev.4",
4
+ "version": "11.1.0-dev.5",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -44,10 +44,10 @@
44
44
  "postpublish": "echo 'no postpublish for utils'"
45
45
  },
46
46
  "dependencies": {
47
- "@progress/kendo-theme-core": "11.1.0-dev.4"
47
+ "@progress/kendo-theme-core": "11.1.0-dev.5"
48
48
  },
49
49
  "directories": {
50
50
  "doc": "docs"
51
51
  },
52
- "gitHead": "e3ca3e519a00fa4da7a575c64aba2e6a7e34991d"
52
+ "gitHead": "df7b83831d15c445082b4167f8ad24267d13a64a"
53
53
  }
@@ -28,6 +28,222 @@
28
28
  /// @group outline-color
29
29
  /// @contextType css
30
30
 
31
+ /// Sets the border color to the app surface color.
32
+ /// @example outline-color: var(--kendo-color-app-surface, #fafafa);
33
+ /// @name .k-outline-app-surface
34
+ /// @group outline-color
35
+ /// @contextType css
36
+
37
+ /// Sets the border color to the on app surface color.
38
+ /// @example outline-color: var(--kendo-color-on-app-surface, #424242);
39
+ /// @name .k-outline-on-app-surface
40
+ /// @group outline-color
41
+ /// @contextType css
42
+
43
+ /// Sets the border color to the subtle color.
44
+ /// @example outline-color: var(--kendo-color-subtle, #666666);
45
+ /// @name .k-outline-subtle
46
+ /// @group outline-color
47
+ /// @contextType css
48
+
49
+ /// Sets the border color to the surface color.
50
+ /// @example outline-color: var(--kendo-color-surface, #ffffff);
51
+ /// @name .k-outline-surface
52
+ /// @group outline-color
53
+ /// @contextType css
54
+
55
+ /// Sets the border color to the surface alt color.
56
+ /// @example outline-color: var(--kendo-color-surface-alt, #f5f5f5);
57
+ /// @name .k-outline-surface-alt
58
+ /// @group outline-color
59
+ /// @contextType css
60
+
61
+ /// Sets the border color to the border color.
62
+ /// @example outline-color: var(--kendo-color-border, #d9d9d9);
63
+ /// @name .k-outline-border
64
+ /// @group outline-color
65
+ /// @contextType css
66
+
67
+ /// Sets the border color to the border alt color.
68
+ /// @example outline-color: var(--kendo-color-outline-alt, #e0e0e0);
69
+ /// @name .k-outline-alt
70
+ /// @group outline-color
71
+ /// @contextType css
72
+
73
+ /// Sets the border color to the base subtle color.
74
+ /// @example outline-color: var(--kendo-color-base-subtle, #f0f0f0);
75
+ /// @name .k-outline-base-subtle
76
+ /// @group outline-color
77
+ /// @contextType css
78
+
79
+ /// Sets the border color to the base emphasis color.
80
+ /// @example outline-color: var(--kendo-color-base-emphasis, #000000);
81
+ /// @name .k-outline-base-emphasis
82
+ /// @group outline-color
83
+ /// @contextType css
84
+
85
+ /// Sets the border color to the primary subtle color.
86
+ /// @example outline-color: var(--kendo-color-primary-subtle, #e3f2fd);
87
+ /// @name .k-outline-primary-subtle
88
+ /// @group outline-color
89
+ /// @contextType css
90
+
91
+ /// Sets the border color to the primary color.
92
+ /// @example outline-color: var(--kendo-color-primary, #2196f3);
93
+ /// @name .k-outline-primary
94
+ /// @group outline-color
95
+ /// @contextType css
96
+
97
+ /// Sets the border color to the primary emphasis color.
98
+ /// @example outline-color: var(--kendo-color-primary-emphasis, #1976d2);
99
+ /// @name .k-outline-primary-emphasis
100
+ /// @group outline-color
101
+ /// @contextType css
102
+
103
+ /// Sets the border color to the secondary subtle color.
104
+ /// @example outline-color: var(--kendo-color-secondary-subtle, #f3e5f5);
105
+ /// @name .k-outline-secondary-subtle
106
+ /// @group outline-color
107
+ /// @contextType css
108
+
109
+ /// Sets the border color to the secondary color.
110
+ /// @example outline-color: var(--kendo-color-secondary, #9c27b0);
111
+ /// @name .k-outline-secondary
112
+ /// @group outline-color
113
+ /// @contextType css
114
+
115
+ /// Sets the border color to the secondary emphasis color.
116
+ /// @example outline-color: var(--kendo-color-secondary-emphasis, #7b1fa2);
117
+ /// @name .k-outline-secondary-emphasis
118
+ /// @group outline-color
119
+ /// @contextType css
120
+
121
+ /// Sets the border color to the tertiary subtle color.
122
+ /// @example outline-color: var(--kendo-color-tertiary-subtle, #fff3e0);
123
+ /// @name .k-outline-tertiary-subtle
124
+ /// @group outline-color
125
+ /// @contextType css
126
+
127
+ /// Sets the border color to the tertiary color.
128
+ /// @example outline-color: var(--kendo-color-tertiary, #ff9800);
129
+ /// @name .k-outline-tertiary
130
+ /// @group outline-color
131
+ /// @contextType css
132
+
133
+ /// Sets the border color to the tertiary emphasis color.
134
+ /// @example outline-color: var(--kendo-color-tertiary-emphasis, #f57c00);
135
+ /// @name .k-outline-tertiary-emphasis
136
+ /// @group outline-color
137
+ /// @contextType css
138
+
139
+ /// Sets the border color to the info subtle color.
140
+ /// @example outline-color: var(--kendo-color-info-subtle, #e1f5fe);
141
+ /// @name .k-outline-info-subtle
142
+ /// @group outline-color
143
+ /// @contextType css
144
+
145
+ /// Sets the border color to the info color.
146
+ /// @example outline-color: var(--kendo-color-info, #00bcd4);
147
+ /// @name .k-outline-info
148
+ /// @group outline-color
149
+ /// @contextType css
150
+
151
+ /// Sets the border color to the info emphasis color.
152
+ /// @example outline-color: var(--kendo-color-info-emphasis, #0097a7);
153
+ /// @name .k-outline-info-emphasis
154
+ /// @group outline-color
155
+ /// @contextType css
156
+
157
+ /// Sets the border color to the success subtle color.
158
+ /// @example outline-color: var(--kendo-color-success-subtle, #e8f5e8);
159
+ /// @name .k-outline-success-subtle
160
+ /// @group outline-color
161
+ /// @contextType css
162
+
163
+ /// Sets the border color to the success color.
164
+ /// @example outline-color: var(--kendo-color-success, #4caf50);
165
+ /// @name .k-outline-success
166
+ /// @group outline-color
167
+ /// @contextType css
168
+
169
+ /// Sets the border color to the success emphasis color.
170
+ /// @example outline-color: var(--kendo-color-success-emphasis, #388e3c);
171
+ /// @name .k-outline-success-emphasis
172
+ /// @group outline-color
173
+ /// @contextType css
174
+
175
+ /// Sets the border color to the warning subtle color.
176
+ /// @example outline-color: var(--kendo-color-warning-subtle, #fff8e1);
177
+ /// @name .k-outline-warning-subtle
178
+ /// @group outline-color
179
+ /// @contextType css
180
+
181
+ /// Sets the border color to the warning color.
182
+ /// @example outline-color: var(--kendo-color-warning, #ff9800);
183
+ /// @name .k-outline-warning
184
+ /// @group outline-color
185
+ /// @contextType css
186
+
187
+ /// Sets the border color to the warning emphasis color.
188
+ /// @example outline-color: var(--kendo-color-warning-emphasis, #f57c00);
189
+ /// @name .k-outline-warning-emphasis
190
+ /// @group outline-color
191
+ /// @contextType css
192
+
193
+ /// Sets the border color to the error subtle color.
194
+ /// @example outline-color: var(--kendo-color-error-subtle, #ffebee);
195
+ /// @name .k-outline-error-subtle
196
+ /// @group outline-color
197
+ /// @contextType css
198
+
199
+ /// Sets the border color to the error color.
200
+ /// @example outline-color: var(--kendo-color-error, #f44336);
201
+ /// @name .k-outline-error
202
+ /// @group outline-color
203
+ /// @contextType css
204
+
205
+ /// Sets the border color to the error emphasis color.
206
+ /// @example outline-color: var(--kendo-color-error-emphasis, #d32f2f);
207
+ /// @name .k-outline-error-emphasis
208
+ /// @group outline-color
209
+ /// @contextType css
210
+
211
+ /// Sets the border color to the light subtle color.
212
+ /// @example outline-color: var(--kendo-color-light-subtle, #f8f9fa);
213
+ /// @name .k-outline-light-subtle
214
+ /// @group outline-color
215
+ /// @contextType css
216
+
217
+ /// Sets the border color to the light color.
218
+ /// @example outline-color: var(--kendo-color-light, #f8f9fa);
219
+ /// @name .k-outline-light
220
+ /// @group outline-color
221
+ /// @contextType css
222
+
223
+ /// Sets the border color to the light emphasis color.
224
+ /// @example outline-color: var(--kendo-color-light-emphasis, #dee2e6);
225
+ /// @name .k-outline-light-emphasis
226
+ /// @group outline-color
227
+ /// @contextType css
228
+
229
+ /// Sets the border color to the dark subtle color.
230
+ /// @example outline-color: var(--kendo-color-dark-subtle, #6c757d);
231
+ /// @name .k-outline-dark-subtle
232
+ /// @group outline-color
233
+ /// @contextType css
234
+
235
+ /// Sets the border color to the dark color.
236
+ /// @example outline-color: var(--kendo-color-dark, #343a40);
237
+ /// @name .k-outline-dark
238
+ /// @group outline-color
239
+ /// @contextType css
240
+
241
+ /// Sets the border color to the dark emphasis color.
242
+ /// @example outline-color: var(--kendo-color-dark-emphasis, #212529);
243
+ /// @name .k-outline-dark-emphasis
244
+ /// @group outline-color
245
+ /// @contextType css
246
+
31
247
  @use "sass:map";
32
248
  @use "../_globals.scss" as *;
33
249
 
@@ -334,7 +334,7 @@
334
334
 
335
335
  /// This is equivalent to `grid-column-start: auto; for the specific breakpoint`.
336
336
  /// @example grid-column-start: auto;
337
- /// @name .k-col-start-auto
337
+ /// @name .k-col-start-{xs|sm|md|lg|xl|xxl}-auto
338
338
  /// @group grid-column-responsive
339
339
  /// @contextType css
340
340
 
@@ -430,49 +430,49 @@
430
430
 
431
431
  /// This is equivalent to `grid-column-end: 2; for the specific breakpoint`.
432
432
  /// @example grid-column-end: 2;
433
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-12
433
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-2
434
434
  /// @group grid-column-responsive
435
435
  /// @contextType css
436
436
 
437
437
  /// This is equivalent to `grid-column-end: 3; for the specific breakpoint`.
438
438
  /// @example grid-column-end: 3;
439
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-13
439
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-3
440
440
  /// @group grid-column-responsive
441
441
  /// @contextType css
442
442
 
443
443
  /// This is equivalent to `grid-column-end: 4; for the specific breakpoint`.
444
444
  /// @example grid-column-end: 4;
445
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-14
445
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-4
446
446
  /// @group grid-column-responsive
447
447
  /// @contextType css
448
448
 
449
449
  /// This is equivalent to `grid-column-end: 5; for the specific breakpoint`.
450
450
  /// @example grid-column-end: 5;
451
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-15
451
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-5
452
452
  /// @group grid-column-responsive
453
453
  /// @contextType css
454
454
 
455
455
  /// This is equivalent to `grid-column-end: 6; for the specific breakpoint`.
456
456
  /// @example grid-column-end: 6;
457
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-16
457
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-6
458
458
  /// @group grid-column-responsive
459
459
  /// @contextType css
460
460
 
461
461
  /// This is equivalent to `grid-column-end: 7; for the specific breakpoint`.
462
462
  /// @example grid-column-end: 7;
463
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-17
463
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-7
464
464
  /// @group grid-column-responsive
465
465
  /// @contextType css
466
466
 
467
467
  /// This is equivalent to `grid-column-end: 8; for the specific breakpoint`.
468
468
  /// @example grid-column-end: 8;
469
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-18
469
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-8
470
470
  /// @group grid-column-responsive
471
471
  /// @contextType css
472
472
 
473
473
  /// This is equivalent to `grid-column-end: 9; for the specific breakpoint`.
474
474
  /// @example grid-column-end: 9;
475
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-19
475
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-9
476
476
  /// @group grid-column-responsive
477
477
  /// @contextType css
478
478
 
@@ -502,7 +502,7 @@
502
502
 
503
503
  /// This is equivalent to `grid-column-end: auto; for the specific breakpoint`.
504
504
  /// @example grid-column-end: auto;
505
- /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-1auto
505
+ /// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-auto
506
506
  /// @group grid-column-responsive
507
507
  /// @contextType css
508
508
 
@@ -88,49 +88,49 @@
88
88
 
89
89
  /// This is equivalent to `grid-template-columns: repeat(2, minmax(0, 1fr)); for the specific breakpoint`.
90
90
  /// @example grid-template-columns: repeat(2, minmax(0, 1fr));
91
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl2
91
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-2
92
92
  /// @group grid-template-columns-responsive
93
93
  /// @contextType css
94
94
 
95
95
  /// This is equivalent to `grid-template-columns: repeat(3, minmax(0, 1fr)); for the specific breakpoint`.
96
96
  /// @example grid-template-columns: repeat(3, minmax(0, 1fr));
97
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl3
97
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-3
98
98
  /// @group grid-template-columns-responsive
99
99
  /// @contextType css
100
100
 
101
101
  /// This is equivalent to `grid-template-columns: repeat(4, minmax(0, 1fr)); for the specific breakpoint`.
102
102
  /// @example grid-template-columns: repeat(4, minmax(0, 1fr));
103
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl4
103
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-4
104
104
  /// @group grid-template-columns-responsive
105
105
  /// @contextType css
106
106
 
107
107
  /// This is equivalent to `grid-template-columns: repeat(5, minmax(0, 1fr)); for the specific breakpoint`.
108
108
  /// @example grid-template-columns: repeat(5, minmax(0, 1fr));
109
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl5
109
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-5
110
110
  /// @group grid-template-columns-responsive
111
111
  /// @contextType css
112
112
 
113
113
  /// This is equivalent to `grid-template-columns: repeat(6, minmax(0, 1fr)); for the specific breakpoint`.
114
114
  /// @example grid-template-columns: repeat(6, minmax(0, 1fr));
115
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl6
115
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-6
116
116
  /// @group grid-template-columns-responsive
117
117
  /// @contextType css
118
118
 
119
119
  /// This is equivalent to `grid-template-columns: repeat(7, minmax(0, 1fr)); for the specific breakpoint`.
120
120
  /// @example grid-template-columns: repeat(7, minmax(0, 1fr));
121
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl7
121
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-7
122
122
  /// @group grid-template-columns-responsive
123
123
  /// @contextType css
124
124
 
125
125
  /// This is equivalent to `grid-template-columns: repeat(8, minmax(0, 1fr)); for the specific breakpoint`.
126
126
  /// @example grid-template-columns: repeat(8, minmax(0, 1fr));
127
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl8
127
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-8
128
128
  /// @group grid-template-columns-responsive
129
129
  /// @contextType css
130
130
 
131
131
  /// This is equivalent to `grid-template-columns: repeat(9, minmax(0, 1fr)); for the specific breakpoint`.
132
132
  /// @example grid-template-columns: repeat(9, minmax(0, 1fr));
133
- /// @name .k-grid-cols-{xs|sm|md|lg|xl}-1|xxl9
133
+ /// @name .k-grid-cols-{xs|sm|md|lg|xl|xxl}-9
134
134
  /// @group grid-template-columns-responsive
135
135
  /// @contextType css
136
136
 
@@ -152,12 +152,6 @@
152
152
  /// @group grid-template-columns-responsive
153
153
  /// @contextType css
154
154
 
155
- /// This is equivalent to `grid-template-columns: none;`.
156
- /// @example grid-template-columns: none;
157
- /// @name .k-grid-cols-none
158
- /// @group grid-template-columns
159
- /// @contextType css
160
-
161
155
  @use "sass:map";
162
156
  @use "../_globals.scss" as *;
163
157
 
@@ -10,6 +10,66 @@
10
10
  /// @group grid-template-rows
11
11
  /// @contextType css
12
12
 
13
+ /// This is equivalent to `grid-template-rows: repeat(3, minmax(0, 1fr));`.
14
+ /// @example grid-template-rows: repeat(3, minmax(0, 1fr));
15
+ /// @name .k-grid-rows-3
16
+ /// @group grid-template-rows
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `grid-template-rows: repeat(4, minmax(0, 1fr));`.
20
+ /// @example grid-template-rows: repeat(4, minmax(0, 1fr));
21
+ /// @name .k-grid-rows-4
22
+ /// @group grid-template-rows
23
+ /// @contextType css
24
+
25
+ /// This is equivalent to `grid-template-rows: repeat(5, minmax(0, 1fr));`.
26
+ /// @example grid-template-rows: repeat(5, minmax(0, 1fr));
27
+ /// @name .k-grid-rows-5
28
+ /// @group grid-template-rows
29
+ /// @contextType css
30
+
31
+ /// This is equivalent to `grid-template-rows: repeat(6, minmax(0, 1fr));`.
32
+ /// @example grid-template-rows: repeat(6, minmax(0, 1fr));
33
+ /// @name .k-grid-rows-6
34
+ /// @group grid-template-rows
35
+ /// @contextType css
36
+
37
+ /// This is equivalent to `grid-template-rows: repeat(7, minmax(0, 1fr));`.
38
+ /// @example grid-template-rows: repeat(7, minmax(0, 1fr));
39
+ /// @name .k-grid-rows-7
40
+ /// @group grid-template-rows
41
+ /// @contextType css
42
+
43
+ /// This is equivalent to `grid-template-rows: repeat(8, minmax(0, 1fr));`.
44
+ /// @example grid-template-rows: repeat(8, minmax(0, 1fr));
45
+ /// @name .k-grid-rows-8
46
+ /// @group grid-template-rows
47
+ /// @contextType css
48
+
49
+ /// This is equivalent to `grid-template-rows: repeat(9, minmax(0, 1fr));`.
50
+ /// @example grid-template-rows: repeat(9, minmax(0, 1fr));
51
+ /// @name .k-grid-rows-9
52
+ /// @group grid-template-rows
53
+ /// @contextType css
54
+
55
+ /// This is equivalent to `grid-template-rows: repeat(10, minmax(0, 1fr));`.
56
+ /// @example grid-template-rows: repeat(10, minmax(0, 1fr));
57
+ /// @name .k-grid-rows-10
58
+ /// @group grid-template-rows
59
+ /// @contextType css
60
+
61
+ /// This is equivalent to `grid-template-rows: repeat(11, minmax(0, 1fr));`.
62
+ /// @example grid-template-rows: repeat(11, minmax(0, 1fr));
63
+ /// @name .k-grid-rows-11
64
+ /// @group grid-template-rows
65
+ /// @contextType css
66
+
67
+ /// This is equivalent to `grid-template-rows: repeat(12, minmax(0, 1fr));`.
68
+ /// @example grid-template-rows: repeat(12, minmax(0, 1fr));
69
+ /// @name .k-grid-rows-12
70
+ /// @group grid-template-rows
71
+ /// @contextType css
72
+
13
73
  /// This is equivalent to `grid-template-rows: none;`.
14
74
  /// @example grid-template-rows: none;
15
75
  /// @name .k-grid-rows-none
@@ -1,6 +1,6 @@
1
1
  /// This is equivalent to `order: 1;`.
2
2
  /// @example order: 1;
3
- /// @name .k-order-first
3
+ /// @name .k-order-{1-12}
4
4
  /// @group order
5
5
  /// @contextType css
6
6
 
@@ -82,6 +82,94 @@
82
82
  /// @group display
83
83
  /// @contextType css
84
84
 
85
+ // ============================================================================
86
+ // Responsive Display Utilities
87
+ // ============================================================================
88
+
89
+ /// This is equivalent to `display: none;`.
90
+ /// @example display: none;
91
+ /// @name .k-d-{xs|md|lg|xl|xxl}-none
92
+ /// @group display-responsive
93
+ /// @contextType css
94
+
95
+ /// This is equivalent to `display: contents;`.
96
+ /// @example display: contents;
97
+ /// @name .k-d-{xs|md|lg|xl|xxl}-contents
98
+ /// @group display-responsive
99
+ /// @contextType css
100
+
101
+ /// This is equivalent to `display: block;`.
102
+ /// @example display: block;
103
+ /// @name .k-d-{xs|md|lg|xl|xxl}-block
104
+ /// @group display-responsive
105
+ /// @contextType css
106
+
107
+ /// This is equivalent to `display: inline;`.
108
+ /// @example display: inline;
109
+ /// @name .k-d-{xs|md|lg|xl|xxl}-inline
110
+ /// @group display-responsive
111
+ /// @contextType css
112
+
113
+ /// This is equivalent to `display: inline-block;`.
114
+ /// @example display: inline-block;
115
+ /// @name .k-d-{xs|md|lg|xl|xxl}-inline-block
116
+ /// @group display-responsive
117
+ /// @contextType css
118
+
119
+ /// This is equivalent to `display: flex;`.
120
+ /// @example display: flex;
121
+ /// @name .k-d-{xs|md|lg|xl|xxl}-flex
122
+ /// @group display-responsive
123
+ /// @contextType css
124
+
125
+ /// This is equivalent to `display: inline-flex;`.
126
+ /// @example display: inline-flex;
127
+ /// @name .k-d-{xs|md|lg|xl|xxl}-inline-flex
128
+ /// @group display-responsive
129
+ /// @contextType css
130
+
131
+ /// This is equivalent to `display: grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
132
+ /// @example display: grid
133
+ /// @name .k-d-{xs|md|lg|xl|xxl}-grid
134
+ /// @group display-responsive
135
+ /// @contextType css
136
+
137
+ /// This is equivalent to `display: inline-grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
138
+ /// @example display: inline-grid
139
+ /// @name .k-d-{xs|md|lg|xl|xxl}-inline-grid
140
+ /// @group display-responsive
141
+ /// @contextType css
142
+
143
+ /// This is equivalent to `display: table;`.
144
+ /// @example display: table;
145
+ /// @name .k-d-{xs|md|lg|xl|xxl}-table
146
+ /// @group display-responsive
147
+ /// @contextType css
148
+
149
+ /// This is equivalent to `display: inline-table;`.
150
+ /// @example display: inline-table;
151
+ /// @name .k-d-{xs|md|lg|xl|xxl}-inline-table
152
+ /// @group display-responsive
153
+ /// @contextType css
154
+
155
+ /// This is equivalent to `display: list-item;`.
156
+ /// @example display: list-item;
157
+ /// @name .k-d-{xs|md|lg|xl|xxl}-list-item
158
+ /// @group display-responsive
159
+ /// @contextType css
160
+
161
+ /// This is equivalent to `display: table-row;`.
162
+ /// @example display: table-row;
163
+ /// @name .k-d-{xs|md|lg|xl|xxl}-table-row
164
+ /// @group display-responsive
165
+ /// @contextType css
166
+
167
+ /// This is equivalent to `display: table-cell;`.
168
+ /// @example display: table-cell;
169
+ /// @name .k-d-{xs|md|lg|xl|xxl}-table-cell
170
+ /// @group display-responsive
171
+ /// @contextType css
172
+
85
173
  @use "sass:map";
86
174
  @use "../_globals.scss" as *;
87
175