@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.
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.3",
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.3"
47
+ "@progress/kendo-theme-core": "11.1.0-dev.5"
48
48
  },
49
49
  "directories": {
50
50
  "doc": "docs"
51
51
  },
52
- "gitHead": "4fd50ac879ec7978638ac573471e953da0926914"
52
+ "gitHead": "df7b83831d15c445082b4167f8ad24267d13a64a"
53
53
  }
@@ -1,3 +1,16 @@
1
+ /// Visually hides an element while keeping it accessible to screen readers.
2
+ /// This class should be assigned to elements which should be visually hidden, but remain accessible for screen readers.
3
+ /// @example margin: -1px; padding: 0; width: 1px; height: 1px; border-width: 0; overflow: hidden; clip: rect(0, 0, 0, 0); position: absolute;
4
+ /// @name .k-sr-only
5
+ /// @group screen-readers
6
+ /// @contextType css
7
+
8
+ /// Reverses the effect of .k-sr-only, making the element visible again.
9
+ /// @example margin: 0; padding: 0; width: auto; height: auto; border-width: 0; overflow: visible; clip: auto; position: static;
10
+ /// @name .k-not-sr-only
11
+ /// @group screen-readers
12
+ /// @contextType css
13
+
1
14
  // Register
2
15
  @use "@progress/kendo-theme-core/scss/mixins/_import-once.scss" as *;
3
16
  @use "../_globals.scss" as *;
@@ -22,6 +22,222 @@
22
22
  /// @group background-color
23
23
  /// @contextType css
24
24
 
