@progress/kendo-theme-bootstrap 6.2.1-dev.0 → 6.2.1-dev.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.scss CHANGED
@@ -1277,6 +1277,30 @@ $_kendo-escape-class-name: (
1277
1277
  @return map-values( $map );
1278
1278
  }
1279
1279
 
1280
+ /// Returns negative values of a number or numbers in a list.
1281
+ /// @param {Map} $map - The map to get the values from.
1282
+ /// @return {Map} - A comma separated list of the values in `$map`.
1283
+ ///
1284
+ /// @example scss - Usage
1285
+ /// @debug k-map-negate( ( 0: 0, 1: 1px, 2: 2px ) ); // => ("-1": -1px, "-2": -2px)
1286
+ @function k-map-negate($map) {
1287
+ $_map-neg: ();
1288
+
1289
+ @if( k-meta-type-of($map) != map ) {
1290
+ @error "expected type of #{$map} is map, was #{k-meta-type-of($map)}";
1291
+ };
1292
+ @each $key, $value in $map {
1293
+ $_key-neg: "-" + $key;
1294
+
1295
+ @if( k-meta-type-of($value) == number and $value != 0) {
1296
+ $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );
1297
+ }
1298
+ }
1299
+
1300
+ @return $_map-neg;
1301
+
1302
+ }
1303
+
1280
1304
  // #endregion
1281
1305
  // #region @import "./_meta.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_meta.import.scss
1282
1306
  // Adapted from https://css-tricks.com/snippets/sass/advanced-type-checking/
@@ -7441,14 +7465,32 @@ $kendo-utils: (
7441
7465
  video: k-string-unquote("16 / 9")
7442
7466
  ),
7443
7467
  "container": (),
7444
- "columns": (),
7468
+ "columns": (
7469
+ 1: 1,
7470
+ 2: 2,
7471
+ 3: 3,
7472
+ 4: 4,
7473
+ 5: 5,
7474
+ 6: 6,
7475
+ 7: 7,
7476
+ 8: 8,
7477
+ 9: 9,
7478
+ 10: 10,
7479
+ 11: 11,
7480
+ 12: 12,
7481
+ auto: auto
7482
+ ),
7445
7483
  "break-after": (),
7446
7484
  "break-before": (),
7447
7485
  "break-inside": (),
7448
7486
  "box-decoration-break": (),
