@progress/kendo-theme-utils 5.6.1-dev.6 → 5.6.1-dev.7

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.
Files changed (2) hide show
  1. package/dist/all.css +56 -18
  2. package/package.json +3 -3
package/dist/all.css CHANGED
@@ -6149,10 +6149,12 @@
6149
6149
  }
6150
6150
 
6151
6151
  .k-w-fit {
6152
+ width: -moz-fit-content;
6152
6153
  width: fit-content;
6153
6154
  }
6154
6155
 
6155
6156
  .\!k-w-fit {
6157
+ width: -moz-fit-content !important;
6156
6158
  width: fit-content !important;
6157
6159
  }
6158
6160
 
@@ -6205,10 +6207,12 @@
6205
6207
  }
6206
6208
 
6207
6209
  .k-min-w-fit {
6210
+ min-width: -moz-fit-content;
6208
6211
  min-width: fit-content;
6209
6212
  }
6210
6213
 
6211
6214
  .\!k-min-w-fit {
6215
+ min-width: -moz-fit-content !important;
6212
6216
  min-width: fit-content !important;
6213
6217
  }
6214
6218
 
@@ -6261,10 +6265,12 @@
6261
6265
  }
6262
6266
 
6263
6267
  .k-max-w-fit {
6268
+ max-width: -moz-fit-content;
6264
6269
  max-width: fit-content;
6265
6270
  }
6266
6271
 
6267
6272
  .\!k-max-w-fit {
6273
+ max-width: -moz-fit-content !important;
6268
6274
  max-width: fit-content !important;
6269
6275
  }
6270
6276
 
@@ -6701,10 +6707,12 @@
6701
6707
  }
6702
6708
 
6703
6709
  .k-h-fit {
6710
+ height: -moz-fit-content;
6704
6711
  height: fit-content;
6705
6712
  }
6706
6713
 
6707
6714
  .\!k-h-fit {
6715
+ height: -moz-fit-content !important;
6708
6716
  height: fit-content !important;
6709
6717
  }
6710
6718
 
@@ -6757,10 +6765,12 @@
6757
6765
  }
6758
6766
 
6759
6767
  .k-min-h-fit {
6768
+ min-height: -moz-fit-content;
6760
6769
  min-height: fit-content;
6761
6770
  }
6762
6771
 
6763
6772
  .\!k-min-h-fit {
6773
+ min-height: -moz-fit-content !important;
6764
6774
  min-height: fit-content !important;
6765
6775
  }
6766
6776
 
@@ -6813,10 +6823,12 @@
6813
6823
  }
6814
6824
 
6815
6825
  .k-max-h-fit {
6826
+ max-height: -moz-fit-content;
6816
6827
  max-height: fit-content;
6817
6828
  }
6818
6829
 
6819
6830
  .\!k-max-h-fit {
6831
+ max-height: -moz-fit-content !important;
6820
6832
  max-height: fit-content !important;
6821
6833
  }
6822
6834
 
@@ -10101,35 +10113,43 @@
10101
10113
  }
10102
10114
 
10103
10115
  .k-scroll-snap-none {
10104
- scroll-snap-type: none;
10116
+ -ms-scroll-snap-type: none;
10117
+ scroll-snap-type: none;
10105
10118
  }
10106
10119
 
10107
10120
  .\!k-scroll-snap-none {
10108
- scroll-snap-type: none !important;
10121
+ -ms-scroll-snap-type: none !important;
10122
+ scroll-snap-type: none !important;
10109
10123
  }
10110
10124
 
10111
10125
  .k-scroll-snap-snap-x {
10112
- scroll-snap-type: x var(--k-scroll-snap-strictness);
10126
+ -ms-scroll-snap-type: x var(--k-scroll-snap-strictness);
10127
+ scroll-snap-type: x var(--k-scroll-snap-strictness);
10113
10128
  }
10114
10129
 
10115
10130
  .\!k-scroll-snap-snap-x {
10116
- scroll-snap-type: x var(--k-scroll-snap-strictness) !important;
10131
+ -ms-scroll-snap-type: x var(--k-scroll-snap-strictness) !important;
10132
+ scroll-snap-type: x var(--k-scroll-snap-strictness) !important;
10117
10133
  }
10118
10134
 
10119
10135
  .k-scroll-snap-snap-y {
10120
- scroll-snap-type: y var(--k-scroll-snap-strictness);
10136
+ -ms-scroll-snap-type: y var(--k-scroll-snap-strictness);
10137
+ scroll-snap-type: y var(--k-scroll-snap-strictness);
10121
10138
  }
