@progress/kendo-theme-classic 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 (40) hide show
  1. package/dist/all.css +48 -13
  2. package/dist/all.scss +1023 -174
  3. package/dist/meta/sassdoc-data.json +40914 -19326
  4. package/dist/meta/sassdoc-raw-data.json +18106 -8156
  5. package/dist/meta/variables.json +235 -207
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +5 -5
  21. package/scss/appbar/_variables.scss +39 -7
  22. package/scss/bottom-navigation/_variables.scss +42 -8
  23. package/scss/breadcrumb/_variables.scss +177 -6
  24. package/scss/coloreditor/_variables.scss +53 -4
  25. package/scss/colorgradient/_variables.scss +86 -5
  26. package/scss/colorpalette/_variables.scss +18 -1
  27. package/scss/dialog/_variables.scss +16 -2
  28. package/scss/editor/_variables.scss +33 -0
  29. package/scss/expansion-panel/_variables.scss +56 -12
  30. package/scss/filter/_variables.scss +18 -1
  31. package/scss/listbox/_variables.scss +21 -20
  32. package/scss/listview/_variables.scss +42 -7
  33. package/scss/loader/_variables.scss +88 -12
  34. package/scss/notification/_variables.scss +20 -19
  35. package/scss/popover/_variables.scss +60 -6
  36. package/scss/progressbar/_variables.scss +24 -23
  37. package/scss/scrollview/_variables.scss +59 -6
  38. package/scss/tilelayout/_variables.scss +21 -4
  39. package/scss/upload/_variables.scss +62 -9
  40. 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
 
