@progress/kendo-theme-material 7.1.0 → 7.2.0-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 +6 -1
- package/dist/all.scss +5 -3
- 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 +5 -5
package/dist/all.css
CHANGED
|
@@ -33867,6 +33867,10 @@ select.k-picker-lg {
|
|
|
33867
33867
|
margin-inline-end: -8px;
|
|
33868
33868
|
}
|
|
33869
33869
|
|
|
33870
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
33871
|
+
width: max-content;
|
|
33872
|
+
}
|
|
33873
|
+
|
|
33870
33874
|
.k-listbox {
|
|
33871
33875
|
width: 10em;
|
|
33872
33876
|
height: 200px;
|
|
@@ -34594,6 +34598,7 @@ select.k-picker-lg {
|
|
|
34594
34598
|
}
|
|
34595
34599
|
|
|
34596
34600
|
.k-ripple-container .k-radio::after {
|
|
34601
|
+
background: #3f51b5;
|
|
34597
34602
|
opacity: 0.2;
|
|
34598
34603
|
}
|
|
34599
34604
|
|
|
@@ -53083,7 +53088,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
53083
53088
|
display: flex;
|
|
53084
53089
|
flex-direction: column;
|
|
53085
53090
|
flex: 1;
|
|
53086
|
-
align-items: start;
|
|
53091
|
+
align-items: flex-start;
|
|
53087
53092
|
gap: 8px;
|
|
53088
53093
|
}
|
|
53089
53094
|
|
package/dist/all.scss
CHANGED
|
@@ -28581,7 +28581,9 @@ $_kendo-module-meta: (
|
|
|
28581
28581
|
@mixin kendo-textarea--layout-base() {
|
|
28582
28582
|
|
|
28583
28583
|
// Textarea
|
|
28584
|
-
.k-textarea {
|
|
28584
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
28585
|
+
width: max-content;
|
|
28586
|
+
}
|
|
28585
28587
|
|
|
28586
28588
|
}
|
|
28587
28589
|
|
|
@@ -30007,7 +30009,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
30007
30009
|
// Ripple
|
|
30008
30010
|
.k-ripple-container {
|
|
30009
30011
|
.k-radio::after {
|
|
30010
|
-
background: $kendo-radio-
|
|
30012
|
+
background: $kendo-radio-ripple-bg;
|
|
30011
30013
|
opacity: $kendo-radio-ripple-opacity;
|
|
30012
30014
|
}
|
|
30013
30015
|
}
|
|
@@ -61756,7 +61758,7 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
61756
61758
|
display: flex;
|
|
61757
61759
|
flex-direction: column;
|
|
61758
61760
|
flex: 1;
|
|
61759
|
-
align-items: start;
|
|
61761
|
+
align-items: flex-start;
|
|
61760
61762
|
gap: $kendo-prompt-expander-spacing;
|
|
61761
61763
|
}
|
|
61762
61764
|
|
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": "7.
|
|
4
|
+
"version": "7.2.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
57
|
-
"@progress/kendo-theme-core": "7.
|
|
58
|
-
"@progress/kendo-theme-default": "7.
|
|
59
|
-
"@progress/kendo-theme-utils": "7.
|
|
57
|
+
"@progress/kendo-theme-core": "7.2.0-dev.0",
|
|
58
|
+
"@progress/kendo-theme-default": "7.2.0-dev.0",
|
|
59
|
+
"@progress/kendo-theme-utils": "7.2.0-dev.0"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "7b4e2fb481605b5b53d064fb79bbb60ea0c41d13"
|
|
66
66
|
}
|