@progress/kendo-theme-default 7.1.0-dev.3 → 7.1.0-dev.5
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 +7 -0
- package/dist/all.scss +7 -0
- 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 +7 -0
package/dist/all.css
CHANGED
|
@@ -51038,6 +51038,13 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
51038
51038
|
overflow: auto;
|
|
51039
51039
|
}
|
|
51040
51040
|
|
|
51041
|
+
.k-prompt-view {
|
|
51042
|
+
display: flex;
|
|
51043
|
+
flex-direction: column;
|
|
51044
|
+
flex: 1 1 auto;
|
|
51045
|
+
gap: 16px;
|
|
51046
|
+
}
|
|
51047
|
+
|
|
51041
51048
|
.k-prompt-expander {
|
|
51042
51049
|
display: flex;
|
|
51043
51050
|
flex-direction: column;
|
package/dist/all.scss
CHANGED
|
@@ -56007,6 +56007,13 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
56007
56007
|
overflow: auto;
|
|
56008
56008
|
}
|
|
56009
56009
|
|
|
56010
|
+
.k-prompt-view {
|
|
56011
|
+
display: flex;
|
|
56012
|
+
flex-direction: column;
|
|
56013
|
+
flex: 1 1 auto;
|
|
56014
|
+
gap: $kendo-prompt-content-spacing;
|
|
56015
|
+
}
|
|
56016
|
+
|
|
56010
56017
|
// Prompt Expander
|
|
56011
56018
|
.k-prompt-expander {
|
|
56012
56019
|
display: flex;
|
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.1.0-dev.
|
|
4
|
+
"version": "7.1.0-dev.5",
|
|
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.1.0-dev.
|
|
56
|
-
"@progress/kendo-theme-utils": "7.1.0-dev.
|
|
55
|
+
"@progress/kendo-theme-core": "7.1.0-dev.5",
|
|
56
|
+
"@progress/kendo-theme-utils": "7.1.0-dev.5"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
|
60
60
|
"lib": "lib"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "0c774d5ccc5cff1496f9b526bd1fef066d346ad6"
|
|
63
63
|
}
|
package/scss/prompt/_layout.scss
CHANGED