@progress/kendo-theme-material 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 CHANGED
@@ -13567,11 +13567,11 @@ textarea.k-input-inner {
13567
13567
  }
13568
13568
 
13569
13569
  .k-input-spinner .k-spinner-increase .k-icon {
13570
- bottom: -;
13570
+ bottom: auto;
13571
13571
  }
13572
13572
 
13573
13573
  .k-input-spinner .k-spinner-decrease .k-icon {
13574
- top: -;
13574
+ top: auto;
13575
13575
  }
13576
13576
 
13577
13577
  .k-searchbar {
@@ -17538,7 +17538,7 @@ kendo-label > .k-label {
17538
17538
 
17539
17539
  .k-radio:checked,
17540
17540
  .k-radio.k-checked {
17541
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3ccircle cx='50%' cy='50%' r='4' fill='%233f51b5'/%3e%3c/svg%3e");
17541
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3ccircle cx='50%25' cy='50%25' r='4' fill='%233f51b5'/%3e%3c/svg%3e");
17542
17542
  }
17543
17543
 
17544
17544
  .k-radio:disabled,
@@ -17553,7 +17553,7 @@ kendo-label > .k-label {
17553
17553
 
17554
17554
  .k-radio:disabled:checked,
17555
17555
  .k-radio.k-disabled.k-checked {
17556
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3ccircle cx='50%' cy='50%' r='4' fill='%23adadad'/%3e%3c/svg%3e");
17556
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3ccircle cx='50%25' cy='50%25' r='4' fill='%23adadad'/%3e%3c/svg%3e");
17557
17557
  }
17558
17558
 
17559
17559
  .k-radio-wrap {
package/dist/all.scss CHANGED
@@ -458,6 +458,7 @@ $wcag-light: white !default;
458
458
  // #endregion
459
459
  // #region @import "_misc.scss"; -> packages/material/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"),
@@ -1751,6 +1752,7 @@ $enable-grid-classes: true !default;
1751
1752
  $use-calc-badge-size: true !default;
1752
1753
  $use-input-button-width: false !default;
1753
1754
  $use-input-spinner-width: false !default;
1755
+ $use-input-spinner-icon-offset: false !default;
1754
1756
  $use-picker-select-width: false !default;
1755
1757
 
1756
1758
 
@@ -10343,10 +10345,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10343
10345
  }
10344
10346
  }
10345
10347
  .k-spinner-increase .k-icon {
10346
- bottom: -$kendo-input-spinner-icon-offset;
10348
+ bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
10347
10349
  }
10348
10350
  .k-spinner-decrease .k-icon {
10349
- top: -$kendo-input-spinner-icon-offset;
10351
+ top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
10350
10352
  }
10351
10353
  }
10352
10354
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-material",
3
3
  "description": "Material theme for Kendo UI",
4
- "version": "5.1.2-dev.0",
4
+ "version": "5.1.2-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -50,7 +50,7 @@
50
50
  "postpublish": "echo 'no postpublish for material theme'"
51
51
  },
52
52
  "dependencies": {
53
- "@progress/kendo-theme-default": "^5.1.2-dev.0"
53
+ "@progress/kendo-theme-default": "^5.1.2-dev.1"
54
54
  },
55
- "gitHead": "c492bbaeca2d104534c4b4329c41afd762bb563b"
55
+ "gitHead": "9adacd86a177c1376aba105dd03af3f38a4dcaff"
56
56
  }
@@ -13,6 +13,7 @@ $enable-grid-classes: true !default;
13
13
  $use-calc-badge-size: true !default;
14
14
  $use-input-button-width: false !default;
15
15
  $use-input-spinner-width: false !default;
16
+ $use-input-spinner-icon-offset: false !default;
16
17
  $use-picker-select-width: false !default;
17
18
 
18
19