7449
- "box-sizing": (),
7487
+ "box-sizing": (
7488
+ border: border-box,
7489
+ content: content-box
7490
+ ),
7450
7491
  "display": (
7451
7492
  none,
7493
+ contents,
7452
7494
  block,
7453
7495
  inline,
7454
7496
  inline-block,
@@ -7458,6 +7500,8 @@ $kendo-utils: (
7458
7500
  inline-grid,
7459
7501
  table,
7460
7502
  inline-table,
7503
+ table-row,
7504
+ table-cell,
7461
7505
  list-item
7462
7506
  ),
7463
7507
  "float": (
@@ -7472,26 +7516,37 @@ $kendo-utils: (
7472
7516
  none
7473
7517
  ),
7474
7518
  "isolation": (),
7475
- "object-fit": (),
7476
- "object-position": (),
7519
+ "object-fit": (
7520
+ contain,
7521
+ cover,
7522
+ fill,
7523
+ scale-down,
7524
+ initial,
7525
+ none
7526
+ ),
7527
+ "object-position": (
7528
+ center: center,
7529
+ top: top,
7530
+ right: right,
7531
+ bottom: bottom,
7532
+ left: left,
7533
+ top-left: top left,
7534
+ top-right: top right,
7535
+ bottom-left: bottom left,
7536
+ bottom-right: bottom right
7537
+ ),
7477
7538
  "overflow": (
7478
7539
  auto: auto,
7479
7540
  hidden: hidden,
7480
7541
  visible: visible,
7481
7542
  scroll: scroll,
7482
- clip: clip,
7483
- x-auto: auto,
7484
- x-hidden: hidden,
7485
- x-visible: visible,
7486
- x-scroll: scroll,
7487
- x-clip: clip,
7488
- y-auto: auto,
7489
- y-hidden: hidden,
7490
- y-visible: visible,
7491
- y-scroll: scroll,
7492
- y-clip: clip
7543
+ clip: clip
7493
7544
  ),
7494
7545
  "overscroll": (),
7546
+ "placement": k-map-merge( $kendo-spacing, (
7547
+ // sass-lint:disable-block indentation
7548
+ -1: -1px
7549
+ )),
7495
7550
  "position": (
7496
7551
  static,
7497
7552
  relative,
@@ -7505,8 +7560,9 @@ $kendo-utils: (
7505
7560
  -1: -1px
7506
7561
  ),
7507
7562
  "visibility": (
7508
- visible,
7509
- hidden
7563
+ visible: visible,
7564
+ invisible: hidden,
7565
+ collapse: collapse
7510
7566
  ),
7511
7567
  "zindex": (
7512
7568
  0: 0,
@@ -7606,6 +7662,19 @@ $kendo-utils: (
7606
7662
  11: 11,
7607
7663
  12: 12,
7608
7664
  13: 13,
7665
+ -1: -1,
7666
+ -2: -2,
7667
+ -3: -3,
7668
+ -4: -4,
7669
+ -5: -5,
7670
+ -6: -6,
7671
+ -7: -7,
7672
+ -8: -8,
7673
+ -9: -9,
7674
+ -10: -10,
7675
+ -11: -11,
7676
+ -12: -12,
7677
+ -13: -13,
7609
7678
  auto: auto
7610
7679
  ),
7611
7680
  "grid-column-end": (
@@ -7622,6 +7691,19 @@ $kendo-utils: (
7622
7691
  11: 11,
7623
7692
  12: 12,
7624
7693
  13: 13,
7694
+ -1: -1,
7695
+ -2: -2,
7696
+ -3: -3,
7697
+ -4: -4,
7698
+ -5: -5,
7699
+ -6: -6,
7700
+ -7: -7,
7701
+ -8: -8,
7702
+ -9: -9,
7703
+ -10: -10,
7704
+ -11: -11,
7705
+ -12: -12,
7706
+ -13: -13,
7625
7707
  auto: auto
7626
7708
  ),
7627
7709
  "grid-column-span": (
@@ -7654,6 +7736,19 @@ $kendo-utils: (
7654
7736
  11: 11,
7655
7737
  12: 12,
7656
7738
  13: 13,
7739
+ -1: -1,
7740
+ -2: -2,
7741
+ -3: -3,
7742
+ -4: -4,
7743
+ -5: -5,
7744
+ -6: -6,
7745
+ -7: -7,
7746
+ -8: -8,
7747
+ -9: -9,
7748
+ -10: -10,
7749
+ -11: -11,
7750
+ -12: -12,
7751
+ -13: -13,
7657
7752
  auto: auto
7658
7753
  ),
7659
7754
  "grid-row-end": (
@@ -7670,6 +7765,19 @@ $kendo-utils: (
7670
7765
  11: 11,
7671
7766
  12: 12,
7672
7767
  13: 13,
7768
+ -1: -1,
7769
+ -2: -2,
7770
+ -3: -3,
7771
+ -4: -4,
7772
+ -5: -5,
7773
+ -6: -6,
7774
+ -7: -7,
7775
+ -8: -8,
7776
+ -9: -9,
7777
+ -10: -10,
7778
+ -11: -11,
7779
+ -12: -12,
7780
+ -13: -13,
7673
7781
  auto: auto
7674
7782
  ),
7675
7783
  "grid-row-span": (
@@ -7691,6 +7799,7 @@ $kendo-utils: (
7691
7799
  "grid-auto-flow": (
7692
7800
  row: row,
7693
7801
  col: column,
7802
+ dense: dense,
7694
7803
  row-dense: row dense,
7695
7804
  col-dense: column dense,
7696
7805
  unset: unset
@@ -7850,7 +7959,8 @@ $kendo-utils: (
7850
7959
  ),
7851
7960
 
7852
7961
  // Spacing
7853
- "margin": k-map-merge( $kendo-spacing, (
7962
+ "margin": k-map-merge( $kendo-spacing,
7963
+ k-map-negate( $kendo-spacing), (
7854
7964
  // sass-lint:disable-block indentation
7855
7965
  // TODO: remove this extension once we fix docs
7856
7966
  xs: k-map-get( $kendo-spacing, 1 ),
@@ -7859,7 +7969,8 @@ $kendo-utils: (
7859
7969
  lg: k-map-get( $kendo-spacing, 4 ),
7860
7970
  xl: k-map-get( $kendo-spacing, 6 ),
7861
7971
  thin: k-map-get( $kendo-spacing, 0.5 ), // sass-lint:disable-line leading-zero
7862
- hair: k-map-get( $kendo-spacing, 1px )
7972
+ hair: k-map-get( $kendo-spacing, 1px ),
7973
+ auto: auto
7863
7974
  )),
7864
7975
  "padding": k-map-merge( $kendo-spacing, (
7865
7976
  // sass-lint:disable-block indentation
@@ -7940,13 +8051,19 @@ $kendo-utils: (
7940
8051
  "font-variant-numeric": (),
7941
8052
  "letter-spacing": (),
7942
8053
  "line-height": (),
7943
- "list-style-type": (),
8054
+ "list-style-type": (
8055
+ none,
8056
+ disc,
8057
+ decimal
8058
+ ),
7944
8059
  "list-style-position": (),
7945
8060
  "text-align": (
7946
8061
  left,
7947
8062
  right,
7948
8063
  center,
7949
- justify
8064
+ justify,
8065
+ start,
8066
+ end
7950
8067
  ),
7951
8068
  "text-color": k-map-merge( $kendo-theme-colors, (
7952
8069
  // sass-lint:disable-block indentation
@@ -7956,7 +8073,12 @@ $kendo-utils: (
7956
8073
  "black": black,
7957
8074
  "white": white
7958
8075
  )),
7959
- "text-decoration": (),
8076
+ "text-decoration": (
8077
+ underline: underline,
8078
+ overline: overline,
8079
+ line-through: line-through,
8080
+ no-underline: none
8081
+ ),
7960
8082
  "text-decoration-width": (),
7961
8083
  "text-decoration-style": (),
7962
8084
  "text-decoration-color": (),
@@ -7972,7 +8094,16 @@ $kendo-utils: (
7972
8094
  ellipsis: ellipsis
7973
8095
  ),
7974
8096
  "text-indent": (),
7975
- "vertical-align": (),
8097
+ "vertical-align": (
8098
+ baseline,
8099
+ top,
8100
+ middle,
8101
+ bottom,
8102
+ text-top,
8103
+ text-bottom,
8104
+ sub,
8105
+ super
8106
+ ),
7976
8107
  "white-space": (
7977
8108
  normal,
7978
8109
  nowrap,
@@ -7984,6 +8115,12 @@ $kendo-utils: (
7984
8115
  "word-break": (),
7985
8116
 
7986
8117
  // Background
8118
+ "background-clip": (
8119
+ border: border-box,
8120
+ padding: padding-box,
8121
+ content: content-box,
8122
+ text: text
8123
+ ),
7987
8124
  "background-color": k-map-merge( $kendo-theme-colors, (
7988
8125
  // sass-lint:disable-block indentation
7989
8126
  "inherit": inherit,
@@ -8005,6 +8142,10 @@ $kendo-utils: (
8005
8142
  dashed,
8006
8143
  dotted,
8007
8144
  double,
8145
+ // groove,
8146
+ // ridge,
8147
+ inset,
8148
+ outset,
8008
8149
  hidden,
8009
8150
  none
8010
8151
  ),
@@ -8029,13 +8170,20 @@ $kendo-utils: (
8029
8170
  dashed,
8030
8171
  dotted,
8031
8172
  double,
8032
- groove,
8033
- ridge,
8173
+ // groove,
8174
+ // ridge,
8034
8175
  inset,
8035
8176
  outset,
8036
8177
  none
8037
8178
  ),
8038
- "outline-color": (),
8179
+ "outline-color": k-map-merge( $kendo-theme-colors, (
8180
+ // sass-lint:disable-block indentation
8181
+ "inherit": inherit,
8182
+ "current": currentColor,
8183
+ "transparent": transparent,
8184
+ "black": black,
8185
+ "white": white
8186
+ )),
8039
8187
  "outline-offset": (
8040
8188
  0: 0,
8041
8189
  1: 1px,
@@ -8045,8 +8193,32 @@ $kendo-utils: (
8045
8193
  ),
8046
8194
 
8047
8195
  // Effects
8196
+ "box-shadow": (),
8197
+ "box-shadow-color": (),
8198
+ "opacity": (
8199
+ // sass-lint:disable-block leading-zero
8200
+ 0: 0,
8201
+ 5: 0.05,
8202
+ 10: 0.1,
8203
+ 20: 0.2,
8204
+ 30: 0.3,
8205
+ 40: 0.4,
8206
+ 50: 0.5,
8207
+ 60: 0.6,
8208
+ 70: 0.7,
8209
+ 80: 0.8,
8210
+ 90: 0.9,
8211
+ 100: 1
8212
+ ),
8048
8213
 
8049
8214
  // Filter
8215
+ "backdrop-blur": (
8216
+ DEFAULT: blur(8px),
8217
+ none: blur(0),
8218
+ sm: blur(4px),
8219
+ md: blur(6px),
8220
+ lg: blur(12px)
8221
+ ),
8050
8222
 
8051
8223
  // Table
8052
8224
  "border-collapse": (
@@ -8213,6 +8385,14 @@ $kendo-utils: (
8213
8385
  scroll: scroll-position,
8214
8386
  contents: contents,
8215
8387
  transform: transform
8388
+ ),
8389
+ "fill-stroke": (
8390
+ none: none,
8391
+ inherit: inherit,
8392
+ current: currentColor,
8393
+ "transparent": transparent,
8394
+ "black": black,
8395
+ "white": white
8216
8396
  )
8217
8397
  ) !default;
8218
8398
 
@@ -8328,6 +8508,18 @@ $kendo-utils: (
8328
8508
 
8329
8509
  }
8330
8510
 
8511
+ // #endregion
8512
+ // #region @import "./_box-sizing.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_box-sizing.scss
8513
+ // TODO: docs
8514
+
8515
+ @mixin kendo-utils--layout--box-sizing() {
8516
+
8517
+ // box-sizing utility classes
8518
+ $kendo-utils-box-sizing: k-map-get( $kendo-utils, "box-sizing" ) !default;
8519
+ @include generate-utils( box-sizing, box-sizing, $kendo-utils-box-sizing );
8520
+
8521
+ }
8522
+
8331
8523
  // #endregion
8332
8524
  // #region @import "./_clear.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_clear.scss
8333
8525
  // Clear documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/clear.
@@ -8360,6 +8552,83 @@ $kendo-utils: (
8360
8552
 
8361
8553
  }
8362
8554
 
8555
+ // #endregion
8556
+ // #region @import "./_columns.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_columns.scss
8557
+ // Columns documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/columns.
8558
+
8559
+ /// This is equivalent to `columns: 1;`. Element's content is displayed into 1 column.
8560
+ /// @name .k-columns-1
8561
+ /// @group columns
8562
+ /// @contextType css
8563
+
8564
+ /// This is equivalent to `columns: 2;`. Element's content is broken into 2 columns.
8565
+ /// @name .k-columns-2
8566
+ /// @group columns
8567
+ /// @contextType css
8568
+
8569
+ /// This is equivalent to `columns: 3;`. Element's content is broken into 3 columns.
8570
+ /// @name .k-columns-3
8571
+ /// @group columns
8572
+ /// @contextType css
8573
+
8574
+ /// This is equivalent to `columns: 4;`. Element's content is broken into 4 columns.
8575
+ /// @name .k-columns-4
8576
+ /// @group columns
8577
+ /// @contextType css
8578
+
8579
+ /// This is equivalent to `columns: 5;`. Element's content is broken into 5 columns.
8580
+ /// @name .k-columns-5
8581
+ /// @group columns
8582
+ /// @contextType css
8583
+
8584
+ /// This is equivalent to `columns: 6;`. Element's content is broken into 6 columns.
8585
+ /// @name .k-columns-6
8586
+ /// @group columns
8587
+ /// @contextType css
8588
+
8589
+ /// This is equivalent to `columns: 7;`. Element's content is broken into 7 columns.
8590
+ /// @name .k-columns-7
8591
+ /// @group columns
8592
+ /// @contextType css
8593
+
8594
+ /// This is equivalent to `columns: 8;`. Element's content is broken into 8 columns.
8595
+ /// @name .k-columns-8
8596
+ /// @group columns
8597
+ /// @contextType css
8598
+
8599
+ /// This is equivalent to `columns: 9;`. Element's content is broken into 9 columns.
8600
+ /// @name .k-columns-9
8601
+ /// @group columns
8602
+ /// @contextType css
8603
+
8604
+ /// This is equivalent to `columns: 10;`. Element's content is broken into 10 columns.
8605
+ /// @name .k-columns-10
8606
+ /// @group columns
8607
+ /// @contextType css
8608
+
8609
+ /// This is equivalent to `columns: 11;`. Element's content is broken into 11 columns.
8610
+ /// @name .k-columns-11
8611
+ /// @group columns
8612
+ /// @contextType css
8613
+
8614
+ /// This is equivalent to `columns: 12;`. Element's content is broken into 12 columns.
8615
+ /// @name .k-columns-12
8616
+ /// @group columns
8617
+ /// @contextType css
8618
+
8619
+ /// This is equivalent to `columns: auto;`.The number of columns is determined by other CSS properties, such as column-width.
8620
+ /// @name .k-columns-auto
8621
+ /// @group columns
8622
+ /// @contextType css
8623
+
8624
+ @mixin kendo-utils--layout--columns() {
8625
+
8626
+ // columns utility classes
8627
+ $kendo-utils-columns: k-map-get( $kendo-utils, "columns" ) !default;
8628
+ @include generate-utils( columns, columns, $kendo-utils-columns );
8629
+
8630
+ }
8631
+
8363
8632
  // #endregion
8364
8633
  // #region @import "./_display.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_display.scss
8365
8634
  /// This is equivalent to `display: none;`. Turns off the display of an element so that it has no effect on layout (the document is rendered as though the element did not exist). All descendant elements also have their display turned off.
@@ -8417,6 +8686,8 @@ $kendo-utils: (
8417
8686
  /// @group display
8418
8687
  /// @contextType css
8419
8688
 
8689
+ // TODO tables' parts
8690
+
8420
8691
  @mixin kendo-utils--layout--display() {
8421
8692
 
8422
8693
  // Display utility classes
@@ -8460,6 +8731,30 @@ $kendo-utils: (
8460
8731
 
8461
8732
  }
8462
8733
 
8734
+ // #endregion
8735
+ // #region @import "./_object-fit.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-fit.scss
8736
+ // TODO: docs
8737
+
8738
+ @mixin kendo-utils--layout--object-fit() {
8739
+
8740
+ // object-fit utility classes
8741
+ $kendo-utils-object-fit: k-map-get( $kendo-utils, "object-fit" ) !default;
8742
+ @include generate-utils( object-fit, object-fit, $kendo-utils-object-fit );
8743
+
8744
+ }
8745
+
8746
+ // #endregion
8747
+ // #region @import "./_object-position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-position.scss
8748
+ // TODO: docs
8749
+
8750
+ @mixin kendo-utils--layout--object-position() {
8751
+
8752
+ // object-position utility classes
8753
+ $kendo-utils-object-position: k-map-get( $kendo-utils, "object-position" ) !default;
8754
+ @include generate-utils( object-position, object-position, $kendo-utils-object-position );
8755
+
8756
+ }
8757
+
8463
8758
  // #endregion
8464
8759
  // #region @import "./_overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_overflow.scss
8465
8760
  /// This is equivalent to `overflow: auto;`. Depends on the user agent. If content fits inside the padding box, it looks the same as visible, but still establishes a new block formatting context. Desktop browsers provide scrollbar if content overflows.
@@ -8542,38 +8837,14 @@ $kendo-utils: (
8542
8837
  // Overflow utility classes
8543
8838
  $kendo-utils-overflow: k-map-get( $kendo-utils, "overflow" ) !default;
8544
8839
  @include generate-utils( overflow, overflow, $kendo-utils-overflow );
8545
-
8840
+ @include generate-utils( overflow-x, overflow-x, $kendo-utils-overflow );
8841
+ @include generate-utils( overflow-y, overflow-y, $kendo-utils-overflow );
8546
8842
  }
8547
8843
 
8548
8844
  // #endregion
8549
- // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
8845
+ // #region @import "./_placement.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_placement.scss
8550
8846
  // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
8551
8847
 
8552
- /// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
8553
- /// @name .k-pos-static
8554
- /// @group position
8555
- /// @contextType css
8556
-
8557
- /// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
8558
- /// @name .k-pos-relative
8559
- /// @group position
8560
- /// @contextType css
8561
-
8562
- /// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
8563
- /// @name .k-pos-absolute
8564
- /// @group position
8565
- /// @contextType css
8566
-
8567
- /// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
8568
- /// @name .k-pos-fixed
8569
- /// @group position
8570
- /// @contextType css
8571
-
8572
- /// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
8573
- /// @name .k-pos-sticky
8574
- /// @group position
8575
- /// @contextType css
8576
-
8577
8848
 
8578
8849
  // TODO: inset docs
8579
8850
 
@@ -8598,35 +8869,26 @@ $kendo-utils: (
8598
8869
  /// @group position
8599
8870
  /// @contextType css
8600
8871
 
8601
- @mixin kendo-utils--layout--position() {
8602
-
8603
- // Position utility classes
8604
- $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
8605
- @include generate-utils( pos, position, $kendo-utils-position );
8606
-
8872
+ @mixin kendo-utils--layout--placement() {
8873
+ // Top / right / bottom / left
8874
+ $kendo-utils-placement: k-map-get( $kendo-utils, "placement" ) !default;
8875
+ @include generate-utils( top, top, $kendo-utils-placement );
8876
+ @include generate-utils( right, right, $kendo-utils-placement );
8877
+ @include generate-utils( bottom, bottom, $kendo-utils-placement );
8878
+ @include generate-utils( left, left, $kendo-utils-placement );
8607
8879
 
8608
- // Legacy aliases
8609
- .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
8610
- .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
8611
- .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
8612
- .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
8613
- .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
8614
- .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
8615
- .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
8616
- .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
8617
- .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
8618
- .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
8619
8880
 
8881
+ // Position length utility classes
8882
+ @each $side in (top, right, bottom, left) {
8883
+ .#{$kendo-prefix}#{$side},
8884
+ .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
8885
+ }
8620
8886
 
8621
8887
  // Inset utility classes
8622
8888
  $kendo-utils-inset: k-map-get( $kendo-utils, "inset" ) !default;
8623
8889
  @include generate-utils( inset, inset, $kendo-utils-inset );
8624
8890
  @include generate-utils( inset-x, inset-inline, $kendo-utils-inset );
8625
8891
  @include generate-utils( inset-y, inset-block, $kendo-utils-inset );
8626
- @include generate-utils( top, top, $kendo-utils-inset );
8627
- @include generate-utils( right, right, $kendo-utils-inset );
8628
- @include generate-utils( bottom, bottom, $kendo-utils-inset );
8629
- @include generate-utils( left, left, $kendo-utils-inset );
8630
8892
  @include generate-utils( top-left, ( top, left ), $kendo-utils-inset );
8631
8893
  @include generate-utils( top-right, ( top, right ), $kendo-utils-inset );
8632
8894
  @include generate-utils( bottom-left, ( bottom, left ), $kendo-utils-inset );
@@ -8690,12 +8952,55 @@ $kendo-utils: (
8690
8952
  transform: translateX(-50%);
8691
8953
  }
8692
8954
 
8955
+ }
8693
8956
 
8694
- // Position length utility classes
8695
- @each $side in (top, right, bottom, left) {
8696
- .#{$kendo-prefix}#{$side},
8697
- .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
8698
- }
8957
+ // #endregion
8958
+ // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
8959
+ // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
8960
+
8961
+ /// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
8962
+ /// @name .k-pos-static
8963
+ /// @group position
8964
+ /// @contextType css
8965
+
8966
+ /// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
8967
+ /// @name .k-pos-relative
8968
+ /// @group position
8969
+ /// @contextType css
8970
+
8971
+ /// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
8972
+ /// @name .k-pos-absolute
8973
+ /// @group position
8974
+ /// @contextType css
8975
+
8976
+ /// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
8977
+ /// @name .k-pos-fixed
8978
+ /// @group position
8979
+ /// @contextType css
8980
+
8981
+ /// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
8982
+ /// @name .k-pos-sticky
8983
+ /// @group position
8984
+ /// @contextType css
8985
+
8986
+ @mixin kendo-utils--layout--position() {
8987
+
8988
+ // Position utility classes
8989
+ $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
8990
+ @include generate-utils( pos, position, $kendo-utils-position );
8991
+
8992
+
8993
+ // Legacy aliases
8994
+ .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
8995
+ .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
8996
+ .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
8997
+ .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
8998
+ .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
8999
+ .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
9000
+ .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
9001
+ .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
9002
+ .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
9003
+ .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
8699
9004
 
8700
9005
  }
8701
9006
 
@@ -8735,10 +9040,15 @@ $kendo-utils: (
8735
9040
 
8736
9041
  @mixin kendo-utils--layout() {
8737
9042
  @include kendo-utils--layout--aspect-ratio();
9043
+ @include kendo-utils--layout--box-sizing();
8738
9044
  @include kendo-utils--layout--clear();
9045
+ @include kendo-utils--layout--columns();
8739
9046
  @include kendo-utils--layout--display();
8740
9047
  @include kendo-utils--layout--float();
9048
+ @include kendo-utils--layout--object-fit();
9049
+ @include kendo-utils--layout--object-position();
8741
9050
  @include kendo-utils--layout--overflow();
9051
+ @include kendo-utils--layout--placement();
8742
9052
  @include kendo-utils--layout--position();
8743
9053
  @include kendo-utils--layout--visibility();
8744
9054
  @include kendo-utils--layout--zindex();
@@ -9362,7 +9672,18 @@ $kendo-utils: (
9362
9672
  // font variant
9363
9673
  // letter spacing
9364
9674
  // line height
9365
- // list style
9675
+ // #region @import "./_list-style.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_list-style.scss
9676
+ // TODO: docs
9677
+
9678
+ @mixin kendo-utils--typography--list-style-type() {
9679
+
9680
+ // list-style-type utility classes
9681
+ $kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
9682
+ @include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
9683
+
9684
+ }
9685
+
9686
+ // #endregion
9366
9687
  // #region @import "./_text-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-align.scss
9367
9688
  // Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
9368
9689
 
@@ -9412,7 +9733,18 @@ $kendo-utils: (
9412
9733
  }
9413
9734
 
9414
9735
  // #endregion
9415
- // text decoration
9736
+ // #region @import "./_text-decoration.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
9737
+ // TODO: docs
9738
+
9739
+ @mixin kendo-utils--typography--text-decoration() {
9740
+
9741
+ // text-decoration utility classes
9742
+ $kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
9743
+ @include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
9744
+
9745
+ }
9746
+
9747
+ // #endregion
9416
9748
  // #region @import "./_text-overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-overflow.scss
9417
9749
  @mixin kendo-utils--typography--text-overflow() {
9418
9750
 
@@ -9468,7 +9800,18 @@ $kendo-utils: (
9468
9800
 
9469
9801
  // #endregion
9470
9802
  // text indent
9471
- // vertical align
9803
+ // #region @import "./_vertical-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_vertical-align.scss
9804
+ // TODO: docs
9805
+
9806
+ @mixin kendo-utils--typography--vertical-align() {
9807
+
9808
+ // vertical-align utility classes
9809
+ $kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
9810
+ @include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
9811
+
9812
+ }
9813
+
9814
+ // #endregion
9472
9815
  // #region @import "./_white-space.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_white-space.scss
9473
9816
  // White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
9474
9817
 
@@ -9523,15 +9866,30 @@ $kendo-utils: (
9523
9866
  @include kendo-utils--typography--font-size();
9524
9867
  @include kendo-utils--typography--font-style();
9525
9868
  @include kendo-utils--typography--font-weight();
9869
+ @include kendo-utils--typography--list-style-type();
9526
9870
  @include kendo-utils--typography--text-align();
9527
9871
  @include kendo-utils--typography--text-color();
9872
+ @include kendo-utils--typography--text-decoration();
9528
9873
  @include kendo-utils--typography--text-overflow();
9529
9874
  @include kendo-utils--typography--text-transform();
9875
+ @include kendo-utils--typography--vertical-align();
9530
9876
  @include kendo-utils--typography--white-space();
9531
9877
  }
9532
9878
 
9533
9879
  // #endregion
9534
9880
  // #region @import "./background/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/index.import.scss
9881
+ // #region @import "./_background-clip.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-clip.scss
9882
+ // TODO: docs
9883
+
9884
+ @mixin kendo-utils--background--background-clip() {
9885
+
9886
+ // Background color utility classes
9887
+ $kendo-utils-background-clip: k-map-get( $kendo-utils, "background-clip" ) !default;
9888
+ @include generate-utils( bg-clip, background-clip, $kendo-utils-background-clip );
9889
+
9890
+ }
9891
+
9892
+ // #endregion
9535
9893
  // #region @import "./_background-color.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-color.scss
9536
9894
  // TODO: docs
9537
9895
 
@@ -9547,6 +9905,7 @@ $kendo-utils: (
9547
9905
 
9548
9906
 
9549
9907
  @mixin kendo-utils--background() {
9908
+ @include kendo-utils--background--background-clip();
9550
9909
  @include kendo-utils--background--background-color();
9551
9910
  }
9552
9911
 
@@ -9695,8 +10054,46 @@ $kendo-utils: (
9695
10054
  }
9696
10055
 
9697
10056
  // #endregion
9698
- // effects
9699
- // filter
10057
+ // #region @import "./effects/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/index.import.scss
10058
+ // box shadow
10059
+ // box shadow color
10060
+ // #region @import "./_opacity.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/_opacity.scss
10061
+ // TODO: docs
10062
+
10063
+ @mixin kendo-utils--effects--opacity() {
10064
+
10065
+ // opacity utility classes
10066
+ $kendo-utils-opacity: k-map-get( $kendo-utils, "opacity" ) !default;
10067
+ @include generate-utils( opacity, opacity, $kendo-utils-opacity );
10068
+
10069
+ }
10070
+
10071
+ // #endregion
10072
+
10073
+ @mixin kendo-utils--effects() {
10074
+ @include kendo-utils--effects--opacity();
10075
+ }
10076
+
10077
+ // #endregion
10078
+ // #region @import "./filter/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/index.import.scss
10079
+ // #region @import "./_backdrop.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/_backdrop.scss
10080
+ // TODO: docs
10081
+
10082
+ @mixin kendo-utils--filter--backdrop() {
10083
+
10084
+ // backdrop utility classes
10085
+ $kendo-utils-backdrop-blur: k-map-get( $kendo-utils, "backdrop-blur" ) !default;
10086
+ @include generate-utils( backdrop-blur, backdrop-filter, $kendo-utils-backdrop-blur );
10087
+
10088
+ }
10089
+
10090
+ // #endregion
10091
+
10092
+ @mixin kendo-utils--filter() {
10093
+ @include kendo-utils--filter--backdrop();
10094
+ }
10095
+
10096
+ // #endregion
9700
10097
  // #region @import "./table/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/index.import.scss
9701
10098
  // #region @import "./_border-collapse.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/_border-collapse.scss
9702
10099
  // TODO: docs
@@ -10249,6 +10646,38 @@ $kendo-utils: (
10249
10646
  @include kendo-utils--interactivity--will-change();
10250
10647
  }
10251
10648
 
10649
+ // #endregion
10650
+ // #region @import "./svg/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/index.import.scss
10651
+ // #region @import "./_fill.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_fill.scss
10652
+ // TODO: docs
10653
+
10654
+ @mixin kendo-utils--svg--fill() {
10655
+
10656
+ // fill utility classes
10657
+ $kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
10658
+ @include generate-utils( fill, fill, $kendo-utils-fill );
10659
+
10660
+ }
10661
+
10662
+ // #endregion
10663
+ // #region @import "./_stroke.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_stroke.scss
10664
+ // TODO: docs
10665
+
10666
+ @mixin kendo-utils--svg--stroke() {
10667
+
10668
+ // stroke utility classes
10669
+ $kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
10670
+ @include generate-utils( stroke, stroke, $kendo-utils-stroke );
10671
+
10672
+ }
10673
+
10674
+ // #endregion
10675
+
10676
+ @mixin kendo-utils--svg() {
10677
+ @include kendo-utils--svg--fill();
10678
+ @include kendo-utils--svg--stroke();
10679
+ }
10680
+
10252
10681
  // #endregion
10253
10682
 
10254
10683
 
@@ -10262,9 +10691,12 @@ $kendo-utils: (
10262
10691
  @include kendo-utils--typography();
10263
10692
  @include kendo-utils--background();
10264
10693
  @include kendo-utils--border();
10694
+ @include kendo-utils--effects();
10695
+ @include kendo-utils--filter();
10265
10696
  @include kendo-utils--table();
10266
10697
  @include kendo-utils--transform();
10267
10698
  @include kendo-utils--interactivity();
10699
+ @include kendo-utils--svg();
10268
10700
  }
10269
10701
 
10270
10702
  // #endregion
@@ -12298,122 +12730,123 @@ $_kendo-module-meta: (
12298
12730
  // #region @import "../list/_variables.scss"; -> scss/list/_variables.scss
12299
12731
  // List
12300
12732
 
12301
- /// Font size of the list component, if no size is set.
12733
+ /// The font size of the List component, if no size is set.
12302
12734
  /// @group list
12303
12735
  $kendo-list-font-size: null !default;
12304
12736
  $kendo-list-sm-font-size: $kendo-font-size-sm !default;
12305
12737
  $kendo-list-md-font-size: $kendo-font-size-md !default;
12306
12738
  $kendo-list-lg-font-size: $kendo-font-size-md !default;
12307
12739
 
12308
- /// Line height of the list component, if no size is set.
12740
+ /// The line height of the List component, if no size is set.
12309
12741
  /// @group list
12310
12742
  $kendo-list-line-height: null !default;
12311
12743
  $kendo-list-sm-line-height: k-math-div( 20, 14 ) !default;
12312
12744
  $kendo-list-md-line-height: $kendo-line-height-md !default;
12313
12745
  $kendo-list-lg-line-height: $kendo-line-height-md !default;
12314
12746
 
12315
- /// Horizontal padding of list header, if no size is set.
12747
+ /// The horizontal padding of List header, if no size is set.
12316
12748
  /// @group list
12317
12749
  $kendo-list-header-padding-x: null !default;
12318
12750
  $kendo-list-sm-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12319
12751
  $kendo-list-md-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12320
12752
  $kendo-list-lg-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12321
12753
 
12322
- /// Vertical padding of list header, if no size is set.
12754
+ /// The vertical padding of the List header, if no size is set.
12323
12755
  /// @group list
12324
12756
  $kendo-list-header-padding-y: null !default;
12325
12757
  $kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
12326
12758
  $kendo-list-md-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
12327
12759
  $kendo-list-lg-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
12328
12760
 
12329
- /// Border width of list header.
12761
+ /// The border width of the List header.
12330
12762
  /// @group list
12331
12763
  $kendo-list-header-border-width: 0 0 1px !default;
12332
12764
 
12333
- /// Font size of list header, if no size is set.
12765
+ /// The font size of the List header, if no size is set.
12334
12766
  /// @group list
12335
12767
  $kendo-list-header-font-size: null !default;
12336
12768
  $kendo-list-sm-header-font-size: null !default;
12337
12769
  $kendo-list-md-header-font-size: null !default;
12338
12770
  $kendo-list-lg-header-font-size: null !default;
12339
12771
 
12340
- /// Line height of list header, if no size is set.
12772
+ /// The line height of the List header, if no size is set.
12341
12773
  /// @group list
12342
12774
  $kendo-list-header-line-height: null !default;
12343
12775
  $kendo-list-sm-header-line-height: null !default;
12344
12776
  $kendo-list-md-header-line-height: null !default;
12345
12777
  $kendo-list-lg-header-line-height: null !default;
12346
12778
 
12347
- /// Font weight of list header.
12779
+ /// The font weight of the List header.
12348
12780
  /// @group list
12349
12781
  $kendo-list-header-font-weight: bold !default;
12350
12782
 
12351
- /// Horizontal padding of list items, when no size is set.
12783
+ /// The horizontal padding of the List items, when no size is set.
12352
12784
  /// @group list
12353
12785
  $kendo-list-item-padding-x: null !default;
12354
12786
  $kendo-list-sm-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12355
12787
  $kendo-list-md-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12356
12788
  $kendo-list-lg-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12357
12789
 
12358
- /// Vertical padding of list items, when no size is set.
12790
+ /// The vertical padding of the List items, when no size is set.
12359
12791
  /// @group list
12360
12792
  $kendo-list-item-padding-y: null !default;
12361
12793
  $kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
12362
12794
  $kendo-list-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
12363
12795
  $kendo-list-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
12364
12796
 
12365
- /// Font size of list items, if no size is set.
12797
+ /// The font size of the List items, if no size is set.
12366
12798
  /// @group list
12367
12799
  $kendo-list-item-font-size: null !default;
12368
12800
  $kendo-list-sm-item-font-size: null !default;
12369
12801
  $kendo-list-md-item-font-size: null !default;
12370
12802
  $kendo-list-lg-item-font-size: null !default;
12371
12803
 
12372
- /// Line height of list items, if no size is set.
12804
+ /// The line height of the List items, if no size is set.
12373
12805
  /// @group list
12374
12806
  $kendo-list-item-line-height: null !default;
12375
12807
  $kendo-list-sm-item-line-height: null !default;
12376
12808
  $kendo-list-md-item-line-height: null !default;
12377
12809
  $kendo-list-lg-item-line-height: null !default;
12378
12810
 
12379
- /// Horizontal padding of list group items, when no size is set.
12811
+ /// The horizontal padding of the List group items, when no size is set.
12380
12812
  /// @group list
12381
12813
  $kendo-list-group-item-padding-x: null !default;
12382
12814
  $kendo-list-sm-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12383
12815
  $kendo-list-md-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12384
12816
  $kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
12385
12817
 
12386
- /// Vertical padding of list group items, when no size is set.
12818
+ /// The vertical padding of the List group items, when no size is set.
12387
12819
  /// @group list
12388
12820
  $kendo-list-group-item-padding-y: null !default;
12389
12821
  $kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
12390
12822
  $kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
12391
12823
  $kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
12392
12824
 
12393
- /// Border width of list group items.
12825
+ /// The border width of the List group items.
12394
12826
  /// @group list
12395
12827
  $kendo-list-group-item-border-width: 1px 0 0 !default;
12396
12828
 
12397
- /// Font size of list group items, if no size is set.
12829
+ /// The font size of the List group items, if no size is set.
12398
12830
  /// @group list
12399
12831
  $kendo-list-group-item-font-size: null !default;
12400
12832
  $kendo-list-sm-group-item-font-size: null !default;
12401
12833
  $kendo-list-md-group-item-font-size: null !default;
12402
12834
  $kendo-list-lg-group-item-font-size: null !default;
12403
12835
 
12404
- /// Line height of list group items, if no size is set.
12836
+ /// The line height of the List group items, if no size is set.
12405
12837
  /// @group list
12406
12838
  $kendo-list-group-item-line-height: null !default;
12407
12839
  $kendo-list-sm-group-item-line-height: null !default;
12408
12840
  $kendo-list-md-group-item-line-height: null !default;
12409
12841
  $kendo-list-lg-group-item-line-height: null !default;
12410
12842
 
12411
- /// Font weight of list group item.
12843
+ /// The font weight of a List group item.
12412
12844
  /// @group list
12413
12845
  $kendo-list-group-item-font-weight: bold !default;
12414
12846
 
12415
12847
 
12416
- // Kendo list sizes
12848
+ /// The map with the sizes of the List.
12849
+ /// @group list
12417
12850
  $kendo-list-sizes: (
12418
12851
  sm: (
12419
12852
  font-size: $kendo-list-sm-font-size,
@@ -12466,241 +12899,271 @@ $kendo-list-sizes: (
12466
12899
  ) !default;
12467
12900
 
12468
12901
 
12469
- /// Background color of the list component.
12902
+ /// The background color of the List component.
12470
12903
  /// @group list
12471
12904
  $kendo-list-bg: $kendo-component-bg !default;
12472
- /// Text color of the list component.
12905
+ /// The text color of the List component.
12473
12906
  /// @group list
12474
12907
  $kendo-list-text: $kendo-component-text !default;
12475
- /// Border color of the list component.
12908
+ /// The border color of the List component.
12476
12909
  /// @group list
12477
12910
  $kendo-list-border: $kendo-component-border !default;
12478
12911
 
12479
12912
 
12480
- /// Background color of list header.
12913
+ /// The background color of the List header.
12481
12914
  /// @group list
12482
12915
  $kendo-list-header-bg: null !default;
12483
- /// Text color of list header.
12916
+ /// The text color of the List header
12484
12917
  /// @group list
12485
12918
  $kendo-list-header-text: null !default;
12486
- /// Border color of list header.
12919
+ /// The border color of the List header.
12487
12920
  /// @group list
12488
12921
  $kendo-list-header-border: inherit !default;
12489
- /// Box shadow of list header.
12922
+ /// The box shadow of the List header.
12490
12923
  /// @group list
12491
12924
  $kendo-list-header-shadow: null !default;
12492
12925
 
12493
12926
 
12494
- /// Background color of list items.
12927
+ /// The background color of the List items.
12495
12928
  /// @group list
12496
12929
  $kendo-list-item-bg: null !default;
12497
- /// Text color of list items.
12930
+ /// The text color of the List items.
12498
12931
  /// @group list
12499
12932
  $kendo-list-item-text: null !default;
12500
12933
 
12501
- /// Background color of hovered list items.
12934
+ /// The background color of the hovered List items.
12502
12935
  /// @group list
12503
12936
  $kendo-list-item-hover-bg: $kendo-hover-bg !default;
12504
- /// Text color of hovered list items.
12937
+ /// The text color of the hovered List items.
12505
12938
  /// @group list
12506
12939
  $kendo-list-item-hover-text: $kendo-hover-text !default;
12507
12940
 
12508
- /// Background color of focused list items.
12941
+ /// The background color of the focused List items.
12509
12942
  /// @group list
12510
12943
  $kendo-list-item-focus-bg: null !default;
12511
- /// Text color of focused list items.
12944
+ /// The text color of the focused List items.
12512
12945
  /// @group list
12513
12946
  $kendo-list-item-focus-text: null !default;
12514
- /// Box shadow of focused list items.
12947
+ /// The box shadow of the focused List items.
12515
12948
  /// @group list
12516
12949
  $kendo-list-item-focus-shadow: inset 0 0 0 3px rgba( $kendo-list-text, .15 ) !default;
12517
12950
 
12518
- /// Background color of selected list items.
12951
+ /// The background color of the selected List items.
12519
12952
  /// @group list
12520
12953
  $kendo-list-item-selected-bg: $kendo-selected-bg !default;
12521
- /// Text color of selected list items.
12954
+ /// The text color of the selected List items.
12522
12955
  /// @group list
12523
12956
  $kendo-list-item-selected-text: $kendo-selected-text !default;
12524
12957
 
12525
- /// Background color of list group items.
12958
+ /// The background color of the List group items.
12526
12959
  /// @group list
12527
12960
  $kendo-list-group-item-bg: null !default;
12528
- /// Text color of list group items.
12961
+ /// The text color of the List group items.
12529
12962
  /// @group list
12530
12963
  $kendo-list-group-item-text: null !default;
12531
- /// The border color of list group items.
12964
+ /// The border color of the List group items..
12532
12965
  /// @group list
12533
12966
  $kendo-list-group-item-border: inherit !default;
12534
- /// The base shadow of list group items.
12967
+ /// The base shadow of the List group items.
12535
12968
  /// @group list
12536
12969
  $kendo-list-group-item-shadow: null !default;
12537
12970
 
12538
- /// Text color of the 'No Data' text.
12971
+ /// The color of the 'No Data' text.
12539
12972
  /// @group list
12540
12973
  $kendo-list-no-data-text: $kendo-subtle-text !default;
12541
12974
 
12542
12975
  // #endregion
12543
12976
 
12544
12977
 
12545
- // Checkbox
12978
+ // CheckBox
12546
12979
 
12547
- /// Border width of checkbox.
12980
+ /// The border width of the CheckBox.
12548
12981
  /// @group checkbox
12549
12982
  $kendo-checkbox-border-width: 1px !default;
12550
12983
 
12551
- // Checkbox sizes
12984
+ /// The size of a small CheckBox.
12985
+ /// @group checkbox
12986
+ $kendo-checkbox-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
12987
+ ///The size of a medium CheckBox.
12988
+ /// @group checkbox
12989
+ $kendo-checkbox-md-size: k-map-get( $kendo-spacing, 4 ) !default;
12990
+ /// The size of a large CheckBox.
12991
+ /// @group checkbox
12992
+ $kendo-checkbox-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
12993
+
12994
+ /// The glyph size of a small CheckBox.
12995
+ /// @group checkbox
12996
+ $kendo-checkbox-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
12997
+ /// The glyph size of a medium CheckBox.
12998
+ /// @group checkbox
12999
+ $kendo-checkbox-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
13000
+ /// The glyph size of a large CheckBox.
13001
+ /// @group checkbox
13002
+ $kendo-checkbox-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
13003
+
13004
+ /// The ripple size of a small CheckBox.
13005
+ /// @group checkbox
13006
+ $kendo-checkbox-sm-ripple-size: 300% !default;
13007
+ /// The ripple size of a medium CheckBox.
13008
+ /// @group checkbox
13009
+ $kendo-checkbox-md-ripple-size: 300% !default;
13010
+ /// The ripple size of a large CheckBox.
13011
+ /// @group checkbox
13012
+ $kendo-checkbox-lg-ripple-size: 300% !default;
13013
+
13014
+ // A map with the different CheckBox sizes
12552
13015
  $kendo-checkbox-sizes: (
12553
13016
  sm: (
12554
- size: k-map-get( $kendo-spacing, 3 ),
12555
- glyph-size: k-map-get( $kendo-spacing, 2.5 ),
12556
- ripple-size: 300%
13017
+ size: $kendo-checkbox-sm-size,
13018
+ glyph-size: $kendo-checkbox-sm-glyph-size,
13019
+ ripple-size: $kendo-checkbox-sm-ripple-size
12557
13020
  ),
12558
13021
  md: (
12559
- size: k-map-get( $kendo-spacing, 4 ),
12560
- glyph-size: k-map-get( $kendo-spacing, 3.5 ),
12561
- ripple-size: 300%
13022
+ size: $kendo-checkbox-md-size,
13023
+ glyph-size: $kendo-checkbox-md-glyph-size,
13024
+ ripple-size: $kendo-checkbox-md-ripple-size
12562
13025
  ),
12563
13026
  lg: (
12564
- size: k-map-get( $kendo-spacing, 5 ),
12565
- glyph-size: k-map-get( $kendo-spacing, 4.5 ),
12566
- ripple-size: 300%
13027
+ size: $kendo-checkbox-lg-size,
13028
+ glyph-size: $kendo-checkbox-lg-glyph-size,
13029
+ ripple-size: $kendo-checkbox-lg-ripple-size
12567
13030
  )
12568
13031
  ) !default;
12569
13032
 
12570
- /// Background color of checkbox.
13033
+ /// The background color of CheckBox.
12571
13034
  /// @group checkbox
12572
13035
  $kendo-checkbox-bg: $kendo-component-bg !default;
12573
- /// Color of checkbox.
13036
+ /// The text color of CheckBox.
12574
13037
  /// @group checkbox
12575
13038
  $kendo-checkbox-text: null !default;
12576
- /// Border color of checkbox.
13039
+ /// The border color of CheckBox.
12577
13040
  /// @group checkbox
12578
13041
  $kendo-checkbox-border: if( k-is-light( $kendo-checkbox-bg ), $gray-400, $gray-600 ) !default;
12579
13042
 
12580
- /// Background color of hovered checkbox.
13043
+ /// The background color of the hovered CheckBox.
12581
13044
  /// @group checkbox
12582
13045
  $kendo-checkbox-hover-bg: null !default;
12583
- /// Color of hovered checkbox.
13046
+ /// The text color of the hovered CheckBox.
12584
13047
  /// @group checkbox
12585
13048
  $kendo-checkbox-hover-text: null !default;
12586
- /// Border color of hovered checkbox.
13049
+ /// The border color of the hovered CheckBox.
12587
13050
  /// @group checkbox
12588
13051
  $kendo-checkbox-hover-border: null !default;
12589
13052
 
12590
- /// Background color of checked checkbox.
13053
+ /// The background color of the checked CheckBox.
12591
13054
  /// @group checkbox
12592
13055
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
12593
- /// Color of checked checkbox.
13056
+ /// The color of the checked CheckBox.
12594
13057
  /// @group checkbox
12595
13058
  $kendo-checkbox-checked-text: k-contrast-color( $kendo-checkbox-checked-bg ) !default;
12596
- /// Border color of checked checkbox.
13059
+ /// The border color of the checked CheckBox.
12597
13060
  /// @group checkbox
12598
13061
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
12599
13062
 
12600
- /// Background color of indeterminate checkbox.
13063
+ /// The background color of the indeterminate CheckBox.
12601
13064
  /// @group checkbox
12602
13065
  $kendo-checkbox-indeterminate-bg: $kendo-checkbox-checked-bg !default;
12603
- /// Color of indeterminate checkbox.
13066
+ /// The text color of the indeterminate CheckBox.
12604
13067
  /// @group checkbox
12605
13068
  $kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-text !default;
12606
- /// Border color of indeterminate checkbox.
13069
+ /// The border color of the indeterminate CheckBox.
12607
13070
  /// @group checkbox
12608
13071
  $kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
12609
13072
 
12610
- /// Border color of focused checkbox.
13073
+ /// The border color of the focused CheckBox.
12611
13074
  /// @group checkbox
12612
13075
  $kendo-checkbox-focus-border: k-try-tint( $kendo-color-primary, 50% ) !default;
12613
- /// Box shadow of focused checkbox.
13076
+ /// The box shadow of the focused CheckBox.
12614
13077
  /// @group checkbox
12615
13078
  $kendo-checkbox-focus-shadow: 0 0 0 .25rem rgba( $kendo-color-primary, .25 ) !default;
12616
- /// Border color of focused and checked checkbox.
13079
+ /// The border color of the focused and checked CheckBox.
12617
13080
  /// @group checkbox
12618
13081
  $kendo-checkbox-focus-checked-border: $kendo-checkbox-checked-border !default;
12619
- /// Box shadow of focused and checked checkbox.
13082
+ /// The box shadow of the focused and checked CheckBox.
12620
13083
  /// @group checkbox
12621
13084
  $kendo-checkbox-focus-checked-shadow: $kendo-checkbox-focus-shadow !default;
12622
13085
 
12623
- /// Background color of disabled checkbox.
13086
+ /// The background color of the disabled CheckBox.
12624
13087
  /// @group checkbox
12625
13088
  $kendo-checkbox-disabled-bg: null !default;
12626
- /// Color of disabled checkbox.
13089
+ /// The text color of the disabled CheckBox.
12627
13090
  /// @group checkbox
12628
13091
  $kendo-checkbox-disabled-text: null !default;
12629
- /// Border color of disabled checkbox.
13092
+ /// The border color of the disabled CheckBox.
12630
13093
  /// @group checkbox
12631
13094
  $kendo-checkbox-disabled-border: null !default;
12632
13095
 
12633
- /// Background color of disabled and checked checkbox.
13096
+ /// The background color of the disabled and checked CheckBox.
12634
13097
  /// @group checkbox
12635
13098
  $kendo-checkbox-disabled-checked-bg: null !default;
12636
- /// Color of disabled and checked checkbox.
13099
+ /// The text color of the disabled and checked CheckBox.
12637
13100
  /// @group checkbox
12638
13101
  $kendo-checkbox-disabled-checked-text: null !default;
12639
- /// Color of disabled and checked checkbox.
13102
+ /// The border color of the disabled and checked CheckBox.
12640
13103
  /// @group checkbox
12641
13104
  $kendo-checkbox-disabled-checked-border: null !default;
12642
13105
 
12643
- /// Background color of invalid checkbox.
13106
+ /// The background color of the invalid CheckBox.
12644
13107
  /// @group checkbox
12645
13108
  $kendo-checkbox-invalid-bg: null !default;
12646
- /// Color of invalid checkbox.
13109
+ /// The text color of the invalid CheckBox.
12647
13110
  /// @group checkbox
12648
13111
  $kendo-checkbox-invalid-text: $kendo-invalid-text !default;
12649
- /// Border color of invalid checkbox.
13112
+ /// The border color of the invalid CheckBox.
12650
13113
  /// @group checkbox
12651
13114
  $kendo-checkbox-invalid-border: $kendo-invalid-border !default;
12652
13115
 
12653
13116
 
12654
- // Checkbox indicator
13117
+ // CheckBox indicator
12655
13118
 
12656
- /// Type of checkbox indicator.
13119
+ /// The type of the CheckBox indicator.
12657
13120
  /// @group checkbox
12658
13121
  $kendo-checkbox-indicator-type: image !default;
12659
13122
 
12660
- /// Glyph font family of checkbox indicator.
13123
+ /// The font family of the CheckBox indicator glyph.
12661
13124
  /// @group checkbox
12662
13125
  $kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
12663
- /// Glyph of checkbox indicator.
13126
+ /// The glyph of the CheckBox indicator.
12664
13127
  /// @group checkbox
12665
13128
  $kendo-checkbox-checked-glyph: "\e118" !default;
12666
- /// Glyph of indeterminate checkbox indicator.
13129
+ /// The glyph of the indeterminate CheckBox indicator.
12667
13130
  /// @group checkbox
12668
13131
  $kendo-checkbox-indeterminate-glyph: "\e121" !default;
12669
13132
 
12670
- /// Image of checked checkbox indicator.
13133
+ /// The image for a checked CheckBox indicator.
12671
13134
  /// @group checkbox
12672
13135
  $kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/></svg>") ) !default;
12673
- /// Image of checked checkbox indicator.
13136
+ /// The image for a indeterminate CheckBox indicator.
12674
13137
  /// @group checkbox
12675
13138
  $kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") ) !default;
12676
13139
 
12677
13140
 
12678
- // Checkbox label
13141
+ // CheckBox label
12679
13142
 
12680
- /// The horizontal margin of the checkbox inside a label.
13143
+ /// The horizontal margin of the CheckBox inside a label.
12681
13144
  /// @group checkbox
12682
13145
  $kendo-checkbox-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
12683
13146
 
12684
13147
 
12685
- // Checkbox list
13148
+ // CheckBox list
12686
13149
 
12687
- /// Spacing between items of horizontal checkbox list.
13150
+ /// The spacing between the items in a horizontal CheckBox list.
12688
13151
  /// @group checkbox
12689
13152
  $kendo-checkbox-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
12690
- /// Horizontal padding of checkbox list items.
13153
+ /// The horizontal padding of the CheckBox list items.
12691
13154
  /// @group checkbox
12692
13155
  $kendo-checkbox-list-item-padding-x: 0px !default;
12693
- /// Vertical padding of checkbox list items.
13156
+ /// The vertical padding of the CheckBox list items
12694
13157
  /// @group checkbox
12695
13158
  $kendo-checkbox-list-item-padding-y: $kendo-list-md-item-padding-y !default;
12696
13159
 
12697
13160
 
12698
- // Checkbox ripple
13161
+ // CheckBox ripple
12699
13162
 
12700
- /// Background color of checkbox ripple.
13163
+ /// The background color of the CheckBox' ripple.
12701
13164
  /// @group checkbox
12702
13165
  $kendo-checkbox-ripple-bg: $kendo-checkbox-checked-bg !default;
12703
- /// Opacity of checkbox ripple.
13166
+ /// The opacity of the CheckBox' ripple.
12704
13167
  /// @group checkbox
12705
13168
  $kendo-checkbox-ripple-opacity: .25 !default;
12706
13169
 
@@ -15143,59 +15606,86 @@ $_kendo-module-meta: (
15143
15606
  // #region @import "../button/_variables.scss"; -> scss/button/_variables.scss
15144
15607
  // Button
15145
15608
 
15146
- /// Width of the border around the button.
15609
+ /// The width of the border around the Button.
15147
15610
  /// @group button
15148
15611
  $kendo-button-border-width: $btn-border-width !default;
15149
15612
 
15150
- /// Border radius of the button.
15613
+ /// The border radius of the Button.
15151
15614
  /// @group button
15152
15615
  $kendo-button-border-radius: null !default;
15153
15616
 
15154
- /// Horizontal padding of the button.
15617
+ /// The horizontal padding of the Button.
15155
15618
  /// @group button
15156
15619
  $kendo-button-padding-x: $btn-padding-x !default;
15157
- /// Vertical padding of the button.
15620
+ /// The horizontal padding of the small Button.
15621
+ /// @group button
15622
+ $kendo-button-sm-padding-x: $btn-padding-x-sm !default;
15623
+ /// The horizontal padding of the medium Button.
15624
+ /// @group button
15625
+ $kendo-button-md-padding-x: $btn-padding-x !default;
15626
+ /// The horizontal padding of the large Button.
15627
+ /// @group button
15628
+ $kendo-button-lg-padding-x: $btn-padding-x-lg !default;
15629
+
15630
+ /// The vertical padding of the Button.
15158
15631
  /// @group button
15159
15632
  $kendo-button-padding-y: $btn-padding-y !default;
15160
- /// Font family of the button.
15633
+ /// The vertical padding of the small Button.
15634
+ /// @group button
15635
+ $kendo-button-sm-padding-y: $btn-padding-y-sm !default;
15636
+ /// The vertical padding of the medium Button.
15637
+ /// @group button
15638
+ $kendo-button-md-padding-y: $btn-padding-y !default;
15639
+ /// The vertical padding of the large Button.
15640
+ /// @group button
15641
+ $kendo-button-lg-padding-y: $btn-padding-y-lg !default;
15642
+
15643
+ /// The font family of the Button.
15161
15644
  /// @group button
15162
15645
  $kendo-button-font-family: $kendo-font-family !default;
15163
- /// Font sizes of the button.
15646
+
15647
+ /// The font size of the Button.
15164
15648
  /// @group button
15165
15649
  $kendo-button-font-size: $btn-font-size !default;
15166
- /// Line heights used along with $kendo-font-size.
15650
+ /// The font size of the small Button.
15167
15651
  /// @group button
15168
- $kendo-button-line-height: $btn-line-height !default;
15169
-
15170
- $kendo-button-sm-padding-x: $btn-padding-x-sm !default;
15171
- $kendo-button-sm-padding-y: $btn-padding-y-sm !default;
15172
15652
  $kendo-button-sm-font-size: $kendo-font-size-sm !default;
15173
- $kendo-button-sm-line-height: k-math-div( 20, 14 ) !default;
15174
-
15175
- $kendo-button-md-padding-x: $btn-padding-x !default;
15176
- $kendo-button-md-padding-y: $btn-padding-y !default;
15653
+ /// The font size of the medium Button.
15654
+ /// @group button
15177
15655
  $kendo-button-md-font-size: $kendo-font-size-md !default;
15178
- $kendo-button-md-line-height: $kendo-line-height-md !default;
15179
-
15180
- $kendo-button-lg-padding-x: $btn-padding-x-lg !default;
15181
- $kendo-button-lg-padding-y: $btn-padding-y-lg !default;
15656
+ /// The font size of the large Button.
15657
+ /// @group button
15182
15658
  $kendo-button-lg-font-size: $kendo-font-size-md !default;
15659
+
15660
+ /// The line height used along with $kendo-font-size.
15661
+ /// @group button
15662
+ $kendo-button-line-height: $btn-line-height !default;
15663
+ /// The line height used along with the $kendo-font-size of the small Button.
15664
+ /// @group button
15665
+ $kendo-button-sm-line-height: k-math-div( 20, 14 ) !default;
15666
+ /// The line height used along with the $kendo-font-size of the medium Button.
15667
+ /// @group button
15668
+ $kendo-button-md-line-height: $kendo-line-height-md !default;
15669
+ /// The line height used along with the $kendo-font-size of the large Button.
15670
+ ///@group button
15183
15671
  $kendo-button-lg-line-height: $kendo-line-height-md !default;
15184
15672
 
15185
- /// Calculated height of the button.
15673
+ /// The calculated height of the Button.
15186
15674
  /// @group button
15187
15675
  $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
15188
15676
  $kendo-button-sm-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
15189
15677
  $kendo-button-md-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
15190
15678
  $kendo-button-lg-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
15191
15679
 
15192
- /// Calculated inner height of the button. Without the border width.
15680
+ /// The calculated inner height of the Button excluding the border width.
15193
15681
  /// @group button
15194
15682
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
15195
15683
  $kendo-button-sm-inner-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} ) !default;
15196
15684
  $kendo-button-md-inner-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} ) !default;
15197
15685
  $kendo-button-lg-inner-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} ) !default;
15198
15686
 
15687
+ /// The sizes map for the Button.
15688
+ /// @group button
15199
15689
  $kendo-button-sizes: (
15200
15690
  sm: (
15201
15691
  padding-x: $kendo-button-sm-padding-x,
@@ -15217,110 +15707,110 @@ $kendo-button-sizes: (
15217
15707
  )
15218
15708
  ) !default;
15219
15709
 
15220
- /// Theme colors map for the button.
15710
+ /// The theme colors map for the Button.
15221
15711
  /// @group button
15222
15712
  $kendo-button-theme-colors: k-map-merge(
15223
15713
  $kendo-theme-colors,
15224
15714
  ( "base": #e4e7eb )
15225
15715
  ) !default;
15226
15716
 
15227
- /// The base background of the button.
15717
+ /// The base background of the Button.
15228
15718
  /// @group button
15229
15719
  $kendo-button-bg: #e4e7eb !default;
15230
- /// The base text color of the button.
15720
+ /// The base text color of the Button.
15231
15721
  /// @group button
15232
15722
  $kendo-button-text: k-contrast-color( $kendo-button-bg, $gray-900 ) !default;
15233
- /// The base border color of the button.
15723
+ /// The base border color of the Button.
15234
15724
  /// @group button
15235
15725
  $kendo-button-border: $kendo-button-bg !default;
15236
- /// The base background gradient of the button.
15726
+ /// The base background gradient of the Button.
15237
15727
  /// @group button
15238
15728
  $kendo-button-gradient: null !default;
15239
- /// The base shadow of the button.
15729
+ /// The base shadow of the Button.
15240
15730
  /// @group button
15241
15731
  $kendo-button-shadow: null !default;
15242
15732
 
15243
- /// The base background of hovered button.
15733
+ /// The base background of the hovered Button.
15244
15734
  /// @group button
15245
15735
  $kendo-button-hover-bg: k-color-darken( $kendo-button-bg, 7.5% ) !default;
15246
- /// The base text color of hovered button.
15736
+ /// The base text color of the hovered Button.
15247
15737
  /// @group button
15248
15738
  $kendo-button-hover-text: null !default;
15249
- /// The base border color of hovered button.
15739
+ /// The base border color of the hovered Button.
15250
15740
  /// @group button
15251
15741
  $kendo-button-hover-border: k-color-darken( $kendo-button-bg, 10% ) !default;
15252
- /// The base background gradient of hovered button.
15742
+ /// The base background gradient of the hovered Button.
15253
15743
  /// @group button
15254
15744
  $kendo-button-hover-gradient: null !default;
15255
- /// The base shadow of hovered button.
15745
+ /// The base shadow of the hovered Button.
15256
15746
  /// @group button
15257
15747
  $kendo-button-hover-shadow: null !default;
15258
15748
 
15259
- /// The base background color of active button.
15749
+ /// The base background color of the active Button.
15260
15750
  /// @group button
15261
15751
  $kendo-button-active-bg: k-color-darken( $kendo-button-bg, 10% ) !default;
15262
- /// The base text color of active button.
15752
+ /// The base text color of the active Button.
15263
15753
  /// @group button
15264
15754
  $kendo-button-active-text: null !default;
15265
- /// The base border color of active button.
15755
+ /// The base border color of the active Button.
15266
15756
  /// @group button
15267
15757
  $kendo-button-active-border: k-color-darken( $kendo-button-bg, 12.5% ) !default;
15268
- /// The base background gradient of active button.
15758
+ /// The base background gradient of the active Button.
15269
15759
  /// @group button
15270
15760
  $kendo-button-active-gradient: null !default;
15271
- /// The base shadow of active button.
15761
+ /// The base shadow of the active Button.
15272
15762
  /// @group button
15273
15763
  $kendo-button-active-shadow: null !default;
15274
15764
 
15275
- /// The base background color of selected button.
15765
+ /// The base background color of the selected Button.
15276
15766
  /// @group button
15277
15767
  $kendo-button-selected-bg: k-color-darken( $kendo-color-primary, 10% ) !default;
15278
- /// The text color of selected buttons.
15768
+ /// The text color of the selected Button.
15279
15769
  /// @group button
15280
15770
  $kendo-button-selected-text: k-contrast-color( $kendo-button-selected-bg ) !default;
15281
- /// The border color of selected buttons.
15771
+ /// The border color of the selected Button.
15282
15772
  /// @group button
15283
15773
  $kendo-button-selected-border: k-color-darken( $kendo-color-primary, 12.5% ) !default;
15284
- /// The background gradient of selected buttons.
15774
+ /// The background gradient of the selected Button.
15285
15775
  /// @group button
15286
15776
  $kendo-button-selected-gradient: $kendo-button-active-gradient !default;
15287
- /// The base shadow of selected button.
15777
+ /// The base shadow of the selected Button.
15288
15778
  /// @group button
15289
15779
  $kendo-button-selected-shadow: $kendo-button-active-shadow !default;
15290
15780
 
15291
- /// The base background of focused button.
15781
+ /// The base background of the focused Button.
15292
15782
  /// @group button
15293
15783
  $kendo-button-focus-bg: k-color-darken( $kendo-button-bg, 10% ) !default;
15294
- /// The base text color of focused button.
15784
+ /// The base text color of the focused Button.
15295
15785
  /// @group button
15296
15786
  $kendo-button-focus-text: null !default;
15297
- /// The base border color of focused button.
15787
+ /// The base border color of the focused Button.
15298
15788
  /// @group button
15299
15789
  $kendo-button-focus-border: k-color-darken( $kendo-button-bg, 12.5% ) !default;
15300
- /// The base background gradient of focused button.
15790
+ /// The base background gradient of the focused Button.
15301
15791
  /// @group button
15302
15792
  $kendo-button-focus-gradient: null !default;
15303
- /// The base shadow of focused button.
15793
+ /// The base shadow of the focused Button.
15304
15794
  /// @group button
15305
15795
  $kendo-button-focus-shadow: 0 0 0 .25rem rgba( $kendo-button-border, .5 ) !default;
15306
15796
 
15307
- /// The base background of disabled button.
15797
+ /// The base background of the disabled Button.
15308
15798
  /// @group button
15309
15799
  $kendo-button-disabled-bg: null !default;
15310
- /// The base text color of disabled button.
15800
+ /// The base text color of the disabled Button.
15311
15801
  /// @group button
15312
15802
  $kendo-button-disabled-text: null !default;
15313
- /// The base border color of disabled buttons.
15803
+ /// The base border color of the disabled Button.
15314
15804
  /// @group button
15315
15805
  $kendo-button-disabled-border: null !default;
15316
- /// The base background gradient of disabled button.
15806
+ /// The base background gradient of the disabled Button.
15317
15807
  /// @group button
15318
15808
  $kendo-button-disabled-gradient: null !default;
15319
- /// The base shadow of disabled button.
15809
+ /// The base shadow of the disabled Button.
15320
15810
  /// @group button
15321
15811
  $kendo-button-disabled-shadow: null !default;
15322
15812
 
15323
- // Solid button
15813
+ // Solid Button
15324
15814
  $kendo-solid-button-gradient: null !default;
15325
15815
  $kendo-solid-button-shade-function: "k-color-darken" !default;
15326
15816
  $kendo-solid-button-shade-text-amount: 0 !default;
@@ -15337,38 +15827,38 @@ $kendo-solid-button-shadow-blur: 0px !default;
15337
15827
  $kendo-solid-button-shadow-spread: .25rem !default;
15338
15828
  $kendo-solid-button-shadow-opacity: .5 !default;
15339
15829
 
15340
- // Outline button
15830
+ // Outline Button
15341
15831
  $kendo-outline-button-shadow: true !default;
15342
15832
  $kendo-outline-button-shadow-blur: 0px !default;
15343
15833
  $kendo-outline-button-shadow-spread: .25rem !default;
15344
15834
  $kendo-outline-button-shadow-opacity: .5 !default;
15345
15835
 
15346
- // Link button
15836
+ // Link Button
15347
15837
  $kendo-link-button-shadow: true !default;
15348
15838
  $kendo-link-button-shadow-blur: 0px !default;
15349
15839
  $kendo-link-button-shadow-spread: .25rem !default;
15350
15840
  $kendo-link-button-shadow-opacity: .5 !default;
15351
15841
 
15352
- // Clear button
15842
+ // Clear Button
15353
15843
  $kendo-clear-button-focus-opacity: .1 !default;
15354
15844
 
15355
- /// The overlay opacity of hovered flat button. Used to create background for the flat button.
15845
+ /// The overlay opacity of the hovered flat Button. Used to create a background for the flat Button.
15356
15846
  /// @group button
15357
15847
  $kendo-flat-button-hover-opacity: .08 !default;
15358
- /// The overlay opacity of focused flat button. Used to create background for the flat button.
15848
+ /// The overlay opacity of the focused flat Button. Used to create a background for the flat Button.
15359
15849
  /// @group button
15360
15850
  $kendo-flat-button-focus-opacity: null !default;
15361
- /// The overlay opacity of active flat button. Used to create background for the flat button.
15851
+ /// The overlay opacity of the active flat Button. Used to create a background for the flat Button.
15362
15852
  /// @group button
15363
15853
  $kendo-flat-button-active-opacity: .16 !default;
15364
- /// The overlay opacity of selected flat button. Used to create background for the flat button.
15854
+ /// The overlay opacity of the selected flat Button. Used to create a background for the flat Button.
15365
15855
  /// @group button
15366
15856
  $kendo-flat-button-selected-opacity: .2 !default;
15367
- /// The opacity of the flat button focus ring. Used to create border for the flat button.
15857
+ /// The opacity of the flat Button focus ring. Used to create a border for the flat Button.
15368
15858
  /// @group button
15369
15859
  $kendo-flat-button-focus-ring-opacity: .12 !default;
15370
15860
 
15371
- /// The color transition of the button.
15861
+ /// The color transition of the Button.
15372
15862
  /// @group button
15373
15863
  $kendo-button-transition: $kendo-transition !default;
15374
15864
 
@@ -15377,48 +15867,71 @@ $kendo-button-transition: $kendo-transition !default;
15377
15867
 
15378
15868
  // Chip
15379
15869
 
15380
- /// Width of the border around the button.
15870
+ /// The width of the border around the Chip.
15381
15871
  /// @group chip
15382
15872
  $kendo-chip-border-width: 1px !default;
15383
- /// The spacing between the text and the icons of the chip.
15873
+ /// The spacing between the text and the icons of the Chip.
15384
15874
  /// @group chip
15385
15875
  $kendo-chip-spacing: k-map-get( $kendo-spacing, 1 ) !default;
15386
15876
 
15387
- /// Horizontal padding of the chip.
15877
+ /// The horizontal padding of the Chip.
15388
15878
  /// @group chip
15389
15879
  $kendo-chip-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
15880
+ /// The horizontal padding of the small Chip.
15881
+ /// @group chip
15390
15882
  $kendo-chip-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
15883
+ /// The horizontal padding of the medium Chip.
15884
+ /// @group chip
15391
15885
  $kendo-chip-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
15886
+ /// The horizontal padding of the large Chip.
15887
+ /// @group chip
15392
15888
  $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
15393
15889
 
15394
- /// Vertical padding of the chip.
15890
+ /// The vertical padding of the Chip.
15395
15891
  /// @group chip
15396
15892
  $kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
15893
+ /// The vertical padding of the small Chip.
15894
+ /// @group chip
15397
15895
  $kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
15896
+ /// The vertical padding of the medium Chip.
15897
+ /// @group chip
15398
15898
  $kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
15899
+ /// The vertical padding of the large Chip.
15900
+ /// @group chip
15399
15901
  $kendo-chip-lg-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
15400
15902
 
15401
- /// Font sizes of the chip.
15903
+ /// The font size of the Chip.
15402
15904
  /// @group chip
15403
15905
  $kendo-chip-font-size: $kendo-font-size-md !default;
15906
+ /// The font size of the small Chip.
15907
+ /// @group chip
15404
15908
  $kendo-chip-sm-font-size: $kendo-font-size-sm !default;
15909
+ /// The font size of the medium Chip.
15910
+ /// @group chip
15405
15911
  $kendo-chip-md-font-size: $kendo-font-size-md !default;
15912
+ /// The font size of the large Chip.
15406
15913
  $kendo-chip-lg-font-size: $kendo-font-size-md !default;
15407
15914
 
15408
- /// Line heights of the chip that are connected to the $kendo-font-size.
15915
+ /// The Chip's line height that is related to the $kendo-font-size.
15409
15916
  /// @group chip
15410
15917
  $kendo-chip-line-height: 1.25 !default;
15918
+ /// The small Chip's line height that is related to the $kendo-font-size.
15919
+ /// @group chip
15411
15920
  $kendo-chip-sm-line-height: $kendo-chip-line-height !default;
15921
+ /// The medium Chip's line height that is related to the $kendo-font-size.
15922
+ /// @group chip
15412
15923
  $kendo-chip-md-line-height: $kendo-chip-line-height !default;
15924
+ /// The large Chip's line height that is related to the $kendo-font-size.
15925
+ /// @group chip
15413
15926
  $kendo-chip-lg-line-height: $kendo-chip-line-height !default;
15414
15927
 
15415
- /// Calculated height of the chip.
15928
+ /// The calculated height of the Chip.
15416
15929
  /// @group chip
15417
15930
  $kendo-chip-calc-size: calc( #{$kendo-chip-line-height * 1em} + #{$kendo-chip-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
15418
15931
  $kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height * 1em} + #{$kendo-chip-sm-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
15419
15932
 
15420
15933
 
15421
- /// Sizes map for the chip.
15934
+ /// The map with the sizes of the Chip.
15422
15935
  /// @group chip
15423
15936
  $kendo-chip-sizes: (
15424
15937
  sm: (
@@ -15441,11 +15954,11 @@ $kendo-chip-sizes: (
15441
15954
  )
15442
15955
  ) !default;
15443
15956
 
15444
- /// The base background color of the chip.
15957
+ /// The base background color of the Chip.
15445
15958
  /// @group chip
15446
15959
  $kendo-chip-base-bg: $kendo-button-bg !default;
15447
15960
 
15448
- /// Theme colors map for the chip.
15961
+ /// The theme colors map for the Chip.
15449
15962
  /// @group chip
15450
15963
  $kendo-chip-theme-colors: (
15451
15964
  "base": $kendo-chip-base-bg,
@@ -15455,73 +15968,73 @@ $kendo-chip-theme-colors: (
15455
15968
  "success": k-map-get( $kendo-theme-colors, "success" )
15456
15969
  ) !default;
15457
15970
 
15458
- /// The base background color of solid chip.
15971
+ /// The base background color of the solid Chip.
15459
15972
  /// @group chip
15460
15973
  $kendo-chip-solid-bg: $kendo-chip-base-bg !default;
15461
- /// The base text color of solid chip.
15974
+ /// he base text color of the solid Chip.
15462
15975
  /// @group chip
15463
15976
  $kendo-chip-solid-text: $kendo-button-text !default;
15464
- /// The base border color of solid chip.
15977
+ /// The base border color of the solid Chip.
15465
15978
  /// @group chip
15466
15979
  $kendo-chip-solid-border: $kendo-button-border !default;
15467
- /// The base shadow of solid chip.
15980
+ /// The base shadow of the solid Chip.
15468
15981
  /// @group chip
15469
15982
  $kendo-chip-solid-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
15470
- /// The base gradient of solid chip.
15983
+ /// The base gradient of the solid Chip.
15471
15984
  /// @group chip
15472
15985
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
15473
15986
 
15474
- /// The base background color of focused solid chip.
15987
+ /// The base background color of the focused solid Chip.
15475
15988
  /// @group chip
15476
15989
  $kendo-chip-solid-focus-bg: null !default;
15477
- /// The base text color of focused solid chip.
15990
+ /// The base text color of the focused solid Chip.
15478
15991
  /// @group chip
15479
15992
  $kendo-chip-solid-focus-text: null !default;
15480
15993
 
15481
- /// The base background color of hovered solid chip.
15994
+ /// The base background color of the hovered solid Chip.
15482
15995
  /// @group chip
15483
15996
  $kendo-chip-solid-hover-bg: $kendo-button-hover-bg !default;
15484
- /// The base text color of hovered solid chip.
15997
+ /// The base text color of the hovered solid Chip.
15485
15998
  /// @group chip
15486
15999
  $kendo-chip-solid-hover-text: null !default;
15487
16000
 
15488
- /// The base background color of selected solid chip.
16001
+ /// The base background color of the selected solid Chip.
15489
16002
  /// @group chip
15490
16003
  $kendo-chip-solid-selected-bg: $kendo-button-active-bg !default;
15491
- /// The base text color of selected solid chip.
16004
+ /// The base text color of the selected solid Chip.
15492
16005
  /// @group chip
15493
16006
  $kendo-chip-solid-selected-text: null !default;
15494
16007
 
15495
- /// The base background color of outline chip.
16008
+ /// The base background color of the outline Chip.
15496
16009
  /// @group chip
15497
16010
  $kendo-chip-outline-bg: $kendo-component-bg !default;
15498
- /// The base text color of outline chip.
16011
+ /// The base text color of the outline Chip.
15499
16012
  /// @group chip
15500
16013
  $kendo-chip-outline-text: $kendo-chip-solid-text !default;
15501
- /// The base border color of outline chip.
16014
+ /// The base border color of the outline Chip.
15502
16015
  /// @group chip
15503
16016
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
15504
- /// The base shadow of outline chip.
16017
+ /// The base shadow of the outline Chip.
15505
16018
  /// @group chip
15506
16019
  $kendo-chip-outline-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
15507
16020
 
15508
- /// The base background color of hovered outline chip.
16021
+ /// The base background color of the hovered outline Chip.
15509
16022
  /// @group chip
15510
16023
  $kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
15511
- /// The base text color of hovered outline chip.
16024
+ /// The base text color of the hovered outline Chip.
15512
16025
  /// @group chip
15513
16026
  $kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-outline-hover-bg ) !default;
15514
16027
 
15515
- /// The base background color of selected outline chip.
16028
+ /// The base background color of the selected outline Chip.
15516
16029
  /// @group chip
15517
16030
  $kendo-chip-outline-selected-bg: $kendo-chip-outline-hover-bg !default;
15518
- /// The base text color of selected outline chip.
16031
+ /// The base text color of the selected outline Chip.
15519
16032
  /// @group chip
15520
16033
  $kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
15521
16034
 
15522
16035
  // Chip List
15523
16036
 
15524
- /// The sizes of the chip list.
16037
+ /// The sizes of the Chip list.
15525
16038
  /// @group chip
15526
16039
  $kendo-chip-list-sizes: (
15527
16040
  sm: k-map-get( $kendo-spacing, 1 ),
@@ -19028,49 +19541,76 @@ $kendo-actions-gradient: null !default;
19028
19541
  // #region @import "../input/_variables.scss"; -> scss/input/_variables.scss
19029
19542
  // Input
19030
19543
 
19031
- /// Default width of input components.
19544
+ /// The default width of the Input components.
19032
19545
  /// @group input
19033
19546
  $kendo-input-default-width: 100% !default;
19034
19547
 
19035
- /// Border width of input components.
19548
+ /// The border width of the Input components.
19036
19549
  /// @group input
19037
19550
  $kendo-input-border-width: $input-border-width !default;
19038
19551
  $kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
19039
- /// Border radius of input components.
19552
+ /// The border radius of the Input components.
19040
19553
  /// @group input
19041
19554
  $kendo-input-border-radius: null !default;
19042
19555
 
19043
- /// Horizontal padding of input components.
19556
+ /// The horizontal padding of the Input components.
19044
19557
  /// @group input
19045
19558
  $kendo-input-padding-x: $input-padding-x !default;
19046
- /// Vertical padding of input components.
19559
+ /// The horizontal padding of the small Input components.
19560
+ /// @group input
19561
+ $kendo-input-sm-padding-x: $input-padding-x-sm !default;
19562
+ /// The horizontal padding of the medium Input components.
19563
+ /// @group input
19564
+ $kendo-input-md-padding-x: $input-padding-x !default;
19565
+ /// The horizontal padding of the large Input components.
19566
+ /// @group input
19567
+ $kendo-input-lg-padding-x: $input-padding-x-lg !default;
19568
+
19569
+ /// The vertical padding of input components.
19047
19570
  /// @group input
19048
19571
  $kendo-input-padding-y: $input-padding-y !default;
19049
- /// Font family of input components.
19572
+ /// The vertical padding of the small Input components.
19573
+ /// @group input
19574
+ $kendo-input-sm-padding-y: $input-padding-y-sm !default;
19575
+ /// The vertical padding of the medium Input components.
19576
+ /// @group input
19577
+ $kendo-input-md-padding-y: $input-padding-y !default;
19578
+ /// The vertical padding of the large Input components.
19579
+ /// @group input
19580
+ $kendo-input-lg-padding-y: $input-padding-y-lg !default;
19581
+
19582
+ /// The font family of input components.
19050
19583
  /// @group input
19051
19584
  $kendo-input-font-family: $kendo-font-family !default;
19052
- /// Font size of input components.
19585
+
19586
+ /// The font size of input components.
19053
19587
  /// @group input
19054
19588
  $kendo-input-font-size: $kendo-font-size-md !default;
19055
- /// Line height of input components.
19589
+ /// The font size of the small Input components.
19056
19590
  /// @group input
19057
- $kendo-input-line-height: $input-line-height !default;
19058
-
19059
- $kendo-input-sm-padding-x: $input-padding-x-sm !default;
19060
- $kendo-input-sm-padding-y: $input-padding-y-sm !default;
19061
19591
  $kendo-input-sm-font-size: $kendo-font-size-sm !default;
19062
- $kendo-input-sm-line-height: k-math-div( 20, 14 ) !default;
19063
-
19064
- $kendo-input-md-padding-x: $input-padding-x !default;
19065
- $kendo-input-md-padding-y: $input-padding-y !default;
19592
+ /// The font size of the medium Input components.
19593
+ /// @group input
19066
19594
  $kendo-input-md-font-size: $kendo-font-size-md !default;
19067
- $kendo-input-md-line-height: $kendo-line-height-md !default;
19068
-
19069
- $kendo-input-lg-padding-x: $input-padding-x-lg !default;
19070
- $kendo-input-lg-padding-y: $input-padding-y-lg !default;
19595
+ /// The font size of the large Input components.
19596
+ /// @group input
19071
19597
  $kendo-input-lg-font-size: $kendo-font-size-md !default;
19598
+
19599
+ /// The line height of input components.
19600
+ /// @group input
19601
+ $kendo-input-line-height: $input-line-height !default;
19602
+ /// The line height of the small Input components.
19603
+ /// @group input
19604
+ $kendo-input-sm-line-height: k-math-div( 20, 14 ) !default;
19605
+ /// The line height of the medium Input components.
19606
+ /// @group input
19607
+ $kendo-input-md-line-height: $kendo-line-height-md !default;
19608
+ /// The line height of the large Input components.
19609
+ /// @group input
19072
19610
  $kendo-input-lg-line-height: $kendo-line-height-md !default;
19073
19611
 
19612
+ /// The sizes map for the Input components.
19613
+ /// @group input
19074
19614
  $kendo-input-sizes: (
19075
19615
  sm: (
19076
19616
  padding-x: $kendo-input-sm-padding-x,
@@ -19101,141 +19641,338 @@ $kendo-input-sizes: (
19101
19641
  )
19102
19642
  ) !default;
19103
19643
 
19644
+ /// The background color of the Input components.
19645
+ /// @group input
19104
19646
  $kendo-input-bg: $input-bg !default;
19647
+ /// The text color of the Input components.
19648
+ /// @group input
19105
19649
  $kendo-input-text: $input-color !default;
19650
+ /// The border color of the Input components.
19651
+ /// @group input
19106
19652
  $kendo-input-border: $input-border-color !default;
19653
+ /// The shadow of the Input components.
19654
+ /// @group input
19107
19655
  $kendo-input-shadow: null !default;
19108
19656
 
19657
+ /// The background color of the hovered Input components.
19658
+ /// @group input
19109
19659
  $kendo-input-hover-bg: null !default;
19660
+ /// The text color of the hovered Input components.
19661
+ /// @group input
19110
19662
  $kendo-input-hover-text: null !default;
19663
+ /// The border color of the hovered Input components.
19664
+ /// @group input
19111
19665
  $kendo-input-hover-border: null !default;
19666
+ /// The shadow of the hovered Input components.
19667
+ /// @group input
19112
19668
  $kendo-input-hover-shadow: null !default;
19113
19669
 
19670
+ /// The background color of the focused Input components.
19671
+ /// @group input
19114
19672
  $kendo-input-focus-bg: $input-focus-bg !default;
19673
+ /// The text color of the focused Input components.
19674
+ /// @group input
19115
19675
  $kendo-input-focus-text: $input-focus-color !default;
19676
+ /// The border color of the focused Input components.
19677
+ /// @group input
19116
19678
  $kendo-input-focus-border: $input-focus-border-color !default;
19679
+ /// The shadow of the focused Input components.
19680
+ /// @group input
19117
19681
  $kendo-input-focus-shadow: $input-focus-box-shadow !default;
19118
19682
 
19683
+ /// The background color of the selected Input components.
19684
+ /// @group input
19685
+ $kendo-input-selected-bg: null !default;
19686
+ /// The text color of the selected Input components.
19687
+ /// @group input
19688
+ $kendo-input-selected-text: null !default;
19689
+
19690
+ /// The background color of the disabled Input components.
19691
+ /// @group input
19119
19692
  $kendo-input-disabled-bg: null !default;
19693
+ /// The text color of the disabled Input components.
19694
+ /// @group input
19120
19695
  $kendo-input-disabled-text: null !default;
19696
+ /// The border color of the disabled Input components.
19697
+ /// @group input
19121
19698
  $kendo-input-disabled-border: null !default;
19699
+ /// The gradient of the disabled Input components.
19700
+ /// @group input
19122
19701
  $kendo-input-disabled-gradient: null !default;
19702
+ /// The shadow of the disabled Input components.
19703
+ /// @group input
19123
19704
  $kendo-input-disabled-shadow: null !default;
19124
19705
 
19706
+ /// The background color of the outline Input components.
19707
+ /// @group input
19125
19708
  $kendo-input-outline-bg: null !default;
19709
+ /// The text color of the outline Input components.
19710
+ /// @group input
19126
19711
  $kendo-input-outline-text: $kendo-base-text !default;
19712
+ /// The border color of the outline Input components.
19713
+ /// @group input
19127
19714
  $kendo-input-outline-border: rgba( $kendo-base-text, .5 ) !default;
19128
19715
 
19716
+ /// The background color of the outline hovered Input components.
19717
+ /// @group input
19129
19718
  $kendo-input-outline-hover-bg: null !default;
19719
+ /// The text color of the outline hovered Input components.
19720
+ /// @group input
19130
19721
  $kendo-input-outline-hover-text: null !default;
19722
+ /// The border color of the outline hovered Input components.
19723
+ /// @group input
19131
19724
  $kendo-input-outline-hover-border: null !default;
19132
19725
 
19726
+ /// The background color of the outline focused Input components.
19727
+ /// @group input
19133
19728
  $kendo-input-outline-focus-bg: null !default;
19729
+ /// The text color of the outline focused Input components.
19730
+ /// @group input
19134
19731
  $kendo-input-outline-focus-text: null !default;
19732
+ /// The border color of the outline focused Input components.
19733
+ /// @group input
19135
19734
  $kendo-input-outline-focus-border: $kendo-input-focus-border !default;
19735
+ /// The shadow of the outline focused Input components.
19736
+ /// @group input
19136
19737
  $kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
19137
19738
 
19739
+ /// The background color of the flat Input components.
19740
+ /// @group input
19138
19741
  $kendo-input-flat-bg: null !default;
19742
+ /// The text color of the flat Input components.
19743
+ /// @group input
19139
19744
  $kendo-input-flat-text: $kendo-input-text !default;
19745
+ /// The border color of the flat Input components.
19746
+ /// @group input
19140
19747
  $kendo-input-flat-border: $kendo-input-border !default;
19141
19748
 
19749
+ /// The background color of the flat hovered Input components.
19750
+ /// @group input
19142
19751
  $kendo-input-flat-hover-bg: null !default;
19752
+ /// The text color of the flat hovered Input components.
19753
+ /// @group input
19143
19754
  $kendo-input-flat-hover-text: null !default;
19755
+ /// The border color of the flat hovered Input components.
19756
+ /// @group input
19144
19757
  $kendo-input-flat-hover-border: $kendo-input-hover-border !default;
19145
19758
 
19759
+ /// The background color of the flat focused Input components.
19760
+ /// @group input
19146
19761
  $kendo-input-flat-focus-bg: null !default;
19762
+ /// The text color of the flat focused Input components.
19763
+ /// @group input
19147
19764
  $kendo-input-flat-focus-text: null !default;
19765
+ /// The border color of the flat focused Input components.
19766
+ /// @group input
19148
19767
  $kendo-input-flat-focus-border: $kendo-input-focus-border !default;
19768
+ /// The shadow of the flat focused Input components.
19769
+ /// @group input
19149
19770
  $kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;
19150
19771
 
19772
+ /// The text color of the Input placeholder.
19773
+ /// @group input
19774
+ $kendo-input-placeholder-text: $input-placeholder-color !default;
19775
+ /// The opacity of the Input placeholder.
19776
+ /// @group input
19777
+ $kendo-input-placeholder-opacity: 1 !default;
19778
+
19779
+ /// The color of the Input clear value icon.
19780
+ /// @group input
19781
+ $kendo-input-clear-value-text: null !default;
19782
+ /// The opacity of the Input clear value icon.
19783
+ /// @group input
19784
+ $kendo-input-clear-value-opacity: .5 !default;
19785
+ /// The color of the hovered Input clear value icon.
19786
+ /// @group input
19787
+ $kendo-input-clear-value-hover-text: null !default;
19788
+ /// The opacity of the hovered Input clear value icon.
19789
+ /// @group input
19790
+ $kendo-input-clear-value-hover-opacity: 1 !default;
19791
+
19792
+ ///The vertical margin of the clear value icon.
19793
+ /// @group input
19794
+ $kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
19795
+ ///The horizontal margin of the clear value icon.
19796
+ /// @group input
19797
+ $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
19798
+
19799
+ /// The width of the Input button.
19800
+ /// @group input
19801
+ $kendo-input-button-width: null !default;
19802
+ /// The border width of the Input button.
19803
+ /// @group input
19804
+ $kendo-input-button-border-width: 1px !default;
19805
+ /// The width of the Input spinner button.
19806
+ /// @group input
19807
+ $kendo-input-spinner-width: null !default;
19808
+ /// The icon offset of the Input spinner button.
19809
+ /// @group input
19810
+ $kendo-input-spinner-icon-offset: null !default;
19811
+
19812
+ /// The color of the Input separator.
19813
+ /// @group input
19814
+ $kendo-input-separator-color: $kendo-input-text !default;
19815
+ /// The opacity of the Input separator.
19816
+ /// @group input
19817
+ $kendo-input-separator-opacity: .5 !default;
19818
+
19819
+ /// The border color of the invalid Input components.
19820
+ /// @group input
19821
+ $kendo-input-invalid-border: $kendo-invalid-border !default;
19822
+ /// The shadow of the invalid Input components.
19823
+ /// @group input
19824
+ $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
19825
+
19826
+ /// The background color of the Picker components.
19827
+ /// @group picker
19151
19828
  $kendo-picker-bg: $kendo-button-bg !default;
19829
+ /// The text color of the Picker components.
19830
+ /// @group picker
19152
19831
  $kendo-picker-text: $kendo-button-text !default;
19832
+ /// The border color of the Picker components.
19833
+ /// @group picker
19153
19834
  $kendo-picker-border: $kendo-button-border !default;
19835
+ /// The gradient of the Picker components.
19836
+ /// @group picker
19154
19837
  $kendo-picker-gradient: $kendo-button-gradient !default;
19838
+ /// The shadow of the Picker components.
19839
+ /// @group picker
19155
19840
  $kendo-picker-shadow: $kendo-button-shadow !default;
19156
19841
 
19842
+ /// The background color of the hovered Picker components.
19843
+ /// @group picker
19157
19844
  $kendo-picker-hover-bg: $kendo-button-hover-bg !default;
19845
+ /// The text color of the hovered Picker components.
19846
+ /// @group picker
19158
19847
  $kendo-picker-hover-text: $kendo-button-hover-text !default;
19848
+ /// The border color of the hovered Picker components.
19849
+ /// @group picker
19159
19850
  $kendo-picker-hover-border: $kendo-button-hover-border !default;
19851
+ /// The gradient of the hovered Picker components.
19852
+ /// @group picker
19160
19853
  $kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
19854
+ /// The shadow of the hovered Picker components.
19855
+ /// @group picker
19161
19856
  $kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
19162
19857
 
19858
+ /// The background color of the focused Picker components.
19859
+ /// @group picker
19163
19860
  $kendo-picker-focus-bg: $kendo-button-active-bg !default;
19861
+ /// The text color of the focused Picker components.
19862
+ /// @group picker
19164
19863
  $kendo-picker-focus-text: $kendo-button-focus-text !default;
19864
+ /// The border color of the focused Picker components.
19865
+ /// @group picker
19165
19866
  $kendo-picker-focus-border: $kendo-button-focus-border !default;
19867
+ /// The gradient of the focused Picker components.
19868
+ /// @group picker
19166
19869
  $kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
19870
+ /// The shadow of the focused Picker components.
19871
+ /// @group picker
19167
19872
  $kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
19168
19873
 
19874
+ /// The background color of the disabled Picker components.
19875
+ /// @group picker
19169
19876
  $kendo-picker-disabled-bg: null !default;
19877
+ /// The text color of the disabled Picker components.
19878
+ /// @group picker
19170
19879
  $kendo-picker-disabled-text: null !default;
19880
+ /// The border color of the disabled Picker components.
19881
+ /// @group picker
19171
19882
  $kendo-picker-disabled-border: null !default;
19883
+ /// The gradient of the disabled Picker components.
19884
+ /// @group picker
19172
19885
  $kendo-picker-disabled-gradient: null !default;
19886
+ /// The shadow of the disabled Picker components.
19887
+ /// @group picker
19173
19888
  $kendo-picker-disabled-shadow: null !default;
19174
19889
 
19890
+ /// The background color of the outline Picker components.
19891
+ /// @group picker
19175
19892
  $kendo-picker-outline-bg: null !default;
19893
+ /// The text color of the outline Picker components.
19894
+ /// @group picker
19176
19895
  $kendo-picker-outline-text: $kendo-button-text !default;
19896
+ /// The border color of the outline Picker components.
19897
+ /// @group picker
19177
19898
  $kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5 ) !default;
19178
19899
 
19900
+ /// The background color of the outline hovered Picker components.
19901
+ /// @group picker
19179
19902
  $kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
19903
+ /// The text color of the outline hovered Picker components.
19904
+ /// @group picker
19180
19905
  $kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
19906
+ /// The border color of the outline hovered Picker components.
19907
+ /// @group picker
19181
19908
  $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
19182
19909
 
19910
+ /// The background color of the outline focused Picker components.
19911
+ /// @group picker
19183
19912
  $kendo-picker-outline-focus-bg: null !default;
19913
+ /// The text color of the outline focused Picker components.
19914
+ /// @group picker
19184
19915
  $kendo-picker-outline-focus-text: null !default;
19916
+ /// The border color of the outline focused Picker components.
19917
+ /// @group picker
19185
19918
  $kendo-picker-outline-focus-border: null !default;
19919
+ /// The shadow of the outline focused Picker components.
19920
+ /// @group picker
19186
19921
  $kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
19187
19922
 
19923
+ /// The background color of the outline hovered and focused Picker components.
19924
+ /// @group picker
19188
19925
  $kendo-picker-outline-hover-focus-bg: null !default;
19926
+ /// The text color of the outline hovered and focused Picker components.
19927
+ /// @group picker
19189
19928
  $kendo-picker-outline-hover-focus-text: null !default;
19929
+ /// The border color of the outline hovered and focused Picker components.
19930
+ /// @group picker
19190
19931
  $kendo-picker-outline-hover-focus-border: null !default;
19191
19932
 
19933
+ /// The background color of the flat Picker components.
19934
+ /// @group picker
19192
19935
  $kendo-picker-flat-bg: null !default;
19936
+ /// The text color of the flat Picker components.
19937
+ /// @group picker
19193
19938
  $kendo-picker-flat-text: $kendo-button-text !default;
19939
+ /// The border color of the flat Picker components.
19940
+ /// @group picker
19194
19941
  $kendo-picker-flat-border: $kendo-button-border !default;
19195
19942
 
19943
+ /// The background color of the flat hovered Picker components.
19944
+ /// @group picker
19196
19945
  $kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .08 ) !default;
19946
+ /// The text color of the flat hovered Picker components.
19947
+ /// @group picker
19197
19948
  $kendo-picker-flat-hover-text: null !default;
19949
+ /// The border color of the flat hovered Picker components.
19950
+ /// @group picker
19198
19951
  $kendo-picker-flat-hover-border: null !default;
19199
19952
 
19953
+ /// The background color of the flat focused Picker components.
19954
+ /// @group picker
19200
19955
  $kendo-picker-flat-focus-bg: null !default;
19956
+ /// The text color of the flat focused Picker components.
19957
+ /// @group picker
19201
19958
  $kendo-picker-flat-focus-text: null !default;
19959
+ /// The border color of the flat focused Picker components.
19960
+ /// @group picker
19202
19961
  $kendo-picker-flat-focus-border: null !default;
19962
+ /// The shadow of the flat focused Picker components.
19963
+ /// @group picker
19203
19964
  $kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
19204
19965
 
19966
+ /// The background color of the flat hovered and focused Picker components.
19967
+ /// @group picker
19205
19968
  $kendo-picker-flat-hover-focus-bg: null !default;
19969
+ /// The text color of the flat hovered and focused Picker components.
19970
+ /// @group picker
19206
19971
  $kendo-picker-flat-hover-focus-text: null !default;
19972
+ /// The border color of the flat hovered and focused Picker components.
19973
+ /// @group picker
19207
19974
  $kendo-picker-flat-hover-focus-border: null !default;
19208
19975
 
19209
- $kendo-input-placeholder-text: $input-placeholder-color !default;
19210
- $kendo-input-placeholder-opacity: 1 !default;
19211
-
19212
- $kendo-input-selected-bg: null !default;
19213
- $kendo-input-selected-text: null !default;
19214
-
19215
- $kendo-input-clear-value-text: null !default;
19216
- $kendo-input-clear-value-opacity: .5 !default;
19217
- $kendo-input-clear-value-hover-text: null !default;
19218
- $kendo-input-clear-value-hover-opacity: 1 !default;
19219
-
19220
- $kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
19221
- $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
19222
-
19223
-
19224
- // Input actions
19225
- $kendo-input-button-width: null !default;
19226
- $kendo-input-button-border-width: 1px !default;
19227
- $kendo-input-spinner-width: null !default;
19228
- $kendo-input-spinner-icon-offset: null !default;
19229
-
19230
-
19231
- // Input separator
19232
- $kendo-input-separator-color: $kendo-input-text !default;
19233
- $kendo-input-separator-opacity: .5 !default;
19234
-
19235
-
19236
- // Invalid
19237
- $kendo-input-invalid-border: $kendo-invalid-border !default;
19238
- $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
19239
19976
 
19240
19977
  // #endregion
19241
19978
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
@@ -21467,22 +22204,34 @@ $_kendo-module-meta: (
21467
22204
  // #region @import "./_variables.scss"; -> scss/split-button/_variables.scss
21468
22205
  // Split-button
21469
22206
 
21470
- /// Focus shadow of the split button.
22207
+ /// The focus shadow of the SplitButton.
21471
22208
  /// @group split-button
21472
22209
  $kendo-split-button-focus-shadow: $kendo-button-focus-shadow !default;
21473
22210
 
21474
- /// Horizontal padding of the arrow button.
22211
+ /// The horizontal padding of the arrow Button.
21475
22212
  /// @group split-button
21476
22213
  $kendo-split-button-arrow-padding-x: $kendo-button-padding-y !default;
22214
+ /// The horizontal padding of the small arrow Button.
22215
+ /// @group split-button
21477
22216
  $kendo-split-button-sm-arrow-padding-x: $kendo-button-sm-padding-y !default;
22217
+ /// The horizontal padding of the medium arrow Button.
22218
+ /// @group split-button
21478
22219
  $kendo-split-button-md-arrow-padding-x: $kendo-button-md-padding-y !default;
22220
+ /// The horizontal padding of the large arrow Button.
22221
+ /// @group split-button
21479
22222
  $kendo-split-button-lg-arrow-padding-x: $kendo-button-lg-padding-y !default;
21480
22223
 
21481
- /// Vertical padding of the arrow button.
22224
+ /// The vertical padding of the arrow Button.
21482
22225
  /// @group split-button
21483
22226
  $kendo-split-button-arrow-padding-y: $kendo-button-padding-y !default;
22227
+ /// The vertical padding of the small arrow Button.
22228
+ /// @group split-button
21484
22229
  $kendo-split-button-sm-arrow-padding-y: $kendo-button-sm-padding-y !default;
22230
+ /// The vertical padding of the medium arrow Button.
22231
+ /// @group split-button
21485
22232
  $kendo-split-button-md-arrow-padding-y: $kendo-button-md-padding-y !default;
22233
+ /// The vertical padding of the large arrow Button.
22234
+ /// @group split-button
21486
22235
  $kendo-split-button-lg-arrow-padding-y: $kendo-button-lg-padding-y !default;
21487
22236
 
21488
22237
  // #endregion
@@ -22412,153 +23161,184 @@ $_kendo-module-meta: (
22412
23161
 
22413
23162
  // Radio button
22414
23163
 
22415
- /// Border radius of radio button.
23164
+ /// The border radius of the RadioButton.
22416
23165
  /// @group radio
22417
23166
  $kendo-radio-radius: 50% !default;
22418
- /// Border width of radio button.
23167
+ /// The border width of the RadioButton.
22419
23168
  /// @group radio
22420
23169
  $kendo-radio-border-width: 1px !default;
22421
23170
 
22422
- // Radio button sizes
23171
+ /// The size of a small RadioButton.
23172
+ /// @group radio
23173
+ $kendo-radio-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
23174
+ /// The size of a medium RadioButton.
23175
+ /// @group radio
23176
+ $kendo-radio-md-size: k-map-get( $kendo-spacing, 4 ) !default;
23177
+ /// The size of a large RadioButton.
23178
+ /// @group radio
23179
+ $kendo-radio-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
23180
+
23181
+ /// The glyph size of a small RadioButton.
23182
+ /// @group radio
23183
+ $kendo-radio-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
23184
+ /// The glyph size of a medium RadioButton.
23185
+ /// @group radio
23186
+ $kendo-radio-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
23187
+ /// The glyph size of a large RadioButton.
23188
+ /// @group radio
23189
+ $kendo-radio-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
23190
+
23191
+ /// The ripple size of a small RadioButton.
23192
+ /// @group radio
23193
+ $kendo-radio-sm-ripple-size: 300% !default;
23194
+ /// The ripple size of a medium RadioButton.
23195
+ /// @group radio
23196
+ $kendo-radio-md-ripple-size: 300% !default;
23197
+ /// The ripple size of a large RadioButton.
23198
+ /// @group radio
23199
+ $kendo-radio-lg-ripple-size: 300% !default;
23200
+
23201
+ /// The map with the different RadioButton sizes.
23202
+ /// @group radio
22423
23203
  $kendo-radio-sizes: (
22424
23204
  sm: (
22425
- size: k-map-get( $kendo-spacing, 3 ),
22426
- glyph-size: k-map-get( $kendo-spacing, 2.5 ),
22427
- ripple-size: 300%
23205
+ size: $kendo-radio-sm-size,
23206
+ glyph-size: $kendo-radio-sm-glyph-size,
23207
+ ripple-size: $kendo-radio-sm-ripple-size
22428
23208
  ),
22429
23209
  md: (
22430
- size: k-map-get( $kendo-spacing, 4 ),
22431
- glyph-size: k-map-get( $kendo-spacing, 3.5 ),
22432
- ripple-size: 300%
23210
+ size: $kendo-radio-md-size,
23211
+ glyph-size: $kendo-radio-md-glyph-size,
23212
+ ripple-size: $kendo-radio-md-ripple-size
22433
23213
  ),
22434
23214
  lg: (
22435
- size: k-map-get( $kendo-spacing, 5 ),
22436
- glyph-size: k-map-get( $kendo-spacing, 4.5 ),
22437
- ripple-size: 300%
23215
+ size: $kendo-radio-lg-size,
23216
+ glyph-size: $kendo-radio-lg-glyph-size,
23217
+ ripple-size: $kendo-radio-lg-ripple-size
22438
23218
  )
22439
23219
  ) !default;
22440
23220
 
22441
- /// Background color of radio button.
23221
+ /// The background color of the RadioButton.
22442
23222
  /// @group radio
22443
23223
  $kendo-radio-bg: $kendo-checkbox-bg !default;
22444
- /// Color of radio button.
23224
+ /// The text color of radio button.
22445
23225
  /// @group radio
22446
23226
  $kendo-radio-text: $kendo-checkbox-text !default;
22447
- /// Border color of radio button.
23227
+ /// The border color of the RadioButton.
22448
23228
  /// @group radio
22449
23229
  $kendo-radio-border: $kendo-checkbox-border !default;
22450
23230
 
22451
- /// Background color of hovered radio button.
23231
+ /// The background color of the hovered RadioButton.
22452
23232
  /// @group radio
22453
23233
  $kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
22454
- /// Color of hovered radio button.
23234
+ /// The text color of the hovered RadioButton.
22455
23235
  /// @group radio
22456
23236
  $kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
22457
- /// Border color of hovered radio button.
23237
+ /// The border color of the hovered RadioButton.
22458
23238
  /// @group radio
22459
23239
  $kendo-radio-hover-border: $kendo-checkbox-hover-border !default;
22460
23240
 
22461
- /// Background color of checked radio button.
23241
+ /// The background color of the checked RadioButton.
22462
23242
  /// @group radio
22463
23243
  $kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
22464
- /// Color of checked radio button.
23244
+ /// The text color of the checked RadioButton.
22465
23245
  /// @group radio
22466
23246
  $kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
22467
- /// Border color of checked radio button.
23247
+ /// The border color of the checked RadioButton.
22468
23248
  /// @group radio
22469
23249
  $kendo-radio-checked-border: $kendo-checkbox-checked-border !default;
22470
23250
 
22471
- /// Border color of focused radio button.
23251
+ /// The border color of the focused RadioButton.
22472
23252
  /// @group radio
22473
23253
  $kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
22474
- /// Box shadow of focused radio button.
23254
+ /// The box shadow of the focused RadioButton.
22475
23255
  /// @group radio
22476
23256
  $kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
22477
- /// Border color of focused and checked radio button.
23257
+ /// The border color of the focused and checked RadioButton.
22478
23258
  /// @group radio
22479
23259
  $kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
22480
- /// Box shadow of focused and checked radio button.
23260
+ /// The box shadow of the focused and checked RadioButton.
22481
23261
  /// @group radio
22482
23262
  $kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
22483
23263
 
22484
- /// Background color of disabled radio button.
23264
+ /// The background color of the disabled RadioButton.
22485
23265
  /// @group radio
22486
23266
  $kendo-radio-disabled-bg: $kendo-checkbox-disabled-bg !default;
22487
- /// Color of disabled radio button.
23267
+ /// The color of the disabled RadioButton.
22488
23268
  /// @group radio
22489
23269
  $kendo-radio-disabled-text: $kendo-checkbox-disabled-text !default;
22490
- /// Border color of disabled radio button.
23270
+ /// The border color of the disabled RadioButton.
22491
23271
  /// @group radio
22492
23272
  $kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
22493
23273
 
22494
- /// Background color of disabled and checked radio button.
23274
+ /// The background color of the disabled and checked RadioButton.
22495
23275
  /// @group radio
22496
23276
  $kendo-radio-disabled-checked-bg: $kendo-checkbox-disabled-checked-bg !default;
22497
- /// Color of disabled and checked radio button.
23277
+ /// The color of the disabled and checked RadioButton.
22498
23278
  /// @group radio
22499
23279
  $kendo-radio-disabled-checked-text: $kendo-checkbox-disabled-checked-text !default;
22500
- /// Border color of disabled and checked radio button.
23280
+ /// The border color of disabled and checked RadioButton.
22501
23281
  /// @group radio
22502
23282
  $kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
22503
23283
 
22504
- /// Background color of invalid radio button.
23284
+ /// The background color of the invalid RadioButton.
22505
23285
  /// @group radio
22506
23286
  $kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
22507
- /// Color of invalid radio button.
23287
+ /// The text color of the invalid RadioButton.
22508
23288
  /// @group radio
22509
23289
  $kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
22510
- /// Border color of invalid radio button.
23290
+ /// The border color of the invalid RadioButton.
22511
23291
  /// @group radio
22512
23292
  $kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
22513
23293
 
22514
23294
 
22515
23295
  // Radio indicator
22516
23296
 
22517
- /// Type of radio button indicator.
23297
+ /// The type of the RadioButton indicator.
22518
23298
  /// @group radio
22519
23299
  $kendo-radio-indicator-type: image !default;
22520
23300
 
22521
- /// Glyph font family of radio button indicator.
23301
+ /// The font family of the RadioButton indicator glyph.
22522
23302
  /// @group radio
22523
23303
  $kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
22524
- /// Glyph of radio button indicator.
23304
+ /// The glyph of the RadioButton indicator.
22525
23305
  /// @group radio
22526
23306
  $kendo-radio-checked-glyph: "\e308" !default;
22527
23307
 
22528
- /// Image of checked radio button indicator.
23308
+ /// The image of the checked RadioButton indicator.
22529
23309
  /// @group radio
22530
23310
  $kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
22531
- /// Image of disabled and checked radio button indicator.
23311
+ /// The image of the disabled and checked RadioButton indicator.
22532
23312
  /// @group radio
22533
23313
  $kendo-radio-disabled-checked-image: null !default;
22534
23314
 
22535
23315
 
22536
23316
  // Radio label
22537
23317
 
22538
- /// The horizontal margin of the radio button inside of a label.
23318
+ /// The horizontal margin of the RadioButton inside of a label.
22539
23319
  /// @group radio
22540
23320
  $kendo-radio-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
22541
23321
 
22542
23322
 
22543
23323
  // Radio list
22544
23324
 
22545
- /// Spacing between items of horizontal radio button list.
23325
+ /// The horizontal list item margin of the RadioButton.
22546
23326
  /// @group radio
22547
23327
  $kendo-radio-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
22548
- /// Horizontal padding of radio button list items.
23328
+ /// The horizontal list item padding of the RadioButton.
22549
23329
  /// @group radio
22550
23330
  $kendo-radio-list-item-padding-x: 0px !default;
22551
- /// Vertical padding of radio button list items.
23331
+ /// The vertical list item padding of the RadioButton.
22552
23332
  /// @group radio
22553
23333
  $kendo-radio-list-item-padding-y: $kendo-list-md-item-padding-y !default;
22554
23334
 
22555
23335
 
22556
23336
  // Radio ripple
22557
23337
 
22558
- /// Background color of radio button ripple.
23338
+ /// The background color of the RadioButton ripple.
22559
23339
  /// @group radio
22560
23340
  $kendo-radio-ripple-bg: $kendo-radio-checked-bg !default;
22561
- /// Opacity of radio button ripple.
23341
+ /// The opacity of the RadioButton ripple.
22562
23342
  /// @group radio
22563
23343
  $kendo-radio-ripple-opacity: .25 !default;
22564
23344
 
@@ -27699,26 +28479,27 @@ $_kendo-module-meta: (
27699
28479
  // #region @import "./_variables.scss"; -> scss/switch/_variables.scss
27700
28480
  // Switch
27701
28481
 
27702
- /// Font family of the switch.
28482
+ /// The font family of the Switch.
27703
28483
  /// @group switch
27704
28484
  $kendo-switch-font-family: null !default;
27705
28485
 
27706
- /// Border width of the switch track.
28486
+ /// The border width of the Switch track.
27707
28487
  /// @group switch
27708
28488
  $kendo-switch-track-border-width: 1px !default;
27709
28489
 
27710
- /// Border width of the switch thumb.
28490
+ /// The border width of the Switch thumb.
27711
28491
  /// @group switch
27712
28492
  $kendo-switch-thumb-border-width: null !default;
27713
28493
 
27714
- /// Text transform of the switch label.
28494
+ /// The text transform of the Switch label.
27715
28495
  /// @group switch
27716
28496
  $kendo-switch-label-text-transform: null !default;
27717
- /// Display of the switch label.
28497
+
28498
+ /// The display of the Switch label.
27718
28499
  /// @group switch
27719
28500
  $kendo-switch-label-display: none !default;
27720
28501
 
27721
- /// Map with the different switch sizes.
28502
+ /// The map with the different Switch sizes.
27722
28503
  /// @group switch
27723
28504
  $kendo-switch-sizes: (
27724
28505
  sm: ( font-size: null, track-width: 48px, track-height: 26px, thumb-width: 20px, thumb-height: 20px, thumb-offset: 3px, label-offset: null ),
@@ -27726,166 +28507,166 @@ $kendo-switch-sizes: (
27726
28507
  lg: ( font-size: null, track-width: 64px, track-height: 34px, thumb-width: 28px, thumb-height: 28px, thumb-offset: 3px, label-offset: null )
27727
28508
  ) !default;
27728
28509
 
27729
- /// The background of the track when the switch is not checked.
28510
+ /// The background of the track when the Switch is not checked.
27730
28511
  /// @group switch
27731
28512
  $kendo-switch-off-track-bg: $kendo-component-bg !default;
27732
- /// The text color of the track when the switch is not checked.
28513
+ /// The text color of the track when the Switch is not checked.
27733
28514
  /// @group switch
27734
28515
  $kendo-switch-off-track-text: null !default;
27735
- /// The border color of the track when the switch is not checked.
28516
+ /// The border color of the track when the Switch is not checked.
27736
28517
  /// @group switch
27737
28518
  $kendo-switch-off-track-border: $gray-500 !default;
27738
- /// The background gradient of the track when the switch is not checked.
28519
+ /// The background gradient of the track when the Switch is not checked.
27739
28520
  /// @group switch
27740
28521
  $kendo-switch-off-track-gradient: null !default;
27741
28522
 
27742
- /// The background of the track when the hovered switch is not checked.
28523
+ /// The background of the track when the hovered Switch is not checked.
27743
28524
  /// @group switch
27744
28525
  $kendo-switch-off-track-hover-bg: null !default;
27745
- /// The text color of the track when the hovered switch is not checked.
28526
+ /// The text color of the track when the hovered Switch is not checked.
27746
28527
  /// @group switch
27747
28528
  $kendo-switch-off-track-hover-text: null !default;
27748
- /// The border color of the track when the hovered switch is not checked.
28529
+ /// The border color of the track when the hovered Switch is not checked.
27749
28530
  /// @group switch
27750
28531
  $kendo-switch-off-track-hover-border: null !default;
27751
- /// The background gradient of the track when the hovered switch is not checked.
28532
+ /// The background gradient of the track when the hovered Switch is not checked.
27752
28533
  /// @group switch
27753
28534
  $kendo-switch-off-track-hover-gradient: null !default;
27754
28535
 
27755
- /// The background of the track when the focused switch is not checked.
28536
+ /// The background of the track when the focused Switch is not checked.
27756
28537
  /// @group switch
27757
28538
  $kendo-switch-off-track-focus-bg: null !default;
27758
- /// The text color of the track when the focused switch is not checked.
28539
+ /// The text color of the track when the focused Switch is not checked.
27759
28540
  /// @group switch
27760
28541
  $kendo-switch-off-track-focus-text: null !default;
27761
- /// The border color of the track when the focused switch is not checked.
28542
+ /// The border color of the track when the focused Switch is not checked.
27762
28543
  /// @group switch
27763
28544
  $kendo-switch-off-track-focus-border: k-color-mix( $kendo-switch-off-track-bg, $kendo-color-primary ) !default;
27764
- /// The background gradient of the track when the focused switch is not checked.
28545
+ /// The background gradient of the track when the focused Switch is not checked.
27765
28546
  /// @group switch
27766
28547
  $kendo-switch-off-track-focus-gradient: null !default;
27767
- /// The ring around the track when the focused switch is not checked.
28548
+ /// The ring around the track when the focused Switch is not checked.
27768
28549
  /// @group switch
27769
28550
  $kendo-switch-off-track-focus-ring: .25rem solid rgba( $kendo-color-primary, .25 ) !default;
27770
28551
 
27771
- /// The background of the track when the disabled switch is not checked.
28552
+ /// The background of the track when the disabled Switch is not checked.
27772
28553
  /// @group switch
27773
28554
  $kendo-switch-off-track-disabled-bg: if( $kendo-is-dark-theme, $gray-800, $gray-200 ) !default;
27774
- /// The text color of the track when the disabled switch is not checked.
28555
+ /// The text color of the track when the disabled Switch is not checked.
27775
28556
  /// @group switch
27776
28557
  $kendo-switch-off-track-disabled-text: null !default;
27777
- /// The border color of the track when the disabled switch is not checked.
28558
+ /// The border color of the track when the disabled Switch is not checked.
27778
28559
  /// @group switch
27779
28560
  $kendo-switch-off-track-disabled-border: null !default;
27780
- /// The background gradient of the track when the disabled switch is not checked.
28561
+ /// The background gradient of the track when the disabled Switch is not checked.
27781
28562
  /// @group switch
27782
28563
  $kendo-switch-off-track-disabled-gradient: null !default;
27783
28564
 
27784
- /// The background of the thumb when the switch is not checked.
28565
+ /// The background of the thumb when the Switch is not checked.
27785
28566
  /// @group switch
27786
28567
  $kendo-switch-off-thumb-bg: $gray-500 !default;
27787
- /// The text color of the thumb when the switch is not checked.
28568
+ /// The text color of the thumb when the Switch is not checked.
27788
28569
  /// @group switch
27789
28570
  $kendo-switch-off-thumb-text: null !default;
27790
- /// The border color of the thumb when the switch is not checked.
28571
+ /// The border color of the thumb when the Switch is not checked.
27791
28572
  /// @group switch
27792
28573
  $kendo-switch-off-thumb-border: null !default;
27793
- /// The background gradient of the thumb when the switch is not checked.
28574
+ /// The background gradient of the thumb when the Switch is not checked.
27794
28575
  /// @group switch
27795
28576
  $kendo-switch-off-thumb-gradient: null !default;
27796
28577
 
27797
- /// The background of the thumb when the hovered switch is not checked.
28578
+ /// The background of the thumb when the hovered Switch is not checked.
27798
28579
  /// @group switch
27799
28580
  $kendo-switch-off-thumb-hover-bg: null !default;
27800
- /// The text color of the thumb when the hovered switch is not checked.
28581
+ /// The text color of the thumb when the hovered Switch is not checked.
27801
28582
  /// @group switch
27802
28583
  $kendo-switch-off-thumb-hover-text: null !default;
27803
- /// The border color of the thumb when the hovered switch is not checked.
28584
+ /// The border color of the thumb when the hovered Switch is not checked.
27804
28585
  /// @group switch
27805
28586
  $kendo-switch-off-thumb-hover-border: null !default;
27806
- /// The background gradient of the thumb when the hovered switch is not checked.
28587
+ /// The background gradient of the thumb when the hovered Switch is not checked.
27807
28588
  /// @group switch
27808
28589
  $kendo-switch-off-thumb-hover-gradient: null !default;
27809
28590
 
27810
28591
 
27811
- /// The background of the track when the switch is checked.
28592
+ /// The background of the track when the Switch is checked.
27812
28593
  /// @group switch
27813
28594
  $kendo-switch-on-track-bg: $kendo-color-primary !default;
27814
- /// The text color of the track when the switch is checked.
28595
+ /// The text color of the track when the Switch is checked.
27815
28596
  /// @group switch
27816
28597
  $kendo-switch-on-track-text: null !default;
27817
- /// The border color of the track when the switch is checked.
28598
+ /// The border color of the track when the Switch is checked.
27818
28599
  /// @group switch
27819
28600
  $kendo-switch-on-track-border: $kendo-switch-on-track-bg !default;
27820
- /// The background gradient of the track when the switch is checked.
28601
+ /// The background gradient of the track when the Switch is checked.
27821
28602
  /// @group switch
27822
28603
  $kendo-switch-on-track-gradient: null !default;
27823
28604
 
27824
- /// The background of the track when the hovered switch is checked.
28605
+ /// The background of the track when the hovered Switch is checked.
27825
28606
  /// @group switch
27826
28607
  $kendo-switch-on-track-hover-bg: null !default;
27827
- /// The text color of the track when the hovered switch is checked.
28608
+ /// The text color of the track when the hovered Switch is checked.
27828
28609
  /// @group switch
27829
28610
  $kendo-switch-on-track-hover-text: null !default;
27830
- /// The border color of the track when the hovered switch is checked.
28611
+ /// The border color of the track when the hovered Switch is checked.
27831
28612
  /// @group switch
27832
28613
  $kendo-switch-on-track-hover-border: null !default;
27833
- /// The background gradient of the track when the hovered switch is checked.
28614
+ /// The background gradient of the track when the hovered Switch is checked.
27834
28615
  /// @group switch
27835
28616
  $kendo-switch-on-track-hover-gradient: null !default;
27836
28617
 
27837
- /// The background of the track when the focused switch is checked.
28618
+ /// The background of the track when the focused Switch is checked.
27838
28619
  /// @group switch
27839
28620
  $kendo-switch-on-track-focus-bg: null !default;
27840
- /// The text color of the track when the focused switch is checked.
28621
+ /// The text color of the track when the focused Switch is checked.
27841
28622
  /// @group switch
27842
28623
  $kendo-switch-on-track-focus-text: null !default;
27843
- /// The border color of the track when the focused switch is checked.
28624
+ /// The border color of the track when the focused Switch is checked.
27844
28625
  /// @group switch
27845
28626
  $kendo-switch-on-track-focus-border: null !default;
27846
- /// The background gradient of the track when the focused switch is checked.
28627
+ /// The background gradient of the track when the focused Switch is checked.
27847
28628
  /// @group switch
27848
28629
  $kendo-switch-on-track-focus-gradient: null !default;
27849
- /// The ring around the track when the focused switch is checked.
28630
+ /// The ring around the track when the focused Switch is checked.
27850
28631
  /// @group switch
27851
28632
  $kendo-switch-on-track-focus-ring: .25rem solid rgba( $kendo-switch-on-track-border, .25 ) !default;
27852
28633
 
27853
- /// The background of the track when the disabled switch is checked.
28634
+ /// The background of the track when the disabled Switch is checked.
27854
28635
  /// @group switch
27855
28636
  $kendo-switch-on-track-disabled-bg: k-try-tint( $kendo-switch-on-track-bg, 50% ) !default;
27856
- /// The text color of the track when the disabled switch is checked.
28637
+ /// The text color of the track when the disabled Switch is checked.
27857
28638
  /// @group switch
27858
28639
  $kendo-switch-on-track-disabled-text: null !default;
27859
- /// The border color of the track when the disabled switch is checked.
28640
+ /// The border color of the track when the disabled Switch is checked.
27860
28641
  /// @group switch
27861
28642
  $kendo-switch-on-track-disabled-border: null !default;
27862
- /// The background gradient of the track when the disabled switch is checked.
28643
+ /// The background gradient of the track when the disabled Switch is checked.
27863
28644
  /// @group switch
27864
28645
  $kendo-switch-on-track-disabled-gradient: null !default;
27865
28646
 
27866
- /// The background of the thumb when the switch is checked.
28647
+ /// The background of the thumb when the Switch is checked.
27867
28648
  /// @group switch
27868
28649
  $kendo-switch-on-thumb-bg: k-contrast-color( $kendo-switch-on-track-bg ) !default;
27869
- /// The text color of the thumb when the switch is checked.
28650
+ /// The text color of the thumb when the Switch is checked.
27870
28651
  /// @group switch
27871
28652
  $kendo-switch-on-thumb-text: null !default;
27872
- /// The border color of the thumb when the switch is checked.
28653
+ /// The border color of the thumb when the Switch is checked.
27873
28654
  /// @group switch
27874
28655
  $kendo-switch-on-thumb-border: null !default;
27875
- /// The background gradient of the thumb when the switch is checked.
28656
+ /// The background gradient of the thumb when the Switch is checked.
27876
28657
  /// @group switch
27877
28658
  $kendo-switch-on-thumb-gradient: null !default;
27878
28659
 
27879
- /// The background of the thumb when the hovered switch is checked.
28660
+ /// The background of the thumb when the hovered Switch is checked.
27880
28661
  /// @group switch
27881
28662
  $kendo-switch-on-thumb-hover-bg: null !default;
27882
- /// The text color of the thumb when the hovered switch is checked.
28663
+ /// The text color of the thumb when the hovered Switch is checked.
27883
28664
  /// @group switch
27884
28665
  $kendo-switch-on-thumb-hover-text: null !default;
27885
- /// The border color of the thumb when the hovered switch is checked.
28666
+ /// The border color of the thumb when the hovered Switch is checked.
27886
28667
  /// @group switch
27887
28668
  $kendo-switch-on-thumb-hover-border: null !default;
27888
- /// The background gradient of the thumb when the hovered switch is checked.
28669
+ /// The background gradient of the thumb when the hovered Switch is checked.
27889
28670
  /// @group switch
27890
28671
  $kendo-switch-on-thumb-hover-gradient: null !default;
27891
28672
 
@@ -42791,7 +43572,6 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
42791
43572
  display: flex;
42792
43573
  flex-flow: column nowrap;
42793
43574
  position: relative;
42794
- z-index: 1;
42795
43575
  -webkit-touch-callout: none;
42796
43576
  -webkit-tap-highlight-color: $kendo-color-rgba-transparent;
42797
43577