@progress/kendo-theme-default 5.9.0 → 5.9.1-dev.1
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 -2
- package/dist/all.scss +8 -2
- 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.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 -2
- package/scss/action-sheet/_layout.scss +5 -2
- package/scss/pdf-viewer/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -21718,8 +21718,8 @@ kendo-label > .k-label {
|
|
|
21718
21718
|
.k-actionsheet-container {
|
|
21719
21719
|
width: 100%;
|
|
21720
21720
|
height: 100%;
|
|
21721
|
-
max-width:
|
|
21722
|
-
max-height:
|
|
21721
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
21722
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
21723
21723
|
position: fixed;
|
|
21724
21724
|
top: 0;
|
|
21725
21725
|
left: 0;
|
|
@@ -21832,6 +21832,9 @@ kendo-label > .k-label {
|
|
|
21832
21832
|
.k-actionsheet-item {
|
|
21833
21833
|
padding: 0;
|
|
21834
21834
|
box-sizing: border-box;
|
|
21835
|
+
display: flex;
|
|
21836
|
+
flex-flow: row nowrap;
|
|
21837
|
+
outline: none;
|
|
21835
21838
|
}
|
|
21836
21839
|
|
|
21837
21840
|
.k-actionsheet-action {
|
package/dist/all.scss
CHANGED
|
@@ -22123,8 +22123,8 @@ $adaptive-actionsheet-footer-padding-x: map-get( $spacing, 4 ) !default;
|
|
|
22123
22123
|
.k-actionsheet-container {
|
|
22124
22124
|
width: 100%;
|
|
22125
22125
|
height: 100%;
|
|
22126
|
-
max-width:
|
|
22127
|
-
max-height:
|
|
22126
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
22127
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
22128
22128
|
position: fixed;
|
|
22129
22129
|
top: 0;
|
|
22130
22130
|
left: 0;
|
|
@@ -22260,6 +22260,9 @@ $adaptive-actionsheet-footer-padding-x: map-get( $spacing, 4 ) !default;
|
|
|
22260
22260
|
.k-actionsheet-item {
|
|
22261
22261
|
padding: 0;
|
|
22262
22262
|
box-sizing: border-box;
|
|
22263
|
+
display: flex;
|
|
22264
|
+
flex-flow: row nowrap;
|
|
22265
|
+
outline: none;
|
|
22263
22266
|
}
|
|
22264
22267
|
.k-actionsheet-action {
|
|
22265
22268
|
margin: 0;
|
|
@@ -40041,6 +40044,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40041
40044
|
// #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
|
|
40042
40045
|
// File already imported_once. Skipping output.
|
|
40043
40046
|
// #endregion
|
|
40047
|
+
// #region @import "../utils/_index.scss"; -> packages/default/scss/utils/_index.scss
|
|
40048
|
+
// File already imported_once. Skipping output.
|
|
40049
|
+
// #endregion
|
|
40044
40050
|
// #region @import "../button/_variables.scss"; -> packages/default/scss/button/_variables.scss
|
|
40045
40051
|
// File already imported_once. Skipping output.
|
|
40046
40052
|
// #endregion
|
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": "5.9.
|
|
4
|
+
"version": "5.9.1-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -38,11 +38,13 @@
|
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "sass-build",
|
|
40
40
|
"sass": "sass-build",
|
|
41
|
+
"nuget-pack": "jq '.version' package.json | xargs nuget pack package.nuspec -Version",
|
|
42
|
+
"nuget-push": "nuget push *.nupkg -ApiKey $NUGET_API_KEY -Source $NUGET_FEED -SkipDuplicate",
|
|
41
43
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
42
44
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
47
|
"sass-build": "^1.0.0"
|
|
46
48
|
},
|
|
47
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "569d0ac17d7dc5b1327bb9ffdda3c96d1ad97b3d"
|
|
48
50
|
}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
.k-actionsheet-container {
|
|
5
5
|
width: 100%;
|
|
6
6
|
height: 100%;
|
|
7
|
-
max-width:
|
|
8
|
-
max-height:
|
|
7
|
+
max-width: clamp(100vw, 100%, 100%);
|
|
8
|
+
max-height: clamp(100vh, 100%, 100%);
|
|
9
9
|
position: fixed;
|
|
10
10
|
top: 0;
|
|
11
11
|
left: 0;
|
|
@@ -141,6 +141,9 @@
|
|
|
141
141
|
.k-actionsheet-item {
|
|
142
142
|
padding: 0;
|
|
143
143
|
box-sizing: border-box;
|
|
144
|
+
display: flex;
|
|
145
|
+
flex-flow: row nowrap;
|
|
146
|
+
outline: none;
|
|
144
147
|
}
|
|
145
148
|
.k-actionsheet-action {
|
|
146
149
|
margin: 0;
|