@progress/kendo-theme-default 5.9.1-dev.0 → 5.9.1-dev.2
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 +16 -4
- package/dist/all.scss +16 -4
- 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/calendar/_variables.scss +1 -1
- package/scss/pdf-viewer/_index.scss +1 -0
- package/scss/spreadsheet/_layout.scss +4 -0
- package/scss/spreadsheet/_theme.scss +3 -1
package/dist/all.css
CHANGED
|
@@ -18424,8 +18424,8 @@ kendo-label > .k-label {
|
|
|
18424
18424
|
.k-calendar-view {
|
|
18425
18425
|
margin: auto;
|
|
18426
18426
|
padding: 0 4px;
|
|
18427
|
-
width:
|
|
18428
|
-
inline-size: var(--INTERNAL--kendo-calendar-view-width,
|
|
18427
|
+
width: 256px;
|
|
18428
|
+
inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
|
|
18429
18429
|
min-height: 224px;
|
|
18430
18430
|
box-sizing: content-box;
|
|
18431
18431
|
gap: 16px;
|
|
@@ -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 {
|
|
@@ -28380,6 +28383,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28380
28383
|
user-select: none;
|
|
28381
28384
|
position: absolute;
|
|
28382
28385
|
z-index: 2;
|
|
28386
|
+
overflow: hidden;
|
|
28383
28387
|
}
|
|
28384
28388
|
|
|
28385
28389
|
.k-spreadsheet-overflow {
|
|
@@ -28550,6 +28554,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28550
28554
|
position: relative;
|
|
28551
28555
|
}
|
|
28552
28556
|
|
|
28557
|
+
.k-spreadsheet-disabled-mask {
|
|
28558
|
+
position: absolute;
|
|
28559
|
+
}
|
|
28560
|
+
|
|
28553
28561
|
.k-spreadsheet .k-selection-wrapper {
|
|
28554
28562
|
position: relative;
|
|
28555
28563
|
cursor: cell;
|
|
@@ -29066,6 +29074,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29066
29074
|
background-color: #ffffff;
|
|
29067
29075
|
}
|
|
29068
29076
|
|
|
29077
|
+
.k-spreadsheet-disabled-mask {
|
|
29078
|
+
background-color: #ffffff;
|
|
29079
|
+
}
|
|
29080
|
+
|
|
29069
29081
|
.k-spreadsheet .k-selection-full,
|
|
29070
29082
|
.k-spreadsheet .k-selection-partial {
|
|
29071
29083
|
background-color: rgba(255, 99, 88, 0.25);
|
package/dist/all.scss
CHANGED
|
@@ -16436,7 +16436,7 @@ $calendar-caption-font-size: null !default;
|
|
|
16436
16436
|
$calendar-caption-line-height: null !default;
|
|
16437
16437
|
$calendar-caption-font-weight: bold !default;
|
|
16438
16438
|
|
|
16439
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
16439
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
16440
16440
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
16441
16441
|
$calendar-view-gap: map-get( $spacing, 4 ) !default;
|
|
16442
16442
|
|
|
@@ -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;
|
|
@@ -31171,6 +31174,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31171
31174
|
user-select: none;
|
|
31172
31175
|
position: absolute;
|
|
31173
31176
|
z-index: 2;
|
|
31177
|
+
overflow: hidden;
|
|
31174
31178
|
}
|
|
31175
31179
|
.k-spreadsheet-overflow {
|
|
31176
31180
|
position: absolute;
|
|
@@ -31330,6 +31334,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31330
31334
|
position: relative;
|
|
31331
31335
|
}
|
|
31332
31336
|
|
|
31337
|
+
.k-spreadsheet-disabled-mask {
|
|
31338
|
+
position: absolute;
|
|
31339
|
+
}
|
|
31333
31340
|
|
|
31334
31341
|
// Selection
|
|
31335
31342
|
.k-spreadsheet .k-selection-wrapper {
|
|
@@ -31867,7 +31874,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31867
31874
|
.k-spreadsheet-merged-cell {
|
|
31868
31875
|
background-color: $spreadsheet-bg;
|
|
31869
31876
|
}
|
|
31870
|
-
|
|
31877
|
+
.k-spreadsheet-disabled-mask {
|
|
31878
|
+
background-color: $spreadsheet-bg;
|
|
31879
|
+
}
|
|
31871
31880
|
|
|
31872
31881
|
// Selection
|
|
31873
31882
|
.k-spreadsheet .k-selection-full,
|
|
@@ -40041,6 +40050,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40041
40050
|
// #region @import "../common/_index.scss"; -> packages/default/scss/common/_index.scss
|
|
40042
40051
|
// File already imported_once. Skipping output.
|
|
40043
40052
|
// #endregion
|
|
40053
|
+
// #region @import "../utils/_index.scss"; -> packages/default/scss/utils/_index.scss
|
|
40054
|
+
// File already imported_once. Skipping output.
|
|
40055
|
+
// #endregion
|
|
40044
40056
|
// #region @import "../button/_variables.scss"; -> packages/default/scss/button/_variables.scss
|
|
40045
40057
|
// File already imported_once. Skipping output.
|
|
40046
40058
|
// #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.1-dev.
|
|
4
|
+
"version": "5.9.1-dev.2",
|
|
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": "b6b186f9fb09b89d7b2468e2786165e1c5c62ec2"
|
|
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;
|
|
@@ -50,7 +50,7 @@ $calendar-caption-font-size: null !default;
|
|
|
50
50
|
$calendar-caption-line-height: null !default;
|
|
51
51
|
$calendar-caption-font-weight: bold !default;
|
|
52
52
|
|
|
53
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
53
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
54
54
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
55
55
|
$calendar-view-gap: map-get( $spacing, 4 ) !default;
|
|
56
56
|
|
|
@@ -273,6 +273,7 @@
|
|
|
273
273
|
user-select: none;
|
|
274
274
|
position: absolute;
|
|
275
275
|
z-index: 2;
|
|
276
|
+
overflow: hidden;
|
|
276
277
|
}
|
|
277
278
|
.k-spreadsheet-overflow {
|
|
278
279
|
position: absolute;
|
|
@@ -432,6 +433,9 @@
|
|
|
432
433
|
position: relative;
|
|
433
434
|
}
|
|
434
435
|
|
|
436
|
+
.k-spreadsheet-disabled-mask {
|
|
437
|
+
position: absolute;
|
|
438
|
+
}
|
|
435
439
|
|
|
436
440
|
// Selection
|
|
437
441
|
.k-spreadsheet .k-selection-wrapper {
|