@progress/kendo-theme-utils 11.1.0-dev.3 → 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.
@@ -1,3 +1,175 @@
1
+ /// Creates a flexible column that grows to fill available space.
2
+ /// @example flex: 1 0 0%;
3
+ /// @name .k-col
4
+ /// @group col
5
+ /// @contextType css
6
+
7
+ /// Sets column width to 1% of container.
8
+ /// @example flex: 0 0 auto; width: 1%;
9
+ /// @name .k-col-size-{1-100}
10
+ /// @group col
11
+ /// @contextType css
12
+
13
+ /// Sets column width to 8.3333% of container (1/12).
14
+ /// @example flex: 0 0 auto; width: 8.3333%;
15
+ /// @name .k-col-size-8-3
16
+ /// @group col
17
+ /// @contextType css
18
+
19
+ /// Sets column width to 9.0909% of container (1/11).
20
+ /// @example flex: 0 0 auto; width: 9.0909%;
21
+ /// @name .k-col-size-9-1
22
+ /// @group col
23
+ /// @contextType css
24
+
25
+ /// Sets column width to 11.1111% of container (1/9).
26
+ /// @example flex: 0 0 auto; width: 11.1111%;
27
+ /// @name .k-col-size-11-1
28
+ /// @group col
29
+ /// @contextType css
30
+
31
+ /// Sets column width to 12.5% of container (1/8).
32
+ /// @example flex: 0 0 auto; width: 12.5%;
33
+ /// @name .k-col-size-12-5
34
+ /// @group col
35
+ /// @contextType css
36
+
37
+ /// Sets column width to 14.2857% of container (1/7).
38
+ /// @example flex: 0 0 auto; width: 14.2857%;
39
+ /// @name .k-col-size-14-3
40
+ /// @group col
41
+ /// @contextType css
42
+
43
+ /// Sets column width to 16.6666% of container (1/6).
44
+ /// @example flex: 0 0 auto; width: 16.6666%;
45
+ /// @name .k-col-size-16-7
46
+ /// @group col
47
+ /// @contextType css
48
+
49
+ /// Sets column width to 33.3333% of container (1/3).
50
+ /// @example flex: 0 0 auto; width: 33.3333%;
51
+ /// @name .k-col-size-33-3
52
+ /// @group col
53
+ /// @contextType css
54
+
55
+ /// Sets column width to 41.6666% of container (5/12).
56
+ /// @example flex: 0 0 auto; width: 41.6666%;
57
+ /// @name .k-col-size-41-6
58
+ /// @group col
59
+ /// @contextType css
60
+
61
+ /// Sets column width to 58.3333% of container (7/12).
62
+ /// @example flex: 0 0 auto; width: 58.3333%;
63
+ /// @name .k-col-size-58-3
64
+ /// @group col
65
+ /// @contextType css
66
+
67
+ /// Sets column width to 66.6666% of container (2/3).
68
+ /// @example flex: 0 0 auto; width: 66.6666%;
69
+ /// @name .k-col-size-66-6
70
+ /// @group col
71
+ /// @contextType css
72
+
73
+ /// Sets column width to 83.3333% of container (5/6).
74
+ /// @example flex: 0 0 auto; width: 83.3333%;
75
+ /// @name .k-col-size-83-3
76
+ /// @group col
77
+ /// @contextType css
78
+
79
+ /// Sets column width to 91.6666% of container (11/12).
80
+ /// @example flex: 0 0 auto; width: 91.6666%;
81
+ /// @name .k-col-size-91-6
82
+ /// @group col
83
+ /// @contextType css
84
+
85
+ // ============================================================================
86
+ // Responsive Gap Utilities
87
+ // ============================================================================
88
+
89
+ /// Creates a flexible column that grows to fill available space for specific breakpoint.
90
+ /// @example flex: 1 0 0%;
91
+ /// @name .k-col-{sm|md|lg|xl|xxl}
92
+ /// @group col
93
+ /// @contextType css
94
+
95
+ /// Sets column width to 1% of container for specific breakpoint.
96
+ /// @example flex: 0 0 auto; width: 1%;
97
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-{1-100}
98
+ /// @group col
99
+ /// @contextType css
100
+
101
+ /// Sets column width to 8.3333% of container (1/12) for specific breakpoint.
102
+ /// @example flex: 0 0 auto; width: 8.3333%;
103
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-8-3
104
+ /// @group col
105
+ /// @contextType css
106
+
107
+ /// Sets column width to 9.0909% of container (1/11) for specific breakpoint.
108
+ /// @example flex: 0 0 auto; width: 9.0909%;
109
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-9-1
110
+ /// @group col
111
+ /// @contextType css
112
+
113
+ /// Sets column width to 11.1111% of container (1/9) for specific breakpoint.
114
+ /// @example flex: 0 0 auto; width: 11.1111%;
115
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-11-1
116
+ /// @group col
117
+ /// @contextType css
118
+
119
+ /// Sets column width to 12.5% of container (1/8) for specific breakpoint.
120
+ /// @example flex: 0 0 auto; width: 12.5%;
121
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-12-5
122
+ /// @group col
123
+ /// @contextType css
124
+
125
+ /// Sets column width to 14.2857% of container (1/7) for specific breakpoint.
126
+ /// @example flex: 0 0 auto; width: 14.2857%;
127
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-14-3
128
+ /// @group col
129
+ /// @contextType css
130
+
131
+ /// Sets column width to 16.6666% of container (1/6) for specific breakpoint.
132
+ /// @example flex: 0 0 auto; width: 16.6666%;
133
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-16-7
134
+ /// @group col
135
+ /// @contextType css
136
+
137
+ /// Sets column width to 33.3333% of container (1/3) for specific breakpoint.
138
+ /// @example flex: 0 0 auto; width: 33.3333%;
139
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-33-3
140
+ /// @group col
141
+ /// @contextType css
142
+
143
+ /// Sets column width to 41.6666% of container (5/12) for specific breakpoint.
144
+ /// @example flex: 0 0 auto; width: 41.6666%;
145
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-41-6
146
+ /// @group col
147
+ /// @contextType css
148
+
149
+ /// Sets column width to 58.3333% of container (7/12) for specific breakpoint.
150
+ /// @example flex: 0 0 auto; width: 58.3333%;
151
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-58-3
152
+ /// @group col
153
+ /// @contextType css
154
+
155
+ /// Sets column width to 66.6666% of container (2/3) for specific breakpoint.
156
+ /// @example flex: 0 0 auto; width: 66.6666%;
157
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-66-6
158
+ /// @group col
159
+ /// @contextType css
160
+
161
+ /// Sets column width to 83.3333% of container (5/6) for specific breakpoint.
162
+ /// @example flex: 0 0 auto; width: 83.3333%;
163
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-83-3
164
+ /// @group col
165
+ /// @contextType css
166
+
167
+ /// Sets column width to 91.6666% of container (11/12) for specific breakpoint.
168
+ /// @example flex: 0 0 auto; width: 91.6666%;
169
+ /// @name .k-col-{sm|md|lg|xl|xxl}-size-91-6
170
+ /// @group col
171
+ /// @contextType css
172
+
1
173
  @use "../_globals.scss" as *;
