@progress/kendo-theme-default 13.1.2-dev.0 → 13.2.0-dev.0
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 +1 -1
- package/dist/default-blue.css +1 -1
- package/dist/default-blue.scss +105 -105
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-dataviz-v4.scss +30 -30
- package/dist/default-green.css +1 -1
- package/dist/default-green.scss +97 -97
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main-dark.scss +147 -147
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-nordic.scss +105 -105
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue-a11y.scss +136 -136
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-ocean-blue.scss +125 -125
- package/dist/default-orange.css +1 -1
- package/dist/default-orange.scss +105 -105
- package/dist/default-purple.css +1 -1
- package/dist/default-purple.scss +105 -105
- package/dist/default-turquoise.css +1 -1
- package/dist/default-turquoise.scss +107 -107
- package/dist/default-urban.css +1 -1
- package/dist/default-urban.scss +105 -105
- package/dist/meta/sassdoc-data.json +1446 -2162
- package/dist/meta/sassdoc-raw-data.json +460 -598
- package/dist/meta/variables.json +453 -744
- package/lib/swatches/default-blue.json +111 -111
- package/lib/swatches/default-dataviz-v4.json +36 -36
- package/lib/swatches/default-green.json +103 -103
- package/lib/swatches/default-main-dark.json +153 -153
- package/lib/swatches/default-main.json +6 -6
- package/lib/swatches/default-nordic.json +111 -111
- package/lib/swatches/default-ocean-blue-a11y.json +142 -142
- package/lib/swatches/default-ocean-blue.json +131 -131
- package/lib/swatches/default-orange.json +111 -111
- package/lib/swatches/default-purple.json +111 -111
- package/lib/swatches/default-turquoise.json +113 -113
- package/lib/swatches/default-urban.json +111 -111
- package/package.json +4 -4
- package/scss/button/_variables.scss +20 -0
- package/scss/dataviz/_variables.scss +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.2.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
56
|
-
"@progress/kendo-theme-core": "13.
|
|
57
|
-
"@progress/kendo-theme-utils": "13.
|
|
56
|
+
"@progress/kendo-theme-core": "13.2.0-dev.0",
|
|
57
|
+
"@progress/kendo-theme-utils": "13.2.0-dev.0"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "066b81148c99e956c2809af1a3ba5eebe649f407"
|
|
64
64
|
}
|
|
@@ -29,6 +29,9 @@ $kendo-button-border-width: 1px !default;
|
|
|
29
29
|
/// @group button
|
|
30
30
|
$kendo-button-border-radius: null !default;
|
|
31
31
|
|
|
32
|
+
/// The horizontal padding of the xsmall Button.
|
|
33
|
+
/// @group button
|
|
34
|
+
$kendo-button-xs-padding-x: k-spacing(2) !default;
|
|
32
35
|
/// The horizontal padding of the small Button.
|
|
33
36
|
/// @group button
|
|
34
37
|
$kendo-button-sm-padding-x: k-spacing(2) !default;
|
|
@@ -39,6 +42,9 @@ $kendo-button-md-padding-x: k-spacing(2) !default;
|
|
|
39
42
|
/// @group button
|
|
40
43
|
$kendo-button-lg-padding-x: k-spacing(2) !default;
|
|
41
44
|
|
|
45
|
+
/// The vertical padding of the xsmall Button.
|
|
46
|
+
/// @group button
|
|
47
|
+
$kendo-button-xs-padding-y: k-spacing(1px) !default;
|
|
42
48
|
/// The vertical padding of the small Button.
|
|
43
49
|
/// @group button
|
|
44
50
|
$kendo-button-sm-padding-y: k-spacing(0.5) !default;
|
|
@@ -59,6 +65,9 @@ $kendo-button-font-weight: var(--kendo-font-weight-normal) !default;
|
|
|
59
65
|
/// The font size of the Button.
|
|
60
66
|
/// @group button
|
|
61
67
|
$kendo-button-font-size: var(--kendo-font-size) !default;
|
|
68
|
+
/// The font size of the xsmall Button.
|
|
69
|
+
/// @group button
|
|
70
|
+
$kendo-button-xs-font-size: var(--kendo-font-size) !default;
|
|
62
71
|
/// The font size of the small Button.
|
|
63
72
|
/// @group button
|
|
64
73
|
$kendo-button-sm-font-size: var(--kendo-font-size) !default;
|
|
@@ -72,6 +81,9 @@ $kendo-button-lg-font-size: var(--kendo-font-size-lg) !default;
|
|
|
72
81
|
/// The line height used along with the $kendo-font-size the.
|
|
73
82
|
/// @group button
|
|
74
83
|
$kendo-button-line-height: var(--kendo-line-height) !default;
|
|
84
|
+
/// The line height used along with the $kendo-font-size the of the xsmall Button.
|
|
85
|
+
/// @group button
|
|
86
|
+
$kendo-button-xs-line-height: var(--kendo-line-height) !default;
|
|
75
87
|
/// The line height used along with the $kendo-font-size the of the small Button.
|
|
76
88
|
/// @group button
|
|
77
89
|
$kendo-button-sm-line-height: var(--kendo-line-height) !default;
|
|
@@ -82,11 +94,13 @@ $kendo-button-md-line-height: $kendo-button-line-height !default;
|
|
|
82
94
|
/// @group button
|
|
83
95
|
$kendo-button-lg-line-height: var(--kendo-line-height-lg) !default;
|
|
84
96
|
|
|
97
|
+
$kendo-button-xs-calc-size: calc( ( #{$kendo-button-xs-line-height} * 1em ) + ( #{$kendo-button-xs-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
85
98
|
$kendo-button-sm-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
86
99
|
$kendo-button-md-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
87
100
|
$kendo-button-lg-calc-size: calc( ( #{$kendo-button-lg-line-height} * 1em ) + ( #{$kendo-button-lg-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
88
101
|
|
|
89
102
|
$kendo-button-inner-calc-size: calc( ( #{$kendo-button-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) ) !default;
|
|
103
|
+
$kendo-button-xs-inner-calc-size: calc( ( #{$kendo-button-xs-line-height} * 1em ) + ( #{$kendo-button-xs-padding-y} * 2 ) ) !default;
|
|
90
104
|
$kendo-button-sm-inner-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) ) !default;
|
|
91
105
|
$kendo-button-md-inner-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) ) !default;
|
|
92
106
|
$kendo-button-lg-inner-calc-size: calc( ( #{$kendo-button-lg-line-height} * 1em ) + ( #{$kendo-button-lg-padding-y} * 2 ) ) !default;
|
|
@@ -252,26 +266,32 @@ $kendo-button-transition: color k-transition(rapid), background-color k-transiti
|
|
|
252
266
|
@forward "@progress/kendo-theme-core/scss/components/button/_variables.scss" with (
|
|
253
267
|
$kendo-button-border-width: $kendo-button-border-width,
|
|
254
268
|
$kendo-button-border-radius: $kendo-button-border-radius,
|
|
269
|
+
$kendo-button-xs-padding-x: $kendo-button-xs-padding-x,
|
|
255
270
|
$kendo-button-sm-padding-x: $kendo-button-sm-padding-x,
|
|
256
271
|
$kendo-button-md-padding-x: $kendo-button-md-padding-x,
|
|
257
272
|
$kendo-button-lg-padding-x: $kendo-button-lg-padding-x,
|
|
273
|
+
$kendo-button-xs-padding-y: $kendo-button-xs-padding-y,
|
|
258
274
|
$kendo-button-sm-padding-y: $kendo-button-sm-padding-y,
|
|
259
275
|
$kendo-button-md-padding-y: $kendo-button-md-padding-y,
|
|
260
276
|
$kendo-button-lg-padding-y: $kendo-button-lg-padding-y,
|
|
261
277
|
$kendo-button-font-family: $kendo-button-font-family,
|
|
262
278
|
$kendo-button-font-weight: $kendo-button-font-weight,
|
|
263
279
|
$kendo-button-font-size: $kendo-button-font-size,
|
|
280
|
+
$kendo-button-xs-font-size: $kendo-button-xs-font-size,
|
|
264
281
|
$kendo-button-sm-font-size: $kendo-button-sm-font-size,
|
|
265
282
|
$kendo-button-md-font-size: $kendo-button-md-font-size,
|
|
266
283
|
$kendo-button-lg-font-size: $kendo-button-lg-font-size,
|
|
267
284
|
$kendo-button-line-height: $kendo-button-line-height,
|
|
285
|
+
$kendo-button-xs-line-height: $kendo-button-xs-line-height,
|
|
268
286
|
$kendo-button-sm-line-height: $kendo-button-sm-line-height,
|
|
269
287
|
$kendo-button-md-line-height: $kendo-button-md-line-height,
|
|
270
288
|
$kendo-button-lg-line-height: $kendo-button-lg-line-height,
|
|
289
|
+
$kendo-button-xs-calc-size: $kendo-button-xs-calc-size,
|
|
271
290
|
$kendo-button-sm-calc-size: $kendo-button-sm-calc-size,
|
|
272
291
|
$kendo-button-md-calc-size: $kendo-button-md-calc-size,
|
|
273
292
|
$kendo-button-lg-calc-size: $kendo-button-lg-calc-size,
|
|
274
293
|
$kendo-button-inner-calc-size: $kendo-button-inner-calc-size,
|
|
294
|
+
$kendo-button-xs-inner-calc-size: $kendo-button-xs-inner-calc-size,
|
|
275
295
|
$kendo-button-sm-inner-calc-size: $kendo-button-sm-inner-calc-size,
|
|
276
296
|
$kendo-button-md-inner-calc-size: $kendo-button-md-inner-calc-size,
|
|
277
297
|
$kendo-button-lg-inner-calc-size: $kendo-button-lg-inner-calc-size,
|
|
@@ -362,7 +362,7 @@ $kendo-chart-no-data-font-size: var(--kendo-font-size-lg) !default;
|
|
|
362
362
|
$kendo-chart-no-data-font-weight: var(--kendo-font-weight) !default;
|
|
363
363
|
/// The vertical padding of the Chart.
|
|
364
364
|
/// @group charts
|
|
365
|
-
$kendo-chart-no-data-padding-y:
|
|
365
|
+
$kendo-chart-no-data-padding-y: 7rem !default;
|
|
366
366
|
|
|
367
367
|
// Gauge
|
|
368
368
|
/// The background color of the Gauge.
|