@progress/kendo-theme-default 6.2.1-dev.1 → 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/
@@ -5553,14 +5577,32 @@ $kendo-utils: (
5553
5577
  video: k-string-unquote("16 / 9")
5554
5578
  ),
5555
5579
  "container": (),
5556
- "columns": (),
5580
+ "columns": (
5581
+ 1: 1,
5582
+ 2: 2,
5583
+ 3: 3,
5584
+ 4: 4,
5585
+ 5: 5,
5586
+ 6: 6,
5587
+ 7: 7,
5588
+ 8: 8,
5589
+ 9: 9,
5590
+ 10: 10,
5591
+ 11: 11,
5592
+ 12: 12,
5593
+ auto: auto
5594
+ ),
5557
5595
  "break-after": (),
5558
5596
  "break-before": (),
5559
5597
  "break-inside": (),
5560
5598
  "box-decoration-break": (),
5561
- "box-sizing": (),
5599
+ "box-sizing": (
5600
+ border: border-box,
5601
+ content: content-box
5602
+ ),
5562
5603
  "display": (
5563
5604
  none,
5605
+ contents,
5564
5606
  block,
5565
5607
  inline,
5566
5608
  inline-block,
@@ -5570,6 +5612,8 @@ $kendo-utils: (
5570
5612
  inline-grid,
5571
5613
  table,
5572
5614
  inline-table,
5615
+ table-row,
5616
+ table-cell,
5573
5617
  list-item
5574
5618
  ),
5575
5619
  "float": (
@@ -5584,26 +5628,37 @@ $kendo-utils: (
5584
5628
  none
5585
5629
  ),
5586
5630
  "isolation": (),
5587
- "object-fit": (),
5588
- "object-position": (),
5631
+ "object-fit": (
5632
+ contain,
5633
+ cover,
5634
+ fill,
5635
+ scale-down,
5636
+ initial,
5637
+ none
5638
+ ),
5639
+ "object-position": (
5640
+ center: center,
5641
+ top: top,
5642
+ right: right,
5643
+ bottom: bottom,
5644
+ left: left,
5645
+ top-left: top left,
5646
+ top-right: top right,
5647
+ bottom-left: bottom left,
5648
+ bottom-right: bottom right
5649
+ ),
5589
5650
  "overflow": (
5590
5651
  auto: auto,
5591
5652
  hidden: hidden,
5592
5653
  visible: visible,
5593
5654
  scroll: scroll,
5594
- clip: clip,
5595
- x-auto: auto,
5596
- x-hidden: hidden,
5597
- x-visible: visible,
5598
- x-scroll: scroll,
5599
- x-clip: clip,
5600
- y-auto: auto,
5601
- y-hidden: hidden,
5602
- y-visible: visible,
5603
- y-scroll: scroll,
5604
- y-clip: clip
5655
+ clip: clip
5605
5656
  ),
5606
5657
  "overscroll": (),
5658
+ "placement": k-map-merge( $kendo-spacing, (
5659
+ // sass-lint:disable-block indentation
5660
+ -1: -1px
5661
+ )),
5607
5662
  "position": (
5608
5663
  static,
5609
5664
  relative,
@@ -5617,8 +5672,9 @@ $kendo-utils: (
5617
5672
  -1: -1px
5618
5673
  ),
5619
5674
  "visibility": (
5620
- visible,
5621
- hidden
5675
+ visible: visible,
5676
+ invisible: hidden,
5677
+ collapse: collapse
5622
5678
  ),
5623
5679
  "zindex": (
5624
5680
  0: 0,
@@ -5718,6 +5774,19 @@ $kendo-utils: (
5718
5774
  11: 11,
5719
5775
  12: 12,
5720
5776
  13: 13,
5777
+ -1: -1,
5778
+ -2: -2,
5779
+ -3: -3,
5780
+ -4: -4,
5781
+ -5: -5,
5782
+ -6: -6,
5783
+ -7: -7,
5784
+ -8: -8,
5785
+ -9: -9,
5786
+ -10: -10,
5787
+ -11: -11,
5788
+ -12: -12,
5789
+ -13: -13,
5721
5790
  auto: auto
5722
5791
  ),
5723
5792
  "grid-column-end": (
@@ -5734,6 +5803,19 @@ $kendo-utils: (
5734
5803
  11: 11,
5735
5804
  12: 12,
5736
5805
  13: 13,
5806
+ -1: -1,
5807
+ -2: -2,
5808
+ -3: -3,
5809
+ -4: -4,
5810
+ -5: -5,
5811
+ -6: -6,
5812
+ -7: -7,
5813
+ -8: -8,
5814
+ -9: -9,
5815
+ -10: -10,
5816
+ -11: -11,
5817
+ -12: -12,
5818
+ -13: -13,
5737
5819
  auto: auto
5738
5820
  ),
5739
5821
  "grid-column-span": (
@@ -5766,6 +5848,19 @@ $kendo-utils: (
5766
5848
  11: 11,
5767
5849
  12: 12,
5768
5850
  13: 13,
5851
+ -1: -1,
5852
+ -2: -2,
5853
+ -3: -3,
5854
+ -4: -4,
5855
+ -5: -5,
5856
+ -6: -6,
5857
+ -7: -7,
5858
+ -8: -8,
5859
+ -9: -9,
5860
+ -10: -10,
5861
+ -11: -11,
5862
+ -12: -12,
5863
+ -13: -13,
5769
5864
  auto: auto
5770
5865
  ),
5771
5866
  "grid-row-end": (
@@ -5782,6 +5877,19 @@ $kendo-utils: (
5782
5877
  11: 11,
5783
5878
  12: 12,
5784
5879
  13: 13,
5880
+ -1: -1,
5881
+ -2: -2,
5882
+ -3: -3,
5883
+ -4: -4,
5884
+ -5: -5,
5885
+ -6: -6,
5886
+ -7: -7,
5887
+ -8: -8,
5888
+ -9: -9,
5889
+ -10: -10,
5890
+ -11: -11,
5891
+ -12: -12,
5892
+ -13: -13,
5785
5893
  auto: auto
5786
5894
  ),
5787
5895
  "grid-row-span": (
@@ -5803,6 +5911,7 @@ $kendo-utils: (
5803
5911
  "grid-auto-flow": (
5804
5912
  row: row,
5805
5913
  col: column,
5914
+ dense: dense,
5806
5915
  row-dense: row dense,
5807
5916
  col-dense: column dense,
5808
5917
  unset: unset
@@ -5962,7 +6071,8 @@ $kendo-utils: (
5962
6071
  ),
5963
6072
 
5964
6073
  // Spacing
5965
- "margin": k-map-merge( $kendo-spacing, (
6074
+ "margin": k-map-merge( $kendo-spacing,
6075
+ k-map-negate( $kendo-spacing), (
5966
6076
  // sass-lint:disable-block indentation
5967
6077
  // TODO: remove this extension once we fix docs
5968
6078
  xs: k-map-get( $kendo-spacing, 1 ),
@@ -5971,7 +6081,8 @@ $kendo-utils: (
5971
6081
  lg: k-map-get( $kendo-spacing, 4 ),
5972
6082
  xl: k-map-get( $kendo-spacing, 6 ),
5973
6083
  thin: k-map-get( $kendo-spacing, 0.5 ), // sass-lint:disable-line leading-zero
5974
- hair: k-map-get( $kendo-spacing, 1px )
6084
+ hair: k-map-get( $kendo-spacing, 1px ),
6085
+ auto: auto
5975
6086
  )),
5976
6087
  "padding": k-map-merge( $kendo-spacing, (
5977
6088
  // sass-lint:disable-block indentation
@@ -6052,13 +6163,19 @@ $kendo-utils: (
6052
6163
  "font-variant-numeric": (),
6053
6164
  "letter-spacing": (),
6054
6165
  "line-height": (),
6055
- "list-style-type": (),
6166
+ "list-style-type": (
6167
+ none,
6168
+ disc,
6169
+ decimal
6170
+ ),
6056
6171
  "list-style-position": (),
6057
6172
  "text-align": (
6058
6173
  left,
6059
6174
  right,
6060
6175
  center,
6061
- justify
6176
+ justify,
6177
+ start,
6178
+ end
6062
6179
  ),
6063
6180
  "text-color": k-map-merge( $kendo-theme-colors, (
6064
6181
  // sass-lint:disable-block indentation
@@ -6068,7 +6185,12 @@ $kendo-utils: (
6068
6185
  "black": black,
6069
6186
  "white": white
6070
6187
  )),
6071
- "text-decoration": (),
6188
+ "text-decoration": (
6189
+ underline: underline,
6190
+ overline: overline,
6191
+ line-through: line-through,
6192
+ no-underline: none
6193
+ ),
6072
6194
  "text-decoration-width": (),
6073
6195
  "text-decoration-style": (),
6074
6196
  "text-decoration-color": (),
@@ -6084,7 +6206,16 @@ $kendo-utils: (
6084
6206
  ellipsis: ellipsis
6085
6207
  ),
6086
6208
  "text-indent": (),
6087
- "vertical-align": (),
6209
+ "vertical-align": (
6210
+ baseline,
6211
+ top,
6212
+ middle,
6213
+ bottom,
6214
+ text-top,
6215
+ text-bottom,
6216
+ sub,
6217
+ super
6218
+ ),
6088
6219
  "white-space": (
6089
6220
  normal,
6090
6221
  nowrap,
@@ -6096,6 +6227,12 @@ $kendo-utils: (
6096
6227
  "word-break": (),
6097
6228
 
6098
6229
  // Background
6230
+ "background-clip": (
6231
+ border: border-box,
6232
+ padding: padding-box,
6233
+ content: content-box,
6234
+ text: text
6235
+ ),
6099
6236
  "background-color": k-map-merge( $kendo-theme-colors, (
6100
6237
  // sass-lint:disable-block indentation
6101
6238
  "inherit": inherit,
@@ -6117,6 +6254,10 @@ $kendo-utils: (
6117
6254
  dashed,
6118
6255
  dotted,
6119
6256
  double,
6257
+ // groove,
6258
+ // ridge,
6259
+ inset,
6260
+ outset,
6120
6261
  hidden,
6121
6262
  none
6122
6263
  ),
@@ -6141,13 +6282,20 @@ $kendo-utils: (
6141
6282
  dashed,
6142
6283
  dotted,
6143
6284
  double,
6144
- groove,
6145
- ridge,
6285
+ // groove,
6286
+ // ridge,
6146
6287
  inset,
6147
6288
  outset,
6148
6289
  none
6149
6290
  ),
6150
- "outline-color": (),
6291
+ "outline-color": k-map-merge( $kendo-theme-colors, (
6292
+ // sass-lint:disable-block indentation
6293
+ "inherit": inherit,
6294
+ "current": currentColor,
6295
+ "transparent": transparent,
6296
+ "black": black,
6297
+ "white": white
6298
+ )),
6151
6299
  "outline-offset": (
6152
6300
  0: 0,
6153
6301
  1: 1px,
@@ -6157,8 +6305,32 @@ $kendo-utils: (
6157
6305
  ),
6158
6306
 
6159
6307
  // Effects
6308
+ "box-shadow": (),
6309
+ "box-shadow-color": (),
6310
+ "opacity": (
6311
+ // sass-lint:disable-block leading-zero
6312
+ 0: 0,
6313
+ 5: 0.05,
6314
+ 10: 0.1,
6315
+ 20: 0.2,
6316
+ 30: 0.3,
6317
+ 40: 0.4,
6318
+ 50: 0.5,
6319
+ 60: 0.6,
6320
+ 70: 0.7,
6321
+ 80: 0.8,
6322
+ 90: 0.9,
6323
+ 100: 1
6324
+ ),
6160
6325
 
6161
6326
  // Filter
6327
+ "backdrop-blur": (
6328
+ DEFAULT: blur(8px),
6329
+ none: blur(0),
6330
+ sm: blur(4px),
6331
+ md: blur(6px),
6332
+ lg: blur(12px)
6333
+ ),
6162
6334
 
6163
6335
  // Table
6164
6336
  "border-collapse": (
@@ -6325,6 +6497,14 @@ $kendo-utils: (
6325
6497
  scroll: scroll-position,
6326
6498
  contents: contents,
6327
6499
  transform: transform
6500
+ ),
6501
+ "fill-stroke": (
6502
+ none: none,
6503
+ inherit: inherit,
6504
+ current: currentColor,
6505
+ "transparent": transparent,
6506
+ "black": black,
6507
+ "white": white
6328
6508
  )
6329
6509
  ) !default;
6330
6510
 
@@ -6440,6 +6620,18 @@ $kendo-utils: (
6440
6620
 
6441
6621
  }
6442
6622
 
6623
+ // #endregion
6624
+ // #region @import "./_box-sizing.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_box-sizing.scss
6625
+ // TODO: docs
6626
+
6627
+ @mixin kendo-utils--layout--box-sizing() {
6628
+
6629
+ // box-sizing utility classes
6630
+ $kendo-utils-box-sizing: k-map-get( $kendo-utils, "box-sizing" ) !default;
6631
+ @include generate-utils( box-sizing, box-sizing, $kendo-utils-box-sizing );
6632
+
6633
+ }
6634
+
6443
6635
  // #endregion
6444
6636
  // #region @import "./_clear.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_clear.scss
6445
6637
  // Clear documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/clear.
@@ -6472,6 +6664,83 @@ $kendo-utils: (
6472
6664
 
6473
6665
  }
6474
6666
 
6667
+ // #endregion
6668
+ // #region @import "./_columns.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_columns.scss
6669
+ // Columns documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/columns.
6670
+
6671
+ /// This is equivalent to `columns: 1;`. Element's content is displayed into 1 column.
6672
+ /// @name .k-columns-1
6673
+ /// @group columns
6674
+ /// @contextType css
6675
+
6676
+ /// This is equivalent to `columns: 2;`. Element's content is broken into 2 columns.
6677
+ /// @name .k-columns-2
6678
+ /// @group columns
6679
+ /// @contextType css
6680
+
6681
+ /// This is equivalent to `columns: 3;`. Element's content is broken into 3 columns.
6682
+ /// @name .k-columns-3
6683
+ /// @group columns
6684
+ /// @contextType css
6685
+
6686
+ /// This is equivalent to `columns: 4;`. Element's content is broken into 4 columns.
6687
+ /// @name .k-columns-4
6688
+ /// @group columns
6689
+ /// @contextType css
6690
+
6691
+ /// This is equivalent to `columns: 5;`. Element's content is broken into 5 columns.
6692
+ /// @name .k-columns-5
6693
+ /// @group columns
6694
+ /// @contextType css
6695
+
6696
+ /// This is equivalent to `columns: 6;`. Element's content is broken into 6 columns.
6697
+ /// @name .k-columns-6
6698
+ /// @group columns
6699
+ /// @contextType css
6700
+
6701
+ /// This is equivalent to `columns: 7;`. Element's content is broken into 7 columns.
6702
+ /// @name .k-columns-7
6703
+ /// @group columns
6704
+ /// @contextType css
6705
+
6706
+ /// This is equivalent to `columns: 8;`. Element's content is broken into 8 columns.
6707
+ /// @name .k-columns-8
6708
+ /// @group columns
6709
+ /// @contextType css
6710
+
6711
+ /// This is equivalent to `columns: 9;`. Element's content is broken into 9 columns.
6712
+ /// @name .k-columns-9
6713
+ /// @group columns
6714
+ /// @contextType css
6715
+
6716
+ /// This is equivalent to `columns: 10;`. Element's content is broken into 10 columns.
6717
+ /// @name .k-columns-10
6718
+ /// @group columns
6719
+ /// @contextType css
6720
+
6721
+ /// This is equivalent to `columns: 11;`. Element's content is broken into 11 columns.
6722
+ /// @name .k-columns-11
6723
+ /// @group columns
6724
+ /// @contextType css
6725
+
6726
+ /// This is equivalent to `columns: 12;`. Element's content is broken into 12 columns.
6727
+ /// @name .k-columns-12
6728
+ /// @group columns
6729
+ /// @contextType css
6730
+
6731
+ /// This is equivalent to `columns: auto;`.The number of columns is determined by other CSS properties, such as column-width.
6732
+ /// @name .k-columns-auto
6733
+ /// @group columns
6734
+ /// @contextType css
6735
+
6736
+ @mixin kendo-utils--layout--columns() {
6737
+
6738
+ // columns utility classes
6739
+ $kendo-utils-columns: k-map-get( $kendo-utils, "columns" ) !default;
6740
+ @include generate-utils( columns, columns, $kendo-utils-columns );
6741
+
6742
+ }
6743
+
6475
6744
  // #endregion
6476
6745
  // #region @import "./_display.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_display.scss
6477
6746
  /// 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.
@@ -6529,6 +6798,8 @@ $kendo-utils: (
6529
6798
  /// @group display
6530
6799
  /// @contextType css
6531
6800
 
6801
+ // TODO tables' parts
6802
+
6532
6803
  @mixin kendo-utils--layout--display() {
6533
6804
 
6534
6805
  // Display utility classes
@@ -6572,6 +6843,30 @@ $kendo-utils: (
6572
6843
 
6573
6844
  }
6574
6845
 
6846
+ // #endregion
6847
+ // #region @import "./_object-fit.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-fit.scss
6848
+ // TODO: docs
6849
+
6850
+ @mixin kendo-utils--layout--object-fit() {
6851
+
6852
+ // object-fit utility classes
6853
+ $kendo-utils-object-fit: k-map-get( $kendo-utils, "object-fit" ) !default;
6854
+ @include generate-utils( object-fit, object-fit, $kendo-utils-object-fit );
6855
+
6856
+ }
6857
+
6858
+ // #endregion
6859
+ // #region @import "./_object-position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-position.scss
6860
+ // TODO: docs
6861
+
6862
+ @mixin kendo-utils--layout--object-position() {
6863
+
6864
+ // object-position utility classes
6865
+ $kendo-utils-object-position: k-map-get( $kendo-utils, "object-position" ) !default;
6866
+ @include generate-utils( object-position, object-position, $kendo-utils-object-position );
6867
+
6868
+ }
6869
+
6575
6870
  // #endregion
6576
6871
  // #region @import "./_overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_overflow.scss
6577
6872
  /// 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.
@@ -6654,38 +6949,14 @@ $kendo-utils: (
6654
6949
  // Overflow utility classes
6655
6950
  $kendo-utils-overflow: k-map-get( $kendo-utils, "overflow" ) !default;
6656
6951
  @include generate-utils( overflow, overflow, $kendo-utils-overflow );
6657
-
6952
+ @include generate-utils( overflow-x, overflow-x, $kendo-utils-overflow );
6953
+ @include generate-utils( overflow-y, overflow-y, $kendo-utils-overflow );
6658
6954
  }
6659
6955
 
6660
6956
  // #endregion
6661
- // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
6957
+ // #region @import "./_placement.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_placement.scss
6662
6958
  // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
6663
6959
 
6664
- /// 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.
6665
- /// @name .k-pos-static
6666
- /// @group position
6667
- /// @contextType css
6668
-
6669
- /// 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.
6670
- /// @name .k-pos-relative
6671
- /// @group position
6672
- /// @contextType css
6673
-
6674
- /// 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.
6675
- /// @name .k-pos-absolute
6676
- /// @group position
6677
- /// @contextType css
6678
-
6679
- /// 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.
6680
- /// @name .k-pos-fixed
6681
- /// @group position
6682
- /// @contextType css
6683
-
6684
- /// 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.
6685
- /// @name .k-pos-sticky
6686
- /// @group position
6687
- /// @contextType css
6688
-
6689
6960
 
6690
6961
  // TODO: inset docs
6691
6962
 
@@ -6710,35 +6981,26 @@ $kendo-utils: (
6710
6981
  /// @group position
6711
6982
  /// @contextType css
6712
6983
 
6713
- @mixin kendo-utils--layout--position() {
6714
-
6715
- // Position utility classes
6716
- $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
6717
- @include generate-utils( pos, position, $kendo-utils-position );
6984
+ @mixin kendo-utils--layout--placement() {
6985
+ // Top / right / bottom / left
6986
+ $kendo-utils-placement: k-map-get( $kendo-utils, "placement" ) !default;
6987
+ @include generate-utils( top, top, $kendo-utils-placement );
6988
+ @include generate-utils( right, right, $kendo-utils-placement );
6989
+ @include generate-utils( bottom, bottom, $kendo-utils-placement );
6990
+ @include generate-utils( left, left, $kendo-utils-placement );
6718
6991
 
6719
6992
 
6720
- // Legacy aliases
6721
- .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
6722
- .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
6723
- .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
6724
- .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
6725
- .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
6726
- .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
6727
- .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
6728
- .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
6729
- .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
6730
- .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
6731
-
6993
+ // Position length utility classes
6994
+ @each $side in (top, right, bottom, left) {
6995
+ .#{$kendo-prefix}#{$side},
6996
+ .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
6997
+ }
6732
6998
 
6733
6999
  // Inset utility classes
6734
7000
  $kendo-utils-inset: k-map-get( $kendo-utils, "inset" ) !default;
6735
7001
  @include generate-utils( inset, inset, $kendo-utils-inset );
6736
7002
  @include generate-utils( inset-x, inset-inline, $kendo-utils-inset );
6737
7003
  @include generate-utils( inset-y, inset-block, $kendo-utils-inset );
6738
- @include generate-utils( top, top, $kendo-utils-inset );
6739
- @include generate-utils( right, right, $kendo-utils-inset );
6740
- @include generate-utils( bottom, bottom, $kendo-utils-inset );
6741
- @include generate-utils( left, left, $kendo-utils-inset );
6742
7004
  @include generate-utils( top-left, ( top, left ), $kendo-utils-inset );
6743
7005
  @include generate-utils( top-right, ( top, right ), $kendo-utils-inset );
6744
7006
  @include generate-utils( bottom-left, ( bottom, left ), $kendo-utils-inset );
@@ -6802,12 +7064,55 @@ $kendo-utils: (
6802
7064
  transform: translateX(-50%);
6803
7065
  }
6804
7066
 
7067
+ }
6805
7068
 
6806
- // Position length utility classes
6807
- @each $side in (top, right, bottom, left) {
6808
- .#{$kendo-prefix}#{$side},
6809
- .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
6810
- }
7069
+ // #endregion
7070
+ // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
7071
+ // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
7072
+
7073
+ /// 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.
7074
+ /// @name .k-pos-static
7075
+ /// @group position
7076
+ /// @contextType css
7077
+
7078
+ /// 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.
7079
+ /// @name .k-pos-relative
7080
+ /// @group position
7081
+ /// @contextType css
7082
+
7083
+ /// 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.
7084
+ /// @name .k-pos-absolute
7085
+ /// @group position
7086
+ /// @contextType css
7087
+
7088
+ /// 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.
7089
+ /// @name .k-pos-fixed
7090
+ /// @group position
7091
+ /// @contextType css
7092
+
7093
+ /// 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.
7094
+ /// @name .k-pos-sticky
7095
+ /// @group position
7096
+ /// @contextType css
7097
+
7098
+ @mixin kendo-utils--layout--position() {
7099
+
7100
+ // Position utility classes
7101
+ $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
7102
+ @include generate-utils( pos, position, $kendo-utils-position );
7103
+
7104
+
7105
+ // Legacy aliases
7106
+ .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
7107
+ .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
7108
+ .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
7109
+ .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
7110
+ .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
7111
+ .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
7112
+ .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
7113
+ .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
7114
+ .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
7115
+ .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
6811
7116
 
6812
7117
  }
6813
7118
 
@@ -6847,10 +7152,15 @@ $kendo-utils: (
6847
7152
 
6848
7153
  @mixin kendo-utils--layout() {
6849
7154
  @include kendo-utils--layout--aspect-ratio();
7155
+ @include kendo-utils--layout--box-sizing();
6850
7156
  @include kendo-utils--layout--clear();
7157
+ @include kendo-utils--layout--columns();
6851
7158
  @include kendo-utils--layout--display();
6852
7159
  @include kendo-utils--layout--float();
7160
+ @include kendo-utils--layout--object-fit();
7161
+ @include kendo-utils--layout--object-position();
6853
7162
  @include kendo-utils--layout--overflow();
7163
+ @include kendo-utils--layout--placement();
6854
7164
  @include kendo-utils--layout--position();
6855
7165
  @include kendo-utils--layout--visibility();
6856
7166
  @include kendo-utils--layout--zindex();
@@ -7474,7 +7784,18 @@ $kendo-utils: (
7474
7784
  // font variant
7475
7785
  // letter spacing
7476
7786
  // line height
7477
- // list style
7787
+ // #region @import "./_list-style.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_list-style.scss
7788
+ // TODO: docs
7789
+
7790
+ @mixin kendo-utils--typography--list-style-type() {
7791
+
7792
+ // list-style-type utility classes
7793
+ $kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
7794
+ @include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
7795
+
7796
+ }
7797
+
7798
+ // #endregion
7478
7799
  // #region @import "./_text-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-align.scss
7479
7800
  // Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
7480
7801
 
@@ -7524,7 +7845,18 @@ $kendo-utils: (
7524
7845
  }
7525
7846
 
7526
7847
  // #endregion
7527
- // text decoration
7848
+ // #region @import "./_text-decoration.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
7849
+ // TODO: docs
7850
+
7851
+ @mixin kendo-utils--typography--text-decoration() {
7852
+
7853
+ // text-decoration utility classes
7854
+ $kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
7855
+ @include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
7856
+
7857
+ }
7858
+
7859
+ // #endregion
7528
7860
  // #region @import "./_text-overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-overflow.scss
7529
7861
  @mixin kendo-utils--typography--text-overflow() {
7530
7862
 
@@ -7580,7 +7912,18 @@ $kendo-utils: (
7580
7912
 
7581
7913
  // #endregion
7582
7914
  // text indent
7583
- // vertical align
7915
+ // #region @import "./_vertical-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_vertical-align.scss
7916
+ // TODO: docs
7917
+
7918
+ @mixin kendo-utils--typography--vertical-align() {
7919
+
7920
+ // vertical-align utility classes
7921
+ $kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
7922
+ @include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
7923
+
7924
+ }
7925
+
7926
+ // #endregion
7584
7927
  // #region @import "./_white-space.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_white-space.scss
7585
7928
  // White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
7586
7929
 
@@ -7635,15 +7978,30 @@ $kendo-utils: (
7635
7978
  @include kendo-utils--typography--font-size();
7636
7979
  @include kendo-utils--typography--font-style();
7637
7980
  @include kendo-utils--typography--font-weight();
7981
+ @include kendo-utils--typography--list-style-type();
7638
7982
  @include kendo-utils--typography--text-align();
7639
7983
  @include kendo-utils--typography--text-color();
7984
+ @include kendo-utils--typography--text-decoration();
7640
7985
  @include kendo-utils--typography--text-overflow();
7641
7986
  @include kendo-utils--typography--text-transform();
7987
+ @include kendo-utils--typography--vertical-align();
7642
7988
  @include kendo-utils--typography--white-space();
7643
7989
  }
7644
7990
 
7645
7991
  // #endregion
7646
7992
  // #region @import "./background/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/index.import.scss
7993
+ // #region @import "./_background-clip.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-clip.scss
7994
+ // TODO: docs
7995
+
7996
+ @mixin kendo-utils--background--background-clip() {
7997
+
7998
+ // Background color utility classes
7999
+ $kendo-utils-background-clip: k-map-get( $kendo-utils, "background-clip" ) !default;
8000
+ @include generate-utils( bg-clip, background-clip, $kendo-utils-background-clip );
8001
+
8002
+ }
8003
+
8004
+ // #endregion
7647
8005
  // #region @import "./_background-color.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-color.scss
7648
8006
  // TODO: docs
7649
8007
 
@@ -7659,6 +8017,7 @@ $kendo-utils: (
7659
8017
 
7660
8018
 
7661
8019
  @mixin kendo-utils--background() {
8020
+ @include kendo-utils--background--background-clip();
7662
8021
  @include kendo-utils--background--background-color();
7663
8022
  }
7664
8023
 
@@ -7807,8 +8166,46 @@ $kendo-utils: (
7807
8166
  }
7808
8167
 
7809
8168
  // #endregion
7810
- // effects
7811
- // filter
8169
+ // #region @import "./effects/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/index.import.scss
8170
+ // box shadow
8171
+ // box shadow color
8172
+ // #region @import "./_opacity.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/_opacity.scss
8173
+ // TODO: docs
8174
+
8175
+ @mixin kendo-utils--effects--opacity() {
8176
+
8177
+ // opacity utility classes
8178
+ $kendo-utils-opacity: k-map-get( $kendo-utils, "opacity" ) !default;
8179
+ @include generate-utils( opacity, opacity, $kendo-utils-opacity );
8180
+
8181
+ }
8182
+
8183
+ // #endregion
8184
+
8185
+ @mixin kendo-utils--effects() {
8186
+ @include kendo-utils--effects--opacity();
8187
+ }
8188
+
8189
+ // #endregion
8190
+ // #region @import "./filter/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/index.import.scss
8191
+ // #region @import "./_backdrop.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/_backdrop.scss
8192
+ // TODO: docs
8193
+
8194
+ @mixin kendo-utils--filter--backdrop() {
8195
+
8196
+ // backdrop utility classes
8197
+ $kendo-utils-backdrop-blur: k-map-get( $kendo-utils, "backdrop-blur" ) !default;
8198
+ @include generate-utils( backdrop-blur, backdrop-filter, $kendo-utils-backdrop-blur );
8199
+
8200
+ }
8201
+
8202
+ // #endregion
8203
+
8204
+ @mixin kendo-utils--filter() {
8205
+ @include kendo-utils--filter--backdrop();
8206
+ }
8207
+
8208
+ // #endregion
7812
8209
  // #region @import "./table/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/index.import.scss
7813
8210
  // #region @import "./_border-collapse.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/_border-collapse.scss
7814
8211
  // TODO: docs
@@ -8361,6 +8758,38 @@ $kendo-utils: (
8361
8758
  @include kendo-utils--interactivity--will-change();
8362
8759
  }
8363
8760
 
8761
+ // #endregion
8762
+ // #region @import "./svg/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/index.import.scss
8763
+ // #region @import "./_fill.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_fill.scss
8764
+ // TODO: docs
8765
+
8766
+ @mixin kendo-utils--svg--fill() {
8767
+
8768
+ // fill utility classes
8769
+ $kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
8770
+ @include generate-utils( fill, fill, $kendo-utils-fill );
8771
+
8772
+ }
8773
+
8774
+ // #endregion
8775
+ // #region @import "./_stroke.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_stroke.scss
8776
+ // TODO: docs
8777
+
8778
+ @mixin kendo-utils--svg--stroke() {
8779
+
8780
+ // stroke utility classes
8781
+ $kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
8782
+ @include generate-utils( stroke, stroke, $kendo-utils-stroke );
8783
+
8784
+ }
8785
+
8786
+ // #endregion
8787
+
8788
+ @mixin kendo-utils--svg() {
8789
+ @include kendo-utils--svg--fill();
8790
+ @include kendo-utils--svg--stroke();
8791
+ }
8792
+
8364
8793
  // #endregion
8365
8794
 
8366
8795
 
@@ -8374,9 +8803,12 @@ $kendo-utils: (
8374
8803
  @include kendo-utils--typography();
8375
8804
  @include kendo-utils--background();
8376
8805
  @include kendo-utils--border();
8806
+ @include kendo-utils--effects();
8807
+ @include kendo-utils--filter();
8377
8808
  @include kendo-utils--table();
8378
8809
  @include kendo-utils--transform();
8379
8810
  @include kendo-utils--interactivity();
8811
+ @include kendo-utils--svg();
8380
8812
  }
8381
8813
 
8382
8814
  // #endregion
@@ -10389,122 +10821,123 @@ $_kendo-module-meta: (
10389
10821
  // #region @import "../list/_variables.scss"; -> scss/list/_variables.scss
10390
10822
  // List
10391
10823
 
10392
- /// Font size of the list component, if no size is set.
10824
+ /// The font size of the List component, if no size is set.
10393
10825
  /// @group list
10394
10826
  $kendo-list-font-size: null !default;
10395
10827
  $kendo-list-sm-font-size: $kendo-font-size-md !default;
10396
10828
  $kendo-list-md-font-size: $kendo-font-size-md !default;
10397
10829
  $kendo-list-lg-font-size: $kendo-font-size-lg !default;
10398
10830
 
10399
- /// Line height of the list component, if no size is set.
10831
+ /// The line height of the List component, if no size is set.
10400
10832
  /// @group list
10401
10833
  $kendo-list-line-height: null !default;
10402
10834
  $kendo-list-sm-line-height: $kendo-line-height-md !default;
10403
10835
  $kendo-list-md-line-height: $kendo-line-height-md !default;
10404
10836
  $kendo-list-lg-line-height: $kendo-line-height-lg !default;
10405
10837
 
10406
- /// Horizontal padding of list header, if no size is set.
10838
+ /// The horizontal padding of the List header, if no size is set.
10407
10839
  /// @group list
10408
10840
  $kendo-list-header-padding-x: null !default;
10409
10841
  $kendo-list-sm-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10410
10842
  $kendo-list-md-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10411
10843
  $kendo-list-lg-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10412
10844
 
10413
- /// Vertical padding of list header, if no size is set.
10845
+ /// The vertical padding of the List header, if no size is set.
10414
10846
  /// @group list
10415
10847
  $kendo-list-header-padding-y: null !default;
10416
10848
  $kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
10417
10849
  $kendo-list-md-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
10418
10850
  $kendo-list-lg-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
10419
10851
 
10420
- /// Border width of list header.
10852
+ /// The border width of the List header.
10421
10853
  /// @group list
10422
10854
  $kendo-list-header-border-width: 0 0 1px !default;
10423
10855
 
10424
- /// Font size of list header, if no size is set.
10856
+ /// The font size of the List header, if no size is set.
10425
10857
  /// @group list
10426
10858
  $kendo-list-header-font-size: null !default;
10427
10859
  $kendo-list-sm-header-font-size: null !default;
10428
10860
  $kendo-list-md-header-font-size: null !default;
10429
10861
  $kendo-list-lg-header-font-size: null !default;
10430
10862
 
10431
- /// Line height of list header, if no size is set.
10863
+ /// The line height of the List header, if no size is set.
10432
10864
  /// @group list
10433
10865
  $kendo-list-header-line-height: null !default;
10434
10866
  $kendo-list-sm-header-line-height: null !default;
10435
10867
  $kendo-list-md-header-line-height: null !default;
10436
10868
  $kendo-list-lg-header-line-height: null !default;
10437
10869
 
10438
- /// Font weight of list header.
10870
+ /// The font weight of the List header.
10439
10871
  /// @group list
10440
10872
  $kendo-list-header-font-weight: null !default;
10441
10873
 
10442
- /// Horizontal padding of list items, when no size is set.
10874
+ /// The horizontal padding of the List items, when no size is set.
10443
10875
  /// @group list
10444
10876
  $kendo-list-item-padding-x: null !default;
10445
10877
  $kendo-list-sm-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10446
10878
  $kendo-list-md-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10447
10879
  $kendo-list-lg-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10448
10880
 
10449
- /// Vertical padding of list items, when no size is set.
10881
+ /// The vertical padding of the List items, when no size is set.
10450
10882
  /// @group list
10451
10883
  $kendo-list-item-padding-y: null !default;
10452
10884
  $kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
10453
10885
  $kendo-list-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
10454
10886
  $kendo-list-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
10455
10887
 
10456
- /// Font size of list items, if no size is set.
10888
+ /// The font size of the List items, if no size is set.
10457
10889
  /// @group list
10458
10890
  $kendo-list-item-font-size: null !default;
10459
10891
  $kendo-list-sm-item-font-size: null !default;
10460
10892
  $kendo-list-md-item-font-size: null !default;
10461
10893
  $kendo-list-lg-item-font-size: null !default;
10462
10894
 
10463
- /// Line height of list items, if no size is set.
10895
+ /// The line height of the List items, if no size is set.
10464
10896
  /// @group list
10465
10897
  $kendo-list-item-line-height: null !default;
10466
10898
  $kendo-list-sm-item-line-height: null !default;
10467
10899
  $kendo-list-md-item-line-height: null !default;
10468
10900
  $kendo-list-lg-item-line-height: null !default;
10469
10901
 
10470
- /// Horizontal padding of list group items, when no size is set.
10902
+ /// The horizontal padding of the List group items, when no size is set.
10471
10903
  /// @group list
10472
10904
  $kendo-list-group-item-padding-x: null !default;
10473
10905
  $kendo-list-sm-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10474
10906
  $kendo-list-md-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10475
10907
  $kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
10476
10908
 
10477
- /// Vertical padding of list group items, when no size is set.
10909
+ /// The vertical padding of the List group items, when no size is set.
10478
10910
  /// @group list
10479
10911
  $kendo-list-group-item-padding-y: null !default;
10480
10912
  $kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
10481
10913
  $kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
10482
10914
  $kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
10483
10915
 
10484
- /// Border width of list group items.
10916
+ /// The border width of the List group items.
10485
10917
  /// @group list
10486
10918
  $kendo-list-group-item-border-width: 1px 0 0 !default;
10487
10919
 
10488
- /// Font size of list group items, if no size is set.
10920
+ /// The font size of the List group items, if no size is set.
10489
10921
  /// @group list
10490
10922
  $kendo-list-group-item-font-size: null !default;
10491
10923
  $kendo-list-sm-group-item-font-size: null !default;
10492
10924
  $kendo-list-md-group-item-font-size: null !default;
10493
10925
  $kendo-list-lg-group-item-font-size: null !default;
10494
10926
 
10495
- /// Line height of list group items, if no size is set.
10927
+ /// The line height of the List group items, if no size is set.
10496
10928
  /// @group list
10497
10929
  $kendo-list-group-item-line-height: null !default;
10498
10930
  $kendo-list-sm-group-item-line-height: null !default;
10499
10931
  $kendo-list-md-group-item-line-height: null !default;
10500
10932
  $kendo-list-lg-group-item-line-height: null !default;
10501
10933
 
10502
- /// Font weight of list group item.
10934
+ /// The font weight of a List group item.
10503
10935
  /// @group list
10504
10936
  $kendo-list-group-item-font-weight: null !default;
10505
10937
 
10506
10938
 
10507
- // Kendo list sizes
10939
+ /// The map with the sizes of the List.
10940
+ /// @group list
10508
10941
  $kendo-list-sizes: (
10509
10942
  sm: (
10510
10943
  font-size: $kendo-list-sm-font-size,
@@ -10557,119 +10990,119 @@ $kendo-list-sizes: (
10557
10990
  ) !default;
10558
10991
 
10559
10992
 
10560
- /// Background color of the list component.
10993
+ /// The background color of the List component.
10561
10994
  /// @group list
10562
10995
  $kendo-list-bg: $kendo-component-bg !default;
10563
- /// Text color of the list component.
10996
+ /// The text color of the List component.
10564
10997
  /// @group list
10565
10998
  $kendo-list-text: $kendo-component-text !default;
10566
- /// Border color of the list component.
10999
+ /// The border color of the List component.
10567
11000
  /// @group list
10568
11001
  $kendo-list-border: $kendo-component-border !default;
10569
11002
 
10570
11003
 
10571
- /// Background color of list header.
11004
+ /// The background color of the List header.
10572
11005
  /// @group list
10573
11006
  $kendo-list-header-bg: null !default;
10574
- /// Text color of list header.
11007
+ /// The text color of the List header.
10575
11008
  /// @group list
10576
11009
  $kendo-list-header-text: null !default;
10577
- /// Border color of list header.
11010
+ /// The border color of the List header.
10578
11011
  /// @group list
10579
11012
  $kendo-list-header-border: inherit !default;
10580
- /// Box shadow of list header.
11013
+ /// The box shadow of the List header.
10581
11014
  /// @group list
10582
11015
  $kendo-list-header-shadow: 0 5px 10px 0 rgba(0, 0, 0, .06) !default;
10583
11016
 
10584
11017
 
10585
- /// Background color of list items.
11018
+ /// The background color of the List items.
10586
11019
  /// @group list
10587
11020
  $kendo-list-item-bg: null !default;
10588
- /// Text color of list items.
11021
+ /// The text color of the List items.
10589
11022
  /// @group list
10590
11023
  $kendo-list-item-text: null !default;
10591
11024
 
10592
- /// Background color of hovered list items.
11025
+ /// The background color of the hovered List items.
10593
11026
  /// @group list
10594
11027
  $kendo-list-item-hover-bg: $kendo-hover-bg !default;
10595
- /// Text color of hovered list items.
11028
+ /// The text color of the hovered List items.
10596
11029
  /// @group list
10597
11030
  $kendo-list-item-hover-text: $kendo-hover-text !default;
10598
11031
 
10599
- /// Background color of focused list items.
11032
+ /// The background color of the focused List items.
10600
11033
  /// @group list
10601
11034
  $kendo-list-item-focus-bg: null !default;
10602
- /// Text color of focused list items.
11035
+ /// The text color of the focused List items.
10603
11036
  /// @group list
10604
11037
  $kendo-list-item-focus-text: null !default;
10605
- /// Box shadow of focused list items.
11038
+ /// The box shadow of the focused List items.
10606
11039
  /// @group list
10607
11040
  $kendo-list-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .12) !default;
10608
11041
 
10609
- /// Background color of selected list items.
11042
+ /// The background color of the selected List items.
10610
11043
  /// @group list
10611
11044
  $kendo-list-item-selected-bg: $kendo-selected-bg !default;
10612
- /// Text color of selected list items.
11045
+ /// The text color of the selected List items.
10613
11046
  /// @group list
10614
11047
  $kendo-list-item-selected-text: $kendo-selected-text !default;
10615
11048
 
10616
- /// Background color of list group items.
11049
+ /// The background color of the List group items.
10617
11050
  /// @group list
10618
11051
  $kendo-list-group-item-bg: null !default;
10619
- /// Text color of list group items.
11052
+ /// The text color of the List group items.
10620
11053
  /// @group list
10621
11054
  $kendo-list-group-item-text: null !default;
10622
- /// The border color of list group items.
11055
+ /// The border color of the List group items.
10623
11056
  /// @group list
10624
11057
  $kendo-list-group-item-border: inherit !default;
10625
- /// The base shadow of list group items.
11058
+ /// The base shadow of the List group items.
10626
11059
  /// @group list
10627
11060
  $kendo-list-group-item-shadow: null !default;
10628
11061
 
10629
- /// Text color of the 'No Data' text.
11062
+ /// The color of the 'No Data' text.
10630
11063
  /// @group list
10631
11064
  $kendo-list-no-data-text: $kendo-subtle-text !default;
10632
11065
 
10633
11066
  // #endregion
10634
11067
 
10635
11068
 
10636
- // Checkbox
11069
+ // CheckBox
10637
11070
 
10638
- /// Border width of checkbox.
11071
+ /// The border width of the CheckBox.
10639
11072
  /// @group checkbox
10640
11073
  $kendo-checkbox-border-width: 1px !default;
10641
11074
 
10642
- /// Size of a small checkbox.
11075
+ /// The size of a small CheckBox.
10643
11076
  /// @group checkbox
10644
11077
  $kendo-checkbox-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
10645
- /// Size of a medium checkbox.
11078
+ /// The size of a medium CheckBox.
10646
11079
  /// @group checkbox
10647
11080
  $kendo-checkbox-md-size: k-map-get( $kendo-spacing, 4 ) !default;
10648
- /// Size of a large checkbox.
11081
+ /// The size of a large CheckBox.
10649
11082
  /// @group checkbox
10650
11083
  $kendo-checkbox-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
10651
11084
 
10652
- /// Glyph size of a small checkbox.
11085
+ /// The glyph size of a small CheckBox.
10653
11086
  /// @group checkbox
10654
11087
  $kendo-checkbox-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
10655
- /// Glyph size of a medium checkbox.
11088
+ /// The glyph size of a medium CheckBox.
10656
11089
  /// @group checkbox
10657
11090
  $kendo-checkbox-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
10658
- /// Glyph size of a large checkbox.
11091
+ /// The glyph size of a large CheckBox.
10659
11092
  /// @group checkbox
10660
11093
  $kendo-checkbox-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
10661
11094
 
10662
- /// Ripple size of a small checkbox.
11095
+ /// The ripple size of a small CheckBox.
10663
11096
  /// @group checkbox
10664
11097
  $kendo-checkbox-sm-ripple-size: 300% !default;
10665
- /// Ripple size of a medium checkbox.
11098
+ /// The ripple size of a medium CheckBox.
10666
11099
  /// @group checkbox
10667
11100
  $kendo-checkbox-md-ripple-size: 300% !default;
10668
- /// Ripple size of a large checkbox.
11101
+ /// The ripple size of a large CheckBox.
10669
11102
  /// @group checkbox
10670
11103
  $kendo-checkbox-lg-ripple-size: 300% !default;
10671
11104
 
10672
- // Map with the different checkbox sizes
11105
+ // A map with the different CheckBox sizes.
10673
11106
  $kendo-checkbox-sizes: (
10674
11107
  sm: (
10675
11108
  size: $kendo-checkbox-sm-size,
@@ -10688,140 +11121,140 @@ $kendo-checkbox-sizes: (
10688
11121
  )
10689
11122
  ) !default;
10690
11123
 
10691
- /// Background color of checkbox.
11124
+ /// The background color of the CheckBox.
10692
11125
  /// @group checkbox
10693
11126
  $kendo-checkbox-bg: $kendo-component-bg !default;
10694
- /// Color of checkbox.
11127
+ /// The text color of the CheckBox.
10695
11128
  /// @group checkbox
10696
11129
  $kendo-checkbox-text: null !default;
10697
- /// Border color of checkbox.
11130
+ /// The border color of the CheckBox.
10698
11131
  /// @group checkbox
10699
11132
  $kendo-checkbox-border: $kendo-component-border !default;
10700
11133
 
10701
- /// Background color of hovered checkbox.
11134
+ /// The background color of the hovered CheckBox.
10702
11135
  /// @group checkbox
10703
11136
  $kendo-checkbox-hover-bg: null !default;
10704
- /// Color of hovered checkbox.
11137
+ /// The text color of the hovered CheckBox.
10705
11138
  /// @group checkbox
10706
11139
  $kendo-checkbox-hover-text: null !default;
10707
- /// Border color of hovered checkbox.
11140
+ /// The border color of the hovered CheckBox.
10708
11141
  /// @group checkbox
10709
11142
  $kendo-checkbox-hover-border: null !default;
10710
11143
 
10711
- /// Background color of checked checkbox.
11144
+ /// The background color of the checked CheckBox.
10712
11145
  /// @group checkbox
10713
11146
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
10714
- /// Color of checked checkbox.
11147
+ /// The text color of the checked CheckBox.
10715
11148
  /// @group checkbox
10716
11149
  $kendo-checkbox-checked-text: k-contrast-legacy( $kendo-checkbox-checked-bg ) !default;
10717
- /// Border color of checked checkbox.
11150
+ /// The border color of the checked CheckBox.
10718
11151
  /// @group checkbox
10719
11152
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
10720
11153
 
10721
- /// Background color of indeterminate checkbox.
11154
+ /// The background color of the indeterminate CheckBox.
10722
11155
  /// @group checkbox
10723
11156
  $kendo-checkbox-indeterminate-bg: $kendo-checkbox-bg !default;
10724
- /// Color of indeterminate checkbox.
11157
+ /// The text color of the indeterminate CheckBox.
10725
11158
  /// @group checkbox
10726
11159
  $kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-bg !default;
10727
- /// Border color of indeterminate checkbox.
11160
+ /// The border color of the indeterminate CheckBox.
10728
11161
  /// @group checkbox
10729
11162
  $kendo-checkbox-indeterminate-border: $kendo-checkbox-border !default;
10730
11163
 
10731
- /// Border color of focused checkbox.
11164
+ /// The border color of the focused CheckBox.
10732
11165
  /// @group checkbox
10733
11166
  $kendo-checkbox-focus-border: null !default;
10734
- /// Box shadow of focused checkbox.
11167
+ /// The box shadow of the focused CheckBox.
10735
11168
  /// @group checkbox
10736
11169
  $kendo-checkbox-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .06) !default;
10737
- /// Border color of focused and checked checkbox.
11170
+ /// The border color of the focused and checked CheckBox.
10738
11171
  /// @group checkbox
10739
11172
  $kendo-checkbox-focus-checked-border: null !default;
10740
- /// Box shadow of focused and checked checkbox.
11173
+ /// The box shadow of the focused and checked CheckBox.
10741
11174
  /// @group checkbox
10742
11175
  $kendo-checkbox-focus-checked-shadow: 0 0 0 2px rgba( $kendo-color-primary, .3 ) !default;
10743
11176
 
10744
- /// Background color of disabled checkbox.
11177
+ /// The background color of the disabled CheckBox.
10745
11178
  /// @group checkbox
10746
11179
  $kendo-checkbox-disabled-bg: null !default;
10747
- /// Color of disabled checkbox.
11180
+ /// The text color of the disabled CheckBox.
10748
11181
  /// @group checkbox
10749
11182
  $kendo-checkbox-disabled-text: null !default;
10750
- /// Border color of disabled checkbox.
11183
+ /// The border color of the disabled CheckBox.
10751
11184
  /// @group checkbox
10752
11185
  $kendo-checkbox-disabled-border: null !default;
10753
11186
 
10754
- /// Background color of disabled and checked checkbox.
11187
+ /// The background color of the disabled and checked CheckBox.
10755
11188
  /// @group checkbox
10756
11189
  $kendo-checkbox-disabled-checked-bg: null !default;
10757
- /// Color of disabled and checked checkbox.
11190
+ /// The text color of the disabled and checked CheckBox.
10758
11191
  /// @group checkbox
10759
11192
  $kendo-checkbox-disabled-checked-text: null !default;
10760
- /// Border color of disabled and checked checkbox.
11193
+ /// The border color of the disabled and checked CheckBox.
10761
11194
  /// @group checkbox
10762
11195
  $kendo-checkbox-disabled-checked-border: null !default;
10763
11196
 
10764
- /// Background color of invalid checkbox.
11197
+ /// The background color of an invalid CheckBox.
10765
11198
  /// @group checkbox
10766
11199
  $kendo-checkbox-invalid-bg: null !default;
10767
- /// Color of invalid checkbox.
11200
+ /// The text color of an invalid CheckBox.
10768
11201
  /// @group checkbox
10769
11202
  $kendo-checkbox-invalid-text: $kendo-invalid-text !default;
10770
- /// Border color of invalid checkbox.
11203
+ /// The border color of an invalid CheckBox.
10771
11204
  /// @group checkbox
10772
11205
  $kendo-checkbox-invalid-border: $kendo-invalid-border !default;
10773
11206
 
10774
11207
 
10775
- // Checkbox indicator
11208
+ // CheckBox indicator
10776
11209
 
10777
- /// Type of checkbox indicator.
11210
+ /// The type of the CheckBox indicator.
10778
11211
  /// @group checkbox
10779
11212
  $kendo-checkbox-indicator-type: image !default;
10780
11213
 
10781
- /// Glyph font family of checkbox indicator.
11214
+ /// The font family of the CheckBox indicator glyph.
10782
11215
  /// @group checkbox
10783
11216
  $kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
10784
- /// Glyph of checkbox indicator.
11217
+ /// The glyph of the CheckBox indicator.
10785
11218
  /// @group checkbox
10786
11219
  $kendo-checkbox-checked-glyph: "\e118" !default;
10787
- /// Glyph of indeterminate checkbox indicator.
11220
+ /// The glyph of the indeterminate CheckBox indicator.
10788
11221
  /// @group checkbox
10789
11222
  $kendo-checkbox-indeterminate-glyph: "\e121" !default;
10790
11223
 
10791
- /// Image of checked checkbox indicator.
11224
+ /// The image for a checked CheckBox indicator.
10792
11225
  /// @group checkbox
10793
11226
  $kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3,8 l3,3 l7-7'/></svg>") ) !default;
10794
- /// Image image of checked checkbox indicator.
11227
+ /// The image for a indeterminate CheckBox indicator.
10795
11228
  /// @group checkbox
10796
11229
  $kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4,8 h8'/></svg>") ) !default;
10797
11230
 
10798
11231
 
10799
- // Checkbox label
11232
+ // CheckBox label
10800
11233
 
10801
- /// The horizontal margin of the checkbox inside a label.
11234
+ /// The horizontal margin of the CheckBox inside a label.
10802
11235
  /// @group checkbox
10803
11236
  $kendo-checkbox-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
10804
11237
 
10805
11238
 
10806
- // Checkbox list
11239
+ // CheckBox list
10807
11240
 
10808
- /// Spacing between items of horizontal checkbox list.
11241
+ /// The spacing between the items in a horizontal CheckBox list.
10809
11242
  /// @group checkbox
10810
11243
  $kendo-checkbox-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
10811
- /// Horizontal padding of checkbox list items.
11244
+ /// The horizontal padding of the CheckBox list items.
10812
11245
  /// @group checkbox
10813
11246
  $kendo-checkbox-list-item-padding-x: 0px !default;
10814
- /// Vertical padding of checkbox list items.
11247
+ /// The vertical padding of the CheckBox list items.
10815
11248
  /// @group checkbox
10816
11249
  $kendo-checkbox-list-item-padding-y: $kendo-list-md-item-padding-y !default;
10817
11250
 
10818
11251
 
10819
- // Checkbox ripple
11252
+ // CheckBox ripple
10820
11253
 
10821
- /// Background color of checkbox ripple.
11254
+ /// The background color of the CheckBox' ripple.
10822
11255
  /// @group checkbox
10823
11256
  $kendo-checkbox-ripple-bg: $kendo-checkbox-checked-bg !default;
10824
- /// Opacity of checkbox ripple.
11257
+ /// The opacity of the CheckBox' ripple.
10825
11258
  /// @group checkbox
10826
11259
  $kendo-checkbox-ripple-opacity: .25 !default;
10827
11260
 
@@ -13180,83 +13613,86 @@ $_kendo-module-meta: (
13180
13613
  // #region @import "../button/_variables.scss"; -> scss/button/_variables.scss
13181
13614
  // Button
13182
13615
 
13183
- /// Width of the border around the button.
13616
+ /// The width of the border around the Button.
13184
13617
  /// @group button
13185
13618
  $kendo-button-border-width: 1px !default;
13186
13619
 
13187
- /// Border radius of the button.
13620
+ /// The border radius of the Button.
13188
13621
  /// @group button
13189
13622
  $kendo-button-border-radius: null !default;
13190
13623
 
13191
- /// Horizontal padding of the button.
13624
+ /// The horizontal padding of the Button.
13192
13625
  /// @group button
13193
13626
  $kendo-button-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
13194
- /// Horizontal padding of the small button.
13627
+ /// The horizontal padding of the small Button.
13195
13628
  /// @group button
13196
13629
  $kendo-button-sm-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
13197
- /// Horizontal padding of the medium button.
13630
+ /// The horizontal padding of the medium Button.
13198
13631
  /// @group button
13199
13632
  $kendo-button-md-padding-x: $kendo-button-padding-x !default;
13200
- /// Horizontal padding of the large button.
13633
+ /// The horizontal padding of the large Button.
13201
13634
  /// @group button
13202
13635
  $kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
13203
13636
 
13204
- /// Vertical padding of the button.
13637
+ /// The vertical padding of the Button.
13205
13638
  /// @group button
13206
13639
  $kendo-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
13207
- /// Vertical padding of the small button.
13640
+ /// The vertical padding of the small Button.
13208
13641
  /// @group button
13209
13642
  $kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
13210
- /// Vertical padding of the medium button.
13643
+ /// The vertical padding of the medium Button.
13211
13644
  /// @group button
13212
13645
  $kendo-button-md-padding-y: $kendo-button-padding-y !default;
13213
- /// Vertical padding of the large button.
13646
+ /// The vertical padding of the large Button.
13214
13647
  /// @group button
13215
13648
  $kendo-button-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
13216
13649
 
13217
- /// Font family of the button.
13650
+ /// The font family of the Button.
13218
13651
  /// @group button
13219
13652
  $kendo-button-font-family: $kendo-font-family !default;
13220
13653
 
13221
- /// Font size of the button.
13654
+ /// The font size of the Button.
13222
13655
  /// @group button
13223
13656
  $kendo-button-font-size: $kendo-font-size-md !default;
13224
- /// Font size of the small button.
13657
+ /// The font size of the small Button.
13225
13658
  /// @group button
13226
13659
  $kendo-button-sm-font-size: $kendo-font-size-md !default;
13227
- /// Font size of the medium button.
13660
+ /// The font size of the medium Button.
13228
13661
  /// @group button
13229
13662
  $kendo-button-md-font-size: $kendo-button-font-size !default;
13230
- /// Font size of the large button.
13663
+ /// The font size of the large Button.
13231
13664
  /// @group button
13232
13665
  $kendo-button-lg-font-size: $kendo-font-size-lg !default;
13233
13666
 
13234
- /// Line height used along with $kendo-font-size.
13667
+ /// The line height used along with $kendo-font-size.
13235
13668
  /// @group button
13236
13669
  $kendo-button-line-height: $kendo-line-height-md !default;
13237
- /// Line height used along with $kendo-font-size of the small button.
13670
+ /// The line height used along with the $kendo-font-size of the small Button.
13238
13671
  /// @group button
13239
13672
  $kendo-button-sm-line-height: $kendo-line-height-md !default;
13240
- /// Line height used along with $kendo-font-size of the medium button.
13673
+ /// The line height used along with the $kendo-font-size of the medium Button.
13241
13674
  /// @group button
13242
13675
  $kendo-button-md-line-height: $kendo-button-line-height !default;
13243
- /// Line height used along with $kendo-font-size of the large button.
13676
+ /// The line height used along with the $kendo-font-size of the large Button.
13244
13677
  /// @group button
13245
13678
  $kendo-button-lg-line-height: $kendo-line-height-lg !default;
13246
13679
 
13247
- // Calculated height of the button.
13680
+ /// The calculated height of the Button.
13681
+ /// @group button
13248
13682
  $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
13249
13683
  $kendo-button-sm-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
13250
13684
  $kendo-button-md-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
13251
13685
  $kendo-button-lg-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
13252
13686
 
13253
- // Calculated inner height of the button. Without the border width.
13687
+ /// The calculated inner height of the Button excluding the border width.
13688
+ /// @group button
13254
13689
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
13255
13690
  $kendo-button-sm-inner-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} ) !default;
13256
13691
  $kendo-button-md-inner-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} ) !default;
13257
13692
  $kendo-button-lg-inner-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} ) !default;
13258
13693
 
13259
- // Sizes map for the button.
13694
+ /// The sizes map for the Button.
13695
+ /// @group button
13260
13696
  $kendo-button-sizes: (
13261
13697
  sm: (
13262
13698
  padding-x: $kendo-button-sm-padding-x,
@@ -13278,110 +13714,110 @@ $kendo-button-sizes: (
13278
13714
  )
13279
13715
  ) !default;
13280
13716
 
13281
- /// Theme colors map for the button.
13717
+ /// The theme colors map for the Button.
13282
13718
  /// @group button
13283
13719
  $kendo-button-theme-colors: k-map-merge(
13284
13720
  $kendo-theme-colors,
13285
13721
  ( "base": #f5f5f5 )
13286
13722
  ) !default;
13287
13723
 
13288
- /// The base background of the button.
13724
+ /// The base background of the Button.
13289
13725
  /// @group button
13290
13726
  $kendo-button-bg: #f5f5f5 !default;
13291
- /// The base text color of the button.
13727
+ /// The base text color of the Button.
13292
13728
  /// @group button
13293
13729
  $kendo-button-text: #424242 !default;
13294
- /// The base border color of the button.
13730
+ /// The base border color of the Button.
13295
13731
  /// @group button
13296
13732
  $kendo-button-border: rgba( black, .08 ) !default;
13297
- /// The base background gradient of the button.
13733
+ /// The base background gradient of the Button.
13298
13734
  /// @group button
13299
13735
  $kendo-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
13300
- /// The base shadow of the button.
13736
+ /// The base shadow of the Button.
13301
13737
  /// @group button
13302
13738
  $kendo-button-shadow: null !default;
13303
13739
 
13304
- /// The base background of hovered button.
13740
+ /// The base background of the hovered Button.
13305
13741
  /// @group button
13306
13742
  $kendo-button-hover-bg: k-try-shade( $kendo-button-bg, .5 ) !default;
13307
- /// The base text color of hovered button.
13743
+ /// The base text color of the hovered Button.
13308
13744
  /// @group button
13309
13745
  $kendo-button-hover-text: null !default;
13310
- /// The base border color of hovered button.
13746
+ /// The base border color of the hovered Button.
13311
13747
  /// @group button
13312
13748
  $kendo-button-hover-border: null !default;
13313
- /// The base background gradient of hovered button.
13749
+ /// The base background gradient of the hovered Button.
13314
13750
  /// @group button
13315
13751
  $kendo-button-hover-gradient: null !default;
13316
- /// The base shadow of hovered button.
13752
+ /// The base shadow of the hovered Button.
13317
13753
  /// @group button
13318
13754
  $kendo-button-hover-shadow: null !default;
13319
13755
 
13320
- /// The base background color of active button.
13756
+ /// The base background color of the active Button.
13321
13757
  /// @group button
13322
13758
  $kendo-button-active-bg: k-try-shade( $kendo-button-bg, 1.5 ) !default;
13323
- /// The base text color of active button.
13759
+ /// The base text color of the active Button.
13324
13760
  /// @group button
13325
13761
  $kendo-button-active-text: null !default;
13326
- /// The base border color of active button.
13762
+ /// The base border color of the active Button.
13327
13763
  /// @group button
13328
13764
  $kendo-button-active-border: null !default;
13329
- /// The base background gradient of active button.
13765
+ /// The base background gradient of the active Button.
13330
13766
  /// @group button
13331
13767
  $kendo-button-active-gradient: null !default;
13332
- /// The base shadow of active button.
13768
+ /// The base shadow of the active Button.
13333
13769
  /// @group button
13334
13770
  $kendo-button-active-shadow: null !default;
13335
13771
 
13336
- /// The base background color of selected button.
13772
+ /// The base background color of the selected Button.
13337
13773
  /// @group button
13338
13774
  $kendo-button-selected-bg: $kendo-color-primary !default;
13339
- /// The text color of selected buttons.
13775
+ /// The text color of the selected Button.
13340
13776
  /// @group button
13341
13777
  $kendo-button-selected-text: k-contrast-legacy( $kendo-button-selected-bg ) !default;
13342
- /// The border color of selected buttons.
13778
+ /// The border color of the selected Button.
13343
13779
  /// @group button
13344
13780
  $kendo-button-selected-border: $kendo-button-selected-bg !default;
13345
- /// The background gradient of selected buttons.
13781
+ /// The background gradient of the selected Button.
13346
13782
  /// @group button
13347
13783
  $kendo-button-selected-gradient: $kendo-button-active-gradient !default;
13348
- /// The base shadow of selected button.
13784
+ /// The base shadow of the selected Button.
13349
13785
  /// @group button
13350
13786
  $kendo-button-selected-shadow: $kendo-button-active-shadow !default;
13351
13787
 
13352
- /// The base background of focused button.
13788
+ /// The base background of the focused Button.
13353
13789
  /// @group button
13354
13790
  $kendo-button-focus-bg: null !default;
13355
- /// The base text color of focused button.
13791
+ /// The base text color of the focused Button.
13356
13792
  /// @group button
13357
13793
  $kendo-button-focus-text: null !default;
13358
- /// The base border color of focused button.
13794
+ /// The base border color of the focused Button.
13359
13795
  /// @group button
13360
13796
  $kendo-button-focus-border: null !default;
13361
- /// The base background gradient of focused button.
13797
+ /// The base background gradient of the focused Button.
13362
13798
  /// @group button
13363
13799
  $kendo-button-focus-gradient: null !default;
13364
- /// The base shadow of focused button.
13800
+ /// The base shadow of the focused Button.
13365
13801
  /// @group button
13366
13802
  $kendo-button-focus-shadow: 0 0 0 2px rgba( $kendo-button-border, .08 ) !default;
13367
13803
 
13368
- /// The base background of disabled button.
13804
+ /// The base background of the disabled Button.
13369
13805
  /// @group button
13370
13806
  $kendo-button-disabled-bg: null !default;
13371
- /// The base text color of disabled button.
13807
+ /// The base text color of the disabled Button.
13372
13808
  /// @group button
13373
13809
  $kendo-button-disabled-text: null !default;
13374
- /// The base border color of disabled buttons.
13810
+ /// The base border color of the disabled Button.
13375
13811
  /// @group button
13376
13812
  $kendo-button-disabled-border: null !default;
13377
- /// The base background gradient of disabled button.
13813
+ /// The base background gradient of the disabled Button.
13378
13814
  /// @group button
13379
13815
  $kendo-button-disabled-gradient: null !default;
13380
- /// The base shadow of disabled button.
13816
+ /// The base shadow of the disabled Button.
13381
13817
  /// @group button
13382
13818
  $kendo-button-disabled-shadow: null !default;
13383
13819
 
13384
- // Solid button
13820
+ // Solid Button
13385
13821
  $kendo-solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
13386
13822
  $kendo-solid-button-shade-function: "k-try-shade" !default;
13387
13823
  $kendo-solid-button-shade-text-amount: 0 !default;
@@ -13398,38 +13834,38 @@ $kendo-solid-button-shadow-blur: 0px !default;
13398
13834
  $kendo-solid-button-shadow-spread: 2px !default;
13399
13835
  $kendo-solid-button-shadow-opacity: .3 !default;
13400
13836
 
13401
- // Outline button
13837
+ // Outline Button
13402
13838
  $kendo-outline-button-shadow: true !default;
13403
13839
  $kendo-outline-button-shadow-blur: 0px !default;
13404
13840
  $kendo-outline-button-shadow-spread: 2px !default;
13405
13841
  $kendo-outline-button-shadow-opacity: .3 !default;
13406
13842
 
13407
- // Link button
13843
+ // Link Button
13408
13844
  $kendo-link-button-shadow: true !default;
13409
13845
  $kendo-link-button-shadow-blur: 0px !default;
13410
13846
  $kendo-link-button-shadow-spread: 2px !default;
13411
13847
  $kendo-link-button-shadow-opacity: .3 !default;
13412
13848
 
13413
- // Clear button
13849
+ // Clear Button
13414
13850
  $kendo-clear-button-focus-opacity: .1 !default;
13415
13851
 
13416
- /// The overlay opacity of hovered flat button. Used to create background for the flat button.
13852
+ /// The overlay opacity of the hovered flat Button. Used to create a background for the flat Button.
13417
13853
  /// @group button
13418
13854
  $kendo-flat-button-hover-opacity: .04 !default;
13419
- /// The overlay opacity of focused flat button. Used to create background for the flat button.
13855
+ /// The overlay opacity of the focused flat Button. Used to create a background for the flat Button.
13420
13856
  /// @group button
13421
13857
  $kendo-flat-button-focus-opacity: null !default;
13422
- /// The overlay opacity of active flat button. Used to create background for the flat button.
13858
+ /// The overlay opacity of the active flat Button. Used to create background for the flat Button.
13423
13859
  /// @group button
13424
13860
  $kendo-flat-button-active-opacity: .16 !default;
13425
- /// The overlay opacity of selected flat button. Used to create background for the flat button.
13861
+ /// The overlay opacity of the selected flat Button. Used to create background for the flat Button.
13426
13862
  /// @group button
13427
13863
  $kendo-flat-button-selected-opacity: .2 !default;
13428
- /// The opacity of the flat button focus ring. Used to create border for the flat button.
13864
+ /// The opacity of the flat Button focus ring. Used to create a border for the flat Button.
13429
13865
  /// @group button
13430
13866
  $kendo-flat-button-focus-ring-opacity: .12 !default;
13431
13867
 
13432
- /// The color transition of the flat button.
13868
+ /// The color transition of the flat Button.
13433
13869
  /// @group button
13434
13870
  $kendo-button-transition: color .2s ease-in-out !default;
13435
13871
 
@@ -13438,71 +13874,71 @@ $kendo-button-transition: color .2s ease-in-out !default;
13438
13874
 
13439
13875
  // Chip
13440
13876
 
13441
- /// Width of the border around the button.
13877
+ /// The width of the border around the Chip.
13442
13878
  /// @group chip
13443
13879
  $kendo-chip-border-width: 1px !default;
13444
- /// The spacing between the text and the icons of the chip.
13880
+ /// The spacing between the text and the icons of the Chip.
13445
13881
  /// @group chip
13446
13882
  $kendo-chip-spacing: k-map-get( $kendo-spacing, 1 ) !default;
13447
13883
 
13448
- /// Horizontal padding of the chip.
13884
+ /// The horizontal padding of the Chip.
13449
13885
  /// @group chip
13450
13886
  $kendo-chip-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
13451
- /// Horizontal padding of the small chip.
13887
+ /// The horizontal padding of the small Chip.
13452
13888
  /// @group chip
13453
13889
  $kendo-chip-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
13454
- /// Horizontal padding of the medium chip.
13890
+ /// The horizontal padding of the medium Chip.
13455
13891
  /// @group chip
13456
13892
  $kendo-chip-md-padding-x: $kendo-chip-padding-x !default;
13457
- /// Horizontal padding of the large chip.
13893
+ /// The horizontal padding of the large Chip.
13458
13894
  /// @group chip
13459
13895
  $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
13460
13896
 
13461
- /// Vertical padding of the chip.
13897
+ /// The vertical padding of the Chip.
13462
13898
  /// @group chip
13463
13899
  $kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
13464
- /// Vertical padding of the small chip.
13900
+ /// The vertical padding of the small Chip.
13465
13901
  /// @group chip
13466
13902
  $kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
13467
- /// Vertical padding of the medium chip.
13903
+ /// The vertical padding of the medium Chip.
13468
13904
  /// @group chip
13469
13905
  $kendo-chip-md-padding-y: $kendo-chip-padding-y !default;
13470
- /// Vertical padding of the large chip.
13906
+ /// The vertical padding of the large Chip.
13471
13907
  /// @group chip
13472
13908
  $kendo-chip-lg-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
13473
13909
 
13474
- /// Font sizes of the chip.
13910
+ /// The font size of the Chip.
13475
13911
  /// @group chip
13476
13912
  $kendo-chip-font-size: $kendo-font-size-md !default;
13477
- /// Font sizes of the small chip.
13913
+ /// The font size of the small Chip.
13478
13914
  /// @group chip
13479
13915
  $kendo-chip-sm-font-size: $kendo-font-size-md !default;
13480
- /// Font sizes of the medium chip.
13916
+ /// The font size of the medium Chip.
13481
13917
  /// @group chip
13482
13918
  $kendo-chip-md-font-size: $kendo-chip-font-size !default;
13483
- /// Font sizes of the large chip.
13919
+ /// The font size of the large Chip.
13484
13920
  /// @group chip
13485
13921
  $kendo-chip-lg-font-size: $kendo-font-size-md !default;
13486
13922
 
13487
- /// Line heights of the chip that are connected to the $kendo-font-size.
13923
+ /// The Chip's line height that is related to the $kendo-font-size.
13488
13924
  /// @group chip
13489
13925
  $kendo-chip-line-height: 1 !default;
13490
- /// Line heights of the small chip that are connected to the $kendo-font-size.
13926
+ /// The small Chip's line height that is related to the $kendo-font-size.
13491
13927
  /// @group chip
13492
13928
  $kendo-chip-sm-line-height: $kendo-chip-line-height !default;
13493
- /// Line heights of the medium chip that are connected to the $kendo-font-size.
13929
+ /// The medium Chip's line height that is related to the $kendo-font-size.
13494
13930
  /// @group chip
13495
13931
  $kendo-chip-md-line-height: $kendo-chip-line-height !default;
13496
- /// Line heights of the large chip that are connected to the $kendo-font-size.
13932
+ /// The large Chip's line height that is related to the $kendo-font-size.
13497
13933
  /// @group chip
13498
13934
  $kendo-chip-lg-line-height: $kendo-chip-line-height !default;
13499
13935
 
13500
- /// Calculated height of the chip.
13936
+ /// The calculated height of the Chip.
13501
13937
  /// @group chip
13502
13938
  $kendo-chip-calc-size: calc( #{$kendo-chip-line-height * 1em} + #{$kendo-chip-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
13503
13939
  $kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height * 1em} + #{$kendo-chip-sm-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
13504
13940
 
13505
- /// Sizes map for the chip.
13941
+ /// The map with the sizes of the Chip.
13506
13942
  /// @group chip
13507
13943
  $kendo-chip-sizes: (
13508
13944
  sm: (
@@ -13525,11 +13961,11 @@ $kendo-chip-sizes: (
13525
13961
  )
13526
13962
  ) !default;
13527
13963
 
13528
- /// The base background of the chip.
13964
+ /// The base background of the Chip.
13529
13965
  /// @group chip
13530
13966
  $kendo-chip-base-bg: $kendo-button-bg !default;
13531
13967
 
13532
- /// Theme colors map for the chip.
13968
+ /// The theme colors map for the Chip.
13533
13969
  /// @group chip
13534
13970
  $kendo-chip-theme-colors: (
13535
13971
  "base": $kendo-chip-base-bg,
@@ -13539,73 +13975,73 @@ $kendo-chip-theme-colors: (
13539
13975
  "success": k-map-get($kendo-theme-colors, "success")
13540
13976
  ) !default;
13541
13977
 
13542
- /// The base background color of solid chip.
13978
+ /// The base background color of the solid Chip.
13543
13979
  /// @group chip
13544
13980
  $kendo-chip-solid-bg: $kendo-chip-base-bg !default;
13545
- /// The base text color of solid chip.
13981
+ /// The base text color of the solid Chip.
13546
13982
  /// @group chip
13547
13983
  $kendo-chip-solid-text: $kendo-button-text !default;
13548
- /// The base border color of solid chip.
13984
+ /// The base border color of the solid Chip.
13549
13985
  /// @group chip
13550
13986
  $kendo-chip-solid-border: $kendo-button-border !default;
13551
- /// The base shadow of solid chip.
13987
+ /// The base shadow of the solid Chip.
13552
13988
  /// @group chip
13553
13989
  $kendo-chip-solid-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ) !default;
13554
- /// The base gradient of solid chip.
13990
+ /// The base gradient of the solid Chip.
13555
13991
  /// @group chip
13556
13992
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
13557
13993
 
13558
- /// The base background color of focused solid chip.
13994
+ /// The base background color of the focused solid Chip.
13559
13995
  /// @group chip
13560
13996
  $kendo-chip-solid-focus-bg: null !default;
13561
- /// The base text color of focused solid chip.
13997
+ /// The base text color of the focused solid Chip.
13562
13998
  /// @group chip
13563
13999
  $kendo-chip-solid-focus-text: null !default;
13564
14000
 
13565
- /// The base background color of hovered solid chip.
14001
+ /// The base background color of the hovered solid Chip.
13566
14002
  /// @group chip
13567
14003
  $kendo-chip-solid-hover-bg: $kendo-button-hover-bg !default;
13568
- /// The base text color of hovered solid chip.
14004
+ /// The base text color of the hovered solid Chip.
13569
14005
  /// @group chip
13570
14006
  $kendo-chip-solid-hover-text: null !default;
13571
14007
 
13572
- /// The base background color of selected solid chip.
14008
+ /// The base background color of the selected solid Chip.
13573
14009
  /// @group chip
13574
14010
  $kendo-chip-solid-selected-bg: $kendo-button-active-bg !default;
13575
- /// The base text color of selected solid chip.
14011
+ /// The base text color of the selected solid Chip.
13576
14012
  /// @group chip
13577
14013
  $kendo-chip-solid-selected-text: null !default;
13578
14014
 
13579
- /// The base background color of outline chip.
14015
+ /// The base background color of the outline Chip.
13580
14016
  /// @group chip
13581
14017
  $kendo-chip-outline-bg: $kendo-component-bg !default;
13582
- /// The base text color of outline chip.
14018
+ /// The base text color of the outline Chip.
13583
14019
  /// @group chip
13584
14020
  $kendo-chip-outline-text: $kendo-chip-solid-text !default;
13585
- /// The base border color of outline chip.
14021
+ /// The base border color of the outline Chip.
13586
14022
  /// @group chip
13587
14023
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
13588
- /// The base shadow of outline chip.
14024
+ /// The base shadow of the outline Chip.
13589
14025
  /// @group chip
13590
14026
  $kendo-chip-outline-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ) !default;
13591
14027
 
13592
- /// The base background color of hovered outline chip.
14028
+ /// The base background color of the hovered outline Chip.
13593
14029
  /// @group chip
13594
14030
  $kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
13595
- /// The base text color of hovered outline chip.
14031
+ /// The base text color of the hovered outline Chip.
13596
14032
  /// @group chip
13597
14033
  $kendo-chip-outline-hover-text: k-contrast-legacy( $kendo-chip-outline-hover-bg ) !default;
13598
14034
 
13599
- /// The base background color of selected outline chip.
14035
+ /// The base background color of the selected outline Chip.
13600
14036
  /// @group chip
13601
14037
  $kendo-chip-outline-selected-bg: $kendo-chip-outline-hover-bg !default;
13602
- /// The base text color of selected outline chip.
14038
+ /// The base text color of the selected outline Chip.
13603
14039
  /// @group chip
13604
14040
  $kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
13605
14041
 
13606
14042
  // Chip List
13607
14043
 
13608
- /// The sizes of the chip list.
14044
+ /// The sizes of the Chip list.
13609
14045
  /// @group chip
13610
14046
  $kendo-chip-list-sizes: (
13611
14047
  sm: k-map-get( $kendo-spacing, 1 ),
@@ -16985,74 +17421,76 @@ $kendo-actions-gradient: null !default;
16985
17421
  // #region @import "../input/_variables.scss"; -> scss/input/_variables.scss
16986
17422
  // Input
16987
17423
 
16988
- /// Default width of input components.
17424
+ /// The default width of the Input components.
16989
17425
  /// @group input
16990
17426
  $kendo-input-default-width: 100% !default;
16991
17427
 
16992
- /// Border width of input components.
17428
+ /// The border width of the Input components.
16993
17429
  /// @group input
16994
17430
  $kendo-input-border-width: 1px !default;
16995
17431
  $kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
16996
- /// Border radius of input components.
17432
+ /// The border radius of the Input components.
16997
17433
  /// @group input
16998
17434
  $kendo-input-border-radius: null !default;
16999
17435
 
17000
- /// Horizontal padding of input components.
17436
+ /// The horizontal padding of the Input components.
17001
17437
  /// @group input
17002
17438
  $kendo-input-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
17003
- /// Horizontal padding of small input components.
17439
+ /// The horizontal padding of the small Input components.
17004
17440
  /// @group input
17005
17441
  $kendo-input-sm-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
17006
- /// Horizontal padding of medium input components.
17442
+ /// The horizontal padding of the medium Input components.
17007
17443
  /// @group input
17008
17444
  $kendo-input-md-padding-x: $kendo-input-padding-x !default;
17009
- /// Horizontal padding of large input components.
17445
+ /// The horizontal padding of the large Input components.
17010
17446
  /// @group input
17011
17447
  $kendo-input-lg-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
17012
17448
 
17013
- /// Vertical padding of input components.
17449
+ /// The vertical padding of the Input components.
17014
17450
  /// @group input
17015
17451
  $kendo-input-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
17016
- /// Vertical padding of small input components.
17452
+ /// The vertical padding of the small Input components.
17017
17453
  /// @group input
17018
17454
  $kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
17019
- /// Vertical padding of medium input components.
17455
+ /// The vertical padding of the medium Input components.
17020
17456
  /// @group input
17021
17457
  $kendo-input-md-padding-y: $kendo-input-padding-y !default;
17022
- /// Vertical padding of large input components.
17458
+ /// The vertical padding of the large Input components.
17023
17459
  /// @group input
17024
17460
  $kendo-input-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
17025
17461
 
17026
- /// Font family of input components.
17462
+ /// The font family of the Input components.
17027
17463
  /// @group input
17028
17464
  $kendo-input-font-family: $kendo-font-family !default;
17029
17465
 
17030
- /// Font size of input components.
17466
+ /// The font size of the Input components.
17031
17467
  /// @group input
17032
17468
  $kendo-input-font-size: $kendo-font-size-md !default;
17033
- /// Font size of small input components.
17469
+ /// The font size of the small Input components.
17034
17470
  /// @group input
17035
17471
  $kendo-input-sm-font-size: $kendo-font-size-md !default;
17036
- /// Font size of medium input components.
17472
+ /// The font size of the medium Input components.
17037
17473
  /// @group input
17038
17474
  $kendo-input-md-font-size: $kendo-input-font-size !default;
17039
- /// Font size of large input components.
17475
+ /// The font size of the large Input components.
17040
17476
  /// @group input
17041
17477
  $kendo-input-lg-font-size: $kendo-font-size-lg !default;
17042
17478
 
17043
- /// Line height of input components.
17479
+ /// The line height of the Input components.
17044
17480
  /// @group input
17045
17481
  $kendo-input-line-height: $kendo-line-height-md !default;
17046
- /// Line height of small input components.
17482
+ /// The line height of the small Input components.
17047
17483
  /// @group input
17048
17484
  $kendo-input-sm-line-height: $kendo-line-height-md !default;
17049
- /// Line height of medium input components.
17485
+ /// The line height of the medium Input components.
17050
17486
  /// @group input
17051
17487
  $kendo-input-md-line-height: $kendo-input-line-height !default;
17052
- /// Line height of large input components.
17488
+ /// The line height of the large Input components.
17053
17489
  /// @group input
17054
17490
  $kendo-input-lg-line-height: $kendo-line-height-lg !default;
17055
17491
 
17492
+ /// The sizes map for the Input components.
17493
+ /// @group input
17056
17494
  $kendo-input-sizes: (
17057
17495
  sm: (
17058
17496
  padding-x: $kendo-input-sm-padding-x,
@@ -17083,151 +17521,151 @@ $kendo-input-sizes: (
17083
17521
  )
17084
17522
  ) !default;
17085
17523
 
17086
- /// The background color of input components.
17524
+ /// The background color of the Input components.
17087
17525
  /// @group input
17088
17526
  $kendo-input-bg: $kendo-component-bg !default;
17089
- /// The text color of input components.
17527
+ /// The text color of the Input components.
17090
17528
  /// @group input
17091
17529
  $kendo-input-text: $kendo-component-text !default;
17092
- /// The border color of input components.
17530
+ /// The border color of the Input components.
17093
17531
  /// @group input
17094
17532
  $kendo-input-border: $kendo-component-border !default;
17095
- /// The shadow of input components.
17533
+ /// The shadow of the Input components.
17096
17534
  /// @group input
17097
17535
  $kendo-input-shadow: null !default;
17098
17536
 
17099
- /// The background color of hovered input components.
17537
+ /// The background color of the hovered Input components.
17100
17538
  /// @group input
17101
17539
  $kendo-input-hover-bg: null !default;
17102
- /// The text color of hovered input components.
17540
+ /// The text color of the hovered Input components.
17103
17541
  /// @group input
17104
17542
  $kendo-input-hover-text: null !default;
17105
- /// The border color of hovered input components.
17543
+ /// The border color of the hovered Input components.
17106
17544
  /// @group input
17107
17545
  $kendo-input-hover-border: rgba( $kendo-input-border, .16 ) !default;
17108
- /// The shadow of hovered input components.
17546
+ /// The shadow of the hovered Input components.
17109
17547
  /// @group input
17110
17548
  $kendo-input-hover-shadow: null !default;
17111
17549
 
17112
- /// The background color of focused input components.
17550
+ /// The background color of the focused Input components.
17113
17551
  /// @group input
17114
17552
  $kendo-input-focus-bg: null !default;
17115
- /// The text color of focused input components.
17553
+ /// The text color of the focused Input components.
17116
17554
  /// @group input
17117
17555
  $kendo-input-focus-text: null !default;
17118
- /// The border color of focused input components.
17556
+ /// The border color of the focused Input components.
17119
17557
  /// @group input
17120
17558
  $kendo-input-focus-border: $kendo-input-hover-border !default;
17121
- /// The shadow of focused input components.
17559
+ /// The shadow of the focused Input components.
17122
17560
  /// @group input
17123
17561
  $kendo-input-focus-shadow: 0 0 0 2px rgba( $kendo-input-focus-border, .08 ) !default;
17124
17562
 
17125
- /// The background color of selected input components.
17563
+ /// The background color of the selected Input components.
17126
17564
  /// @group input
17127
17565
  $kendo-input-selected-bg: null !default;
17128
- /// The text color of selected input components.
17566
+ /// The text color of the selected Input components.
17129
17567
  /// @group input
17130
17568
  $kendo-input-selected-text: null !default;
17131
17569
 
17132
- /// The background color of disabled input components.
17570
+ /// The background color of the disabled Input components.
17133
17571
  /// @group input
17134
17572
  $kendo-input-disabled-bg: null !default;
17135
- /// The text color of disabled input components.
17573
+ /// The text color of the disabled Input components.
17136
17574
  /// @group input
17137
17575
  $kendo-input-disabled-text: null !default;
17138
- /// The border color of disabled input components.
17576
+ /// The border color of the disabled Input components.
17139
17577
  /// @group input
17140
17578
  $kendo-input-disabled-border: null !default;
17141
- /// The gradient of disabled input components.
17579
+ /// The gradient of the disabled Input components.
17142
17580
  /// @group input
17143
17581
  $kendo-input-disabled-gradient: null !default;
17144
- /// The shadow of disabled input components.
17582
+ /// The shadow of the disabled Input components.
17145
17583
  /// @group input
17146
17584
  $kendo-input-disabled-shadow: null !default;
17147
17585
 
17148
- /// The background color of outline input components.
17586
+ /// The background color of the outline Input components.
17149
17587
  /// @group input
17150
17588
  $kendo-input-outline-bg: null !default;
17151
- /// The text color of outline input components.
17589
+ /// The text color of the outline Input components.
17152
17590
  /// @group input
17153
17591
  $kendo-input-outline-text: $kendo-input-text !default;
17154
- /// The border color of outline input components.
17592
+ /// The border color of the outline Input components.
17155
17593
  /// @group input
17156
17594
  $kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
17157
17595
 
17158
- /// The background color of outline hovered input components.
17596
+ /// The background color of the outline hovered Input components.
17159
17597
  /// @group input
17160
17598
  $kendo-input-outline-hover-bg: null !default;
17161
- /// The text color of outline hovered input components.
17599
+ /// The text color of the outline hovered Input components.
17162
17600
  /// @group input
17163
17601
  $kendo-input-outline-hover-text: null !default;
17164
- /// The border color of outline hovered input components.
17602
+ /// The border color of the outline hovered Input components.
17165
17603
  /// @group input
17166
17604
  $kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
17167
17605
 
17168
- /// The background color of outline focused input components.
17606
+ /// The background color of the outline focused Input components.
17169
17607
  /// @group input
17170
17608
  $kendo-input-outline-focus-bg: null !default;
17171
- /// The text color of outline focused input components.
17609
+ /// The text color of the outline focused Input components.
17172
17610
  /// @group input
17173
17611
  $kendo-input-outline-focus-text: null !default;
17174
- /// The border color of outline focused input components.
17612
+ /// The border color of the outline focused Input components.
17175
17613
  /// @group input
17176
17614
  $kendo-input-outline-focus-border: null !default;
17177
- /// The shadow of outline focused input components.
17615
+ /// The shadow of the outline focused Input components.
17178
17616
  /// @group input
17179
17617
  $kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
17180
17618
 
17181
- /// The background color of flat input components.
17619
+ /// The background color of the flat Input components.
17182
17620
  /// @group input
17183
17621
  $kendo-input-flat-bg: null !default;
17184
- /// The text color of flat input components.
17622
+ /// The text color of the flat Input components.
17185
17623
  /// @group input
17186
17624
  $kendo-input-flat-text: $kendo-input-text !default;
17187
- /// The border color of flat input components.
17625
+ /// The border color of the flat Input components.
17188
17626
  /// @group input
17189
17627
  $kendo-input-flat-border: $kendo-input-border !default;
17190
17628
 
17191
- /// The background color of flat hovered input components.
17629
+ /// The background color of the flat hovered Input components.
17192
17630
  /// @group input
17193
17631
  $kendo-input-flat-hover-bg: null !default;
17194
- /// The text color of flat hovered input components.
17632
+ /// The text color of the flat hovered Input components.
17195
17633
  /// @group input
17196
17634
  $kendo-input-flat-hover-text: null !default;
17197
- /// The border color of flat hovered input components.
17635
+ /// The border color of the flat hovered Input components.
17198
17636
  /// @group input
17199
17637
  $kendo-input-flat-hover-border: $kendo-input-hover-border !default;
17200
17638
 
17201
- /// The background color of flat focused input components.
17639
+ /// The background color of the flat focused Input components.
17202
17640
  /// @group input
17203
17641
  $kendo-input-flat-focus-bg: null !default;
17204
- /// The text color of flat focused input components.
17642
+ /// The text color of the flat focused Input components.
17205
17643
  /// @group input
17206
17644
  $kendo-input-flat-focus-text: null !default;
17207
- /// The border color of flat focused input components.
17645
+ /// The border color of the flat focused Input components.
17208
17646
  /// @group input
17209
17647
  $kendo-input-flat-focus-border: null !default;
17210
- /// The shadow of flat focused input components.
17648
+ /// The shadow of the flat focused Input components.
17211
17649
  /// @group input
17212
17650
  $kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;
17213
17651
 
17214
- /// The text color of the input placeholder.
17652
+ /// The text color of the Input placeholder.
17215
17653
  /// @group input
17216
17654
  $kendo-input-placeholder-text: $kendo-subtle-text !default;
17217
- /// The opacity of the input placeholder.
17655
+ /// The opacity of the Input placeholder.
17218
17656
  /// @group input
17219
17657
  $kendo-input-placeholder-opacity: 1 !default;
17220
17658
 
17221
- /// The color of the input clear value icon.
17659
+ /// The color of the Input clear value icon.
17222
17660
  /// @group input
17223
17661
  $kendo-input-clear-value-text: null !default;
17224
- /// The opacity of the input clear value icon.
17662
+ /// The opacity of the Input clear value icon.
17225
17663
  /// @group input
17226
17664
  $kendo-input-clear-value-opacity: .5 !default;
17227
- /// The color of the hovered input clear value icon.
17665
+ /// The color of the hovered Input clear value icon.
17228
17666
  /// @group input
17229
17667
  $kendo-input-clear-value-hover-text: null !default;
17230
- /// The opacity of the hovered input clear value icon.
17668
+ /// The opacity of the hovered Input clear value icon.
17231
17669
  /// @group input
17232
17670
  $kendo-input-clear-value-hover-opacity: 1 !default;
17233
17671
 
@@ -17238,180 +17676,180 @@ $kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass
17238
17676
  /// @group input
17239
17677
  $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
17240
17678
 
17241
- /// Width of the input button.
17679
+ /// The width of the Input button.
17242
17680
  /// @group input
17243
17681
  $kendo-input-button-width: $kendo-button-inner-calc-size !default;
17244
- /// Border width of the input button.
17682
+ /// The border width of the Input button.
17245
17683
  /// @group input
17246
17684
  $kendo-input-button-border-width: 1px !default;
17247
- /// Width of the input spinner button.
17685
+ /// The width of the Input spinner button.
17248
17686
  /// @group input
17249
17687
  $kendo-input-spinner-width: $kendo-button-inner-calc-size !default;
17250
- /// Icon offset of the input spinner button.
17688
+ /// The icon offset of the Input spinner button.
17251
17689
  /// @group input
17252
17690
  $kendo-input-spinner-icon-offset: null !default;
17253
17691
 
17254
- /// Color of the input separator.
17692
+ /// The color of the Input separator.
17255
17693
  /// @group input
17256
17694
  $kendo-input-separator-color: $kendo-input-text !default;
17257
- /// Opacity of the input separator.
17695
+ /// The opacity of the Input separator.
17258
17696
  /// @group input
17259
17697
  $kendo-input-separator-opacity: .5 !default;
17260
17698
 
17261
- /// Border color of the invalid input components.
17699
+ /// The border color of the invalid Input components.
17262
17700
  /// @group input
17263
17701
  $kendo-input-invalid-border: $kendo-invalid-border !default;
17264
- /// Shadow of the invalid input components.
17702
+ /// The shadow of the invalid Input components.
17265
17703
  /// @group input
17266
17704
  $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
17267
17705
 
17268
- /// The background color of picker components.
17706
+ /// The background color of the Picker components.
17269
17707
  /// @group picker
17270
17708
  $kendo-picker-bg: $kendo-button-bg !default;
17271
- /// The text color of picker components.
17709
+ /// The text color of the Picker components.
17272
17710
  /// @group picker
17273
17711
  $kendo-picker-text: $kendo-button-text !default;
17274
- /// The border color of picker components.
17712
+ /// The border color of the Picker components.
17275
17713
  /// @group picker
17276
17714
  $kendo-picker-border: $kendo-button-border !default;
17277
- /// The gradient of picker components.
17715
+ /// The gradient of the Picker components.
17278
17716
  /// @group picker
17279
17717
  $kendo-picker-gradient: $kendo-button-gradient !default;
17280
- /// The shadow of picker components.
17718
+ /// The shadow of the Picker components.
17281
17719
  /// @group picker
17282
17720
  $kendo-picker-shadow: $kendo-button-shadow !default;
17283
17721
 
17284
- /// The background color of hovered picker components.
17722
+ /// The background color of the hovered Picker components.
17285
17723
  /// @group picker
17286
17724
  $kendo-picker-hover-bg: $kendo-button-hover-bg !default;
17287
- /// The text color of hovered picker components.
17725
+ /// The text color of the hovered Picker components.
17288
17726
  /// @group picker
17289
17727
  $kendo-picker-hover-text: $kendo-button-hover-text !default;
17290
- /// The border color of hovered picker components.
17728
+ /// The border color of the hovered Picker components.
17291
17729
  /// @group picker
17292
17730
  $kendo-picker-hover-border: $kendo-button-hover-border !default;
17293
- /// The gradient of hovered picker components.
17731
+ /// The gradient of the hovered Picker components.
17294
17732
  /// @group picker
17295
17733
  $kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
17296
- /// The shadow of hovered picker components.
17734
+ /// The shadow of the hovered Picker components.
17297
17735
  /// @group picker
17298
17736
  $kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
17299
17737
 
17300
- /// The background color of focused picker components.
17738
+ /// The background color of the focused Picker components.
17301
17739
  /// @group picker
17302
17740
  $kendo-picker-focus-bg: $kendo-button-focus-bg !default;
17303
- /// The text color of focused picker components.
17741
+ /// The text color of the focused Picker components.
17304
17742
  /// @group picker
17305
17743
  $kendo-picker-focus-text: $kendo-button-focus-text !default;
17306
- /// The border color of focused picker components.
17744
+ /// The border color of the focused Picker components.
17307
17745
  /// @group picker
17308
17746
  $kendo-picker-focus-border: $kendo-button-focus-border !default;
17309
- /// The gradient of focused picker components.
17747
+ /// The gradient of the focused Picker components.
17310
17748
  /// @group picker
17311
17749
  $kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
17312
- /// The shadow of focused picker components.
17750
+ /// The shadow of the focused Picker components.
17313
17751
  /// @group picker
17314
17752
  $kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
17315
17753
 
17316
- /// The background color of disabled picker components.
17754
+ /// The background color of the disabled Picker components.
17317
17755
  /// @group picker
17318
17756
  $kendo-picker-disabled-bg: null !default;
17319
- /// The text color of disabled picker components.
17757
+ /// The text color of the disabled Picker components.
17320
17758
  /// @group picker
17321
17759
  $kendo-picker-disabled-text: null !default;
17322
- /// The border color of disabled picker components.
17760
+ /// The border color of the disabled Picker components.
17323
17761
  /// @group picker
17324
17762
  $kendo-picker-disabled-border: null !default;
17325
- /// The gradient of disabled picker components.
17763
+ /// The gradient of the disabled Picker components.
17326
17764
  /// @group picker
17327
17765
  $kendo-picker-disabled-gradient: null !default;
17328
- /// The shadow of disabled picker components.
17766
+ /// The shadow of the disabled Picker components.
17329
17767
  /// @group picker
17330
17768
  $kendo-picker-disabled-shadow: null !default;
17331
17769
 
17332
- /// The background color of outline picker components.
17770
+ /// The background color of the outline Picker components.
17333
17771
  /// @group picker
17334
17772
  $kendo-picker-outline-bg: null !default;
17335
- /// The text color of outline picker components.
17773
+ /// The text color of the outline Picker components.
17336
17774
  /// @group picker
17337
17775
  $kendo-picker-outline-text: $kendo-button-text !default;
17338
- /// The border color of outline picker components.
17776
+ /// The border color of the outline Picker components.
17339
17777
  /// @group picker
17340
17778
  $kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
17341
17779
 
17342
- /// The background color of outline hovered picker components.
17780
+ /// The background color of the outline hovered Picker components.
17343
17781
  /// @group picker
17344
17782
  $kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
17345
- /// The text color of outline hovered picker components.
17783
+ /// The text color of the outline hovered Picker components.
17346
17784
  /// @group picker
17347
17785
  $kendo-picker-outline-hover-text: k-contrast-legacy( $kendo-picker-outline-hover-bg ) !default;
17348
- /// The border color of outline hovered picker components.
17786
+ /// The border color of the outline hovered Picker components.
17349
17787
  /// @group picker
17350
17788
  $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
17351
17789
 
17352
- /// The background color of outline focused picker components.
17790
+ /// The background color of the outline focused Picker components.
17353
17791
  /// @group picker
17354
17792
  $kendo-picker-outline-focus-bg: null !default;
17355
- /// The text color of outline focused picker components.
17793
+ /// The text color of the outline focused Picker components.
17356
17794
  /// @group picker
17357
17795
  $kendo-picker-outline-focus-text: null !default;
17358
- /// The border color of outline focused picker components.
17796
+ /// The border color of the outline focused Picker components.
17359
17797
  /// @group picker
17360
17798
  $kendo-picker-outline-focus-border: null !default;
17361
- /// The shadow of outline focused picker components.
17799
+ /// The shadow of the outline focused Picker components.
17362
17800
  /// @group picker
17363
17801
  $kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
17364
17802
 
17365
- /// The background color of outline hovered and focused picker components.
17803
+ /// The background color of the outline hovered and focused Picker components.
17366
17804
  /// @group picker
17367
17805
  $kendo-picker-outline-hover-focus-bg: null !default;
17368
- /// The text color of outline hovered and focused picker components.
17806
+ /// The text color of the outline hovered and focused Picker components.
17369
17807
  /// @group picker
17370
17808
  $kendo-picker-outline-hover-focus-text: null !default;
17371
- /// The border color of outline hovered and focused picker components.
17809
+ /// The border color of the outline hovered and focused Picker components.
17372
17810
  /// @group picker
17373
17811
  $kendo-picker-outline-hover-focus-border: null !default;
17374
17812
 
17375
- /// The background color of flat picker components.
17813
+ /// The background color of the flat Picker components.
17376
17814
  /// @group picker
17377
17815
  $kendo-picker-flat-bg: null !default;
17378
- /// The text color of flat picker components.
17816
+ /// The text color of the flat Picker components.
17379
17817
  /// @group picker
17380
17818
  $kendo-picker-flat-text: $kendo-button-text !default;
17381
- /// The border color of flat picker components.
17819
+ /// The border color of the flat Picker components.
17382
17820
  /// @group picker
17383
17821
  $kendo-picker-flat-border: $kendo-button-border !default;
17384
17822
 
17385
- /// The background color of flat hovered picker components.
17823
+ /// The background color of the flat hovered Picker components.
17386
17824
  /// @group picker
17387
17825
  $kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
17388
- /// The text color of flat hovered picker components.
17826
+ /// The text color of the flat hovered Picker components.
17389
17827
  /// @group picker
17390
17828
  $kendo-picker-flat-hover-text: null !default;
17391
- /// The border color of flat hovered picker components.
17829
+ /// The border color of the flat hovered Picker components.
17392
17830
  /// @group picker
17393
17831
  $kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
17394
17832
 
17395
- /// The background color of flat focused picker components.
17833
+ /// The background color of the flat focused Picker components.
17396
17834
  /// @group picker
17397
17835
  $kendo-picker-flat-focus-bg: null !default;
17398
- /// The text color of flat focused picker components.
17836
+ /// The text color of the flat focused Picker components.
17399
17837
  /// @group picker
17400
17838
  $kendo-picker-flat-focus-text: null !default;
17401
- /// The border color of flat focused picker components.
17839
+ /// The border color of the flat focused Picker components.
17402
17840
  /// @group picker
17403
17841
  $kendo-picker-flat-focus-border: null !default;
17404
- /// The shadow of flat focused picker components.
17842
+ /// The shadow of the flat focused Picker components.
17405
17843
  /// @group picker
17406
17844
  $kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
17407
17845
 
17408
- /// The background color of flat hovered and focused picker components.
17846
+ /// The background color of the flat hovered and focused Picker components.
17409
17847
  /// @group picker
17410
17848
  $kendo-picker-flat-hover-focus-bg: null !default;
17411
- /// The text color of flat hovered and focused picker components.
17849
+ /// The text color of the flat hovered and focused Picker components.
17412
17850
  /// @group picker
17413
17851
  $kendo-picker-flat-hover-focus-text: null !default;
17414
- /// The border color of flat hovered and focused picker components.
17852
+ /// The border color of the flat hovered and focused Picker components.
17415
17853
  /// @group picker
17416
17854
  $kendo-picker-flat-hover-focus-border: null !default;
17417
17855
 
@@ -19556,33 +19994,33 @@ $_kendo-module-meta: (
19556
19994
  // #region @import "./_variables.scss"; -> scss/split-button/_variables.scss
19557
19995
  // Split-button
19558
19996
 
19559
- /// Focus shadow of the split button.
19997
+ /// The focus shadow of the SplitButton.
19560
19998
  /// @group split-button
19561
19999
  $kendo-split-button-focus-shadow: $kendo-button-focus-shadow !default;
19562
20000
 
19563
- /// Horizontal padding of the arrow button.
20001
+ /// The horizontal padding of the arrow Button.
19564
20002
  /// @group split-button
19565
20003
  $kendo-split-button-arrow-padding-x: $kendo-button-padding-y !default;
19566
- /// Horizontal padding of the small arrow button.
20004
+ /// The horizontal padding of the small arrow Button.
19567
20005
  /// @group split-button
19568
20006
  $kendo-split-button-sm-arrow-padding-x: $kendo-button-sm-padding-y !default;
19569
- /// Horizontal padding of the medium arrow button.
20007
+ /// The horizontal padding of the medium arrow Button.
19570
20008
  /// @group split-button
19571
20009
  $kendo-split-button-md-arrow-padding-x: $kendo-button-md-padding-y !default;
19572
- /// Horizontal padding of the large arrow button.
20010
+ /// The horizontal padding of the large arrow Button.
19573
20011
  /// @group split-button
19574
20012
  $kendo-split-button-lg-arrow-padding-x: $kendo-button-lg-padding-y !default;
19575
20013
 
19576
- /// Vertical padding of the arrow button.
20014
+ /// The vertical padding of the arrow Button.
19577
20015
  /// @group split-button
19578
20016
  $kendo-split-button-arrow-padding-y: $kendo-button-padding-y !default;
19579
- /// Vertical padding of the small arrow button.
20017
+ /// The vertical padding of the small arrow Button.
19580
20018
  /// @group split-button
19581
20019
  $kendo-split-button-sm-arrow-padding-y: $kendo-button-sm-padding-y !default;
19582
- /// Vertical padding of the medium arrow button.
20020
+ /// The vertical padding of the medium arrow Button.
19583
20021
  /// @group split-button
19584
20022
  $kendo-split-button-md-arrow-padding-y: $kendo-button-md-padding-y !default;
19585
- /// Vertical padding of the large arrow button.
20023
+ /// The vertical padding of the large arrow Button.
19586
20024
  /// @group split-button
19587
20025
  $kendo-split-button-lg-arrow-padding-y: $kendo-button-lg-padding-y !default;
19588
20026
 
@@ -20477,44 +20915,45 @@ $_kendo-module-meta: (
20477
20915
 
20478
20916
  // Radio button
20479
20917
 
20480
- /// Border radius of radio button.
20918
+ /// The border radius of the RadioButton.
20481
20919
  /// @group radio
20482
20920
  $kendo-radio-radius: 50% !default;
20483
- /// Border width of radio button.
20921
+ /// The border width of the RadioButton.
20484
20922
  /// @group radio
20485
20923
  $kendo-radio-border-width: 1px !default;
20486
20924
 
20487
- /// Size of a small radio button.
20925
+ /// The size of a small RadioButton.
20488
20926
  /// @group radio
20489
20927
  $kendo-radio-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
20490
- /// Size of a medium radio button.
20928
+ /// The size of a medium RadioButton.
20491
20929
  /// @group radio
20492
20930
  $kendo-radio-md-size: k-map-get( $kendo-spacing, 4 ) !default;
20493
- /// Size of a large radio button.
20931
+ /// The size of a large RadioButton.
20494
20932
  /// @group radio
20495
20933
  $kendo-radio-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
20496
20934
 
20497
- /// Glyph size of a small radio button.
20935
+ /// The glyph size of a small RadioButton.
20498
20936
  /// @group radio
20499
20937
  $kendo-radio-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
20500
- /// Glyph size of a medium radio button.
20938
+ /// The glyph size of a medium RadioButton.
20501
20939
  /// @group radio
20502
20940
  $kendo-radio-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
20503
- /// Glyph size of a large radio button.
20941
+ /// The glyph size of a large RadioButton.
20504
20942
  /// @group radio
20505
20943
  $kendo-radio-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
20506
20944
 
20507
- /// Ripple size of a small radio button.
20945
+ /// The ripple size of a small RadioButton.
20508
20946
  /// @group radio
20509
20947
  $kendo-radio-sm-ripple-size: 300% !default;
20510
- /// Ripple size of a medium radio button.
20948
+ /// The ripple size of a medium RadioButton.
20511
20949
  /// @group radio
20512
20950
  $kendo-radio-md-ripple-size: 300% !default;
20513
- /// Ripple size of a large radio button.
20951
+ /// The ripple size of a large RadioButton.
20514
20952
  /// @group radio
20515
20953
  $kendo-radio-lg-ripple-size: 300% !default;
20516
20954
 
20517
- // Map with the different radio button sizes
20955
+ /// The map with the different RadioButton sizes.
20956
+ /// @group radio
20518
20957
  $kendo-radio-sizes: (
20519
20958
  sm: (
20520
20959
  size: $kendo-radio-sm-size,
@@ -20533,127 +20972,128 @@ $kendo-radio-sizes: (
20533
20972
  )
20534
20973
  ) !default;
20535
20974
 
20536
- /// Background color of radio button.
20975
+ /// The background color of the RadioButton.
20537
20976
  /// @group radio
20538
20977
  $kendo-radio-bg: $kendo-checkbox-bg !default;
20539
- /// Color of radio button.
20978
+ /// The color of the RadioButton.
20540
20979
  /// @group radio
20541
20980
  $kendo-radio-text: $kendo-checkbox-text !default;
20542
- /// Border color of radio button.
20981
+ /// The border color of the RadioButton.
20543
20982
  /// @group radio
20544
20983
  $kendo-radio-border: $kendo-checkbox-border !default;
20545
20984
 
20546
- /// Background color of hovered radio button.
20985
+ /// The background color of the hovered RadioButton.
20547
20986
  /// @group radio
20548
20987
  $kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
20549
- /// Color of hovered radio button.
20988
+ /// The color of the hovered RadioButton.
20550
20989
  /// @group radio
20551
20990
  $kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
20552
- /// Border color of hovered radio button.
20991
+ /// The border color of the hovered RadioButton.
20553
20992
  /// @group radio
20554
20993
  $kendo-radio-hover-border: $kendo-checkbox-hover-border !default;
20555
20994
 
20556
- /// Background color of checked radio button.
20995
+ /// The background color of the checked RadioButton.
20557
20996
  /// @group radio
20558
20997
  $kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
20559
- /// Color of checked radio button.
20998
+ /// The color of the checked RadioButton.
20560
20999
  /// @group radio
20561
21000
  $kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
20562
- /// Border color of checked radio button.
21001
+ /// The border color of the checked RadioButton.
20563
21002
  /// @group radio
20564
21003
  $kendo-radio-checked-border: $kendo-checkbox-checked-border !default;
20565
21004
 
20566
- /// Border color of focused radio button.
21005
+ /// The border color of the focused RadioButton.
20567
21006
  /// @group radio
20568
21007
  $kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
20569
- /// Box shadow of focused radio button.
21008
+ /// The box shadow of the focused RadioButton.
20570
21009
  /// @group radio
20571
21010
  $kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
20572
- /// Border color of focused and checked radio button.
21011
+
21012
+ /// The border color of the focused and checked RadioButton.
20573
21013
  /// @group radio
20574
21014
  $kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
20575
- /// Box shadow of focused and checked radio button.
21015
+ /// The box shadow of the focused and checked RadioButton.
20576
21016
  /// @group radio
20577
21017
  $kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
20578
21018
 
20579
- /// Background color of disabled radio button.
21019
+ /// The background color of the disabled RadioButton.
20580
21020
  /// @group radio
20581
21021
  $kendo-radio-disabled-bg: $kendo-checkbox-disabled-bg !default;
20582
- /// Color of disabled radio button.
21022
+ /// The color of the disabled RadioButton.
20583
21023
  /// @group radio
20584
21024
  $kendo-radio-disabled-text: $kendo-checkbox-disabled-text !default;
20585
- /// Border color of disabled radio button.
21025
+ /// The border color of the disabled RadioButton.
20586
21026
  /// @group radio
20587
21027
  $kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
20588
21028
 
20589
- /// Background color of disabled and checked radio button.
21029
+ /// The background color of the disabled and checked RadioButton.
20590
21030
  /// @group radio
20591
21031
  $kendo-radio-disabled-checked-bg: $kendo-checkbox-disabled-checked-bg !default;
20592
- /// Color of disabled and checked radio button.
21032
+ /// The color of the disabled and checked RadioButton.
20593
21033
  /// @group radio
20594
21034
  $kendo-radio-disabled-checked-text: $kendo-checkbox-disabled-checked-text !default;
20595
- /// Border color of disabled and checked radio button.
21035
+ /// The border color of disabled and checked RadioButton.
20596
21036
  /// @group radio
20597
21037
  $kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
20598
21038
 
20599
- /// Background color of invalid radio button.
21039
+ /// The background color of the invalid RadioButton.
20600
21040
  /// @group radio
20601
21041
  $kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
20602
- /// Color of invalid radio button.
21042
+ /// The color of the invalid RadioButton.
20603
21043
  /// @group radio
20604
21044
  $kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
20605
- /// Border color of invalid radio button.
21045
+ /// The border color of the invalid RadioButton.
20606
21046
  /// @group radio
20607
21047
  $kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
20608
21048
 
20609
21049
 
20610
21050
  // Radio indicator
20611
21051
 
20612
- /// Type of radio button indicator.
21052
+ /// The type of the RadioButton indicator.
20613
21053
  /// @group radio
20614
21054
  $kendo-radio-indicator-type: image !default;
20615
21055
 
20616
- /// Glyph font family of radio button indicator.
21056
+ /// The font family of the RadioButton indicator glyph.
20617
21057
  /// @group radio
20618
21058
  $kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
20619
- /// Glyph of radio button indicator.
21059
+ /// The glyph of the RadioButton indicator.
20620
21060
  /// @group radio
20621
21061
  $kendo-radio-checked-glyph: "\e308" !default;
20622
21062
 
20623
- /// Image of checked radio button indicator.
21063
+ /// The image of the checked RadioButton indicator.
20624
21064
  /// @group radio
20625
21065
  $kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
20626
- /// Image of disabled and checked radio button indicator.
21066
+ /// The image of the disabled and checked RadioButton indicator.
20627
21067
  /// @group radio
20628
21068
  $kendo-radio-disabled-checked-image: null !default;
20629
21069
 
20630
21070
 
20631
21071
  // Radio label
20632
21072
 
20633
- /// The horizontal margin of the radio button inside of a label.
21073
+ /// The horizontal margin of the RadioButton inside of a label.
20634
21074
  /// @group radio
20635
21075
  $kendo-radio-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
20636
21076
 
20637
21077
 
20638
21078
  // Radio list
20639
21079
 
20640
- /// The horizontal list item margin of radio button.
21080
+ /// The horizontal list item margin of the RadioButton.
20641
21081
  /// @group radio
20642
21082
  $kendo-radio-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
20643
- /// The horizontal list item padding of radio button.
21083
+ /// The horizontal list item padding of the RadioButton.
20644
21084
  /// @group radio
20645
21085
  $kendo-radio-list-item-padding-x: 0px !default;
20646
- /// The vertical list item padding of radio button.
21086
+ /// The vertical list item padding of the RadioButton.
20647
21087
  /// @group radio
20648
21088
  $kendo-radio-list-item-padding-y: $kendo-list-md-item-padding-y !default;
20649
21089
 
20650
21090
 
20651
21091
  // Radio ripple
20652
21092
 
20653
- /// Background color of radio button ripple.
21093
+ /// The background color of the RadioButton ripple.
20654
21094
  /// @group radio
20655
21095
  $kendo-radio-ripple-bg: $kendo-radio-checked-bg !default;
20656
- /// Opacity of radio button ripple.
21096
+ /// The opacity of the RadioButton ripple.
20657
21097
  /// @group radio
20658
21098
  $kendo-radio-ripple-opacity: .25 !default;
20659
21099
 
@@ -25688,26 +26128,27 @@ $_kendo-module-meta: (
25688
26128
  // #region @import "./_variables.scss"; -> scss/switch/_variables.scss
25689
26129
  // Switch
25690
26130
 
25691
- /// Font family of the switch.
26131
+ /// The font family of the Switch.
25692
26132
  /// @group switch
25693
26133
  $kendo-switch-font-family: null !default;
25694
26134
 
25695
- /// Border width of the switch track.
26135
+ /// The border width of the Switch track.
25696
26136
  /// @group switch
25697
26137
  $kendo-switch-track-border-width: 1px !default;
25698
26138
 
25699
- /// Border width of the switch thumb.
26139
+ /// The border width of the Switch thumb.
25700
26140
  /// @group switch
25701
26141
  $kendo-switch-thumb-border-width: 1px !default;
25702
26142
 
25703
- /// Text transform of the switch label.
26143
+ /// The text transform of the Switch label.
25704
26144
  /// @group switch
25705
26145
  $kendo-switch-label-text-transform: uppercase !default;
25706
- /// Display of the switch label.
26146
+
26147
+ /// The display of the Switch label.
25707
26148
  /// @group switch
25708
26149
  $kendo-switch-label-display: inline !default;
25709
26150
 
25710
- /// Map with the different switch sizes.
26151
+ /// The map with the different Switch sizes.
25711
26152
  /// @group switch
25712
26153
  $kendo-switch-sizes: (
25713
26154
  sm: ( font-size: 10px, track-width: 52px, track-height: 26px, thumb-width: 26px, thumb-height: 26px, thumb-offset: 0px, label-offset: 4px ),
@@ -25715,166 +26156,166 @@ $kendo-switch-sizes: (
25715
26156
  lg: ( font-size: 10px, track-width: 68px, track-height: 34px, thumb-width: 34px, thumb-height: 34px, thumb-offset: 0px, label-offset: 8px )
25716
26157
  ) !default;
25717
26158
 
25718
- /// The background of the track when the switch is not checked.
26159
+ /// The background of the track when the Switch is not checked.
25719
26160
  /// @group switch
25720
26161
  $kendo-switch-off-track-bg: $kendo-component-bg !default;
25721
- /// The text color of the track when the switch is not checked.
26162
+ /// The text color of the track when the Switch is not checked.
25722
26163
  /// @group switch
25723
26164
  $kendo-switch-off-track-text: $kendo-component-text !default;
25724
- /// The border color of the track when the switch is not checked.
26165
+ /// The border color of the track when the Switch is not checked.
25725
26166
  /// @group switch
25726
26167
  $kendo-switch-off-track-border: k-try-shade( $kendo-switch-off-track-bg, 8% ) !default;
25727
- /// The background gradient of the track when the switch is not checked.
26168
+ /// The background gradient of the track when the Switch is not checked.
25728
26169
  /// @group switch
25729
26170
  $kendo-switch-off-track-gradient: null !default;
25730
26171
 
25731
- /// The background of the track when the hovered switch is not checked.
26172
+ /// The background of the track when the hovered Switch is not checked.
25732
26173
  /// @group switch
25733
26174
  $kendo-switch-off-track-hover-bg: null !default;
25734
- /// The text color of the track when the hovered switch is not checked.
26175
+ /// The text color of the track when the hovered Switch is not checked.
25735
26176
  /// @group switch
25736
26177
  $kendo-switch-off-track-hover-text: null !default;
25737
- /// The border color of the track when the hovered switch is not checked.
26178
+ /// The border color of the track when the hovered Switch is not checked.
25738
26179
  /// @group switch
25739
26180
  $kendo-switch-off-track-hover-border: null !default;
25740
- /// The background gradient of the track when the hovered switch is not checked.
26181
+ /// The background gradient of the track when the hovered Switch is not checked.
25741
26182
  /// @group switch
25742
26183
  $kendo-switch-off-track-hover-gradient: null !default;
25743
26184
 
25744
- /// The background of the track when the focused switch is not checked.
26185
+ /// The background of the track when the focused Switch is not checked.
25745
26186
  /// @group switch
25746
26187
  $kendo-switch-off-track-focus-bg: null !default;
25747
- /// The text color of the track when the focused switch is not checked.
26188
+ /// The text color of the track when the focused Switch is not checked.
25748
26189
  /// @group switch
25749
26190
  $kendo-switch-off-track-focus-text: null !default;
25750
- /// The border color of the track when the focused switch is not checked.
26191
+ /// The border color of the track when the focused Switch is not checked.
25751
26192
  /// @group switch
25752
26193
  $kendo-switch-off-track-focus-border: null !default;
25753
- /// The background gradient of the track when the focused switch is not checked.
26194
+ /// The background gradient of the track when the focused Switch is not checked.
25754
26195
  /// @group switch
25755
26196
  $kendo-switch-off-track-focus-gradient: null !default;
25756
- /// The ring around the track when the focused switch is not checked.
26197
+ /// The ring around the track when the focused Switch is not checked.
25757
26198
  /// @group switch
25758
26199
  $kendo-switch-off-track-focus-ring: 2px solid rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 ) !default;
25759
26200
 
25760
- /// The background of the track when the disabled switch is not checked.
26201
+ /// The background of the track when the disabled Switch is not checked.
25761
26202
  /// @group switch
25762
26203
  $kendo-switch-off-track-disabled-bg: null !default;
25763
- /// The text color of the track when the disabled switch is not checked.
26204
+ /// The text color of the track when the disabled Switch is not checked.
25764
26205
  /// @group switch
25765
26206
  $kendo-switch-off-track-disabled-text: null !default;
25766
- /// The border color of the track when the disabled switch is not checked.
26207
+ /// The border color of the track when the disabled Switch is not checked.
25767
26208
  /// @group switch
25768
26209
  $kendo-switch-off-track-disabled-border: null !default;
25769
- /// The background gradient of the track when the disabled switch is not checked.
26210
+ /// The background gradient of the track when the disabled Switch is not checked.
25770
26211
  /// @group switch
25771
26212
  $kendo-switch-off-track-disabled-gradient: null !default;
25772
26213
 
25773
- /// The background of the thumb when the switch is not checked.
26214
+ /// The background of the thumb when the Switch is not checked.
25774
26215
  /// @group switch
25775
26216
  $kendo-switch-off-thumb-bg: $kendo-base-bg !default;
25776
- /// The text color of the thumb when the switch is not checked.
26217
+ /// The text color of the thumb when the Switch is not checked.
25777
26218
  /// @group switch
25778
26219
  $kendo-switch-off-thumb-text: $kendo-base-text !default;
25779
- /// The border color of the thumb when the switch is not checked.
26220
+ /// The border color of the thumb when the Switch is not checked.
25780
26221
  /// @group switch
25781
26222
  $kendo-switch-off-thumb-border: $kendo-base-border !default;
25782
- /// The background gradient of the thumb when the switch is not checked.
26223
+ /// The background gradient of the thumb when the Switch is not checked.
25783
26224
  /// @group switch
25784
26225
  $kendo-switch-off-thumb-gradient: null !default;
25785
26226
 
25786
- /// The background of the thumb when the hovered switch is not checked.
26227
+ /// The background of the thumb when the hovered Switch is not checked.
25787
26228
  /// @group switch
25788
26229
  $kendo-switch-off-thumb-hover-bg: null !default;
25789
- /// The text color of the thumb when the hovered switch is not checked.
26230
+ /// The text color of the thumb when the hovered Switch is not checked.
25790
26231
  /// @group switch
25791
26232
  $kendo-switch-off-thumb-hover-text: null !default;
25792
- /// The border color of the thumb when the hovered switch is not checked.
26233
+ /// The border color of the thumb when the hovered Switch is not checked.
25793
26234
  /// @group switch
25794
26235
  $kendo-switch-off-thumb-hover-border: null !default;
25795
- /// The background gradient of the thumb when the hovered switch is not checked.
26236
+ /// The background gradient of the thumb when the hovered Switch is not checked.
25796
26237
  /// @group switch
25797
26238
  $kendo-switch-off-thumb-hover-gradient: null !default;
25798
26239
 
25799
26240
 
25800
- /// The background of the track when the switch is checked.
26241
+ /// The background of the track when the Switch is checked.
25801
26242
  /// @group switch
25802
26243
  $kendo-switch-on-track-bg: $kendo-color-primary !default;
25803
- /// The text color of the track when the switch is checked.
26244
+ /// The text color of the track when the Switch is checked.
25804
26245
  /// @group switch
25805
26246
  $kendo-switch-on-track-text: k-contrast-legacy( $kendo-switch-on-track-bg ) !default;
25806
- /// The border color of the track when the switch is checked.
26247
+ /// The border color of the track when the Switch is checked.
25807
26248
  /// @group switch
25808
26249
  $kendo-switch-on-track-border: $kendo-switch-on-track-bg !default;
25809
- /// The background gradient of the track when the switch is checked.
26250
+ /// The background gradient of the track when the Switch is checked.
25810
26251
  /// @group switch
25811
26252
  $kendo-switch-on-track-gradient: null !default;
25812
26253
 
25813
- /// The background of the track when the hovered switch is checked.
26254
+ /// The background of the track when the hovered Switch is checked.
25814
26255
  /// @group switch
25815
26256
  $kendo-switch-on-track-hover-bg: null !default;
25816
- /// The text color of the track when the hovered switch is checked.
26257
+ /// The text color of the track when the hovered Switch is checked.
25817
26258
  /// @group switch
25818
26259
  $kendo-switch-on-track-hover-text: null !default;
25819
- /// The border color of the track when the hovered switch is checked.
26260
+ /// The border color of the track when the hovered Switch is checked.
25820
26261
  /// @group switch
25821
26262
  $kendo-switch-on-track-hover-border: null !default;
25822
- /// The background gradient of the track when the hovered switch is checked.
26263
+ /// The background gradient of the track when the hovered Switch is checked.
25823
26264
  /// @group switch
25824
26265
  $kendo-switch-on-track-hover-gradient: null !default;
25825
26266
 
25826
- /// The background of the track when the focused switch is checked.
26267
+ /// The background of the track when the focused Switch is checked.
25827
26268
  /// @group switch
25828
26269
  $kendo-switch-on-track-focus-bg: null !default;
25829
- /// The text color of the track when the focused switch is checked.
26270
+ /// The text color of the track when the focused Switch is checked.
25830
26271
  /// @group switch
25831
26272
  $kendo-switch-on-track-focus-text: null !default;
25832
- /// The border color of the track when the focused switch is checked.
26273
+ /// The border color of the track when the focused Switch is checked.
25833
26274
  /// @group switch
25834
26275
  $kendo-switch-on-track-focus-border: null !default;
25835
- /// The background gradient of the track when the focused switch is checked.
26276
+ /// The background gradient of the track when the focused Switch is checked.
25836
26277
  /// @group switch
25837
26278
  $kendo-switch-on-track-focus-gradient: null !default;
25838
- /// The ring around the track when the focused switch is checked.
26279
+ /// The ring around the track when the focused Switch is checked.
25839
26280
  /// @group switch
25840
26281
  $kendo-switch-on-track-focus-ring: 2px solid rgba( $kendo-switch-on-track-border, .25 ) !default;
25841
26282
 
25842
- /// The background of the track when the disabled switch is checked.
26283
+ /// The background of the track when the disabled Switch is checked.
25843
26284
  /// @group switch
25844
26285
  $kendo-switch-on-track-disabled-bg: null !default;
25845
- /// The text color of the track when the disabled switch is checked.
26286
+ /// The text color of the track when the disabled Switch is checked.
25846
26287
  /// @group switch
25847
26288
  $kendo-switch-on-track-disabled-text: null !default;
25848
- /// The border color of the track when the disabled switch is checked.
26289
+ /// The border color of the track when the disabled Switch is checked.
25849
26290
  /// @group switch
25850
26291
  $kendo-switch-on-track-disabled-border: null !default;
25851
- /// The background gradient of the track when the disabled switch is checked.
26292
+ /// The background gradient of the track when the disabled Switch is checked.
25852
26293
  /// @group switch
25853
26294
  $kendo-switch-on-track-disabled-gradient: null !default;
25854
26295
 
25855
- /// The background of the thumb when the switch is checked.
26296
+ /// The background of the thumb when the Switch is checked.
25856
26297
  /// @group switch
25857
26298
  $kendo-switch-on-thumb-bg: $kendo-base-bg !default;
25858
- /// The text color of the thumb when the switch is checked.
26299
+ /// The text color of the thumb when the Switch is checked.
25859
26300
  /// @group switch
25860
26301
  $kendo-switch-on-thumb-text: $kendo-base-text !default;
25861
- /// The border color of the thumb when the switch is checked.
26302
+ /// The border color of the thumb when the Switch is checked.
25862
26303
  /// @group switch
25863
26304
  $kendo-switch-on-thumb-border: $kendo-base-border !default;
25864
- /// The background gradient of the thumb when the switch is checked.
26305
+ /// The background gradient of the thumb when the Switch is checked.
25865
26306
  /// @group switch
25866
26307
  $kendo-switch-on-thumb-gradient: null !default;
25867
26308
 
25868
- /// The background of the thumb when the hovered switch is checked.
26309
+ /// The background of the thumb when the hovered Switch is checked.
25869
26310
  /// @group switch
25870
26311
  $kendo-switch-on-thumb-hover-bg: null !default;
25871
- /// The text color of the thumb when the hovered switch is checked.
26312
+ /// The text color of the thumb when the hovered Switch is checked.
25872
26313
  /// @group switch
25873
26314
  $kendo-switch-on-thumb-hover-text: null !default;
25874
- /// The border color of the thumb when the hovered switch is checked.
26315
+ /// The border color of the thumb when the hovered Switch is checked.
25875
26316
  /// @group switch
25876
26317
  $kendo-switch-on-thumb-hover-border: null !default;
25877
- /// The background gradient of the thumb when the hovered switch is checked.
26318
+ /// The background gradient of the thumb when the hovered Switch is checked.
25878
26319
  /// @group switch
25879
26320
  $kendo-switch-on-thumb-hover-gradient: null !default;
25880
26321