@progress/kendo-theme-material 5.6.0 → 5.6.1-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 +18 -5
- package/dist/all.scss +13 -8
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +3 -3
- package/scss/calendar/_layout.scss +2 -1
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/dropdowngrid/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -19403,7 +19403,8 @@ kendo-label > .k-label {
|
|
|
19403
19403
|
}
|
|
19404
19404
|
|
|
19405
19405
|
.k-calendar-header .k-today,
|
|
19406
|
-
.k-calendar-header .k-nav-today
|
|
19406
|
+
.k-calendar-header .k-nav-today,
|
|
19407
|
+
.k-calendar-header .k-calendar-nav-today {
|
|
19407
19408
|
text-decoration: none;
|
|
19408
19409
|
cursor: pointer;
|
|
19409
19410
|
outline: none;
|
|
@@ -19752,10 +19753,14 @@ kendo-label > .k-label {
|
|
|
19752
19753
|
.k-rtl .k-calendar .k-nav-next,
|
|
19753
19754
|
.k-rtl .k-calendar .k-prev-view,
|
|
19754
19755
|
.k-rtl .k-calendar .k-next-view,
|
|
19756
|
+
.k-rtl .k-calendar .k-calendar-nav-prev,
|
|
19757
|
+
.k-rtl .k-calendar .k-calendar-nav-next,
|
|
19755
19758
|
.k-calendar[dir="rtl"] .k-nav-prev,
|
|
19756
19759
|
.k-calendar[dir="rtl"] .k-nav-next,
|
|
19757
19760
|
.k-calendar[dir="rtl"] .k-prev-view,
|
|
19758
|
-
.k-calendar[dir="rtl"] .k-next-view
|
|
19761
|
+
.k-calendar[dir="rtl"] .k-next-view,
|
|
19762
|
+
.k-calendar[dir="rtl"] .k-calendar-nav-prev,
|
|
19763
|
+
.k-calendar[dir="rtl"] .k-calendar-nav-next {
|
|
19759
19764
|
transform: scaleX(-1);
|
|
19760
19765
|
}
|
|
19761
19766
|
|
|
@@ -19791,7 +19796,8 @@ kendo-label > .k-label {
|
|
|
19791
19796
|
.k-calendar .k-title,
|
|
19792
19797
|
.k-calendar .k-calendar-title,
|
|
19793
19798
|
.k-calendar .k-nav-fast,
|
|
19794
|
-
.k-calendar .k-nav-today
|
|
19799
|
+
.k-calendar .k-nav-today,
|
|
19800
|
+
.k-calendar .k-calendar-nav-today {
|
|
19795
19801
|
font-weight: 500;
|
|
19796
19802
|
text-transform: none;
|
|
19797
19803
|
}
|
|
@@ -19820,11 +19826,18 @@ kendo-label > .k-label {
|
|
|
19820
19826
|
color: rgba(0, 0, 0, 0.87);
|
|
19821
19827
|
}
|
|
19822
19828
|
|
|
19823
|
-
.k-calendar .k-nav-today
|
|
19829
|
+
.k-calendar .k-nav-today,
|
|
19830
|
+
.k-calendar .k-calendar-nav-today {
|
|
19824
19831
|
color: #e51a5f;
|
|
19825
19832
|
}
|
|
19826
19833
|
|
|
19827
|
-
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-focus, .k-calendar .k-nav-today.k-state-focus
|
|
19834
|
+
.k-calendar .k-nav-today:hover, .k-calendar .k-nav-today.k-hover, .k-calendar .k-nav-today.k-state-hover, .k-calendar .k-nav-today:focus, .k-calendar .k-nav-today.k-focus, .k-calendar .k-nav-today.k-state-focus,
|
|
19835
|
+
.k-calendar .k-calendar-nav-today:hover,
|
|
19836
|
+
.k-calendar .k-calendar-nav-today.k-hover,
|
|
19837
|
+
.k-calendar .k-calendar-nav-today.k-state-hover,
|
|
19838
|
+
.k-calendar .k-calendar-nav-today:focus,
|
|
19839
|
+
.k-calendar .k-calendar-nav-today.k-focus,
|
|
19840
|
+
.k-calendar .k-calendar-nav-today.k-state-focus {
|
|
19828
19841
|
color: #c2185b;
|
|
19829
19842
|
}
|
|
19830
19843
|
|
package/dist/all.scss
CHANGED
|
@@ -18740,7 +18740,8 @@ $kendo-calendar-sizes: (
|
|
|
18740
18740
|
font-weight: bold;
|
|
18741
18741
|
}
|
|
18742
18742
|
.k-today,
|
|
18743
|
-
.k-nav-today
|
|
18743
|
+
.k-nav-today,
|
|
18744
|
+
.k-calendar-nav-today {
|
|
18744
18745
|
text-decoration: none;
|
|
18745
18746
|
cursor: pointer;
|
|
18746
18747
|
outline: none;
|
|
@@ -19110,7 +19111,9 @@ $kendo-calendar-sizes: (
|
|
|
19110
19111
|
.k-nav-prev,
|
|
19111
19112
|
.k-nav-next,
|
|
19112
19113
|
.k-prev-view,
|
|
19113
|
-
.k-next-view
|
|
19114
|
+
.k-next-view,
|
|
19115
|
+
.k-calendar-nav-prev,
|
|
19116
|
+
.k-calendar-nav-next {
|
|
19114
19117
|
transform: scaleX(-1);
|
|
19115
19118
|
}
|
|
19116
19119
|
|
|
@@ -19147,7 +19150,8 @@ $kendo-calendar-sizes: (
|
|
|
19147
19150
|
.k-title,
|
|
19148
19151
|
.k-calendar-title,
|
|
19149
19152
|
.k-nav-fast,
|
|
19150
|
-
.k-nav-today
|
|
19153
|
+
.k-nav-today,
|
|
19154
|
+
.k-calendar-nav-today {
|
|
19151
19155
|
font-weight: 500;
|
|
19152
19156
|
text-transform: none;
|
|
19153
19157
|
}
|
|
@@ -19196,7 +19200,8 @@ $kendo-calendar-sizes: (
|
|
|
19196
19200
|
|
|
19197
19201
|
|
|
19198
19202
|
// Today navigation
|
|
19199
|
-
.k-nav-today
|
|
19203
|
+
.k-nav-today,
|
|
19204
|
+
.k-calendar-nav-today {
|
|
19200
19205
|
color: $calendar-today-nav-text;
|
|
19201
19206
|
|
|
19202
19207
|
&:hover,
|
|
@@ -20830,10 +20835,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20830
20835
|
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
20831
20836
|
// File already imported_once. Skipping output.
|
|
20832
20837
|
// #endregion
|
|
20833
|
-
// #region @import "../
|
|
20834
|
-
// File already imported_once. Skipping output.
|
|
20835
|
-
// #endregion
|
|
20836
|
-
// #region @import "../colorgradient/_index.scss"; -> packages/material/scss/colorgradient/_index.scss
|
|
20838
|
+
// #region @import "../coloreditor/_index.scss"; -> packages/material/scss/coloreditor/_index.scss
|
|
20837
20839
|
// File already imported_once. Skipping output.
|
|
20838
20840
|
// #endregion
|
|
20839
20841
|
// #region @import "../popup/_index.scss"; -> packages/material/scss/popup/_index.scss
|
|
@@ -21244,6 +21246,9 @@ $kendo-daterange-picker-input-width: 10em;
|
|
|
21244
21246
|
// #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
|
|
21245
21247
|
// File already imported_once. Skipping output.
|
|
21246
21248
|
// #endregion
|
|
21249
|
+
// #region @import "../table/_index.scss"; -> packages/material/scss/table/_index.scss
|
|
21250
|
+
// File already imported_once. Skipping output.
|
|
21251
|
+
// #endregion
|
|
21247
21252
|
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
21248
21253
|
// File already imported_once. Skipping output.
|
|
21249
21254
|
// #endregion
|
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.6.0",
|
|
4
|
+
"version": "5.6.1-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"postpublish": "echo 'no postpublish for material theme'"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@progress/kendo-theme-default": "^5.6.0"
|
|
47
|
+
"@progress/kendo-theme-default": "^5.6.1-dev.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"sass-build": "^0.0.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "57dbcf8b8d0e6f11fc74d102cd8784a17438b2d2"
|
|
53
53
|
}
|
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
// Dependencies
|
|
5
5
|
@import "../input/_index.scss";
|
|
6
6
|
@import "../button/_index.scss";
|
|
7
|
-
@import "../
|
|
8
|
-
@import "../colorgradient/_index.scss";
|
|
7
|
+
@import "../coloreditor/_index.scss";
|
|
9
8
|
@import "../popup/_index.scss";
|
|
10
9
|
@import "../icons/_index.scss";
|
|
11
10
|
|