2
174
 
3
175
  @mixin kendo-utils--responsive-layout--col() {
@@ -1,6 +1,12 @@
1
+ /// This is equivalent to `margin: -0.25rem;`.
2
+ /// @example margin: -0.25rem;
3
+ /// @name .k-m--{1-30}
4
+ /// @group margin
5
+ /// @contextType css
6
+
1
7
  /// This is equivalent to `margin: 0;`.
2
8
  /// @example margin: 0;
3
- /// @name .k-m-0
9
+ /// @name .k-m-{0-30}
4
10
  /// @group margin
5
11
  /// @contextType css
6
12
 
@@ -10,21 +16,21 @@
10
16
  /// @group margin
11
17
  /// @contextType css
12
18
 
13
- /// This is equivalent to `margin: 0.25rem;`.
14
- /// @example margin: 0.25rem;
15
- /// @name .k-m-1
16
- /// @group margin
17
- /// @contextType css
18
-
19
19
  /// This is equivalent to `margin: -1px;`.
20
20
  /// @example margin: -1px;
21
21
  /// @name .k-m--1px
22
22
  /// @group margin
23
23
  /// @contextType css
24
24
 
25
- /// This is equivalent to `margin: -0.25rem;`.
26
- /// @example margin: -0.25rem;
27
- /// @name .k-m--1
25
+ /// This is equivalent to `margin: 0.125rem;`.
26
+ /// @example margin: 0.125rem;
27
+ /// @name .k-m-0\.5
28
+ /// @group margin
29
+ /// @contextType css
30
+
31
+ /// This is equivalent to `margin: -0.125rem;`.
32
+ /// @example margin: -0.125rem;
33
+ /// @name .k-m--0\.5
28
34
  /// @group margin
29
35
  /// @contextType css
30
36
 
@@ -76,9 +82,15 @@
76
82
  /// @group margin
77
83
  /// @contextType css
78
84
 
85
+ /// This is equivalent to `margin-top: -0.25rem;`.
86
+ /// @example margin-top: -0.25rem;
87
+ /// @name .k-mt--{1-30}
88
+ /// @group margin
89
+ /// @contextType css
90
+
79
91
  /// This is equivalent to `margin-top: 0;`.
80
92
  /// @example margin-top: 0;
81
- /// @name .k-mt-0
93
+ /// @name .k-mt-{0-30}
82
94
  /// @group margin
83
95
  /// @contextType css
84
96
 
@@ -88,21 +100,21 @@
88
100
  /// @group margin
89
101
  /// @contextType css
90
102
 
91
- /// This is equivalent to `margin-top: 0.25rem;`.
92
- /// @example margin-top: 0.25rem;
93
- /// @name .k-mt-1
94
- /// @group margin
95
- /// @contextType css
96
-
97
103
  /// This is equivalent to `margin-top: -1px;`.
98
104
  /// @example margin-top: -1px;
99
105
  /// @name .k-mt--1px
100
106
  /// @group margin
101
107
  /// @contextType css
102
108
 
103
- /// This is equivalent to `margin-top: -0.25rem;`.
104
- /// @example margin-top: -0.25rem;
105
- /// @name .k-mt--1
109
+ /// This is equivalent to `margin-top: 0.125rem;`.
110
+ /// @example margin-top: 0.125rem;
111
+ /// @name .k-mt-0\.5
112
+ /// @group margin
113
+ /// @contextType css
114
+
115
+ /// This is equivalent to `margin-top: -0.125rem;`.
116
+ /// @example margin-top: -0.125rem;
117
+ /// @name .k-mt--0\.5
106
118
  /// @group margin
107
119
  /// @contextType css
108
120
 
@@ -154,9 +166,15 @@
154
166
  /// @group margin
155
167
  /// @contextType css
156
168
 
169
+ /// This is equivalent to `margin-right: -0.25rem;`.
170
+ /// @example margin-right: -0.25rem;
171
+ /// @name .k-mr--{1-30}
172
+ /// @group margin
173
+ /// @contextType css
174
+
157
175
  /// This is equivalent to `margin-right: 0;`.
158
176
  /// @example margin-right: 0;
159
- /// @name .k-mr-0
177
+ /// @name .k-mr-{0-30}
160
178
  /// @group margin
161
179
  /// @contextType css
162
180
 
@@ -166,21 +184,21 @@
166
184
  /// @group margin
167
185
  /// @contextType css
168
186
 
169
- /// This is equivalent to `margin-right: 0.25rem;`.
170
- /// @example margin-right: 0.25rem;
171
- /// @name .k-mr-1
172
- /// @group margin
173
- /// @contextType css
174
-
175
187
  /// This is equivalent to `margin-right: -1px;`.
176
188
  /// @example margin-right: -1px;
177
189
  /// @name .k-mr--1px
178
190
  /// @group margin
179
191
  /// @contextType css
180
192
 
181
- /// This is equivalent to `margin-right: -0.25rem;`.
182
- /// @example margin-right: -0.25rem;
183
- /// @name .k-mr--1
193
+ /// This is equivalent to `margin-right: 0.125rem;`.
194
+ /// @example margin-right: 0.125rem;
195
+ /// @name .k-mt-0\.5
196
+ /// @group margin
197
+ /// @contextType css
198
+
199
+ /// This is equivalent to `margin-right: -0.125rem;`.
200
+ /// @example margin-right: -0.125rem;
201
+ /// @name .k-mt--0\.5
184
202
  /// @group margin
185
203
  /// @contextType css
186
204
 
@@ -232,9 +250,15 @@
232
250
  /// @group margin
233
251
  /// @contextType css
234
252
 
253
+ /// This is equivalent to `margin-bottom: -0.25rem;`.
254
+ /// @example margin-bottom: -0.25rem;
255
+ /// @name .k-mb--{1-30}
256
+ /// @group margin
257
+ /// @contextType css
258
+
235
259
  /// This is equivalent to `margin-bottom: 0;`.
236
260
  /// @example margin-bottom: 0;
237
- /// @name .k-mb-0
261
+ /// @name .k-mb-{0-30}
238
262
  /// @group margin
239
263
  /// @contextType css
240
264
 
@@ -244,24 +268,25 @@
244
268
  /// @group margin
245
269
  /// @contextType css
246
270
 
247
- /// This is equivalent to `margin-bottom: 0.25rem;`.
248
- /// @example margin-bottom: 0.25rem;
249
- /// @name .k-mb-1
250
- /// @group margin
251
- /// @contextType css
252
-
253
271
  /// This is equivalent to `margin-bottom: -1px;`.
254
272
  /// @example margin-bottom: -1px;
255
273
  /// @name .k-mb--1px
256
274
  /// @group margin
257
275
  /// @contextType css
258
276
 
259
- /// This is equivalent to `margin-bottom: -0.25rem;`.
260
- /// @example margin-bottom: -0.25rem;
261
- /// @name .k-mb--1
277
+ /// This is equivalent to `margin-bottom: 0.125rem;`.
278
+ /// @example margin-bottom: 0.125rem;
279
+ /// @name .k-mb-0\.5
280
+ /// @group margin
281
+ /// @contextType css
282
+
283
+ /// This is equivalent to `margin-bottom: -0.125rem;`.
284
+ /// @example margin-bottom: -0.125rem;
285
+ /// @name .k-mb--0\.5
262
286
  /// @group margin
263
287
  /// @contextType css
264
288
 
289
+
265
290
  /// This is equivalent to `margin-bottom: 0.25rem;`.
266
291
  /// @example margin-bottom: 0.25rem;
267
292
  /// @name .k-mb-xs
@@ -310,9 +335,15 @@
310
335
  /// @group margin
311
336
  /// @contextType css
312
337
 
338
+ /// This is equivalent to `margin-left: -0.25rem;`.
339
+ /// @example margin-left: -0.25rem;
340
+ /// @name .k-ml--{1-30}
341
+ /// @group margin
342
+ /// @contextType css
343
+
313
344
  /// This is equivalent to `margin-left: 0;`.
314
345
  /// @example margin-left: 0;
315
- /// @name .k-ml-0
346
+ /// @name .k-ml-{0-30}
316
347
  /// @group margin
317
348
  /// @contextType css
318
349
 
@@ -322,21 +353,21 @@
322
353
  /// @group margin
323
354
  /// @contextType css
324
355
 
325
- /// This is equivalent to `margin-left: 0.25rem;`.
326
- /// @example margin-left: 0.25rem;
327
- /// @name .k-ml-1
328
- /// @group margin
329
- /// @contextType css
330
-
331
356
  /// This is equivalent to `margin-left: -1px;`.
332
357
  /// @example margin-left: -1px;
333
358
  /// @name .k-ml--1px
334
359
  /// @group margin
335
360
  /// @contextType css
336
361
 
337
- /// This is equivalent to `margin-left: -0.25rem;`.
338
- /// @example margin-left: -0.25rem;
339
- /// @name .k-ml--1
362
+ /// This is equivalent to `margin-left: 0.125rem;`.
363
+ /// @example margin-left: 0.125rem;
364
+ /// @name .k-ml-0\.5
365
+ /// @group margin
366
+ /// @contextType css
367
+
368
+ /// This is equivalent to `margin-left: -0.125rem;`.
369
+ /// @example margin-left: -0.125rem;
370
+ /// @name .k-ml--0\.5
340
371
  /// @group margin
341
372
  /// @contextType css
342
373
 
@@ -388,9 +419,15 @@
388
419
  /// @group margin
389
420
  /// @contextType css
390
421
 
422
+ /// This is equivalent to `margin-inline: -0.25rem;`.
423
+ /// @example margin-inline: -0.25rem;
424
+ /// @name .k-mx--{1-30}
425
+ /// @group margin
426
+ /// @contextType css
427
+
391
428
  /// This is equivalent to `margin-inline: 0;`.
392
429
  /// @example margin-inline: 0;
393
- /// @name .k-mx-0
430
+ /// @name .k-mx-{0-30}
394
431
  /// @group margin
395
432
  /// @contextType css
396
433
 
@@ -400,21 +437,21 @@
400
437
  /// @group margin
401
438
  /// @contextType css
402
439
 
403
- /// This is equivalent to `margin-inline: 0.25rem;`.
404
- /// @example margin-inline: 0.25rem;
405
- /// @name .k-mx-1
406
- /// @group margin
407
- /// @contextType css
408
-
409
440
  /// This is equivalent to `margin-inline: -1px;`.
410
441
  /// @example margin-inline: -1px;
411
442
  /// @name .k-mx--1px
412
443
  /// @group margin
413
444
  /// @contextType css
414
445
 
415
- /// This is equivalent to `margin-inline: -0.25rem;`.
416
- /// @example margin-inline: -0.25rem;
417
- /// @name .k-mx--1
446
+ /// This is equivalent to `margin-inline: 0.125rem;`.
447
+ /// @example margin-inline: 0.125rem;
448
+ /// @name .k-mx-0\.5
449
+ /// @group margin
450
+ /// @contextType css
451
+
452
+ /// This is equivalent to `margin-inline: -0.125rem;`.
453
+ /// @example margin-inline: -0.125rem;
454
+ /// @name .k-mx--0\.5
418
455
  /// @group margin
419
456
  /// @contextType css
420
457
 
@@ -466,9 +503,15 @@
466
503
  /// @group margin
467
504
  /// @contextType css
468
505
 
506
+ /// This is equivalent to `margin-block: -0.25rem;`.
507
+ /// @example margin-block: -0.25rem;
508
+ /// @name .k-my--{1-30}
509
+ /// @group margin
510
+ /// @contextType css
511
+
469
512
  /// This is equivalent to `margin-block: 0;`.
470
513
  /// @example margin-block: 0;
471
- /// @name .k-my-0
514
+ /// @name .k-my-{0-30}
472
515
  /// @group margin
473
516
  /// @contextType css
474
517
 
@@ -478,21 +521,21 @@
478
521
  /// @group margin
479
522
  /// @contextType css
480
523
 
481
- /// This is equivalent to `margin-block: 0.25rem;`.
482
- /// @example margin-block: 0.25rem;
483
- /// @name .k-my-1
484
- /// @group margin
485
- /// @contextType css
486
-
487
524
  /// This is equivalent to `margin-block: -1px;`.
488
525
  /// @example margin-block: -1px;
489
526
  /// @name .k-my--1px
490
527
  /// @group margin
491
528
  /// @contextType css
492
529
 
493
- /// This is equivalent to `margin-block: -0.25rem;`.
494
- /// @example margin-block: -0.25rem;
495
- /// @name .k-my--1
530
+ /// This is equivalent to `margin-block: 0.125rem;`.
531
+ /// @example margin-block: 0.125rem;
532
+ /// @name .k-my-0\.5
533
+ /// @group margin
534
+ /// @contextType css
535
+
536
+ /// This is equivalent to `margin-block: -0.125rem;`.
537
+ /// @example margin-block: -0.125rem;
538
+ /// @name .k-my--0\.5
496
539
  /// @group margin
497
540
  /// @contextType css
498
541