@progress/kendo-theme-material 4.43.1-dev.2 → 4.43.1-dev.3
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 +73 -29
- package/dist/all.scss +90 -12
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/_layout.scss +0 -0
- package/modules/@progress/kendo-theme-default/scss/color-preview/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/color-preview/_theme.scss +3 -3
- package/modules/@progress/kendo-theme-default/scss/color-preview/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +4 -2
- package/modules/@progress/kendo-theme-default/scss/index.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/slider/_layout.scss +2 -0
- package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/utils/_flex.scss +11 -3
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_index.scss +10 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss +35 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss +3 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_variables.scss +1 -0
- package/package.json +3 -3
- package/scss/color-preview/_variables.scss +2 -2
- package/scss/index.scss +1 -0
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +1 -0
- package/scss/virtual-scroller/_theme.scss +1 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -2035,40 +2035,54 @@ kendo-sortable {
|
|
|
2035
2035
|
display: none !important;
|
|
2036
2036
|
}
|
|
2037
2037
|
|
|
2038
|
-
.k-d-flex {
|
|
2038
|
+
.k-d-flex, .k-d-flex-row, .k-d-flex-col {
|
|
2039
2039
|
display: flex;
|
|
2040
2040
|
}
|
|
2041
2041
|
|
|
2042
|
+
.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2043
|
+
display: flex !important;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2042
2046
|
.k-d-inline-flex {
|
|
2043
2047
|
display: inline-flex;
|
|
2044
2048
|
}
|
|
2045
2049
|
|
|
2046
|
-
|
|
2047
|
-
display: flex;
|
|
2048
|
-
flex-direction: row;
|
|
2050
|
+
.\!k-d-inline-flex {
|
|
2051
|
+
display: inline-flex !important;
|
|
2049
2052
|
}
|
|
2050
2053
|
|
|
2051
|
-
.k-d-flex-
|
|
2052
|
-
|
|
2053
|
-
flex-direction: column;
|
|
2054
|
+
.k-flex-row, .k-d-flex-row {
|
|
2055
|
+
flex-direction: row;
|
|
2054
2056
|
}
|
|
2055
2057
|
|
|
2056
|
-
|
|
2057
|
-
flex-direction: row;
|
|
2058
|
+
.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2059
|
+
flex-direction: row !important;
|
|
2058
2060
|
}
|
|
2059
2061
|
|
|
2060
2062
|
.k-flex-row-reverse {
|
|
2061
2063
|
flex-direction: row-reverse;
|
|
2062
2064
|
}
|
|
2063
2065
|
|
|
2064
|
-
|
|
2066
|
+
.\!k-flex-row-reverse {
|
|
2067
|
+
flex-direction: row-reverse !important;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.k-flex-col, .k-d-flex-col, .k-flex-column {
|
|
2065
2071
|
flex-direction: column;
|
|
2066
2072
|
}
|
|
2067
2073
|
|
|
2074
|
+
.\!k-flex-col {
|
|
2075
|
+
flex-direction: column !important;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2068
2078
|
.k-flex-col-reverse, .k-flex-column-reverse {
|
|
2069
2079
|
flex-direction: column-reverse;
|
|
2070
2080
|
}
|
|
2071
2081
|
|
|
2082
|
+
.\!k-flex-col-reverse {
|
|
2083
|
+
flex-direction: column-reverse;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2072
2086
|
.k-flex-wrap {
|
|
2073
2087
|
flex-wrap: wrap;
|
|
2074
2088
|
}
|
|
@@ -11882,6 +11896,31 @@ kendo-list > .k-group-header,
|
|
|
11882
11896
|
background-color: rgba(0, 0, 0, 0.04);
|
|
11883
11897
|
}
|
|
11884
11898
|
|
|
11899
|
+
.k-virtual-scroller {
|
|
11900
|
+
width: 100%;
|
|
11901
|
+
height: 100%;
|
|
11902
|
+
flex: 1 1 auto;
|
|
11903
|
+
overflow: auto;
|
|
11904
|
+
position: relative;
|
|
11905
|
+
}
|
|
11906
|
+
|
|
11907
|
+
.k-virtual-scroller-wrap {
|
|
11908
|
+
position: relative;
|
|
11909
|
+
z-index: 1;
|
|
11910
|
+
}
|
|
11911
|
+
|
|
11912
|
+
.k-virtual-scroller-content {
|
|
11913
|
+
position: absolute;
|
|
11914
|
+
width: 100%;
|
|
11915
|
+
top: 0;
|
|
11916
|
+
inset-inline-start: 0;
|
|
11917
|
+
}
|
|
11918
|
+
|
|
11919
|
+
.k-virtual-scroller-size {
|
|
11920
|
+
position: relative;
|
|
11921
|
+
z-index: 0;
|
|
11922
|
+
}
|
|
11923
|
+
|
|
11885
11924
|
.k-avatar {
|
|
11886
11925
|
border-width: 0;
|
|
11887
11926
|
border-style: solid;
|
|
@@ -12745,7 +12784,7 @@ kendo-badge-container {
|
|
|
12745
12784
|
cursor: pointer;
|
|
12746
12785
|
}
|
|
12747
12786
|
|
|
12748
|
-
.k-no-color::
|
|
12787
|
+
.k-no-color::before {
|
|
12749
12788
|
content: "";
|
|
12750
12789
|
width: 100%;
|
|
12751
12790
|
height: 100%;
|
|
@@ -12768,10 +12807,10 @@ kendo-badge-container {
|
|
|
12768
12807
|
border-color: rgba(0, 0, 0, 0.15);
|
|
12769
12808
|
}
|
|
12770
12809
|
|
|
12771
|
-
.k-no-color::
|
|
12810
|
+
.k-no-color::before {
|
|
12772
12811
|
background-color: white;
|
|
12773
|
-
background-image: url("data:image/
|
|
12774
|
-
background-size:
|
|
12812
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23f31700' stroke-width='1'/%3e%3c/svg%3e");
|
|
12813
|
+
background-size: 100% 100%;
|
|
12775
12814
|
background-position: 0 0;
|
|
12776
12815
|
}
|
|
12777
12816
|
|
|
@@ -14319,7 +14358,8 @@ kendo-label > .k-label {
|
|
|
14319
14358
|
border: 0;
|
|
14320
14359
|
}
|
|
14321
14360
|
|
|
14322
|
-
.k-form .k-form-fieldset > *:first-child
|
|
14361
|
+
.k-form .k-form-fieldset > *:not(.k-hidden):first-child,
|
|
14362
|
+
.k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
|
|
14323
14363
|
margin-top: 0;
|
|
14324
14364
|
}
|
|
14325
14365
|
|
|
@@ -14342,8 +14382,10 @@ kendo-label > .k-label {
|
|
|
14342
14382
|
margin-top: 1em;
|
|
14343
14383
|
}
|
|
14344
14384
|
|
|
14345
|
-
.k-form > *:first-child,
|
|
14346
|
-
.k-form
|
|
14385
|
+
.k-form > *:not(.k-hidden):first-child,
|
|
14386
|
+
.k-form > *.k-hidden + :not(.k-hidden),
|
|
14387
|
+
.k-form .k-daterangepicker .k-textbox-container:not(.k-hidden):first-child,
|
|
14388
|
+
.k-form .k-daterangepicker .k-textbox-container.k-hidden + :not(.k-hidden) {
|
|
14347
14389
|
margin-top: 0;
|
|
14348
14390
|
}
|
|
14349
14391
|
|
|
@@ -16249,11 +16291,13 @@ kendo-label.k-radio-label > .k-label {
|
|
|
16249
16291
|
}
|
|
16250
16292
|
|
|
16251
16293
|
.k-slider .k-button-increase {
|
|
16294
|
+
position: absolute;
|
|
16252
16295
|
right: 0;
|
|
16253
16296
|
top: 0;
|
|
16254
16297
|
}
|
|
16255
16298
|
|
|
16256
16299
|
.k-slider .k-button-decrease {
|
|
16300
|
+
position: absolute;
|
|
16257
16301
|
left: 0;
|
|
16258
16302
|
top: 0;
|
|
16259
16303
|
}
|
|
@@ -24571,7 +24615,7 @@ kendo-card-footer {
|
|
|
24571
24615
|
.k-tabstrip-items {
|
|
24572
24616
|
outline: 0;
|
|
24573
24617
|
display: flex;
|
|
24574
|
-
flex-
|
|
24618
|
+
flex-flow: row wrap;
|
|
24575
24619
|
flex: 0 0 auto;
|
|
24576
24620
|
}
|
|
24577
24621
|
|
|
@@ -28561,7 +28605,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
28561
28605
|
display: block;
|
|
28562
28606
|
}
|
|
28563
28607
|
|
|
28564
|
-
.k-listview-content.k-d-flex::after,
|
|
28608
|
+
.k-listview-content.k-d-flex::after, .k-listview-content.k-d-flex-row::after, .k-listview-content.k-d-flex-col::after,
|
|
28565
28609
|
.k-listview-content.k-d-grid::after {
|
|
28566
28610
|
display: none;
|
|
28567
28611
|
}
|
|
@@ -29999,19 +30043,19 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29999
30043
|
user-select: none;
|
|
30000
30044
|
}
|
|
30001
30045
|
|
|
30002
|
-
.k-flex-row .k-pivotgrid-configurator-button,
|
|
30046
|
+
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
30003
30047
|
.k-flex-row-reverse .k-pivotgrid-configurator-button {
|
|
30004
30048
|
display: flex;
|
|
30005
30049
|
align-items: center;
|
|
30006
30050
|
}
|
|
30007
30051
|
|
|
30008
|
-
.k-flex-row .k-pivotgrid-configurator-button span,
|
|
30052
|
+
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
30009
30053
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
30010
30054
|
-ms-writing-mode: tb-rl;
|
|
30011
30055
|
writing-mode: vertical-rl;
|
|
30012
30056
|
}
|
|
30013
30057
|
|
|
30014
|
-
.k-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
30058
|
+
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
30015
30059
|
.k-flex-row-reverse .k-pivotgrid-configurator-button .k-icon {
|
|
30016
30060
|
vertical-align: baseline;
|
|
30017
30061
|
}
|
|
@@ -30020,7 +30064,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30020
30064
|
transform: rotate(-180deg);
|
|
30021
30065
|
}
|
|
30022
30066
|
|
|
30023
|
-
.k-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
30067
|
+
.k-flex-col .k-pivotgrid-configurator-button, .k-d-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
30024
30068
|
.k-flex-col-reverse .k-pivotgrid-configurator-button,
|
|
30025
30069
|
.k-flex-column-reverse .k-pivotgrid-configurator-button {
|
|
30026
30070
|
text-align: center;
|
|
@@ -30032,7 +30076,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30032
30076
|
z-index: 2;
|
|
30033
30077
|
}
|
|
30034
30078
|
|
|
30035
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
30079
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
30036
30080
|
right: calc(2em + 10px);
|
|
30037
30081
|
}
|
|
30038
30082
|
|
|
@@ -30040,7 +30084,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30040
30084
|
left: calc(2em + 10px);
|
|
30041
30085
|
}
|
|
30042
30086
|
|
|
30043
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
30087
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
30044
30088
|
bottom: calc(2em + 10px);
|
|
30045
30089
|
}
|
|
30046
30090
|
|
|
@@ -30178,7 +30222,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30178
30222
|
min-width: 320px;
|
|
30179
30223
|
}
|
|
30180
30224
|
|
|
30181
|
-
.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
30225
|
+
.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
30182
30226
|
.k-flex-row-reverse .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
30183
30227
|
border-right-width: 0;
|
|
30184
30228
|
border-left-width: 0;
|
|
@@ -30232,7 +30276,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30232
30276
|
overflow-y: auto;
|
|
30233
30277
|
}
|
|
30234
30278
|
|
|
30235
|
-
.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
30279
|
+
.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
30236
30280
|
.k-flex-col-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
30237
30281
|
.k-flex-column-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
30238
30282
|
border-top-width: 0;
|
|
@@ -30638,7 +30682,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30638
30682
|
border-color: rgba(0, 0, 0, 0.12);
|
|
30639
30683
|
}
|
|
30640
30684
|
|
|
30641
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
30685
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
30642
30686
|
box-shadow: -3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
30643
30687
|
}
|
|
30644
30688
|
|
|
@@ -30646,7 +30690,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
30646
30690
|
box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
30647
30691
|
}
|
|
30648
30692
|
|
|
30649
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
30693
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
30650
30694
|
box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
|
|
30651
30695
|
}
|
|
30652
30696
|
|
package/dist/all.scss
CHANGED
|
@@ -4323,34 +4323,42 @@ $utils-border-radius: (
|
|
|
4323
4323
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
4324
4324
|
/// @group flex-layout
|
|
4325
4325
|
.k-d-flex { display: flex; }
|
|
4326
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4326
4327
|
/// @name k-d-inline-flex
|
|
4327
4328
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
4328
4329
|
/// @group flex-layout
|
|
4329
4330
|
.k-d-inline-flex { display: inline-flex; }
|
|
4331
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4330
4332
|
/// @name k-d-flex-row
|
|
4331
4333
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
4332
4334
|
/// @group flex-layout
|
|
4333
|
-
.k-d-flex-row {
|
|
4335
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
4336
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4334
4337
|
/// @name k-d-flex-col
|
|
4335
4338
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
4336
4339
|
/// @group flex-layout
|
|
4337
|
-
.k-d-flex-col {
|
|
4340
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
4341
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4338
4342
|
/// @name k-flex-row
|
|
4339
4343
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
4340
4344
|
/// @group flex-layout
|
|
4341
4345
|
.k-flex-row { flex-direction: row; }
|
|
4346
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
4342
4347
|
/// @name k-flex-row-reverse
|
|
4343
4348
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
4344
4349
|
/// @group flex-layout
|
|
4345
4350
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
4351
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
4346
4352
|
/// @name k-flex-col
|
|
4347
4353
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
4348
4354
|
/// @group flex-layout
|
|
4349
4355
|
.k-flex-col { flex-direction: column; }
|
|
4356
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
4350
4357
|
/// @name k-flex-col-reverse
|
|
4351
4358
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
4352
4359
|
/// @group flex-layout
|
|
4353
4360
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
4361
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
4354
4362
|
|
|
4355
4363
|
|
|
4356
4364
|
// Aliases
|
|
@@ -4405,7 +4413,7 @@ $utils-border-radius: (
|
|
|
4405
4413
|
/// @group flex-layout
|
|
4406
4414
|
.k-flex-shrink { flex-shrink: 1; }
|
|
4407
4415
|
/// @name k-flex-shrink-0
|
|
4408
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
4416
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
4409
4417
|
/// @group flex-layout
|
|
4410
4418
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
4411
4419
|
/// @name k-flex-basis-auto
|
|
@@ -9551,6 +9559,72 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
9551
9559
|
// #endregion
|
|
9552
9560
|
|
|
9553
9561
|
|
|
9562
|
+
// #endregion
|
|
9563
|
+
// #region @import "virtual-scroller/_index.scss"; -> packages/material/scss/virtual-scroller/_index.scss
|
|
9564
|
+
// #region @import "../core/_index.scss"; -> packages/material/scss/core/_index.scss
|
|
9565
|
+
// File already imported_once. Skipping output.
|
|
9566
|
+
// #endregion
|
|
9567
|
+
|
|
9568
|
+
|
|
9569
|
+
// Dependencies
|
|
9570
|
+
|
|
9571
|
+
|
|
9572
|
+
// Component
|
|
9573
|
+
// #region @import "_variables.scss"; -> packages/material/scss/virtual-scroller/_variables.scss
|
|
9574
|
+
// Virtual-scroller
|
|
9575
|
+
|
|
9576
|
+
// #endregion
|
|
9577
|
+
// #region @import "_layout.scss"; -> packages/material/scss/virtual-scroller/_layout.scss
|
|
9578
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss
|
|
9579
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
9580
|
+
|
|
9581
|
+
// Virtual scroller
|
|
9582
|
+
.k-virtual-scroller {
|
|
9583
|
+
width: 100%;
|
|
9584
|
+
height: 100%;
|
|
9585
|
+
flex: 1 1 auto;
|
|
9586
|
+
overflow: auto;
|
|
9587
|
+
position: relative;
|
|
9588
|
+
}
|
|
9589
|
+
|
|
9590
|
+
|
|
9591
|
+
// Virtual scroller wrap
|
|
9592
|
+
.k-virtual-scroller-wrap {
|
|
9593
|
+
position: relative;
|
|
9594
|
+
z-index: 1;
|
|
9595
|
+
}
|
|
9596
|
+
|
|
9597
|
+
|
|
9598
|
+
// Virtual scroller content
|
|
9599
|
+
.k-virtual-scroller-content {
|
|
9600
|
+
position: absolute;
|
|
9601
|
+
width: 100%;
|
|
9602
|
+
top: 0;
|
|
9603
|
+
inset-inline-start: 0;
|
|
9604
|
+
}
|
|
9605
|
+
|
|
9606
|
+
|
|
9607
|
+
// Virtual scroller size
|
|
9608
|
+
.k-virtual-scroller-size {
|
|
9609
|
+
position: relative;
|
|
9610
|
+
z-index: 0;
|
|
9611
|
+
}
|
|
9612
|
+
|
|
9613
|
+
}
|
|
9614
|
+
|
|
9615
|
+
// #endregion
|
|
9616
|
+
|
|
9617
|
+
// #endregion
|
|
9618
|
+
// #region @import "_theme.scss"; -> packages/material/scss/virtual-scroller/_theme.scss
|
|
9619
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss
|
|
9620
|
+
@include exports( "virtual-scroller/theme" ) {
|
|
9621
|
+
|
|
9622
|
+
}
|
|
9623
|
+
|
|
9624
|
+
// #endregion
|
|
9625
|
+
|
|
9626
|
+
// #endregion
|
|
9627
|
+
|
|
9554
9628
|
// #endregion
|
|
9555
9629
|
|
|
9556
9630
|
|
|
@@ -10786,8 +10860,8 @@ $color-preview-no-color-bg: $white !default;
|
|
|
10786
10860
|
$color-preview-no-color-text: $error !default;
|
|
10787
10861
|
$color-preview-no-color-border: null !default;
|
|
10788
10862
|
|
|
10789
|
-
|
|
10790
|
-
$color-preview-
|
|
10863
|
+
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
10864
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
10791
10865
|
|
|
10792
10866
|
// #endregion
|
|
10793
10867
|
// #region @import "_layout.scss"; -> packages/material/scss/color-preview/_layout.scss
|
|
@@ -10820,7 +10894,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
10820
10894
|
}
|
|
10821
10895
|
|
|
10822
10896
|
// No Color
|
|
10823
|
-
.k-no-color::
|
|
10897
|
+
.k-no-color::before {
|
|
10824
10898
|
content: "";
|
|
10825
10899
|
width: 100%;
|
|
10826
10900
|
height: 100%;
|
|
@@ -10847,7 +10921,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
10847
10921
|
);
|
|
10848
10922
|
|
|
10849
10923
|
&::before {
|
|
10850
|
-
background:
|
|
10924
|
+
background: $color-preview-transparent-color-image;
|
|
10851
10925
|
background-size: contain;
|
|
10852
10926
|
background-position: 0;
|
|
10853
10927
|
}
|
|
@@ -10860,10 +10934,10 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
10860
10934
|
}
|
|
10861
10935
|
|
|
10862
10936
|
// No Color
|
|
10863
|
-
.k-no-color::
|
|
10937
|
+
.k-no-color::before {
|
|
10864
10938
|
background-color: $color-preview-no-color-bg;
|
|
10865
10939
|
background-image: $color-preview-no-color-image;
|
|
10866
|
-
background-size:
|
|
10940
|
+
background-size: 100% 100%;
|
|
10867
10941
|
background-position: 0 0;
|
|
10868
10942
|
}
|
|
10869
10943
|
|
|
@@ -13384,7 +13458,8 @@ $fieldset-legend-border: null !default;
|
|
|
13384
13458
|
border: 0;
|
|
13385
13459
|
|
|
13386
13460
|
> * {
|
|
13387
|
-
&:first-child
|
|
13461
|
+
&:not(.k-hidden):first-child,
|
|
13462
|
+
&.k-hidden + :not(.k-hidden) {
|
|
13388
13463
|
margin-top: 0;
|
|
13389
13464
|
}
|
|
13390
13465
|
}
|
|
@@ -13413,7 +13488,8 @@ $fieldset-legend-border: null !default;
|
|
|
13413
13488
|
|
|
13414
13489
|
> *,
|
|
13415
13490
|
.k-daterangepicker .k-textbox-container {
|
|
13416
|
-
&:first-child
|
|
13491
|
+
&:not(.k-hidden):first-child,
|
|
13492
|
+
&.k-hidden + :not(.k-hidden) {
|
|
13417
13493
|
margin-top: 0;
|
|
13418
13494
|
}
|
|
13419
13495
|
}
|
|
@@ -16378,11 +16454,13 @@ $slider-disabled-opacity: .65 !default;
|
|
|
16378
16454
|
}
|
|
16379
16455
|
|
|
16380
16456
|
.k-button-increase {
|
|
16457
|
+
position: absolute;
|
|
16381
16458
|
right: 0;
|
|
16382
16459
|
top: 0;
|
|
16383
16460
|
}
|
|
16384
16461
|
|
|
16385
16462
|
.k-button-decrease {
|
|
16463
|
+
position: absolute;
|
|
16386
16464
|
left: 0;
|
|
16387
16465
|
top: 0;
|
|
16388
16466
|
}
|
|
@@ -29202,7 +29280,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29202
29280
|
.k-tabstrip-items {
|
|
29203
29281
|
outline: 0;
|
|
29204
29282
|
display: flex;
|
|
29205
|
-
flex-
|
|
29283
|
+
flex-flow: row wrap;
|
|
29206
29284
|
flex: 0 0 auto;
|
|
29207
29285
|
|
|
29208
29286
|
.k-item {
|
|
@@ -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": "4.43.1-dev.
|
|
4
|
+
"version": "4.43.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "17b6139d64d5dab2c8687e0f2e50fda466679766"
|
|
51
51
|
}
|
|
File without changes
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
);
|
|
10
10
|
|
|
11
11
|
&::before {
|
|
12
|
-
background:
|
|
12
|
+
background: $color-preview-transparent-color-image;
|
|
13
13
|
background-size: contain;
|
|
14
14
|
background-position: 0;
|
|
15
15
|
}
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
// No Color
|
|
25
|
-
.k-no-color::
|
|
25
|
+
.k-no-color::before {
|
|
26
26
|
background-color: $color-preview-no-color-bg;
|
|
27
27
|
background-image: $color-preview-no-color-image;
|
|
28
|
-
background-size:
|
|
28
|
+
background-size: 100% 100%;
|
|
29
29
|
background-position: 0 0;
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -10,5 +10,5 @@ $color-preview-no-color-bg: $white !default;
|
|
|
10
10
|
$color-preview-no-color-text: $error !default;
|
|
11
11
|
$color-preview-no-color-border: null !default;
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
$color-preview-
|
|
13
|
+
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
14
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
border: 0;
|
|
84
84
|
|
|
85
85
|
> * {
|
|
86
|
-
&:first-child
|
|
86
|
+
&:not(.k-hidden):first-child,
|
|
87
|
+
&.k-hidden + :not(.k-hidden) {
|
|
87
88
|
margin-top: 0;
|
|
88
89
|
}
|
|
89
90
|
}
|
|
@@ -112,7 +113,8 @@
|
|
|
112
113
|
|
|
113
114
|
> *,
|
|
114
115
|
.k-daterangepicker .k-textbox-container {
|
|
115
|
-
&:first-child
|
|
116
|
+
&:not(.k-hidden):first-child,
|
|
117
|
+
&.k-hidden + :not(.k-hidden) {
|
|
116
118
|
margin-top: 0;
|
|
117
119
|
}
|
|
118
120
|
}
|
|
@@ -8,34 +8,42 @@
|
|
|
8
8
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
9
9
|
/// @group flex-layout
|
|
10
10
|
.k-d-flex { display: flex; }
|
|
11
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
11
12
|
/// @name k-d-inline-flex
|
|
12
13
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
13
14
|
/// @group flex-layout
|
|
14
15
|
.k-d-inline-flex { display: inline-flex; }
|
|
16
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
15
17
|
/// @name k-d-flex-row
|
|
16
18
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
17
19
|
/// @group flex-layout
|
|
18
|
-
.k-d-flex-row {
|
|
20
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
21
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
19
22
|
/// @name k-d-flex-col
|
|
20
23
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
21
24
|
/// @group flex-layout
|
|
22
|
-
.k-d-flex-col {
|
|
25
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
26
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
23
27
|
/// @name k-flex-row
|
|
24
28
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
25
29
|
/// @group flex-layout
|
|
26
30
|
.k-flex-row { flex-direction: row; }
|
|
31
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
27
32
|
/// @name k-flex-row-reverse
|
|
28
33
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
29
34
|
/// @group flex-layout
|
|
30
35
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
36
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
31
37
|
/// @name k-flex-col
|
|
32
38
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
33
39
|
/// @group flex-layout
|
|
34
40
|
.k-flex-col { flex-direction: column; }
|
|
41
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
35
42
|
/// @name k-flex-col-reverse
|
|
36
43
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
37
44
|
/// @group flex-layout
|
|
38
45
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
46
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
39
47
|
|
|
40
48
|
|
|
41
49
|
// Aliases
|
|
@@ -90,7 +98,7 @@
|
|
|
90
98
|
/// @group flex-layout
|
|
91
99
|
.k-flex-shrink { flex-shrink: 1; }
|
|
92
100
|
/// @name k-flex-shrink-0
|
|
93
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
101
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
94
102
|
/// @group flex-layout
|
|
95
103
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
96
104
|
/// @name k-flex-basis-auto
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
2
|
+
|
|
3
|
+
// Virtual scroller
|
|
4
|
+
.k-virtual-scroller {
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
flex: 1 1 auto;
|
|
8
|
+
overflow: auto;
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Virtual scroller wrap
|
|
14
|
+
.k-virtual-scroller-wrap {
|
|
15
|
+
position: relative;
|
|
16
|
+
z-index: 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
// Virtual scroller content
|
|
21
|
+
.k-virtual-scroller-content {
|
|
22
|
+
position: absolute;
|
|
23
|
+
width: 100%;
|
|
24
|
+
top: 0;
|
|
25
|
+
inset-inline-start: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
// Virtual scroller size
|
|
30
|
+
.k-virtual-scroller-size {
|
|
31
|
+
position: relative;
|
|
32
|
+
z-index: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Virtual-scroller
|
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": "4.43.1-dev.
|
|
4
|
+
"version": "4.43.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"postpublish": "rm -rf modules && git checkout scss"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@progress/kendo-theme-default": "^4.43.1-dev.
|
|
54
|
+
"@progress/kendo-theme-default": "^4.43.1-dev.3"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "17b6139d64d5dab2c8687e0f2e50fda466679766"
|
|
57
57
|
}
|
|
@@ -10,5 +10,5 @@ $color-preview-no-color-bg: $white !default;
|
|
|
10
10
|
$color-preview-no-color-text: $error !default;
|
|
11
11
|
$color-preview-no-color-border: null !default;
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
$color-preview-
|
|
13
|
+
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
14
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
package/scss/index.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "../../modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "../../modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Virtual-scroller
|