@progress/kendo-theme-material 6.5.0-dev.0 → 6.5.0-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.
Files changed (41) hide show
  1. package/dist/all.css +48 -13
  2. package/dist/all.scss +1023 -170
  3. package/dist/meta/sassdoc-data.json +40901 -19313
  4. package/dist/meta/sassdoc-raw-data.json +18150 -8200
  5. package/dist/meta/variables.json +229 -201
  6. package/lib/swatches/material-aqua-dark.json +1 -1
  7. package/lib/swatches/material-arctic.json +1 -1
  8. package/lib/swatches/material-burnt-teal.json +1 -1
  9. package/lib/swatches/material-dataviz-v4.json +1 -1
  10. package/lib/swatches/material-eggplant.json +1 -1
  11. package/lib/swatches/material-lime-dark.json +1 -1
  12. package/lib/swatches/material-lime.json +1 -1
  13. package/lib/swatches/material-main-dark.json +1 -1
  14. package/lib/swatches/material-main.json +1 -1
  15. package/lib/swatches/material-nova.json +1 -1
  16. package/lib/swatches/material-pacific-dark.json +1 -1
  17. package/lib/swatches/material-pacific.json +1 -1
  18. package/lib/swatches/material-sky-dark.json +1 -1
  19. package/lib/swatches/material-sky.json +1 -1
  20. package/lib/swatches/material-smoke.json +1 -1
  21. package/package.json +5 -5
  22. package/scss/appbar/_variables.scss +39 -7
  23. package/scss/bottom-navigation/_variables.scss +42 -8
  24. package/scss/breadcrumb/_variables.scss +178 -5
  25. package/scss/coloreditor/_variables.scss +53 -4
  26. package/scss/colorgradient/_variables.scss +86 -4
  27. package/scss/colorpalette/_variables.scss +18 -1
  28. package/scss/dialog/_variables.scss +16 -2
  29. package/scss/editor/_variables.scss +33 -0
  30. package/scss/expansion-panel/_variables.scss +55 -11
  31. package/scss/filter/_variables.scss +18 -1
  32. package/scss/listbox/_variables.scss +21 -20
  33. package/scss/listview/_variables.scss +42 -7
  34. package/scss/loader/_variables.scss +88 -12
  35. package/scss/notification/_variables.scss +21 -19
  36. package/scss/popover/_variables.scss +60 -6
  37. package/scss/progressbar/_variables.scss +24 -23
  38. package/scss/scrollview/_variables.scss +59 -6
  39. package/scss/tilelayout/_variables.scss +21 -4
  40. package/scss/upload/_variables.scss +62 -9
  41. package/scss/window/_variables.scss +61 -6