@@ -19753,53 +19757,129 @@ $_kendo-module-meta: (
19753
19757
  // #region @import "./_variables.scss"; -> scss/loader/_variables.scss
19754
19758
  // Loader
19755
19759
 
19760
+ /// The border radius of the Loader segment.
19761
+ /// @group loader
19756
19762
  $kendo-loader-segment-border-radius: 50% !default;
19763
+
19764
+ /// The size of the small Loader segment.
19765
+ /// @group loader
19757
19766
  $kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
19767
+ /// The size of the medium Loader segment.
19768
+ /// @group loader
19758
19769
  $kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
19770
+ /// The size of the large Loader segment.
19771
+ /// @group loader
19759
19772
  $kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
19760
19773
 
19774
+ /// The padding of the small Loader.
19775
+ /// @group loader
19761
19776
  $kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
19777
+ /// The padding of the medium Loader.
19778
+ /// @group loader
19762
19779
  $kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
19780
+ /// The padding of the large Loader.
19781
+ /// @group loader
19763
19782
  $kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
19764
19783
 
19784
+ /// The width of the small spinner-3 Loader.
19785
+ /// @group loader
19765
19786
  $kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
19766
- $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
19787
+ /// The width of the medium spinner-3 Loader.
19788
+ /// @group loader
19767
19789
  $kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
19768
- $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
19790
+ /// The width of the large spinner-3 Loader.
19791
+ /// @group loader
19769
19792
  $kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
19793
+
19794
+ /// The height of the small spinner-3 Loader.
19795
+ /// @group loader
19796
+ $kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
19797
+ /// The height of the medium spinner-3 Loader.
19798
+ /// @group loader
19799
+ $kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
19800
+ /// The height of the large spinner-3 Loader.
19801
+ /// @group loader
19770
19802
  $kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
19771
19803
 
19804
+ /// The width of the small spinner-4 Loader.
19805
+ /// @group loader
19772
19806
  $kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
19773
- $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
19807
+ /// The width of the medium spinner-4 Loader.
19808
+ /// @group loader
19774
19809
  $kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
19775
- $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
19810
+ /// The width of the large spinner-4 Loader.
19811
+ /// @group loader
19776
19812
  $kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
19813
+
19814
+ /// The height of the small spinner-4 Loader.
19815
+ /// @group loader
19816
+ $kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
19817
+ /// The height of the medium spinner-4 Loader.
19818
+ /// @group loader
19819
+ $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
19820
+ /// The height of the large spinner-4 Loader.
19821
+ /// @group loader
19777
19822
  $kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
19778
19823
 
19824
+ /// The color of the Loader based on the secondary theme color.
19825
+ /// @group loader
19779
19826
  $kendo-loader-secondary-bg: #656565 !default;
19780
19827
 
19828
+ /// The border width of the container panel.
19829
+ /// @group loader
19781
19830
  $kendo-loader-container-panel-border-width: 1px !default;
19831
+ /// The border style of the container panel.
19832
+ /// @group loader
19782
19833
  $kendo-loader-container-panel-border-style: solid !default;
19834
+ /// The border color of the container panel.
19835
+ /// @group loader
19783
19836
  $kendo-loader-container-panel-border-color: $kendo-component-border !default;
19837
+ /// The border radius of the container panel.
19838
+ /// @group loader
19784
19839
  $kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
19840
+ /// The background color of the container panel.
19841
+ /// @group loader
19785
19842
  $kendo-loader-container-panel-bg: $kendo-color-white !default;
19786
19843
 
19844
+ /// The padding of the small Loader container.
19845
+ /// @group loader
19787
19846
  $kendo-loader-sm-container-padding: 15px !default;
19788
- $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
19789
- $kendo-loader-sm-container-font-size: $kendo-font-size-xs !default;
19790
-
19847
+ /// The padding of the medium Loader container.
19848
+ /// @group loader
19791
19849
  $kendo-loader-md-container-padding: 20px !default;
19792
- $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
19793
- $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
19794
-
19850
+ /// The padding of the large Loader container.
19851
+ /// @group loader
19795
19852
  $kendo-loader-lg-container-padding: 25px !default;
19853
+
19854
+ /// The gap of the small Loader container.
19855
+ /// @group loader
19856
+ $kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
19857
+ /// The gap of the medium Loader container.
19858
+ /// @group loader
19859
+ $kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
19860
+ /// The gap of the large Loader container.
19861
+ /// @group loader
19796
19862
  $kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
19797
- $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
19798
19863
 
19864
+ /// The font size of the small Loader container.
19865
+ /// @group loader
19866
+ $kendo-loader-sm-container-font-size: $kendo-font-size-xs !default;
19867
+ /// The font size of the medium Loader container.
19868
+ /// @group loader
19869
+ $kendo-loader-md-container-font-size: $kendo-font-size-md !default;
19870
+ /// The font size of the large Loader container.
19871
+ /// @group loader
19872
+ $kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
19799
19873
 
19800
- // Loading
19874
+ // Loading indicator
19875
+ /// The background color of the Loading indicator.
19876
+ /// @group loading
19801
19877
  $kendo-loading-bg: $kendo-component-bg !default;
19878
+ /// The text color of the Loading indicator.
19879
+ /// @group loading
19802
19880
  $kendo-loading-text: currentColor !default;
19881
+ /// The opacity of the Loading indicator.
19882
+ /// @group loading
19803
19883
  $kendo-loading-opacity: .3 !default;
19804
19884
 
19805
19885
  // #endregion
@@ -23321,54 +23401,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
23321
23401
  // File already imported_once. Skipping output.
23322
23402
  // #endregion
23323
23403
 
23324
-
23325
23404
  // Window
23326
23405
 
23406
+ /// The width of the border around the Window.
23407
+ /// @group window
23327
23408
  $kendo-window-border-width: 1px !default;
23409
+ /// The border radius of the Window.
23410
+ /// @group window
23328
23411
  $kendo-window-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
23412
+ /// The font family of the Window.
23413
+ /// @group window
23329
23414
  $kendo-window-font-family: $kendo-font-family !default;
23415
+ /// The font size of the Window.
23416
+ /// @group window
23330
23417
  $kendo-window-font-size: $kendo-font-size-md !default;
23418
+ /// The line height of the Window.
23419
+ /// @group window
23331
23420
  $kendo-window-line-height: $kendo-line-height-md !default;
23332
23421
 
23422
+ /// The horizontal padding of the Window titlebar.
23423
+ /// @group window
23333
23424
  $kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
23425
+ /// The vertical padding of the Window titlebar.
23426
+ /// @group window
23334
23427
  $kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
23428
+ /// The width of the border of the Window titlebar.
23429
+ /// @group window
23335
23430
  $kendo-window-titlebar-border-width: 0 0 1px !default;
23431
+ /// The style of the border of the Window titlebar.
23432
+ /// @group window
23336
23433
  $kendo-window-titlebar-border-style: solid !default;
23337
23434
 
23435
+ /// The font size of the title of the Window.
23436
+ /// @group window
23338
23437
  $kendo-window-title-font-size: $kendo-font-size-lg !default;
23438
+ /// The line height of the title of the Window.
23439
+ /// @group window
23339
23440
  $kendo-window-title-line-height: 1.25 !default;
23340
23441
 
23442
+ /// The spacing between the buttons in the Window titlebar.
23443
+ /// @group window
23341
23444
  $kendo-window-actions-gap: null !default;
23342
-
23445
+ /// The opacity of the buttons in the Window titlebar.
23446
+ /// @group window
23343
23447
  $kendo-window-action-opacity: null !default;
23448
+ /// The opacity of the hovered buttons in the Window titlebar.
23449
+ /// @group window
23344
23450
  $kendo-window-action-hover-opacity: null !default;
23345
23451
 
23452
+ /// The horizontal padding of the content of the Window.
23453
+ /// @group window
23346
23454
  $kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
23455
+ /// The vertical padding of the content of the Window.
23456
+ /// @group window
23347
23457
  $kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
23348
23458
 
23459
+ /// The horizontal padding of the Window action buttons.
23460
+ /// @group window
23349
23461
  $kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
23462
+ /// The vertical padding of the Window action buttons.
23463
+ /// @group window
23350
23464
  $kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
23465
+ /// The width of the top border of the Window action buttons.
23466
+ /// @group window
23351
23467
  $kendo-window-buttongroup-border-width: 1px !default;
23352
23468
 
23469
+ /// The background color of the Window.
23470
+ /// @group window
23353
23471
  $kendo-window-bg: $kendo-component-bg !default;
23472
+ /// The text color of the Window.
23473
+ /// @group window
23354
23474
  $kendo-window-text: $kendo-component-text !default;
23475
+ /// The border color of the Window.
23476
+ /// @group window
23355
23477
  $kendo-window-border: $kendo-component-border !default;
23478
+ /// The box shadow of the Window.
23479
+ /// @group window
23480
+ $kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
23481
+ /// The box shadow of the focused Window.
23482
+ /// @group window
23483
+ $kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
23356
23484
 
23485
+ /// The background color of the Window titlebar.
23486
+ /// @group window
23357
23487
  $kendo-window-titlebar-bg: $kendo-component-header-bg !default;
23488
+ /// The text color of the Window titlebar.
23489
+ /// @group window
23358
23490
  $kendo-window-titlebar-text: $kendo-component-header-text !default;
23491
+ /// The border color of the Window titlebar.
23492
+ /// @group window
23359
23493
  $kendo-window-titlebar-border: $kendo-component-header-border !default;
23494
+ /// The background gradient of the Window titlebar.
23495
+ /// @group window
23360
23496
  $kendo-window-titlebar-gradient: $kendo-component-header-gradient !default;
23361
23497
 
23362
- $kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
23363
- $kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
23364
-
23498
+ /// The map of the width for the different Window sizes.
23499
+ /// @group window
23365
23500
  $kendo-window-sizes: (
23366
23501
  sm: 300px,
23367
23502
  md: 800px,
23368
23503
  lg: 1200px
23369
23504
  ) !default;
23370
23505
 
23371
- /// Theme colors map for the window.
23506
+ /// The theme colors map for the Window.
23372
23507
  /// @group window
23373
23508
  $kendo-window-theme-colors: (
23374
23509
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -26275,55 +26410,56 @@ $_kendo-module-meta: (
26275
26410
 
26276
26411
  // Component
26277
26412
  // #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
26278
- // Listbox
26413
+ // ListBox
26279
26414
 
26280
- /// Margin between the listbox elements.
26415
+ /// The spacing between the ListBox elements.
26281
26416
  /// @group listbox
26282
26417
  $kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
26283
- /// Margin between the listbox buttons.
26418
+ /// The spacing between the ListBox buttons.
26284
26419
  /// @group listbox
26285
26420
  $kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 2 ) !default;
26286
- /// Width of the listbox.
26421
+ /// The width of the ListBox.
26287
26422
  /// @group listbox
26288
26423
  $kendo-listbox-width: 10em !default;
26289
- /// Height of the listbox.
26424
+ /// The height of the ListBox.
26290
26425
  /// @group listbox
26291
26426
  $kendo-listbox-default-height: 200px !default;
26292
- /// Width of the border around the listbox.
26427
+ /// The width of the border around the ListBox.
26293
26428
  /// @group listbox
26294
26429
  $kendo-listbox-border-width: 1px !default;
26295
- /// Font family of the listbox.
26430
+ /// The font family of the ListBox.
26296
26431
  /// @group listbox
26297
26432
  $kendo-listbox-font-family: $kendo-font-family !default;
26298
- /// Font size of the listbox.
26433
+ /// The font size of the ListBox.
26299
26434
  /// @group listbox
26300
26435
  $kendo-listbox-font-size: $kendo-font-size-md !default;
26301
- /// Line height of the listbox.
26436
+ /// The line height of the ListBox.
26302
26437
  /// @group listbox
26303
26438
  $kendo-listbox-line-height: $kendo-line-height-md !default;
26304
- /// Background color of the listbox.
26305
- /// @group listbox
26306
- $kendo-listbox-bg: $kendo-component-bg !default;
26307
- /// Text color of the listbox.
26439
+
26440
+ /// The text color of the ListBox.
26308
26441
  /// @group listbox
26309
26442
  $kendo-listbox-text: $kendo-component-text !default;
26310
- /// Border color of the listbox.
26443
+ /// The background color of the ListBox.
26444
+ /// @group listbox
26445
+ $kendo-listbox-bg: $kendo-component-bg !default;
26446
+ /// The border color of the ListBox.
26311
26447
  /// @group listbox
26312
26448
  $kendo-listbox-border: $kendo-component-border !default;
26313
26449
 
26314
- /// Inline item padding of the listbox.
26450
+ /// The inline padding of the ListBox item.
26315
26451
  /// @group listbox
26316
26452
  $kendo-listbox-item-padding-x: null !default;
26317
- /// Block item padding of the listbox.
26453
+ /// The block padding of the ListBox item.
26318
26454
  /// @group listbox
26319
26455
  $kendo-listbox-item-padding-y: null !default;
26320
26456
 
26321
- /// Width of the border around the drop hint.
26322
- /// @group listbox
26323
- $kendo-listbox-drop-hint-border-width: null !default;
26324
- /// Width of the drop hint.
26457
+ /// The width of the ListBox drop hint.
26325
26458
  /// @group listbox
26326
26459
  $kendo-listbox-drop-hint-width: 1px !default;
26460
+ /// The width of the border around the ListBox drop hint.
26461
+ /// @group listbox
26462
+ $kendo-listbox-drop-hint-border-width: null !default;
26327
26463
 
26328
26464
  // #endregion
26329
26465
  // #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
@@ -26501,77 +26637,78 @@ $_kendo-module-meta: (
26501
26637
 
26502
26638
  // Component
26503
26639
  // #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
26504
- // Progressbar
26640
+ // ProgressBar
26505
26641
 
26506
- /// Height of the progressbar.
26642
+ /// The height of the ProgressBar.
26507
26643
  /// @group progressbar
26508
26644
  $kendo-progressbar-height: 22px !default;
26509
- /// Horizontal width of the progressbar.
26645
+ /// The horizontal width of the ProgressBar.
26510
26646
  /// @group progressbar
26511
26647
  $kendo-progressbar-horizontal-width: 100% !default;
26512
- /// Animation timing of the progressbar.
26648
+ /// The animation timing of the ProgressBar.
26513
26649
  /// @group progressbar
26514
26650
  $kendo-progressbar-animation-timing: 1s linear infinite !default;
26515
- /// Border width of the progressbar.
26651
+ /// The width of the border around the ProgressBar.
26516
26652
  /// @group progressbar
26517
26653
  $kendo-progressbar-border-width: 0px !default;
26518
- /// Font family of the progressbar.
26654
+ /// The font family of the ProgressBar.
26519
26655
  /// @group progressbar
26520
26656
  $kendo-progressbar-font-family: $kendo-font-family !default;
26521
- /// Font size of the progressbar.
26657
+ /// The font size of the ProgressBar.
26522
26658
  /// @group progressbar
26523
26659
  $kendo-progressbar-font-size: $kendo-font-size-sm !default;
26524
- /// Line height of the progressbar.
26660
+ /// The line height of the ProgressBar.
26525
26661
  /// @group progressbar
26526
26662
  $kendo-progressbar-line-height: 1 !default;
26527
- /// Background color of the progressbar.
26663
+
26664
+ /// The background color of the ProgressBar.
26528
26665
  /// @group progressbar
26529
26666
  $kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
26530
- /// Text color of the progressbar.
26667
+ /// The text color of the ProgressBar.
26531
26668
  /// @group progressbar
26532
26669
  $kendo-progressbar-text: $kendo-component-text !default;
26533
- /// Border color of the progressbar.
26670
+ /// The border color of the ProgressBar.
26534
26671
  /// @group progressbar
26535
26672
  $kendo-progressbar-border: $kendo-component-border !default;
26536
- /// Background gradient of the progressbar.
26673
+ /// The background gradient of the ProgressBar.
26537
26674
  /// @group progressbar
26538
26675
  $kendo-progressbar-gradient: null !default;
26539
26676
 
26540
- /// Progress background color of the progressbar.
26677
+ /// The progress background color of the ProgressBar.
26541
26678
  /// @group progressbar
26542
26679
  $kendo-progressbar-value-bg: $kendo-color-primary !default;
26543
- /// Progress text color of the progressbar.
26680
+ /// The progress text color of the ProgressBar.
26544
26681
  /// @group progressbar
26545
26682
  $kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
26546
- /// Progress border color of the progressbar.
26683
+ /// The progress border color of the ProgressBar.
26547
26684
  /// @group progressbar
26548
26685
  $kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
26549
- /// Progress background gradient of the progressbar.
26686
+ /// The progress background gradient of the ProgressBar.
26550
26687
  /// @group progressbar
26551
26688
  $kendo-progressbar-value-gradient: null !default;
26552
26689
 
26553
- /// Background color of the indeterminate progressbar.
26690
+ /// The background color of the indeterminate ProgressBar.
26554
26691
  /// @group progressbar
26555
26692
  $kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
26556
- /// Text color of the indeterminate progressbar.
26693
+ /// The text color of the indeterminate ProgressBar.
26557
26694
  /// @group progressbar
26558
26695
  $kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
26559
- /// Border color of the indeterminate progressbar.
26696
+ /// The border color of the indeterminate ProgressBar.
26560
26697
  /// @group progressbar
26561
26698
  $kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
26562
- /// Background gradient of the indeterminate progressbar.
26699
+ /// The background gradient of the indeterminate ProgressBar.
26563
26700
  /// @group progressbar
26564
26701
  $kendo-progressbar-indeterminate-gradient: null !default;
26565
26702
 
26566
- /// Border color of the chunk progressbar.
26703
+ /// The border color of the chunk ProgressBar.
26567
26704
  /// @group progressbar
26568
26705
  $kendo-progressbar-chunk-border: $kendo-body-bg !default;
26569
26706
 
26570
26707
  // Circular Progressbar
26571
- /// Arc stroke color of the circular progressbar.
26708
+ /// The arc stroke color of the circular ProgressBar.
26572
26709
  /// @group progressbar
26573
26710
  $kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
26574
- /// Scale stroke background color of the circular progressbar.
26711
+ /// The scale stroke background color of the circular ProgressBar.
26575
26712
  /// @group progressbar
26576
26713
  $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
26577
26714
 
@@ -29928,15 +30065,32 @@ $_kendo-module-meta: (
29928
30065
 
29929
30066
  // Component
29930
30067
  // #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
29931
- // Colorpalette
30068
+ // ColorPalette
30069
+
30070
+ /// The font family of the ColorPalette.
30071
+ /// @group colorpalette
29932
30072
  $kendo-color-palette-font-family: $kendo-font-family !default;
30073
+ /// The font size of the ColorPalette.
30074
+ /// @group colorpalette
29933
30075
  $kendo-color-palette-font-size: $kendo-font-size-md !default;
30076
+ /// The line height of the ColorPalette.
30077
+ /// @group colorpalette
29934
30078
  $kendo-color-palette-line-height: 0 !default;
29935
30079
 
30080
+ /// The width of the ColorPalette tile.
30081
+ /// @group colorpalette
29936
30082
  $kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
30083
+ /// The height of the ColorPalette tile.
30084
+ /// @group colorpalette
29937
30085
  $kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
30086
+ /// The shadow of the ColorPalette focused tile.
30087
+ /// @group colorpalette
29938
30088
  $kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
30089
+ /// The shadow of the ColorPalette hovered tile.
30090
+ /// @group colorpalette
29939
30091
  $kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
30092
+ /// The shadow of the ColorPalette selected tile.
30093
+ /// @group colorpalette
29940
30094
  $kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
29941
30095
 
29942
30096
  // #endregion
@@ -30229,60 +30383,140 @@ $_kendo-module-meta: (
30229
30383
  // File already imported_once. Skipping output.
30230
30384
  // #endregion
30231
30385
 
30232
-
30233
30386
  // ColorGradient
30387
+
30388
+ /// The spacer of the ColorGradient.
30389
+ /// @group cologradient
30234
30390
  $kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 3 ) !default;
30235
30391
 
30392
+ /// The width of the ColorGradient.
30393
+ /// @group cologradient
30236
30394
  $kendo-color-gradient-width: 272px !default;
30395
+ /// The width of the border around the ColorGradient.
30396
+ /// @group cologradient
30237
30397
  $kendo-color-gradient-border-width: 1px !default;
30398
+ /// The border radius of the ColorGradient.
30399
+ /// @group cologradient
30238
30400
  $kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
30401
+ /// The vertical padding of the ColorGradient.
30402
+ /// @group cologradient
30239
30403
  $kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
30404
+ /// The horizontal padding of the ColorGradient.
30405
+ /// @group cologradient
30240
30406
  $kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
30407
+ /// The spacing between the sections of the ColorGradient.
30408
+ /// @group cologradient
30241
30409
  $kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
30410
+ /// The font family of the ColorGradient.
30411
+ /// @group cologradient
30242
30412
  $kendo-color-gradient-font-family: $kendo-font-family !default;
30413
+ /// The font size of the ColorGradient.
30414
+ /// @group cologradient
30243
30415
  $kendo-color-gradient-font-size: $kendo-font-size-md !default;
30416
+ /// The line height of the ColorGradient.
30417
+ /// @group cologradient
30244
30418
  $kendo-color-gradient-line-height: $kendo-line-height-md !default;
30245
- $kendo-color-gradient-bg: $kendo-component-bg !default;
30419
+ /// The text color of the ColorGradient.
30420
+ /// @group cologradient
30246
30421
  $kendo-color-gradient-text: $kendo-component-text !default;
30422
+ /// The background color of the ColorGradient.
30423
+ /// @group cologradient
30424
+ $kendo-color-gradient-bg: $kendo-component-bg !default;
30425
+ /// The border color of the ColorGradient.
30426
+ /// @group cologradient
30247
30427
  $kendo-color-gradient-border: $kendo-component-border !default;
30248
30428
 
30429
+ /// The border color of the focused ColorGradient.
30430
+ /// @group cologradient
30249
30431
  $kendo-color-gradient-focus-border: null !default;
30432
+ /// The box shadow of the focused ColorGradient.
30433
+ /// @group cologradient
30250
30434
  $kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
30251
30435
 
30252
-
30436
+ /// The border radius of the ColorGradient canvas.
30437
+ /// @group cologradient
30253
30438
  $kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
30439
+ /// The spacing between the items of the ColorGradient canvas.
30440
+ /// @group cologradient
30254
30441
  $kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
30442
+ /// The height the ColorGradient canvas hsv rectangle.
30443
+ /// @group cologradient
30255
30444
  $kendo-color-gradient-canvas-rectangle-height: 180px !default;
30256
30445
 
30446
+ /// The width of the ColorGradient slider.
30447
+ /// @group cologradient
30257
30448
  $kendo-color-gradient-slider-track-size: 10px !default;
30449
+ /// The border radius of the ColorGradient slider.
30450
+ /// @group cologradient
30258
30451
  $kendo-color-gradient-slider-border-radius: 10px !default;
30452
+ /// The width of the border around the ColorGradient slider drag handle.
30453
+ /// @group cologradient
30259
30454
  $kendo-color-gradient-slider-draghandle-border-width: 3px !default;
30260
30455
 
30456
+ /// The height of the ColorGradient vertical slider.
30457
+ /// @group cologradient
30261
30458
  $kendo-color-gradient-slider-vertical-size: 180px !default;
30459
+ /// The width of the ColorGradient horizontal slider.
30460
+ /// @group cologradient
30262
30461
  $kendo-color-gradient-slider-horizontal-size: 100% !default;
30263
30462
 
30463
+ /// The width of the ColorGradient canvas drag handle.
30464
+ /// @group cologradient
30264
30465
  $kendo-color-gradient-draghandle-width: 14px !default;
30466
+ /// The height of the ColorGradient canvas drag handle.
30467
+ /// @group cologradient
30265
30468
  $kendo-color-gradient-draghandle-height: 14px !default;
30469
+ /// The width of the border around the ColorGradient canvas drag handle.
30470
+ /// @group cologradient
30266
30471
  $kendo-color-gradient-draghandle-border-width: 1px !default;
30472
+ /// The border radius of the ColorGradient canvas drag handle.
30473
+ /// @group cologradient
30267
30474
  $kendo-color-gradient-draghandle-border-radius: 50% !default;
30268
- $kendo-color-gradient-draghandle-bg: transparent !default;
30475
+ /// The text color of the ColorGradient canvas drag handle.
30476
+ /// @group cologradient
30269
30477
  $kendo-color-gradient-draghandle-text: null !default;
30478
+ /// The background color of the ColorGradient canvas drag handle.
30479
+ /// @group cologradient
30480
+ $kendo-color-gradient-draghandle-bg: transparent !default;
30481
+ /// The color of the border around the ColorGradient canvas drag handle.
30482
+ /// @group cologradient
30270
30483
  $kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
30484
+ /// The box shadow of the ColorGradient canvas drag handle.
30485
+ /// @group cologradient
30271
30486
  $kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
30487
+ /// The box shadow of the focused ColorGradient canvas drag handle.
30488
+ /// @group cologradient
30272
30489
  $kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
30490
+ /// The box shadow of the hovered ColorGradient canvas drag handle.
30491
+ /// @group cologradient
30273
30492
  $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
30274
30493
 
30494
+ /// The vertical margin of the ColorGradient canvas drag handle.
30495
+ /// @group cologradient
30275
30496
  $kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
30497
+ /// The horizontal margin of the ColorGradient canvas drag handle.
30498
+ /// @group cologradient
30276
30499
  $kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
30277
30500
 
30501
+ /// The width of the ColorGradient input.
30502
+ /// @group cologradient
30278
30503
  $kendo-color-gradient-input-width: 46px !default;
30504
+ /// The spacing between the ColorGradient inputs.
30505
+ /// @group cologradient
30279
30506
  $kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
30507
+ /// The spacing between the ColorGradient inputs and their labels.
30508
+ /// @group cologradient
30280
30509
  $kendo-color-gradient-input-label-gap: k-math-div( $kendo-color-gradient-spacer, 3 ) !default;
30510
+ /// The text color of the ColorGradient input labels.
30511
+ /// @group cologradient
30281
30512
  $kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
30282
30513
 
30514
+ /// The font weight of the ColorGradient contrast ratio text.
30515
+ /// @group cologradient
30283
30516
  $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
30517
+ /// The spacing between the items in the ColorGradient contrast tool.
30518
+ /// @group cologradient
30284
30519
  $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
30285
-
30286
30520
  // #endregion
30287
30521
  // #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
30288
30522
  // #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
@@ -30649,38 +30883,86 @@ $_kendo-module-meta: (
30649
30883
 
30650
30884
  // Component
30651
30885
  // #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
30652
- // Coloreditor/FlatColorPicker
30886
+ // ColorEditor/FlatColorPicker
30887
+
30888
+ /// The spacer of the ColorEditor.
30889
+ /// @group coloreditor
30653
30890
  $kendo-color-editor-spacer: k-map-get( $kendo-spacing, 3 ) !default;
30654
30891
 
30892
+ /// The minimum width of the ColorEditor.
30893
+ /// @group coloreditor
30655
30894
  $kendo-color-editor-min-width: 272px !default;
30895
+ /// The width of the border around the ColorEditor.
30896
+ /// @group coloreditor
30656
30897
  $kendo-color-editor-border-width: 1px !default;
30898
+ /// The border radius of the ColorEditor.
30899
+ /// @group coloreditor
30657
30900
  $kendo-color-editor-border-radius: $kendo-border-radius-md !default;
30901
+ /// The font family of the ColorEditor.
30902
+ /// @group coloreditor
30658
30903
  $kendo-color-editor-font-family: $kendo-font-family !default;
30904
+ /// The font size of the ColorEditor.
30905
+ /// @group coloreditor
30659
30906
  $kendo-color-editor-font-size: $kendo-font-size-md !default;
30907
+ /// The line height of the ColorEditor.
30908
+ /// @group coloreditor
30660
30909
  $kendo-color-editor-line-height: $kendo-line-height-md !default;
30661
- $kendo-color-editor-bg: $kendo-component-bg !default;
30910
+ /// The text color of the ColorEditor.
30911
+ /// @group coloreditor
30662
30912
  $kendo-color-editor-text: $kendo-component-text !default;
30913
+ /// The background color of the ColorEditor.
30914
+ /// @group coloreditor
30915
+ $kendo-color-editor-bg: $kendo-component-bg !default;
30916
+ /// The border color of the ColorEditor.
30917
+ /// @group coloreditor
30663
30918
  $kendo-color-editor-border: $kendo-component-border !default;
30664
30919
 
30920
+ /// The border color of the focused ColorEditor.
30921
+ /// @group coloreditor
30665
30922
  $kendo-color-editor-focus-border: null !default;
30923
+ /// The box shadow of the focused ColorEditor.
30924
+ /// @group coloreditor
30666
30925
  $kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
30667
30926
 
30927
+ /// The vertical padding of the ColorEditor header.
30928
+ /// @group coloreditor
30668
30929
  $kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
30930
+ /// The horizontal padding of the ColorEditor header.
30931
+ /// @group coloreditor
30669
30932
  $kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
30933
+ /// The spacing between the ColorEditor header actions.
30934
+ /// @group coloreditor
30670
30935
  $kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 1.5 ) !default;
30671
30936
 
30672
- $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
30937
+ /// The width of the ColorEditor preview.
30938
+ /// @group coloreditor
30673
30939
  $kendo-color-editor-color-preview-width: 32px !default;
30940
+ /// The height of the ColorEditor preview.
30941
+ /// @group coloreditor
30674
30942
  $kendo-color-editor-color-preview-height: 12px !default;
30943
+ /// The spacing between the colors in the ColorEditor preview.
30944
+ /// @group coloreditor
30945
+ $kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
30675
30946
 
30947
+ /// The vertical padding of the ColorEditor views container.
30948
+ /// @group coloreditor
30676
30949
  $kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
30950
+ /// The horizontal padding of the ColorEditor views container.
30951
+ /// @group coloreditor
30677
30952
  $kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
30953
+ /// The spacing of the ColorEditor views container.
30954
+ /// @group coloreditor
30678
30955
  $kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
30679
30956
 
30957
+ /// The outline color of the focused ColorGradient.
30958
+ /// @group coloreditor
30680
30959
  $kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
30960
+ /// The outline width of the focused ColorGradient.
30961
+ /// @group coloreditor
30681
30962
  $kendo-color-editor-color-gradient-focus-outline: 2px !default;
30963
+ /// The outline offset of the focused ColorGradient.
30964
+ /// @group coloreditor
30682
30965
  $kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
30683
-
30684
30966
  // #endregion
30685
30967
  // #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
30686
30968
  // #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
@@ -34165,49 +34447,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
34165
34447
  // #region @import "./_variables.scss"; -> scss/upload/_variables.scss
34166
34448
  // Upload
34167
34449
 
34450
+ /// The width of the border around the Upload.
34451
+ /// @group upload
34168
34452
  $kendo-upload-border-width: 1px !default;
34453
+ /// The font family of the Upload.
34454
+ /// @group upload
34169
34455
  $kendo-upload-font-family: $kendo-font-family !default;
34456
+ /// The font size of the Upload.
34457
+ /// @group upload
34170
34458
  $kendo-upload-font-size: $kendo-font-size-md !default;
34459
+ /// The line height of the Upload.
34460
+ /// @group upload
34171
34461
  $kendo-upload-line-height: $kendo-line-height-md !default;
34462
+ /// The maximum height of the list with uploaded items.
34463
+ /// @group upload
34172
34464
  $kendo-upload-max-height: 300px !default;
34173
34465
 
34174
- $kendo-upload-bg: $kendo-component-bg !default;
34466
+ /// The text color of the Upload.
34467
+ /// @group upload
34175
34468
  $kendo-upload-text: $kendo-component-text !default;
34469
+ /// The background color of the Upload.
34470
+ /// @group upload
34471
+ $kendo-upload-bg: $kendo-component-bg !default;
34472
+ /// The border color of the Upload.
34473
+ /// @group upload
34176
34474
  $kendo-upload-border: $kendo-component-border !default;
34177
34475
 
34476
+ /// The horizontal padding of the Upload dropzone.
34477
+ /// @group upload
34178
34478
  $kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
34479
+ /// The vertical padding of the Upload dropzone.
34480
+ /// @group upload
34179
34481
  $kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
34180
- $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
34482
+ /// The text color of the Upload dropzone.
34483
+ /// @group upload
34181
34484
  $kendo-upload-dropzone-text: $kendo-component-header-text !default;
34485
+ /// The background color of the Upload dropzone.
34486
+ /// @group upload
34487
+ $kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
34488
+ /// The border color of the Upload dropzone.
34489
+ /// @group upload
34182
34490
  $kendo-upload-dropzone-border: $kendo-upload-border !default;
34491
+ /// The background color of the hovered Upload dropzone.
34492
+ /// @group upload
34183
34493
  $kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
34184
34494
 
34495
+ /// The text color of the Upload status message.
34496
+ /// @group upload
34185
34497
  $kendo-upload-status-text: $kendo-subtle-text !default;
34498
+ /// The opacity of the Upload status message.
34499
+ /// @group upload
34186
34500
  $kendo-upload-status-text-opacity: null !default;
34187
34501
 
34502
+ /// The horizontal padding of an uploaded item.
34503
+ /// @group upload
34188
34504
  $kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
34505
+ /// The vertical padding of an uploaded item.
34506
+ /// @group upload
34189
34507
  $kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
34190
34508
 
34509
+ /// The vertical spacing between uploaded batch items.
34510
+ /// @group upload
34191
34511
  $kendo-upload-multiple-items-spacing: 12px !default;
34192
34512
 
34513
+ /// The font size of the Upload validation message.
34514
+ /// @group upload
34193
34515
  $kendo-upload-validation-font-size: 11px !default;
34516
+ /// The horizontal spacing of the Upload status icon.
34517
+ /// @group upload
34194
34518
  $kendo-upload-icon-spacing: $kendo-icon-spacing !default;
34519
+ /// The color of the uploaded items icon.
34520
+ /// @group upload
34195
34521
  $kendo-upload-icon-color: $kendo-subtle-text !default;
34196
34522
 
34197
- $kendo-upload-item-image-width: 30px !default;
34198
- $kendo-upload-item-image-height: 30px !default;
34199
- $kendo-upload-item-image-border: 0px !default; // TODO: remove
34200
-
34523
+ /// The thickness of the Upload progress bar.
34524
+ /// @group upload
34201
34525
  $kendo-upload-progress-thickness: 2px !default;
34526
+ /// The background color of the Upload progress bar.
34527
+ /// @group upload
34202
34528
  $kendo-upload-progress-bg: $kendo-color-info !default;
34203
34529
 
34204
- $kendo-upload-success-bg: $kendo-color-success !default;
34530
+ /// The success text color of the Upload.
34531
+ /// @group upload
34205
34532
  $kendo-upload-success-text: $kendo-color-success !default;
34533
+ /// The success background color of the Upload progress bar.
34534
+ /// @group upload
34535
+ $kendo-upload-success-bg: $kendo-color-success !default;
34206
34536
 
34207
- $kendo-upload-error-bg: $kendo-color-error !default;
34537
+ /// The error text color of the Upload.
34538
+ /// @group upload
34208
34539
  $kendo-upload-error-text: $kendo-color-error !default;
34209
- $kendo-upload-error-border: $kendo-color-error !default;
34540
+ /// The error background color of the Upload progress bar.
34541
+ /// @group upload
34542
+ $kendo-upload-error-bg: $kendo-color-error !default;
34210
34543
 
34544
+ /// The shadow of the focused Upload button, actions and uploaded items.
34545
+ /// @group upload
34211
34546
  $kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
34212
34547
 
34213
34548
  // #endregion
@@ -34645,29 +34980,60 @@ $_kendo-module-meta: (
34645
34980
 
34646
34981
  // Component
34647
34982
  // #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
34648
- // Appbar
34649
- $kendo-appbar-margin-y: null !default;
34983
+ // AppBar
34984
+
34985
+ /// The horizontal margin of the AppBar.
34986
+ /// @group appbar
34650
34987
  $kendo-appbar-margin-x: null !default;
34651
- $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
34988
+ /// The vertical margin of the AppBar.
34989
+ /// @group appbar
34990
+ $kendo-appbar-margin-y: null !default;
34991
+ /// The horizontal padding of the AppBar.
34992
+ /// @group appbar
34652
34993
  $kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
34994
+ /// The vertical padding of the AppBar.
34995
+ /// @group appbar
34996
+ $kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
34997
+ /// The width of the border around the AppBar.
34998
+ /// @group appbar
34653
34999
  $kendo-appbar-border-width: 0px !default;
34654
-
35000
+ /// The z-index of the AppBar.
35001
+ /// @group appbar
34655
35002
  $kendo-appbar-zindex: 1000 !default;
34656
-
35003
+ /// The font family of the AppBar.
35004
+ /// @group appbar
35005
+ $kendo-appbar-font-family: $kendo-font-family !default;
35006
+ /// The font size of the AppBar.
35007
+ /// @group appbar
34657
35008
  $kendo-appbar-font-size: $kendo-font-size-md !default;
35009
+ /// The line height of the AppBar.
35010
+ /// @group appbar
34658
35011
  $kendo-appbar-line-height: $kendo-line-height-md !default;
34659
- $kendo-appbar-font-family: $kendo-font-family !default;
35012
+
35013
+ /// The spacing between the AppBar sections.
35014
+ /// @group appbar
34660
35015
  $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
34661
35016
 
35017
+ /// The background color of the AppBar based on light theme color.
35018
+ /// @group appbar
34662
35019
  $kendo-appbar-light-bg: $kendo-color-light !default;
35020
+ /// The text color of the AppBar based on light theme color.
35021
+ /// @group appbar
34663
35022
  $kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
34664
35023
 
35024
+ /// The background color of the AppBar based on dark theme color.
35025
+ /// @group appbar
34665
35026
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
35027
+ /// The text color of the AppBar based on dark theme colorr.
35028
+ /// @group appbar
34666
35029
  $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
34667
35030
 
35031
+ /// The box shadow of the AppBar.
35032
+ /// @group appbar
34668
35033
  $kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
35034
+ /// The box shadow of the AppBar with bottom position.
35035
+ /// @group appbar
34669
35036
  $kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
34670
-
34671
35037
  // #endregion
34672
35038
  // #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
34673
35039
  // #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
@@ -36372,17 +36738,31 @@ $_kendo-module-meta: (
36372
36738
  // Component
36373
36739
  // #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
36374
36740
  // Dialog
36741
+
36742
+ /// The background color of the Dialog titlebar.
36743
+ /// @group dialog
36375
36744
  $kendo-dialog-titlebar-bg: null !default;
36745
+ /// The text color of the Dialog titlebar.
36746
+ /// @group dialog
36376
36747
  $kendo-dialog-titlebar-text: null !default;
36748
+ /// The border color of the Dialog titlebar.
36749
+ /// @group dialog
36377
36750
  $kendo-dialog-titlebar-border: null !default;
36378
36751
 
36752
+ /// The horizontal padding of the Dialog action buttons.
36753
+ /// @group dialog
36379
36754
  $kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
36755
+ /// The vertical padding of the Dialog action buttons.
36756
+ /// @group dialog
36380
36757
  $kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
36758
+ /// The width of the top border of the Dialog action buttons.
36759
+ /// @group dialog
36381
36760
  $kendo-dialog-buttongroup-border-width: 1px !default;
36382
-
36761
+ /// The spacing between the Dialog action buttons.
36762
+ /// @group dialog
36383
36763
  $kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
36384
36764
 
36385
- /// Theme colors map for the dialog.
36765
+ /// The theme colors map for the Dialog.
36386
36766
  /// @group dialog
36387
36767
  $kendo-dialog-theme-colors: (
36388
36768
  "primary": k-map-get($kendo-theme-colors, "primary"),
@@ -37006,44 +37386,43 @@ $_kendo-module-meta: (
37006
37386
  // #region @import "./_variables.scss"; -> scss/notification/_variables.scss
37007
37387
  // Notification
37008
37388
 
37009
- /// Vertical padding of the notification container.
37389
+ /// The horizontal padding of the Notification.
37010
37390
  /// @group notification
37011
37391
  $kendo-notification-padding-x: 8px !default;
37012
- /// Horizontal padding of the notification.
37392
+ /// The vertical padding of the Notification.
37013
37393
  /// @group notification
37014
37394
  $kendo-notification-padding-y: 4px !default;
37015
- /// Width of the border around the notification.
37395
+ /// The width of the border around the Notification.
37016
37396
  /// @group notification
37017
37397
  $kendo-notification-border-width: 1px !default;
37018
- /// Border radius of the notification.
37398
+ /// The border radius of the Notification.
37019
37399
  /// @group notification
37020
37400
  $kendo-notification-border-radius: $kendo-border-radius-md !default;
37021
- /// Box shadow of the notification.
37022
- /// @group notification
37023
- $kendo-notification-shadow: $kendo-popup-shadow !default;
37024
- /// Font family of the notification.
37401
+ /// The font family of the Notification.
37025
37402
  /// @group notification
37026
37403
  $kendo-notification-font-family: $kendo-font-family !default;
37027
- /// Font size of the notification.
37404
+ /// The font size of the Notification.
37028
37405
  /// @group notification
37029
37406
  $kendo-notification-font-size: $kendo-font-size-sm !default;
37030
- /// Line height of the notification.
37407
+ /// The line height of the Notification.
37031
37408
  /// @group notification
37032
37409
  $kendo-notification-line-height: $kendo-line-height-md !default;
37033
-
37034
- /// Horizontal spacing of the notification icon.
37035
- /// @group notification
37036
- $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
37037
-
37038
- /// Background color of the notification.
37410
+ /// The background color of the Notification.
37039
37411
  /// @group notification
37040
37412
  $kendo-notification-bg: $kendo-component-bg !default;
37041
- /// Text color of the notification.
37413
+ /// The text color of the Notification.
37042
37414
  /// @group notification
37043
37415
  $kendo-notification-text: $kendo-component-text !default;
37044
- /// Border color of the notification.
37416
+ /// The border color of the Notification.
37045
37417
  /// @group notification
37046
37418
  $kendo-notification-border: $kendo-component-border !default;
37419
+ /// The box shadow of the Notification.
37420
+ /// @group notification
37421
+ $kendo-notification-shadow: $kendo-popup-shadow !default;
37422
+
37423
+ /// The horizontal spacing of the Notification icon.
37424
+ /// @group notification
37425
+ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
37047
37426
 
37048
37427
  @function notification-theme( $colors ) {
37049
37428
  $_theme: ();
@@ -37059,9 +37438,11 @@ $kendo-notification-border: $kendo-component-border !default;
37059
37438
  @return $_theme;
37060
37439
  }
37061
37440
 
37062
- /// Theme colors of the notification.
37441
+ /// The theme colors map for the Notification.
37063
37442
  /// @group notification
37064
37443
  $kendo-notification-theme-colors: $kendo-theme-colors !default;
37444
+ /// The generated theme colors map for the Notification.
37445
+ /// @group notification
37065
37446
  $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
37066
37447
 
37067
37448
  // #endregion
@@ -37886,37 +38267,90 @@ $kendo-card-callout-height: 20px !default;
37886
38267
  // Component
37887
38268
  // #region @import "./_variables.scss"; -> scss/popover/_variables.scss
37888
38269
  // Popover
38270
+
38271
+ /// The width of the border around the Popover.
38272
+ /// @group popover
37889
38273
  $kendo-popover-border-width: $kendo-card-border-width !default;
38274
+ /// The style of the border around the Popover.
38275
+ /// @group popover
37890
38276
  $kendo-popover-border-style: solid !default;
38277
+ /// The radius of the border around the Popover.
38278
+ /// @group popover
37891
38279
  $kendo-popover-border-radius: $kendo-card-border-radius !default;
37892
- $kendo-popover-font-size: $kendo-card-font-size !default;
38280
+ /// The font family of the Popover.
38281
+ /// @group popover
37893
38282
  $kendo-popover-font-family: $kendo-card-font-family !default;
38283
+ /// The font size of the Popover.
38284
+ /// @group popover
38285
+ $kendo-popover-font-size: $kendo-card-font-size !default;
38286
+ /// The line height of the Popover.
38287
+ /// @group popover
37894
38288
  $kendo-popover-line-height: $kendo-card-line-height !default;
37895
- $kendo-popover-bg: $kendo-component-bg !default;
38289
+
38290
+ /// The text color of the Popover.
38291
+ /// @group popover
37896
38292
  $kendo-popover-text: $kendo-component-text !default;
38293
+ /// The background color of the Popover.
38294
+ /// @group popover
38295
+ $kendo-popover-bg: $kendo-component-bg !default;
38296
+ /// The border color of the Popover.
38297
+ /// @group popover
37897
38298
  $kendo-popover-border: $kendo-component-border !default;
38299
+ /// The box shadow of the Popover.
38300
+ /// @group popover
37898
38301
  $kendo-popover-shadow: $kendo-popup-shadow !default;
37899
38302
 
37900
- $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
38303
+ /// The horizontal padding of the Popover header.
38304
+ /// @group popover
37901
38305
  $kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
38306
+ /// The vertical padding of the Popover header.
38307
+ /// @group popover
38308
+ $kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
38309
+ /// The border width of the Popover header.
38310
+ /// @group popover
37902
38311
  $kendo-popover-header-border-width: $kendo-card-header-border-width !default;
38312
+ /// The border style of the Popover header.
38313
+ /// @group popover
37903
38314
  $kendo-popover-header-border-style: $kendo-popover-border-style !default;
37904
- $kendo-popover-header-bg: $kendo-card-header-bg !default;
38315
+ /// The text color of the Popover header.
38316
+ /// @group popover
37905
38317
  $kendo-popover-header-text: $kendo-card-header-text !default;
38318
+ /// The background color of the Popover header.
38319
+ /// @group popover
38320
+ $kendo-popover-header-bg: $kendo-card-header-bg !default;
38321
+ /// The border color of the Popover header.
38322
+ /// @group popover
37906
38323
  $kendo-popover-header-border: $kendo-card-header-border !default;
37907
38324
 
37908
- $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
38325
+ /// The horizontal padding of the Popover body.
38326
+ /// @group popover
37909
38327
  $kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
38328
+ /// The vertical padding of the Popover body.
38329
+ /// @group popover
38330
+ $kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
37910
38331
 
38332
+ /// The border width of the Popover actions.
38333
+ /// @group popover
37911
38334
  $kendo-popover-actions-border-width: $kendo-popover-border-width !default;
37912
38335
 
38336
+ /// The width of the Popover callout.
38337
+ /// @group popover
37913
38338
  $kendo-popover-callout-width: $kendo-card-callout-width !default;
38339
+ /// The height of the Popover callout.
38340
+ /// @group popover
37914
38341
  $kendo-popover-callout-height: $kendo-card-callout-height !default;
38342
+ /// The border width of the Popover callout.
38343
+ /// @group popover
37915
38344
  $kendo-popover-callout-border-width: $kendo-popover-border-width !default;
38345
+ /// The border style of the Popover callout.
38346
+ /// @group popover
37916
38347
  $kendo-popover-callout-border-style: $kendo-popover-border-style !default;
38348
+ /// The background color of the Popover callout.
38349
+ /// @group popover
37917
38350
  $kendo-popover-callout-bg: $kendo-popover-bg !default;
38351
+ /// The border color of the Popover callout.
38352
+ /// @group popover
37918
38353
  $kendo-popover-callout-border: $kendo-popover-border !default;
37919
-
37920
38354
  // #endregion
37921
38355
  // #region @import "./_layout.scss"; -> scss/popover/_layout.scss
37922
38356
  // #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
@@ -38278,35 +38712,68 @@ $_kendo-module-meta: (
38278
38712
 
38279
38713
  // Component
38280
38714
  // #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
38281
- // Bottom-navigation
38715
+ // BottomNavigation
38716
+
38717
+ /// The horizontal padding of the BottomNavigation.
38718
+ /// @group bottom-navigation
38282
38719
  $kendo-bottom-nav-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
38720
+ /// The vertical padding of the BottomNavigation.
38721
+ /// @group bottom-navigation
38283
38722
  $kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
38723
+ /// The spacing between the BottomNavigation items.
38724
+ /// @group bottom-navigation
38284
38725
  $kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
38726
+ /// The width of the border around the BottomNavigation.
38727
+ /// @group bottom-navigation
38285
38728
  $kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
38286
-
38729
+ /// The font family of the BottomNavigation.
38730
+ /// @group bottom-navigation
38287
38731
  $kendo-bottom-nav-font-family: $kendo-font-family !default;
38732
+ /// The font size of the BottomNavigation.
38733
+ /// @group bottom-navigation
38288
38734
  $kendo-bottom-nav-font-size: $kendo-font-size-md !default;
38735
+ /// The line height of the BottomNavigation.
38736
+ /// @group bottom-navigation
38289
38737
  $kendo-bottom-nav-line-height: normal !default;
38738
+ /// The letter spacing of the BottomNavigation.
38739
+ /// @group bottom-navigation
38290
38740
  $kendo-bottom-nav-letter-spacing: .2px !default;
38291
38741
 
38742
+ /// The horizontal padding of the BottomNavigation item.
38743
+ /// @group bottom-navigation
38292
38744
  $kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
38745
+ /// The vertical padding of the BottomNavigation item.
38746
+ /// @group bottom-navigation
38293
38747
  $kendo-bottom-nav-item-padding-y: 0 !default;
38748
+ /// The minimum width of the BottomNavigation item.
38749
+ /// @group bottom-navigation
38294
38750
  $kendo-bottom-nav-item-min-width: 72px !default;
38751
+ /// The maximum width of the BottomNavigation item.
38752
+ /// @group bottom-navigation
38295
38753
  $kendo-bottom-nav-item-max-width: null !default;
38754
+ /// The minimum height of the BottomNavigation item.
38755
+ /// @group bottom-navigation
38296
38756
  $kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{$kendo-padding-md-x * 2} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
38757
+ /// The border radius of the BottomNavigation item.
38758
+ /// @group bottom-navigation
38297
38759
  $kendo-bottom-nav-item-border-radius: $kendo-border-radius-md !default;
38760
+ /// The spacing of the BottomNavigation item.
38761
+ /// @group bottom-navigation
38298
38762
  $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
38299
38763
 
38300
- $kendo-bottom-nav-item-icon-margin-y: k-map-get( $kendo-spacing, 2 ) !default;
38301
- $kendo-bottom-nav-item-icon-margin-x: $kendo-bottom-nav-item-icon-margin-y !default;
38302
- $kendo-bottom-nav-item-disabled-opacity: .5 !default;
38303
-
38764
+ /// The box shadow of the BottomNavigation.
38765
+ /// @group bottom-navigation
38304
38766
  $kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
38305
38767
 
38306
- $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
38768
+ /// The text color of the flat BottomNavigation.
38769
+ /// @group bottom-navigation
38307
38770
  $kendo-bottom-nav-flat-text: $kendo-component-text !default;
38771
+ /// The background color of the flat BottomNavigation.
38772
+ /// @group bottom-navigation
38773
+ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
38774
+ /// The border color of the flat BottomNavigation.
38775
+ /// @group bottom-navigation
38308
38776
  $kendo-bottom-nav-flat-border: $kendo-component-border !default;
38309
-
38310
38777
  // #endregion
38311
38778
  // #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
38312
38779
  // #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
@@ -38563,63 +39030,234 @@ $_kendo-module-meta: (
38563
39030
  // #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
38564
39031
  // Breadcrumb
38565
39032
 
39033
+ /// The width of the border around the Breadcrumb.
39034
+ /// @group breadcrumb
39035
+ $kendo-breadcrumb-border-width: 0px !default;
39036
+
39037
+ /// The horizontal margin of the Breadcrumb.
39038
+ /// @group breadcrumb
38566
39039
  $kendo-breadcrumb-margin-x: null !default;
39040
+ /// The vertical margin of the Breadcrumb.
39041
+ /// @group breadcrumb
38567
39042
  $kendo-breadcrumb-margin-y: null !default;
39043
+
39044
+ /// The horizontal padding of the Breadcrumb.
39045
+ /// @group breadcrumb
38568
39046
  $kendo-breadcrumb-padding-x: null !default;
39047
+ /// The vertical padding of the Breadcrumb.
39048
+ /// @group breadcrumb
38569
39049
  $kendo-breadcrumb-padding-y: null !default;
38570
- $kendo-breadcrumb-border-width: 0px !default;
38571
39050
 
39051
+ /// The font family of the Breadcrumb.
39052
+ /// @group breadcrumb
38572
39053
  $kendo-breadcrumb-font-family: $kendo-font-family !default;
39054
+
39055
+ /// The font size of the Breadcrumb.
39056
+ /// @group breadcrumb
38573
39057
  $kendo-breadcrumb-font-size: $kendo-font-size-md !default;
39058
+ /// The font size of the small Breadcrumb.
39059
+ /// @group breadcrumb
39060
+ $kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
39061
+ /// The font size of the medium Breadcrumb.
39062
+ /// @group breadcrumb
39063
+ $kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
39064
+ /// The font size of the large Breadcrumb.
39065
+ /// @group breadcrumb
39066
+ $kendo-breadcrumb-lg-font-size: $kendo-font-size-lg !default;
39067
+
39068
+ /// The line-height of the Breadcrumb.
39069
+ /// @group breadcrumb
38574
39070
  $kendo-breadcrumb-line-height: $kendo-line-height-md !default;
38575
-
39071
+ /// The line-height of the small Breadcrumb.
39072
+ /// @group breadcrumb
39073
+ $kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
39074
+ /// The line-height of the medium Breadcrumb.
39075
+ /// @group breadcrumb
39076
+ $kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
39077
+ /// The line-height of the height Breadcrumb.
39078
+ /// @group breadcrumb
39079
+ $kendo-breadcrumb-lg-line-height: $kendo-line-height-lg !default;
39080
+
39081
+ /// The base background of the Breadcrumb.
39082
+ /// @group breadcrumb
38576
39083
  $kendo-breadcrumb-bg: $kendo-component-bg !default;
39084
+ /// The base text color of the Breadcrumb.
39085
+ /// @group breadcrumb
38577
39086
  $kendo-breadcrumb-text: $kendo-component-text !default;
39087
+ /// The base border color of the Breadcrumb.
39088
+ /// @group breadcrumb
38578
39089
  $kendo-breadcrumb-border: $kendo-component-border !default;
38579
39090
 
39091
+ /// The box shadow of the focused Breadcrumb.
39092
+ /// @group breadcrumb
39093
+ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
39094
+
39095
+ /// The horizontal padding of the Breadcrumb link.
39096
+ /// @group breadcrumb
38580
39097
  $kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
39098
+ /// The horizontal padding of the small Breadcrumb link.
39099
+ /// @group breadcrumb
39100
+ $kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
39101
+ /// The horizontal padding of the medium Breadcrumb link.
39102
+ /// @group breadcrumb
39103
+ $kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
39104
+ /// The horizontal padding of the large Breadcrumb link.
39105
+ /// @group breadcrumb
39106
+ $kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
39107
+
39108
+ /// The vertical padding of the Breadcrumb link.
39109
+ /// @group breadcrumb
38581
39110
  $kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
39111
+ /// The vertical padding of the small Breadcrumb link.
39112
+ /// @group breadcrumb
39113
+ $kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
39114
+ /// The vertical padding of the medium Breadcrumb link.
39115
+ /// @group breadcrumb
39116
+ $kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
39117
+ /// The vertical padding of the large Breadcrumb link.
39118
+ /// @group breadcrumb
39119
+ $kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
39120
+
39121
+ /// The border-radius of the Breadcrumb link.
39122
+ /// @group breadcrumb
38582
39123
  $kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
38583
39124
 
38584
- $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
38585
- $kendo-breadcrumb-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-x !default;
38586
-
38587
- $kendo-breadcrumb-root-link-spacing: $kendo-breadcrumb-link-padding-x !default;
38588
- $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
38589
-
39125
+ /// The vertical padding of the Breadcrumb link icon.
39126
+ /// @group breadcrumb
39127
+ $kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
39128
+ /// The vertical padding of the small Breadcrumb link icon.
39129
+ /// @group breadcrumb
39130
+ $kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
39131
+ /// The vertical padding of the medium Breadcrumb link icon.
39132
+ /// @group breadcrumb
39133
+ $kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
39134
+ /// The vertical padding of the large Breadcrumb link icon.
39135
+ /// @group breadcrumb
39136
+ $kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
39137
+
39138
+ /// The horizontal padding of the Breadcrumb link icon.
39139
+ /// @group breadcrumb
39140
+ $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
39141
+ /// The horizontal padding of the small Breadcrumb link icon.
39142
+ /// @group breadcrumb
39143
+ $kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
39144
+ /// The horizontal padding of the medium Breadcrumb link icon.
39145
+ /// @group breadcrumb
39146
+ $kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
39147
+ /// The horizontal padding of the large Breadcrumb link icon.
39148
+ /// @group breadcrumb
39149
+ $kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
39150
+
39151
+ /// The text color of the Breadcrumb link.
39152
+ /// @group breadcrumb
38590
39153
  $kendo-breadcrumb-link-initial-text: inherit !default;
39154
+ /// The spacing of the Breadcrumb link icon.
39155
+ /// @group breadcrumb
39156
+ $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
38591
39157
 
39158
+ /// The background color of the Breadcrumb link.
39159
+ /// @group breadcrumb
38592
39160
  $kendo-breadcrumb-link-bg: null !default;
39161
+ /// The text color of the Breadcrumb link.
39162
+ /// @group breadcrumb
38593
39163
  $kendo-breadcrumb-link-text: $kendo-link-text !default;
39164
+ /// The border color of the Breadcrumb link.
39165
+ /// @group breadcrumb
38594
39166
  $kendo-breadcrumb-link-border: null !default;
38595
39167
 
39168
+ /// @group breadcrumb
38596
39169
  $kendo-breadcrumb-link-hover-bg: $kendo-base-bg !default;
39170
+ /// The text color of the hovered Breadcrumb link.
39171
+ /// @group breadcrumb
38597
39172
  $kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
39173
+ /// The border color of the hovered Breadcrumb link.
39174
+ /// @group breadcrumb
38598
39175
  $kendo-breadcrumb-link-hover-border: null !default;
38599
39176
 
39177
+ /// The background color of the focused Breadcrumb link.
39178
+ /// @group breadcrumb
38600
39179
  $kendo-breadcrumb-link-focus-bg: null !default;
39180
+ /// The text color of the focused Breadcrumb link.
39181
+ /// @group breadcrumb
38601
39182
  $kendo-breadcrumb-link-focus-text: $kendo-link-text !default;
39183
+ /// The border color of the focused Breadcrumb link.
39184
+ /// @group breadcrumb
38602
39185
  $kendo-breadcrumb-link-focus-border: null !default;
39186
+ /// The box shadow of the focused Breadcrumb link.
39187
+ /// @group breadcrumb
38603
39188
  $kendo-breadcrumb-link-focus-shadow: $kendo-focus-shadow !default;
38604
39189
 
39190
+ /// The background color of the Breadcrumb root link.
39191
+ /// @group breadcrumb
38605
39192
  $kendo-breadcrumb-root-link-bg: null !default;
39193
+ /// The text color of the Breadcrumb root link.
39194
+ /// @group breadcrumb
38606
39195
  $kendo-breadcrumb-root-link-text: null !default;
39196
+ /// The border color of the Breadcrumb root link.
39197
+ /// @group breadcrumb
38607
39198
  $kendo-breadcrumb-root-link-border: null !default;
38608
39199
 
39200
+ /// The background color of the hovered Breadcrumb root link.
39201
+ /// @group breadcrumb
38609
39202
  $kendo-breadcrumb-root-link-hover-bg: $kendo-base-bg !default;
39203
+ /// The text color of the hovered Breadcrumb root link.
39204
+ /// @group breadcrumb
38610
39205
  $kendo-breadcrumb-root-link-hover-text: null !default;
39206
+ /// The border color of the hovered Breadcrumb root link.
39207
+ /// @group breadcrumb
38611
39208
  $kendo-breadcrumb-root-link-hover-border: null !default;
38612
39209
 
39210
+ /// The background color of the focused Breadcrumb root link.
39211
+ /// @group breadcrumb
38613
39212
  $kendo-breadcrumb-root-link-focus-bg: null !default;
39213
+ /// The text color of the focused Breadcrumb root link.
39214
+ /// @group breadcrumb
38614
39215
  $kendo-breadcrumb-root-link-focus-text: null !default;
39216
+ /// The border color of the focused Breadcrumb root link.
39217
+ /// @group breadcrumb
38615
39218
  $kendo-breadcrumb-root-link-focus-border: null !default;
39219
+ /// The box shadow of the focused Breadcrumb root link.
39220
+ /// @group breadcrumb
38616
39221
  $kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
38617
39222
 
39223
+ /// The background color of the current Breadcrumb root link.
39224
+ /// @group breadcrumb
38618
39225
  $kendo-breadcrumb-current-item-bg: null !default;
39226
+ /// The text color of the current Breadcrumb root link.
39227
+ /// @group breadcrumb
38619
39228
  $kendo-breadcrumb-current-item-text: null !default;
39229
+ /// The border color of the current Breadcrumb root link.
39230
+ /// @group breadcrumb
38620
39231
  $kendo-breadcrumb-current-item-border: null !default;
38621
39232
 
38622
- $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
39233
+ /// The sizes map for the Breadcrumb.
39234
+ /// @group breadcrumb
39235
+ $kendo-breadcrumb-sizes: (
39236
+ sm: (
39237
+ link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
39238
+ link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
39239
+ icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
39240
+ icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
39241
+ font-size: $kendo-breadcrumb-sm-font-size,
39242
+ line-height: $kendo-breadcrumb-sm-line-height
39243
+ ),
39244
+ md: (
39245
+ link-padding-x: $kendo-breadcrumb-md-link-padding-x,
39246
+ link-padding-y: $kendo-breadcrumb-md-link-padding-y,
39247
+ icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
39248
+ icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
39249
+ font-size: $kendo-breadcrumb-md-font-size,
39250
+ line-height: $kendo-breadcrumb-md-line-height
39251
+ ),
39252
+ lg: (
39253
+ link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
39254
+ link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
39255
+ icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
39256
+ icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
39257
+ font-size: $kendo-breadcrumb-lg-font-size,
39258
+ line-height: $kendo-breadcrumb-lg-line-height
39259
+ )
39260
+ ) !default;
38623
39261
 
38624
39262
  // #endregion
38625
39263
  // #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
@@ -38637,8 +39275,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
38637
39275
  box-sizing: border-box;
38638
39276
  outline: 0;
38639
39277
  font-family: $kendo-breadcrumb-font-family;
38640
- font-size: $kendo-breadcrumb-font-size;
38641
- line-height: $kendo-breadcrumb-line-height;
38642
39278
  display: flex;
38643
39279
  flex-direction: row;
38644
39280
  -webkit-touch-callout: none;
@@ -38690,8 +39326,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
38690
39326
  .k-breadcrumb-link,
38691
39327
  .k-breadcrumb-root-link {
38692
39328
  @include border-radius( $kendo-breadcrumb-link-border-radius );
38693
- padding-block: $kendo-breadcrumb-link-padding-y;
38694
- padding-inline: $kendo-breadcrumb-link-padding-x;
38695
39329
  color: $kendo-breadcrumb-link-initial-text;
38696
39330
  text-decoration: none;
38697
39331
  white-space: nowrap;
@@ -38705,21 +39339,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
38705
39339
  transition: $kendo-transition;
38706
39340
  }
38707
39341
 
38708
- .k-breadcrumb-root-link {
38709
- margin-inline-end: $kendo-breadcrumb-root-link-spacing;
38710
- }
38711
-
38712
39342
  .k-breadcrumb-link > .k-image,
38713
39343
  .k-breadcrumb-icontext-link .k-icon,
38714
39344
  .k-breadcrumb-icontext-link .k-svg-icon {
38715
39345
  margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
38716
39346
  }
38717
39347
 
38718
- .k-breadcrumb-icon-link {
38719
- padding-block: $kendo-breadcrumb-icon-link-padding-y;
38720
- padding-inline: $kendo-breadcrumb-icon-link-padding-x;
38721
- }
38722
-
38723
39348
 
38724
39349
  // Breadcrumb delimiter
38725
39350
  .k-breadcrumb-delimiter,
@@ -38738,6 +39363,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
38738
39363
  }
38739
39364
  }
38740
39365
 
39366
+
39367
+ // Sizes
39368
+ @each $size, $size-props in $kendo-breadcrumb-sizes {
39369
+ $_link-padding-x: k-map-get( $size-props, link-padding-x );
39370
+ $_link-padding-y: k-map-get( $size-props, link-padding-y );
39371
+ $_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
39372
+ $_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
39373
+ $_font-size: k-map-get( $size-props, font-size );
39374
+ $_line-height: k-map-get( $size-props, line-height );
39375
+
39376
+ .k-breadcrumb-#{$size} {
39377
+ font-size: $_font-size;
39378
+ line-height: $_line-height;
39379
+
39380
+
39381
+ .k-breadcrumb-link,
39382
+ .k-breadcrumb-root-link {
39383
+ padding-block: $_link-padding-y;
39384
+ padding-inline: $_link-padding-x;
39385
+ }
39386
+
39387
+ .k-breadcrumb-icon-link {
39388
+ padding-block: $_icon-link-padding-y;
39389
+ padding-inline: $_icon-link-padding-x;
39390
+ }
39391
+ }
39392
+ }
39393
+
38741
39394
  }
38742
39395
 
38743
39396
 
@@ -41017,41 +41670,84 @@ $_kendo-module-meta: (
41017
41670
 
41018
41671
  // Component
41019
41672
  // #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
41020
- // Expansion panel
41673
+ // ExpansionPanel
41674
+
41675
+ /// The vertical spacing of the ExpansionPanel.
41676
+ /// @group expander
41021
41677
  $kendo-expander-spacing-y: k-map-get( $kendo-spacing, 2 ) !default;
41678
+ /// The width of the border around the ExpansionPanel.
41679
+ /// @group expander
41680
+ $kendo-expander-border-width: 1px !default;
41681
+ /// The font family of the ExpansionPanel.
41682
+ /// @group expander
41022
41683
  $kendo-expander-font-family: $kendo-font-family !default;
41684
+ /// The font size of the ExpansionPanel.
41685
+ /// @group expander
41023
41686
  $kendo-expander-font-size: $kendo-font-size-md !default;
41687
+ /// The hine height of the ExpansionPanel.
41688
+ /// @group expander
41024
41689
  $kendo-expander-line-height: $kendo-line-height-md !default;
41025
- $kendo-expander-border-width: 1px !default;
41026
41690
 
41027
- $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
41028
- // TODO: use 2
41029
- $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
41030
-
41031
- $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
41032
-
41033
- $kendo-expander-bg: $kendo-component-bg !default;
41691
+ /// The text color of the ExpansionPanel.
41692
+ /// @group expander
41034
41693
  $kendo-expander-text: $kendo-component-text !default;
41694
+ /// The background color of the ExpansionPanel.
41695
+ /// @group expander
41696
+ $kendo-expander-bg: $kendo-component-bg !default;
41697
+ /// The border color of the ExpansionPanel.
41698
+ /// @group expander
41035
41699
  $kendo-expander-border: $kendo-component-border !default;
41036
41700
 
41701
+ /// The box shadow of the focused ExpansionPanel.
41702
+ /// @group expander
41037
41703
  $kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
41038
41704
 
41039
- $kendo-expander-header-bg: transparent !default;
41705
+ /// The horizontal padding of the ExpansionPanel header.
41706
+ /// @group expander
41707
+ $kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
41708
+ // TODO: use 2
41709
+ /// The vertical padding of the ExpansionPanel header.
41710
+ /// @group expander
41711
+ $kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
41712
+
41713
+ /// The text color of the ExpansionPanel header.
41714
+ /// @group expander
41040
41715
  $kendo-expander-header-text: $kendo-expander-text !default;
41716
+ /// The background color of the ExpansionPanel header.
41717
+ /// @group expander
41718
+ $kendo-expander-header-bg: transparent !default;
41719
+ /// The border color of the ExpansionPanel header.
41720
+ /// @group expander
41041
41721
  $kendo-expander-header-border: null !default;
41042
41722
 
41723
+ /// The background color of the hovered ExpansionPanel header.
41724
+ /// @group expander
41043
41725
  $kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
41044
-
41726
+ /// The background color of the focused ExpansionPanel header.
41727
+ /// @group expander
41045
41728
  $kendo-expander-header-focus-bg: null !default;
41729
+ /// The box shadow of the focused ExpansionPanel header.
41730
+ /// @group expander
41046
41731
  $kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
41047
41732
 
41733
+ /// The text color of the ExpansionPanel title.
41734
+ /// @group expander
41048
41735
  $kendo-expander-title-text: $kendo-color-primary !default;
41049
41736
 
41737
+ /// The text color of the ExpansionPanel sub-title.
41738
+ /// @group expander
41050
41739
  $kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
41051
41740
 
41741
+ /// The horizontal margin of the ExpansionPanel indicator.
41742
+ /// @group expander
41743
+ $kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
41744
+
41745
+ /// The horizontal padding of the ExpansionPanel content.
41746
+ /// @group expander
41052
41747
  $kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
41748
+ /// The vertical padding of the ExpansionPanel content.
41749
+ /// @group expander
41053
41750
  $kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
41054
-
41055
41751
  // #endregion
41056
41752
  // #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
41057
41753
  // #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
@@ -42153,17 +42849,34 @@ $_kendo-module-meta: (
42153
42849
  // Component
42154
42850
  // #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
42155
42851
  // TileLayout
42852
+
42853
+ /// The width of the border around the TileLayout.
42854
+ /// @group tilelayout
42156
42855
  $kendo-tile-layout-border-width: 0px !default;
42856
+ /// The background color of the TileLayout.
42857
+ /// @group tilelayout
42858
+ $kendo-tile-layout-bg: $kendo-base-bg !default;
42859
+
42860
+ /// The width of the border around the TileLayout card.
42861
+ /// @group tilelayout
42157
42862
  $kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
42863
+ /// The focus box shadow of the TileLayout card.
42864
+ /// @group tilelayout
42158
42865
  $kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
42159
42866
 
42867
+ /// The width of the border around the TileLayout hint.
42868
+ /// @group tilelayout
42160
42869
  $kendo-tile-layout-hint-border-width: 1px !default;
42870
+ /// The radius of the border around the TileLayout hint.
42871
+ /// @group tilelayout
42161
42872
  $kendo-tile-layout-hint-border-radius: $kendo-border-radius-lg !default;
42162
-
42163
- $kendo-tile-layout-bg: $kendo-base-bg !default;
42164
-
42165
- $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
42873
+ /// The color of the border around the TileLayout hint.
42874
+ /// @group tilelayout
42166
42875
  $kendo-tile-layout-hint-border: $kendo-component-border !default;
42876
+ /// The background color of the TileLayout hint.
42877
+ /// @group tilelayout
42878
+ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
42879
+
42167
42880
 
42168
42881
  // #endregion
42169
42882
  // #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
@@ -45391,32 +46104,66 @@ $_kendo-module-meta: (
45391
46104
 
45392
46105
  // Component
45393
46106
  // #region @import "./_variables.scss"; -> scss/listview/_variables.scss
45394
- // Listview
46107
+ // ListView
46108
+
46109
+ /// The horizontal padding of the ListView.
46110
+ /// @group listview
45395
46111
  $kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
46112
+ /// The vertical padding of the ListView.
46113
+ /// @group listview
45396
46114
  $kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
46115
+ /// The width of the border around bordered ListView.
46116
+ /// @group listview
45397
46117
  $kendo-listview-border-width: 1px !default;
46118
+ /// The font family of the ListView.
46119
+ /// @group listview
45398
46120
  $kendo-listview-font-family: $kendo-font-family !default;
46121
+ /// The font size of the ListView.
46122
+ /// @group listview
45399
46123
  $kendo-listview-font-size: $kendo-font-size-md !default;
46124
+ /// The line height of the ListView.
46125
+ /// @group listview
45400
46126
  $kendo-listview-line-height: $kendo-line-height-md !default;
45401
46127
 
45402
- $kendo-listview-bg: $kendo-component-bg !default;
46128
+ /// The text color of the ListView.
46129
+ /// @group listview
45403
46130
  $kendo-listview-text: $kendo-component-text !default;
46131
+ /// The background color of the ListView.
46132
+ /// @group listview
46133
+ $kendo-listview-bg: $kendo-component-bg !default;
46134
+ /// The border color of the ListView.
46135
+ /// @group listview
45404
46136
  $kendo-listview-border: $kendo-component-border !default;
45405
46137
 
45406
- $kendo-listview-grid-gap: 10px !default;
45407
-
46138
+ /// The horizontal padding of the ListView items.
46139
+ /// @group listview
45408
46140
  $kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
46141
+ /// The vertical padding of the ListView items.
46142
+ /// @group listview
45409
46143
  $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
45410
46144
 
45411
- $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
46145
+ /// The text color of the selected ListView items.
46146
+ /// @group listview
45412
46147
  $kendo-listview-item-selected-text: null !default;
46148
+ /// The background color of the selected ListView items.
46149
+ /// @group listview
46150
+ $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
46151
+ /// The border color of the selected ListView items.
46152
+ /// @group listview
45413
46153
  $kendo-listview-item-selected-border: null !default;
45414
46154
 
45415
- $kendo-listview-item-focus-bg: null !default;
46155
+ /// The text color of the focused ListView items.
46156
+ /// @group listview
45416
46157
  $kendo-listview-item-focus-text: null !default;
46158
+ /// The background color of the focused ListView items.
46159
+ /// @group listview
46160
+ $kendo-listview-item-focus-bg: null !default;
46161
+ /// The border color of the focused ListView items.
46162
+ /// @group listview
45417
46163
  $kendo-listview-item-focus-border: null !default;
46164
+ /// The box shadow of the focused ListView items.
46165
+ /// @group listview
45418
46166
  $kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
45419
-
45420
46167
  // #endregion
45421
46168
  // #region @import "./_layout.scss"; -> scss/listview/_layout.scss
45422
46169
  // #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
@@ -48358,19 +49105,35 @@ $_kendo-module-meta: (
48358
49105
  // Component
48359
49106
  // #region @import "./_variables.scss"; -> scss/filter/_variables.scss
48360
49107
  // Filter expression builder
49108
+
49109
+ /// The horizontal padding of the Filter.
49110
+ /// @group filter
48361
49111
  $kendo-filter-padding-x: $kendo-padding-md-x !default;
49112
+ /// The vertical padding of the Filter.
49113
+ /// @group filter
48362
49114
  $kendo-filter-padding-y: $kendo-padding-md-y !default;
48363
49115
 
49116
+ /// The bottom margin of the Filter.
49117
+ /// @group filter
48364
49118
  $kendo-filter-bottom-margin: 30px !default;
49119
+ /// The width of the line that connects the Filter items.
49120
+ /// @group filter
48365
49121
  $kendo-filter-line-size: 1px !default;
48366
49122
 
49123
+ /// The width of the dropdown elements in the Filter items.
49124
+ /// @group filter
48367
49125
  $kendo-filter-operator-dropdown-width: 15em !default;
48368
49126
 
49127
+ /// The text color of the Filter preview field.
49128
+ /// @group filter
48369
49129
  $kendo-filter-preview-field-text: $kendo-color-primary !default;
49130
+ /// The text color of the Filter preview operator.
49131
+ /// @group filter
48370
49132
  $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
48371
49133
 
49134
+ /// The box shadow of the focused Filter toolbar.
49135
+ /// @group filter
48372
49136
  $kendo-filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
48373
-
48374
49137
  // #endregion
48375
49138
  // #region @import "./_layout.scss"; -> scss/filter/_layout.scss
48376
49139
  // #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
@@ -49699,27 +50462,60 @@ $_kendo-module-meta: (
49699
50462
  // Component
49700
50463
  // #region @import "./_variables.scss"; -> scss/editor/_variables.scss
49701
50464
  // Editor
50465
+
50466
+ /// The width of the border around the Еditor.
50467
+ /// @group editor
49702
50468
  $kendo-editor-border-width: 1px !default;
50469
+ /// The font family of the Еditor.
50470
+ /// @group editor
49703
50471
  $kendo-editor-font-family: $kendo-font-family !default;
50472
+ /// The font size of the Еditor.
50473
+ /// @group editor
49704
50474
  $kendo-editor-font-size: $kendo-font-size-md !default;
50475
+ /// The line height of the Еditor.
50476
+ /// @group editor
49705
50477
  $kendo-editor-line-height: $kendo-line-height-md !default;
49706
50478
 
50479
+ /// The text color of the Еditor placeholder.
50480
+ /// @group editor
49707
50481
  $kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
50482
+ /// The opacity of the Editor placeholder.
50483
+ /// @group editor
49708
50484
  $kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
49709
50485
 
50486
+ /// The selected text color of the Editor.
50487
+ /// @group editor
49710
50488
  $kendo-editor-selected-text: $kendo-color-primary-contrast !default;
50489
+ /// The selected background color of the Editor.
50490
+ /// @group editor
49711
50491
  $kendo-editor-selected-bg: $kendo-color-primary !default;
49712
50492
 
50493
+ /// The highlighted background color of the Editor.
50494
+ /// @group editor
49713
50495
  $kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
49714
50496
 
50497
+ /// The horizontal margin of the Editor's export tool icon.
50498
+ /// @group editor
49715
50499
  $kendo-editor-export-tool-icon-margin-x: .25em !default;
49716
50500
 
50501
+ /// The size of the Editor's resize handle.
50502
+ /// @group editor
49717
50503
  $kendo-editor-resize-handle-size: 8px !default;
50504
+ /// The border width of the Editor's resize handle.
50505
+ /// @group editor
49718
50506
  $kendo-editor-resize-handle-border-width: 1px !default;
50507
+ /// The border color of the Editor's resize handle.
50508
+ /// @group editor
49719
50509
  $kendo-editor-resize-handle-border: #000000 !default;
50510
+ /// The background color of the Editor's resize handle.
50511
+ /// @group editor
49720
50512
  $kendo-editor-resize-handle-bg: #ffffff !default;
49721
50513
 
50514
+ /// The outline width of the Editor's selected node.
50515
+ /// @group editor
49722
50516
  $kendo-editor-selectednode-outline-width: 2px !default;
50517
+ /// The outline color of the Editor's selected node.
50518
+ /// @group editor
49723
50519
  $kendo-editor-selectednode-outline-color: #88ccff !default;
49724
50520
 
49725
50521
  // #endregion
@@ -56049,44 +56845,97 @@ $_kendo-module-meta: (
56049
56845
 
56050
56846
  // Component
56051
56847
  // #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
56052
- // Scrollview
56848
+ // ScrollView
56849
+
56850
+ /// The width of the border around the ScrollView.
56851
+ /// @group scrollview
56053
56852
  $kendo-scrollview-border-width: 1px !default;
56853
+ /// The font family of the ScrollView.
56854
+ /// @group scrollview
56054
56855
  $kendo-scrollview-font-family: $kendo-font-family !default;
56856
+ /// The font size of the ScrollView.
56857
+ /// @group scrollview
56055
56858
  $kendo-scrollview-font-size: $kendo-font-size-md !default;
56859
+ /// The line height of the ScrollView.
56860
+ /// @group scrollview
56056
56861
  $kendo-scrollview-line-height: $kendo-line-height-md !default;
56057
56862
 
56058
- $kendo-scrollview-bg: $kendo-component-bg !default;
56863
+ /// The text color of the ScrollView.
56864
+ /// @group scrollview
56059
56865
  $kendo-scrollview-text: $kendo-component-text !default;
56866
+ /// The background color of the ScrollView.
56867
+ /// @group scrollview
56868
+ $kendo-scrollview-bg: $kendo-component-bg !default;
56869
+ /// The border color of the ScrollView.
56870
+ /// @group scrollview
56060
56871
  $kendo-scrollview-border: $kendo-component-border !default;
56061
56872
 
56873
+ /// The size of the ScrollView page button.
56874
+ /// @group scrollview
56062
56875
  $kendo-scrollview-pagebutton-size: 10px !default;
56876
+ /// The background color of the ScrollView page button.
56877
+ /// @group scrollview
56063
56878
  $kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
56879
+ /// The border color of the ScrollView page button.
56880
+ /// @group scrollview
56064
56881
  $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
56882
+ /// The primary background color of the ScrollView page button.
56883
+ /// @group scrollview
56065
56884
  $kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
56885
+ /// The primary border color of the ScrollView page button.
56886
+ /// @group scrollview
56066
56887
  $kendo-scrollview-pagebutton-primary-border: k-try-shade( $kendo-color-primary, 2 ) !default;
56888
+ /// The box shadow of the ScrollView page button.
56889
+ /// @group scrollview
56067
56890
  $kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
56068
56891
 
56892
+ /// The offset of the ScrollView pager.
56893
+ /// @group scrollview
56069
56894
  $kendo-scrollview-pager-offset: 0 !default;
56895
+ /// The spacing between the ScrollView pager items.
56896
+ /// @group scrollview
56070
56897
  $kendo-scrollview-pager-item-spacing: 20px !default;
56898
+ /// The border width of the ScrollView pager items.
56899
+ /// @group scrollview
56071
56900
  $kendo-scrollview-pager-item-border-width: 0px !default;
56901
+ /// The height of the ScrollView pager.
56902
+ /// @group scrollview
56072
56903
  $kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
56073
56904
 
56074
- $kendo-scrollview-pager-multidot-threshold: 10 !default;
56075
- $kendo-scrollview-pager-multidot-intermediate: 3 !default;
56076
- $kendo-scrollview-pager-multidot-step: 1px !default;
56077
-
56905
+ /// The text color of the highlight over the tapped ScrollView navigation arrows.
56906
+ /// @group scrollview
56078
56907
  $kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
56908
+ /// The color of the ScrollView navigation arrows.
56909
+ /// @group scrollview
56079
56910
  $kendo-scrollview-navigation-color: white !default;
56911
+ /// The box shadow of the ScrollView navigation arrows.
56912
+ /// @group scrollview
56080
56913
  $kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
56914
+ /// The background color of the ScrollView navigation.
56915
+ /// @group scrollview
56081
56916
  $kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
56917
+ /// The opacity of the ScrollView navigation.
56918
+ /// @group scrollview
56082
56919
  $kendo-scrollview-navigation-default-opacity: .7 !default;
56920
+ /// The hover opacity of the ScrollView navigation.
56921
+ /// @group scrollview
56083
56922
  $kendo-scrollview-navigation-hover-opacity: 1 !default;
56923
+ /// The hover background color of the ScrollView navigation arrows.
56924
+ /// @group scrollview
56084
56925
  $kendo-scrollview-navigation-hover-span-bg: null !default;
56085
56926
 
56927
+ /// The background color of the ScrollView pager in light mode.
56928
+ /// @group scrollview
56086
56929
  $kendo-scrollview-light-bg: rgba( white, .4 ) !default;
56930
+ /// The background color of the ScrollView pager in dark mode.
56931
+ /// @group scrollview
56087
56932
  $kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
56088
56933
 
56934
+ /// The duration of the ScrollView transition.
56935
+ /// @group scrollview
56089
56936
  $kendo-scrollview-transition-duration: .3s !default;
56937
+ /// The timing function of the ScrollView transition.
56938
+ /// @group scrollview
56090
56939
  $kendo-scrollview-transition-timing-function: ease-in-out !default;
56091
56940
 
56092
56941
  // #endregion