25
+ /// Sets the background color to the app surface color.
26
+ /// @example background-color: var(--kendo-color-app-surface, #fafafa);
27
+ /// @name .k-bg-app-surface
28
+ /// @group background-color
29
+ /// @contextType css
30
+
31
+ /// Sets the background color to the on app surface color.
32
+ /// @example background-color: var(--kendo-color-on-app-surface, #424242);
33
+ /// @name .k-bg-on-app-surface
34
+ /// @group background-color
35
+ /// @contextType css
36
+
37
+ /// Sets the background color to the subtle color.
38
+ /// @example background-color: var(--kendo-color-subtle, #666666);
39
+ /// @name .k-bg-subtle
40
+ /// @group background-color
41
+ /// @contextType css
42
+
43
+ /// Sets the background color to the surface color.
44
+ /// @example background-color: var(--kendo-color-surface, #ffffff);
45
+ /// @name .k-bg-surface
46
+ /// @group background-color
47
+ /// @contextType css
48
+
49
+ /// Sets the background color to the surface alt color.
50
+ /// @example background-color: var(--kendo-color-surface-alt, #f5f5f5);
51
+ /// @name .k-bg-surface-alt
52
+ /// @group background-color
53
+ /// @contextType css
54
+
55
+ /// Sets the background color to the border color.
56
+ /// @example background-color: var(--kendo-color-border, #d9d9d9);
57
+ /// @name .k-bg-border
58
+ /// @group background-color
59
+ /// @contextType css
60
+
61
+ /// Sets the background color to the border alt color.
62
+ /// @example background-color: var(--kendo-color-border-alt, #e0e0e0);
63
+ /// @name .k-bg-border-alt
64
+ /// @group background-color
65
+ /// @contextType css
66
+
67
+ /// Sets the background color to the base subtle color.
68
+ /// @example background-color: var(--kendo-color-base-subtle, #f0f0f0);
69
+ /// @name .k-bg-base-subtle
70
+ /// @group background-color
71
+ /// @contextType css
72
+
73
+ /// Sets the background color to the base emphasis color.
74
+ /// @example background-color: var(--kendo-color-base-emphasis, #000000);
75
+ /// @name .k-bg-base-emphasis
76
+ /// @group background-color
77
+ /// @contextType css
78
+
79
+ /// Sets the background color to the primary subtle color.
80
+ /// @example background-color: var(--kendo-color-primary-subtle, #e3f2fd);
81
+ /// @name .k-bg-primary-subtle
82
+ /// @group background-color
83
+ /// @contextType css
84
+
85
+ /// Sets the background color to the primary color.
86
+ /// @example background-color: var(--kendo-color-primary, #2196f3);
87
+ /// @name .k-bg-primary
88
+ /// @group background-color
89
+ /// @contextType css
90
+
91
+ /// Sets the background color to the primary emphasis color.
92
+ /// @example background-color: var(--kendo-color-primary-emphasis, #1976d2);
93
+ /// @name .k-bg-primary-emphasis
94
+ /// @group background-color
95
+ /// @contextType css
96
+
97
+ /// Sets the background color to the secondary subtle color.
98
+ /// @example background-color: var(--kendo-color-secondary-subtle, #f3e5f5);
99
+ /// @name .k-bg-secondary-subtle
100
+ /// @group background-color
101
+ /// @contextType css
102
+
103
+ /// Sets the background color to the secondary color.
104
+ /// @example background-color: var(--kendo-color-secondary, #9c27b0);
105
+ /// @name .k-bg-secondary
106
+ /// @group background-color
107
+ /// @contextType css
108
+
109
+ /// Sets the background color to the secondary emphasis color.
110
+ /// @example background-color: var(--kendo-color-secondary-emphasis, #7b1fa2);
111
+ /// @name .k-bg-secondary-emphasis
112
+ /// @group background-color
113
+ /// @contextType css
114
+
115
+ /// Sets the background color to the tertiary subtle color.
116
+ /// @example background-color: var(--kendo-color-tertiary-subtle, #fff3e0);
117
+ /// @name .k-bg-tertiary-subtle
118
+ /// @group background-color
119
+ /// @contextType css
120
+
121
+ /// Sets the background color to the tertiary color.
122
+ /// @example background-color: var(--kendo-color-tertiary, #ff9800);
123
+ /// @name .k-bg-tertiary
124
+ /// @group background-color
125
+ /// @contextType css
126
+
127
+ /// Sets the background color to the tertiary emphasis color.
128
+ /// @example background-color: var(--kendo-color-tertiary-emphasis, #f57c00);
129
+ /// @name .k-bg-tertiary-emphasis
130
+ /// @group background-color
131
+ /// @contextType css
132
+
133
+ /// Sets the background color to the info subtle color.
134
+ /// @example background-color: var(--kendo-color-info-subtle, #e1f5fe);
135
+ /// @name .k-bg-info-subtle
136
+ /// @group background-color
137
+ /// @contextType css
138
+
139
+ /// Sets the background color to the info color.
140
+ /// @example background-color: var(--kendo-color-info, #00bcd4);
141
+ /// @name .k-bg-info
142
+ /// @group background-color
143
+ /// @contextType css
144
+
145
+ /// Sets the background color to the info emphasis color.
146
+ /// @example background-color: var(--kendo-color-info-emphasis, #0097a7);
147
+ /// @name .k-bg-info-emphasis
148
+ /// @group background-color
149
+ /// @contextType css
150
+
151
+ /// Sets the background color to the success subtle color.
152
+ /// @example background-color: var(--kendo-color-success-subtle, #e8f5e8);
153
+ /// @name .k-bg-success-subtle
154
+ /// @group background-color
155
+ /// @contextType css
156
+
157
+ /// Sets the background color to the success color.
158
+ /// @example background-color: var(--kendo-color-success, #4caf50);
159
+ /// @name .k-bg-success
160
+ /// @group background-color
161
+ /// @contextType css
162
+
163
+ /// Sets the background color to the success emphasis color.
164
+ /// @example background-color: var(--kendo-color-success-emphasis, #388e3c);
165
+ /// @name .k-bg-success-emphasis
166
+ /// @group background-color
167
+ /// @contextType css
168
+
169
+ /// Sets the background color to the warning subtle color.
170
+ /// @example background-color: var(--kendo-color-warning-subtle, #fff8e1);
171
+ /// @name .k-bg-warning-subtle
172
+ /// @group background-color
173
+ /// @contextType css
174
+
175
+ /// Sets the background color to the warning color.
176
+ /// @example background-color: var(--kendo-color-warning, #ff9800);
177
+ /// @name .k-bg-warning
178
+ /// @group background-color
179
+ /// @contextType css
180
+
181
+ /// Sets the background color to the warning emphasis color.
182
+ /// @example background-color: var(--kendo-color-warning-emphasis, #f57c00);
183
+ /// @name .k-bg-warning-emphasis
184
+ /// @group background-color
185
+ /// @contextType css
186
+
187
+ /// Sets the background color to the error subtle color.
188
+ /// @example background-color: var(--kendo-color-error-subtle, #ffebee);
189
+ /// @name .k-bg-error-subtle
190
+ /// @group background-color
191
+ /// @contextType css
192
+
193
+ /// Sets the background color to the error color.
194
+ /// @example background-color: var(--kendo-color-error, #f44336);
195
+ /// @name .k-bg-error
196
+ /// @group background-color
197
+ /// @contextType css
198
+
199
+ /// Sets the background color to the error emphasis color.
200
+ /// @example background-color: var(--kendo-color-error-emphasis, #d32f2f);
201
+ /// @name .k-bg-error-emphasis
202
+ /// @group background-color
203
+ /// @contextType css
204
+
205
+ /// Sets the background color to the light subtle color.
206
+ /// @example background-color: var(--kendo-color-light-subtle, #f8f9fa);
207
+ /// @name .k-bg-light-subtle
208
+ /// @group background-color
209
+ /// @contextType css
210
+
211
+ /// Sets the background color to the light color.
212
+ /// @example background-color: var(--kendo-color-light, #f8f9fa);
213
+ /// @name .k-bg-light
214
+ /// @group background-color
215
+ /// @contextType css
216
+
217
+ /// Sets the background color to the light emphasis color.
218
+ /// @example background-color: var(--kendo-color-light-emphasis, #dee2e6);
219
+ /// @name .k-bg-light-emphasis
220
+ /// @group background-color
221
+ /// @contextType css
222
+
223
+ /// Sets the background color to the dark subtle color.
224
+ /// @example background-color: var(--kendo-color-dark-subtle, #6c757d);
225
+ /// @name .k-bg-dark-subtle
226
+ /// @group background-color
227
+ /// @contextType css
228
+
229
+ /// Sets the background color to the dark color.
230
+ /// @example background-color: var(--kendo-color-dark, #343a40);
231
+ /// @name .k-bg-dark
232
+ /// @group background-color
233
+ /// @contextType css
234
+
235
+ /// Sets the background color to the dark emphasis color.
236
+ /// @example background-color: var(--kendo-color-dark-emphasis, #212529);
237
+ /// @name .k-bg-dark-emphasis
238
+ /// @group background-color
239
+ /// @contextType css
240
+
25
241
  @use "sass:map";