package/dist/all.scss CHANGED
@@ -1323,6 +1323,10 @@ $_kendo-escape-class-name: (
1323
1323
  /// @example scss - Usage
1324
1324
  /// @debug k-meta-function-exists( "k-string-replace" ); // => true
1325
1325
  @function k-meta-function-exists( $name ) {
1326
+ @if $name == "" {
1327
+ @return false;
1328
+ }
1329
+
1326
1330
  @return function-exists( $name );
1327
1331
  }
1328
1332
 
@@ -20714,53 +20718,129 @@ $_kendo-module-meta: (
20714
20718
  // #region @import "./_variables.scss"; -> scss/loader/_variables.scss
20715
20719
  // Loader
20716
20720
 
20721
+ /// The border radius of the Loader segment.
20722
+ /// @group loader
20717
20723
  $kendo-loader-segment-border-radius: 50% !default;
20724
+
20725
+ /// The size of the small Loader segment.
20726
+ /// @group loader
20718
20727
  $kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
20728
+ /// The size of the medium Loader segment.
20729
+ /// @group loader
20719
20730
  $kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
20731
+ /// The size of the large Loader segment.
20732
+ /// @group loader
20720
20733
  $kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
20721
20734
 
20735
+ /// The padding of the small Loader.
20736
+ /// @group loader
20722
20737
  $kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
20738
+ /// The padding of the medium Loader.
20739
+ /// @group loader
20723
20740
  $kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
20741
+ /// The padding of the large Loader.
20742
+ /// @group loader
20724
20743
  $kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
20725
20744
 
20745
+ /// The width of the small spinner-3 Loader.
20746
+ /// @group loader
20726
20747
  $kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
20727
- $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
20748
+ /// The width of the medium spinner-3 Loader.
20749
+ /// @group loader
20728
20750
  $kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
20729
- $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
20751
+ /// The width of the large spinner-3 Loader.
20752
+ /// @group loader
20730
20753
  $kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
20754
+
20755
+ /// The height of the small spinner-3 Loader.
20756
+ /// @group loader
20757
+ $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
20758
+ /// The height of the medium spinner-3 Loader.
20759
+ /// @group loader
20760
+ $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
20761
+ /// The height of the large spinner-3 Loader.
20762
+ /// @group loader
20731
20763
  $kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
20732
20764
 
20765
+ /// The width of the small spinner-4 Loader.
20766
+ /// @group loader
20733
20767
  $kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
20734
- $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
20768
+ /// The width of the medium spinner-4 Loader.
20769
+ /// @group loader
20735
20770
  $kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
20736
- $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
20771
+ /// The width of the large spinner-4 Loader.
20772
+ /// @group loader
20737
20773
  $kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
20774
+
20775
+ /// The height of the small spinner-4 Loader.
20776
+ /// @group loader
20777
+ $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
20778
+ /// The height of the medium spinner-4 Loader.
20779
+ /// @group loader
20780
+ $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
20781
+ /// The height of the large spinner-4 Loader.
20782
+ /// @group loader
20738
20783
  $kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
20739
20784
 
20785
+ /// The color of the Loader based on the secondary theme color.
20786
+ /// @group loader
20740
20787
  $kendo-loader-secondary-bg: #000000 !default;
20741
20788
 
20789
+ /// The border width of the container panel.
20790
+ /// @group loader
20742
20791
  $kendo-loader-container-panel-border-width: 1px !default;
20792
+ /// The border style of the container panel.
20793
+ /// @group loader
20743
20794
  $kendo-loader-container-panel-border-style: solid !default;
20795
+ /// The border color of the container panel.
20796
+ /// @group loader
20744
20797
  $kendo-loader-container-panel-border-color: $kendo-component-border !default;
20798
+ /// The border radius of the container panel.
20799
+ /// @group loader
20745
20800
  $kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
20801
+ /// The background color of the container panel.
20802
+ /// @group loader
20746
20803
  $kendo-loader-container-panel-bg: $kendo-color-white !default;
20747
20804
 
20805
+ /// The padding of the small Loader container.
20806
+ /// @group loader
20748
20807
  $kendo-loader-sm-container-padding: k-map-get( $kendo-spacing, 4 ) !default;
20749
- $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
20750
- $kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
20751
-
20808
+ /// The padding of the medium Loader container.
20809
+ /// @group loader
20752
20810
  $kendo-loader-md-container-padding: k-map-get( $kendo-spacing, 5 ) !default;
20753
- $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
20754
- $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
20755
-
20811
+ /// The padding of the large Loader container.
20812
+ /// @group loader
20756
20813
  $kendo-loader-lg-container-padding: k-map-get( $kendo-spacing, 6 ) !default;
20814
+
20815
+ /// The gap of the small Loader container.
20816
+ /// @group loader
20817
+ $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
20818
+ /// The gap of the medium Loader container.
20819
+ /// @group loader
20820
+ $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
20821
+ /// The gap of the large Loader container.
20822
+ /// @group loader
20757
20823
  $kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
20758
- $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
20759
20824
 
20825
+ /// The font size of the small Loader container.
20826
+ /// @group loader
20827
+ $kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
20828
+ /// The font size of the medium Loader container.
20829
+ /// @group loader
20830
+ $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
20831
+ /// The font size of the large Loader container.
20832
+ /// @group loader
20833
+ $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
20760
20834
 
20761
- // Loading
20835
+ // Loading indicator
20836
+ /// The background color of the Loading indicator.
20837
+ /// @group loading
20762
20838
  $kendo-loading-bg: $kendo-component-bg !default;
20839
+ /// The text color of the Loading indicator.
20840
+ /// @group loading
20763
20841
  $kendo-loading-text: currentColor !default;
20842
+ /// The opacity of the Loading indicator.
20843
+ /// @group loading
20764
20844
  $kendo-loading-opacity: .3 !default;
20765
20845
 
20766
20846
  // #endregion
@@ -24650,54 +24730,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
24650
24730
  // File already imported_once. Skipping output.
24651
24731
  // #endregion
24652
24732
 
24653
-
24654
24733
  // Window
24655
24734
 
24735
+ /// The width of the border around the Window.
24736
+ /// @group window
24656
24737
  $kendo-window-border-width: 0px !default;
24738
+ /// The border radius of the Window.
24739
+ /// @group window
24657
24740
  $kendo-window-border-radius: 4px !default;
24741
+ /// The font family of the Window.
24742
+ /// @group window
24658
24743
  $kendo-window-font-family: $kendo-font-family !default;
24744
+ /// The font size of the Window.
24745
+ /// @group window
24659
24746
  $kendo-window-font-size: $kendo-font-size-md !default;
24747
+ /// The line height of the Window.
24748
+ /// @group window
24660
24749
  $kendo-window-line-height: 1.5 !default;
24661
24750
 
24751
+ /// The horizontal padding of the Window titlebar.
24752
+ /// @group window
24662
24753
  $kendo-window-titlebar-padding-x: 24px !default;
24754
+ /// The vertical padding of the Window titlebar.
24755
+ /// @group window
24663
24756
  $kendo-window-titlebar-padding-y: 16px !default;
24757
+ /// The width of the border of the Window titlebar.
24758
+ /// @group window
24664
24759
  $kendo-window-titlebar-border-width: 0px !default;
24760
+ /// The style of the border of the Window titlebar.
24761
+ /// @group window
24665
24762
  $kendo-window-titlebar-border-style: solid !default;
24666
24763
 
24764
+ /// The font size of the title of the Window.
24765
+ /// @group window
24667
24766
  $kendo-window-title-font-size: 20px !default;
24767
+ /// The line height of the title of the Window.
24768
+ /// @group window
24668
24769
  $kendo-window-title-line-height: 1.6 !default;
24669
24770
 
24771
+ /// The spacing between the buttons in the Window titlebar.
24772
+ /// @group window
24670
24773
  $kendo-window-actions-gap: null !default;
24671
-
24774
+ /// The opacity of the buttons in the Window titlebar.
24775
+ /// @group window
24672
24776
  $kendo-window-action-opacity: null !default;
24777
+ /// The opacity of the hovered buttons in the Window titlebar.
24778
+ /// @group window
24673
24779
  $kendo-window-action-hover-opacity: null !default;
24674
24780
 
24781
+ /// The horizontal padding of the content of the Window.
24782
+ /// @group window
24675
24783
  $kendo-window-inner-padding-x: 24px !default;
24784
+ /// The vertical padding of the content of the Window.
24785
+ /// @group window
24676
24786
  $kendo-window-inner-padding-y: 8px !default;
24677
24787
 
24788
+ /// The horizontal padding of the Window action buttons.
24789
+ /// @group window
24678
24790
  $kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
24791
+ /// The vertical padding of the Window action buttons.
24792
+ /// @group window
24679
24793
  $kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
24794
+ /// The width of the top border of the Window action buttons.
24795
+ /// @group window
24680
24796
  $kendo-window-buttongroup-border-width: 0px !default;
24681
24797
 
24798
+ /// The background color of the Window.
24799
+ /// @group window
24682
24800
  $kendo-window-bg: $kendo-component-bg !default;
24801
+ /// The text color of the Window.
24802
+ /// @group window
24683
24803
  $kendo-window-text: $kendo-component-text !default;
24804
+ /// The border color of the Window.
24805
+ /// @group window
24684
24806
  $kendo-window-border: $kendo-component-border !default;
24807
+ /// The box shadow of the Window.
24808
+ /// @group window
24809
+ $kendo-window-shadow: $box-shadow-depth-4 !default;
24810
+ /// The box shadow of the focused Window.
24811
+ /// @group window
24812
+ $kendo-window-focus-shadow: $box-shadow-depth-5 !default;
24685
24813
 
24814
+ /// The background color of the Window titlebar.
24815
+ /// @group window
24686
24816
  $kendo-window-titlebar-bg: null !default;
24817
+ /// The text color of the Window titlebar.
24818
+ /// @group window
24687
24819
  $kendo-window-titlebar-text: null !default;
24820
+ /// The border color of the Window titlebar.
24821
+ /// @group window
24688
24822
  $kendo-window-titlebar-border: null !default;
24823
+ /// The background gradient of the Window titlebar.
24824
+ /// @group window
24689
24825
  $kendo-window-titlebar-gradient: null !default;
24690
24826
 
24691
- $kendo-window-shadow: $box-shadow-depth-4 !default;
24692
- $kendo-window-focus-shadow: $box-shadow-depth-5 !default;
24693
-
24827
+ /// The map of the width for the different Window sizes.
24828
+ /// @group window
24694
24829
  $kendo-window-sizes: (
24695
24830
  sm: 300px,
24696
24831
  md: 800px,
24697
24832
  lg: 1200px
24698
24833
  ) !default;
24699
24834
 
24700
- /// Theme colors map for the window.
24835
+ /// The theme colors map for the Window.
24701
24836
  /// @group window
24702
24837
  $kendo-window-theme-colors: (
24703
24838
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -27780,55 +27915,56 @@ $_kendo-module-meta: (
27780
27915
 
27781
27916
  // Component
27782
27917
  // #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
27783
- // Listbox
27918
+ // ListBox
27784
27919
 
27785
- /// Margin between the listbox elements.
27920
+ /// The spacing between the ListBox elements.
27786
27921
  /// @group listbox
27787
27922
  $kendo-listbox-spacing: k-map-get( $kendo-spacing, 3 ) !default;
27788
- /// Margin between the listbox buttons.
27923
+ /// The spacing between the ListBox buttons.
27789
27924
  /// @group listbox
27790
27925
  $kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 2 ) !default;
27791
- /// Width of the listbox.
27926
+ /// The width of the ListBox.
27792
27927
  /// @group listbox
27793
27928
  $kendo-listbox-width: 10em !default;
27794
- /// Height of the listbox.
27929
+ /// The height of the ListBox.
27795
27930
  /// @group listbox
27796
27931
  $kendo-listbox-default-height: 200px !default;
27797
- /// Width of the border around the listbox.
27932
+ /// The width of the border around the ListBox.
27798
27933
  /// @group listbox
27799
27934
  $kendo-listbox-border-width: 1px !default;
27800
- /// Font family of the listbox.
27935
+ /// The font family of the ListBox.
27801
27936
  /// @group listbox
27802
27937
  $kendo-listbox-font-family: $kendo-font-family !default;
27803
- /// Font size of the listbox.
27938
+ /// The font size of the ListBox.
27804
27939
  /// @group listbox
27805
27940
  $kendo-listbox-font-size: $kendo-list-md-font-size !default;
27806
- /// Line height of the listbox.
27941
+ /// The line height of the ListBox.
27807
27942
  /// @group listbox
27808
27943
  $kendo-listbox-line-height: $kendo-list-md-line-height !default;
27809
- /// Background color of the listbox.
27810
- /// @group listbox
27811
- $kendo-listbox-bg: $kendo-component-bg !default;
27812
- /// Text color of the listbox.
27944
+
27945
+ /// The text color of the ListBox.
27813
27946
  /// @group listbox
27814
27947
  $kendo-listbox-text: $kendo-component-text !default;
27815
- /// Border color of the listbox.
27948
+ /// The background color of the ListBox.
27949
+ /// @group listbox
27950
+ $kendo-listbox-bg: $kendo-component-bg !default;
27951
+ /// The border color of the ListBox.
27816
27952
  /// @group listbox
27817
27953
  $kendo-listbox-border: $kendo-component-border !default;
27818
27954
 
27819
- /// Inline item padding of the listbox.
27955
+ /// The inline padding of the ListBox item.
27820
27956
  /// @group listbox
27821
27957
  $kendo-listbox-item-padding-x: $kendo-list-md-item-padding-x !default;
27822
- /// Block item padding of the listbox.
27958
+ /// The block padding of the ListBox item.
27823
27959
  /// @group listbox
27824
27960
  $kendo-listbox-item-padding-y: $kendo-list-md-item-padding-y !default;
27825
27961
 
27826
- /// Width of the border around the drop hint.
27827
- /// @group listbox
27828
- $kendo-listbox-drop-hint-border-width: 2px !default;
27829
- /// Width of the drop hint.
27962
+ /// The width of the ListBox drop hint.
27830
27963
  /// @group listbox
27831
27964
  $kendo-listbox-drop-hint-width: 2px !default;
27965
+ /// The width of the border around the ListBox drop hint.
27966
+ /// @group listbox
27967
+ $kendo-listbox-drop-hint-border-width: 2px !default;
27832
27968
 
27833
27969
  // #endregion
27834
27970
  // #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
@@ -28015,77 +28151,78 @@ $_kendo-module-meta: (
28015
28151
 
28016
28152
  // Component
28017
28153
  // #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
28018
- // Progressbar
28154
+ // ProgressBar
28019
28155
 
28020
- /// Height of the progressbar.
28156
+ /// The height of the ProgressBar.
28021
28157
  /// @group progressbar
28022
28158
  $kendo-progressbar-height: 5px !default;
28023
- /// Horizontal width of the progressbar.
28159
+ /// The horizontal width of the ProgressBar.
28024
28160
  /// @group progressbar
28025
28161
  $kendo-progressbar-horizontal-width: 100% !default;
28026
- /// Animation timing of the progressbar.
28162
+ /// The animation timing of the ProgressBar.
28027
28163
  /// @group progressbar
28028
28164
  $kendo-progressbar-animation-timing: null !default;
28029
- /// Border width of the progressbar.
28165
+ /// The width of the border around the ProgressBar.
28030
28166
  /// @group progressbar
28031
28167
  $kendo-progressbar-border-width: 0px !default;
28032
- /// Font family of the progressbar.
28168
+ /// The font family of the ProgressBar.
28033
28169
  /// @group progressbar
28034
28170
  $kendo-progressbar-font-family: $kendo-font-family !default;
28035
- /// Font size of the progressbar.
28171
+ /// The font size of the ProgressBar.
28036
28172
  /// @group progressbar
28037
28173
  $kendo-progressbar-font-size: $kendo-font-size-sm !default;
28038
- /// Line height of the progressbar.
28174
+ /// The line height of the ProgressBar.
28039
28175
  /// @group progressbar
28040
28176
  $kendo-progressbar-line-height: 1 !default;
28041
- /// Background color of the progressbar.
28177
+
28178
+ /// The background color of the ProgressBar.
28042
28179
  /// @group progressbar
28043
28180
  $kendo-progressbar-bg: k-try-tint( $kendo-color-primary, 8 ) !default;
28044
- /// Text color of the progressbar.
28181
+ /// The text color of the ProgressBar.
28045
28182
  /// @group progressbar
28046
28183
  $kendo-progressbar-text: $kendo-component-text !default;
28047
- /// Border color of the progressbar.
28184
+ /// The border color of the ProgressBar.
28048
28185
  /// @group progressbar
28049
28186
  $kendo-progressbar-border: null !default;
28050
- /// Background gradient of the progressbar.
28187
+ /// The background gradient of the ProgressBar.
28051
28188
  /// @group progressbar
28052
28189
  $kendo-progressbar-gradient: null !default;
28053
28190
 
28054
- /// Progress background color of the progressbar.
28191
+ /// The progress background color of the ProgressBar.
28055
28192
  /// @group progressbar
28056
28193
  $kendo-progressbar-value-bg: $kendo-color-primary !default;
28057
- /// Progress text color of the progressbar.
28194
+ /// The progress text color of the ProgressBar.
28058
28195
  /// @group progressbar
28059
28196
  $kendo-progressbar-value-text: $kendo-color-primary-contrast !default;
28060
- /// Progress border color of the progressbar.
28197
+ /// The progress border color of the ProgressBar.
28061
28198
  /// @group progressbar
28062
28199
  $kendo-progressbar-value-border: null !default;
28063
- /// Progress background gradient of the progressbar.
28200
+ /// The progress background gradient of the ProgressBar.
28064
28201
  /// @group progressbar
28065
28202
  $kendo-progressbar-value-gradient: null !default;
28066
28203
 
28067
- /// Background color of the indeterminate progressbar.
28204
+ /// The background color of the indeterminate ProgressBar.
28068
28205
  /// @group progressbar
28069
28206
  $kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
28070
- /// Text color of the indeterminate progressbar.
28207
+ /// The text color of the indeterminate ProgressBar.
28071
28208
  /// @group progressbar
28072
28209
  $kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
28073
- /// Border color of the indeterminate progressbar.
28210
+ /// The border color of the indeterminate ProgressBar.
28074
28211
  /// @group progressbar
28075
28212
  $kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
28076
- /// Background gradient of the indeterminate progressbar.
28213
+ /// The background gradient of the indeterminate ProgressBar.
28077
28214
  /// @group progressbar
28078
28215
  $kendo-progressbar-indeterminate-gradient: null !default;
28079
28216
 
28080
- /// Border color of the chunk progressbar.
28217
+ /// The border color of the chunk ProgressBar.
28081
28218
  /// @group progressbar
28082
28219
  $kendo-progressbar-chunk-border: $kendo-component-bg !default;
28083
28220
 
28084
28221
  // Circular Progressbar
28085
- /// Arc stroke color of the circular progressbar.
28222
+ /// The arc stroke color of the circular ProgressBar.
28086
28223
  /// @group progressbar
28087
28224
  $kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
28088
- /// Scale stroke background color of the circular progressbar.
28225
+ /// The scale stroke background color of the circular ProgressBar.
28089
28226
  /// @group progressbar
28090
28227
  $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
28091
28228
 
@@ -31736,15 +31873,32 @@ $_kendo-module-meta: (
31736
31873
 
31737
31874
  // Component
31738
31875
  // #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
31739
- // Colorpalette
31876
+ // ColorPalette
31877
+
31878
+ /// The font family of the ColorPalette.
31879
+ /// @group colorpalette
31740
31880
  $kendo-color-palette-font-family: $kendo-font-family !default;
31881
+ /// The font size of the ColorPalette.
31882
+ /// @group colorpalette
31741
31883
  $kendo-color-palette-font-size: $kendo-font-size-md !default;
31884
+ /// The line height of the ColorPalette.
31885
+ /// @group colorpalette
31742
31886
  $kendo-color-palette-line-height: 0 !default;
31743
31887
 
31888
+ /// The width of the ColorPalette tile.
31889
+ /// @group colorpalette
31744
31890
  $kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
31891
+ /// The height of the ColorPalette tile.
31892
+ /// @group colorpalette
31745
31893
  $kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
31894
+ /// The shadow of the ColorPalette focused tile.
31895
+ /// @group colorpalette
31746
31896
  $kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
31897
+ /// The shadow of the ColorPalette hovered tile.
31898
+ /// @group colorpalette
31747
31899
  $kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
31900
+ /// The shadow of the ColorPalette selected tile.
31901
+ /// @group colorpalette
31748
31902
  $kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
31749
31903
 
31750
31904
  // #endregion
@@ -32037,59 +32191,140 @@ $_kendo-module-meta: (
32037
32191
  // File already imported_once. Skipping output.
32038
32192
  // #endregion
32039
32193
 
32040
-
32041
32194
  // ColorGradient
32195
+
32196
+ /// The spacer of the ColorGradient.
32197
+ /// @group cologradient
32042
32198
  $kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 3 ) !default;
32043
32199
 
32200
+ /// The width of the ColorGradient.
32201
+ /// @group cologradient
32044
32202
  $kendo-color-gradient-width: 294px !default;
32203
+ /// The width of the border around the ColorGradient.
32204
+ /// @group cologradient
32045
32205
  $kendo-color-gradient-border-width: 1px !default;
32206
+ /// The border radius of the ColorGradient.
32207
+ /// @group cologradient
32046
32208
  $kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
32209
+ /// The vertical padding of the ColorGradient.
32210
+ /// @group cologradient
32047
32211
  $kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
32212
+ /// The horizontal padding of the ColorGradient.
32213
+ /// @group cologradient
32048
32214
  $kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
32215
+ /// The spacing between the sections of the ColorGradient.
32216
+ /// @group cologradient
32049
32217
  $kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
32218
+ /// The font family of the ColorGradient.
32219
+ /// @group cologradient
32050
32220
  $kendo-color-gradient-font-family: $kendo-font-family !default;
32221
+ /// The font size of the ColorGradient.
32222
+ /// @group cologradient
32051
32223
  $kendo-color-gradient-font-size: $kendo-font-size-md !default;
32224
+ /// The line height of the ColorGradient.
32225
+ /// @group cologradient
32052
32226
  $kendo-color-gradient-line-height: $kendo-line-height-md !default;
32053
- $kendo-color-gradient-bg: $kendo-component-bg !default;
32227
+ /// The text color of the ColorGradient.
32228
+ /// @group cologradient
32054
32229
  $kendo-color-gradient-text: $kendo-component-text !default;
32230
+ /// The background color of the ColorGradient.
32231
+ /// @group cologradient
32232
+ $kendo-color-gradient-bg: $kendo-component-bg !default;
32233
+ /// The border color of the ColorGradient.
32234
+ /// @group cologradient
32055
32235
  $kendo-color-gradient-border: $kendo-component-border !default;
32056
32236
 
32237
+ /// The border color of the focused ColorGradient.
32238
+ /// @group cologradient
32057
32239
  $kendo-color-gradient-focus-border: $kendo-hover-border !default;
32240
+ /// The box shadow of the focused ColorGradient.
32241
+ /// @group cologradient
32058
32242
  $kendo-color-gradient-focus-shadow: $box-shadow-depth-2 !default;
32059
32243
 
32244
+ /// The border radius of the ColorGradient canvas.
32245
+ /// @group cologradient
32060
32246
  $kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
32247
+ /// The spacing between the items of the ColorGradient canvas.
32248
+ /// @group cologradient
32061
32249
  $kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
32250
+ /// The height the ColorGradient canvas hsv rectangle.
32251
+ /// @group cologradient
32062
32252
  $kendo-color-gradient-canvas-rectangle-height: 180px !default;
32063
32253
 
32254
+ /// The width of the ColorGradient slider.
32255
+ /// @group cologradient
32064
32256
  $kendo-color-gradient-slider-track-size: 10px !default;
32257
+ /// The border radius of the ColorGradient slider.
32258
+ /// @group cologradient
32065
32259
  $kendo-color-gradient-slider-border-radius: 10px !default;
32260
+ /// The width of the border around the ColorGradient slider drag handle.
32261
+ /// @group cologradient
32066
32262
  $kendo-color-gradient-slider-draghandle-border-width: 3px !default;
32067
32263
 
32264
+ /// The height of the ColorGradient vertical slider.
32265
+ /// @group cologradient
32068
32266
  $kendo-color-gradient-slider-vertical-size: 180px !default;
32267
+ /// The width of the ColorGradient horizontal slider.
32268
+ /// @group cologradient
32069
32269
  $kendo-color-gradient-slider-horizontal-size: 100% !default;
32070
32270
 
32271
+ /// The width of the ColorGradient canvas drag handle.
32272
+ /// @group cologradient
32071
32273
  $kendo-color-gradient-draghandle-width: 14px !default;
32274
+ /// The height of the ColorGradient canvas drag handle.
32275
+ /// @group cologradient
32072
32276
  $kendo-color-gradient-draghandle-height: 14px !default;
32277
+ /// The width of the border around the ColorGradient canvas drag handle.
32278
+ /// @group cologradient
32073
32279
  $kendo-color-gradient-draghandle-border-width: 1px !default;
32280
+ /// The border radius of the ColorGradient canvas drag handle.
32281
+ /// @group cologradient
32074
32282
  $kendo-color-gradient-draghandle-border-radius: 50% !default;
32075
- $kendo-color-gradient-draghandle-bg: transparent !default;
32283
+ /// The text color of the ColorGradient canvas drag handle.
32284
+ /// @group cologradient
32076
32285
  $kendo-color-gradient-draghandle-text: null !default;
32286
+ /// The background color of the ColorGradient canvas drag handle.
32287
+ /// @group cologradient
32288
+ $kendo-color-gradient-draghandle-bg: transparent !default;
32289
+ /// The color of the border around the ColorGradient canvas drag handle.
32290
+ /// @group cologradient
32077
32291
  $kendo-color-gradient-draghandle-border: rgba( white, .8 ) !default;
32292
+ /// The box shadow of the ColorGradient canvas drag handle.
32293
+ /// @group cologradient
32078
32294
  $kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
32295
+ /// The box shadow of the focused ColorGradient canvas drag handle.
32296
+ /// @group cologradient
32079
32297
  $kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
32298
+ /// The box shadow of the hovered ColorGradient canvas drag handle.
32299
+ /// @group cologradient
32080
32300
  $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
32081
32301
 
32302
+ /// The vertical margin of the ColorGradient canvas drag handle.
32303
+ /// @group cologradient
32082
32304
  $kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
32305
+ /// The horizontal margin of the ColorGradient canvas drag handle.
32306
+ /// @group cologradient
32083
32307
  $kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
32084
32308
 
32309
+ /// The width of the ColorGradient input.
32310
+ /// @group cologradient
32085
32311
  $kendo-color-gradient-input-width: 50px !default;
32312
+ /// The spacing between the ColorGradient inputs.
32313
+ /// @group cologradient
32086
32314
  $kendo-color-gradient-input-gap: k-map-get( $kendo-spacing, 2 ) !default;
32315
+ /// The spacing between the ColorGradient inputs and their labels.
32316
+ /// @group cologradient
32087
32317
  $kendo-color-gradient-input-label-gap: k-map-get( $kendo-spacing, 1 ) !default;
32318
+ /// The text color of the ColorGradient input labels.
32319
+ /// @group cologradient
32088
32320
  $kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
32089
32321
 
32322
+ /// The font weight of the ColorGradient contrast ratio text.
32323
+ /// @group cologradient
32090
32324
  $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-medium !default;
32325
+ /// The spacing between the items in the ColorGradient contrast tool.
32326
+ /// @group cologradient
32091
32327
  $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
32092
-
32093
32328
  // #endregion
32094
32329
  // #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
32095
32330
  // #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
@@ -32456,38 +32691,86 @@ $_kendo-module-meta: (
32456
32691
 
32457
32692
  // Component
32458
32693
  // #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
32459
- // Coloreditor/FlatColorPicker
32694
+ // ColorEditor/FlatColorPicker
32695
+
32696
+ /// The spacer of the ColorEditor.
32697
+ /// @group coloreditor
32460
32698
  $kendo-color-editor-spacer: k-map-get( $kendo-spacing, 3 ) !default;
32461
32699
 
32700
+ /// The minimum width of the ColorEditor.
32701
+ /// @group coloreditor
32462
32702
  $kendo-color-editor-min-width: 294px !default;
32703
+ /// The width of the border around the ColorEditor.
32704
+ /// @group coloreditor
32463
32705
  $kendo-color-editor-border-width: 1px !default;
32706
+ /// The border radius of the ColorEditor.
32707
+ /// @group coloreditor
32464
32708
  $kendo-color-editor-border-radius: $kendo-border-radius-md !default;
32709
+ /// The font family of the ColorEditor.
32710
+ /// @group coloreditor
32465
32711
  $kendo-color-editor-font-family: $kendo-font-family !default;
32712
+ /// The font size of the ColorEditor.
32713
+ /// @group coloreditor
32466
32714
  $kendo-color-editor-font-size: $kendo-font-size-md !default;
32715
+ /// The line height of the ColorEditor.
32716
+ /// @group coloreditor
32467
32717
  $kendo-color-editor-line-height: $kendo-line-height-md !default;
32468
- $kendo-color-editor-bg: $kendo-component-bg !default;
32718
+ /// The text color of the ColorEditor.
32719
+ /// @group coloreditor
32469
32720
  $kendo-color-editor-text: $kendo-component-text !default;
32721
+ /// The background color of the ColorEditor.
32722
+ /// @group coloreditor
32723
+ $kendo-color-editor-bg: $kendo-component-bg !default;
32724
+ /// The border color of the ColorEditor.
32725
+ /// @group coloreditor
32470
32726
  $kendo-color-editor-border: $kendo-component-border !default;
32471
32727
 
32728
+ /// The border color of the focused ColorEditor.
32729
+ /// @group coloreditor
32472
32730
  $kendo-color-editor-focus-border: $kendo-hover-border !default;
32731
+ /// The box shadow of the focused ColorEditor.
32732
+ /// @group coloreditor
32473
32733
  $kendo-color-editor-focus-shadow: $box-shadow-depth-2 !default;
32474
32734
 
32735
+ /// The vertical padding of the ColorEditor header.
32736
+ /// @group coloreditor
32475
32737
  $kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
32738
+ /// The horizontal padding of the ColorEditor header.
32739
+ /// @group coloreditor
32476
32740
  $kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
32741
+ /// The spacing between the ColorEditor header actions.
32742
+ /// @group coloreditor
32477
32743
  $kendo-color-editor-header-actions-gap: k-map-get( $kendo-spacing, 2 ) !default;
32478
32744
 
32479
- $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
32745
+ /// The width of the ColorEditor preview.
32746
+ /// @group coloreditor
32480
32747
  $kendo-color-editor-color-preview-width: 32px !default;
32748
+ /// The height of the ColorEditor preview.
32749
+ /// @group coloreditor
32481
32750
  $kendo-color-editor-color-preview-height: 12px !default;
32751
+ /// The spacing between the colors in the ColorEditor preview.
32752
+ /// @group coloreditor
32753
+ $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
32482
32754
 
32755
+ /// The vertical padding of the ColorEditor views container.
32756
+ /// @group coloreditor
32483
32757
  $kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
32758
+ /// The horizontal padding of the ColorEditor views container.
32759
+ /// @group coloreditor
32484
32760
  $kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
32761
+ /// The spacing of the ColorEditor views container.
32762
+ /// @group coloreditor
32485
32763
  $kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
32486
32764
 
32765
+ /// The outline color of the focused ColorGradient.
32766
+ /// @group coloreditor
32487
32767
  $kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
32768
+ /// The outline width of the focused ColorGradient.
32769
+ /// @group coloreditor
32488
32770
  $kendo-color-editor-color-gradient-focus-outline: 2px !default;
32771
+ /// The outline offset of the focused ColorGradient.
32772
+ /// @group coloreditor
32489
32773
  $kendo-color-editor-color-gradient-focus-outline-offset: 2px !default;
32490
-
32491
32774
  // #endregion
32492
32775
  // #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
32493
32776
  // #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
@@ -36074,49 +36357,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
36074
36357
  // #region @import "./_variables.scss"; -> scss/upload/_variables.scss
36075
36358
  // Upload
36076
36359
 
36360
+ /// The width of the border around the Upload.
36361
+ /// @group upload
36077
36362
  $kendo-upload-border-width: 1px !default;
36363
+ /// The font family of the Upload.
36364
+ /// @group upload
36078
36365
  $kendo-upload-font-family: $kendo-font-family !default;
36366
+ /// The font size of the Upload.
36367
+ /// @group upload
36079
36368
  $kendo-upload-font-size: $kendo-font-size-md !default;
36369
+ /// The line height of the Upload.
36370
+ /// @group upload
36080
36371
  $kendo-upload-line-height: k-math-div( 20, 14 ) !default;
36372
+ /// The maximum height of the list with uploaded items.
36373
+ /// @group upload
36081
36374
  $kendo-upload-max-height: 300px !default;
36082
36375
 
36083
- $kendo-upload-bg: $kendo-component-bg !default;
36376
+ /// The text color of the Upload.
36377
+ /// @group upload
36084
36378
  $kendo-upload-text: $kendo-component-text !default;
36379
+ /// The background color of the Upload.
36380
+ /// @group upload
36381
+ $kendo-upload-bg: $kendo-component-bg !default;
36382
+ /// The border color of the Upload.
36383
+ /// @group upload
36085
36384
  $kendo-upload-border: $kendo-component-border !default;
36086
36385
 
36386
+ /// The horizontal padding of the Upload dropzone.
36387
+ /// @group upload
36087
36388
  $kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
36389
+ /// The vertical padding of the Upload dropzone.
36390
+ /// @group upload
36088
36391
  $kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36089
- $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
36392
+ /// The text color of the Upload dropzone.
36393
+ /// @group upload
36090
36394
  $kendo-upload-dropzone-text: $kendo-component-header-text !default;
36395
+ /// The background color of the Upload dropzone.
36396
+ /// @group upload
36397
+ $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
36398
+ /// The border color of the Upload dropzone.
36399
+ /// @group upload
36091
36400
  $kendo-upload-dropzone-border: $kendo-upload-border !default;
36401
+ /// The background color of the hovered Upload dropzone.
36402
+ /// @group upload
36092
36403
  $kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
36093
36404
 
36405
+ /// The text color of the Upload status message.
36406
+ /// @group upload
36094
36407
  $kendo-upload-status-text: $kendo-subtle-text !default;
36408
+ /// The opacity of the Upload status message.
36409
+ /// @group upload
36095
36410
  $kendo-upload-status-text-opacity: null !default;
36096
36411
 
36412
+ /// The horizontal padding of an uploaded item.
36413
+ /// @group upload
36097
36414
  $kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
36415
+ /// The vertical padding of an uploaded item.
36416
+ /// @group upload
36098
36417
  $kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
36099
36418
 
36419
+ /// The vertical spacing between uploaded batch items.
36420
+ /// @group upload
36100
36421
  $kendo-upload-multiple-items-spacing: 12px !default;
36101
36422
 
36423
+ /// The font size of the Upload validation message.
36424
+ /// @group upload
36102
36425
  $kendo-upload-validation-font-size: 12px !default;
36426
+ /// The horizontal spacing of the Upload status icon.
36427
+ /// @group upload
36103
36428
  $kendo-upload-icon-spacing: $kendo-icon-spacing !default;
36429
+ /// The color of the uploaded items icon.
36430
+ /// @group upload
36104
36431
  $kendo-upload-icon-color: $kendo-subtle-text !default;
36105
36432
 
36106
- $kendo-upload-item-image-width: 24px !default;
36107
- $kendo-upload-item-image-height: 28px !default;
36108
- $kendo-upload-item-image-border: 2px !default;
36109
-
36433
+ /// The thickness of the Upload progress bar.
36434
+ /// @group upload
36110
36435
  $kendo-upload-progress-thickness: 2px !default;
36436
+ /// The background color of the Upload progress bar.
36437
+ /// @group upload
36111
36438
  $kendo-upload-progress-bg: $kendo-color-info !default;
36112
36439
 
36113
- $kendo-upload-success-bg: $kendo-color-success !default;
36440
+ /// The success text color of the Upload.
36441
+ /// @group upload
36114
36442
  $kendo-upload-success-text: $kendo-color-success !default;
36443
+ /// The success background color of the Upload progress bar.
36444
+ /// @group upload
36445
+ $kendo-upload-success-bg: $kendo-color-success !default;
36115
36446
 
36116
- $kendo-upload-error-bg: $kendo-color-error !default;
36447
+ /// The error text color of the Upload.
36448
+ /// @group upload
36117
36449
  $kendo-upload-error-text: $kendo-color-error !default;
36118
- $kendo-upload-error-border: $kendo-color-error !default;
36450
+ /// The error background color of the Upload progress bar.
36451
+ /// @group upload
36452
+ $kendo-upload-error-bg: $kendo-color-error !default;
36119
36453
 
36454
+ /// The shadow of the focused Upload button, actions and uploaded items.
36455
+ /// @group upload
36120
36456
  $kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
36121
36457
 
36122
36458
  // #endregion
@@ -36564,29 +36900,60 @@ $_kendo-module-meta: (
36564
36900
 
36565
36901
  // Component
36566
36902
  // #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
36567
- // Appbar
36568
- $kendo-appbar-margin-y: null !default;
36903
+ // AppBar
36904
+
36905
+ /// The horizontal margin of the AppBar.
36906
+ /// @group appbar
36569
36907
  $kendo-appbar-margin-x: null !default;
36570
- $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36908
+ /// The vertical margin of the AppBar.
36909
+ /// @group appbar
36910
+ $kendo-appbar-margin-y: null !default;
36911
+ /// The horizontal padding of the AppBar.
36912
+ /// @group appbar
36571
36913
  $kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
36914
+ /// The vertical padding of the AppBar.
36915
+ /// @group appbar
36916
+ $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36917
+ /// The width of the border around the AppBar.
36918
+ /// @group appbar
36572
36919
  $kendo-appbar-border-width: 0px !default;
36573
-
36920
+ /// The z-index of the AppBar.
36921
+ /// @group appbar
36574
36922
  $kendo-appbar-zindex: 1000 !default;
36575
-
36923
+ /// The font family of the AppBar.
36924
+ /// @group appbar
36925
+ $kendo-appbar-font-family: $kendo-font-family !default;
36926
+ /// The font size of the AppBar.
36927
+ /// @group appbar
36576
36928
  $kendo-appbar-font-size: $kendo-font-size-md !default;
36929
+ /// The line height of the AppBar.
36930
+ /// @group appbar
36577
36931
  $kendo-appbar-line-height: $kendo-line-height-md !default;
36578
- $kendo-appbar-font-family: $kendo-font-family !default;
36932
+
36933
+ /// The spacing between the AppBar sections.
36934
+ /// @group appbar
36579
36935
  $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
36580
36936
 
36937
+ /// The background color of the AppBar based on light theme color.
36938
+ /// @group appbar
36581
36939
  $kendo-appbar-light-bg: $kendo-color-light !default;
36940
+ /// TThe text color of the AppBar based on light theme color.
36941
+ /// @group appbar
36582
36942
  $kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
36583
36943
 
36944
+ /// The background color of the AppBar based on dark theme color.
36945
+ /// @group appbar
36584
36946
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
36947
+ /// The text color of the AppBar based on dark theme color.
36948
+ /// @group appbar
36585
36949
  $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
36586
36950
 
36951
+ /// The box shadow of the AppBar.
36952
+ /// @group appbar
36587
36953
  $kendo-appbar-box-shadow: 0px 2px 3px rgba( black, .24 ) !default;
36954
+ /// The box shadow of the AppBar with bottom position.
36955
+ /// @group appbar
36588
36956
  $kendo-appbar-bottom-box-shadow: 0px -2px 3px rgba( black, .24 ) !default;
36589
-
36590
36957
  // #endregion
36591
36958
  // #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
36592
36959
  // #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
@@ -38397,17 +38764,31 @@ $_kendo-module-meta: (
38397
38764
  // Component
38398
38765
  // #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
38399
38766
  // Dialog
38767
+
38768
+ /// The background color of the Dialog titlebar.
38769
+ /// @group dialog
38400
38770
  $kendo-dialog-titlebar-bg: null !default;
38771
+ /// The text color of the Dialog titlebar.
38772
+ /// @group dialog
38401
38773
  $kendo-dialog-titlebar-text: null !default;
38774
+ /// The border color of the Dialog titlebar.
38775
+ /// @group dialog
38402
38776
  $kendo-dialog-titlebar-border: null !default;
38403
38777
 
38778
+ /// The horizontal padding of the Dialog action buttons.
38779
+ /// @group dialog
38404
38780
  $kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
38781
+ /// The vertical padding of the Dialog action buttons.
38782
+ /// @group dialog
38405
38783
  $kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
38784
+ /// The width of the top border of the Dialog action buttons.
38785
+ /// @group dialog
38406
38786
  $kendo-dialog-buttongroup-border-width: 1px !default;
38407
-
38787
+ /// The spacing between the Dialog action buttons.
38788
+ /// @group dialog
38408
38789
  $kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
38409
38790
 
38410
- /// Theme colors map for the dialog.
38791
+ /// The theme colors map for the Dialog.
38411
38792
  /// @group dialog
38412
38793
  $kendo-dialog-theme-colors: (
38413
38794
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -39074,44 +39455,44 @@ $_kendo-module-meta: (
39074
39455
  // #region @import "./_variables.scss"; -> scss/notification/_variables.scss
39075
39456
  // Notification
39076
39457
 
39077
- /// Vertical padding of the notification container.
39458
+ /// The horizontal padding of the Notification.
39078
39459
  /// @group notification
39079
39460
  $kendo-notification-padding-x: 16px !default;
39080
- /// Horizontal padding of the notification.
39461
+ /// The vertical padding of the Notification.
39081
39462
  /// @group notification
39082
39463
  $kendo-notification-padding-y: 14px !default;
39083
- /// Width of the border around the notification.
39464
+ /// The width of the border around the Notification.
39084
39465
  /// @group notification
39085
39466
  $kendo-notification-border-width: 0px !default;
39086
- /// Border radius of the notification.
39467
+ /// The border radius of the Notification.
39087
39468
  /// @group notification
39088
39469
  $kendo-notification-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
39089
- /// Box shadow of the notification.
39090
- /// @group notification
39091
- $kendo-notification-shadow: $kendo-popup-shadow !default;
39092
- /// Font family of the notification.
39470
+ /// The font family of the Notification.
39093
39471
  /// @group notification
39094
39472
  $kendo-notification-font-family: $kendo-font-family !default;
39095
- /// Font size of the notification.
39473
+ /// The font size of the Notification.
39096
39474
  /// @group notification
39097
39475
  $kendo-notification-font-size: $kendo-font-size-md !default;
39098
- /// Line height of the notification.
39476
+ /// The line height of the Notification.
39099
39477
  /// @group notification
39100
39478
  $kendo-notification-line-height: k-math-div( 20, 14 ) !default;
39101
-
39102
- /// Horizontal spacing of the notification icon.
39103
- /// @group notification
39104
- $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
39105
-
39106
- /// Background color of the notification.
39479
+ /// The background color of the Notification.
39107
39480
  /// @group notification
39108
39481
  $kendo-notification-bg: $kendo-component-bg !default;
39109
- /// Text color of the notification.
39482
+ /// The text color of the Notification.
39110
39483
  /// @group notification
39111
39484
  $kendo-notification-text: $kendo-component-text !default;
39112
- /// Border color of the notification.
39485
+ /// The border color of the Notification.
39113
39486
  /// @group notification
39114
39487
  $kendo-notification-border: $kendo-component-border !default;
39488
+ /// The box shadow of the Notification.
39489
+ /// @group notification
39490
+ $kendo-notification-shadow: $kendo-popup-shadow !default;
39491
+
39492
+ /// The horizontal spacing of the Notification icon.
39493
+ /// @group notification
39494
+ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
39495
+
39115
39496
 
39116
39497
  @function notification-theme( $colors ) {
39117
39498
  $_theme: ();
@@ -39127,9 +39508,11 @@ $kendo-notification-border: $kendo-component-border !default;
39127
39508
  @return $_theme;
39128
39509
  }
39129
39510
 
39130
- /// Theme colors of the notification.
39511
+ /// The theme colors map for the Notification.
39131
39512
  /// @group notification
39132
39513
  $kendo-notification-theme-colors: $kendo-theme-colors !default;
39514
+ /// The generated theme colors map for the Notification.
39515
+ /// @group notification
39133
39516
  $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
39134
39517
 
39135
39518
  // #endregion
@@ -39949,37 +40332,90 @@ $kendo-card-callout-height: 20px !default;
39949
40332
  // Component
39950
40333
  // #region @import "./_variables.scss"; -> scss/popover/_variables.scss
39951
40334
  // Popover
40335
+
40336
+ /// The width of the border around the Popover.
40337
+ /// @group popover
39952
40338
  $kendo-popover-border-width: 1px !default;
40339
+ /// The style of the border around the Popover.
40340
+ /// @group popover
39953
40341
  $kendo-popover-border-style: solid !default;
40342
+ /// The radius of the border around the Popover.
40343
+ /// @group popover
39954
40344
  $kendo-popover-border-radius: $kendo-card-border-radius !default;
39955
- $kendo-popover-font-size: $kendo-card-font-size !default;
40345
+ /// The font family of the Popover.
40346
+ /// @group popover
39956
40347
  $kendo-popover-font-family: $kendo-card-font-family !default;
40348
+ /// The font size of the Popover.
40349
+ /// @group popover
40350
+ $kendo-popover-font-size: $kendo-card-font-size !default;
40351
+ /// The line height of the Popover.
40352
+ /// @group popover
39957
40353
  $kendo-popover-line-height: $kendo-card-line-height !default;
39958
- $kendo-popover-bg: $kendo-component-bg !default;
40354
+
40355
+ /// The text color of the Popover.
40356
+ /// @group popover
39959
40357
  $kendo-popover-text: $kendo-component-text !default;
40358
+ /// The background color of the Popover.
40359
+ /// @group popover
40360
+ $kendo-popover-bg: $kendo-component-bg !default;
40361
+ /// The border color of the Popover.
40362
+ /// @group popover
39960
40363
  $kendo-popover-border: $kendo-component-border !default;
40364
+ /// The box shadow of the Popover.
40365
+ /// @group popover
39961
40366
  $kendo-popover-shadow: $kendo-card-shadow !default;
39962
40367
 
39963
- $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
40368
+ /// The horizontal padding of the Popover header.
40369
+ /// @group popover
39964
40370
  $kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
40371
+ /// The vertical padding of the Popover header.
40372
+ /// @group popover
40373
+ $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
40374
+ /// The border width of the Popover header.
40375
+ /// @group popover
39965
40376
  $kendo-popover-header-border-width: $kendo-card-header-border-width !default;
40377
+ /// The border style of the Popover header.
40378
+ /// @group popover
39966
40379
  $kendo-popover-header-border-style: $kendo-popover-border-style !default;
39967
- $kendo-popover-header-bg: $kendo-card-header-bg !default;
40380
+ /// The text color of the Popover header.
40381
+ /// @group popover
39968
40382
  $kendo-popover-header-text: $kendo-card-header-text !default;
40383
+ /// The background color of the Popover header.
40384
+ /// @group popover
40385
+ $kendo-popover-header-bg: $kendo-card-header-bg !default;
40386
+ /// The border color of the Popover header.
40387
+ /// @group popover
39969
40388
  $kendo-popover-header-border: $kendo-card-header-border !default;
39970
40389
 
39971
- $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
40390
+ /// The horizontal padding of the Popover body.
40391
+ /// @group popover
39972
40392
  $kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
40393
+ /// The vertical padding of the Popover body.
40394
+ /// @group popover
40395
+ $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
39973
40396
 
40397
+ /// The border width of the Popover actions.
40398
+ /// @group popover
39974
40399
  $kendo-popover-actions-border-width: $kendo-popover-border-width !default;
39975
40400
 
40401
+ /// The width of the Popover callout.
40402
+ /// @group popover
39976
40403
  $kendo-popover-callout-width: $kendo-card-callout-width !default;
40404
+ /// The height of the Popover callout.
40405
+ /// @group popover
39977
40406
  $kendo-popover-callout-height: $kendo-card-callout-height !default;
40407
+ /// The border width of the Popover callout.
40408
+ /// @group popover
39978
40409
  $kendo-popover-callout-border-width: $kendo-popover-border-width !default;
40410
+ /// The border style of the Popover callout.
40411
+ /// @group popover
39979
40412
  $kendo-popover-callout-border-style: $kendo-popover-border-style !default;
40413
+ /// The background color of the Popover callout.
40414
+ /// @group popover
39980
40415
  $kendo-popover-callout-bg: $kendo-popover-bg !default;
40416
+ /// The border color of the Popover callout.
40417
+ /// @group popover
39981
40418
  $kendo-popover-callout-border: $kendo-popover-border !default;
39982
-
39983
40419
  // #endregion
39984
40420
  // #region @import "./_layout.scss"; -> scss/popover/_layout.scss
39985
40421
  // #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
@@ -40341,35 +40777,68 @@ $_kendo-module-meta: (
40341
40777
 
40342
40778
  // Component
40343
40779
  // #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
40344
- // Bottom-navigation
40780
+ // BottomNavigation
40781
+
40782
+ /// The horizontal padding of the BottomNavigation.
40783
+ /// @group bottom-navigation
40345
40784
  $kendo-bottom-nav-padding-x: 0px !default;
40785
+ /// The vertical padding of the BottomNavigation.
40786
+ /// @group bottom-navigation
40346
40787
  $kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
40788
+ /// The spacing between the BottomNavigation items.
40789
+ /// @group bottom-navigation
40347
40790
  $kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
40791
+ /// The width of the border around the BottomNavigation.
40792
+ /// @group bottom-navigation
40348
40793
  $kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
40349
-
40794
+ /// The font family of the BottomNavigation.
40795
+ /// @group bottom-navigation
40350
40796
  $kendo-bottom-nav-font-family: $kendo-font-family !default;
40797
+ /// The font size of the BottomNavigation.
40798
+ /// @group bottom-navigation
40351
40799
  $kendo-bottom-nav-font-size: $kendo-font-size-md !default;
40800
+ /// The line height of the BottomNavigation.
40801
+ /// @group bottom-navigation
40352
40802
  $kendo-bottom-nav-line-height: normal !default;
40803
+ /// The letter spacing of the BottomNavigation.
40804
+ /// @group bottom-navigation
40353
40805
  $kendo-bottom-nav-letter-spacing: .2px !default;
40354
40806
 
40807
+ /// The horizontal padding of the BottomNavigation item.
40808
+ /// @group bottom-navigation
40355
40809
  $kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
40810
+ /// The vertical padding of the BottomNavigation item.
40811
+ /// @group bottom-navigation
40356
40812
  $kendo-bottom-nav-item-padding-y: 0 !default;
40813
+ /// The minimum width of the BottomNavigation item.
40814
+ /// @group bottom-navigation
40357
40815
  $kendo-bottom-nav-item-min-width: 72px !default;
40816
+ /// The maximum width of the BottomNavigation item.
40817
+ /// @group bottom-navigation
40358
40818
  $kendo-bottom-nav-item-max-width: null !default;
40819
+ /// The minimum height of the BottomNavigation item.
40820
+ /// @group bottom-navigation
40359
40821
  $kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{$kendo-padding-sm-x * 2} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
40822
+ /// The border radius of the BottomNavigation item.
40823
+ /// @group bottom-navigation
40360
40824
  $kendo-bottom-nav-item-border-radius: null !default;
40825
+ /// The spacing of the BottomNavigation item.
40826
+ /// @group bottom-navigation
40361
40827
  $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
40362
40828
 
40363
- $kendo-bottom-nav-item-icon-margin-y: k-map-get( $kendo-spacing, 2 ) !default;
40364
- $kendo-bottom-nav-item-icon-margin-x: $kendo-bottom-nav-item-icon-margin-y !default;
40365
- $kendo-bottom-nav-item-disabled-opacity: .5 !default;
40366
-
40829
+ /// The box shadow of the BottomNavigation.
40830
+ /// @group bottom-navigation
40367
40831
  $kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
40368
40832
 
40369
- $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
40833
+ /// The text color of the flat BottomNavigation.
40834
+ /// @group bottom-navigation
40370
40835
  $kendo-bottom-nav-flat-text: $kendo-component-text !default;
40836
+ /// The background color of the flat BottomNavigation.
40837
+ /// @group bottom-navigation
40838
+ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
40839
+ /// The border color of the flat BottomNavigation.
40840
+ /// @group bottom-navigation
40371
40841
  $kendo-bottom-nav-flat-border: $kendo-component-border !default;
40372
-
40373
40842
  // #endregion
40374
40843
  // #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
40375
40844
  // #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
@@ -40625,63 +41094,236 @@ $_kendo-module-meta: (
40625
41094
  // Component
40626
41095
  // #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
40627
41096
  // Breadcrumb
41097
+
41098
+ /// The width of the border around the Breadcrumb.
41099
+ /// @group breadcrumb
41100
+ $kendo-breadcrumb-border-width: 0px !default;
41101
+
41102
+ /// The horizontal margin of the Breadcrumb.
41103
+ /// @group breadcrumb
40628
41104
  $kendo-breadcrumb-margin-x: null !default;
41105
+ /// The vertical margin of the Breadcrumb.
41106
+ /// @group breadcrumb
40629
41107
  $kendo-breadcrumb-margin-y: null !default;
41108
+ /// The horizontal padding of the Breadcrumb.
41109
+ /// @group breadcrumb
40630
41110
  $kendo-breadcrumb-padding-x: null !default;
41111
+ /// The vertical padding of the Breadcrumb.
41112
+ /// @group breadcrumb
40631
41113
  $kendo-breadcrumb-padding-y: null !default;
40632
- $kendo-breadcrumb-border-width: 0px !default;
40633
41114
 
41115
+ /// The font family of the Breadcrumb.
41116
+ /// @group breadcrumb
40634
41117
  $kendo-breadcrumb-font-family: $kendo-font-family !default;
41118
+
41119
+ /// The font size of the Breadcrumb.
41120
+ /// @group breadcrumb
40635
41121
  $kendo-breadcrumb-font-size: $kendo-font-size-md !default;
41122
+ /// The font size of the small Breadcrumb.
41123
+ /// @group breadcrumb
41124
+ $kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
41125
+ /// The font size of the medium Breadcrumb.
41126
+ /// @group breadcrumb
41127
+ $kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
41128
+ /// The font size of the large Breadcrumb.
41129
+ /// @group breadcrumb
41130
+ $kendo-breadcrumb-lg-font-size: $kendo-font-size-md !default;
41131
+
41132
+ /// The line-height of the Breadcrumb.
41133
+ /// @group breadcrumb
40636
41134
  $kendo-breadcrumb-line-height: $kendo-line-height-md !default;
40637
-
41135
+ /// The line-height of the small Breadcrumb.
41136
+ /// @group breadcrumb
41137
+ $kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
41138
+ /// The line-height of the medium Breadcrumb.
41139
+ /// @group breadcrumb
41140
+ $kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
41141
+ /// The line-height of the height Breadcrumb.
41142
+ /// @group breadcrumb
41143
+ $kendo-breadcrumb-lg-line-height: $kendo-line-height-md !default;
41144
+
41145
+ /// The base background of the Breadcrumb.
41146
+ /// @group breadcrumb
40638
41147
  $kendo-breadcrumb-bg: $kendo-component-bg !default;
41148
+ /// The base text color of the Breadcrumb.
41149
+ /// @group breadcrumb
40639
41150
  $kendo-breadcrumb-text: $kendo-component-text !default;
41151
+ /// The base border color of the Breadcrumb.
41152
+ /// @group breadcrumb
40640
41153
  $kendo-breadcrumb-border: $kendo-component-border !default;
40641
41154
 
41155
+ /// The box shadow of the focused Breadcrumb.
41156
+ /// @group breadcrumb
41157
+ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
41158
+
41159
+ /// The horizontal padding of the Breadcrumb link.
41160
+ /// @group breadcrumb
40642
41161
  $kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
41162
+ /// The horizontal padding of the small Breadcrumb link.
41163
+ /// @group breadcrumb
41164
+ $kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
41165
+ /// The horizontal padding of the medium Breadcrumb link.
41166
+ /// @group breadcrumb
41167
+ $kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
41168
+ /// The horizontal padding of the large Breadcrumb link.
41169
+ /// @group breadcrumb
41170
+ $kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
41171
+
41172
+ /// The vertical padding of the Breadcrumb link.
41173
+ /// @group breadcrumb
40643
41174
  $kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
41175
+ /// The vertical padding of the small Breadcrumb link.
41176
+ /// @group breadcrumb
41177
+ $kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default;
41178
+ /// The vertical padding of the medium Breadcrumb link.
41179
+ /// @group breadcrumb
41180
+ $kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
41181
+ /// The vertical padding of the large Breadcrumb link.
41182
+ /// @group breadcrumb
41183
+ $kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
41184
+
41185
+ /// The border-radius of the Breadcrumb link.
41186
+ /// @group breadcrumb
40644
41187
  $kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
40645
41188
 
40646
- $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
40647
- $kendo-breadcrumb-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-x !default;
40648
-
40649
- $kendo-breadcrumb-root-link-spacing: $kendo-breadcrumb-link-padding-x !default;
41189
+ /// The vertical padding of the Breadcrumb link icon.
41190
+ /// @group breadcrumb
41191
+ $kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
41192
+ /// The vertical padding of the small Breadcrumb link icon.
41193
+ /// @group breadcrumb
41194
+ $kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
41195
+ /// The vertical padding of the medium Breadcrumb link icon.
41196
+ /// @group breadcrumb
41197
+ $kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
41198
+ /// The vertical padding of the large Breadcrumb link icon.
41199
+ /// @group breadcrumb
41200
+ $kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
41201
+
41202
+ /// The horizontal padding of the Breadcrumb link icon.
41203
+ /// @group breadcrumb
41204
+ $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
41205
+ /// The horizontal padding of the small Breadcrumb link icon.
41206
+ /// @group breadcrumb
41207
+ $kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
41208
+ /// The horizontal padding of the medium Breadcrumb link icon.
41209
+ /// @group breadcrumb
41210
+ $kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
41211
+ /// The horizontal padding of the large Breadcrumb link icon.
41212
+ /// @group breadcrumb
41213
+ $kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
41214
+
41215
+ /// The spacing of the Breadcrumb link icon.
41216
+ /// @group breadcrumb
40650
41217
  $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
40651
41218
 
41219
+ /// The text color of the Breadcrumb link.
41220
+ /// @group breadcrumb
40652
41221
  $kendo-breadcrumb-link-initial-text: inherit !default;
40653
41222
 
41223
+ /// The background color of the Breadcrumb link.
41224
+ /// @group breadcrumb
40654
41225
  $kendo-breadcrumb-link-bg: null !default;
41226
+ /// The text color of the Breadcrumb link.
41227
+ /// @group breadcrumb
40655
41228
  $kendo-breadcrumb-link-text: $kendo-color-primary !default;
41229
+ /// The border color of the Breadcrumb link.
41230
+ /// @group breadcrumb
40656
41231
  $kendo-breadcrumb-link-border: null !default;
40657
41232
 
41233
+ /// The background color of the hovered Breadcrumb link.
41234
+ /// @group breadcrumb
40658
41235
  $kendo-breadcrumb-link-hover-bg: $kendo-hover-bg !default;
41236
+ /// The text color of the hovered Breadcrumb link.
41237
+ /// @group breadcrumb
40659
41238
  $kendo-breadcrumb-link-hover-text: null !default;
41239
+ /// The border color of the hovered Breadcrumb link.
41240
+ /// @group breadcrumb
40660
41241
  $kendo-breadcrumb-link-hover-border: null !default;
40661
41242
 
41243
+ /// The background color of the focused Breadcrumb link.
41244
+ /// @group breadcrumb
40662
41245
  $kendo-breadcrumb-link-focus-bg: k-map-get( $theme, focus-bg ) !default;
41246
+ /// The text color of the focused Breadcrumb link.
41247
+ /// @group breadcrumb
40663
41248
  $kendo-breadcrumb-link-focus-text: null !default;
41249
+ /// The border color of the focused Breadcrumb link.
41250
+ /// @group breadcrumb
40664
41251
  $kendo-breadcrumb-link-focus-border: null !default;
41252
+ /// The box shadow of the focused Breadcrumb link.
41253
+ /// @group breadcrumb
40665
41254
  $kendo-breadcrumb-link-focus-shadow: null !default;
40666
41255
 
41256
+ /// The background color of the Breadcrumb root link.
41257
+ /// @group breadcrumb
40667
41258
  $kendo-breadcrumb-root-link-bg: null !default;
41259
+ /// The text color of the Breadcrumb root link.
41260
+ /// @group breadcrumb
40668
41261
  $kendo-breadcrumb-root-link-text: null !default;
41262
+ /// The border color of the Breadcrumb root link.
41263
+ /// @group breadcrumb
40669
41264
  $kendo-breadcrumb-root-link-border: null !default;
40670
41265
 
41266
+ /// The background color of the hovered Breadcrumb root link.
41267
+ /// @group breadcrumb
40671
41268
  $kendo-breadcrumb-root-link-hover-bg: $kendo-hover-bg !default;
41269
+ /// The text color of the hovered Breadcrumb root link.
41270
+ /// @group breadcrumb
40672
41271
  $kendo-breadcrumb-root-link-hover-text: null !default;
41272
+ /// The border color of the hovered Breadcrumb root link.
41273
+ /// @group breadcrumb
40673
41274
  $kendo-breadcrumb-root-link-hover-border: null !default;
40674
41275
 
41276
+ /// The background color of the focused Breadcrumb root link.
41277
+ /// @group breadcrumb
40675
41278
  $kendo-breadcrumb-root-link-focus-bg: k-map-get( $theme, focus-bg ) !default;
41279
+ /// The text color of the focused Breadcrumb root link.
41280
+ /// @group breadcrumb
40676
41281
  $kendo-breadcrumb-root-link-focus-text: null !default;
41282
+ /// The border color of the focused Breadcrumb root link.
41283
+ /// @group breadcrumb
40677
41284
  $kendo-breadcrumb-root-link-focus-border: null !default;
41285
+ /// The box shadow of the focused Breadcrumb root link.
41286
+ /// @group breadcrumb
40678
41287
  $kendo-breadcrumb-root-link-focus-shadow: null !default;
40679
41288
 
41289
+ /// The background color of the current Breadcrumb root link.
41290
+ /// @group breadcrumb
40680
41291
  $kendo-breadcrumb-current-item-bg: null !default;
41292
+ /// The text color of the current Breadcrumb root link.
41293
+ /// @group breadcrumb
40681
41294
  $kendo-breadcrumb-current-item-text: null !default;
41295
+ /// The border color of the current Breadcrumb root link.
41296
+ /// @group breadcrumb
40682
41297
  $kendo-breadcrumb-current-item-border: null !default;
40683
41298
 
40684
- $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
41299
+ /// The sizes map for the Breadcrumb.
41300
+ /// @group breadcrumb
41301
+ $kendo-breadcrumb-sizes: (
41302
+ sm: (
41303
+ link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
41304
+ link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
41305
+ icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
41306
+ icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
41307
+ font-size: $kendo-breadcrumb-sm-font-size,
41308
+ line-height: $kendo-breadcrumb-sm-line-height
41309
+ ),
41310
+ md: (
41311
+ link-padding-x: $kendo-breadcrumb-md-link-padding-x,
41312
+ link-padding-y: $kendo-breadcrumb-md-link-padding-y,
41313
+ icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
41314
+ icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
41315
+ font-size: $kendo-breadcrumb-md-font-size,
41316
+ line-height: $kendo-breadcrumb-md-line-height
41317
+ ),
41318
+ lg: (
41319
+ link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
41320
+ link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
41321
+ icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
41322
+ icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
41323
+ font-size: $kendo-breadcrumb-lg-font-size,
41324
+ line-height: $kendo-breadcrumb-lg-line-height
41325
+ )
41326
+ ) !default;
40685
41327
 
40686
41328
  // #endregion
40687
41329
  // #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
@@ -40699,8 +41341,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40699
41341
  box-sizing: border-box;
40700
41342
  outline: 0;
40701
41343
  font-family: $kendo-breadcrumb-font-family;
40702
- font-size: $kendo-breadcrumb-font-size;
40703
- line-height: $kendo-breadcrumb-line-height;
40704
41344
  display: flex;
40705
41345
  flex-direction: row;
40706
41346
  -webkit-touch-callout: none;
@@ -40752,8 +41392,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40752
41392
  .k-breadcrumb-link,
40753
41393
  .k-breadcrumb-root-link {
40754
41394
  @include border-radius( $kendo-breadcrumb-link-border-radius );
40755
- padding-block: $kendo-breadcrumb-link-padding-y;
40756
- padding-inline: $kendo-breadcrumb-link-padding-x;
40757
41395
  color: $kendo-breadcrumb-link-initial-text;
40758
41396
  text-decoration: none;
40759
41397
  white-space: nowrap;
@@ -40767,21 +41405,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40767
41405
  transition: $kendo-transition;
40768
41406
  }
40769
41407
 
40770
- .k-breadcrumb-root-link {
40771
- margin-inline-end: $kendo-breadcrumb-root-link-spacing;
40772
- }
40773
-
40774
41408
  .k-breadcrumb-link > .k-image,
40775
41409
  .k-breadcrumb-icontext-link .k-icon,
40776
41410
  .k-breadcrumb-icontext-link .k-svg-icon {
40777
41411
  margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
40778
41412
  }
40779
41413
 
40780
- .k-breadcrumb-icon-link {
40781
- padding-block: $kendo-breadcrumb-icon-link-padding-y;
40782
- padding-inline: $kendo-breadcrumb-icon-link-padding-x;
40783
- }
40784
-
40785
41414
 
40786
41415
  // Breadcrumb delimiter
40787
41416
  .k-breadcrumb-delimiter,
@@ -40800,6 +41429,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40800
41429
  }
40801
41430
  }
40802
41431
 
41432
+
41433
+ // Sizes
41434
+ @each $size, $size-props in $kendo-breadcrumb-sizes {
41435
+ $_link-padding-x: k-map-get( $size-props, link-padding-x );
41436
+ $_link-padding-y: k-map-get( $size-props, link-padding-y );
41437
+ $_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
41438
+ $_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
41439
+ $_font-size: k-map-get( $size-props, font-size );
41440
+ $_line-height: k-map-get( $size-props, line-height );
41441
+
41442
+ .k-breadcrumb-#{$size} {
41443
+ font-size: $_font-size;
41444
+ line-height: $_line-height;
41445
+
41446
+
41447
+ .k-breadcrumb-link,
41448
+ .k-breadcrumb-root-link {
41449
+ padding-block: $_link-padding-y;
41450
+ padding-inline: $_link-padding-x;
41451
+ }
41452
+
41453
+ .k-breadcrumb-icon-link {
41454
+ padding-block: $_icon-link-padding-y;
41455
+ padding-inline: $_icon-link-padding-x;
41456
+ }
41457
+ }
41458
+ }
41459
+
40803
41460
  }
40804
41461
 
40805
41462
 
@@ -43122,40 +43779,83 @@ $_kendo-module-meta: (
43122
43779
 
43123
43780
  // Component
43124
43781
  // #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
43125
- // Expansion panel
43782
+ // ExpansionPanel
43783
+
43784
+ /// The vertical spacing of the ExpansionPanel.
43785
+ /// @group expander
43126
43786
  $kendo-expander-spacing-y: k-map-get( $kendo-spacing, 3 ) !default;
43787
+ /// The width of the border around the ExpansionPanel.
43788
+ /// @group expander
43789
+ $kendo-expander-border-width: 1px !default;
43790
+ /// The font family of the ExpansionPanel.
43791
+ /// @group expander
43127
43792
  $kendo-expander-font-family: $kendo-font-family !default;
43793
+ /// The font size of the ExpansionPanel.
43794
+ /// @group expander
43128
43795
  $kendo-expander-font-size: $kendo-font-size-md !default;
43796
+ /// The hine height of the ExpansionPanel.
43797
+ /// @group expander
43129
43798
  $kendo-expander-line-height: $kendo-line-height-md !default;
43130
- $kendo-expander-border-width: 1px !default;
43131
-
43132
- $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
43133
- $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
43134
43799
 
43135
- $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
43136
-
43137
- $kendo-expander-bg: $kendo-component-bg !default;
43800
+ /// The text color of the ExpansionPanel.
43801
+ /// @group expander
43138
43802
  $kendo-expander-text: $kendo-component-text !default;
43803
+ /// The background color of the ExpansionPanel.
43804
+ /// @group expander
43805
+ $kendo-expander-bg: $kendo-component-bg !default;
43806
+ /// The border color of the ExpansionPanel.
43807
+ /// @group expander
43139
43808
  $kendo-expander-border: $kendo-component-border !default;
43140
43809
 
43810
+ /// The box shadow of the focused ExpansionPanel.
43811
+ /// @group expander
43141
43812
  $kendo-expander-focus-shadow: inset 0 0 0 2px rgba( black, .08 ) !default;
43142
43813
 
43143
- $kendo-expander-header-bg: transparent !default;
43814
+ /// The horizontal padding of the ExpansionPanel header.
43815
+ /// @group expander
43816
+ $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
43817
+ /// The vertical padding of the ExpansionPanel header.
43818
+ /// @group expander
43819
+ $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
43820
+
43821
+ /// The text color of the ExpansionPanel header.
43822
+ /// @group expander
43144
43823
  $kendo-expander-header-text: $kendo-expander-text !default;
43824
+ /// The background color of the ExpansionPanel header.
43825
+ /// @group expander
43826
+ $kendo-expander-header-bg: transparent !default;
43827
+ /// The border color of the ExpansionPanel header.
43828
+ /// @group expander
43145
43829
  $kendo-expander-header-border: null !default;
43146
43830
 
43831
+ /// The background color of the hovered ExpansionPanel header.
43832
+ /// @group expander
43147
43833
  $kendo-expander-header-hover-bg: rgba( black, .04 ) !default;
43148
-
43834
+ /// The background color of the focused ExpansionPanel header.
43835
+ /// @group expander
43149
43836
  $kendo-expander-header-focus-bg: rgba( black, .12 ) !default;
43837
+ /// The box shadow of the focused ExpansionPanel header.
43838
+ /// @group expander
43150
43839
  $kendo-expander-header-focus-shadow: none !default;
43151
43840
 
43841
+ /// The text color of the ExpansionPanel title.
43842
+ /// @group expander
43152
43843
  $kendo-expander-title-text: $kendo-color-secondary !default;
43153
43844
 
43845
+ /// The text color of the ExpansionPanel sub-title.
43846
+ /// @group expander
43154
43847
  $kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
43155
43848
 
43849
+ /// The horizontal margin of the ExpansionPanel indicator.
43850
+ /// @group expander
43851
+ $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
43852
+
43853
+ /// The horizontal padding of the ExpansionPanel content.
43854
+ /// @group expander
43156
43855
  $kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
43856
+ /// The vertical padding of the ExpansionPanel content.
43857
+ /// @group expander
43157
43858
  $kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 6 ) !default;
43158
-
43159
43859
  // #endregion
43160
43860
  // #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
43161
43861
  // #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
@@ -44258,17 +44958,34 @@ $_kendo-module-meta: (
44258
44958
  // Component
44259
44959
  // #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
44260
44960
  // TileLayout
44961
+
44962
+ /// The width of the border around the TileLayout.
44963
+ /// @group tilelayout
44261
44964
  $kendo-tile-layout-border-width: 0px !default;
44965
+ /// The background color of the TileLayout.
44966
+ /// @group tilelayout
44967
+ $kendo-tile-layout-bg: if( $kendo-is-dark-theme, $kendo-color-dark, $kendo-color-light) !default;
44968
+
44969
+ /// The width of the border around the TileLayout card.
44970
+ /// @group tilelayout
44262
44971
  $kendo-tile-layout-card-border-width: 1px !default;
44972
+ /// The focus box shadow of the TileLayout card.
44973
+ /// @group tilelayout
44263
44974
  $kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
44264
44975
 
44976
+ /// The width of the border around the TileLayout hint.
44977
+ /// @group tilelayout
44265
44978
  $kendo-tile-layout-hint-border-width: 1px !default;
44979
+ /// The radius of the border around the TileLayout hint.
44980
+ /// @group tilelayout
44266
44981
  $kendo-tile-layout-hint-border-radius: $kendo-border-radius-md !default;
44267
-
44268
- $kendo-tile-layout-bg: if( $kendo-is-dark-theme, $kendo-color-dark, $kendo-color-light) !default;
44269
-
44270
- $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
44982
+ /// The color of the border around the TileLayout hint.
44983
+ /// @group tilelayout
44271
44984
  $kendo-tile-layout-hint-border: $kendo-component-border !default;
44985
+ /// The background color of the TileLayout hint.
44986
+ /// @group tilelayout
44987
+ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
44988
+
44272
44989
 
44273
44990
  // #endregion
44274
44991
  // #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
@@ -47830,32 +48547,66 @@ $_kendo-module-meta: (
47830
48547
 
47831
48548
  // Component
47832
48549
  // #region @import "./_variables.scss"; -> scss/listview/_variables.scss
47833
- // Listview
48550
+ // ListView
48551
+
48552
+ /// The horizontal padding of the ListView.
48553
+ /// @group listview
47834
48554
  $kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
48555
+ /// The vertical padding of the ListView.
48556
+ /// @group listview
47835
48557
  $kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
48558
+ /// The width of the border around bordered ListView.
48559
+ /// @group listview
47836
48560
  $kendo-listview-border-width: 1px !default;
48561
+ /// The font family of the ListView.
48562
+ /// @group listview
47837
48563
  $kendo-listview-font-family: $kendo-font-family !default;
48564
+ /// The font size of the ListView.
48565
+ /// @group listview
47838
48566
  $kendo-listview-font-size: $kendo-font-size-md !default;
48567
+ /// The line height of the ListView.
48568
+ /// @group listview
47839
48569
  $kendo-listview-line-height: $kendo-line-height-md !default;
47840
48570
 
47841
- $kendo-listview-bg: $kendo-component-bg !default;
48571
+ /// The text color of the ListView.
48572
+ /// @group listview
47842
48573
  $kendo-listview-text: $kendo-component-text !default;
48574
+ /// The background color of the ListView.
48575
+ /// @group listview
48576
+ $kendo-listview-bg: $kendo-component-bg !default;
48577
+ /// The border color of the ListView.
48578
+ /// @group listview
47843
48579
  $kendo-listview-border: $kendo-component-border !default;
47844
48580
 
47845
- $kendo-listview-grid-gap: 10px !default;
47846
-
48581
+ /// The horizontal padding of the ListView items.
48582
+ /// @group listview
47847
48583
  $kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
48584
+ /// The vertical padding of the ListView items.
48585
+ /// @group listview
47848
48586
  $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
47849
48587
 
47850
- $kendo-listview-item-selected-bg: rgba( k-contrast-color( $kendo-listview-bg ), .04 ) !default;
48588
+ /// The text color of the selected ListView items.
48589
+ /// @group listview
47851
48590
  $kendo-listview-item-selected-text: null !default;
48591
+ /// The background color of the selected ListView items.
48592
+ /// @group listview
48593
+ $kendo-listview-item-selected-bg: rgba( k-contrast-color( $kendo-listview-bg ), .04 ) !default;
48594
+ /// The border color of the selected ListView items.
48595
+ /// @group listview
47852
48596
  $kendo-listview-item-selected-border: null !default;
47853
48597
 
47854
- $kendo-listview-item-focus-bg: rgba( k-contrast-color( $kendo-listview-bg ), .08 ) !default;
48598
+ /// The text color of the focused ListView items.
48599
+ /// @group listview
47855
48600
  $kendo-listview-item-focus-text: null !default;
48601
+ /// The background color of the focused ListView items.
48602
+ /// @group listview
48603
+ $kendo-listview-item-focus-bg: rgba( k-contrast-color( $kendo-listview-bg ), .08 ) !default;
48604
+ /// The border color of the focused ListView items.
48605
+ /// @group listview
47856
48606
  $kendo-listview-item-focus-border: null !default;
48607
+ /// The box shadow of the focused ListView items.
48608
+ /// @group listview
47857
48609
  $kendo-listview-item-focus-shadow: null !default;
47858
-
47859
48610
  // #endregion
47860
48611
  // #region @import "./_layout.scss"; -> scss/listview/_layout.scss
47861
48612
  // #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
@@ -51184,19 +51935,35 @@ $_kendo-module-meta: (
51184
51935
  // Component
51185
51936
  // #region @import "./_variables.scss"; -> scss/filter/_variables.scss
51186
51937
  // Filter expression builder
51938
+
51939
+ /// The horizontal padding of the Filter.
51940
+ /// @group filter
51187
51941
  $kendo-filter-padding-x: $kendo-padding-sm-x !default;
51942
+ /// The vertical padding of the Filter.
51943
+ /// @group filter
51188
51944
  $kendo-filter-padding-y: $kendo-filter-padding-x !default;
51189
51945
 
51946
+ /// The bottom margin of the Filter.
51947
+ /// @group filter
51190
51948
  $kendo-filter-bottom-margin: 2.1em !default;
51949
+ /// The width of the line that connects the Filter items.
51950
+ /// @group filter
51191
51951
  $kendo-filter-line-size: 1px !default;
51192
51952
 
51953
+ /// The width of the dropdown elements in the Filter items.
51954
+ /// @group filter
51193
51955
  $kendo-filter-operator-dropdown-width: 15em !default;
51194
51956
 
51957
+ /// The text color of the Filter preview field.
51958
+ /// @group filter
51195
51959
  $kendo-filter-preview-field-text: $kendo-color-primary !default;
51960
+ /// The text color of the Filter preview operator.
51961
+ /// @group filter
51196
51962
  $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
51197
51963
 
51964
+ /// The box shadow of the focused Filter toolbar.
51965
+ /// @group filter
51198
51966
  $kendo-filter-toolbar-focus-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px rgba(0, 0, 0, .14), 0 1px 10px rgba(0, 0, 0, .12) !default;
51199
-
51200
51967
  // #endregion
51201
51968
  // #region @import "./_layout.scss"; -> scss/filter/_layout.scss
51202
51969
  // #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
@@ -52525,27 +53292,60 @@ $_kendo-module-meta: (
52525
53292
  // Component
52526
53293
  // #region @import "./_variables.scss"; -> scss/editor/_variables.scss
52527
53294
  // Editor
53295
+
53296
+ /// The width of the border around the Еditor.
53297
+ /// @group editor
52528
53298
  $kendo-editor-border-width: 1px !default;
53299
+ /// The font family of the Еditor.
53300
+ /// @group editor
52529
53301
  $kendo-editor-font-family: $kendo-font-family !default;
53302
+ /// The font size of the Еditor.
53303
+ /// @group editor
52530
53304
  $kendo-editor-font-size: $kendo-font-size-md !default;
53305
+ /// The line height of the Еditor.
53306
+ /// @group editor
52531
53307
  $kendo-editor-line-height: $kendo-line-height-md !default;
52532
53308
 
53309
+ /// The text color of the Еditor placeholder.
53310
+ /// @group editor
52533
53311
  $kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
53312
+ /// The opacity of the Editor placeholder.
53313
+ /// @group editor
52534
53314
  $kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
52535
53315
 
53316
+ /// The selected text color of the Editor.
53317
+ /// @group editor
52536
53318
  $kendo-editor-selected-text: $kendo-color-primary-contrast !default;
53319
+ /// The selected background color of the Editor.
53320
+ /// @group editor
52537
53321
  $kendo-editor-selected-bg: $kendo-color-primary !default;
52538
53322
 
53323
+ /// The highlighted background color of the Editor.
53324
+ /// @group editor
52539
53325
  $kendo-editor-highlighted-bg: k-color-mix($kendo-color-primary, #ffffff, 20%) !default;
52540
53326
 
53327
+ /// The horizontal margin of the Editor's export tool icon.
53328
+ /// @group editor
52541
53329
  $kendo-editor-export-tool-icon-margin-x: .5em !default;
52542
53330
 
53331
+ /// The size of the Editor's resize handle.
53332
+ /// @group editor
52543
53333
  $kendo-editor-resize-handle-size: 8px !default;
53334
+ /// The border width of the Editor's resize handle.
53335
+ /// @group editor
52544
53336
  $kendo-editor-resize-handle-border-width: 1px !default;
53337
+ /// The border color of the Editor's resize handle.
53338
+ /// @group editor
52545
53339
  $kendo-editor-resize-handle-border: #000000 !default;
53340
+ /// The background color of the Editor's resize handle.
53341
+ /// @group editor
52546
53342
  $kendo-editor-resize-handle-bg: #ffffff !default;
52547
53343
 
53344
+ /// The outline width of the Editor's selected node.
53345
+ /// @group editor
52548
53346
  $kendo-editor-selectednode-outline-width: 2px !default;
53347
+ /// The outline color of the Editor's selected node.
53348
+ /// @group editor
52549
53349
  $kendo-editor-selectednode-outline-color: #88ccff !default;
52550
53350
 
52551
53351
  // #endregion
@@ -59124,44 +59924,97 @@ $_kendo-module-meta: (
59124
59924
 
59125
59925
  // Component
59126
59926
  // #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
59127
- // Scrollview
59927
+ // ScrollView
59928
+
59929
+ /// The width of the border around the ScrollView.
59930
+ /// @group scrollview
59128
59931
  $kendo-scrollview-border-width: 1px !default;
59932
+ /// The font family of the ScrollView.
59933
+ /// @group scrollview
59129
59934
  $kendo-scrollview-font-family: $kendo-font-family !default;
59935
+ /// The font size of the ScrollView.
59936
+ /// @group scrollview
59130
59937
  $kendo-scrollview-font-size: $kendo-font-size-md !default;
59938
+ /// The line height of the ScrollView.
59939
+ /// @group scrollview
59131
59940
  $kendo-scrollview-line-height: $kendo-line-height-md !default;
59132
59941
 
59133
- $kendo-scrollview-bg: $kendo-component-bg !default;
59942
+ /// The text color of the ScrollView.
59943
+ /// @group scrollview
59134
59944
  $kendo-scrollview-text: $kendo-component-text !default;
59945
+ /// The background color of the ScrollView.
59946
+ /// @group scrollview
59947
+ $kendo-scrollview-bg: $kendo-component-bg !default;
59948
+ /// The border color of the ScrollView.
59949
+ /// @group scrollview
59135
59950
  $kendo-scrollview-border: $kendo-component-border !default;
59136
59951
 
59952
+ /// The size of the ScrollView page button.
59953
+ /// @group scrollview
59137
59954
  $kendo-scrollview-pagebutton-size: 10px !default;
59955
+ /// The background color of the ScrollView page button.
59956
+ /// @group scrollview
59138
59957
  $kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
59958
+ /// The border color of the ScrollView page button.
59959
+ /// @group scrollview
59139
59960
  $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
59961
+ /// The primary background color of the ScrollView page button.
59962
+ /// @group scrollview
59140
59963
  $kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
59964
+ /// The primary border color of the ScrollView page button.
59965
+ /// @group scrollview
59141
59966
  $kendo-scrollview-pagebutton-primary-border: $kendo-color-primary !default;
59967
+ /// The box shadow of the ScrollView page button.
59968
+ /// @group scrollview
59142
59969
  $kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
59143
59970
 
59971
+ /// The offset of the ScrollView pager.
59972
+ /// @group scrollview
59144
59973
  $kendo-scrollview-pager-offset: 0 !default;
59974
+ /// The spacing between the ScrollView pager items.
59975
+ /// @group scrollview
59145
59976
  $kendo-scrollview-pager-item-spacing: 20px !default;
59977
+ /// The border width of the ScrollView pager items.
59978
+ /// @group scrollview
59146
59979
  $kendo-scrollview-pager-item-border-width: 0px !default;
59980
+ /// The height of the ScrollView pager.
59981
+ /// @group scrollview
59147
59982
  $kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
59148
59983
 
59149
- $kendo-scrollview-pager-multidot-threshold: 10 !default;
59150
- $kendo-scrollview-pager-multidot-intermediate: 3 !default;
59151
- $kendo-scrollview-pager-multidot-step: 1px !default;
59152
-
59984
+ /// The text color of the highlight over the tapped ScrollView navigation arrows.
59985
+ /// @group scrollview
59153
59986
  $kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
59987
+ /// The color of the ScrollView navigation arrows.
59988
+ /// @group scrollview
59154
59989
  $kendo-scrollview-navigation-color: white !default;
59990
+ /// The box shadow of the ScrollView navigation arrows.
59991
+ /// @group scrollview
59155
59992
  $kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
59993
+ /// The background color of the ScrollView navigation.
59994
+ /// @group scrollview
59156
59995
  $kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
59996
+ /// The opacity of the ScrollView navigation.
59997
+ /// @group scrollview
59157
59998
  $kendo-scrollview-navigation-default-opacity: .7 !default;
59999
+ /// The hover opacity of the ScrollView navigation.
60000
+ /// @group scrollview
59158
60001
  $kendo-scrollview-navigation-hover-opacity: 1 !default;
60002
+ /// The hover background color of the ScrollView navigation arrows.
60003
+ /// @group scrollview
59159
60004
  $kendo-scrollview-navigation-hover-span-bg: null !default;
59160
60005
 
60006
+ /// The background color of the ScrollView pager in light mode.
60007
+ /// @group scrollview
59161
60008
  $kendo-scrollview-light-bg: rgba( white, .4 ) !default;
60009
+ /// The background color of the ScrollView pager in dark mode.
60010
+ /// @group scrollview
59162
60011
  $kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
59163
60012
 
60013
+ /// The duration of the ScrollView transition.
60014
+ /// @group scrollview
59164
60015
  $kendo-scrollview-transition-duration: .3s !default;
60016
+ /// The timing function of the ScrollView transition.
60017
+ /// @group scrollview
59165
60018
  $kendo-scrollview-transition-timing-function: ease-in-out !default;
59166
60019
 
59167
60020
  // #endregion