@progress/kendo-theme-utils 6.2.1-dev.1 → 6.2.1-dev.151
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/all.css +5166 -1018
- package/dist/all.scss +5365 -511
- package/dist/meta/sassdoc-data.json +25209 -1198
- package/dist/meta/sassdoc-raw-data.json +25209 -1198
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +188 -32
- package/scss/background/_background-clip.scss +31 -0
- package/scss/background/_background-color.scss +23 -1
- package/scss/background/index.import.scss +2 -0
- package/scss/border/_border-color.scss +30 -1
- package/scss/border/_border-radius.scss +323 -1
- package/scss/border/_border-style.scss +246 -1
- package/scss/border/_border-width.scss +211 -1
- package/scss/border/_outline-color.scss +29 -1
- package/scss/border/_outline-offset.scss +29 -1
- package/scss/border/_outline-style.scss +35 -1
- package/scss/border/_outline-width.scss +29 -1
- package/scss/effects/_opacity.scss +19 -0
- package/scss/effects/index.import.scss +7 -0
- package/scss/filter/_backdrop.scss +37 -0
- package/scss/filter/index.import.scss +5 -0
- package/scss/flex-grid/_align-content.scss +77 -1
- package/scss/flex-grid/_align-items.scss +71 -1
- package/scss/flex-grid/_align-self.scss +77 -1
- package/scss/flex-grid/_flex-basis.scss +4 -2
- package/scss/flex-grid/_flex-direction.scss +8 -4
- package/scss/flex-grid/_flex-grow.scss +4 -2
- package/scss/flex-grid/_flex-shrink.scss +4 -2
- package/scss/flex-grid/_flex-wrap.scss +6 -3
- package/scss/flex-grid/_flex.scss +7 -3
- package/scss/flex-grid/_gap.scss +179 -1
- package/scss/flex-grid/_grid-auto-columns.scss +23 -1
- package/scss/flex-grid/_grid-auto-flow.scss +35 -1
- package/scss/flex-grid/_grid-auto-rows.scss +23 -1
- package/scss/flex-grid/_grid-column-start-end.scss +17 -1
- package/scss/flex-grid/_grid-row-start-end.scss +17 -1
- package/scss/flex-grid/_grid-template-columns.scss +17 -1
- package/scss/flex-grid/_grid-template-rows.scss +17 -1
- package/scss/flex-grid/_justify-content.scss +77 -1
- package/scss/flex-grid/_justify-items.scss +83 -1
- package/scss/flex-grid/_justify-self.scss +77 -1
- package/scss/flex-grid/_order.scss +9 -0
- package/scss/flex-grid/_place-content.scss +77 -1
- package/scss/flex-grid/_place-items.scss +59 -1
- package/scss/flex-grid/_place-self.scss +65 -1
- package/scss/index.import.scss +6 -2
- package/scss/interactivity/_appearance.scss +4 -2
- package/scss/interactivity/_cursor.scss +23 -1
- package/scss/interactivity/_pointer-events.scss +4 -4
- package/scss/interactivity/_resize.scss +8 -6
- package/scss/interactivity/_scroll.scss +325 -1
- package/scss/interactivity/_touch-action.scss +52 -4
- package/scss/interactivity/_user-select.scss +10 -7
- package/scss/layout/_aspect-ratio.scss +8 -6
- package/scss/layout/_box-sizing.scss +19 -0
- package/scss/layout/_clear.scss +8 -6
- package/scss/layout/_columns.scss +85 -0
- package/scss/layout/_display.scss +38 -9
- package/scss/layout/_float.scss +6 -5
- package/scss/layout/_object-fit.scss +43 -0
- package/scss/layout/_object-position.scss +61 -0
- package/scss/layout/_overflow.scss +22 -6
- package/scss/layout/_placement.scss +174 -0
- package/scss/layout/_position.scss +10 -111
- package/scss/layout/_visibility.scss +17 -2
- package/scss/layout/_zindex.scss +41 -1
- package/scss/layout/index.import.scss +10 -0
- package/scss/sizing/_height.scss +143 -1
- package/scss/sizing/_width.scss +143 -1
- package/scss/spacing/_margin.scss +545 -1
- package/scss/spacing/_padding.scss +545 -1
- package/scss/svg/_fill.scss +43 -0
- package/scss/svg/_stroke.scss +43 -0
- package/scss/svg/index.import.scss +7 -0
- package/scss/table/_border-collapse.scss +11 -1
- package/scss/table/_table-layout.scss +6 -6
- package/scss/transform/_flip.scss +4 -2
- package/scss/transform/_origin.scss +53 -1
- package/scss/transform/_rotate.scss +16 -8
- package/scss/transform/_scale.scss +6 -3
- package/scss/transform/_skew.scss +23 -1
- package/scss/transform/_translate.scss +18 -9
- package/scss/typography/_font-size.scss +29 -1
- package/scss/typography/_font-style.scss +11 -1
- package/scss/typography/_font-weight.scss +53 -1
- package/scss/typography/_list-style.scss +25 -0
- package/scss/typography/_text-align.scss +8 -6
- package/scss/typography/_text-decoration.scss +31 -0
- package/scss/typography/_text-overflow.scss +12 -0
- package/scss/typography/_text-transform.scss +9 -8
- package/scss/typography/_vertical-align.scss +55 -0
- package/scss/typography/_white-space.scss +12 -8
- package/scss/typography/index.import.scss +6 -3
package/scss/layout/_zindex.scss
CHANGED
|
@@ -1,4 +1,44 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `z-index: 0;`.
|
|
2
|
+
/// @example z-index: 0;
|
|
3
|
+
/// @name .k-zindex-0
|
|
4
|
+
/// @group zindex
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `z-index: 10;`.
|
|
8
|
+
/// @example z-index: 10;
|
|
9
|
+
/// @name .k-zindex-10
|
|
10
|
+
/// @group zindex
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `z-index: 20;`.
|
|
14
|
+
/// @example z-index: 20;
|
|
15
|
+
/// @name .k-zindex-20
|
|
16
|
+
/// @group zindex
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `z-index: 30;`.
|
|
20
|
+
/// @example z-index: 30;
|
|
21
|
+
/// @name .k-zindex-30
|
|
22
|
+
/// @group zindex
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `z-index: 40;`.
|
|
26
|
+
/// @example z-index: 40;
|
|
27
|
+
/// @name .k-zindex-40
|
|
28
|
+
/// @group zindex
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `z-index: 50;`.
|
|
32
|
+
/// @example z-index: 50;
|
|
33
|
+
/// @name .k-zindex-50
|
|
34
|
+
/// @group zindex
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `z-index: auto;`.
|
|
38
|
+
/// @example z-index: auto;
|
|
39
|
+
/// @name .k-zindex-auto
|
|
40
|
+
/// @group zindex
|
|
41
|
+
/// @contextType css
|
|
2
42
|
|
|
3
43
|
@mixin kendo-utils--layout--zindex() {
|
|
4
44
|
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
@import "./_aspect-ratio.scss";
|
|
2
|
+
@import "./_box-sizing.scss";
|
|
2
3
|
@import "./_clear.scss";
|
|
4
|
+
@import "./_columns.scss";
|
|
3
5
|
@import "./_display.scss";
|
|
4
6
|
@import "./_float.scss";
|
|
7
|
+
@import "./_object-fit.scss";
|
|
8
|
+
@import "./_object-position.scss";
|
|
5
9
|
@import "./_overflow.scss";
|
|
10
|
+
@import "./_placement.scss";
|
|
6
11
|
@import "./_position.scss";
|
|
7
12
|
@import "./_visibility.scss";
|
|
8
13
|
@import "./_zindex.scss";
|
|
@@ -10,10 +15,15 @@
|
|
|
10
15
|
|
|
11
16
|
@mixin kendo-utils--layout() {
|
|
12
17
|
@include kendo-utils--layout--aspect-ratio();
|
|
18
|
+
@include kendo-utils--layout--box-sizing();
|
|
13
19
|
@include kendo-utils--layout--clear();
|
|
20
|
+
@include kendo-utils--layout--columns();
|
|
14
21
|
@include kendo-utils--layout--display();
|
|
15
22
|
@include kendo-utils--layout--float();
|
|
23
|
+
@include kendo-utils--layout--object-fit();
|
|
24
|
+
@include kendo-utils--layout--object-position();
|
|
16
25
|
@include kendo-utils--layout--overflow();
|
|
26
|
+
@include kendo-utils--layout--placement();
|
|
17
27
|
@include kendo-utils--layout--position();
|
|
18
28
|
@include kendo-utils--layout--visibility();
|
|
19
29
|
@include kendo-utils--layout--zindex();
|
package/scss/sizing/_height.scss
CHANGED
|
@@ -1,4 +1,146 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `height: 0;`.
|
|
2
|
+
/// @example height: 0;
|
|
3
|
+
/// @name .k-h-0
|
|
4
|
+
/// @group height
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `height: 1px;`.
|
|
8
|
+
/// @example height: 1px;
|
|
9
|
+
/// @name .k-h-1px
|
|
10
|
+
/// @group height
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `height: 0.25rem;`.
|
|
14
|
+
/// @example height: 0.25rem;
|
|
15
|
+
/// @name .k-h-1
|
|
16
|
+
/// @group height
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `min-height: 100%;`.
|
|
20
|
+
/// @example min-height: 100%;
|
|
21
|
+
/// @name .k-h-full
|
|
22
|
+
/// @group height
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `height: 100vh;`.
|
|
26
|
+
/// @example height: 100vh;
|
|
27
|
+
/// @name .k-h-screen
|
|
28
|
+
/// @group height
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `height: min-content;`.
|
|
32
|
+
/// @example height: min-content;
|
|
33
|
+
/// @name .k-h-min
|
|
34
|
+
/// @group height
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `height: max-content;`.
|
|
38
|
+
/// @example height: max-content;
|
|
39
|
+
/// @name .k-h-max
|
|
40
|
+
/// @group height
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `height: fit-content;`.
|
|
44
|
+
/// @example height: fit-content;
|
|
45
|
+
/// @name .k-h-fit
|
|
46
|
+
/// @group height
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `min-height: 0;`.
|
|
50
|
+
/// @example min-height: 0;
|
|
51
|
+
/// @name .k-min-h-0
|
|
52
|
+
/// @group height
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `min-height: 1px;`.
|
|
56
|
+
/// @example min-height: 1px;
|
|
57
|
+
/// @name .k-min-h-1px
|
|
58
|
+
/// @group height
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `min-height: 0.25rem;`.
|
|
62
|
+
/// @example min-height: 0.25rem;
|
|
63
|
+
/// @name .k-min-h-1
|
|
64
|
+
/// @group height
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// This is equivalent to `min-height: 100%;`.
|
|
68
|
+
/// @example min-height: 100%;
|
|
69
|
+
/// @name .k-min-h-full
|
|
70
|
+
/// @group height
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// This is equivalent to `min-height: 100vh;`.
|
|
74
|
+
/// @example min-height: 100vh;
|
|
75
|
+
/// @name .k-min-h-screen
|
|
76
|
+
/// @group height
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `min-height: min-content;`.
|
|
80
|
+
/// @example min-height: min-content;
|
|
81
|
+
/// @name .k-min-h-min
|
|
82
|
+
/// @group height
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// This is equivalent to `min-height: max-content;`.
|
|
86
|
+
/// @example min-height: max-content;
|
|
87
|
+
/// @name .k-min-h-max
|
|
88
|
+
/// @group height
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// This is equivalent to `min-height: fit-content;`.
|
|
92
|
+
/// @example min-height: fit-content;
|
|
93
|
+
/// @name .k-min-h-fit
|
|
94
|
+
/// @group height
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// This is equivalent to `max-height: 0;`.
|
|
98
|
+
/// @example max-height: 0;
|
|
99
|
+
/// @name .k-max-h-0
|
|
100
|
+
/// @group height
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// This is equivalent to `max-height: 1px;`.
|
|
104
|
+
/// @example max-height: 1px;
|
|
105
|
+
/// @name .k-max-h-1px
|
|
106
|
+
/// @group height
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// This is equivalent to `max-height: 0.25rem;`.
|
|
110
|
+
/// @example max-height: 0.25rem;
|
|
111
|
+
/// @name .k-max-h-1
|
|
112
|
+
/// @group height
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// This is equivalent to `max-height: 100%;`.
|
|
116
|
+
/// @example max-height: 100%;
|
|
117
|
+
/// @name .k-max-h-full
|
|
118
|
+
/// @group height
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// This is equivalent to `max-height: 100vh;`.
|
|
122
|
+
/// @example max-height: 100vh;
|
|
123
|
+
/// @name .k-max-h-screen
|
|
124
|
+
/// @group height
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// This is equivalent to `max-height: min-content;`.
|
|
128
|
+
/// @example max-height: min-content;
|
|
129
|
+
/// @name .k-max-h-min
|
|
130
|
+
/// @group height
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// This is equivalent to `max-height: max-content;`.
|
|
134
|
+
/// @example max-height: max-content;
|
|
135
|
+
/// @name .k-max-h-max
|
|
136
|
+
/// @group height
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// This is equivalent to `max-height: fit-content;`.
|
|
140
|
+
/// @example max-height: fit-content;
|
|
141
|
+
/// @name .k-max-h-fit
|
|
142
|
+
/// @group height
|
|
143
|
+
/// @contextType css
|
|
2
144
|
|
|
3
145
|
@mixin kendo-utils--sizing--height() {
|
|
4
146
|
|
package/scss/sizing/_width.scss
CHANGED
|
@@ -1,4 +1,146 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `width: 0;`.
|
|
2
|
+
/// @example width: 0;
|
|
3
|
+
/// @name .k-w-0
|
|
4
|
+
/// @group width
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `width: 1px;`.
|
|
8
|
+
/// @example width: 1px;
|
|
9
|
+
/// @name .k-w-1px
|
|
10
|
+
/// @group width
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `width: 0.25rem;`.
|
|
14
|
+
/// @example width: 0.25rem;
|
|
15
|
+
/// @name .k-w-1
|
|
16
|
+
/// @group width
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `min-width: 100%;`.
|
|
20
|
+
/// @example min-width: 100%;
|
|
21
|
+
/// @name .k-w-full
|
|
22
|
+
/// @group width
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `width: 100vw;`.
|
|
26
|
+
/// @example width: 100vw;
|
|
27
|
+
/// @name .k-w-screen
|
|
28
|
+
/// @group width
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `width: min-content;`.
|
|
32
|
+
/// @example width: min-content;
|
|
33
|
+
/// @name .k-w-min
|
|
34
|
+
/// @group width
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `width: max-content;`.
|
|
38
|
+
/// @example width: max-content;
|
|
39
|
+
/// @name .k-w-max
|
|
40
|
+
/// @group width
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `width: fit-content;`.
|
|
44
|
+
/// @example width: fit-content;
|
|
45
|
+
/// @name .k-w-fit
|
|
46
|
+
/// @group width
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `min-width: 0;`.
|
|
50
|
+
/// @example min-width: 0;
|
|
51
|
+
/// @name .k-min-w-0
|
|
52
|
+
/// @group width
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `min-width: 1px;`.
|
|
56
|
+
/// @example min-width: 1px;
|
|
57
|
+
/// @name .k-min-w-1px
|
|
58
|
+
/// @group width
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `min-width: 0.25rem;`.
|
|
62
|
+
/// @example min-width: 0.25rem;
|
|
63
|
+
/// @name .k-min-w-1
|
|
64
|
+
/// @group width
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// This is equivalent to `min-width: 100%;`.
|
|
68
|
+
/// @example min-width: 100%;
|
|
69
|
+
/// @name .k-min-w-full
|
|
70
|
+
/// @group width
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// This is equivalent to `min-width: 100vw;`.
|
|
74
|
+
/// @example min-width: 100vw;
|
|
75
|
+
/// @name .k-min-w-screen
|
|
76
|
+
/// @group width
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `min-width: min-content;`.
|
|
80
|
+
/// @example min-width: min-content;
|
|
81
|
+
/// @name .k-min-w-min
|
|
82
|
+
/// @group width
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// This is equivalent to `min-width: max-content;`.
|
|
86
|
+
/// @example min-width: max-content;
|
|
87
|
+
/// @name .k-min-w-max
|
|
88
|
+
/// @group width
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// This is equivalent to `min-width: fit-content;`.
|
|
92
|
+
/// @example min-width: fit-content;
|
|
93
|
+
/// @name .k-min-w-fit
|
|
94
|
+
/// @group width
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// This is equivalent to `max-width: 0;`.
|
|
98
|
+
/// @example max-width: 0;
|
|
99
|
+
/// @name .k-max-w-0
|
|
100
|
+
/// @group width
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// This is equivalent to `max-width: 1px;`.
|
|
104
|
+
/// @example max-width: 1px;
|
|
105
|
+
/// @name .k-max-w-1px
|
|
106
|
+
/// @group width
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// This is equivalent to `max-width: 0.25rem;`.
|
|
110
|
+
/// @example max-width: 0.25rem;
|
|
111
|
+
/// @name .k-max-w-1
|
|
112
|
+
/// @group width
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// This is equivalent to `max-width: 100%;`.
|
|
116
|
+
/// @example max-width: 100%;
|
|
117
|
+
/// @name .k-max-w-full
|
|
118
|
+
/// @group width
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// This is equivalent to `max-width: 100vh;`.
|
|
122
|
+
/// @example max-width: 100vh;
|
|
123
|
+
/// @name .k-max-w-screen
|
|
124
|
+
/// @group width
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// This is equivalent to `max-width: min-content;`.
|
|
128
|
+
/// @example max-width: min-content;
|
|
129
|
+
/// @name .k-max-w-min
|
|
130
|
+
/// @group width
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// This is equivalent to `max-width: max-content;`.
|
|
134
|
+
/// @example max-width: max-content;
|
|
135
|
+
/// @name .k-max-w-max
|
|
136
|
+
/// @group width
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// This is equivalent to `max-width: fit-content;`.
|
|
140
|
+
/// @example max-width: fit-content;
|
|
141
|
+
/// @name .k-max-w-fit
|
|
142
|
+
/// @group width
|
|
143
|
+
/// @contextType css
|
|
2
144
|
|
|
3
145
|
@mixin kendo-utils--sizing--width() {
|
|
4
146
|
|