@progress/kendo-theme-bootstrap 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 (38) hide show
  1. package/dist/all.css +48 -13
  2. package/dist/all.scss +1023 -173
  3. package/dist/meta/sassdoc-data.json +40901 -19313
  4. package/dist/meta/sassdoc-raw-data.json +18105 -8155
  5. package/dist/meta/variables.json +230 -202
  6. package/lib/swatches/bootstrap-3-dark.json +1 -1
  7. package/lib/swatches/bootstrap-3.json +1 -1
  8. package/lib/swatches/bootstrap-4-dark.json +1 -1
  9. package/lib/swatches/bootstrap-4.json +1 -1
  10. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  11. package/lib/swatches/bootstrap-main-dark.json +1 -1
  12. package/lib/swatches/bootstrap-main.json +1 -1
  13. package/lib/swatches/bootstrap-nordic.json +1 -1
  14. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  15. package/lib/swatches/bootstrap-turquoise.json +1 -1
  16. package/lib/swatches/bootstrap-urban.json +1 -1
  17. package/lib/swatches/bootstrap-vintage.json +1 -1
  18. package/package.json +5 -5
  19. package/scss/appbar/_variables.scss +39 -7
  20. package/scss/bottom-navigation/_variables.scss +42 -8
  21. package/scss/breadcrumb/_variables.scss +179 -6
  22. package/scss/coloreditor/_variables.scss +53 -4
  23. package/scss/colorgradient/_variables.scss +86 -4
  24. package/scss/colorpalette/_variables.scss +18 -1
  25. package/scss/dialog/_variables.scss +16 -2
  26. package/scss/editor/_variables.scss +33 -0
  27. package/scss/expansion-panel/_variables.scss +55 -11
  28. package/scss/filter/_variables.scss +18 -1
  29. package/scss/listbox/_variables.scss +21 -20
  30. package/scss/listview/_variables.scss +42 -7
  31. package/scss/loader/_variables.scss +88 -12
  32. package/scss/notification/_variables.scss +20 -19
  33. package/scss/popover/_variables.scss +60 -6
  34. package/scss/progressbar/_variables.scss +24 -23
  35. package/scss/scrollview/_variables.scss +59 -6
  36. package/scss/tilelayout/_variables.scss +20 -4
  37. package/scss/upload/_variables.scss +62 -9
  38. 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
 