10122
10139
 
10123
10140
  .\!k-scroll-snap-snap-y {
10124
- scroll-snap-type: y var(--k-scroll-snap-strictness) !important;
10141
+ -ms-scroll-snap-type: y var(--k-scroll-snap-strictness) !important;
10142
+ scroll-snap-type: y var(--k-scroll-snap-strictness) !important;
10125
10143
  }
10126
10144
 
10127
10145
  .k-scroll-snap-snap-both {
10128
- scroll-snap-type: both var(--k-scroll-snap-strictness);
10146
+ -ms-scroll-snap-type: both var(--k-scroll-snap-strictness);
10147
+ scroll-snap-type: both var(--k-scroll-snap-strictness);
10129
10148
  }
10130
10149
 
10131
10150
  .\!k-scroll-snap-snap-both {
10132
- scroll-snap-type: both var(--k-scroll-snap-strictness) !important;
10151
+ -ms-scroll-snap-type: both var(--k-scroll-snap-strictness) !important;
10152
+ scroll-snap-type: both var(--k-scroll-snap-strictness) !important;
10133
10153
  }
10134
10154
 
10135
10155
  .k-scroll-snap-mandatory {
@@ -12957,43 +12977,61 @@
12957
12977
  }
12958
12978
 
12959
12979
  .k-user-select-none {
12960
- user-select: none;
12980
+ -webkit-user-select: none;
12981
+ -ms-user-select: none;
12982
+ user-select: none;
12961
12983
  }
12962
12984
 
12963
12985
  .\!k-user-select-none {
12964
- user-select: none !important;
12986
+ -webkit-user-select: none !important;
12987
+ -ms-user-select: none !important;
12988
+ user-select: none !important;
12965
12989
  }
12966
12990
 
12967
12991
  .k-user-select-auto {
12968
- user-select: auto;
12992
+ -webkit-user-select: auto;
12993
+ -ms-user-select: auto;
12994
+ user-select: auto;
12969
12995
  }
12970
12996
 
12971
12997
  .\!k-user-select-auto {
12972
- user-select: auto !important;
12998
+ -webkit-user-select: auto !important;
12999
+ -ms-user-select: auto !important;
13000
+ user-select: auto !important;
12973
13001
  }
12974
13002
 
12975
13003
  .k-user-select-text {
12976
- user-select: text;
13004
+ -webkit-user-select: text;
13005
+ -ms-user-select: text;
13006
+ user-select: text;
12977
13007
  }
12978
13008
 
12979
13009
  .\!k-user-select-text {
12980
- user-select: text !important;
13010
+ -webkit-user-select: text !important;
13011
+ -ms-user-select: text !important;
13012
+ user-select: text !important;
12981
13013
  }
12982
13014
 
12983
13015
  .k-user-select-all {
12984
- user-select: all;
13016
+ -webkit-user-select: all;
13017
+ user-select: all;
12985
13018
  }
12986
13019
 
12987
13020
  .\!k-user-select-all {
12988
- user-select: all !important;
13021
+ -webkit-user-select: all !important;
13022
+ user-select: all !important;
12989
13023
  }
12990
13024
 
12991
13025
  .k-user-select-contain {
12992
- user-select: contain;
13026
+ -webkit-user-select: contain;
13027
+ -ms-user-select: element;
13028
+ user-select: contain;
12993
13029
  }
12994
13030
 
12995
13031
  .\!k-user-select-contain {
12996
- user-select: contain !important;
13032
+ -webkit-user-select: contain !important;
13033
+ -ms-user-select: element !important;
13034
+ user-select: contain !important;
12997
13035
  }
12998
13036
 
12999
13037
  .k-will-change-auto {
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": "5.6.1-dev.6",
4
+ "version": "5.6.1-dev.7",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -36,7 +36,7 @@
36
36
  "postpublish": "echo 'no postpublish for utils'"
37
37
  },
38
38
  "devDependencies": {
39
- "sass-build": "^0.0.1"
39
+ "sass-build": "^1.0.0"
40
40
  },
41
- "gitHead": "0bb8ba8dbd98bdff0c5d8b8d862fa68d28365c1b"
41
+ "gitHead": "cdbab1b2ebcaadb86f256c2d8d9cb8ffe2fef23b"
42
42
  }