@progress/kendo-theme-default 7.0.3-dev.2 → 7.1.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.scss CHANGED
@@ -16841,6 +16841,7 @@ $kendo-popup-shadow: k-elevation(4) !default;
16841
16841
  .k-popup.k-popup-transparent {
16842
16842
  border-width: 0;
16843
16843
  background-color: transparent;
16844
+ box-shadow: none;
16844
16845
  }
16845
16846
 
16846
16847
  // Flush popup
@@ -19974,15 +19975,27 @@ $_kendo-module-meta: (
19974
19975
  // Component
19975
19976
  // #region @import "./_variables.scss"; -> scss/skeleton/_variables.scss
19976
19977
  // Skeleton
19978
+
19979
+ /// The transform scale of the Skeleton text.
19980
+ /// @group skeleton
19977
19981
  $kendo-skeleton-text-transform: scale( 1, .6 ) !default;
19982
+ /// The border radius of the Skeleton text.
19983
+ /// @group skeleton
19978
19984
  $kendo-skeleton-text-border-radius: $kendo-border-radius-md !default;
19979
19985
 
19986
+ /// The border radius of the rectangular Skeleton.
19987
+ /// @group skeleton
19980
19988
  $kendo-skeleton-rect-border-radius: 0 !default;
19981
19989
 
19990
+ /// The border radius of the circular Skeleton.
19991
+ /// @group skeleton
19982
19992
  $kendo-skeleton-circle-border-radius: 9999px !default;
19983
19993
 
19994
+ /// The background color of the Skeleton item.
19995
+ /// @group skeleton
19984
19996
  $kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
19985
-
19997
+ /// The background color of the Skeleton wave animation.
19998
+ /// @group skeleton
19986
19999
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
19987
20000
 
19988
20001
  // #endregion
@@ -22690,43 +22703,75 @@ $kendo-picker-flat-hover-focus-border: null !default;
22690
22703
  // #endregion
22691
22704
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
22692
22705
  // Tooltip
22706
+
22707
+ /// The vertical padding of the Tooltip.
22708
+ /// @group tooltip
22693
22709
  $kendo-tooltip-padding-y: $kendo-padding-md-y !default;
22710
+ /// The horizontal padding of the Tooltip.
22711
+ /// @group tooltip
22694
22712
  $kendo-tooltip-padding-x: $kendo-padding-md-x !default;
22695
- $kendo-tooltip-max-width: null !default;
22713
+ /// The width of the border around the Tooltip.
22714
+ /// @group tooltip
22696
22715
  $kendo-tooltip-border-width: 0px !default;
22716
+ /// The border radius of the Tooltip.
22717
+ /// @group tooltip
22697
22718
  $kendo-tooltip-border-radius: $kendo-border-radius-md !default;
22698
22719
 
22720
+ /// The font family of the Tooltip.
22721
+ /// @group tooltip
22699
22722
  $kendo-tooltip-font-family: $kendo-font-family !default;
22723
+ /// The font size of the Tooltip.
22724
+ /// @group tooltip
22700
22725
  $kendo-tooltip-font-size: $kendo-font-size-md !default;
22726
+ /// The line height of the Tooltip.
22727
+ /// @group tooltip
22701
22728
  $kendo-tooltip-line-height: 1.25 !default;
22702
22729
 
22730
+ /// The font size of the Tooltip title.
22731
+ /// @group tooltip
22703
22732
  $kendo-tooltip-title-font-size: ($kendo-tooltip-font-size * 1.25) !default;
22733
+ /// The line height of the Tooltip title.
22734
+ /// @group tooltip
22704
22735
  $kendo-tooltip-title-line-height: 1 !default;
22705
22736
 
22737
+ /// The size of the Tooltip callout.
22738
+ /// @group tooltip
22706
22739
  $kendo-tooltip-callout-size: 6px !default;
22707
22740
 
22741
+ /// The default background of the Tooltip.
22742
+ /// @group tooltip
22708
22743
  $kendo-tooltip-bg: rgba( k-contrast-legacy( $kendo-body-bg ), .75 ) !default;
22744
+ /// The default text color of the Tooltip.
22745
+ /// @group tooltip
22709
22746
  $kendo-tooltip-text: k-contrast-legacy( $kendo-tooltip-bg ) !default;
22747
+ /// The default border color of the Tooltip.
22748
+ /// @group tooltip
22710
22749
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
22711
22750
 
22751
+ /// The box-shadow of the Tooltip.
22752
+ /// @group tooltip
22712
22753
  $kendo-tooltip-shadow: k-elevation(2) !default;
22713
22754
 
22714
- $kendo-tooltip-primary-bg: $kendo-color-primary !default;
22715
- $kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
22716
- $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
22717
- $kendo-tooltip-info-bg: $kendo-color-info !default;
22718
- $kendo-tooltip-info-text: k-contrast-legacy( $kendo-tooltip-info-bg ) !default;
22719
- $kendo-tooltip-info-border: $kendo-tooltip-info-bg !default;
22720
- $kendo-tooltip-success-bg: $kendo-color-success !default;
22721
- $kendo-tooltip-success-text: k-contrast-legacy( $kendo-tooltip-success-bg ) !default;
22722
- $kendo-tooltip-success-border: $kendo-tooltip-success-bg !default;
22723
- $kendo-tooltip-warning-bg: $kendo-color-warning !default;
22724
- $kendo-tooltip-warning-text: k-contrast-legacy( $kendo-tooltip-warning-bg ) !default;
22725
- $kendo-tooltip-warning-border: $kendo-tooltip-warning-bg !default;
22726
- $kendo-tooltip-error-bg: $kendo-color-error !default;
22727
- $kendo-tooltip-error-text: k-contrast-legacy( $kendo-tooltip-error-bg ) !default;
22728
- $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
22755
+ @function tooltip-theme( $colors ) {
22756
+ $_theme: ();
22757
+
22758
+ @each $name, $color in $colors {
22759
+ $_theme: k-map-merge(( $name: (
22760
+ color: k-contrast-legacy( $color ),
22761
+ background-color: $color,
22762
+ border: $color,
22763
+ )), $_theme );
22764
+ }
22765
+
22766
+ @return $_theme;
22767
+ }
22729
22768
 
22769
+ /// The theme colors map for the Tooltip.
22770
+ /// @group tooltip
22771
+ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
22772
+ /// The generated theme colors map for the Tooltip.
22773
+ /// @group tooltip
22774
+ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
22730
22775
  // #endregion
22731
22776
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
22732
22777
  // File already imported_once. Skipping output.
@@ -23548,7 +23593,6 @@ $_kendo-module-meta: (
23548
23593
  margin: 0;
23549
23594
  padding-block: $kendo-tooltip-padding-y;
23550
23595
  padding-inline: $kendo-tooltip-padding-x;
23551
- // max-width: $kendo-tooltip-max-width;
23552
23596
  border-width: $kendo-tooltip-border-width;
23553
23597
  border-style: solid;
23554
23598
  box-sizing: border-box;
@@ -23663,14 +23707,6 @@ $_kendo-module-meta: (
23663
23707
  // #endregion
23664
23708
  // #region @import "./_theme.scss"; -> scss/tooltip/_theme.scss
23665
23709
  @mixin kendo-tooltip--theme-base() {
23666
-
23667
- .k-tooltip-wrapper {
23668
- .k-tooltip {
23669
- box-shadow: $kendo-tooltip-shadow;
23670
- }
23671
- }
23672
-
23673
-
23674
23710
  // Default tooltip
23675
23711
  .k-tooltip {
23676
23712
  @include fill(
@@ -23678,67 +23714,26 @@ $_kendo-module-meta: (
23678
23714
  $kendo-tooltip-bg,
23679
23715
  $kendo-tooltip-border
23680
23716
  );
23717
+
23718
+ @include box-shadow( $kendo-tooltip-shadow );
23681
23719
 
23682
23720
  .k-callout {
23683
23721
  color: $kendo-tooltip-bg;
23684
23722
  }
23685
23723
  }
23686
23724
 
23687
-
23688
23725
  // Tooltip variants
23689
- .k-tooltip-primary {
23690
- @include fill(
23691
- $kendo-tooltip-primary-text,
23692
- $kendo-tooltip-primary-bg,
23693
- $kendo-tooltip-primary-border
23694
- );
23695
-
23696
- .k-callout {
23697
- color: $kendo-tooltip-primary-bg;
23698
- }
23699
- }
23700
- .k-tooltip-info {
23701
- @include fill(
23702
- $kendo-tooltip-info-text,
23703
- $kendo-tooltip-info-bg,
23704
- $kendo-tooltip-info-border
23705
- );
23706
-
23707
- .k-callout {
23708
- color: $kendo-tooltip-info-bg;
23709
- }
23710
- }
23711
- .k-tooltip-success {
23712
- @include fill(
23713
- $kendo-tooltip-success-text,
23714
- $kendo-tooltip-success-bg,
23715
- $kendo-tooltip-success-border
23716
- );
23717
-
23718
- .k-callout {
23719
- color: $kendo-tooltip-success-bg;
23720
- }
23721
- }
23722
- .k-tooltip-warning {
23723
- @include fill(
23724
- $kendo-tooltip-warning-text,
23725
- $kendo-tooltip-warning-bg,
23726
- $kendo-tooltip-warning-border
23727
- );
23728
-
23729
- .k-callout {
23730
- color: $kendo-tooltip-warning-bg;
23731
- }
23732
- }
23733
- .k-tooltip-error {
23734
- @include fill(
23735
- $kendo-tooltip-error-text,
23736
- $kendo-tooltip-error-bg,
23737
- $kendo-tooltip-error-border
23738
- );
23739
-
23740
- .k-callout {
23741
- color: $kendo-tooltip-error-bg;
23726
+ @each $name, $props in $kendo-tooltip-theme {
23727
+ .k-tooltip-#{$name} {
23728
+ @include fill(
23729
+ k-map-get( $props, color ),
23730
+ k-map-get( $props, background-color ),
23731
+ k-map-get( $props, border )
23732
+ );
23733
+
23734
+ .k-callout {
23735
+ color: k-map-get( $props, background-color );
23736
+ }
23742
23737
  }
23743
23738
  }
23744
23739
 
@@ -26926,19 +26921,6 @@ $kendo-slider-disabled-opacity: null !default;
26926
26921
  }
26927
26922
  }
26928
26923
 
26929
-
26930
- // Slider wrap
26931
- .k-slider-wrap {
26932
- width: 100%;
26933
- height: 100%;
26934
- display: flex;
26935
- flex-flow: inherit;
26936
- align-items: inherit;
26937
- gap: inherit;
26938
- position: relative;
26939
- }
26940
-
26941
-
26942
26924
  // New rendering
26943
26925
  .k-slider {
26944
26926
  width: min-content;
@@ -27270,15 +27252,7 @@ $kendo-slider-disabled-opacity: null !default;
27270
27252
  .k-slider kendo-resize-sensor {
27271
27253
  position: absolute;
27272
27254
  }
27273
- .k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
27274
- padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
27275
- padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
27276
- }
27277
- .k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
27278
- padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
27279
- padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
27280
- }
27281
-
27255
+
27282
27256
  // Aliases
27283
27257
  .k-draghandle { @extend .k-slider-thumb !optional; }
27284
27258
  .k-draghandle-start { @extend .k-slider-thumb-start !optional; }
@@ -28977,23 +28951,51 @@ $_kendo-module-meta: (
28977
28951
  // Component
28978
28952
  // #region @import "./_variables.scss"; -> scss/captcha/_variables.scss
28979
28953
  // Captcha
28954
+
28955
+ /// The spacer of the Captcha.
28956
+ /// @group captcha
28980
28957
  $kendo-captcha-spacer: k-map-get( $kendo-spacing, 2 ) !default;
28981
28958
 
28959
+ /// The width of the Captcha.
28960
+ /// @group captcha
28982
28961
  $kendo-captcha-width: 280px !default;
28962
+ /// The font family of the Captcha.
28963
+ /// @group captcha
28983
28964
  $kendo-captcha-font-family: $kendo-font-family !default;
28965
+ /// The font size of the Captcha.
28966
+ /// @group captcha
28984
28967
  $kendo-captcha-font-size: $kendo-font-size-md !default;
28968
+ /// The line height of the Captcha.
28969
+ /// @group captcha
28985
28970
  $kendo-captcha-line-height: $kendo-line-height-md !default;
28971
+ /// The gap of the Captcha.
28972
+ /// @group captcha
28986
28973
  $kendo-captcha-gap: $kendo-captcha-spacer !default;
28974
+ /// The background color of the Captcha.
28975
+ /// @group captcha
28987
28976
  $kendo-captcha-bg: $kendo-component-bg !default;
28977
+ /// The text color of the Captcha.
28978
+ /// @group captcha
28988
28979
  $kendo-captcha-text: $kendo-component-bg !default;
28980
+ /// The border color of the Captcha.
28981
+ /// @group captcha
28989
28982
  $kendo-captcha-border: $kendo-component-bg !default;
28990
28983
 
28984
+ /// The gap of the Captcha image wrapper.
28985
+ /// @group captcha
28991
28986
  $kendo-captcha-image-wrap-gap: $kendo-captcha-spacer !default;
28992
-
28987
+ /// The gap of the Captcha image controls.
28988
+ /// @group captcha
28993
28989
  $kendo-captcha-image-controls-gap: $kendo-captcha-spacer !default;
28994
28990
 
28991
+ /// The top margin of the Captcha validation message.
28992
+ /// @group captcha
28995
28993
  $kendo-captcha-validation-message-margin-top: k-math-div( $kendo-captcha-spacer, 2 ) !default;
28994
+ /// The font size of the Captcha validation message.
28995
+ /// @group captcha
28996
28996
  $kendo-captcha-validation-message-font-size: $kendo-font-size-sm !default;
28997
+ /// The font style of the Captcha validation message.
28998
+ /// @group captcha
28997
28999
  $kendo-captcha-validation-message-font-style: italic !default;
28998
29000
 
28999
29001
  // #endregion
@@ -29674,7 +29676,6 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
29674
29676
  z-index: -1;
29675
29677
  }
29676
29678
 
29677
- .k-slider-wrap,
29678
29679
  .k-slider-track-wrap {
29679
29680
  z-index: 1;
29680
29681
  }
@@ -32108,27 +32109,59 @@ $_kendo-module-meta: (
32108
32109
  // #region @import "./_variables.scss"; -> scss/rating/_variables.scss
32109
32110
  // Rating
32110
32111
 
32112
+ /// The font family of the Rating.
32113
+ /// @group rating
32111
32114
  $kendo-rating-font-family: $kendo-font-family !default;
32115
+ /// The font size of the Rating.
32116
+ /// @group rating
32112
32117
  $kendo-rating-font-size: $kendo-font-size-md !default;
32118
+ /// The line height of the Rating.
32119
+ /// @group rating
32113
32120
  $kendo-rating-line-height: $kendo-line-height-md !default;
32114
32121
 
32122
+ /// The horizontal margin of the Rating container.
32123
+ /// @group rating
32115
32124
  $kendo-rating-container-margin-x: $kendo-padding-sm-x !default;
32116
32125
 
32126
+ /// The horizontal padding of the Rating item.
32127
+ /// @group rating
32117
32128
  $kendo-rating-item-padding-x: $kendo-padding-sm-x !default;
32129
+ /// The vertical padding of the Rating item.
32130
+ /// @group rating
32118
32131
  $kendo-rating-item-padding-y: $kendo-padding-md-y !default;
32119
32132
 
32133
+ /// The horizontal margin of the Rating label.
32134
+ /// @group rating
32120
32135
  $kendo-rating-label-margin-x: $kendo-padding-md-x !default;
32136
+ /// The vertical margin of the Rating label.
32137
+ /// @group rating
32121
32138
  $kendo-rating-label-margin-y: $kendo-padding-md-y !default;
32139
+ /// The line height of the Rating label.
32140
+ /// @group rating
32122
32141
  $kendo-rating-label-line-height: $kendo-line-height-lg !default;
32123
32142
 
32143
+ /// The size of the Rating icon.
32144
+ /// @group rating
32124
32145
  $kendo-rating-icon-size: ($kendo-icon-size * 1.5) !default;
32125
32146
 
32147
+ /// The text color of the Rating icon.
32148
+ /// @group rating
32126
32149
  $kendo-rating-icon-text: $kendo-component-text !default;
32150
+ /// The text color of the selected Rating icon.
32151
+ /// @group rating
32127
32152
  $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
32153
+ /// The text color of the hovered Rating icon.
32154
+ /// @group rating
32128
32155
  $kendo-rating-icon-hover-text: $kendo-selected-bg !default;
32156
+ /// The text color of the focused Rating icon.
32157
+ /// @group rating
32129
32158
  $kendo-rating-icon-focus-text: $kendo-selected-bg !default;
32130
32159
 
32160
+ /// The shadow of the focused Rating icon.
32161
+ /// @group rating
32131
32162
  $kendo-rating-icon-focus-shadow: k-elevation(1) !default;
32163
+ /// The shadow of the focused and selected Rating icon.
32164
+ /// @group rating
32132
32165
  $kendo-rating-icon-focus-selected-shadow: k-elevation(1) !default;
32133
32166
 
32134
32167
  // #endregion
@@ -33022,31 +33055,69 @@ $_kendo-module-meta: (
33022
33055
 
33023
33056
  // Component
33024
33057
  // #region @import "./_variables.scss"; -> scss/dropzone/_variables.scss
33025
- // Dropzone
33058
+ // DropZone
33026
33059
 
33060
+ /// The horizontal padding of the DropZone.
33061
+ /// @group dropzone
33027
33062
  $kendo-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
33063
+ /// The vertical padding of the DropZone.
33064
+ /// @group dropzone
33028
33065
  $kendo-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
33066
+ /// The border width of the DropZone.
33067
+ /// @group dropzone
33029
33068
  $kendo-dropzone-border-width: 1px !default;
33069
+ /// The minimum height of the DropZone.
33070
+ /// @group dropzone
33030
33071
  $kendo-dropzone-min-height: 220px !default;
33031
33072
 
33073
+ /// The font family of the DropZone.
33074
+ /// @group dropzone
33032
33075
  $kendo-dropzone-font-family: $kendo-font-family !default;
33076
+ /// The font size of the DropZone.
33077
+ /// @group dropzone
33033
33078
  $kendo-dropzone-font-size: $kendo-font-size-md !default;
33079
+ /// The line height of the DropZone.
33080
+ /// @group dropzone
33034
33081
  $kendo-dropzone-line-height: $kendo-line-height-md !default;
33035
33082
 
33083
+ /// The background color of the DropZone.
33084
+ /// @group dropzone
33036
33085
  $kendo-dropzone-bg: $kendo-base-bg !default;
33086
+ /// The text color of the DropZone.
33087
+ /// @group dropzone
33037
33088
  $kendo-dropzone-text: $kendo-base-text !default;
33089
+ /// The border color of the DropZone.
33090
+ /// @group dropzone
33038
33091
  $kendo-dropzone-border: $kendo-base-border !default;
33039
33092
 
33093
+ /// The spacing below the DropZone icon.
33094
+ /// @group dropzone
33040
33095
  $kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
33096
+ /// The text color of the DropZone icon.
33097
+ /// @group dropzone
33041
33098
  $kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
33099
+ /// The text color of the hovered DropZone icon.
33100
+ /// @group dropzone
33042
33101
  $kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
33043
33102
 
33103
+ /// The font size of the DropZone hint.
33104
+ /// @group dropzone
33044
33105
  $kendo-dropzone-hint-font-size: null !default;
33106
+ /// The spacing below the DropZone hint.
33107
+ /// @group dropzone
33045
33108
  $kendo-dropzone-hint-spacing: k-map-get( $kendo-spacing, 2 ) !default;
33109
+ /// The text color of the DropZone hint.
33110
+ /// @group dropzone
33046
33111
  $kendo-dropzone-hint-text: null !default;
33047
33112
 
33113
+ /// The font size of the DropZone note.
33114
+ /// @group dropzone
33048
33115
  $kendo-dropzone-note-font-size: $kendo-font-size-sm !default;
33116
+ /// The spacing below the DropZone note.
33117
+ /// @group dropzone
33049
33118
  $kendo-dropzone-note-spacing: null !default;
33119
+ /// The text color of the DropZone note.
33120
+ /// @group dropzone
33050
33121
  $kendo-dropzone-note-text: $kendo-subtle-text !default;
33051
33122
 
33052
33123
  // #endregion
@@ -36481,6 +36552,15 @@ $kendo-card-callout-height: 20px !default;
36481
36552
  *::after {
36482
36553
  box-sizing: border-box;
36483
36554
  }
36555
+
36556
+ // Card avatar
36557
+ .k-card-avatar,
36558
+ .k-avatar {
36559
+ margin-right: $kendo-card-avatar-spacing;
36560
+ width: $kendo-card-avatar-size;
36561
+ height: $kendo-card-avatar-size;
36562
+ flex-basis: $kendo-card-avatar-size;
36563
+ }
36484
36564
  }
36485
36565
  .k-card > .k-card-inner {
36486
36566
  @include border-radius( $kendo-card-inner-border-radius );
@@ -36490,11 +36570,9 @@ $kendo-card-callout-height: 20px !default;
36490
36570
  position: relative;
36491
36571
  }
36492
36572
 
36493
-
36494
36573
  // Card orientation
36495
- .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
36496
- .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
36497
-
36574
+ .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
36575
+ .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
36498
36576
 
36499
36577
  // Header
36500
36578
  .k-card-header {
@@ -36551,30 +36629,13 @@ $kendo-card-callout-height: 20px !default;
36551
36629
  }
36552
36630
  }
36553
36631
 
36554
-
36555
- // Card avatar
36556
- .k-card-avatar,
36557
- .k-card .k-avatar {
36558
- margin-right: $kendo-card-avatar-spacing;
36559
- width: $kendo-card-avatar-size;
36560
- height: $kendo-card-avatar-size;
36561
- flex-basis: $kendo-card-avatar-size;
36562
- }
36563
-
36564
-
36565
- // Card image
36566
- .k-card-image,
36632
+ // Card media
36567
36633
  .k-card-media {
36568
36634
  border: 0;
36569
36635
  max-width: 100%;
36570
36636
  flex-shrink: 0;
36571
36637
  overflow: hidden;
36572
36638
 
36573
- > img {
36574
- border: 0;
36575
- max-width: 100%;
36576
- }
36577
-
36578
36639
  .k-card-horizontal & {
36579
36640
  max-width: $kendo-card-img-max-width;
36580
36641
  object-fit: cover;
@@ -36618,22 +36679,23 @@ $kendo-card-callout-height: 20px !default;
36618
36679
  flex: 0 0 auto;
36619
36680
  align-self: stretch;
36620
36681
  }
36621
- .k-card-separator.k-separator-vertical,
36622
- .k-card-horizontal > .k-card-separator {
36623
- border-left-width: 1px;
36624
- }
36682
+
36625
36683
  .k-card-separator.k-separator-horizontal,
36626
36684
  .k-card-vertical > .k-card-separator {
36627
36685
  border-top-width: 1px;
36628
36686
  }
36629
36687
 
36688
+ .k-card-separator.k-separator-vertical,
36689
+ .k-card-horizontal > .k-card-separator {
36690
+ border-left-width: 1px;
36691
+ }
36692
+
36630
36693
  .k-card > .k-hr {
36631
36694
  margin: 0;
36632
36695
  flex: 0 0 auto;
36633
36696
  border-color: inherit;
36634
36697
  }
36635
36698
 
36636
-
36637
36699
  // Card actions
36638
36700
  .k-card-actions {
36639
36701
  padding-block: $kendo-card-actions-padding-y;
@@ -36648,33 +36710,6 @@ $kendo-card-callout-height: 20px !default;
36648
36710
  gap: $kendo-card-actions-gap;
36649
36711
  }
36650
36712
 
36651
-
36652
- // Actions align
36653
- .k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
36654
- .k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
36655
- .k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
36656
-
36657
-
36658
- // Actions orientation
36659
- .k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
36660
- .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
36661
-
36662
-
36663
- // Stretched actions
36664
- .k-card-actions-stretched > * {
36665
- flex: 1 1 auto;
36666
- }
36667
-
36668
-
36669
- // Card action
36670
- .k-card-action {
36671
- border-width: 0;
36672
- border-style: solid;
36673
- border-color: inherit;
36674
- display: inline-flex;
36675
- }
36676
-
36677
-
36678
36713
  // List
36679
36714
  .k-card-list {
36680
36715
  display: flex;
@@ -36766,9 +36801,6 @@ $kendo-card-callout-height: 20px !default;
36766
36801
  }
36767
36802
  }
36768
36803
 
36769
-
36770
-
36771
-
36772
36804
  // Card with callout
36773
36805
  .k-card-with-callout {
36774
36806
  overflow: visible;
@@ -41648,18 +41680,6 @@ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
41648
41680
  height: 0;
41649
41681
  border-width: $kendo-dock-manager-border-width 0 0;
41650
41682
  }
41651
-
41652
- // Needed because of a bug in Chrome - Issue 1473554
41653
- // A fix will be shipped likely in milestone 118 and then we can revisit this
41654
- @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
41655
- .k-toolbar-button {
41656
- padding-block: $kendo-button-padding-x;
41657
- padding-inline: $kendo-button-padding-y;
41658
- }
41659
- .k-toolbar-button .k-button-text {
41660
- writing-mode: vertical-lr;
41661
- }
41662
- }
41663
41683
  }
41664
41684
 
41665
41685
  // Panes
@@ -43947,6 +43967,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
43947
43967
  $_selection-aggregates-padding-x: k-map-get( $size-props, selection-aggregates-padding-x );
43948
43968
  $_selection-aggregates-padding-y: k-map-get( $size-props, selection-aggregates-padding-y );
43949
43969
 
43970
+ .k-grid .k-grid-#{$size},
43950
43971
  .k-grid-#{$size} {
43951
43972
 
43952
43973
  .k-table-th {
@@ -48182,72 +48203,187 @@ $_kendo-module-meta: (
48182
48203
 
48183
48204
  // Component
48184
48205
  // #region @import "./_variables.scss"; -> scss/filemanager/_variables.scss
48185
- // File manager
48206
+ // FileManager
48207
+
48208
+ /// The space between the FileManager items.
48209
+ /// @group filemanager
48186
48210
  $kendo-file-manager-spacer: k-map-get( $kendo-spacing, 4 ) !default;
48211
+ /// The border width of the FileManager.
48212
+ /// @group filemanager
48187
48213
  $kendo-file-manager-border-width: 1px !default;
48214
+ /// The font family of the FileManager.
48215
+ /// @group filemanager
48188
48216
  $kendo-file-manager-font-family: $kendo-font-family !default;
48217
+ /// The font size of the FileManager.
48218
+ /// @group filemanager
48189
48219
  $kendo-file-manager-font-size: $kendo-font-size-md !default;
48220
+ /// The line height of the FileManager.
48221
+ /// @group filemanager
48190
48222
  $kendo-file-manager-line-height: $kendo-line-height-md !default;
48223
+ /// The background color of the FileManager.
48224
+ /// @group filemanager
48191
48225
  $kendo-file-manager-bg: $kendo-component-bg !default;
48226
+ /// The text color of the FileManager.
48227
+ /// @group filemanager
48192
48228
  $kendo-file-manager-text: $kendo-component-text !default;
48229
+ /// The border color of the FileManager.
48230
+ /// @group filemanager
48193
48231
  $kendo-file-manager-border: $kendo-component-border !default;
48194
48232
 
48233
+ /// The border width of the FileManager Toolbar.
48234
+ /// @group filemanager
48195
48235
  $kendo-file-manager-toolbar-border-width: $kendo-file-manager-border-width !default;
48236
+ /// The background color of the FileManager Toolbar.
48237
+ /// @group filemanager
48196
48238
  $kendo-file-manager-toolbar-bg: null !default;
48239
+ /// The text color of the FileManager Toolbar.
48240
+ /// @group filemanager
48197
48241
  $kendo-file-manager-toolbar-text: null !default;
48242
+ /// The border color of the FileManager Toolbar.
48243
+ /// @group filemanager
48198
48244
  $kendo-file-manager-toolbar-border: null !default;
48245
+ /// The gradient of the FileManager Toolbar.
48246
+ /// @group filemanager
48199
48247
  $kendo-file-manager-toolbar-gradient: null !default;
48200
48248
 
48249
+ /// The horizontal padding of the FileManager Navigation.
48250
+ /// @group filemanager
48201
48251
  $kendo-file-manager-navigation-padding-x: $kendo-file-manager-spacer !default;
48252
+ /// The vertical padding of the FileManager Navigation.
48253
+ /// @group filemanager
48202
48254
  $kendo-file-manager-navigation-padding-y: $kendo-file-manager-spacer !default;
48255
+ /// The width of the FileManager Navigation.
48256
+ /// @group filemanager
48203
48257
  $kendo-file-manager-navigation-width: 20% !default;
48258
+ /// The border width of the FileManager Navigation.
48259
+ /// @group filemanager
48204
48260
  $kendo-file-manager-navigation-border-width: $kendo-file-manager-border-width !default;
48261
+ /// The background color of the FileManager Navigation.
48262
+ /// @group filemanager
48205
48263
  $kendo-file-manager-navigation-bg: null !default;
48264
+ /// The text color of the FileManager Navigation.
48265
+ /// @group filemanager
48206
48266
  $kendo-file-manager-navigation-text: null !default;
48267
+ /// The border color of the FileManager Navigation.
48268
+ /// @group filemanager
48207
48269
  $kendo-file-manager-navigation-border: null !default;
48208
48270
 
48271
+ /// The horizontal padding of the FileManager Breadcrumb.
48272
+ /// @group filemanager
48209
48273
  $kendo-file-manager-breadcrumb-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
48274
+ /// The vertical padding of the FileManager Breadcrumb.
48275
+ /// @group filemanager
48210
48276
  $kendo-file-manager-breadcrumb-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
48277
+ /// The border width of the FileManager Breadcrumb.
48278
+ /// @group filemanager
48211
48279
  $kendo-file-manager-breadcrumb-border-width: $kendo-file-manager-border-width !default;
48280
+ /// The background color of the FileManager Breadcrumb.
48281
+ /// @group filemanager
48212
48282
  $kendo-file-manager-breadcrumb-bg: $kendo-toolbar-bg !default;
48283
+ /// The text color of the FileManager Breadcrumb.
48284
+ /// @group filemanager
48213
48285
  $kendo-file-manager-breadcrumb-text: null !default;
48286
+ /// The border color of the FileManager Breadcrumb.
48287
+ /// @group filemanager
48214
48288
  $kendo-file-manager-breadcrumb-border: null !default;
48215
48289
 
48290
+ /// The background color of the FileManager ListView.
48291
+ /// @group filemanager
48216
48292
  $kendo-file-manager-listview-bg: null !default;
48293
+ /// The text color of the FileManager ListView.
48294
+ /// @group filemanager
48217
48295
  $kendo-file-manager-listview-text: null !default;
48296
+ /// The border color of the FileManager ListView.
48297
+ /// @group filemanager
48218
48298
  $kendo-file-manager-listview-border: null !default;
48219
48299
 
48300
+ /// The horizontal padding of the FileManager ListView item.
48301
+ /// @group filemanager
48220
48302
  $kendo-file-manager-listview-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
48303
+ /// The vertical padding of the FileManager ListView item.
48304
+ /// @group filemanager
48221
48305
  $kendo-file-manager-listview-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
48306
+ /// The width of the FileManager ListView item.
48307
+ /// @group filemanager
48222
48308
  $kendo-file-manager-listview-item-width: 120px !default;
48309
+ /// The height of the FileManager ListView item.
48310
+ /// @group filemanager
48223
48311
  $kendo-file-manager-listview-item-height: 120px !default;
48312
+ /// The background color of the FileManager ListView item.
48313
+ /// @group filemanager
48224
48314
  $kendo-file-manager-listview-item-bg: null !default;
48315
+ /// The text color of the FileManager ListView item.
48316
+ /// @group filemanager
48225
48317
  $kendo-file-manager-listview-item-text: null !default;
48318
+ /// The border color of the FileManager ListView item.
48319
+ /// @group filemanager
48226
48320
  $kendo-file-manager-listview-item-border: null !default;
48227
48321
 
48322
+ /// The background color of the FileManager ListView item icon.
48323
+ /// @group filemanager
48228
48324
  $kendo-file-manager-listview-item-icon-bg: null !default;
48325
+ /// The text color of the FileManager ListView item icon.
48326
+ /// @group filemanager
48229
48327
  $kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
48328
+ /// The border color of the FileManager ListView item icon.
48329
+ /// @group filemanager
48230
48330
  $kendo-file-manager-listview-item-icon-border: null !default;
48331
+ /// Background color of the FileManager selected ListView item icon.
48332
+ /// @group filemanager
48231
48333
  $kendo-file-manager-listview-item-icon-selected-bg: null !default;
48334
+ /// Text color of the FileManager selected ListView item icon.
48335
+ /// @group filemanager
48232
48336
  $kendo-file-manager-listview-item-icon-selected-text: inherit !default;
48337
+ /// Border color of the FileManager selected ListView item icon.
48338
+ /// @group filemanager
48233
48339
  $kendo-file-manager-listview-item-icon-selected-border: null !default;
48234
48340
 
48341
+ /// The background color of the FileManager Grid.
48342
+ /// @group filemanager
48235
48343
  $kendo-file-manager-grid-bg: null !default;
48344
+ /// The text color of the FileManager Grid.
48345
+ /// @group filemanager
48236
48346
  $kendo-file-manager-grid-text: null !default;
48347
+ /// The border color of the FileManager Grid.
48348
+ /// @group filemanager
48237
48349
  $kendo-file-manager-grid-border: null !default;
48238
48350
 
48351
+ /// The horizontal padding of the FileManager preview.
48352
+ /// @group filemanager
48239
48353
  $kendo-file-manager-preview-padding-x: $kendo-file-manager-spacer !default;
48354
+ /// The vertical padding of the FileManager preview.
48355
+ /// @group filemanager
48240
48356
  $kendo-file-manager-preview-padding-y: $kendo-file-manager-spacer !default;
48357
+ /// The width of the FileManager preview.
48358
+ /// @group filemanager
48241
48359
  $kendo-file-manager-preview-width: 20% !default;
48360
+ /// The border width of the FileManager preview.
48361
+ /// @group filemanager
48242
48362
  $kendo-file-manager-preview-border-width: $kendo-file-manager-border-width !default;
48363
+ /// The spacing of the FileManager preview.
48364
+ /// @group filemanager
48243
48365
  $kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
48366
+ /// The gap between the columns in the FileManager preview.
48367
+ /// @group filemanager
48244
48368
  $kendo-file-manager-preview-column-gap: k-map-get( $kendo-spacing, 1 ) !default;
48369
+ /// The background color of the FileManager preview.
48370
+ /// @group filemanager
48245
48371
  $kendo-file-manager-preview-bg: null !default;
48372
+ /// The text color of the FileManager preview.
48373
+ /// @group filemanager
48246
48374
  $kendo-file-manager-preview-text: null !default;
48375
+ /// The border color of the FileManager preview.
48376
+ /// @group filemanager
48247
48377
  $kendo-file-manager-preview-border: null !default;
48248
48378
 
48379
+ /// The background color of the FileManager preview icon.
48380
+ /// @group filemanager
48249
48381
  $kendo-file-manager-preview-icon-bg: null !default;
48382
+ /// The text color of the FileManager preview icon.
48383
+ /// @group filemanager
48250
48384
  $kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
48385
+ /// The border color of the FileManager preview icon.
48386
+ /// @group filemanager
48251
48387
  $kendo-file-manager-preview-icon-border: null !default;
48252
48388
 
48253
48389
  // #endregion
@@ -54817,49 +54953,115 @@ $_kendo-module-meta: (
54817
54953
 
54818
54954
  // Component
54819
54955
  // #region @import "./_variables.scss"; -> scss/pdf-viewer/_variables.scss
54820
- // PDF viewer
54956
+ // PDFViewer
54821
54957
 
54958
+ /// The border width of the PDFViewer.
54959
+ /// @group pdf-viewer
54822
54960
  $kendo-pdf-viewer-border-width: 1px !default;
54961
+ /// The font family of the PDFViewer.
54962
+ /// @group pdf-viewer
54823
54963
  $kendo-pdf-viewer-font-family: $kendo-font-family !default;
54964
+ /// The font size of the PDFViewer.
54965
+ /// @group pdf-viewer
54824
54966
  $kendo-pdf-viewer-font-size: $kendo-font-size-md !default;
54967
+ /// The line height of the PDFViewer.
54968
+ /// @group pdf-viewer
54825
54969
  $kendo-pdf-viewer-line-height: $kendo-line-height-md !default;
54826
54970
 
54971
+ /// The background color of the PDFViewer.
54972
+ /// @group pdf-viewer
54827
54973
  $kendo-pdf-viewer-bg: $kendo-component-bg !default;
54974
+ /// The text color of the PDFViewer.
54975
+ /// @group pdf-viewer
54828
54976
  $kendo-pdf-viewer-text: $kendo-component-text !default;
54977
+ /// The border color of the PDFViewer.
54978
+ /// @group pdf-viewer
54829
54979
  $kendo-pdf-viewer-border: $kendo-component-border !default;
54830
54980
 
54981
+ /// The background color of the PDFViewer Toolbar.
54982
+ /// @group pdf-viewer
54831
54983
  $kendo-pdf-viewer-toolbar-bg: null !default;
54984
+ /// The text color of the PDFViewer Toolbar.
54985
+ /// @group pdf-viewer
54832
54986
  $kendo-pdf-viewer-toolbar-text: null !default;
54987
+ /// The border color of the PDFViewer Toolbar.
54988
+ /// @group pdf-viewer
54833
54989
  $kendo-pdf-viewer-toolbar-border: null !default;
54990
+ /// The gradient of the PDFViewer Toolbar.
54991
+ /// @group pdf-viewer
54834
54992
  $kendo-pdf-viewer-toolbar-gradient: null !default;
54835
54993
 
54994
+ /// The background color of the PDFViewer canvas.
54995
+ /// @group pdf-viewer
54836
54996
  $kendo-pdf-viewer-canvas-bg: $kendo-app-bg !default;
54997
+ /// The text color of the PDFViewer canvas.
54998
+ /// @group pdf-viewer
54837
54999
  $kendo-pdf-viewer-canvas-text: null !default;
55000
+ /// The border color of the PDFViewer canvas.
55001
+ /// @group pdf-viewer
54838
55002
  $kendo-pdf-viewer-canvas-border: null !default;
54839
55003
 
55004
+ /// The spacing of the PDFViewer page.
55005
+ /// @group pdf-viewer
54840
55006
  $kendo-pdf-viewer-page-spacing: 30px !default;
54841
55007
 
55008
+ /// The background color of the PDFViewer page.
55009
+ /// @group pdf-viewer
54842
55010
  $kendo-pdf-viewer-page-bg: white !default;
55011
+ /// The text color of the PDFViewer page.
55012
+ /// @group pdf-viewer
54843
55013
  $kendo-pdf-viewer-page-text: $kendo-component-text !default;
55014
+ /// The border color of the PDFViewer page.
55015
+ /// @group pdf-viewer
54844
55016
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
55017
+ /// The shadow of the PDFViewer page.
55018
+ /// @group pdf-viewer
54845
55019
  $kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
54846
55020
 
55021
+ /// The horizontal padding of the PDFViewer search panel.
55022
+ /// @group pdf-viewer
54847
55023
  $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
55024
+ /// The vertical padding of the PDFViewer search panel.
55025
+ /// @group pdf-viewer
54848
55026
  $kendo-pdf-viewer-search-panel-padding-y: calc( #{$kendo-toolbar-md-padding-x} * 2 ) !default;
55027
+ /// The spacing of the PDFViewer search panel.
55028
+ /// @group pdf-viewer
54849
55029
  $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
55030
+ /// The border width of the PDFViewer search panel.
55031
+ /// @group pdf-viewer
54850
55032
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
55033
+ /// The border radius of the PDFViewer search panel.
55034
+ /// @group pdf-viewer
54851
55035
  $kendo-pdf-viewer-search-panel-border-radius: 0 !default;
55036
+ /// The background color of the PDFViewer search panel.
55037
+ /// @group pdf-viewer
54852
55038
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
55039
+ /// The text color of the PDFViewer search panel.
55040
+ /// @group pdf-viewer
54853
55041
  $kendo-pdf-viewer-search-panel-text: $kendo-component-text !default;
55042
+ /// The border color of the PDFViewer search panel.
55043
+ /// @group pdf-viewer
54854
55044
  $kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
55045
+ /// The shadow of the PDFViewer search panel.
55046
+ /// @group pdf-viewer
54855
55047
  $kendo-pdf-viewer-search-panel-shadow: $kendo-window-shadow !default;
55048
+ /// The spacing of the matches container in the PDFViewer search panel.
55049
+ /// @group pdf-viewer
54856
55050
  $kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
54857
55051
 
55052
+ /// The line height of the PDFViewer selection.
55053
+ /// @group pdf-viewer
54858
55054
  $kendo-pdf-viewer-selection-line-height: $kendo-line-height-sm !default;
54859
55055
 
55056
+ /// The background color of the PDFViewer highlight.
55057
+ /// @group pdf-viewer
54860
55058
  $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
55059
+ /// The background color of the PDFViewer highlight mark.
55060
+ /// @group pdf-viewer
54861
55061
  $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
54862
55062
 
55063
+ /// The text color of the PDFViewer icon.
55064
+ /// @group pdf-viewer
54863
55065
  $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
54864
55066
 
54865
55067
  // #endregion