@progress/kendo-theme-utils 5.7.0 → 5.8.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 +18 -2
- package/dist/all.scss +2 -1
- package/package.json +2 -2
- package/scss/_variables.scss +1 -1
- package/scss/table/_table-layout.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -791,11 +791,11 @@
|
|
|
791
791
|
}
|
|
792
792
|
|
|
793
793
|
.k-flex-col-reverse {
|
|
794
|
-
flex-direction: column;
|
|
794
|
+
flex-direction: column-reverse;
|
|
795
795
|
}
|
|
796
796
|
|
|
797
797
|
.\!k-flex-col-reverse {
|
|
798
|
-
flex-direction: column !important;
|
|
798
|
+
flex-direction: column-reverse !important;
|
|
799
799
|
}
|
|
800
800
|
|
|
801
801
|
.k-flex-wrap {
|
|
@@ -8442,6 +8442,22 @@
|
|
|
8442
8442
|
table-layout: fixed !important;
|
|
8443
8443
|
}
|
|
8444
8444
|
|
|
8445
|
+
.k-table-layout-auto {
|
|
8446
|
+
table-layout: auto;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
.\!k-table-layout-auto {
|
|
8450
|
+
table-layout: auto !important;
|
|
8451
|
+
}
|
|
8452
|
+
|
|
8453
|
+
.k-table-layout-fixed {
|
|
8454
|
+
table-layout: fixed;
|
|
8455
|
+
}
|
|
8456
|
+
|
|
8457
|
+
.\!k-table-layout-fixed {
|
|
8458
|
+
table-layout: fixed !important;
|
|
8459
|
+
}
|
|
8460
|
+
|
|
8445
8461
|
.k-flip-h, .k-flip-x {
|
|
8446
8462
|
transform: scaleX(-1);
|
|
8447
8463
|
}
|
package/dist/all.scss
CHANGED
|
@@ -203,7 +203,7 @@ $kendo-utils: (
|
|
|
203
203
|
row: row,
|
|
204
204
|
row-reverse: row-reverse,
|
|
205
205
|
col: column,
|
|
206
|
-
col-reverse: column
|
|
206
|
+
col-reverse: column-reverse
|
|
207
207
|
),
|
|
208
208
|
"flex-wrap": (
|
|
209
209
|
wrap,
|
|
@@ -1699,6 +1699,7 @@ $kendo-utils-border-collapse: map-get( $kendo-utils, "border-collapse" ) !defaul
|
|
|
1699
1699
|
$kendo-utils-table-layout: map-get( $kendo-utils, "table-layout" ) !default;
|
|
1700
1700
|
|
|
1701
1701
|
@include generate-utils( table, table-layout, $kendo-utils-table-layout );
|
|
1702
|
+
@include generate-utils( table-layout, table-layout, $kendo-utils-table-layout );
|
|
1702
1703
|
|
|
1703
1704
|
// #endregion
|
|
1704
1705
|
|
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.
|
|
4
|
+
"version": "5.8.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"sass-build": "^1.0.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "2e623d96036e764e51218c1b9d8b97d17eb036b5"
|
|
42
42
|
}
|
package/scss/_variables.scss
CHANGED