26
242
  @use "../_globals.scss" as *;
27
243
 
@@ -28,6 +28,222 @@
28
28
  /// @group border-color
29
29
  /// @contextType css
30
30
 
31
+ /// Sets the border color to the app surface color.
32
+ /// @example border-color: var(--kendo-color-app-surface, #fafafa);
33
+ /// @name .k-border-app-surface
34
+ /// @group border-color
35
+ /// @contextType css
36
+
37
+ /// Sets the border color to the on app surface color.
38
+ /// @example border-color: var(--kendo-color-on-app-surface, #424242);
39
+ /// @name .k-border-on-app-surface
40
+ /// @group border-color
41
+ /// @contextType css
42
+
43
+ /// Sets the border color to the subtle color.
44
+ /// @example border-color: var(--kendo-color-subtle, #666666);
45
+ /// @name .k-border-subtle
46
+ /// @group border-color
47
+ /// @contextType css
48
+
49
+ /// Sets the border color to the surface color.
50
+ /// @example border-color: var(--kendo-color-surface, #ffffff);
51
+ /// @name .k-border-surface
52
+ /// @group border-color
53
+ /// @contextType css
54
+
55
+ /// Sets the border color to the surface alt color.
56
+ /// @example border-color: var(--kendo-color-surface-alt, #f5f5f5);
57
+ /// @name .k-border-surface-alt
58
+ /// @group border-color
59
+ /// @contextType css
60
+
61
+ /// Sets the border color to the border color.
62
+ /// @example border-color: var(--kendo-color-border, #d9d9d9);
63
+ /// @name .k-border-border
64
+ /// @group border-color
65
+ /// @contextType css
66
+
67
+ /// Sets the border color to the border alt color.
68
+ /// @example border-color: var(--kendo-color-border-alt, #e0e0e0);
69
+ /// @name .k-border-border-alt
70
+ /// @group border-color
71
+ /// @contextType css
72
+
73
+ /// Sets the border color to the base subtle color.
74
+ /// @example border-color: var(--kendo-color-base-subtle, #f0f0f0);
75
+ /// @name .k-border-base-subtle
76
+ /// @group border-color
77
+ /// @contextType css
78
+
79
+ /// Sets the border color to the base emphasis color.
80
+ /// @example border-color: var(--kendo-color-base-emphasis, #000000);
81
+ /// @name .k-border-base-emphasis
82
+ /// @group border-color
83
+ /// @contextType css
84
+
85
+ /// Sets the border color to the primary subtle color.
86
+ /// @example border-color: var(--kendo-color-primary-subtle, #e3f2fd);
87
+ /// @name .k-border-primary-subtle
88
+ /// @group border-color
89
+ /// @contextType css
90
+
91
+ /// Sets the border color to the primary color.
92
+ /// @example border-color: var(--kendo-color-primary, #2196f3);
93
+ /// @name .k-border-primary
94
+ /// @group border-color
95
+ /// @contextType css
96
+
97
+ /// Sets the border color to the primary emphasis color.
98
+ /// @example border-color: var(--kendo-color-primary-emphasis, #1976d2);
99
+ /// @name .k-border-primary-emphasis
100
+ /// @group border-color
101
+ /// @contextType css
102
+
103
+ /// Sets the border color to the secondary subtle color.
104
+ /// @example border-color: var(--kendo-color-secondary-subtle, #f3e5f5);
105
+ /// @name .k-border-secondary-subtle
106
+ /// @group border-color
107
+ /// @contextType css
108
+
109
+ /// Sets the border color to the secondary color.
110
+ /// @example border-color: var(--kendo-color-secondary, #9c27b0);
111
+ /// @name .k-border-secondary
112
+ /// @group border-color
113
+ /// @contextType css
114
+
115
+ /// Sets the border color to the secondary emphasis color.
116
+ /// @example border-color: var(--kendo-color-secondary-emphasis, #7b1fa2);
117
+ /// @name .k-border-secondary-emphasis
118
+ /// @group border-color
119
+ /// @contextType css
120
+
121
+ /// Sets the border color to the tertiary subtle color.
122
+ /// @example border-color: var(--kendo-color-tertiary-subtle, #fff3e0);
123
+ /// @name .k-border-tertiary-subtle
124
+ /// @group border-color
125
+ /// @contextType css
126
+
127
+ /// Sets the border color to the tertiary color.
128
+ /// @example border-color: var(--kendo-color-tertiary, #ff9800);
129
+ /// @name .k-border-tertiary
130
+ /// @group border-color
131
+ /// @contextType css
132
+
133
+ /// Sets the border color to the tertiary emphasis color.
134
+ /// @example border-color: var(--kendo-color-tertiary-emphasis, #f57c00);
135
+ /// @name .k-border-tertiary-emphasis
136
+ /// @group border-color
137
+ /// @contextType css
138
+
139
+ /// Sets the border color to the info subtle color.
140
+ /// @example border-color: var(--kendo-color-info-subtle, #e1f5fe);
141
+ /// @name .k-border-info-subtle
142
+ /// @group border-color
143
+ /// @contextType css
144
+
145
+ /// Sets the border color to the info color.
146
+ /// @example border-color: var(--kendo-color-info, #00bcd4);
147
+ /// @name .k-border-info
148
+ /// @group border-color
149
+ /// @contextType css
150
+
151
+ /// Sets the border color to the info emphasis color.
152
+ /// @example border-color: var(--kendo-color-info-emphasis, #0097a7);
153
+ /// @name .k-border-info-emphasis
154
+ /// @group border-color
155
+ /// @contextType css
156
+
157
+ /// Sets the border color to the success subtle color.
158
+ /// @example border-color: var(--kendo-color-success-subtle, #e8f5e8);
159
+ /// @name .k-border-success-subtle
160
+ /// @group border-color
161
+ /// @contextType css
162
+
163
+ /// Sets the border color to the success color.
164
+ /// @example border-color: var(--kendo-color-success, #4caf50);
165
+ /// @name .k-border-success
166
+ /// @group border-color
167
+ /// @contextType css
168
+
169
+ /// Sets the border color to the success emphasis color.
170
+ /// @example border-color: var(--kendo-color-success-emphasis, #388e3c);
171
+ /// @name .k-border-success-emphasis
172
+ /// @group border-color
173
+ /// @contextType css
174
+
175
+ /// Sets the border color to the warning subtle color.
176
+ /// @example border-color: var(--kendo-color-warning-subtle, #fff8e1);
177
+ /// @name .k-border-warning-subtle
178
+ /// @group border-color
179
+ /// @contextType css
180
+
181
+ /// Sets the border color to the warning color.
182
+ /// @example border-color: var(--kendo-color-warning, #ff9800);
183
+ /// @name .k-border-warning
184
+ /// @group border-color
185
+ /// @contextType css
186
+
187
+ /// Sets the border color to the warning emphasis color.
188
+ /// @example border-color: var(--kendo-color-warning-emphasis, #f57c00);
189
+ /// @name .k-border-warning-emphasis
190
+ /// @group border-color
191
+ /// @contextType css
192
+
193
+ /// Sets the border color to the error subtle color.
194
+ /// @example border-color: var(--kendo-color-error-subtle, #ffebee);
195
+ /// @name .k-border-error-subtle
196
+ /// @group border-color
197
+ /// @contextType css
198
+
199
+ /// Sets the border color to the error color.
200
+ /// @example border-color: var(--kendo-color-error, #f44336);
201
+ /// @name .k-border-error
202
+ /// @group border-color
203
+ /// @contextType css
204
+
205
+ /// Sets the border color to the error emphasis color.
206
+ /// @example border-color: var(--kendo-color-error-emphasis, #d32f2f);
207
+ /// @name .k-border-error-emphasis
208
+ /// @group border-color
209
+ /// @contextType css
210
+
211
+ /// Sets the border color to the light subtle color.
212
+ /// @example border-color: var(--kendo-color-light-subtle, #f8f9fa);
213
+ /// @name .k-border-light-subtle
214
+ /// @group border-color
215
+ /// @contextType css
216
+
217
+ /// Sets the border color to the light color.
218
+ /// @example border-color: var(--kendo-color-light, #f8f9fa);
219
+ /// @name .k-border-light
220
+ /// @group border-color
221
+ /// @contextType css
222
+
223
+ /// Sets the border color to the light emphasis color.
224
+ /// @example border-color: var(--kendo-color-light-emphasis, #dee2e6);
225
+ /// @name .k-border-light-emphasis
226
+ /// @group border-color
227
+ /// @contextType css
228
+
229
+ /// Sets the border color to the dark subtle color.
230
+ /// @example border-color: var(--kendo-color-dark-subtle, #6c757d);
231
+ /// @name .k-border-dark-subtle
232
+ /// @group border-color
233
+ /// @contextType css
234
+
235
+ /// Sets the border color to the dark color.
236
+ /// @example border-color: var(--kendo-color-dark, #343a40);
237
+ /// @name .k-border-dark
238
+ /// @group border-color
239
+ /// @contextType css
240
+
241
+ /// Sets the border color to the dark emphasis color.
242
+ /// @example border-color: var(--kendo-color-dark-emphasis, #212529);
243
+ /// @name .k-border-dark-emphasis
244
+ /// @group border-color
245
+ /// @contextType css
246
+
31
247
  @use "sass:map";
32
248
  @use "../_globals.scss" as *;
33
249