@@ -21765,53 +21769,129 @@ $_kendo-module-meta: (
21765
21769
  // #region @import "./_variables.scss"; -> scss/loader/_variables.scss
21766
21770
  // Loader
21767
21771
 
21772
+ /// The border radius of the Loader segment.
21773
+ /// @group loader
21768
21774
  $kendo-loader-segment-border-radius: 50% !default;
21775
+
21776
+ /// The size of the small Loader segment.
21777
+ /// @group loader
21769
21778
  $kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
21779
+ /// The size of the medium Loader segment.
21780
+ /// @group loader
21770
21781
  $kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
21782
+ /// The size of the large Loader segment.
21783
+ /// @group loader
21771
21784
  $kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
21772
21785
 
21786
+ /// The padding of the small Loader.
21787
+ /// @group loader
21773
21788
  $kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
21789
+ /// The padding of the medium Loader.
21790
+ /// @group loader
21774
21791
  $kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
21792
+ /// The padding of the large Loader.
21793
+ /// @group loader
21775
21794
  $kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
21776
21795
 
21796
+ /// The width of the small spinner-3 Loader.
21797
+ /// @group loader
21777
21798
  $kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
21778
- $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
21799
+ /// The width of the medium spinner-3 Loader.
21800
+ /// @group loader
21779
21801
  $kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
21780
- $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
21802
+ /// The width of the large spinner-3 Loader.
21803
+ /// @group loader
21781
21804
  $kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
21805
+
21806
+ /// The height of the small spinner-3 Loader.
21807
+ /// @group loader
21808
+ $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
21809
+ /// The height of the medium spinner-3 Loader.
21810
+ /// @group loader
21811
+ $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
21812
+ /// The height of the large spinner-3 Loader.
21813
+ /// @group loader
21782
21814
  $kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
21783
21815
 
21816
+ /// The width of the small spinner-4 Loader.
21817
+ /// @group loader
21784
21818
  $kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
21785
- $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
21819
+ /// The width of the medium spinner-4 Loader.
21820
+ /// @group loader
21786
21821
  $kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
21787
- $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
21822
+ /// The width of the large spinner-4 Loader.
21823
+ /// @group loader
21788
21824
  $kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
21825
+
21826
+ /// The height of the small spinner-4 Loader.
21827
+ /// @group loader
21828
+ $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
21829
+ /// The height of the medium spinner-4 Loader.
21830
+ /// @group loader
21831
+ $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
21832
+ /// The height of the large spinner-4 Loader.
21833
+ /// @group loader
21789
21834
  $kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
21790
21835
 
21836
+ /// The color of the Loader based on the secondary theme color.
21837
+ /// @group loader
21791
21838
  $kendo-loader-secondary-bg: #212529 !default;
21792
21839
 
21840
+ /// The border width of the container panel.
21841
+ /// @group loader
21793
21842
  $kendo-loader-container-panel-border-width: 1px !default;
21843
+ /// The border style of the container panel.
21844
+ /// @group loader
21794
21845
  $kendo-loader-container-panel-border-style: solid !default;
21846
+ /// The border color of the container panel.
21847
+ /// @group loader
21795
21848
  $kendo-loader-container-panel-border-color: $kendo-component-border !default;
21849
+ /// The border radius of the container panel.
21850
+ /// @group loader
21796
21851
  $kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
21852
+ /// The background color of the container panel.
21853
+ /// @group loader
21797
21854
  $kendo-loader-container-panel-bg: $kendo-color-white !default;
21798
21855
 
21856
+ /// The padding of the small Loader container.
21857
+ /// @group loader
21799
21858
  $kendo-loader-sm-container-padding: k-map-get( $kendo-spacing, 4 ) !default;
21800
- $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
21801
- $kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
21802
-
21859
+ /// The padding of the medium Loader container.
21860
+ /// @group loader
21803
21861
  $kendo-loader-md-container-padding: k-map-get( $kendo-spacing, 5 ) !default;
21804
- $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
21805
- $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
21806
-
21862
+ /// The padding of the large Loader container.
21863
+ /// @group loader
21807
21864
  $kendo-loader-lg-container-padding: k-map-get( $kendo-spacing, 6 ) !default;
21865
+
21866
+ /// The gap of the small Loader container.
21867
+ /// @group loader
21868
+ $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
21869
+ /// The gap of the medium Loader container.
21870
+ /// @group loader
21871
+ $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
21872
+ /// The gap of the large Loader container.
21873
+ /// @group loader
21808
21874
  $kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
21809
- $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
21810
21875
 
21876
+ /// The font size of the small Loader container.
21877
+ /// @group loader
21878
+ $kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
21879
+ /// The font size of the medium Loader container.
21880
+ /// @group loader
21881
+ $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
21882
+ /// The font size of the large Loader container.
21883
+ /// @group loader
21884
+ $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
21811
21885
 
21812
- // Loading
21886
+ // Loading indicator
21887
+ /// The background color of the Loading indicator.
21888
+ /// @group loading
21813
21889
  $kendo-loading-bg: $kendo-component-bg !default;
21890
+ /// The text color of the Loading indicator.
21891
+ /// @group loading
21814
21892
  $kendo-loading-text: currentColor !default;
21893
+ /// The opacity of the Loading indicator.
21894
+ /// @group loading
21815
21895
  $kendo-loading-opacity: .3 !default;
21816
21896
 
21817
21897
  // #endregion
@@ -25375,54 +25455,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
25375
25455
  // File already imported_once. Skipping output.
25376
25456
  // #endregion
25377
25457
 
25378
-
25379
25458
  // Window
25380
25459
 
25460
+ /// The width of the border around the Window.
25461
+ /// @group window
25381
25462
  $kendo-window-border-width: 1px !default;
25463
+ /// The border radius of the Window.
25464
+ /// @group window
25382
25465
  $kendo-window-border-radius: $kendo-border-radius-md !default;
25466
+ /// The font family of the Window.
25467
+ /// @group window
25383
25468
  $kendo-window-font-family: $kendo-font-family !default;
25469
+ /// The font size of the Window.
25470
+ /// @group window
25384
25471
  $kendo-window-font-size: $kendo-font-size-md !default;
25472
+ /// The line height of the Window.
25473
+ /// @group window
25385
25474
  $kendo-window-line-height: $kendo-line-height-md !default;
25386
25475
 
25476
+ /// The horizontal padding of the Window titlebar.
25477
+ /// @group window
25387
25478
  $kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
25479
+ /// The vertical padding of the Window titlebar.
25480
+ /// @group window
25388
25481
  $kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
25482
+ /// The width of the border of the Window titlebar.
25483
+ /// @group window
25389
25484
  $kendo-window-titlebar-border-width: 0 0 1px !default;
25485
+ /// The style of the border of the Window titlebar.
25486
+ /// @group window
25390
25487
  $kendo-window-titlebar-border-style: solid !default;
25391
25488
 
25489
+ /// The font size of the title of the Window.
25490
+ /// @group window
25392
25491
  $kendo-window-title-font-size: $kendo-font-size-lg !default;
25492
+ /// The line height of the title of the Window.
25493
+ /// @group window
25393
25494
  $kendo-window-title-line-height: 1.5 !default;
25394
25495
 
25496
+ /// The spacing between the buttons in the Window titlebar.
25497
+ /// @group window
25395
25498
  $kendo-window-actions-gap: .5rem !default;
25396
-
25499
+ /// The opacity of the buttons in the Window titlebar.
25500
+ /// @group window
25397
25501
  $kendo-window-action-opacity: .5 !default;
25502
+ /// The opacity of the hovered buttons in the Window titlebar.
25503
+ /// @group window
25398
25504
  $kendo-window-action-hover-opacity: .75 !default;
25399
25505
 
25506
+ /// The horizontal padding of the content of the Window.
25507
+ /// @group window
25400
25508
  $kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
25509
+ /// The vertical padding of the content of the Window.
25510
+ /// @group window
25401
25511
  $kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
25402
25512
 
25513
+ /// The horizontal padding of the Window action buttons.
25514
+ /// @group window
25403
25515
  $kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
25516
+ /// The vertical padding of the Window action buttons.
25517
+ /// @group window
25404
25518
  $kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
25519
+ /// The width of the top border of the Window action buttons.
25520
+ /// @group window
25405
25521
  $kendo-window-buttongroup-border-width: 1px !default;
25406
25522
 
25523
+ /// The background color of the Window.
25524
+ /// @group window
25407
25525
  $kendo-window-bg: $kendo-component-bg !default;
25526
+ /// The text color of the Window.
25527
+ /// @group window
25408
25528
  $kendo-window-text: $kendo-component-text !default;
25529
+ /// The border color of the Window.
25530
+ /// @group window
25409
25531
  $kendo-window-border: $kendo-component-border !default;
25532
+ /// The box shadow of the Window.
25533
+ /// @group window
25534
+ $kendo-window-shadow: null !default;
25535
+ /// The box shadow of the focused Window.
25536
+ /// @group window
25537
+ $kendo-window-focus-shadow: null !default;
25410
25538
 
25539
+ /// The background color of the Window titlebar.
25540
+ /// @group window
25411
25541
  $kendo-window-titlebar-bg: null !default;
25542
+ /// The text color of the Window titlebar.
25543
+ /// @group window
25412
25544
  $kendo-window-titlebar-text: null !default;
25545
+ /// The border color of the Window titlebar.
25546
+ /// @group window
25413
25547
  $kendo-window-titlebar-border: $kendo-component-border !default;
25548
+ /// The background gradient of the Window titlebar.
25549
+ /// @group window
25414
25550
  $kendo-window-titlebar-gradient: null !default;
25415
25551
 
25416
- $kendo-window-shadow: null !default;
25417
- $kendo-window-focus-shadow: null !default;
25418
-
25552
+ /// The map of the width for the different Window sizes.
25553
+ /// @group window
25419
25554
  $kendo-window-sizes: (
25420
25555
  sm: 300px,
25421
25556
  md: 800px,
25422
25557
  lg: 1200px
25423
25558
  ) !default;
25424
25559
 
25425
- /// Theme colors map for the window.
25560
+ /// The theme colors map for the Window.
25426
25561
  /// @group window
25427
25562
  $kendo-window-theme-colors: (
25428
25563
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -28379,56 +28514,56 @@ $_kendo-module-meta: (
28379
28514
 
28380
28515
  // Component
28381
28516
  // #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
28382
- // Listbox
28517
+ // ListBox
28383
28518
 
28384
- /// Margin between the listbox elements.
28519
+ /// The spacing between the ListBox elements.
28385
28520
  /// @group listbox
28386
28521
  $kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
28387
- /// Margin between the listbox buttons.
28522
+ /// The spacing between the ListBox buttons.
28388
28523
  /// @group listbox
28389
28524
  $kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 4 ) !default;
28390
- /// Width of the listbox.
28525
+ /// The width of the ListBox.
28391
28526
  /// @group listbox
28392
28527
  $kendo-listbox-width: 10em !default;
28393
- /// Height of the listbox.
28528
+ /// The height of the ListBox.
28394
28529
  /// @group listbox
28395
28530
  $kendo-listbox-default-height: 200px !default;
28396
- /// Width of the border around the listbox.
28531
+ /// The width of the border around the ListBox.
28397
28532
  /// @group listbox
28398
28533
  $kendo-listbox-border-width: 1px !default;
28399
- /// Font family of the listbox.
28534
+ /// The font family of the ListBox.
28400
28535
  /// @group listbox
28401
28536
  $kendo-listbox-font-family: $kendo-font-family !default;
28402
- /// Font size of the listbox.
28537
+ /// The font size of the ListBox.
28403
28538
  /// @group listbox
28404
28539
  $kendo-listbox-font-size: $kendo-font-size-md !default;
28405
- /// Line height of the listbox.
28540
+ /// The line height of the ListBoxx.
28406
28541
  /// @group listbox
28407
28542
  $kendo-listbox-line-height: $kendo-line-height-md !default;
28408
- /// Background color of the listbox.
28409
- /// @group listbox
28410
- $kendo-listbox-bg: $kendo-component-bg !default;
28411
- /// Text color of the listbox.
28543
+
28544
+ /// The text color of the ListBox.
28412
28545
  /// @group listbox
28413
28546
  $kendo-listbox-text: $kendo-component-text !default;
28414
- /// Border color of the listbox.
28547
+ /// The background color of the ListBox.
28548
+ /// @group listbox
28549
+ $kendo-listbox-bg: $kendo-component-bg !default;
28550
+ /// The border color of the ListBox.
28415
28551
  /// @group listbox
28416
28552
  $kendo-listbox-border: $kendo-component-border !default;
28417
28553
 
28418
- /// Inline item padding of the listbox.
28554
+ /// The inline padding of the ListBox item.
28419
28555
  /// @group listbox
28420
28556
  $kendo-listbox-item-padding-x: null !default;
28421
- /// Block item padding of the listbox.
28557
+ /// The block padding of the ListBox item.
28422
28558
  /// @group listbox
28423
28559
  $kendo-listbox-item-padding-y: null !default;
28424
28560
 
28425
- /// Width of the border around the drop hint.
28426
- /// @group listbox
28427
- $kendo-listbox-drop-hint-border-width: null !default;
28428
- /// Width of the drop hint.
28561
+ /// The width of the ListBox drop hint.
28429
28562
  /// @group listbox
28430
28563
  $kendo-listbox-drop-hint-width: 1px !default;
28431
-
28564
+ /// The width of the border around the ListBox drop hint.
28565
+ /// @group listbox
28566
+ $kendo-listbox-drop-hint-border-width: null !default;
28432
28567
  // #endregion
28433
28568
  // #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
28434
28569
  // #region @import "@progress/kendo-theme-default/scss/listbox/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listbox/_layout.scss
@@ -28605,77 +28740,78 @@ $_kendo-module-meta: (
28605
28740
 
28606
28741
  // Component
28607
28742
  // #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
28608
- // Progressbar
28743
+ // ProgressBar
28609
28744
 
28610
- /// Height of the progressbar.
28745
+ /// The height of the ProgressBar.
28611
28746
  /// @group progressbar
28612
28747
  $kendo-progressbar-height: $progress-height !default;
28613
- /// Horizontal width of the progressbar.
28748
+ /// The horizontal width of the ProgressBar.
28614
28749
  /// @group progressbar
28615
28750
  $kendo-progressbar-horizontal-width: 100% !default;
28616
- /// Animation timing of the progressbar.
28751
+ /// The animation timing of the ProgressBar.
28617
28752
  /// @group progressbar
28618
28753
  $kendo-progressbar-animation-timing: $progress-bar-animation-timing !default;
28619
- /// Border width of the progressbar.
28754
+ /// The width of the border around the ProgressBar.
28620
28755
  /// @group progressbar
28621
28756
  $kendo-progressbar-border-width: 0px !default;
28622
- /// Font family of the progressbar.
28757
+ /// The font family of the ProgressBar.
28623
28758
  /// @group progressbar
28624
28759
  $kendo-progressbar-font-family: $kendo-font-family !default;
28625
- /// Font size of the progressbar.
28760
+ /// The font size of the ProgressBar.
28626
28761
  /// @group progressbar
28627
28762
  $kendo-progressbar-font-size: $progress-font-size !default;
28628
- /// Line height of the progressbar.
28763
+ /// The line height of the ProgressBar.
28629
28764
  /// @group progressbar
28630
28765
  $kendo-progressbar-line-height: 1 !default;
28631
- /// Background color of the progressbar.
28766
+
28767
+ /// The background color of the ProgressBar.
28632
28768
  /// @group progressbar
28633
28769
  $kendo-progressbar-bg: $gray-200 !default;
28634
- /// Text color of the progressbar.
28770
+ /// The text color of the ProgressBar.
28635
28771
  /// @group progressbar
28636
28772
  $kendo-progressbar-text: k-contrast-color( $gray-200 ) !default;
28637
- /// Border color of the progressbar.
28773
+ /// The border color of the ProgressBar.
28638
28774
  /// @group progressbar
28639
28775
  $kendo-progressbar-border: null !default;
28640
- /// Background gradient of the progressbar.
28776
+ /// The background gradient of the ProgressBar.
28641
28777
  /// @group progressbar
28642
28778
  $kendo-progressbar-gradient: null !default;
28643
28779
 
28644
- /// Progress background color of the progressbar.
28780
+ /// The progress background color of the ProgressBar.
28645
28781
  /// @group progressbar
28646
28782
  $kendo-progressbar-value-bg: $kendo-selected-bg !default;
28647
- /// Progress text color of the progressbar.
28783
+ /// The progress text color of the ProgressBar.
28648
28784
  /// @group progressbar
28649
28785
  $kendo-progressbar-value-text: $kendo-selected-text !default;
28650
- /// Progress border color of the progressbar.
28786
+ /// The progress border color of the ProgressBar.
28651
28787
  /// @group progressbar
28652
28788
  $kendo-progressbar-value-border: null !default;
28653
- /// Progress background gradient of the progressbar.
28789
+ /// The progress background gradient of the ProgressBar.
28654
28790
  /// @group progressbar
28655
28791
  $kendo-progressbar-value-gradient: null !default;
28656
28792
 
28657
- /// Background color of the indeterminate progressbar.
28793
+ /// The background color of the indeterminate ProgressBar.
28658
28794
  /// @group progressbar
28659
28795
  $kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
28660
- /// Text color of the indeterminate progressbar.
28796
+ /// The text color of the indeterminate ProgressBar.
28661
28797
  /// @group progressbar
28662
28798
  $kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
28663
- /// Border color of the indeterminate progressbar.
28799
+ /// The border color of the indeterminate ProgressBar.
28664
28800
  /// @group progressbar
28665
28801
  $kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
28666
- /// Background gradient of the indeterminate progressbar.
28802
+ /// The background gradient of the indeterminate ProgressBar.
28667
28803
  /// @group progressbar
28668
28804
  $kendo-progressbar-indeterminate-gradient: null !default;
28669
28805
 
28670
- /// Border color of the chunk progressbar.
28806
+ /// The border color of the chunk ProgressBar.
28671
28807
  /// @group progressbar
28672
28808
  $kendo-progressbar-chunk-border: $kendo-body-bg !default;
28673
28809
 
28674
28810
  // Circular Progressbar
28675
- /// Arc stroke color of the circular progressbar.
28811
+ /// The arc stroke color of the circular ProgressBar.
28676
28812
  /// @group progressbar
28677
28813
  $kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
28678
- /// Scale stroke background color of the circular progressbar.
28814
+ /// The scale stroke background color of the circular ProgressBar.
28679
28815
  /// @group progressbar
28680
28816
  $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
28681
28817
 
@@ -32037,15 +32173,32 @@ $_kendo-module-meta: (
32037
32173
 
32038
32174
  // Component
32039
32175
  // #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
32040
- // Colorpalette
32176
+ // ColorPalette
32177
+
32178
+ /// The font family of the ColorPalette.
32179
+ /// @group colorpalette
32041
32180
  $kendo-color-palette-font-family: $kendo-font-family !default;
32181
+ /// The font size of the ColorPalette.
32182
+ /// @group colorpalette
32042
32183
  $kendo-color-palette-font-size: $kendo-font-size-md !default;
32184
+ /// The line height of the ColorPalette.
32185
+ /// @group colorpalette
32043
32186
  $kendo-color-palette-line-height: 0 !default;
32044
32187
 
32188
+ /// The width of the ColorPalette tile.
32189
+ /// @group colorpalette
32045
32190
  $kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
32191
+ /// The height of the ColorPalette tile.
32192
+ /// @group colorpalette
32046
32193
  $kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
32194
+ /// The shadow of the ColorPalette focused tile.
32195
+ /// @group colorpalette
32047
32196
  $kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
32197
+ /// The shadow of the ColorPalette hovered tile.
32198
+ /// @group colorpalette
32048
32199
  $kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
32200
+ /// The shadow of the ColorPalette selected tile.
32201
+ /// @group colorpalette
32049
32202
  $kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
32050
32203
 
32051
32204
  // #endregion
@@ -32338,59 +32491,140 @@ $_kendo-module-meta: (
32338
32491
  // File already imported_once. Skipping output.
32339
32492
  // #endregion
32340
32493
 
32341
-
32342
32494
  // ColorGradient
32495
+
32496
+ /// The spacer of the ColorGradient.
32497
+ /// @group cologradient
32343
32498
  $kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 4 ) !default;
32344
32499
 
32500
+ /// The width of the ColorGradient.
32501
+ /// @group cologradient
32345
32502
  $kendo-color-gradient-width: 328px !default;
32503
+ // The width of the border around the ColorGradient.
32504
+ /// @group cologradient
32346
32505
  $kendo-color-gradient-border-width: 1px !default;
32506
+ /// The border radius of the ColorGradient.
32507
+ /// @group cologradient
32347
32508
  $kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
32509
+ /// The vertical padding of the ColorGradient.
32510
+ /// @group cologradient
32348
32511
  $kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
32512
+ /// The horizontal padding of the ColorGradient.
32513
+ /// @group cologradient
32349
32514
  $kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
32515
+ /// The spacing between the sections of the ColorGradient.
32516
+ /// @group cologradient
32350
32517
  $kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
32518
+ /// The font family of the ColorGradient.
32519
+ /// @group cologradient
32351
32520
  $kendo-color-gradient-font-family: $kendo-font-family !default;
32521
+ /// The font size of the ColorGradient.
32522
+ /// @group cologradient
32352
32523
  $kendo-color-gradient-font-size: $kendo-font-size-md !default;
32524
+ /// The line height of the ColorGradient.
32525
+ /// @group cologradient
32353
32526
  $kendo-color-gradient-line-height: $kendo-line-height-md !default;
32354
- $kendo-color-gradient-bg: $kendo-component-bg !default;
32527
+ /// The text color of the ColorGradient.
32528
+ /// @group cologradient
32355
32529
  $kendo-color-gradient-text: $kendo-component-text !default;
32530
+ /// The background color of the ColorGradient.
32531
+ /// @group cologradient
32532
+ $kendo-color-gradient-bg: $kendo-component-bg !default;
32533
+ /// The border color of the ColorGradient.
32534
+ /// @group cologradient
32356
32535
  $kendo-color-gradient-border: $kendo-component-border !default;
32357
32536
 
32537
+ /// The border color of the focused ColorGradient.
32538
+ /// @group cologradient
32358
32539
  $kendo-color-gradient-focus-border: $kendo-hover-border !default;
32540
+ /// The box shadow of the focused ColorGradient.
32541
+ /// @group cologradient
32359
32542
  $kendo-color-gradient-focus-shadow: null !default;
32360
32543
 
32544
+ /// The border radius of the ColorGradient canvas.
32545
+ /// @group cologradient
32361
32546
  $kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
32547
+ /// The spacing between the items of the ColorGradient canvas.
32548
+ /// @group cologradient
32362
32549
  $kendo-color-gradient-canvas-gap: k-map-get( $kendo-spacing, 3 ) !default;
32550
+ /// The height the ColorGradient canvas hsv rectangle.
32551
+ /// @group cologradient
32363
32552
  $kendo-color-gradient-canvas-rectangle-height: 180px !default;
32364
32553
 
32554
+ /// The width of the ColorGradient slider.
32555
+ /// @group cologradient
32365
32556
  $kendo-color-gradient-slider-track-size: 10px !default;
32557
+ /// The border radius of the ColorGradient slider.
32558
+ /// @group cologradient
32366
32559
  $kendo-color-gradient-slider-border-radius: 10px !default;
32560
+ /// The width of the border around the ColorGradient slider drag handle.
32561
+ /// @group cologradient
32367
32562
  $kendo-color-gradient-slider-draghandle-border-width: 3px !default;
32368
32563
 
32564
+ /// The height of the ColorGradient vertical slider.
32565
+ /// @group cologradient
32369
32566
  $kendo-color-gradient-slider-vertical-size: 180px !default;
32567
+ /// The width of the ColorGradient horizontal slider.
32568
+ /// @group cologradient
32370
32569
  $kendo-color-gradient-slider-horizontal-size: 100% !default;
32371
32570
 
32571
+ /// The width of the ColorGradient canvas drag handle.
32572
+ /// @group cologradient
32372
32573
  $kendo-color-gradient-draghandle-width: 14px !default;
32574
+ /// The height of the ColorGradient canvas drag handle.
32575
+ /// @group cologradient
32373
32576
  $kendo-color-gradient-draghandle-height: 14px !default;
32577
+ /// The width of the border around the ColorGradient canvas drag handle.
32578
+ /// @group cologradient
32374
32579
  $kendo-color-gradient-draghandle-border-width: 1px !default;
32580
+ /// The border radius of the ColorGradient canvas drag handle.
32581
+ /// @group cologradient
32375
32582
  $kendo-color-gradient-draghandle-border-radius: 50% !default;
32376
- $kendo-color-gradient-draghandle-bg: transparent !default;
32583
+ /// The text color of the ColorGradient canvas drag handle.
32584
+ /// @group cologradient
32377
32585
  $kendo-color-gradient-draghandle-text: null !default;
32586
+ /// The background color of the ColorGradient canvas drag handle.
32587
+ /// @group cologradient
32588
+ $kendo-color-gradient-draghandle-bg: transparent !default;
32589
+ /// The color of the border around the ColorGradient canvas drag handle.
32590
+ /// @group cologradient
32378
32591
  $kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
32592
+ /// The box shadow of the ColorGradient canvas drag handle.
32593
+ /// @group cologradient
32379
32594
  $kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
32595
+ /// The box shadow of the focused ColorGradient canvas drag handle.
32596
+ /// @group cologradient
32380
32597
  $kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
32598
+ /// The box shadow of the hovered ColorGradient canvas drag handle.
32599
+ /// @group cologradient
32381
32600
  $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
32382
32601
 
32602
+ /// The vertical margin of the ColorGradient canvas drag handle.
32603
+ /// @group cologradient
32383
32604
  $kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
32605
+ /// The horizontal margin of the ColorGradient canvas drag handle.
32606
+ /// @group cologradient
32384
32607
  $kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
32385
32608
 
32609
+ /// The width of the ColorGradient input.
32610
+ /// @group cologradient
32386
32611
  $kendo-color-gradient-input-width: 56px !default;
32612
+ /// The spacing between the ColorGradient inputs.
32613
+ /// @group cologradient
32387
32614
  $kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 2 ) !default;
32615
+ /// The spacing between the ColorGradient inputs and their labels.
32616
+ /// @group cologradient
32388
32617
  $kendo-color-gradient-input-label-gap: k-map-get( $kendo-spacing, 1 ) !default;
32618
+ /// The text color of the ColorGradient input labels.
32619
+ /// @group cologradient
32389
32620
  $kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
32390
32621
 
32622
+ /// The font weight of the ColorGradient contrast ratio text.
32623
+ /// @group cologradient
32391
32624
  $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
32625
+ /// The spacing between the items in the ColorGradient contrast tool.
32626
+ /// @group cologradient
32392
32627
  $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 2 ) !default;
32393
-
32394
32628
  // #endregion
32395
32629
  // #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
32396
32630
  // #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
@@ -32757,38 +32991,86 @@ $_kendo-module-meta: (
32757
32991
 
32758
32992
  // Component
32759
32993
  // #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
32760
- // Coloreditor/FlatColorPicker
32994
+ // ColorEditor/FlatColorPicker
32995
+
32996
+ /// The spacer of the ColorEditor.
32997
+ /// @group coloreditor
32761
32998
  $kendo-color-editor-spacer: k-map-get( $kendo-spacing, 4 ) !default;
32762
32999
 
33000
+ /// The minimum width of the ColorEditor.
33001
+ /// @group coloreditor
32763
33002
  $kendo-color-editor-min-width: 328px !default;
33003
+ /// The width of the border around the ColorEditor.
33004
+ /// @group coloreditor
32764
33005
  $kendo-color-editor-border-width: 1px !default;
33006
+ /// The border radius of the ColorEditor.
33007
+ /// @group coloreditor
32765
33008
  $kendo-color-editor-border-radius: $kendo-border-radius-md !default;
33009
+ /// The font family of the ColorEditor.
33010
+ /// @group coloreditor
32766
33011
  $kendo-color-editor-font-family: $kendo-font-family !default;
33012
+ /// The font size of the ColorEditor.
33013
+ /// @group coloreditor
32767
33014
  $kendo-color-editor-font-size: $kendo-font-size-md !default;
33015
+ /// The line height of the ColorEditor.
33016
+ /// @group coloreditor
32768
33017
  $kendo-color-editor-line-height: $kendo-line-height-md !default;
32769
- $kendo-color-editor-bg: $kendo-component-bg !default;
33018
+ /// The text color of the ColorEditor.
33019
+ /// @group coloreditor
32770
33020
  $kendo-color-editor-text: $kendo-component-text !default;
33021
+ /// The background color of the ColorEditor.
33022
+ /// @group coloreditor
33023
+ $kendo-color-editor-bg: $kendo-component-bg !default;
33024
+ /// The border color of the ColorEditor.
33025
+ /// @group coloreditor
32771
33026
  $kendo-color-editor-border: $kendo-component-border !default;
32772
33027
 
33028
+ /// The border color of the focused ColorEditor.
33029
+ /// @group coloreditor
32773
33030
  $kendo-color-editor-focus-border: $kendo-hover-border !default;
33031
+ /// The box shadow of the focused ColorEditor.
33032
+ /// @group coloreditor
32774
33033
  $kendo-color-editor-focus-shadow: null !default;
32775
33034
 
33035
+ /// The vertical padding of the ColorEditor header.
33036
+ /// @group coloreditor
32776
33037
  $kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
33038
+ /// The horizontal padding of the ColorEditor header.
33039
+ /// @group coloreditor
32777
33040
  $kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
33041
+ /// The spacing between the ColorEditor header actions.
33042
+ /// @group coloreditor
32778
33043
  $kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 2 ) !default;
32779
33044
 
32780
- $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
33045
+ /// The width of the ColorEditor preview.
33046
+ /// @group coloreditor
32781
33047
  $kendo-color-editor-color-preview-width: 32px !default;
33048
+ /// The height of the ColorEditor preview.
33049
+ /// @group coloreditor
32782
33050
  $kendo-color-editor-color-preview-height: 12px !default;
33051
+ /// The spacing between the colors in the ColorEditor preview.
33052
+ /// @group coloreditor
33053
+ $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
32783
33054
 
33055
+ /// The vertical padding of the ColorEditor views container.
33056
+ /// @group coloreditor
32784
33057
  $kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
33058
+ /// The horizontal padding of the ColorEditor views container.
33059
+ /// @group coloreditor
32785
33060
  $kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
33061
+ /// The spacing of the ColorEditor views container.
33062
+ /// @group coloreditor
32786
33063
  $kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
32787
33064
 
33065
+ /// The outline color of the focused ColorGradient.
33066
+ /// @group coloreditor
32788
33067
  $kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
33068
+ /// The outline width of the focused ColorGradient.
33069
+ /// @group coloreditor
32789
33070
  $kendo-color-editor-color-gradient-focus-outline: 2px !default;
33071
+ /// The outline offset of the focused ColorGradient.
33072
+ /// @group coloreditor
32790
33073
  $kendo-color-editor-color-gradient-focus-outline-offset: 2px !default;
32791
-
32792
33074
  // #endregion
32793
33075
  // #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
32794
33076
  // #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
@@ -36291,49 +36573,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
36291
36573
  // #region @import "./_variables.scss"; -> scss/upload/_variables.scss
36292
36574
  // Upload
36293
36575
 
36576
+ /// The width of the border around the Upload.
36577
+ /// @group upload
36294
36578
  $kendo-upload-border-width: 1px !default;
36579
+ /// The font family of the Upload.
36580
+ /// @group upload
36295
36581
  $kendo-upload-font-family: $kendo-font-family !default;
36582
+ /// The font size of the Upload.
36583
+ /// @group upload
36296
36584
  $kendo-upload-font-size: $kendo-font-size-md !default;
36585
+ /// The line height of the Upload.
36586
+ /// @group upload
36297
36587
  $kendo-upload-line-height: $kendo-line-height-md !default;
36588
+ /// The maximum height of the list with uploaded items.
36589
+ /// @group upload
36298
36590
  $kendo-upload-max-height: 300px !default;
36299
36591
 
36300
- $kendo-upload-bg: $kendo-component-bg !default;
36592
+ /// The text color of the Upload.
36593
+ /// @group upload
36301
36594
  $kendo-upload-text: $kendo-component-text !default;
36595
+ /// The background color of the Upload.
36596
+ /// @group upload
36597
+ $kendo-upload-bg: $kendo-component-bg !default;
36598
+ /// The border color of the Upload.
36599
+ /// @group upload
36302
36600
  $kendo-upload-border: $kendo-component-border !default;
36303
36601
 
36602
+ /// The horizontal padding of the Upload dropzone.
36603
+ /// @group upload
36304
36604
  $kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
36605
+ /// The vertical padding of the Upload dropzone.
36606
+ /// @group upload
36305
36607
  $kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36306
- $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
36608
+ /// The text color of the Upload dropzone.
36609
+ /// @group upload
36307
36610
  $kendo-upload-dropzone-text: $kendo-component-header-text !default;
36611
+ /// The background color of the Upload dropzone.
36612
+ /// @group upload
36613
+ $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
36614
+ /// The border color of the Upload dropzone.
36615
+ /// @group upload
36308
36616
  $kendo-upload-dropzone-border: $kendo-upload-border !default;
36617
+ /// The background color of the hovered Upload dropzone.
36618
+ /// @group upload
36309
36619
  $kendo-upload-dropzone-hover-bg: k-try-shade( $kendo-upload-dropzone-bg, .2 ) !default;
36310
36620
 
36621
+ /// The text color of the Upload status message.
36622
+ /// @group upload
36311
36623
  $kendo-upload-status-text: $kendo-subtle-text !default;
36624
+ /// The opacity of the Upload status message.
36625
+ /// @group upload
36312
36626
  $kendo-upload-status-text-opacity: null !default;
36313
36627
 
36628
+ /// The horizontal padding of an uploaded item.
36629
+ /// @group upload
36314
36630
  $kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
36631
+ /// The vertical padding of an uploaded item.
36632
+ /// @group upload
36315
36633
  $kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
36316
36634
 
36635
+ /// The vertical spacing between uploaded batch items.
36636
+ /// @group upload
36317
36637
  $kendo-upload-multiple-items-spacing: 12px !default;
36318
36638
 
36639
+ /// The font size of the Upload validation message.
36640
+ /// @group upload
36319
36641
  $kendo-upload-validation-font-size: 11px !default;
36642
+ /// The horizontal spacing of the Upload status icon.
36643
+ /// @group upload
36320
36644
  $kendo-upload-icon-spacing: $kendo-icon-spacing !default;
36645
+ /// The color of the uploaded items icon.
36646
+ /// @group upload
36321
36647
  $kendo-upload-icon-color: $kendo-subtle-text !default;
36322
36648
 
36323
- $kendo-upload-item-image-width: 24px !default;
36324
- $kendo-upload-item-image-height: 34px !default;
36325
- $kendo-upload-item-image-border: 2px !default;
36326
-
36649
+ /// The thickness of the Upload progress bar.
36650
+ /// @group upload
36327
36651
  $kendo-upload-progress-thickness: 2px !default;
36652
+ /// The background color of the Upload progress bar.
36653
+ /// @group upload
36328
36654
  $kendo-upload-progress-bg: $kendo-color-info !default;
36329
36655
 
36330
- $kendo-upload-success-bg: $kendo-color-success !default;
36656
+ /// The success text color of the Upload.
36657
+ /// @group upload
36331
36658
  $kendo-upload-success-text: $kendo-color-success !default;
36659
+ /// The success background color of the Upload progress bar.
36660
+ /// @group upload
36661
+ $kendo-upload-success-bg: $kendo-color-success !default;
36332
36662
 
36333
- $kendo-upload-error-bg: $kendo-color-error !default;
36663
+ /// The error text color of the Upload.
36664
+ /// @group upload
36334
36665
  $kendo-upload-error-text: $kendo-color-error !default;
36335
- $kendo-upload-error-border: $kendo-color-error !default;
36666
+ /// The error background color of the Upload progress bar.
36667
+ /// @group upload
36668
+ $kendo-upload-error-bg: $kendo-color-error !default;
36336
36669
 
36670
+ /// The shadow of the focused Upload button, actions and uploaded items.
36671
+ /// @group upload
36337
36672
  $kendo-upload-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
36338
36673
 
36339
36674
  // #endregion
@@ -36771,29 +37106,60 @@ $_kendo-module-meta: (
36771
37106
 
36772
37107
  // Component
36773
37108
  // #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
36774
- // Appbar
36775
- $kendo-appbar-margin-y: null !default;
37109
+ // AppBar
37110
+
37111
+ /// The horizontal margin of the AppBar.
37112
+ /// @group appbar
36776
37113
  $kendo-appbar-margin-x: null !default;
36777
- $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
37114
+ /// The vertical margin of the AppBar.
37115
+ /// @group appbar
37116
+ $kendo-appbar-margin-y: null !default;
37117
+ /// The horizontal padding of the AppBar.
37118
+ /// @group appbar
36778
37119
  $kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
37120
+ /// The vertical padding of the AppBar.
37121
+ /// @group appbar
37122
+ $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
37123
+ /// The width of the border around the AppBar.
37124
+ /// @group appbar
36779
37125
  $kendo-appbar-border-width: 0px !default;
36780
-
37126
+ /// The z-index of the AppBar.
37127
+ /// @group appbar
36781
37128
  $kendo-appbar-zindex: 1000 !default;
36782
-
37129
+ /// The font family of the AppBar.
37130
+ /// @group appbar
37131
+ $kendo-appbar-font-family: $kendo-font-family !default;
37132
+ /// The font size of the AppBar.
37133
+ /// @group appbar
36783
37134
  $kendo-appbar-font-size: $kendo-font-size-md !default;
37135
+ /// The line height of the AppBar.
37136
+ /// @group appbar
36784
37137
  $kendo-appbar-line-height: $kendo-line-height-md !default;
36785
- $kendo-appbar-font-family: $kendo-font-family !default;
37138
+
37139
+ /// The spacing between the AppBar sections.
37140
+ /// @group appbar
36786
37141
  $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
36787
37142
 
37143
+ /// The background color of the AppBar based on light theme color.
37144
+ /// @group appbar
36788
37145
  $kendo-appbar-light-bg: $kendo-color-light !default;
37146
+ /// The text color of the AppBar based on light theme color.
37147
+ /// @group appbar
36789
37148
  $kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
36790
37149
 
37150
+ /// The background color of the AppBar based on dark theme color.
37151
+ /// @group appbar
36791
37152
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
37153
+ /// The text color of the AppBar based on dark theme color.
37154
+ /// @group appbar
36792
37155
  $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
36793
37156
 
37157
+ /// The box shadow of the AppBar.
37158
+ /// @group appbar
36794
37159
  $kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
37160
+ /// The box shadow of the AppBar with bottom position.
37161
+ /// @group appbar
36795
37162
  $kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
36796
-
36797
37163
  // #endregion
36798
37164
  // #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
36799
37165
  // #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
@@ -38616,17 +38982,31 @@ $_kendo-module-meta: (
38616
38982
  // Component
38617
38983
  // #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
38618
38984
  // Dialog
38985
+
38986
+ /// The background color of the Dialog titlebar.
38987
+ /// @group dialog
38619
38988
  $kendo-dialog-titlebar-bg: null !default;
38989
+ /// The text color of the Dialog titlebar.
38990
+ /// @group dialog
38620
38991
  $kendo-dialog-titlebar-text: null !default;
38992
+ /// The border color of the Dialog titlebar.
38993
+ /// @group dialog
38621
38994
  $kendo-dialog-titlebar-border: null !default;
38622
38995
 
38996
+ /// The horizontal padding of the Dialog action buttons.
38997
+ /// @group dialog
38623
38998
  $kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
38999
+ /// The vertical padding of the Dialog action buttons.
39000
+ /// @group dialog
38624
39001
  $kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
39002
+ /// The width of the top border of the Dialog action buttons.
39003
+ /// @group dialog
38625
39004
  $kendo-dialog-buttongroup-border-width: 1px !default;
38626
-
39005
+ /// The spacing between the Dialog action buttons.
39006
+ /// @group dialog
38627
39007
  $kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
38628
39008
 
38629
- /// Theme colors map for the dialog.
39009
+ /// The theme colors map for the Dialog.
38630
39010
  /// @group dialog
38631
39011
  $kendo-dialog-theme-colors: (
38632
39012
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -39250,44 +39630,43 @@ $_kendo-module-meta: (
39250
39630
  // #region @import "./_variables.scss"; -> scss/notification/_variables.scss
39251
39631
  // Notification
39252
39632
 
39253
- /// Vertical padding of the notification container.
39633
+ /// The horizontal padding of the Notification.
39254
39634
  /// @group notification
39255
39635
  $kendo-notification-padding-x: $alert-padding-x !default;
39256
- /// Horizontal padding of the notification.
39636
+ /// The vertical padding of the Notification.
39257
39637
  /// @group notification
39258
39638
  $kendo-notification-padding-y: $alert-padding-y !default;
39259
- /// Width of the border around the notification.
39639
+ /// The width of the border around the Notification.
39260
39640
  /// @group notification
39261
39641
  $kendo-notification-border-width: $alert-border-width !default;
39262
- /// Border radius of the notification.
39642
+ /// The border radius of the Notification.
39263
39643
  /// @group notification
39264
39644
  $kendo-notification-border-radius: $alert-border-radius !default;
39265
- /// Box shadow of the notification.
39266
- /// @group notification
39267
- $kendo-notification-shadow: $kendo-popup-shadow !default;
39268
- /// Font family of the notification.
39645
+ /// The font family of the Notification.
39269
39646
  /// @group notification
39270
39647
  $kendo-notification-font-family: $kendo-font-family !default;
39271
- /// Font size of the notification.
39648
+ /// The font size of the Notification.
39272
39649
  /// @group notification
39273
39650
  $kendo-notification-font-size: $kendo-font-size-sm !default;
39274
- /// Line height of the notification.
39651
+ /// The line height of the Notification.
39275
39652
  /// @group notification
39276
39653
  $kendo-notification-line-height: $kendo-line-height-md !default;
39277
-
39278
- /// Horizontal spacing of the notification icon.
39279
- /// @group notification
39280
- $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
39281
-
39282
- /// Background color of the notification.
39654
+ /// The background color of the Notification.
39283
39655
  /// @group notification
39284
39656
  $kendo-notification-bg: $kendo-component-bg !default;
39285
- /// Text color of the notification.
39657
+ /// The text color of the Notification.
39286
39658
  /// @group notification
39287
39659
  $kendo-notification-text: $kendo-component-text !default;
39288
- /// Border color of the notification.
39660
+ /// The border color of the Notification.
39289
39661
  /// @group notification
39290
39662
  $kendo-notification-border: $kendo-component-border !default;
39663
+ /// The box shadow of the Notification.
39664
+ /// @group notification
39665
+ $kendo-notification-shadow: $kendo-popup-shadow !default;
39666
+
39667
+ /// The horizontal spacing of the Notification icon.
39668
+ /// @group notification
39669
+ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
39291
39670
 
39292
39671
  @function notification-theme( $colors ) {
39293
39672
  $_theme: ();
@@ -39303,9 +39682,11 @@ $kendo-notification-border: $kendo-component-border !default;
39303
39682
  @return $_theme;
39304
39683
  }
39305
39684
 
39306
- /// Theme colors of the notification.
39685
+ /// The theme colors map for the Notification.
39307
39686
  /// @group notification
39308
39687
  $kendo-notification-theme-colors: $kendo-theme-colors !default;
39688
+ /// The generated theme colors map for the Notification.
39689
+ /// @group notification
39309
39690
  $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
39310
39691
 
39311
39692
  // #endregion
@@ -40130,37 +40511,90 @@ $kendo-card-callout-height: 1.3em !default;
40130
40511
  // Component
40131
40512
  // #region @import "./_variables.scss"; -> scss/popover/_variables.scss
40132
40513
  // Popover
40514
+
40515
+ /// The width of the border around the Popover.
40516
+ /// @group popover
40133
40517
  $kendo-popover-border-width: $kendo-card-border-width !default;
40518
+ /// The style of the border around the Popover.
40519
+ /// @group popover
40134
40520
  $kendo-popover-border-style: solid !default;
40521
+ /// The radius of the border around the Popover.
40522
+ /// @group popover
40135
40523
  $kendo-popover-border-radius: $kendo-card-border-radius !default;
40136
- $kendo-popover-font-size: $kendo-card-font-size !default;
40524
+ /// The font family of the Popover.
40525
+ /// @group popover
40137
40526
  $kendo-popover-font-family: $kendo-card-font-family !default;
40527
+ /// The font size of the Popover.
40528
+ /// @group popover
40529
+ $kendo-popover-font-size: $kendo-card-font-size !default;
40530
+ /// The line height of the Popover.
40531
+ /// @group popover
40138
40532
  $kendo-popover-line-height: $kendo-card-line-height !default;
40139
- $kendo-popover-bg: $kendo-card-bg !default;
40533
+
40534
+ /// The text color of the Popover.
40535
+ /// @group popover
40140
40536
  $kendo-popover-text: $kendo-card-text !default;
40537
+ /// The background color of the Popover.
40538
+ /// @group popover
40539
+ $kendo-popover-bg: $kendo-card-bg !default;
40540
+ /// The border color of the Popover.
40541
+ /// @group popover
40141
40542
  $kendo-popover-border: $kendo-card-border !default;
40543
+ /// The box shadow of the Popover.
40544
+ /// @group popover
40142
40545
  $kendo-popover-shadow: $kendo-card-shadow !default;
40143
40546
 
40144
- $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
40547
+ /// The horizontal padding of the Popover header.
40548
+ /// @group popover
40145
40549
  $kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
40550
+ /// The vertical padding of the Popover header.
40551
+ /// @group popover
40552
+ $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
40553
+ /// The border width of the Popover header.
40554
+ /// @group popover
40146
40555
  $kendo-popover-header-border-width: $kendo-card-header-border-width !default;
40556
+ /// The border style of the Popover header.
40557
+ /// @group popover
40147
40558
  $kendo-popover-header-border-style: $kendo-popover-border-style !default;
40148
- $kendo-popover-header-bg: null !default;
40559
+ /// The text color of the Popover header.
40560
+ /// @group popover
40149
40561
  $kendo-popover-header-text: null !default;
40562
+ /// The background color of the Popover header.
40563
+ /// @group popover
40564
+ $kendo-popover-header-bg: null !default;
40565
+ /// The border color of the Popover header.
40566
+ /// @group popover
40150
40567
  $kendo-popover-header-border: null !default;
40151
40568
 
40152
- $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
40569
+ /// The horizontal padding of the Popover body.
40570
+ /// @group popover
40153
40571
  $kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
40572
+ /// The vertical padding of the Popover body.
40573
+ /// @group popover
40574
+ $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
40154
40575
 
40576
+ /// The border width of the Popover actions.
40577
+ /// @group popover
40155
40578
  $kendo-popover-actions-border-width: $kendo-popover-border-width !default;
40156
40579
 
40580
+ /// The width of the Popover callout.
40581
+ /// @group popover
40157
40582
  $kendo-popover-callout-width: $kendo-card-callout-width !default;
40583
+ /// The height of the Popover callout.
40584
+ /// @group popover
40158
40585
  $kendo-popover-callout-height: $kendo-card-callout-height !default;
40586
+ /// The border width of the Popover callout.
40587
+ /// @group popover
40159
40588
  $kendo-popover-callout-border-width: $kendo-popover-border-width !default;
40589
+ /// The border style of the Popover callout.
40590
+ /// @group popover
40160
40591
  $kendo-popover-callout-border-style: $kendo-popover-border-style !default;
40592
+ /// The background color of the Popover callout.
40593
+ /// @group popover
40161
40594
  $kendo-popover-callout-bg: $kendo-popover-bg !default;
40595
+ /// The border color of the Popover callout.
40596
+ /// @group popover
40162
40597
  $kendo-popover-callout-border: $kendo-popover-border !default;
40163
-
40164
40598
  // #endregion
40165
40599
  // #region @import "./_layout.scss"; -> scss/popover/_layout.scss
40166
40600
  // #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
@@ -40522,35 +40956,68 @@ $_kendo-module-meta: (
40522
40956
 
40523
40957
  // Component
40524
40958
  // #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
40525
- // Bottom-navigation
40959
+ // BottomNavigation
40960
+
40961
+ /// The horizontal padding of the BottomNavigation.
40962
+ /// @group bottom-navigation
40526
40963
  $kendo-bottom-nav-padding-x: 0px !default;
40964
+ /// The vertical padding of the BottomNavigation.
40965
+ /// @group bottom-navigation
40527
40966
  $kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
40967
+ /// The spacing between the BottomNavigation items.
40968
+ /// @group bottom-navigation
40528
40969
  $kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
40970
+ /// The width of the border around the BottomNavigation.
40971
+ /// @group bottom-navigation
40529
40972
  $kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
40530
-
40973
+ /// The font family of the BottomNavigation.
40974
+ /// @group bottom-navigation
40531
40975
  $kendo-bottom-nav-font-family: $kendo-font-family !default;
40976
+ /// The font size of the BottomNavigation.
40977
+ /// @group bottom-navigation
40532
40978
  $kendo-bottom-nav-font-size: $kendo-font-size-md !default;
40979
+ /// The line height of the BottomNavigation.
40980
+ /// @group bottom-navigation
40533
40981
  $kendo-bottom-nav-line-height: normal !default;
40982
+ /// The letter spacing of the BottomNavigation.
40983
+ /// @group bottom-navigation
40534
40984
  $kendo-bottom-nav-letter-spacing: .2px !default;
40535
40985
 
40986
+ /// The horizontal padding of the BottomNavigation item.
40987
+ /// @group bottom-navigation
40536
40988
  $kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
40989
+ /// The vertical padding of the BottomNavigation item.
40990
+ /// @group bottom-navigation
40537
40991
  $kendo-bottom-nav-item-padding-y: 0 !default;
40992
+ /// The minimum width of the BottomNavigation item.
40993
+ /// @group bottom-navigation
40538
40994
  $kendo-bottom-nav-item-min-width: 72px !default;
40995
+ /// The maximum width of the BottomNavigation item.
40996
+ /// @group bottom-navigation
40539
40997
  $kendo-bottom-nav-item-max-width: null !default;
40998
+ /// The minimum height of the BottomNavigation item.
40999
+ /// @group bottom-navigation
40540
41000
  $kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{k-map-get( $kendo-spacing, 4 )} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
41001
+ /// The border radius of the BottomNavigation item.
41002
+ /// @group bottom-navigation
40541
41003
  $kendo-bottom-nav-item-border-radius: null !default;
41004
+ /// The spacing of the BottomNavigation item.
41005
+ /// @group bottom-navigation
40542
41006
  $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
40543
41007
 
40544
- $kendo-bottom-nav-item-icon-margin-y: k-map-get( $kendo-spacing, 2 ) !default;
40545
- $kendo-bottom-nav-item-icon-margin-x: $kendo-bottom-nav-item-icon-margin-y !default;
40546
- $kendo-bottom-nav-item-disabled-opacity: .5 !default;
40547
-
41008
+ /// The box shadow of the BottomNavigation.
41009
+ /// @group bottom-navigation
40548
41010
  $kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
40549
41011
 
40550
- $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
41012
+ /// The text color of the flat BottomNavigation.
41013
+ /// @group bottom-navigation
40551
41014
  $kendo-bottom-nav-flat-text: $kendo-component-text !default;
41015
+ /// The background color of the flat BottomNavigation.
41016
+ /// @group bottom-navigation
41017
+ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
41018
+ /// The border color of the flat BottomNavigation.
41019
+ /// @group bottom-navigation
40552
41020
  $kendo-bottom-nav-flat-border: $kendo-component-border !default;
40553
-
40554
41021
  // #endregion
40555
41022
  // #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
40556
41023
  // #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
@@ -40807,63 +41274,236 @@ $_kendo-module-meta: (
40807
41274
  // #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
40808
41275
  // Breadcrumb
40809
41276
 
41277
+ /// The width of the border around the Breadcrumb.
41278
+ /// @group breadcrumb
41279
+ $kendo-breadcrumb-border-width: 0px !default;
41280
+
41281
+ /// The horizontal margin of the Breadcrumb.
41282
+ /// @group breadcrumb
40810
41283
  $kendo-breadcrumb-margin-x: null !default;
41284
+ /// The vertical margin of the Breadcrumb.
41285
+ /// @group breadcrumb
40811
41286
  $kendo-breadcrumb-margin-y: null !default;
41287
+
41288
+ /// The horizontal padding of the Breadcrumb.
41289
+ /// @group breadcrumb
40812
41290
  $kendo-breadcrumb-padding-x: null !default;
41291
+ /// The vertical padding of the Breadcrumb.
41292
+ /// @group breadcrumb
40813
41293
  $kendo-breadcrumb-padding-y: null !default;
40814
- $kendo-breadcrumb-border-width: 0px !default;
40815
41294
 
41295
+ /// The font family of the Breadcrumb.
41296
+ /// @group breadcrumb
40816
41297
  $kendo-breadcrumb-font-family: $kendo-font-family !default;
41298
+
41299
+ /// The font size of the Breadcrumb.
41300
+ /// @group breadcrumb
40817
41301
  $kendo-breadcrumb-font-size: $kendo-font-size-md !default;
41302
+ /// The font size of the small Breadcrumb.
41303
+ /// @group breadcrumb
41304
+ $kendo-breadcrumb-sm-font-size: $kendo-font-size-sm !default;
41305
+ /// The font size of the medium Breadcrumb.
41306
+ /// @group breadcrumb
41307
+ $kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
41308
+ /// The font size of the large Breadcrumb.
41309
+ /// @group breadcrumb
41310
+ $kendo-breadcrumb-lg-font-size: $kendo-font-size-md !default;
41311
+
41312
+ /// The line-height of the Breadcrumb.
41313
+ /// @group breadcrumb
40818
41314
  $kendo-breadcrumb-line-height: $kendo-line-height-md !default;
40819
-
41315
+ /// The line-height of the small Breadcrumb.
41316
+ /// @group breadcrumb
41317
+ $kendo-breadcrumb-sm-line-height: k-math-div( 20, 14 ) !default;
41318
+ /// The line-height of the medium Breadcrumb.
41319
+ /// @group breadcrumb
41320
+ $kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
41321
+ /// The line-height of the height Breadcrumb.
41322
+ /// @group breadcrumb
41323
+ $kendo-breadcrumb-lg-line-height: $kendo-line-height-md !default;
41324
+
41325
+ /// The base background of the Breadcrumb.
41326
+ /// @group breadcrumb
40820
41327
  $kendo-breadcrumb-bg: $kendo-component-bg !default;
41328
+ /// The base text color of the Breadcrumb.
41329
+ /// @group breadcrumb
40821
41330
  $kendo-breadcrumb-text: $kendo-component-text !default;
41331
+ /// The base border color of the Breadcrumb.
41332
+ /// @group breadcrumb
40822
41333
  $kendo-breadcrumb-border: $kendo-component-border !default;
40823
41334
 
41335
+ /// The box shadow of the focused Breadcrumb.
41336
+ /// @group breadcrumb
41337
+ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
41338
+
41339
+ /// The horizontal padding of the Breadcrumb link.
41340
+ /// @group breadcrumb
40824
41341
  $kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
41342
+ /// The horizontal padding of the small Breadcrumb link.
41343
+ /// @group breadcrumb
41344
+ $kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
41345
+ /// The horizontal padding of the medium Breadcrumb link.
41346
+ /// @group breadcrumb
41347
+ $kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
41348
+ /// The horizontal padding of the large Breadcrumb link.
41349
+ /// @group breadcrumb
41350
+ $kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
41351
+
41352
+ /// The vertical padding of the Breadcrumb link.
41353
+ /// @group breadcrumb
40825
41354
  $kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
41355
+ /// The vertical padding of the small Breadcrumb link.
41356
+ /// @group breadcrumb
41357
+ $kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
41358
+ /// The vertical padding of the medium Breadcrumb link.
41359
+ /// @group breadcrumb
41360
+ $kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
41361
+ /// The vertical padding of the large Breadcrumb link.
41362
+ /// @group breadcrumb
41363
+ $kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
41364
+
41365
+ /// The border-radius of the Breadcrumb link.
41366
+ /// @group breadcrumb
40826
41367
  $kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
40827
41368
 
40828
- $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
40829
- $kendo-breadcrumb-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-x !default;
40830
-
40831
- $kendo-breadcrumb-root-link-spacing: $kendo-breadcrumb-link-padding-x !default;
40832
- $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
40833
-
41369
+ /// The vertical padding of the Breadcrumb link icon.
41370
+ /// @group breadcrumb
41371
+ $kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
41372
+ /// The vertical padding of the small Breadcrumb link icon.
41373
+ /// @group breadcrumb
41374
+ $kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
41375
+ /// The vertical padding of the medium Breadcrumb link icon.
41376
+ /// @group breadcrumb
41377
+ $kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
41378
+ /// The vertical padding of the large Breadcrumb link icon.
41379
+ /// @group breadcrumb
41380
+ $kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3.5 ) !default;
41381
+
41382
+ /// The horizontal padding of the Breadcrumb link icon.
41383
+ /// @group breadcrumb
41384
+ $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
41385
+ /// The horizontal padding of the small Breadcrumb link icon.
41386
+ /// @group breadcrumb
41387
+ $kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
41388
+ /// The horizontal padding of the medium Breadcrumb link icon.
41389
+ /// @group breadcrumb
41390
+ $kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
41391
+ /// The horizontal padding of the large Breadcrumb link icon.
41392
+ /// @group breadcrumb
41393
+ $kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
41394
+
41395
+ /// The text color of the Breadcrumb link.
41396
+ /// @group breadcrumb
40834
41397
  $kendo-breadcrumb-link-initial-text: inherit !default;
41398
+ /// The spacing of the Breadcrumb link icon.
41399
+ /// @group breadcrumb
41400
+ $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
40835
41401
 
41402
+ /// The background color of the Breadcrumb link.
41403
+ /// @group breadcrumb
40836
41404
  $kendo-breadcrumb-link-bg: null !default;
41405
+ /// The text color of the Breadcrumb link.
41406
+ /// @group breadcrumb
40837
41407
  $kendo-breadcrumb-link-text: $kendo-link-text !default;
41408
+ /// The border color of the Breadcrumb link.
41409
+ /// @group breadcrumb
40838
41410
  $kendo-breadcrumb-link-border: null !default;
40839
41411
 
41412
+ /// The background color of the hovered Breadcrumb link.
41413
+ /// @group breadcrumb
40840
41414
  $kendo-breadcrumb-link-hover-bg: null !default;
41415
+ /// The text color of the hovered Breadcrumb link.
41416
+ /// @group breadcrumb
40841
41417
  $kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
41418
+ /// The border color of the hovered Breadcrumb link.
41419
+ /// @group breadcrumb
40842
41420
  $kendo-breadcrumb-link-hover-border: null !default;
40843
41421
 
41422
+ /// The background color of the focused Breadcrumb link.
41423
+ /// @group breadcrumb
40844
41424
  $kendo-breadcrumb-link-focus-bg: null !default;
41425
+ /// The text color of the focused Breadcrumb link.
41426
+ /// @group breadcrumb
40845
41427
  $kendo-breadcrumb-link-focus-text: null !default;
41428
+ /// The border color of the focused Breadcrumb link.
41429
+ /// @group breadcrumb
40846
41430
  $kendo-breadcrumb-link-focus-border: null !default;
41431
+ /// The box shadow of the focused Breadcrumb link.
41432
+ /// @group breadcrumb
40847
41433
  $kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px rgba( $kendo-breadcrumb-text, .25 ) !default;
40848
41434
 
41435
+ /// The background color of the Breadcrumb root link.
41436
+ /// @group breadcrumb
40849
41437
  $kendo-breadcrumb-root-link-bg: null !default;
41438
+ /// The text color of the Breadcrumb root link.
41439
+ /// @group breadcrumb
40850
41440
  $kendo-breadcrumb-root-link-text: $kendo-link-text !default;
41441
+ /// The border color of the Breadcrumb root link.
41442
+ /// @group breadcrumb
40851
41443
  $kendo-breadcrumb-root-link-border: null !default;
40852
41444
 
41445
+ /// The background color of the hovered Breadcrumb root link.
41446
+ /// @group breadcrumb
40853
41447
  $kendo-breadcrumb-root-link-hover-bg: null !default;
41448
+ /// The text color of the hovered Breadcrumb root link.
41449
+ /// @group breadcrumb
40854
41450
  $kendo-breadcrumb-root-link-hover-text: $kendo-link-hover-text !default;
41451
+ /// The border color of the hovered Breadcrumb root link.
41452
+ /// @group breadcrumb
40855
41453
  $kendo-breadcrumb-root-link-hover-border: null !default;
40856
41454
 
41455
+ /// The background color of the focused Breadcrumb root link.
41456
+ /// @group breadcrumb
40857
41457
  $kendo-breadcrumb-root-link-focus-bg: null !default;
41458
+ /// The text color of the focused Breadcrumb root link.
41459
+ /// @group breadcrumb
40858
41460
  $kendo-breadcrumb-root-link-focus-text: null !default;
41461
+ /// The border color of the focused Breadcrumb root link.
41462
+ /// @group breadcrumb
40859
41463
  $kendo-breadcrumb-root-link-focus-border: null !default;
41464
+ /// The box shadow of the focused Breadcrumb root link.
41465
+ /// @group breadcrumb
40860
41466
  $kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
40861
41467
 
41468
+ /// The background color of the current Breadcrumb root link.
41469
+ /// @group breadcrumb
40862
41470
  $kendo-breadcrumb-current-item-bg: null !default;
41471
+ /// The text color of the current Breadcrumb root link.
41472
+ /// @group breadcrumb
40863
41473
  $kendo-breadcrumb-current-item-text: $kendo-color-secondary !default;
41474
+ /// The border color of the current Breadcrumb root link.
41475
+ /// @group breadcrumb
40864
41476
  $kendo-breadcrumb-current-item-border: null !default;
40865
41477
 
40866
- $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
41478
+
41479
+ /// The sizes map for the Breadcrumb.
41480
+ /// @group breadcrumb
41481
+ $kendo-breadcrumb-sizes: (
41482
+ sm: (
41483
+ link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
41484
+ link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
41485
+ icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
41486
+ icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
41487
+ font-size: $kendo-breadcrumb-sm-font-size,
41488
+ line-height: $kendo-breadcrumb-sm-line-height
41489
+ ),
41490
+ md: (
41491
+ link-padding-x: $kendo-breadcrumb-md-link-padding-x,
41492
+ link-padding-y: $kendo-breadcrumb-md-link-padding-y,
41493
+ icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
41494
+ icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
41495
+ font-size: $kendo-breadcrumb-md-font-size,
41496
+ line-height: $kendo-breadcrumb-md-line-height
41497
+ ),
41498
+ lg: (
41499
+ link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
41500
+ link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
41501
+ icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
41502
+ icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
41503
+ font-size: $kendo-breadcrumb-lg-font-size,
41504
+ line-height: $kendo-breadcrumb-lg-line-height
41505
+ )
41506
+ ) !default;
40867
41507
 
40868
41508
  // #endregion
40869
41509
  // #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
@@ -40881,8 +41521,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40881
41521
  box-sizing: border-box;
40882
41522
  outline: 0;
40883
41523
  font-family: $kendo-breadcrumb-font-family;
40884
- font-size: $kendo-breadcrumb-font-size;
40885
- line-height: $kendo-breadcrumb-line-height;
40886
41524
  display: flex;
40887
41525
  flex-direction: row;
40888
41526
  -webkit-touch-callout: none;
@@ -40934,8 +41572,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40934
41572
  .k-breadcrumb-link,
40935
41573
  .k-breadcrumb-root-link {
40936
41574
  @include border-radius( $kendo-breadcrumb-link-border-radius );
40937
- padding-block: $kendo-breadcrumb-link-padding-y;
40938
- padding-inline: $kendo-breadcrumb-link-padding-x;
40939
41575
  color: $kendo-breadcrumb-link-initial-text;
40940
41576
  text-decoration: none;
40941
41577
  white-space: nowrap;
@@ -40949,21 +41585,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40949
41585
  transition: $kendo-transition;
40950
41586
  }
40951
41587
 
40952
- .k-breadcrumb-root-link {
40953
- margin-inline-end: $kendo-breadcrumb-root-link-spacing;
40954
- }
40955
-
40956
41588
  .k-breadcrumb-link > .k-image,
40957
41589
  .k-breadcrumb-icontext-link .k-icon,
40958
41590
  .k-breadcrumb-icontext-link .k-svg-icon {
40959
41591
  margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
40960
41592
  }
40961
41593
 
40962
- .k-breadcrumb-icon-link {
40963
- padding-block: $kendo-breadcrumb-icon-link-padding-y;
40964
- padding-inline: $kendo-breadcrumb-icon-link-padding-x;
40965
- }
40966
-
40967
41594
 
40968
41595
  // Breadcrumb delimiter
40969
41596
  .k-breadcrumb-delimiter,
@@ -40982,6 +41609,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
40982
41609
  }
40983
41610
  }
40984
41611
 
41612
+
41613
+ // Sizes
41614
+ @each $size, $size-props in $kendo-breadcrumb-sizes {
41615
+ $_link-padding-x: k-map-get( $size-props, link-padding-x );
41616
+ $_link-padding-y: k-map-get( $size-props, link-padding-y );
41617
+ $_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
41618
+ $_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
41619
+ $_font-size: k-map-get( $size-props, font-size );
41620
+ $_line-height: k-map-get( $size-props, line-height );
41621
+
41622
+ .k-breadcrumb-#{$size} {
41623
+ font-size: $_font-size;
41624
+ line-height: $_line-height;
41625
+
41626
+
41627
+ .k-breadcrumb-link,
41628
+ .k-breadcrumb-root-link {
41629
+ padding-block: $_link-padding-y;
41630
+ padding-inline: $_link-padding-x;
41631
+ }
41632
+
41633
+ .k-breadcrumb-icon-link {
41634
+ padding-block: $_icon-link-padding-y;
41635
+ padding-inline: $_icon-link-padding-x;
41636
+ }
41637
+ }
41638
+ }
41639
+
40985
41640
  }
40986
41641
 
40987
41642
 
@@ -43290,40 +43945,83 @@ $_kendo-module-meta: (
43290
43945
 
43291
43946
  // Component
43292
43947
  // #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
43293
- // Expansion panel
43948
+ // ExpansionPanel
43949
+
43950
+ /// The vertical spacing of the ExpansionPanel.
43951
+ /// @group expander
43294
43952
  $kendo-expander-spacing-y: k-map-get( $kendo-spacing, 3 ) !default;
43953
+ /// The width of the border around the ExpansionPanel.
43954
+ /// @group expander
43955
+ $kendo-expander-border-width: 1px !default;
43956
+ /// The font family of the ExpansionPanel.
43957
+ /// @group expander
43295
43958
  $kendo-expander-font-family: $kendo-font-family !default;
43959
+ /// The font size of the ExpansionPanel.
43960
+ /// @group expander
43296
43961
  $kendo-expander-font-size: $kendo-font-size-md !default;
43962
+ /// The hine height of the ExpansionPanel.
43963
+ /// @group expander
43297
43964
  $kendo-expander-line-height: $kendo-line-height-md !default;
43298
- $kendo-expander-border-width: 1px !default;
43299
-
43300
- $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
43301
- $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
43302
-
43303
- $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
43304
43965
 
43305
- $kendo-expander-bg: $kendo-component-bg !default;
43966
+ /// The text color of the ExpansionPanel.
43967
+ /// @group expander
43306
43968
  $kendo-expander-text: $kendo-component-text !default;
43969
+ /// The background color of the ExpansionPanel.
43970
+ /// @group expander
43971
+ $kendo-expander-bg: $kendo-component-bg !default;
43972
+ /// The border color of the ExpansionPanel.
43973
+ /// @group expander
43307
43974
  $kendo-expander-border: $kendo-component-border !default;
43308
43975
 
43976
+ /// The box shadow of the focused ExpansionPanel.
43977
+ /// @group expander
43309
43978
  $kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
43310
43979
 
43311
- $kendo-expander-header-bg: transparent !default;
43980
+ /// The horizontal padding of the ExpansionPanel header.
43981
+ /// @group expander
43982
+ $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
43983
+ /// The vertical padding of the ExpansionPanel header.
43984
+ /// @group expander
43985
+ $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
43986
+
43987
+ /// The text color of the ExpansionPanel header.
43988
+ /// @group expander
43312
43989
  $kendo-expander-header-text: $kendo-expander-text !default;
43990
+ /// The background color of the ExpansionPanel header.
43991
+ /// @group expander
43992
+ $kendo-expander-header-bg: transparent !default;
43993
+ /// The border color of the ExpansionPanel header.
43994
+ /// @group expander
43313
43995
  $kendo-expander-header-border: null !default;
43314
43996
 
43997
+ /// The background color of the hovered ExpansionPanel header.
43998
+ /// @group expander
43315
43999
  $kendo-expander-header-hover-bg: rgba( black, .04 ) !default;
43316
-
44000
+ /// The background color of the focused ExpansionPanel header.
44001
+ /// @group expander
43317
44002
  $kendo-expander-header-focus-bg: null !default;
44003
+ /// The box shadow of the focused ExpansionPanel header.
44004
+ /// @group expander
43318
44005
  $kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
43319
44006
 
44007
+ /// The text color of the ExpansionPanel title.
44008
+ /// @group expander
43320
44009
  $kendo-expander-title-text: $kendo-color-primary !default;
43321
44010
 
44011
+ /// The text color of the ExpansionPanel sub-title.
44012
+ /// @group expander
43322
44013
  $kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
43323
44014
 
44015
+ /// The horizontal margin of the ExpansionPanel indicator.
44016
+ /// @group expander
44017
+ $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
44018
+
44019
+ /// The horizontal padding of the ExpansionPanel content.
44020
+ /// @group expander
43324
44021
  $kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 6 ) !default;
44022
+ /// The vertical padding of the ExpansionPanel content.
44023
+ /// @group expander
43325
44024
  $kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 6 ) !default;
43326
-
43327
44025
  // #endregion
43328
44026
  // #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
43329
44027
  // #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
@@ -44425,17 +45123,33 @@ $_kendo-module-meta: (
44425
45123
  // Component
44426
45124
  // #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
44427
45125
  // TileLayout
45126
+
45127
+ /// The width of the border around the TileLayout.
45128
+ /// @group tilelayout
44428
45129
  $kendo-tile-layout-border-width: 0px !default;
45130
+ /// The background color of the TileLayout.
45131
+ /// @group tilelayout
45132
+ $kendo-tile-layout-bg: $gray-100 !default;
45133
+
45134
+ /// The width of the border around the TileLayout card.
45135
+ /// @group tilelayout
44429
45136
  $kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
45137
+ /// The focus box shadow of the TileLayout card.
45138
+ /// @group tilelayout
44430
45139
  $kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
44431
45140
 
45141
+ /// The width of the border around the TileLayout hint.
45142
+ /// @group tilelayout
44432
45143
  $kendo-tile-layout-hint-border-width: 1px !default;
45144
+ /// The radius of the border around the TileLayout hint.
45145
+ /// @group tilelayout
44433
45146
  $kendo-tile-layout-hint-border-radius: $kendo-card-border-radius !default;
44434
-
44435
- $kendo-tile-layout-bg: $gray-100 !default;
44436
-
44437
- $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
45147
+ /// The color of the border around the TileLayout hint.
45148
+ /// @group tilelayout
44438
45149
  $kendo-tile-layout-hint-border: $kendo-component-border !default;
45150
+ /// The background color of the TileLayout hint.
45151
+ /// @group tilelayout
45152
+ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
44439
45153
 
44440
45154
  // #endregion
44441
45155
  // #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
@@ -48123,32 +48837,66 @@ $_kendo-module-meta: (
48123
48837
 
48124
48838
  // Component
48125
48839
  // #region @import "./_variables.scss"; -> scss/listview/_variables.scss
48126
- // Listview
48840
+ // ListView
48841
+
48842
+ /// The horizontal padding of the ListView.
48843
+ /// @group listview
48127
48844
  $kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
48845
+ /// The vertical padding of the ListView.
48846
+ /// @group listview
48128
48847
  $kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
48848
+ /// The width of the border around bordered ListView.
48849
+ /// @group listview
48129
48850
  $kendo-listview-border-width: 1px !default;
48851
+ /// The font family of the ListView.
48852
+ /// @group listview
48130
48853
  $kendo-listview-font-family: $kendo-font-family !default;
48854
+ /// The font size of the ListView.
48855
+ /// @group listview
48131
48856
  $kendo-listview-font-size: $kendo-font-size-md !default;
48857
+ /// The line height of the ListView.
48858
+ /// @group listview
48132
48859
  $kendo-listview-line-height: $kendo-line-height-md !default;
48133
48860
 
48134
- $kendo-listview-bg: $kendo-component-bg !default;
48861
+ /// The text color of the ListView.
48862
+ /// @group listview
48135
48863
  $kendo-listview-text: $kendo-component-text !default;
48864
+ /// The background color of the ListView.
48865
+ /// @group listview
48866
+ $kendo-listview-bg: $kendo-component-bg !default;
48867
+ /// The border color of the ListView.
48868
+ /// @group listview
48136
48869
  $kendo-listview-border: $kendo-component-border !default;
48137
48870
 
48138
- $kendo-listview-grid-gap: 10px !default;
48139
-
48871
+ /// The horizontal padding of the ListView items.
48872
+ /// @group listview
48140
48873
  $kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
48874
+ /// The vertical padding of the ListView items.
48875
+ /// @group listview
48141
48876
  $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
48142
48877
 
48143
- $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
48878
+ /// The text color of the selected ListView items.
48879
+ /// @group listview
48144
48880
  $kendo-listview-item-selected-text: null !default;
48881
+ /// The background color of the selected ListView items.
48882
+ /// @group listview
48883
+ $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
48884
+ /// The border color of the selected ListView items.
48885
+ /// @group listview
48145
48886
  $kendo-listview-item-selected-border: null !default;
48146
48887
 
48147
- $kendo-listview-item-focus-bg: null !default;
48888
+ /// The text color of the focused ListView items.
48889
+ /// @group listview
48148
48890
  $kendo-listview-item-focus-text: null !default;
48891
+ /// The background color of the focused ListView items.
48892
+ /// @group listview
48893
+ $kendo-listview-item-focus-bg: null !default;
48894
+ /// The border color of the focused ListView items.
48895
+ /// @group listview
48149
48896
  $kendo-listview-item-focus-border: null !default;
48897
+ /// The box shadow of the focused ListView items.
48898
+ /// @group listview
48150
48899
  $kendo-listview-item-focus-shadow: inset 0 0 0 3px rgba( $kendo-listview-text, .15 ) !default;
48151
-
48152
48900
  // #endregion
48153
48901
  // #region @import "./_layout.scss"; -> scss/listview/_layout.scss
48154
48902
  // #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
@@ -51370,19 +52118,35 @@ $_kendo-module-meta: (
51370
52118
  // Component
51371
52119
  // #region @import "./_variables.scss"; -> scss/filter/_variables.scss
51372
52120
  // Filter expression builder
52121
+
52122
+ /// The horizontal padding of the Filter.
52123
+ /// @group filter
51373
52124
  $kendo-filter-padding-x: $kendo-padding-md-x !default;
52125
+ /// The vertical padding of the Filter.
52126
+ /// @group filter
51374
52127
  $kendo-filter-padding-y: $kendo-padding-md-y !default;
51375
52128
 
52129
+ /// The bottom margin of the Filter.
52130
+ /// @group filter
51376
52131
  $kendo-filter-bottom-margin: 2.1em !default;
52132
+ /// The width of the line that connects the Filter items.
52133
+ /// @group filter
51377
52134
  $kendo-filter-line-size: 1px !default;
51378
52135
 
52136
+ /// The width of the dropdown elements in the Filter items.
52137
+ /// @group filter
51379
52138
  $kendo-filter-operator-dropdown-width: 15em !default;
51380
52139
 
52140
+ /// The text color of the Filter preview field.
52141
+ /// @group filter
51381
52142
  $kendo-filter-preview-field-text: $kendo-color-primary !default;
52143
+ /// The text color of the Filter preview operator.
52144
+ /// @group filter
51382
52145
  $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
51383
52146
 
52147
+ /// The box shadow of the focused Filter toolbar.
52148
+ /// @group filter
51384
52149
  $kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem rgba( $kendo-color-primary, .25 ) !default;
51385
-
51386
52150
  // #endregion
51387
52151
  // #region @import "./_layout.scss"; -> scss/filter/_layout.scss
51388
52152
  // #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
@@ -52711,27 +53475,60 @@ $_kendo-module-meta: (
52711
53475
  // Component
52712
53476
  // #region @import "./_variables.scss"; -> scss/editor/_variables.scss
52713
53477
  // Editor
53478
+
53479
+ /// The width of the border around the Еditor.
53480
+ /// @group editor
52714
53481
  $kendo-editor-border-width: 1px !default;
53482
+ /// The font family of the Еditor.
53483
+ /// @group editor
52715
53484
  $kendo-editor-font-family: $kendo-font-family !default;
53485
+ /// The font size of the Еditor.
53486
+ /// @group editor
52716
53487
  $kendo-editor-font-size: $kendo-font-size-md !default;
53488
+ /// The line height of the Еditor.
53489
+ /// @group editor
52717
53490
  $kendo-editor-line-height: $kendo-line-height-md !default;
52718
53491
 
53492
+ /// The text color of the Еditor placeholder.
53493
+ /// @group editor
52719
53494
  $kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
53495
+ /// The opacity of the Editor placeholder.
53496
+ /// @group editor
52720
53497
  $kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
52721
53498
 
53499
+ /// The selected text color of the Editor.
53500
+ /// @group editor
52722
53501
  $kendo-editor-selected-text: $kendo-color-primary-contrast !default;
53502
+ /// The selected background color of the Editor.
53503
+ /// @group editor
52723
53504
  $kendo-editor-selected-bg: $kendo-color-primary !default;
52724
53505
 
53506
+ /// The highlighted background color of the Editor.
53507
+ /// @group editor
52725
53508
  $kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
52726
53509
 
53510
+ /// The horizontal margin of the Editor's export tool icon.
53511
+ /// @group editor
52727
53512
  $kendo-editor-export-tool-icon-margin-x: .25em !default;
52728
53513
 
53514
+ /// The size of the Editor's resize handle.
53515
+ /// @group editor
52729
53516
  $kendo-editor-resize-handle-size: 8px !default;
53517
+ /// The border width of the Editor's resize handle.
53518
+ /// @group editor
52730
53519
  $kendo-editor-resize-handle-border-width: 1px !default;
53520
+ /// The border color of the Editor's resize handle.
53521
+ /// @group editor
52731
53522
  $kendo-editor-resize-handle-border: #000000 !default;
53523
+ /// The background color of the Editor's resize handle.
53524
+ /// @group editor
52732
53525
  $kendo-editor-resize-handle-bg: #ffffff !default;
52733
53526
 
53527
+ /// The outline width of the Editor's selected node.
53528
+ /// @group editor
52734
53529
  $kendo-editor-selectednode-outline-width: 2px !default;
53530
+ /// The outline color of the Editor's selected node.
53531
+ /// @group editor
52735
53532
  $kendo-editor-selectednode-outline-color: #88ccff !default;
52736
53533
 
52737
53534
  // #endregion
@@ -59097,44 +59894,97 @@ $_kendo-module-meta: (
59097
59894
 
59098
59895
  // Component
59099
59896
  // #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
59100
- // Scrollview
59897
+ // ScrollView
59898
+
59899
+ /// The width of the border around the ScrollView.
59900
+ /// @group scrollview
59101
59901
  $kendo-scrollview-border-width: 1px !default;
59902
+ /// The font family of the ScrollView.
59903
+ /// @group scrollview
59102
59904
  $kendo-scrollview-font-family: $kendo-font-family !default;
59905
+ /// The font size of the ScrollView.
59906
+ /// @group scrollview
59103
59907
  $kendo-scrollview-font-size: $kendo-font-size-md !default;
59908
+ /// The line height of the ScrollView.
59909
+ /// @group scrollview
59104
59910
  $kendo-scrollview-line-height: $kendo-line-height-md !default;
59105
59911
 
59106
- $kendo-scrollview-bg: $kendo-component-bg !default;
59912
+ /// The text color of the ScrollView.
59913
+ /// @group scrollview
59107
59914
  $kendo-scrollview-text: $kendo-component-text !default;
59915
+ /// The background color of the ScrollView.
59916
+ /// @group scrollview
59917
+ $kendo-scrollview-bg: $kendo-component-bg !default;
59918
+ /// The border color of the ScrollView.
59919
+ /// @group scrollview
59108
59920
  $kendo-scrollview-border: $kendo-component-border !default;
59109
59921
 
59922
+ /// The size of the ScrollView page button.
59923
+ /// @group scrollview
59110
59924
  $kendo-scrollview-pagebutton-size: 10px !default;
59925
+ /// The background color of the ScrollView page button.
59926
+ /// @group scrollview
59111
59927
  $kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
59928
+ /// The border color of the ScrollView page button.
59929
+ /// @group scrollview
59112
59930
  $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
59931
+ /// The primary background color of the ScrollView page button.
59932
+ /// @group scrollview
59113
59933
  $kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
59934
+ /// The primary border color of the ScrollView page button.
59935
+ /// @group scrollview
59114
59936
  $kendo-scrollview-pagebutton-primary-border: $kendo-color-primary !default;
59937
+ /// The box shadow of the ScrollView page button.
59938
+ /// @group scrollview
59115
59939
  $kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
59116
59940
 
59941
+ /// The offset of the ScrollView pager.
59942
+ /// @group scrollview
59117
59943
  $kendo-scrollview-pager-offset: 0 !default;
59944
+ /// The spacing between the ScrollView pager items.
59945
+ /// @group scrollview
59118
59946
  $kendo-scrollview-pager-item-spacing: 20px !default;
59947
+ /// The border width of the ScrollView pager items.
59948
+ /// @group scrollview
59119
59949
  $kendo-scrollview-pager-item-border-width: 0px !default;
59950
+ /// The height of the ScrollView pager.
59951
+ /// @group scrollview
59120
59952
  $kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
59121
59953
 
59122
- $kendo-scrollview-pager-multidot-threshold: 10 !default;
59123
- $kendo-scrollview-pager-multidot-intermediate: 3 !default;
59124
- $kendo-scrollview-pager-multidot-step: 1px !default;
59125
-
59954
+ /// The text color of the highlight over the tapped ScrollView navigation arrows.
59955
+ /// @group scrollview
59126
59956
  $kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
59957
+ /// The color of the ScrollView navigation arrows.
59958
+ /// @group scrollview
59127
59959
  $kendo-scrollview-navigation-color: white !default;
59960
+ /// The box shadow of the ScrollView navigation arrows.
59961
+ /// @group scrollview
59128
59962
  $kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
59963
+ /// The background color of the ScrollView navigation.
59964
+ /// @group scrollview
59129
59965
  $kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
59966
+ /// The opacity of the ScrollView navigation.
59967
+ /// @group scrollview
59130
59968
  $kendo-scrollview-navigation-default-opacity: .7 !default;
59969
+ /// The hover opacity of the ScrollView navigation.
59970
+ /// @group scrollview
59131
59971
  $kendo-scrollview-navigation-hover-opacity: 1 !default;
59972
+ /// The hover background color of the ScrollView navigation arrows.
59973
+ /// @group scrollview
59132
59974
  $kendo-scrollview-navigation-hover-span-bg: null !default;
59133
59975
 
59976
+ /// The background color of the ScrollView pager in light mode.
59977
+ /// @group scrollview
59134
59978
  $kendo-scrollview-light-bg: rgba( white, .4 ) !default;
59979
+ /// The background color of the ScrollView pager in dark mode.
59980
+ /// @group scrollview
59135
59981
  $kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
59136
59982
 
59983
+ /// The duration of the ScrollView transition.
59984
+ /// @group scrollview
59137
59985
  $kendo-scrollview-transition-duration: .3s !default;
59986
+ /// The timing function of the ScrollView transition.
59987
+ /// @group scrollview
59138
59988
  $kendo-scrollview-transition-timing-function: ease-in-out !default;
59139
59989
 
59140
59990
  // #endregion