@progress/kendo-theme-utils 11.1.0-dev.4 → 11.1.0-dev.6
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/dist/meta/sassdoc-data.json +8003 -5365
- package/dist/meta/sassdoc-raw-data.json +7988 -5539
- package/package.json +3 -3
- package/scss/border/_outline-color.scss +216 -0
- package/scss/flex-grid/_grid-column-start-end.scss +28 -12
- package/scss/flex-grid/_grid-row-start-end.scss +10 -2
- package/scss/flex-grid/_grid-template-columns.scss +8 -14
- package/scss/flex-grid/_grid-template-rows.scss +60 -0
- package/scss/flex-grid/_order.scss +1 -1
- package/scss/layout/_display.scss +88 -0
- package/scss/responsive-layout/_col-gap.scss +46 -46
- package/scss/spacing/_padding.scss +2 -8
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
|
+
"version": "11.1.0-dev.6",
|
|
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.
|
|
47
|
+
"@progress/kendo-theme-core": "11.1.0-dev.6"
|
|
48
48
|
},
|
|
49
49
|
"directories": {
|
|
50
50
|
"doc": "docs"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "2bfdc0d1f3d785894ad99f35f140cc6219c06fa2"
|
|
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
|
|
|
@@ -102,48 +102,56 @@
|
|
|
102
102
|
/// @example grid-column-span: span 3 / span 3;
|
|
103
103
|
/// @name .k-col-span-3
|
|
104
104
|
/// @group grid-column
|
|
105
|
-
|
|
106
105
|
/// @contextType css
|
|
106
|
+
|
|
107
107
|
/// This is equivalent to `grid-column-start: span 4 / span 4;`.
|
|
108
108
|
/// @example grid-column-start: span 4 / span 4;
|
|
109
109
|
/// @name .k-col-span-4
|
|
110
110
|
/// @group grid-column
|
|
111
111
|
/// @contextType css
|
|
112
|
+
|
|
112
113
|
/// This is equivalent to `grid-column-start: span 5 / span 5;`.
|
|
113
114
|
/// @example grid-column-start: span 5 / span 5;
|
|
114
115
|
/// @name .k-col-span-5
|
|
115
116
|
/// @group grid-column
|
|
116
117
|
/// @contextType css
|
|
118
|
+
|
|
117
119
|
/// This is equivalent to `grid-column-start: span 6 / span 6;`.
|
|
118
120
|
/// @example grid-column-start: span 6 / span 6;
|
|
119
121
|
/// @name .k-col-span-6
|
|
120
122
|
/// @group grid-column
|
|
121
123
|
/// @contextType css
|
|
124
|
+
|
|
122
125
|
/// This is equivalent to `grid-column-start: span 7 / span 7;`.
|
|
123
126
|
/// @example grid-column-start: span 7 / span 7;
|
|
124
127
|
/// @name .k-col-span-7
|
|
125
128
|
/// @group grid-column
|
|
126
129
|
/// @contextType css
|
|
130
|
+
|
|
127
131
|
/// This is equivalent to `grid-column-start: span 8 / span 8;`.
|
|
128
132
|
/// @example grid-column-start: span 8 / span 8;
|
|
129
133
|
/// @name .k-col-span-8
|
|
130
134
|
/// @group grid-column
|
|
131
135
|
/// @contextType css
|
|
136
|
+
|
|
132
137
|
/// This is equivalent to `grid-column-start: span 9 / span 9;`.
|
|
133
138
|
/// @example grid-column-start: span 9 / span 9;
|
|
134
139
|
/// @name .k-col-span-9
|
|
135
140
|
/// @group grid-column
|
|
136
141
|
/// @contextType css
|
|
142
|
+
|
|
137
143
|
/// This is equivalent to `grid-column-start: span 10 / span 10;`.
|
|
138
144
|
/// @example grid-column-start: span 10 / span 10;
|
|
139
145
|
/// @name .k-col-span-10
|
|
140
146
|
/// @group grid-column
|
|
141
147
|
/// @contextType css
|
|
148
|
+
|
|
142
149
|
/// This is equivalent to `grid-column-start: span 11 / span 11;`.
|
|
143
150
|
/// @example grid-column-start: span 11 / span 11;
|
|
144
151
|
/// @name .k-col-span-11
|
|
145
152
|
/// @group grid-column
|
|
146
153
|
/// @contextType css
|
|
154
|
+
|
|
147
155
|
/// This is equivalent to `grid-column-start: span 12 / span 12;`.
|
|
148
156
|
/// @example grid-column-start: span 12 / span 12;
|
|
149
157
|
/// @name .k-col-span-12
|
|
@@ -334,7 +342,7 @@
|
|
|
334
342
|
|
|
335
343
|
/// This is equivalent to `grid-column-start: auto; for the specific breakpoint`.
|
|
336
344
|
/// @example grid-column-start: auto;
|
|
337
|
-
/// @name .k-col-start-auto
|
|
345
|
+
/// @name .k-col-start-{xs|sm|md|lg|xl|xxl}-auto
|
|
338
346
|
/// @group grid-column-responsive
|
|
339
347
|
/// @contextType css
|
|
340
348
|
|
|
@@ -358,48 +366,56 @@
|
|
|
358
366
|
/// @example grid-column-span: span 3 / span 3;
|
|
359
367
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-3
|
|
360
368
|
/// @group grid-column-responsive
|
|
361
|
-
|
|
362
369
|
/// @contextType css
|
|
370
|
+
|
|
363
371
|
/// This is equivalent to `grid-column-start: span 4 / span 4; for the specific breakpoint`.
|
|
364
372
|
/// @example grid-column-start: span 4 / span 4;
|
|
365
373
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-4
|
|
366
374
|
/// @group grid-column-responsive
|
|
367
375
|
/// @contextType css
|
|
376
|
+
|
|
368
377
|
/// This is equivalent to `grid-column-start: span 5 / span 5; for the specific breakpoint`.
|
|
369
378
|
/// @example grid-column-start: span 5 / span 5;
|
|
370
379
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-5
|
|
371
380
|
/// @group grid-column-responsive
|
|
372
381
|
/// @contextType css
|
|
382
|
+
|
|
373
383
|
/// This is equivalent to `grid-column-start: span 6 / span 6; for the specific breakpoint`.
|
|
374
384
|
/// @example grid-column-start: span 6 / span 6;
|
|
375
385
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-6
|
|
376
386
|
/// @group grid-column-responsive
|
|
377
387
|
/// @contextType css
|
|
388
|
+
|
|
378
389
|
/// This is equivalent to `grid-column-start: span 7 / span 7; for the specific breakpoint`.
|
|
379
390
|
/// @example grid-column-start: span 7 / span 7;
|
|
380
391
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-7
|
|
381
392
|
/// @group grid-column-responsive
|
|
382
393
|
/// @contextType css
|
|
394
|
+
|
|
383
395
|
/// This is equivalent to `grid-column-start: span 8 / span 8; for the specific breakpoint`.
|
|
384
396
|
/// @example grid-column-start: span 8 / span 8;
|
|
385
397
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-8
|
|
386
398
|
/// @group grid-column-responsive
|
|
387
399
|
/// @contextType css
|
|
400
|
+
|
|
388
401
|
/// This is equivalent to `grid-column-start: span 9 / span 9; for the specific breakpoint`.
|
|
389
402
|
/// @example grid-column-start: span 9 / span 9;
|
|
390
403
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-9
|
|
391
404
|
/// @group grid-column-responsive
|
|
392
405
|
/// @contextType css
|
|
406
|
+
|
|
393
407
|
/// This is equivalent to `grid-column-start: span 10 / span 10; for the specific breakpoint`.
|
|
394
408
|
/// @example grid-column-start: span 10 / span 10;
|
|
395
409
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-10
|
|
396
410
|
/// @group grid-column-responsive
|
|
397
411
|
/// @contextType css
|
|
412
|
+
|
|
398
413
|
/// This is equivalent to `grid-column-start: span 11 / span 11; for the specific breakpoint`.
|
|
399
414
|
/// @example grid-column-start: span 11 / span 11;
|
|
400
415
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-11
|
|
401
416
|
/// @group grid-column-responsive
|
|
402
417
|
/// @contextType css
|
|
418
|
+
|
|
403
419
|
/// This is equivalent to `grid-column-start: span 12 / span 12; for the specific breakpoint`.
|
|
404
420
|
/// @example grid-column-start: span 12 / span 12;
|
|
405
421
|
/// @name .k-col-span-{xs|sm|md|lg|xl|xxl}-12
|
|
@@ -430,49 +446,49 @@
|
|
|
430
446
|
|
|
431
447
|
/// This is equivalent to `grid-column-end: 2; for the specific breakpoint`.
|
|
432
448
|
/// @example grid-column-end: 2;
|
|
433
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
449
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-2
|
|
434
450
|
/// @group grid-column-responsive
|
|
435
451
|
/// @contextType css
|
|
436
452
|
|
|
437
453
|
/// This is equivalent to `grid-column-end: 3; for the specific breakpoint`.
|
|
438
454
|
/// @example grid-column-end: 3;
|
|
439
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
455
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-3
|
|
440
456
|
/// @group grid-column-responsive
|
|
441
457
|
/// @contextType css
|
|
442
458
|
|
|
443
459
|
/// This is equivalent to `grid-column-end: 4; for the specific breakpoint`.
|
|
444
460
|
/// @example grid-column-end: 4;
|
|
445
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
461
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-4
|
|
446
462
|
/// @group grid-column-responsive
|
|
447
463
|
/// @contextType css
|
|
448
464
|
|
|
449
465
|
/// This is equivalent to `grid-column-end: 5; for the specific breakpoint`.
|
|
450
466
|
/// @example grid-column-end: 5;
|
|
451
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
467
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-5
|
|
452
468
|
/// @group grid-column-responsive
|
|
453
469
|
/// @contextType css
|
|
454
470
|
|
|
455
471
|
/// This is equivalent to `grid-column-end: 6; for the specific breakpoint`.
|
|
456
472
|
/// @example grid-column-end: 6;
|
|
457
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
473
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-6
|
|
458
474
|
/// @group grid-column-responsive
|
|
459
475
|
/// @contextType css
|
|
460
476
|
|
|
461
477
|
/// This is equivalent to `grid-column-end: 7; for the specific breakpoint`.
|
|
462
478
|
/// @example grid-column-end: 7;
|
|
463
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
479
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-7
|
|
464
480
|
/// @group grid-column-responsive
|
|
465
481
|
/// @contextType css
|
|
466
482
|
|
|
467
483
|
/// This is equivalent to `grid-column-end: 8; for the specific breakpoint`.
|
|
468
484
|
/// @example grid-column-end: 8;
|
|
469
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
485
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-8
|
|
470
486
|
/// @group grid-column-responsive
|
|
471
487
|
/// @contextType css
|
|
472
488
|
|
|
473
489
|
/// This is equivalent to `grid-column-end: 9; for the specific breakpoint`.
|
|
474
490
|
/// @example grid-column-end: 9;
|
|
475
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
491
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-9
|
|
476
492
|
/// @group grid-column-responsive
|
|
477
493
|
/// @contextType css
|
|
478
494
|
|
|
@@ -502,7 +518,7 @@
|
|
|
502
518
|
|
|
503
519
|
/// This is equivalent to `grid-column-end: auto; for the specific breakpoint`.
|
|
504
520
|
/// @example grid-column-end: auto;
|
|
505
|
-
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-
|
|
521
|
+
/// @name .k-col-end-{xs|sm|md|lg|xl|xxl}-auto
|
|
506
522
|
/// @group grid-column-responsive
|
|
507
523
|
/// @contextType css
|
|
508
524
|
|
|
@@ -102,48 +102,56 @@
|
|
|
102
102
|
/// @example grid-row-span: span 3 / span 3;
|
|
103
103
|
/// @name .k-row-span-3
|
|
104
104
|
/// @group grid-row
|
|
105
|
-
|
|
106
105
|
/// @contextType css
|
|
106
|
+
|
|
107
107
|
/// This is equivalent to `grid-row-start: span 4 / span 4;`.
|
|
108
108
|
/// @example grid-row-start: span 4 / span 4;
|
|
109
109
|
/// @name .k-row-span-4
|
|
110
110
|
/// @group grid-row
|
|
111
111
|
/// @contextType css
|
|
112
|
+
|
|
112
113
|
/// This is equivalent to `grid-row-start: span 5 / span 5;`.
|
|
113
114
|
/// @example grid-row-start: span 5 / span 5;
|
|
114
115
|
/// @name .k-row-span-5
|
|
115
116
|
/// @group grid-row
|
|
116
117
|
/// @contextType css
|
|
118
|
+
|
|
117
119
|
/// This is equivalent to `grid-row-start: span 6 / span 6;`.
|
|
118
120
|
/// @example grid-row-start: span 6 / span 6;
|
|
119
121
|
/// @name .k-row-span-6
|
|
120
122
|
/// @group grid-row
|
|
121
123
|
/// @contextType css
|
|
124
|
+
|
|
122
125
|
/// This is equivalent to `grid-row-start: span 7 / span 7;`.
|
|
123
126
|
/// @example grid-row-start: span 7 / span 7;
|
|
124
127
|
/// @name .k-row-span-7
|
|
125
128
|
/// @group grid-row
|
|
126
129
|
/// @contextType css
|
|
130
|
+
|
|
127
131
|
/// This is equivalent to `grid-row-start: span 8 / span 8;`.
|
|
128
132
|
/// @example grid-row-start: span 8 / span 8;
|
|
129
133
|
/// @name .k-row-span-8
|
|
130
134
|
/// @group grid-row
|
|
131
135
|
/// @contextType css
|
|
136
|
+
|
|
132
137
|
/// This is equivalent to `grid-row-start: span 9 / span 9;`.
|
|
133
138
|
/// @example grid-row-start: span 9 / span 9;
|
|
134
139
|
/// @name .k-row-span-9
|
|
135
140
|
/// @group grid-row
|
|
136
141
|
/// @contextType css
|
|
142
|
+
|
|
137
143
|
/// This is equivalent to `grid-row-start: span 10 / span 10;`.
|
|
138
144
|
/// @example grid-row-start: span 10 / span 10;
|
|
139
145
|
/// @name .k-row-span-10
|
|
140
146
|
/// @group grid-row
|
|
141
147
|
/// @contextType css
|
|
148
|
+
|
|
142
149
|
/// This is equivalent to `grid-row-start: span 11 / span 11;`.
|
|
143
150
|
/// @example grid-row-start: span 11 / span 11;
|
|
144
151
|
/// @name .k-row-span-11
|
|
145
152
|
/// @group grid-row
|
|
146
153
|
/// @contextType css
|
|
154
|
+
|
|
147
155
|
/// This is equivalent to `grid-row-start: span 12 / span 12;`.
|
|
148
156
|
/// @example grid-row-start: span 12 / span 12;
|
|
149
157
|
/// @name .k-row-span-12
|
|
@@ -422,7 +430,7 @@
|
|
|
422
430
|
|
|
423
431
|
/// This is equivalent to `grid-row-end: auto; for the specific breakpoint`.
|
|
424
432
|
/// @example grid-row-end: auto;
|
|
425
|
-
/// @name .k-row-end-{xs|sm|md|lg|xl|xxl}-
|
|
433
|
+
/// @name .k-row-end-{xs|sm|md|lg|xl|xxl}-auto
|
|
426
434
|
/// @group grid-row-responsive
|
|
427
435
|
/// @contextType css
|
|
428
436
|
|
|
@@ -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}-
|
|
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}-
|
|
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}-
|
|
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}-
|
|
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}-
|
|
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}-
|
|
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}-
|
|
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}-
|
|
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
|