@progress/kendo-theme-bootstrap 5.1.2-dev.0 → 5.1.2-dev.1
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 +2 -2
- package/dist/all.scss +4 -2
- package/package.json +3 -3
- package/scss/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -13198,11 +13198,11 @@ textarea.k-input-inner {
|
|
|
13198
13198
|
}
|
|
13199
13199
|
|
|
13200
13200
|
.k-input-spinner .k-spinner-increase .k-icon {
|
|
13201
|
-
bottom:
|
|
13201
|
+
bottom: auto;
|
|
13202
13202
|
}
|
|
13203
13203
|
|
|
13204
13204
|
.k-input-spinner .k-spinner-decrease .k-icon {
|
|
13205
|
-
top:
|
|
13205
|
+
top: auto;
|
|
13206
13206
|
}
|
|
13207
13207
|
|
|
13208
13208
|
.k-searchbar {
|
package/dist/all.scss
CHANGED
|
@@ -458,6 +458,7 @@ $wcag-light: white !default;
|
|
|
458
458
|
// #endregion
|
|
459
459
|
// #region @import "_misc.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/core/functions/_misc.scss
|
|
460
460
|
$svg-escaped-characters: (
|
|
461
|
+
("%", "%25"),
|
|
461
462
|
("<", "%3c"),
|
|
462
463
|
(">", "%3e"),
|
|
463
464
|
("#", "%23"),
|
|
@@ -2955,6 +2956,7 @@ $enable-grid-classes: true !default;
|
|
|
2955
2956
|
$use-calc-badge-size: true !default;
|
|
2956
2957
|
$use-input-button-width: false !default;
|
|
2957
2958
|
$use-input-spinner-width: false !default;
|
|
2959
|
+
$use-input-spinner-icon-offset: false !default;
|
|
2958
2960
|
$use-picker-select-width: false !default;
|
|
2959
2961
|
|
|
2960
2962
|
|
|
@@ -11315,10 +11317,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11315
11317
|
}
|
|
11316
11318
|
}
|
|
11317
11319
|
.k-spinner-increase .k-icon {
|
|
11318
|
-
bottom:
|
|
11320
|
+
bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
11319
11321
|
}
|
|
11320
11322
|
.k-spinner-decrease .k-icon {
|
|
11321
|
-
top:
|
|
11323
|
+
top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
11322
11324
|
}
|
|
11323
11325
|
}
|
|
11324
11326
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.1.2-dev.
|
|
4
|
+
"version": "5.1.2-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.1.2-dev.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.1.2-dev.1",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "9adacd86a177c1376aba105dd03af3f38a4dcaff"
|
|
56
56
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -15,6 +15,7 @@ $enable-grid-classes: true !default;
|
|
|
15
15
|
$use-calc-badge-size: true !default;
|
|
16
16
|
$use-input-button-width: false !default;
|
|
17
17
|
$use-input-spinner-width: false !default;
|
|
18
|
+
$use-input-spinner-icon-offset: false !default;
|
|
18
19
|
$use-picker-select-width: false !default;
|
|
19
20
|
|
|
20
21
|
|