@progress/kendo-theme-default 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 +5 -1
- package/dist/all.scss +5 -3
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/prompt/_layout.scss +1 -1
- package/scss/radio/_theme.scss +1 -1
- package/scss/textarea/_layout.scss +3 -1
package/dist/all.css
CHANGED
|
@@ -33109,6 +33109,10 @@ select.k-picker-lg {
|
|
|
33109
33109
|
margin-inline-end: -4px;
|
|
33110
33110
|
}
|
|
33111
33111
|
|
|
33112
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
33113
|
+
width: max-content;
|
|
33114
|
+
}
|
|
33115
|
+
|
|
33112
33116
|
.k-listbox {
|
|
33113
33117
|
width: 10em;
|
|
33114
33118
|
height: 200px;
|
|
@@ -51249,7 +51253,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
51249
51253
|
display: flex;
|
|
51250
51254
|
flex-direction: column;
|
|
51251
51255
|
flex: 1;
|
|
51252
|
-
align-items: start;
|
|
51256
|
+
align-items: flex-start;
|
|
51253
51257
|
gap: 8px;
|
|
51254
51258
|
}
|
|
51255
51259
|
|
package/dist/all.scss
CHANGED
|
@@ -26484,7 +26484,9 @@ $_kendo-module-meta: (
|
|
|
26484
26484
|
@mixin kendo-textarea--layout-base() {
|
|
26485
26485
|
|
|
26486
26486
|
// Textarea
|
|
26487
|
-
.k-textarea {
|
|
26487
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
26488
|
+
width: max-content;
|
|
26489
|
+
}
|
|
26488
26490
|
|
|
26489
26491
|
}
|
|
26490
26492
|
|
|
@@ -27706,7 +27708,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
27706
27708
|
// Ripple
|
|
27707
27709
|
.k-ripple-container {
|
|
27708
27710
|
.k-radio::after {
|
|
27709
|
-
background: $kendo-radio-
|
|
27711
|
+
background: $kendo-radio-ripple-bg;
|
|
27710
27712
|
opacity: $kendo-radio-ripple-opacity;
|
|
27711
27713
|
}
|
|
27712
27714
|
}
|
|
@@ -57135,7 +57137,7 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
57135
57137
|
display: flex;
|
|
57136
57138
|
flex-direction: column;
|
|
57137
57139
|
flex: 1;
|
|
57138
|
-
align-items: start;
|
|
57140
|
+
align-items: flex-start;
|
|
57139
57141
|
gap: $kendo-prompt-expander-spacing;
|
|
57140
57142
|
}
|
|
57141
57143
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
55
|
-
"@progress/kendo-theme-core": "7.
|
|
56
|
-
"@progress/kendo-theme-utils": "7.
|
|
55
|
+
"@progress/kendo-theme-core": "7.2.0-dev.0",
|
|
56
|
+
"@progress/kendo-theme-utils": "7.2.0-dev.0"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
|
60
60
|
"lib": "lib"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "7b4e2fb481605b5b53d064fb79bbb60ea0c41d13"
|
|
63
63
|
}
|
package/scss/prompt/_layout.scss
CHANGED
package/scss/radio/_theme.scss
CHANGED