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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.scss CHANGED
@@ -1277,6 +1277,30 @@ $_kendo-escape-class-name: (
1277
1277
  @return map-values( $map );
1278
1278
  }
1279
1279
 
1280
+ /// Returns negative values of a number or numbers in a list.
1281
+ /// @param {Map} $map - The map to get the values from.
1282
+ /// @return {Map} - A comma separated list of the values in `$map`.
1283
+ ///
1284
+ /// @example scss - Usage
1285
+ /// @debug k-map-negate( ( 0: 0, 1: 1px, 2: 2px ) ); // => ("-1": -1px, "-2": -2px)
1286
+ @function k-map-negate($map) {
1287
+ $_map-neg: ();
1288
+
1289
+ @if( k-meta-type-of($map) != map ) {
1290
+ @error "expected type of #{$map} is map, was #{k-meta-type-of($map)}";
1291
+ };
1292
+ @each $key, $value in $map {
1293
+ $_key-neg: "-" + $key;
1294
+
1295
+ @if( k-meta-type-of($value) == number and $value != 0) {
1296
+ $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );
1297
+ }
1298
+ }
1299
+
1300
+ @return $_map-neg;
1301
+
1302
+ }
1303
+
1280
1304
  // #endregion
1281
1305
  // #region @import "./_meta.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_meta.import.scss
1282
1306
  // Adapted from https://css-tricks.com/snippets/sass/advanced-type-checking/
@@ -6316,14 +6340,32 @@ $kendo-utils: (
6316
6340
  video: k-string-unquote("16 / 9")
6317
6341
  ),
6318
6342
  "container": (),
6319
- "columns": (),
6343
+ "columns": (
6344
+ 1: 1,
6345
+ 2: 2,
6346
+ 3: 3,
6347
+ 4: 4,
6348
+ 5: 5,
6349
+ 6: 6,
6350
+ 7: 7,
6351
+ 8: 8,
6352
+ 9: 9,
6353
+ 10: 10,
6354
+ 11: 11,
6355
+ 12: 12,
6356
+ auto: auto
6357
+ ),
6320
6358
  "break-after": (),
6321
6359
  "break-before": (),
6322
6360
  "break-inside": (),
6323
6361
  "box-decoration-break": (),
6324
- "box-sizing": (),
6362
+ "box-sizing": (
6363
+ border: border-box,
6364
+ content: content-box
6365
+ ),
6325
6366
  "display": (
6326
6367
  none,
6368
+ contents,
6327
6369
  block,
6328
6370
  inline,
6329
6371
  inline-block,
@@ -6333,6 +6375,8 @@ $kendo-utils: (
6333
6375
  inline-grid,
6334
6376
  table,
6335
6377
  inline-table,
6378
+ table-row,
6379
+ table-cell,
6336
6380
  list-item
6337
6381
  ),
6338
6382
  "float": (
@@ -6347,26 +6391,37 @@ $kendo-utils: (
6347
6391
  none
6348
6392
  ),
6349
6393
  "isolation": (),
6350
- "object-fit": (),
6351
- "object-position": (),
6394
+ "object-fit": (
6395
+ contain,
6396
+ cover,
6397
+ fill,
6398
+ scale-down,
6399
+ initial,
6400
+ none
6401
+ ),
6402
+ "object-position": (
6403
+ center: center,
6404
+ top: top,
6405
+ right: right,
6406
+ bottom: bottom,
6407
+ left: left,
6408
+ top-left: top left,
6409
+ top-right: top right,
6410
+ bottom-left: bottom left,
6411
+ bottom-right: bottom right
6412
+ ),
6352
6413
  "overflow": (
6353
6414
  auto: auto,
6354
6415
  hidden: hidden,
6355
6416
  visible: visible,
6356
6417
  scroll: scroll,
6357
- clip: clip,
6358
- x-auto: auto,
6359
- x-hidden: hidden,
6360
- x-visible: visible,
6361
- x-scroll: scroll,
6362
- x-clip: clip,
6363
- y-auto: auto,
6364
- y-hidden: hidden,
6365
- y-visible: visible,
6366
- y-scroll: scroll,
6367
- y-clip: clip
6418
+ clip: clip
6368
6419
  ),
6369
6420
  "overscroll": (),
6421
+ "placement": k-map-merge( $kendo-spacing, (
6422
+ // sass-lint:disable-block indentation
6423
+ -1: -1px
6424
+ )),
6370
6425
  "position": (
6371
6426
  static,
6372
6427
  relative,
@@ -6380,8 +6435,9 @@ $kendo-utils: (
6380
6435
  -1: -1px
6381
6436
  ),
6382
6437
  "visibility": (
6383
- visible,
6384
- hidden
6438
+ visible: visible,
6439
+ invisible: hidden,
6440
+ collapse: collapse
6385
6441
  ),
6386
6442
  "zindex": (
6387
6443
  0: 0,
@@ -6481,6 +6537,19 @@ $kendo-utils: (
6481
6537
  11: 11,
6482
6538
  12: 12,
6483
6539
  13: 13,
6540
+ -1: -1,
6541
+ -2: -2,
6542
+ -3: -3,
6543
+ -4: -4,
6544
+ -5: -5,
6545
+ -6: -6,
6546
+ -7: -7,
6547
+ -8: -8,
6548
+ -9: -9,
6549
+ -10: -10,
6550
+ -11: -11,
6551
+ -12: -12,
6552
+ -13: -13,
6484
6553
  auto: auto
6485
6554
  ),
6486
6555
  "grid-column-end": (
@@ -6497,6 +6566,19 @@ $kendo-utils: (
6497
6566
  11: 11,
6498
6567
  12: 12,
6499
6568
  13: 13,
6569
+ -1: -1,
6570
+ -2: -2,
6571
+ -3: -3,
6572
+ -4: -4,
6573
+ -5: -5,
6574
+ -6: -6,
6575
+ -7: -7,
6576
+ -8: -8,
6577
+ -9: -9,
6578
+ -10: -10,
6579
+ -11: -11,
6580
+ -12: -12,
6581
+ -13: -13,
6500
6582
  auto: auto
6501
6583
  ),
6502
6584
  "grid-column-span": (
@@ -6529,6 +6611,19 @@ $kendo-utils: (
6529
6611
  11: 11,
6530
6612
  12: 12,
6531
6613
  13: 13,
6614
+ -1: -1,
6615
+ -2: -2,
6616
+ -3: -3,
6617
+ -4: -4,
6618
+ -5: -5,
6619
+ -6: -6,
6620
+ -7: -7,
6621
+ -8: -8,
6622
+ -9: -9,
6623
+ -10: -10,
6624
+ -11: -11,
6625
+ -12: -12,
6626
+ -13: -13,
6532
6627
  auto: auto
6533
6628
  ),
6534
6629
  "grid-row-end": (
@@ -6545,6 +6640,19 @@ $kendo-utils: (
6545
6640
  11: 11,
6546
6641
  12: 12,
6547
6642
  13: 13,
6643
+ -1: -1,
6644
+ -2: -2,
6645
+ -3: -3,
6646
+ -4: -4,
6647
+ -5: -5,
6648
+ -6: -6,
6649
+ -7: -7,
6650
+ -8: -8,
6651
+ -9: -9,
6652
+ -10: -10,
6653
+ -11: -11,
6654
+ -12: -12,
6655
+ -13: -13,
6548
6656
  auto: auto
6549
6657
  ),
6550
6658
  "grid-row-span": (
@@ -6566,6 +6674,7 @@ $kendo-utils: (
6566
6674
  "grid-auto-flow": (
6567
6675
  row: row,
6568
6676
  col: column,
6677
+ dense: dense,
6569
6678
  row-dense: row dense,
6570
6679
  col-dense: column dense,
6571
6680
  unset: unset
@@ -6725,7 +6834,8 @@ $kendo-utils: (
6725
6834
  ),
6726
6835
 
6727
6836
  // Spacing
6728
- "margin": k-map-merge( $kendo-spacing, (
6837
+ "margin": k-map-merge( $kendo-spacing,
6838
+ k-map-negate( $kendo-spacing), (
6729
6839
  // sass-lint:disable-block indentation
6730
6840
  // TODO: remove this extension once we fix docs
6731
6841
  xs: k-map-get( $kendo-spacing, 1 ),
@@ -6734,7 +6844,8 @@ $kendo-utils: (
6734
6844
  lg: k-map-get( $kendo-spacing, 4 ),
6735
6845
  xl: k-map-get( $kendo-spacing, 6 ),
6736
6846
  thin: k-map-get( $kendo-spacing, 0.5 ), // sass-lint:disable-line leading-zero
6737
- hair: k-map-get( $kendo-spacing, 1px )
6847
+ hair: k-map-get( $kendo-spacing, 1px ),
6848
+ auto: auto
6738
6849
  )),
6739
6850
  "padding": k-map-merge( $kendo-spacing, (
6740
6851
  // sass-lint:disable-block indentation
@@ -6815,13 +6926,19 @@ $kendo-utils: (
6815
6926
  "font-variant-numeric": (),
6816
6927
  "letter-spacing": (),
6817
6928
  "line-height": (),
6818
- "list-style-type": (),
6929
+ "list-style-type": (
6930
+ none,
6931
+ disc,
6932
+ decimal
6933
+ ),
6819
6934
  "list-style-position": (),
6820
6935
  "text-align": (
6821
6936
  left,
6822
6937
  right,
6823
6938
  center,
6824
- justify
6939
+ justify,
6940
+ start,
6941
+ end
6825
6942
  ),
6826
6943
  "text-color": k-map-merge( $kendo-theme-colors, (
6827
6944
  // sass-lint:disable-block indentation
@@ -6831,7 +6948,12 @@ $kendo-utils: (
6831
6948
  "black": black,
6832
6949
  "white": white
6833
6950
  )),
6834
- "text-decoration": (),
6951
+ "text-decoration": (
6952
+ underline: underline,
6953
+ overline: overline,
6954
+ line-through: line-through,
6955
+ no-underline: none
6956
+ ),
6835
6957
  "text-decoration-width": (),
6836
6958
  "text-decoration-style": (),
6837
6959
  "text-decoration-color": (),
@@ -6847,7 +6969,16 @@ $kendo-utils: (
6847
6969
  ellipsis: ellipsis
6848
6970
  ),
6849
6971
  "text-indent": (),
6850
- "vertical-align": (),
6972
+ "vertical-align": (
6973
+ baseline,
6974
+ top,
6975
+ middle,
6976
+ bottom,
6977
+ text-top,
6978
+ text-bottom,
6979
+ sub,
6980
+ super
6981
+ ),
6851
6982
  "white-space": (
6852
6983
  normal,
6853
6984
  nowrap,
@@ -6859,6 +6990,12 @@ $kendo-utils: (
6859
6990
  "word-break": (),
6860
6991
 
6861
6992
  // Background
6993
+ "background-clip": (
6994
+ border: border-box,
6995
+ padding: padding-box,
6996
+ content: content-box,
6997
+ text: text
6998
+ ),
6862
6999
  "background-color": k-map-merge( $kendo-theme-colors, (
6863
7000
  // sass-lint:disable-block indentation
6864
7001
  "inherit": inherit,
@@ -6880,6 +7017,10 @@ $kendo-utils: (
6880
7017
  dashed,
6881
7018
  dotted,
6882
7019
  double,
7020
+ // groove,
7021
+ // ridge,
7022
+ inset,
7023
+ outset,
6883
7024
  hidden,
6884
7025
  none
6885
7026
  ),
@@ -6904,13 +7045,20 @@ $kendo-utils: (
6904
7045
  dashed,
6905
7046
  dotted,
6906
7047
  double,
6907
- groove,
6908
- ridge,
7048
+ // groove,
7049
+ // ridge,
6909
7050
  inset,
6910
7051
  outset,
6911
7052
  none
6912
7053
  ),
6913
- "outline-color": (),
7054
+ "outline-color": k-map-merge( $kendo-theme-colors, (
7055
+ // sass-lint:disable-block indentation
7056
+ "inherit": inherit,
7057
+ "current": currentColor,
7058
+ "transparent": transparent,
7059
+ "black": black,
7060
+ "white": white
7061
+ )),
6914
7062
  "outline-offset": (
6915
7063
  0: 0,
6916
7064
  1: 1px,
@@ -6920,8 +7068,32 @@ $kendo-utils: (
6920
7068
  ),
6921
7069
 
6922
7070
  // Effects
7071
+ "box-shadow": (),
7072
+ "box-shadow-color": (),
7073
+ "opacity": (
7074
+ // sass-lint:disable-block leading-zero
7075
+ 0: 0,
7076
+ 5: 0.05,
7077
+ 10: 0.1,
7078
+ 20: 0.2,
7079
+ 30: 0.3,
7080
+ 40: 0.4,
7081
+ 50: 0.5,
7082
+ 60: 0.6,
7083
+ 70: 0.7,
7084
+ 80: 0.8,
7085
+ 90: 0.9,
7086
+ 100: 1
7087
+ ),
6923
7088
 
6924
7089
  // Filter
7090
+ "backdrop-blur": (
7091
+ DEFAULT: blur(8px),
7092
+ none: blur(0),
7093
+ sm: blur(4px),
7094
+ md: blur(6px),
7095
+ lg: blur(12px)
7096
+ ),
6925
7097
 
6926
7098
  // Table
6927
7099
  "border-collapse": (
@@ -7088,6 +7260,14 @@ $kendo-utils: (
7088
7260
  scroll: scroll-position,
7089
7261
  contents: contents,
7090
7262
  transform: transform
7263
+ ),
7264
+ "fill-stroke": (
7265
+ none: none,
7266
+ inherit: inherit,
7267
+ current: currentColor,
7268
+ "transparent": transparent,
7269
+ "black": black,
7270
+ "white": white
7091
7271
  )
7092
7272
  ) !default;
7093
7273
 
@@ -7203,6 +7383,18 @@ $kendo-utils: (
7203
7383
 
7204
7384
  }
7205
7385
 
7386
+ // #endregion
7387
+ // #region @import "./_box-sizing.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_box-sizing.scss
7388
+ // TODO: docs
7389
+
7390
+ @mixin kendo-utils--layout--box-sizing() {
7391
+
7392
+ // box-sizing utility classes
7393
+ $kendo-utils-box-sizing: k-map-get( $kendo-utils, "box-sizing" ) !default;
7394
+ @include generate-utils( box-sizing, box-sizing, $kendo-utils-box-sizing );
7395
+
7396
+ }
7397
+
7206
7398
  // #endregion
7207
7399
  // #region @import "./_clear.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_clear.scss
7208
7400
  // Clear documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/clear.
@@ -7235,6 +7427,83 @@ $kendo-utils: (
7235
7427
 
7236
7428
  }
7237
7429
 
7430
+ // #endregion
7431
+ // #region @import "./_columns.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_columns.scss
7432
+ // Columns documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/columns.
7433
+
7434
+ /// This is equivalent to `columns: 1;`. Element's content is displayed into 1 column.
7435
+ /// @name .k-columns-1
7436
+ /// @group columns
7437
+ /// @contextType css
7438
+
7439
+ /// This is equivalent to `columns: 2;`. Element's content is broken into 2 columns.
7440
+ /// @name .k-columns-2
7441
+ /// @group columns
7442
+ /// @contextType css
7443
+
7444
+ /// This is equivalent to `columns: 3;`. Element's content is broken into 3 columns.
7445
+ /// @name .k-columns-3
7446
+ /// @group columns
7447
+ /// @contextType css
7448
+
7449
+ /// This is equivalent to `columns: 4;`. Element's content is broken into 4 columns.
7450
+ /// @name .k-columns-4
7451
+ /// @group columns
7452
+ /// @contextType css
7453
+
7454
+ /// This is equivalent to `columns: 5;`. Element's content is broken into 5 columns.
7455
+ /// @name .k-columns-5
7456
+ /// @group columns
7457
+ /// @contextType css
7458
+
7459
+ /// This is equivalent to `columns: 6;`. Element's content is broken into 6 columns.
7460
+ /// @name .k-columns-6
7461
+ /// @group columns
7462
+ /// @contextType css
7463
+
7464
+ /// This is equivalent to `columns: 7;`. Element's content is broken into 7 columns.
7465
+ /// @name .k-columns-7
7466
+ /// @group columns
7467
+ /// @contextType css
7468
+
7469
+ /// This is equivalent to `columns: 8;`. Element's content is broken into 8 columns.
7470
+ /// @name .k-columns-8
7471
+ /// @group columns
7472
+ /// @contextType css
7473
+
7474
+ /// This is equivalent to `columns: 9;`. Element's content is broken into 9 columns.
7475
+ /// @name .k-columns-9
7476
+ /// @group columns
7477
+ /// @contextType css
7478
+
7479
+ /// This is equivalent to `columns: 10;`. Element's content is broken into 10 columns.
7480
+ /// @name .k-columns-10
7481
+ /// @group columns
7482
+ /// @contextType css
7483
+
7484
+ /// This is equivalent to `columns: 11;`. Element's content is broken into 11 columns.
7485
+ /// @name .k-columns-11
7486
+ /// @group columns
7487
+ /// @contextType css
7488
+
7489
+ /// This is equivalent to `columns: 12;`. Element's content is broken into 12 columns.
7490
+ /// @name .k-columns-12
7491
+ /// @group columns
7492
+ /// @contextType css
7493
+
7494
+ /// This is equivalent to `columns: auto;`.The number of columns is determined by other CSS properties, such as column-width.
7495
+ /// @name .k-columns-auto
7496
+ /// @group columns
7497
+ /// @contextType css
7498
+
7499
+ @mixin kendo-utils--layout--columns() {
7500
+
7501
+ // columns utility classes
7502
+ $kendo-utils-columns: k-map-get( $kendo-utils, "columns" ) !default;
7503
+ @include generate-utils( columns, columns, $kendo-utils-columns );
7504
+
7505
+ }
7506
+
7238
7507
  // #endregion
7239
7508
  // #region @import "./_display.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_display.scss
7240
7509
  /// 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.
@@ -7292,6 +7561,8 @@ $kendo-utils: (
7292
7561
  /// @group display
7293
7562
  /// @contextType css
7294
7563
 
7564
+ // TODO tables' parts
7565
+
7295
7566
  @mixin kendo-utils--layout--display() {
7296
7567
 
7297
7568
  // Display utility classes
@@ -7335,6 +7606,30 @@ $kendo-utils: (
7335
7606
 
7336
7607
  }
7337
7608
 
7609
+ // #endregion
7610
+ // #region @import "./_object-fit.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-fit.scss
7611
+ // TODO: docs
7612
+
7613
+ @mixin kendo-utils--layout--object-fit() {
7614
+
7615
+ // object-fit utility classes
7616
+ $kendo-utils-object-fit: k-map-get( $kendo-utils, "object-fit" ) !default;
7617
+ @include generate-utils( object-fit, object-fit, $kendo-utils-object-fit );
7618
+
7619
+ }
7620
+
7621
+ // #endregion
7622
+ // #region @import "./_object-position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-position.scss
7623
+ // TODO: docs
7624
+
7625
+ @mixin kendo-utils--layout--object-position() {
7626
+
7627
+ // object-position utility classes
7628
+ $kendo-utils-object-position: k-map-get( $kendo-utils, "object-position" ) !default;
7629
+ @include generate-utils( object-position, object-position, $kendo-utils-object-position );
7630
+
7631
+ }
7632
+
7338
7633
  // #endregion
7339
7634
  // #region @import "./_overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_overflow.scss
7340
7635
  /// 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.
@@ -7417,38 +7712,14 @@ $kendo-utils: (
7417
7712
  // Overflow utility classes
7418
7713
  $kendo-utils-overflow: k-map-get( $kendo-utils, "overflow" ) !default;
7419
7714
  @include generate-utils( overflow, overflow, $kendo-utils-overflow );
7420
-
7715
+ @include generate-utils( overflow-x, overflow-x, $kendo-utils-overflow );
7716
+ @include generate-utils( overflow-y, overflow-y, $kendo-utils-overflow );
7421
7717
  }
7422
7718
 
7423
7719
  // #endregion
7424
- // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
7720
+ // #region @import "./_placement.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_placement.scss
7425
7721
  // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
7426
7722
 
7427
- /// 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.
7428
- /// @name .k-pos-static
7429
- /// @group position
7430
- /// @contextType css
7431
-
7432
- /// 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.
7433
- /// @name .k-pos-relative
7434
- /// @group position
7435
- /// @contextType css
7436
-
7437
- /// 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.
7438
- /// @name .k-pos-absolute
7439
- /// @group position
7440
- /// @contextType css
7441
-
7442
- /// 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.
7443
- /// @name .k-pos-fixed
7444
- /// @group position
7445
- /// @contextType css
7446
-
7447
- /// 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.
7448
- /// @name .k-pos-sticky
7449
- /// @group position
7450
- /// @contextType css
7451
-
7452
7723
 
7453
7724
  // TODO: inset docs
7454
7725
 
@@ -7473,35 +7744,26 @@ $kendo-utils: (
7473
7744
  /// @group position
7474
7745
  /// @contextType css
7475
7746
 
7476
- @mixin kendo-utils--layout--position() {
7477
-
7478
- // Position utility classes
7479
- $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
7480
- @include generate-utils( pos, position, $kendo-utils-position );
7481
-
7747
+ @mixin kendo-utils--layout--placement() {
7748
+ // Top / right / bottom / left
7749
+ $kendo-utils-placement: k-map-get( $kendo-utils, "placement" ) !default;
7750
+ @include generate-utils( top, top, $kendo-utils-placement );
7751
+ @include generate-utils( right, right, $kendo-utils-placement );
7752
+ @include generate-utils( bottom, bottom, $kendo-utils-placement );
7753
+ @include generate-utils( left, left, $kendo-utils-placement );
7482
7754
 
7483
- // Legacy aliases
7484
- .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
7485
- .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
7486
- .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
7487
- .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
7488
- .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
7489
- .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
7490
- .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
7491
- .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
7492
- .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
7493
- .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
7494
7755
 
7756
+ // Position length utility classes
7757
+ @each $side in (top, right, bottom, left) {
7758
+ .#{$kendo-prefix}#{$side},
7759
+ .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
7760
+ }
7495
7761
 
7496
7762
  // Inset utility classes
7497
7763
  $kendo-utils-inset: k-map-get( $kendo-utils, "inset" ) !default;
7498
7764
  @include generate-utils( inset, inset, $kendo-utils-inset );
7499
7765
  @include generate-utils( inset-x, inset-inline, $kendo-utils-inset );
7500
7766
  @include generate-utils( inset-y, inset-block, $kendo-utils-inset );
7501
- @include generate-utils( top, top, $kendo-utils-inset );
7502
- @include generate-utils( right, right, $kendo-utils-inset );
7503
- @include generate-utils( bottom, bottom, $kendo-utils-inset );
7504
- @include generate-utils( left, left, $kendo-utils-inset );
7505
7767
  @include generate-utils( top-left, ( top, left ), $kendo-utils-inset );
7506
7768
  @include generate-utils( top-right, ( top, right ), $kendo-utils-inset );
7507
7769
  @include generate-utils( bottom-left, ( bottom, left ), $kendo-utils-inset );
@@ -7565,12 +7827,55 @@ $kendo-utils: (
7565
7827
  transform: translateX(-50%);
7566
7828
  }
7567
7829
 
7830
+ }
7568
7831
 
7569
- // Position length utility classes
7570
- @each $side in (top, right, bottom, left) {
7571
- .#{$kendo-prefix}#{$side},
7572
- .#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
7573
- }
7832
+ // #endregion
7833
+ // #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
7834
+ // Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
7835
+
7836
+ /// 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.
7837
+ /// @name .k-pos-static
7838
+ /// @group position
7839
+ /// @contextType css
7840
+
7841
+ /// 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.
7842
+ /// @name .k-pos-relative
7843
+ /// @group position
7844
+ /// @contextType css
7845
+
7846
+ /// 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.
7847
+ /// @name .k-pos-absolute
7848
+ /// @group position
7849
+ /// @contextType css
7850
+
7851
+ /// 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.
7852
+ /// @name .k-pos-fixed
7853
+ /// @group position
7854
+ /// @contextType css
7855
+
7856
+ /// 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.
7857
+ /// @name .k-pos-sticky
7858
+ /// @group position
7859
+ /// @contextType css
7860
+
7861
+ @mixin kendo-utils--layout--position() {
7862
+
7863
+ // Position utility classes
7864
+ $kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
7865
+ @include generate-utils( pos, position, $kendo-utils-position );
7866
+
7867
+
7868
+ // Legacy aliases
7869
+ .#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
7870
+ .\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
7871
+ .#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
7872
+ .\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
7873
+ .#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
7874
+ .\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
7875
+ .#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
7876
+ .\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
7877
+ .#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
7878
+ .\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
7574
7879
 
7575
7880
  }
7576
7881
 
@@ -7610,10 +7915,15 @@ $kendo-utils: (
7610
7915
 
7611
7916
  @mixin kendo-utils--layout() {
7612
7917
  @include kendo-utils--layout--aspect-ratio();
7918
+ @include kendo-utils--layout--box-sizing();
7613
7919
  @include kendo-utils--layout--clear();
7920
+ @include kendo-utils--layout--columns();
7614
7921
  @include kendo-utils--layout--display();
7615
7922
  @include kendo-utils--layout--float();
7923
+ @include kendo-utils--layout--object-fit();
7924
+ @include kendo-utils--layout--object-position();
7616
7925
  @include kendo-utils--layout--overflow();
7926
+ @include kendo-utils--layout--placement();
7617
7927
  @include kendo-utils--layout--position();
7618
7928
  @include kendo-utils--layout--visibility();
7619
7929
  @include kendo-utils--layout--zindex();
@@ -8237,7 +8547,18 @@ $kendo-utils: (
8237
8547
  // font variant
8238
8548
  // letter spacing
8239
8549
  // line height
8240
- // list style
8550
+ // #region @import "./_list-style.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_list-style.scss
8551
+ // TODO: docs
8552
+
8553
+ @mixin kendo-utils--typography--list-style-type() {
8554
+
8555
+ // list-style-type utility classes
8556
+ $kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
8557
+ @include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
8558
+
8559
+ }
8560
+
8561
+ // #endregion
8241
8562
  // #region @import "./_text-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-align.scss
8242
8563
  // Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
8243
8564
 
@@ -8287,7 +8608,18 @@ $kendo-utils: (
8287
8608
  }
8288
8609
 
8289
8610
  // #endregion
8290
- // text decoration
8611
+ // #region @import "./_text-decoration.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
8612
+ // TODO: docs
8613
+
8614
+ @mixin kendo-utils--typography--text-decoration() {
8615
+
8616
+ // text-decoration utility classes
8617
+ $kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
8618
+ @include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
8619
+
8620
+ }
8621
+
8622
+ // #endregion
8291
8623
  // #region @import "./_text-overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-overflow.scss
8292
8624
  @mixin kendo-utils--typography--text-overflow() {
8293
8625
 
@@ -8343,7 +8675,18 @@ $kendo-utils: (
8343
8675
 
8344
8676
  // #endregion
8345
8677
  // text indent
8346
- // vertical align
8678
+ // #region @import "./_vertical-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_vertical-align.scss
8679
+ // TODO: docs
8680
+
8681
+ @mixin kendo-utils--typography--vertical-align() {
8682
+
8683
+ // vertical-align utility classes
8684
+ $kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
8685
+ @include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
8686
+
8687
+ }
8688
+
8689
+ // #endregion
8347
8690
  // #region @import "./_white-space.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_white-space.scss
8348
8691
  // White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
8349
8692
 
@@ -8398,15 +8741,30 @@ $kendo-utils: (
8398
8741
  @include kendo-utils--typography--font-size();
8399
8742
  @include kendo-utils--typography--font-style();
8400
8743
  @include kendo-utils--typography--font-weight();
8744
+ @include kendo-utils--typography--list-style-type();
8401
8745
  @include kendo-utils--typography--text-align();
8402
8746
  @include kendo-utils--typography--text-color();
8747
+ @include kendo-utils--typography--text-decoration();
8403
8748
  @include kendo-utils--typography--text-overflow();
8404
8749
  @include kendo-utils--typography--text-transform();
8750
+ @include kendo-utils--typography--vertical-align();
8405
8751
  @include kendo-utils--typography--white-space();
8406
8752
  }
8407
8753
 
8408
8754
  // #endregion
8409
8755
  // #region @import "./background/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/index.import.scss
8756
+ // #region @import "./_background-clip.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-clip.scss
8757
+ // TODO: docs
8758
+
8759
+ @mixin kendo-utils--background--background-clip() {
8760
+
8761
+ // Background color utility classes
8762
+ $kendo-utils-background-clip: k-map-get( $kendo-utils, "background-clip" ) !default;
8763
+ @include generate-utils( bg-clip, background-clip, $kendo-utils-background-clip );
8764
+
8765
+ }
8766
+
8767
+ // #endregion
8410
8768
  // #region @import "./_background-color.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-color.scss
8411
8769
  // TODO: docs
8412
8770
 
@@ -8422,6 +8780,7 @@ $kendo-utils: (
8422
8780
 
8423
8781
 
8424
8782
  @mixin kendo-utils--background() {
8783
+ @include kendo-utils--background--background-clip();
8425
8784
  @include kendo-utils--background--background-color();
8426
8785
  }
8427
8786
 
@@ -8570,8 +8929,46 @@ $kendo-utils: (
8570
8929
  }
8571
8930
 
8572
8931
  // #endregion
8573
- // effects
8574
- // filter
8932
+ // #region @import "./effects/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/index.import.scss
8933
+ // box shadow
8934
+ // box shadow color
8935
+ // #region @import "./_opacity.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/_opacity.scss
8936
+ // TODO: docs
8937
+
8938
+ @mixin kendo-utils--effects--opacity() {
8939
+
8940
+ // opacity utility classes
8941
+ $kendo-utils-opacity: k-map-get( $kendo-utils, "opacity" ) !default;
8942
+ @include generate-utils( opacity, opacity, $kendo-utils-opacity );
8943
+
8944
+ }
8945
+
8946
+ // #endregion
8947
+
8948
+ @mixin kendo-utils--effects() {
8949
+ @include kendo-utils--effects--opacity();
8950
+ }
8951
+
8952
+ // #endregion
8953
+ // #region @import "./filter/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/index.import.scss
8954
+ // #region @import "./_backdrop.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/_backdrop.scss
8955
+ // TODO: docs
8956
+
8957
+ @mixin kendo-utils--filter--backdrop() {
8958
+
8959
+ // backdrop utility classes
8960
+ $kendo-utils-backdrop-blur: k-map-get( $kendo-utils, "backdrop-blur" ) !default;
8961
+ @include generate-utils( backdrop-blur, backdrop-filter, $kendo-utils-backdrop-blur );
8962
+
8963
+ }
8964
+
8965
+ // #endregion
8966
+
8967
+ @mixin kendo-utils--filter() {
8968
+ @include kendo-utils--filter--backdrop();
8969
+ }
8970
+
8971
+ // #endregion
8575
8972
  // #region @import "./table/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/index.import.scss
8576
8973
  // #region @import "./_border-collapse.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/_border-collapse.scss
8577
8974
  // TODO: docs
@@ -9124,6 +9521,38 @@ $kendo-utils: (
9124
9521
  @include kendo-utils--interactivity--will-change();
9125
9522
  }
9126
9523
 
9524
+ // #endregion
9525
+ // #region @import "./svg/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/index.import.scss
9526
+ // #region @import "./_fill.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_fill.scss
9527
+ // TODO: docs
9528
+
9529
+ @mixin kendo-utils--svg--fill() {
9530
+
9531
+ // fill utility classes
9532
+ $kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
9533
+ @include generate-utils( fill, fill, $kendo-utils-fill );
9534
+
9535
+ }
9536
+
9537
+ // #endregion
9538
+ // #region @import "./_stroke.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_stroke.scss
9539
+ // TODO: docs
9540
+
9541
+ @mixin kendo-utils--svg--stroke() {
9542
+
9543
+ // stroke utility classes
9544
+ $kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
9545
+ @include generate-utils( stroke, stroke, $kendo-utils-stroke );
9546
+
9547
+ }
9548
+
9549
+ // #endregion
9550
+
9551
+ @mixin kendo-utils--svg() {
9552
+ @include kendo-utils--svg--fill();
9553
+ @include kendo-utils--svg--stroke();
9554
+ }
9555
+
9127
9556
  // #endregion
9128
9557
 
9129
9558
 
@@ -9137,9 +9566,12 @@ $kendo-utils: (
9137
9566
  @include kendo-utils--typography();
9138
9567
  @include kendo-utils--background();
9139
9568
  @include kendo-utils--border();
9569
+ @include kendo-utils--effects();
9570
+ @include kendo-utils--filter();
9140
9571
  @include kendo-utils--table();
9141
9572
  @include kendo-utils--transform();
9142
9573
  @include kendo-utils--interactivity();
9574
+ @include kendo-utils--svg();
9143
9575
  }
9144
9576
 
9145
9577
  // #endregion
@@ -11173,122 +11605,123 @@ $_kendo-module-meta: (
11173
11605
  // #region @import "../list/_variables.scss"; -> scss/list/_variables.scss
11174
11606
  // List
11175
11607
 
11176
- /// Font size of the list component, if no size is set.
11608
+ /// The font size of the List component, if no size is set.
11177
11609
  /// @group list
11178
11610
  $kendo-list-font-size: null !default;
11179
11611
  $kendo-list-sm-font-size: $kendo-font-size-md !default;
11180
11612
  $kendo-list-md-font-size: $kendo-font-size-md !default;
11181
11613
  $kendo-list-lg-font-size: $kendo-font-size-lg !default;
11182
11614
 
11183
- /// Line height of the list component, if no size is set.
11615
+ /// The line height of the List component, if no size is set.
11184
11616
  /// @group list
11185
11617
  $kendo-list-line-height: null !default;
11186
11618
  $kendo-list-sm-line-height: k-math-div( 20, 14 ) !default;
11187
11619
  $kendo-list-md-line-height: k-math-div( 20, 14 ) !default;
11188
11620
  $kendo-list-lg-line-height: 1.5 !default;
11189
11621
 
11190
- /// Horizontal padding of list header, if no size is set.
11622
+ /// The horizontal padding of the List header, if no size is set.
11191
11623
  /// @group list
11192
11624
  $kendo-list-header-padding-x: null !default;
11193
11625
  $kendo-list-sm-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11194
11626
  $kendo-list-md-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11195
11627
  $kendo-list-lg-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11196
11628
 
11197
- /// Vertical padding of list header, if no size is set.
11629
+ /// The vertical padding of the List header, if no size is set.
11198
11630
  /// @group list
11199
11631
  $kendo-list-header-padding-y: null !default;
11200
11632
  $kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
11201
11633
  $kendo-list-md-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
11202
11634
  $kendo-list-lg-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
11203
11635
 
11204
- /// Border width of list header.
11636
+ /// The border width of the List header.
11205
11637
  /// @group list
11206
11638
  $kendo-list-header-border-width: 0 0 1px !default;
11207
11639
 
11208
- /// Font size of list header, if no size is set.
11640
+ /// The font size of the List header, if no size is set.
11209
11641
  /// @group list
11210
11642
  $kendo-list-header-font-size: null !default;
11211
11643
  $kendo-list-sm-header-font-size: null !default;
11212
11644
  $kendo-list-md-header-font-size: null !default;
11213
11645
  $kendo-list-lg-header-font-size: null !default;
11214
11646
 
11215
- /// Line height of list header, if no size is set.
11647
+ /// The line height of the List header, if no size is set.
11216
11648
  /// @group list
11217
11649
  $kendo-list-header-line-height: null !default;
11218
11650
  $kendo-list-sm-header-line-height: null !default;
11219
11651
  $kendo-list-md-header-line-height: null !default;
11220
11652
  $kendo-list-lg-header-line-height: null !default;
11221
11653
 
11222
- /// Font weight of list header.
11654
+ /// The font weight of the List header.
11223
11655
  /// @group list
11224
11656
  $kendo-list-header-font-weight: null !default;
11225
11657
 
11226
- /// Horizontal padding of list items, when no size is set.
11658
+ /// The horizontal padding of the List items, when no size is set.
11227
11659
  /// @group list
11228
11660
  $kendo-list-item-padding-x: null !default;
11229
11661
  $kendo-list-sm-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11230
11662
  $kendo-list-md-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11231
11663
  $kendo-list-lg-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11232
11664
 
11233
- /// Vertical padding of list items, when no size is set.
11665
+ /// The vertical padding of the List items, when no size is set.
11234
11666
  /// @group list
11235
11667
  $kendo-list-item-padding-y: null !default;
11236
11668
  $kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
11237
11669
  $kendo-list-md-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
11238
11670
  $kendo-list-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
11239
11671
 
11240
- /// Font size of list items, if no size is set.
11672
+ /// The font size of the List items, if no size is set.
11241
11673
  /// @group list
11242
11674
  $kendo-list-item-font-size: null !default;
11243
11675
  $kendo-list-sm-item-font-size: null !default;
11244
11676
  $kendo-list-md-item-font-size: null !default;
11245
11677
  $kendo-list-lg-item-font-size: null !default;
11246
11678
 
11247
- /// Line height of list items, if no size is set.
11679
+ /// The line height of the List items, if no size is set.
11248
11680
  /// @group list
11249
11681
  $kendo-list-item-line-height: null !default;
11250
11682
  $kendo-list-sm-item-line-height: null !default;
11251
11683
  $kendo-list-md-item-line-height: null !default;
11252
11684
  $kendo-list-lg-item-line-height: null !default;
11253
11685
 
11254
- /// Horizontal padding of list group items, when no size is set.
11686
+ /// The horizontal padding of the List group items, when no size is set.
11255
11687
  /// @group list
11256
11688
  $kendo-list-group-item-padding-x: null !default;
11257
11689
  $kendo-list-sm-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11258
11690
  $kendo-list-md-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11259
11691
  $kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
11260
11692
 
11261
- /// Vertical padding of list group items, when no size is set.
11693
+ /// The vertical padding of the List group items, when no size is set.
11262
11694
  /// @group list
11263
11695
  $kendo-list-group-item-padding-y: null !default;
11264
11696
  $kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
11265
11697
  $kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
11266
11698
  $kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
11267
11699
 
11268
- /// Border width of list group items.
11700
+ /// The border width of the List group items.
11269
11701
  /// @group list
11270
11702
  $kendo-list-group-item-border-width: 1px 0 0 !default;
11271
11703
 
11272
- /// Font size of list group items, if no size is set.
11704
+ /// The font size of the List group items, if no size is set.
11273
11705
  /// @group list
11274
11706
  $kendo-list-group-item-font-size: null !default;
11275
11707
  $kendo-list-sm-group-item-font-size: null !default;
11276
11708
  $kendo-list-md-group-item-font-size: null !default;
11277
11709
  $kendo-list-lg-group-item-font-size: null !default;
11278
11710
 
11279
- /// Line height of list group items, if no size is set.
11711
+ /// The line height of the List group items, if no size is set.
11280
11712
  /// @group list
11281
11713
  $kendo-list-group-item-line-height: null !default;
11282
11714
  $kendo-list-sm-group-item-line-height: null !default;
11283
11715
  $kendo-list-md-group-item-line-height: null !default;
11284
11716
  $kendo-list-lg-group-item-line-height: null !default;
11285
11717
 
11286
- /// Font weight of list group item.
11718
+ /// The font weight of a List group item.
11287
11719
  /// @group list
11288
11720
  $kendo-list-group-item-font-weight: null !default;
11289
11721
 
11290
11722
 
11291
- // Kendo list sizes
11723
+ /// The map with the sizes of the List.
11724
+ /// /// @group list
11292
11725
  $kendo-list-sizes: (
11293
11726
  sm: (
11294
11727
  font-size: $kendo-list-sm-font-size,
@@ -11341,243 +11774,273 @@ $kendo-list-sizes: (
11341
11774
  ) !default;
11342
11775
 
11343
11776
 
11344
- /// Background color of the list component.
11777
+ /// The background color of the List component.
11345
11778
  /// @group list
11346
11779
  $kendo-list-bg: $kendo-component-bg !default;
11347
- /// Text color of the list component.
11780
+ /// The text color of the List component.
11348
11781
  /// @group list
11349
11782
  $kendo-list-text: $kendo-component-text !default;
11350
- /// Border color of the list component.
11783
+ /// The border color of the List component.
11351
11784
  /// @group list
11352
11785
  $kendo-list-border: $kendo-component-border !default;
11353
11786
 
11354
11787
 
11355
- /// Background color of list header.
11788
+ /// The background color of the List header.
11356
11789
  /// @group list
11357
11790
  $kendo-list-header-bg: null !default;
11358
- /// Text color of list header.
11791
+ /// The text color of the List header.
11359
11792
  /// @group list
11360
11793
  $kendo-list-header-text: null !default;
11361
- /// Border color of list header.
11794
+ /// The border color of the List header.
11362
11795
  /// @group list
11363
11796
  $kendo-list-header-border: inherit !default;
11364
- /// Box shadow of list header.
11797
+ /// The box shadow of the List header.
11365
11798
  /// @group list
11366
11799
  $kendo-list-header-shadow: null !default;
11367
11800
 
11368
11801
 
11369
- /// Background color of list items.
11802
+ /// The background color of the List items.
11370
11803
  /// @group list
11371
11804
  $kendo-list-item-bg: null !default;
11372
- /// Text color of list items.
11805
+ /// The text color of the List items.
11373
11806
  /// @group list
11374
11807
  $kendo-list-item-text: null !default;
11375
11808
 
11376
- /// Background color of hovered list items.
11809
+ /// The background color of the hovered List items.
11377
11810
  /// @group list
11378
11811
  $kendo-list-item-hover-bg: $kendo-hover-bg !default;
11379
- /// Text color of hovered list items.
11812
+ /// The text color of the hovered List items.
11380
11813
  /// @group list
11381
11814
  $kendo-list-item-hover-text: $kendo-hover-text !default;
11382
11815
 
11383
- /// Background color of focused list items.
11816
+ /// The background color of the focused List items.
11384
11817
  /// @group list
11385
11818
  $kendo-list-item-focus-bg: $kendo-list-item-hover-bg !default;
11386
- /// Text color of focused list items.
11819
+ /// The text color of the focused List items.
11387
11820
  /// @group list
11388
11821
  $kendo-list-item-focus-text: null !default;
11389
- /// Box shadow of focused list items.
11822
+ /// The box shadow of the focused List items.
11390
11823
  /// @group list
11391
11824
  $kendo-list-item-focus-shadow: null !default;
11392
11825
 
11393
- /// Background color of selected list items.
11826
+ /// The background color of the selected List items.
11394
11827
  /// @group list
11395
11828
  $kendo-list-item-selected-bg: $kendo-component-bg !default;
11396
- /// Text color of selected list items.
11829
+ /// The text color of the selected List items.
11397
11830
  /// @group list
11398
11831
  $kendo-list-item-selected-text: $kendo-color-secondary !default;
11399
11832
 
11400
- /// Background color of list group items.
11833
+ /// The background color of the List group items.
11401
11834
  /// @group list
11402
11835
  $kendo-list-group-item-bg: null !default;
11403
- /// Text color of list group items.
11836
+ /// The text color of the List group items.
11404
11837
  /// @group list
11405
11838
  $kendo-list-group-item-text: null !default;
11406
- /// The border color of list group items.
11839
+ /// The border color of the List group items.
11407
11840
  /// @group list
11408
11841
  $kendo-list-group-item-border: inherit !default;
11409
- /// The base shadow of list group items.
11842
+ /// The base shadow of the List group items.
11410
11843
  /// @group list
11411
11844
  $kendo-list-group-item-shadow: null !default;
11412
11845
 
11413
- /// Text color of the 'No Data' text.
11846
+ /// The color of the 'No Data' text.
11414
11847
  /// @group list
11415
11848
  $kendo-list-no-data-text: $kendo-subtle-text !default;
11416
11849
 
11417
11850
  // #endregion
11418
11851
 
11419
11852
 
11420
- // Checkbox
11853
+ // CheckBox
11421
11854
 
11422
- /// Border width of checkbox.
11855
+ /// The border width of the CheckBox.
11423
11856
  /// @group checkbox
11424
11857
  $kendo-checkbox-border-width: 2px !default;
11425
11858
 
11426
- // Checkbox sizes
11859
+ /// The size of a small CheckBox.
11860
+ /// @group checkbox
11861
+ $kendo-checkbox-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
11862
+ /// The size of a medium CheckBox.
11863
+ /// @group checkbox
11864
+ $kendo-checkbox-md-size: k-map-get( $kendo-spacing, 4 ) !default;
11865
+ /// The size of a large CheckBox.
11866
+ /// @group checkbox
11867
+ $kendo-checkbox-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
11868
+
11869
+ /// The glyph size of a small CheckBox.
11870
+ /// @group checkbox
11871
+ $kendo-checkbox-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
11872
+ /// The glyph size of a medium CheckBox.
11873
+ /// @group checkbox
11874
+ $kendo-checkbox-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
11875
+ /// The glyph size of a large CheckBox.
11876
+ /// @group checkbox
11877
+ $kendo-checkbox-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
11878
+
11879
+ /// The ripple size of a small CheckBox.
11880
+ /// @group checkbox
11881
+ $kendo-checkbox-sm-ripple-size: 300% !default;
11882
+ /// The ripple size of a medium CheckBox.
11883
+ /// @group checkbox
11884
+ $kendo-checkbox-md-ripple-size: 300% !default;
11885
+ /// The ripple size of a large CheckBox.
11886
+ /// @group checkbox
11887
+ $kendo-checkbox-lg-ripple-size: 300% !default;
11888
+
11889
+ // A map with the different CheckBox sizes.
11427
11890
  $kendo-checkbox-sizes: (
11428
11891
  sm: (
11429
- size: k-map-get( $kendo-spacing, 3 ),
11430
- glyph-size: k-map-get( $kendo-spacing, 2.5 ),
11431
- ripple-size: 300%
11892
+ size: $kendo-checkbox-sm-size,
11893
+ glyph-size: $kendo-checkbox-sm-glyph-size,
11894
+ ripple-size: $kendo-checkbox-sm-ripple-size
11432
11895
  ),
11433
11896
  md: (
11434
- size: k-map-get( $kendo-spacing, 4 ),
11435
- glyph-size: k-map-get( $kendo-spacing, 3.5 ),
11436
- ripple-size: 300%
11897
+ size: $kendo-checkbox-md-size,
11898
+ glyph-size: $kendo-checkbox-md-glyph-size,
11899
+ ripple-size: $kendo-checkbox-md-ripple-size
11437
11900
  ),
11438
11901
  lg: (
11439
- size: k-map-get( $kendo-spacing, 5 ),
11440
- glyph-size: k-map-get( $kendo-spacing, 4.5 ),
11441
- ripple-size: 300%
11902
+ size: $kendo-checkbox-lg-size,
11903
+ glyph-size: $kendo-checkbox-lg-glyph-size,
11904
+ ripple-size: $kendo-checkbox-lg-ripple-size
11442
11905
  )
11443
11906
  ) !default;
11444
11907
 
11445
- /// Background color of checkbox.
11908
+ /// The background color of the CheckBox.
11446
11909
  /// @group checkbox
11447
11910
  $kendo-checkbox-bg: null !default;
11448
- /// Color of checkbox.
11911
+ /// The text color of the CheckBox.
11449
11912
  /// @group checkbox
11450
11913
  $kendo-checkbox-text: null !default;
11451
- /// Border color of checkbox.
11914
+ /// The border color of the CheckBox.
11452
11915
  /// @group checkbox
11453
11916
  $kendo-checkbox-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 ) !default;
11454
11917
 
11455
- /// Background color of hovered checkbox.
11918
+ /// The background color of the hovered CheckBox.
11456
11919
  /// @group checkbox
11457
11920
  $kendo-checkbox-hover-bg: null !default;
11458
- /// Color of hovered checkbox.
11921
+ /// The text color of the hovered CheckBox.
11459
11922
  /// @group checkbox
11460
11923
  $kendo-checkbox-hover-text: null !default;
11461
- /// Border color of hovered checkbox.
11924
+ /// The border color of the hovered CheckBox.
11462
11925
  /// @group checkbox
11463
11926
  $kendo-checkbox-hover-border: null !default;
11464
11927
 
11465
- /// Background color of checked checkbox.
11928
+ /// The background color of the checked CheckBox.
11466
11929
  /// @group checkbox
11467
11930
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
11468
- /// Color of checked checkbox.
11931
+ /// The text color of the checked CheckBox.
11469
11932
  /// @group checkbox
11470
11933
  $kendo-checkbox-checked-text: k-contrast-color( $kendo-checkbox-checked-bg ) !default;
11471
- /// Border color of checked checkbox.
11934
+ /// The border color of the checked CheckBox.
11472
11935
  /// @group checkbox
11473
11936
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
11474
11937
 
11475
- /// Background color of indeterminate checkbox.
11938
+ /// The background color of the indeterminate CheckBox.
11476
11939
  /// @group checkbox
11477
11940
  $kendo-checkbox-indeterminate-bg: $kendo-checkbox-checked-bg !default;
11478
- /// Color of indeterminate checkbox.
11941
+ /// The text color of the indeterminate CheckBox.
11479
11942
  /// @group checkbox
11480
11943
  $kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-text !default;
11481
- /// Border color of indeterminate checkbox.
11944
+ /// The border color of the indeterminate CheckBox.
11482
11945
  /// @group checkbox
11483
11946
  $kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
11484
11947
 
11485
- /// Border color of focused checkbox.
11948
+ /// The border color of the focused CheckBox.
11486
11949
  /// @group checkbox
11487
11950
  $kendo-checkbox-focus-border: null !default;
11488
- /// Box shadow of focused checkbox.
11951
+ /// The box shadow of the focused CheckBox.
11489
11952
  /// @group checkbox
11490
11953
  $kendo-checkbox-focus-shadow: null !default;
11491
- /// Border color of focused and checked checkbox.
11954
+ /// The border color of the focused and checked CheckBox.
11492
11955
  /// @group checkbox
11493
11956
  $kendo-checkbox-focus-checked-border: null !default;
11494
- /// Box shadow of focused and checked checkbox.
11957
+ /// The box shadow of the focused and checked CheckBox.
11495
11958
  /// @group checkbox
11496
11959
  $kendo-checkbox-focus-checked-shadow: null !default;
11497
11960
 
11498
- /// Background color of disabled checkbox.
11961
+ /// The background color of the disabled CheckBox.
11499
11962
  /// @group checkbox
11500
11963
  $kendo-checkbox-disabled-bg: null !default;
11501
- /// Color of disabled checkbox.
11964
+ /// The text color of the disabled CheckBox.
11502
11965
  /// @group checkbox
11503
11966
  $kendo-checkbox-disabled-text: null !default;
11504
- /// Border color of disabled checkbox.
11967
+ /// The border color of the disabled CheckBox.
11505
11968
  /// @group checkbox
11506
11969
  $kendo-checkbox-disabled-border: k-try-shade( $kendo-component-bg, 4 ) !default;
11507
11970
 
11508
11971
 
11509
- /// Background color of disabled and checked checkbox.
11972
+ /// The background color of the disabled and checked CheckBox.
11510
11973
  /// @group checkbox
11511
11974
  $kendo-checkbox-disabled-checked-bg: $kendo-checkbox-disabled-border !default;
11512
- /// Color of disabled and checked checkbox.
11975
+ /// The text color of the disabled and checked CheckBox.
11513
11976
  /// @group checkbox
11514
11977
  $kendo-checkbox-disabled-checked-text: k-contrast-color( $kendo-checkbox-disabled-checked-bg ) !default;
11515
- /// Border color of disabled and checked checkbox.
11978
+ /// The border color of the disabled and checked CheckBox.
11516
11979
  /// @group checkbox
11517
11980
  $kendo-checkbox-disabled-checked-border: $kendo-checkbox-disabled-checked-bg !default;
11518
11981
 
11519
- /// Background color of invalid checkbox.
11982
+ /// The background color of an invalid CheckBox.
11520
11983
  /// @group checkbox
11521
11984
  $kendo-checkbox-invalid-bg: null !default;
11522
- /// Color of invalid checkbox.
11985
+ /// The text color of an invalid CheckBox.
11523
11986
  /// @group checkbox
11524
11987
  $kendo-checkbox-invalid-text: $kendo-invalid-text !default;
11525
- /// Border color of invalid checkbox.
11988
+ /// The border color of an invalid CheckBox.
11526
11989
  /// @group checkbox
11527
11990
  $kendo-checkbox-invalid-border: $kendo-invalid-border !default;
11528
11991
 
11529
11992
 
11530
- // Checkbox indicator
11993
+ // CheckBox indicator
11531
11994
 
11532
- /// Type of checkbox indicator.
11995
+ /// The type of the CheckBox indicator.
11533
11996
  /// @group checkbox
11534
11997
  $kendo-checkbox-indicator-type: image !default;
11535
11998
 
11536
- /// Glyph font family of checkbox indicator.
11999
+ /// The font family of the CheckBox indicator glyph.
11537
12000
  /// @group checkbox
11538
12001
  $kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
11539
12002
  $kendo-checkbox-glyph-size: 10px !default;
11540
- /// Glyph of checkbox indicator.
12003
+ /// The glyph of the CheckBox indicator.
11541
12004
  /// @group checkbox
11542
12005
  $kendo-checkbox-checked-glyph: "\e118" !default;
11543
- /// Glyph of indeterminate checkbox indicator.
12006
+ /// The glyph of the indeterminate CheckBox indicator.
11544
12007
  /// @group checkbox
11545
12008
  $kendo-checkbox-indeterminate-glyph: "\e121" !default;
11546
12009
 
11547
- /// Image of checked checkbox indicator.
12010
+ /// The image for a checked CheckBox indicator.
11548
12011
  /// @group checkbox
11549
12012
  $kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-width='3' d='M4.1,12.7 9,17.6 20.3,6.3'/></svg>") ) !default;
11550
- /// Image of checked checkbox indicator.
12013
+ /// The image for a indeterminate CheckBox indicator.
11551
12014
  /// @group checkbox
11552
12015
  $kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-width='3' d='M4 10h12'/></svg>") ) !default;
11553
12016
 
11554
12017
 
11555
- // Checkbox label
12018
+ // CheckBox label
11556
12019
 
11557
- /// The horizontal margin of the checkbox inside a label.
12020
+ /// The horizontal margin of the CheckBox inside a label.
11558
12021
  /// @group checkbox
11559
12022
  $kendo-checkbox-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
11560
12023
 
11561
12024
 
11562
- // Checkbox list
12025
+ // CheckBox list
11563
12026
 
11564
- /// Spacing between items of horizontal checkbox list.
12027
+ /// The spacing between the items in a horizontal CheckBox list.
11565
12028
  /// @group checkbox
11566
12029
  $kendo-checkbox-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
11567
- /// Horizontal padding of checkbox list items.
12030
+ /// The horizontal padding of the CheckBox list items.
11568
12031
  /// @group checkbox
11569
12032
  $kendo-checkbox-list-item-padding-x: 0px !default;
11570
- /// Vertical padding of checkbox list items.
12033
+ /// The vertical padding of the CheckBox list items.
11571
12034
  /// @group checkbox
11572
12035
  $kendo-checkbox-list-item-padding-y: $kendo-list-md-item-padding-y !default;
11573
12036
 
11574
12037
 
11575
- // Checkbox ripple
12038
+ // CheckBox ripple
11576
12039
 
11577
- /// Background color of checkbox ripple.
12040
+ /// The background color of the CheckBox' ripple.
11578
12041
  /// @group checkbox
11579
12042
  $kendo-checkbox-ripple-bg: $kendo-color-primary !default;
11580
- /// Opacity of checkbox ripple.
12043
+ /// The opacity of the CheckBox' ripple.
11581
12044
  /// @group checkbox
11582
12045
  $kendo-checkbox-ripple-opacity: .2 !default;
11583
12046
 
@@ -14037,59 +14500,86 @@ $_kendo-module-meta: (
14037
14500
  // #region @import "../button/_variables.scss"; -> scss/button/_variables.scss
14038
14501
  // Button
14039
14502
 
14040
- /// Width of the border around the button.
14503
+ /// The width of the border around the Button.
14041
14504
  /// @group button
14042
14505
  $kendo-button-border-width: 1px !default;
14043
14506
 
14044
- /// Border radius of the button.
14507
+ /// The border radius of the Button.
14045
14508
  /// @group button
14046
14509
  $kendo-button-border-radius: null !default;
14047
14510
 
14048
- /// Horizontal padding of the button.
14511
+ /// The horizontal padding of the Button.
14049
14512
  /// @group button
14050
14513
  $kendo-button-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14051
- /// Vertical padding of the button.
14514
+ /// The horizontal padding of the small Button.
14515
+ /// @group button
14516
+ $kendo-button-sm-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14517
+ /// The horizontal padding of the medium Button.
14518
+ /// @group button
14519
+ $kendo-button-md-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14520
+ /// The horizontal padding of the large Button.
14521
+ /// @group button
14522
+ $kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14523
+
14524
+ /// The vertical padding of the Button.
14052
14525
  /// @group button
14053
14526
  $kendo-button-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
14054
- /// Font family of the button.
14527
+ /// The vertical padding of the small Button.
14528
+ /// @group button
14529
+ $kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
14530
+ /// The vertical padding of the medium Button.
14531
+ /// @group button
14532
+ $kendo-button-md-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
14533
+ /// The vertical padding of the large Button.
14534
+ /// @group button
14535
+ $kendo-button-lg-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
14536
+
14537
+ /// The font family of the Button.
14055
14538
  /// @group button
14056
14539
  $kendo-button-font-family: $kendo-font-family !default;
14057
- /// Font sizes of the button.
14540
+
14541
+ /// The font size of the Button.
14058
14542
  /// @group button
14059
14543
  $kendo-button-font-size: $kendo-font-size-md !default;
14544
+ /// The font size of the small Button.
14545
+ /// @group button
14546
+ $kendo-button-sm-font-size: $kendo-font-size-md !default;
14547
+ /// The font size of the medium Button.
14548
+ /// @group button
14549
+ $kendo-button-md-font-size: $kendo-font-size-md !default;
14550
+ /// The font size of the large Button.
14551
+ /// @group button
14552
+ $kendo-button-lg-font-size: $kendo-font-size-md !default;
14553
+
14060
14554
  /// Line heights used along with $kendo-font-size.
14061
14555
  /// @group button
14062
14556
  $kendo-button-line-height: k-math-div( 20, 14 ) !default;
14063
-
14064
- $kendo-button-sm-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14065
- $kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
14066
- $kendo-button-sm-font-size: $kendo-font-size-md !default;
14557
+ /// The line height used along with the $kendo-font-size of the small Button.
14558
+ /// @group button
14067
14559
  $kendo-button-sm-line-height: k-math-div( 20, 14 ) !default;
14068
-
14069
- $kendo-button-md-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14070
- $kendo-button-md-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
14071
- $kendo-button-md-font-size: $kendo-font-size-md !default;
14560
+ /// The line height used along with the $kendo-font-size of the medium Button.
14561
+ /// @group button
14072
14562
  $kendo-button-md-line-height: k-math-div( 20, 14 ) !default;
14073
-
14074
- $kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
14075
- $kendo-button-lg-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
14076
- $kendo-button-lg-font-size: $kendo-font-size-md !default;
14563
+ /// The line height used along with the $kendo-font-size of the large Button.
14564
+ /// @group button
14077
14565
  $kendo-button-lg-line-height: k-math-div( 20, 14 ) !default;
14078
14566
 
14079
- /// Calculated height of the button.
14567
+ /// The calculated height of the Button.
14080
14568
  /// @group button
14081
14569
  $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
14082
14570
  $kendo-button-sm-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
14083
14571
  $kendo-button-md-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
14084
14572
  $kendo-button-lg-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
14085
14573
 
14086
- /// Calculated inner height of the button. Without the border width.
14574
+ /// The calculated inner height of the Button excluding the border width.
14087
14575
  /// @group button
14088
14576
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
14089
14577
  $kendo-button-sm-inner-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} ) !default;
14090
14578
  $kendo-button-md-inner-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} ) !default;
14091
14579
  $kendo-button-lg-inner-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} ) !default;
14092
14580
 
14581
+ /// The sizes map for the Button.
14582
+ /// @group button
14093
14583
  $kendo-button-sizes: (
14094
14584
  sm: (
14095
14585
  padding-x: $kendo-button-sm-padding-x,
@@ -14111,110 +14601,110 @@ $kendo-button-sizes: (
14111
14601
  )
14112
14602
  ) !default;
14113
14603
 
14114
- /// Theme colors map for the button.
14604
+ /// The theme colors map for the Button.
14115
14605
  /// @group button
14116
14606
  $kendo-button-theme-colors: k-map-merge(
14117
14607
  $kendo-theme-colors,
14118
14608
  ( "base": $kendo-base-bg )
14119
14609
  ) !default;
14120
14610
 
14121
- /// The base background of the button.
14611
+ /// The base background of the Button.
14122
14612
  /// @group button
14123
14613
  $kendo-button-bg: $kendo-base-bg !default;
14124
- /// The base text color of the button.
14614
+ /// The base text color of the Button.
14125
14615
  /// @group button
14126
14616
  $kendo-button-text: $kendo-base-text !default;
14127
- /// The base border color of the button.
14617
+ /// The base border color of the Button.
14128
14618
  /// @group button
14129
14619
  $kendo-button-border: $kendo-button-bg !default;
14130
- /// The base background gradient of the button.
14620
+ /// The base background gradient of the Button.
14131
14621
  /// @group button
14132
14622
  $kendo-button-gradient: null !default;
14133
- /// The base shadow of the button.
14623
+ /// The base shadow of the Button.
14134
14624
  /// @group button
14135
14625
  $kendo-button-shadow: $box-shadow-depth-2 !default;
14136
14626
 
14137
- /// The base background of hovered button.
14627
+ /// The base background of the hovered Button.
14138
14628
  /// @group button
14139
14629
  $kendo-button-hover-bg: null !default;
14140
- /// The base text color of hovered button.
14630
+ /// The base text color of the hovered Button.
14141
14631
  /// @group button
14142
14632
  $kendo-button-hover-text: null !default;
14143
- /// The base border color of hovered button.
14633
+ /// The base border color of the hovered Button.
14144
14634
  /// @group button
14145
14635
  $kendo-button-hover-border: null !default;
14146
- /// The base background gradient of hovered button.
14636
+ /// The base background gradient of the hovered Button.
14147
14637
  /// @group button
14148
14638
  $kendo-button-hover-gradient: null !default;
14149
- /// The base shadow of hovered button.
14639
+ /// The base shadow of the hovered Button.
14150
14640
  /// @group button
14151
14641
  $kendo-button-hover-shadow: null !default;
14152
14642
 
14153
- /// The base background color of active button.
14643
+ /// The base background color of the active Button.
14154
14644
  /// @group button
14155
14645
  $kendo-button-active-bg: null !default;
14156
- /// The base text color of active button.
14646
+ /// The base text color of the active Button.
14157
14647
  /// @group button
14158
14648
  $kendo-button-active-text: null !default;
14159
- /// The base border color of active button.
14649
+ /// The base border color of the active Button.
14160
14650
  /// @group button
14161
14651
  $kendo-button-active-border: null !default;
14162
- /// The base background gradient of active button.
14652
+ /// The base background gradient of the active Button.
14163
14653
  /// @group button
14164
14654
  $kendo-button-active-gradient: null !default;
14165
- /// The base shadow of active button.
14655
+ /// The base shadow of the active Button.
14166
14656
  /// @group button
14167
14657
  $kendo-button-active-shadow: $box-shadow-depth-3 !default;
14168
14658
 
14169
- /// The base background color of selected button.
14659
+ /// The base background color of the selected Button.
14170
14660
  /// @group button
14171
14661
  $kendo-button-selected-bg: $kendo-button-active-bg !default;
14172
- /// The base text color of selected button.
14662
+ /// The base text color of the selected Button.
14173
14663
  /// @group button
14174
14664
  $kendo-button-selected-text: $kendo-button-active-text !default;
14175
- /// The base border color of selected button.
14665
+ /// The base border color of the selected Button.
14176
14666
  /// @group button
14177
14667
  $kendo-button-selected-border: $kendo-button-active-bg !default;
14178
- /// The base background gradient of selected button.
14668
+ /// The base background gradient of the selected Button.
14179
14669
  /// @group button
14180
14670
  $kendo-button-selected-gradient: null !default;
14181
- /// The base shadow of selected button.
14671
+ /// The base shadow of the selected Button.
14182
14672
  /// @group button
14183
14673
  $kendo-button-selected-shadow: null !default;
14184
14674
 
14185
- /// The base background of focused button.
14675
+ /// The base background of the focused Button.
14186
14676
  /// @group button
14187
14677
  $kendo-button-focus-bg: null !default;
14188
- /// The base text color of focused button.
14678
+ /// The base text color of the focused Button.
14189
14679
  /// @group button
14190
14680
  $kendo-button-focus-text: null !default;
14191
- /// The base border color of focused button.
14681
+ /// The base border color of the focused Button.
14192
14682
  /// @group button
14193
14683
  $kendo-button-focus-border: null !default;
14194
- /// The base background gradient of focused button.
14684
+ /// The base background gradient of focused Button.
14195
14685
  /// @group button
14196
14686
  $kendo-button-focus-gradient: null !default;
14197
- /// The base shadow of focused buttons.
14687
+ /// The base shadow of the focused Button.
14198
14688
  /// @group button
14199
14689
  $kendo-button-focus-shadow: null !default;
14200
14690
 
14201
- /// The base background color of disabled button.
14691
+ /// The base background color of the disabled Button.
14202
14692
  /// @group button
14203
14693
  $kendo-button-disabled-bg: k-try-shade( $kendo-body-bg, 12% ) !default;
14204
- /// The base text color of disabled button.
14694
+ /// The base text color of the disabled Button.
14205
14695
  /// @group button
14206
14696
  $kendo-button-disabled-text: $kendo-disabled-text !default;
14207
- /// The base border color of disabled button.
14697
+ /// The base border color of the disabled Button.
14208
14698
  /// @group button
14209
14699
  $kendo-button-disabled-border: $kendo-button-disabled-bg !default;
14210
- /// The base background gradient of disabled button.
14700
+ /// The base background gradient of the disabled Button.
14211
14701
  /// @group button
14212
14702
  $kendo-button-disabled-gradient: null !default;
14213
- /// The base shadow of disabled button.
14703
+ /// The base shadow of the disabled Button.
14214
14704
  /// @group button
14215
14705
  $kendo-button-disabled-shadow: none !default;
14216
14706
 
14217
- // Solid button
14707
+ // Solid Button
14218
14708
  $kendo-solid-button-gradient: null !default;
14219
14709
  $kendo-solid-button-shade-function: "k-try-shade" !default;
14220
14710
  $kendo-solid-button-shade-text-amount: null !default;
@@ -14231,38 +14721,38 @@ $kendo-solid-button-shadow-blur: null !default;
14231
14721
  $kendo-solid-button-shadow-spread: null !default;
14232
14722
  $kendo-solid-button-shadow-opacity: null !default;
14233
14723
 
14234
- // Outline button
14724
+ // Outline Button
14235
14725
  $kendo-outline-button-shadow: null !default;
14236
14726
  $kendo-outline-button-shadow-blur: null !default;
14237
14727
  $kendo-outline-button-shadow-spread: null !default;
14238
14728
  $kendo-outline-button-shadow-opacity: null !default;
14239
14729
 
14240
- // link button
14730
+ // Link Button
14241
14731
  $kendo-link-button-shadow: null !default;
14242
14732
  $kendo-link-button-shadow-blur: null !default;
14243
14733
  $kendo-link-button-shadow-spread: null !default;
14244
14734
  $kendo-link-button-shadow-opacity: null !default;
14245
14735
 
14246
- // Clear button
14736
+ // Clear Button
14247
14737
  $kendo-clear-button-focus-opacity: .155 !default; // equal to 10% of black
14248
14738
 
14249
- /// The overlay opacity of hovered flat button. Used to create background for the flat button.
14739
+ /// The overlay opacity of the hovered flat Button. Used to create a background for the flat Button.
14250
14740
  /// @group button
14251
14741
  $kendo-flat-button-hover-opacity: .08 !default;
14252
- /// The overlay opacity of focused flat button. Used to create background for the flat button.
14742
+ /// The overlay opacity of the focused flat Button. Used to create a background for the flat Button.
14253
14743
  /// @group button
14254
14744
  $kendo-flat-button-focus-opacity: .12 !default;
14255
- /// The overlay opacity of active flat button. Used to create background for the flat button.
14745
+ /// The overlay opacity of the active flat Button. Used to create a background for the flat Button.
14256
14746
  /// @group button
14257
14747
  $kendo-flat-button-active-opacity: .16 !default;
14258
- /// The overlay opacity of selected flat button. Used to create background for the flat button.
14748
+ /// The overlay opacity of the selected flat Button. Used to create a background for the flat Button.
14259
14749
  /// @group button
14260
14750
  $kendo-flat-button-selected-opacity: .22 !default;
14261
- /// The opacity of the flat button focus ring. Used to create border for the flat button.
14751
+ /// The opacity of the flat Button focus ring. Used to create a border for the flat Button.
14262
14752
  /// @group button
14263
14753
  $kendo-flat-button-focus-ring-opacity: null !default;
14264
14754
 
14265
- /// The transition of the button.
14755
+ /// The box-shadow transition of the Button.
14266
14756
  /// @group button
14267
14757
  $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default;
14268
14758
 
@@ -14271,47 +14761,71 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
14271
14761
 
14272
14762
  // Chip
14273
14763
 
14274
- /// Width of the border around the button.
14764
+ /// The width of the border around the Chip.
14275
14765
  /// @group chip
14276
14766
  $kendo-chip-border-width: 1px !default;
14277
- /// The spacing between the text and the icons of the chip.
14767
+ /// The spacing between the text and the icons of the Chip.
14278
14768
  /// @group chip
14279
14769
  $kendo-chip-spacing: k-map-get( $kendo-spacing, 1 ) !default;
14280
14770
 
14281
- /// Horizontal padding of the chip.
14771
+ /// The horizontal padding of the Chip.
14282
14772
  /// @group chip
14283
14773
  $kendo-chip-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
14774
+ /// The horizontal padding of the small Chip.
14775
+ /// @group chip
14284
14776
  $kendo-chip-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
14777
+ /// The horizontal padding of the medium Chip.
14778
+ /// @group chip
14285
14779
  $kendo-chip-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
14780
+ /// The horizontal padding of the large Chip.
14781
+ /// @group chip
14286
14782
  $kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
14287
14783
 
14288
- /// Vertical padding of the chip.
14784
+ /// The vertical padding of the Chip.
14289
14785
  /// @group chip
14290
14786
  $kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
14787
+ /// The vertical padding of the small Chip.
14788
+ /// @group chip
14291
14789
  $kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
14790
+ /// The vertical padding of the medium Chip.
14791
+ /// @group chip
14292
14792
  $kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
14793
+ /// The vertical padding of the large Chip.
14794
+ /// @group chip
14293
14795
  $kendo-chip-lg-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
14294
14796
 
14295
- /// Font sizes of the chip.
14797
+ /// The font size of the Chip.
14296
14798
  /// @group chip
14297
14799
  $kendo-chip-font-size: $kendo-font-size-md !default;
14800
+ /// The font size of the small Chip.
14801
+ /// @group chip
14298
14802
  $kendo-chip-sm-font-size: $kendo-font-size-md !default;
14803
+ /// The font size of the medium Chip.
14804
+ /// @group chip
14299
14805
  $kendo-chip-md-font-size: $kendo-font-size-md !default;
14806
+ /// The font size of the large Chip.
14807
+ /// @group chip
14300
14808
  $kendo-chip-lg-font-size: $kendo-font-size-md !default;
14301
14809
 
14302
- /// Line heights of the chip that are connected to the $kendo-font-size.
14810
+ /// The Chip's line height that is related to the $kendo-font-size.
14303
14811
  /// @group chip
14304
14812
  $kendo-chip-line-height: k-math-div( 18, 14 ) !default;
14813
+ /// The small Chip's line height that is related to the $kendo-font-size.
14814
+ /// @group chip
14305
14815
  $kendo-chip-sm-line-height: $kendo-chip-line-height !default;
14816
+ /// The medium Chip's line height that is related to the $kendo-font-size.
14817
+ /// @group chip
14306
14818
  $kendo-chip-md-line-height: $kendo-chip-line-height !default;
14819
+ /// The large Chip's line height that is related to the $kendo-font-size.
14820
+ /// @group chip
14307
14821
  $kendo-chip-lg-line-height: $kendo-chip-line-height !default;
14308
14822
 
14309
- /// Calculated height of the chip.
14823
+ /// The calculated height of the Chip.
14310
14824
  /// @group chip
14311
14825
  $kendo-chip-calc-size: calc( #{$kendo-chip-line-height * 1em} + #{$kendo-chip-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
14312
14826
  $kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height * 1em} + #{$kendo-chip-sm-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
14313
14827
 
14314
- /// Sizes map for the chip.
14828
+ /// The map with the sizes of the Chip.
14315
14829
  /// @group chip
14316
14830
  $kendo-chip-sizes: (
14317
14831
  sm: (
@@ -14334,11 +14848,11 @@ $kendo-chip-sizes: (
14334
14848
  )
14335
14849
  ) !default;
14336
14850
 
14337
- /// The base background of the chip.
14851
+ /// The base background of the Chip.
14338
14852
  /// @group chip
14339
14853
  $kendo-chip-base-bg: if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black) !default;
14340
14854
 
14341
- /// Theme colors map for the chip.
14855
+ /// The theme colors map for the Chip.
14342
14856
  /// @group chip
14343
14857
  $kendo-chip-theme-colors: (
14344
14858
  "base": $kendo-chip-base-bg,
@@ -14348,73 +14862,73 @@ $kendo-chip-theme-colors: (
14348
14862
  "success": k-map-get( $kendo-theme-colors, "success" )
14349
14863
  ) !default;
14350
14864
 
14351
- /// The base background color of solid chip.
14865
+ /// The base background color of the solid Chip.
14352
14866
  /// @group chip
14353
14867
  $kendo-chip-solid-bg: if( $kendo-is-dark-theme, $kendo-button-bg, k-try-tint( $kendo-chip-base-bg, 92% )) !default;
14354
- /// The base text color of solid chip.
14868
+ /// The base text color of the solid Chip.
14355
14869
  /// @group chip
14356
14870
  $kendo-chip-solid-text: $kendo-button-text !default;
14357
- /// The base border color of solid chip.
14871
+ /// The base border color of the solid Chip.
14358
14872
  /// @group chip
14359
14873
  $kendo-chip-solid-border: $kendo-chip-solid-bg !default;
14360
- /// The base shadow of solid chip.
14874
+ /// The base shadow of the solid Chip.
14361
14875
  /// @group chip
14362
14876
  $kendo-chip-solid-shadow: null !default;
14363
- /// The base gradient of solid chip.
14877
+ /// The base gradient of the solid Chip.
14364
14878
  /// @group chip
14365
14879
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
14366
14880
 
14367
- /// The base background color of focused solid chip.
14881
+ /// The base background color of the focused solid Chip.
14368
14882
  /// @group chip
14369
14883
  $kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg, 80% ) !default;
14370
- /// The base text color of focused solid chip.
14884
+ /// The base text color of the focused solid Chip.
14371
14885
  /// @group chip
14372
14886
  $kendo-chip-solid-focus-text: null !default;
14373
14887
 
14374
- /// The base background color of hovered solid chip.
14888
+ /// The base background color of the hovered solid Chip.
14375
14889
  /// @group chip
14376
14890
  $kendo-chip-solid-hover-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
14377
- /// The base text color of hovered solid chip.
14891
+ /// The base text color of the hovered solid Chip.
14378
14892
  /// @group chip
14379
14893
  $kendo-chip-solid-hover-text: null !default;
14380
14894
 
14381
- /// The base background color of selected solid chip.
14895
+ /// The base background color of the selected solid Chip.
14382
14896
  /// @group chip
14383
14897
  $kendo-chip-solid-selected-bg: k-try-tint( $kendo-chip-base-bg, 76% ) !default;
14384
- /// The base text color of selected solid chip.
14898
+ /// The base text color of the selected solid Chip.
14385
14899
  /// @group chip
14386
14900
  $kendo-chip-solid-selected-text: null !default;
14387
14901
 
14388
- /// The base background color of outline chip.
14902
+ /// The base background color of the outline Chip.
14389
14903
  /// @group chip
14390
14904
  $kendo-chip-outline-bg: $kendo-component-bg !default;
14391
- /// The base text color of outline chip.
14905
+ /// The base text color of the outline Chip.
14392
14906
  /// @group chip
14393
14907
  $kendo-chip-outline-text: $kendo-chip-solid-text !default;
14394
- /// The base border color of outline chip.
14908
+ /// The base border color of the outline Chip.
14395
14909
  /// @group chip
14396
14910
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
14397
- /// The base shadow of outline chip.
14911
+ /// The base shadow of the outline Chip.
14398
14912
  /// @group chip
14399
14913
  $kendo-chip-outline-shadow: null !default;
14400
14914
 
14401
- /// The base background color of hovered outline chip.
14915
+ /// The base background color of the hovered outline Chip.
14402
14916
  /// @group chip
14403
14917
  $kendo-chip-outline-hover-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
14404
- /// The base text color of hovered outline chip.
14918
+ /// The base text color of the hovered outline Chip.
14405
14919
  /// @group chip
14406
14920
  $kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-outline-hover-bg ) !default;
14407
14921
 
14408
- /// The base background color of selected outline chip.
14922
+ /// The base background color of the selected outline Chip.
14409
14923
  /// @group chip
14410
14924
  $kendo-chip-outline-selected-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
14411
- /// The base text color of selected outline chip.
14925
+ /// The base text color of the selected outline Chip.
14412
14926
  /// @group chip
14413
14927
  $kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
14414
14928
 
14415
14929
  // Chip List
14416
14930
 
14417
- /// The sizes of the chip list.
14931
+ /// The sizes of the Chip list.
14418
14932
  /// @group chip
14419
14933
  $kendo-chip-list-sizes: (
14420
14934
  sm: k-map-get( $kendo-spacing, 1 ),
@@ -18312,49 +18826,76 @@ $kendo-actions-gradient: null !default;
18312
18826
  // #region @import "../input/_variables.scss"; -> scss/input/_variables.scss
18313
18827
  // Input
18314
18828
 
18315
- /// Default width of input components.
18829
+ /// The default width of the Input components.
18316
18830
  /// @group input
18317
18831
  $kendo-input-default-width: 100% !default;
18318
18832
 
18319
- /// Border width of input components.
18833
+ /// The border width of the Input components.
18320
18834
  /// @group input
18321
18835
  $kendo-input-border-width: 1px !default;
18322
18836
  $kendo-input-border-height: 1px !default;
18323
- /// Border radius of input components.
18837
+ /// The border radius of the Input components.
18324
18838
  /// @group input
18325
18839
  $kendo-input-border-radius: null !default;
18326
18840
 
18327
- /// Horizontal padding of input components.
18841
+ /// The horizontal padding of the Input components.
18328
18842
  /// @group input
18329
18843
  $kendo-input-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18330
- /// Vertical padding of input components.
18844
+ /// The horizontal padding of the small Input components.
18845
+ /// @group input
18846
+ $kendo-input-sm-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18847
+ /// The horizontal padding of the medium Input components.
18848
+ /// @group input
18849
+ $kendo-input-md-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18850
+ /// The horizontal padding of the large Input components.
18851
+ /// @group input
18852
+ $kendo-input-lg-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18853
+
18854
+ /// The vertical padding of the Input components.
18331
18855
  /// @group input
18332
18856
  $kendo-input-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
18333
- ///Font family of input components.
18857
+ /// The vertical padding of the small Input components.
18858
+ /// @group input
18859
+ $kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
18860
+ /// The vertical padding of the medium Input components.
18861
+ /// @group input
18862
+ $kendo-input-md-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
18863
+ /// The vertical padding of the large Input components.
18864
+ /// @group input
18865
+ $kendo-input-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
18866
+
18867
+ /// The font family of the Input components.
18334
18868
  /// @group input
18335
18869
  $kendo-input-font-family: $kendo-font-family !default;
18336
- /// Font size of input components.
18870
+
18871
+ /// The font size of the Input components.
18337
18872
  /// @group input
18338
18873
  $kendo-input-font-size: $kendo-font-size-lg !default;
18339
- /// Line height of input components.
18874
+ /// The font size of the small Input components.
18340
18875
  /// @group input
18341
- $kendo-input-line-height: 1.25 !default;
18342
-
18343
- $kendo-input-sm-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18344
- $kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
18345
18876
  $kendo-input-sm-font-size: $kendo-font-size-lg !default;
18346
- $kendo-input-sm-line-height: 1.25 !default;
18347
-
18348
- $kendo-input-md-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18349
- $kendo-input-md-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
18877
+ /// The font size of the medium Input components.
18878
+ /// @group input
18350
18879
  $kendo-input-md-font-size: $kendo-font-size-lg !default;
18351
- $kendo-input-md-line-height: 1.25 !default;
18352
-
18353
- $kendo-input-lg-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
18354
- $kendo-input-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
18880
+ /// The font size of the large Input components.
18881
+ /// @group input
18355
18882
  $kendo-input-lg-font-size: $kendo-font-size-lg !default;
18883
+
18884
+ /// The line height of the Input components.
18885
+ /// @group input
18886
+ $kendo-input-line-height: 1.25 !default;
18887
+ /// The line height of the small Input components.
18888
+ /// @group input
18889
+ $kendo-input-sm-line-height: 1.25 !default;
18890
+ /// The line height of the medium Input components.
18891
+ /// @group input
18892
+ $kendo-input-md-line-height: 1.25 !default;
18893
+ /// The line height of the large Input components.
18894
+ /// @group input
18356
18895
  $kendo-input-lg-line-height: 1.5 !default;
18357
18896
 
18897
+ /// The sizes map for the Input components.
18898
+ /// @group input
18358
18899
  $kendo-input-sizes: (
18359
18900
  sm: (
18360
18901
  padding-x: $kendo-input-sm-padding-x,
@@ -18385,142 +18926,339 @@ $kendo-input-sizes: (
18385
18926
  )
18386
18927
  ) !default;
18387
18928
 
18929
+ /// The background color of the Input components.
18930
+ /// @group input
18388
18931
  $kendo-input-bg: k-try-shade( $kendo-component-bg, .5 ) !default;
18932
+ /// The text color of the Input components.
18933
+ /// @group input
18389
18934
  $kendo-input-text: $kendo-component-text !default;
18935
+ /// The border color of the Input components.
18936
+ /// @group input
18390
18937
  $kendo-input-border: rgba( $kendo-component-border, .38 ) !default;
18938
+ /// The shadow of the Input components.
18939
+ /// @group input
18391
18940
  $kendo-input-shadow: null !default;
18392
18941
 
18942
+ /// The background color of the hovered Input components.
18943
+ /// @group input
18393
18944
  $kendo-input-hover-bg: null !default;
18945
+ /// The text color of the hovered Input components.
18946
+ /// @group input
18394
18947
  $kendo-input-hover-text: null !default;
18948
+ /// The border color of the hovered Input components.
18949
+ /// @group input
18395
18950
  $kendo-input-hover-border: $kendo-input-text !default;
18951
+ /// The shadow of the hovered Input components.
18952
+ /// @group input
18396
18953
  $kendo-input-hover-shadow: null !default;
18397
18954
 
18955
+ /// The background color of the focused Input components.
18956
+ /// @group input
18398
18957
  $kendo-input-focus-bg: null !default;
18958
+ /// The text color of the focused Input components.
18959
+ /// @group input
18399
18960
  $kendo-input-focus-text: null !default;
18961
+ /// The border color of the focused Input components.
18962
+ /// @group input
18400
18963
  $kendo-input-focus-border: $kendo-color-primary !default;
18964
+ /// The shadow of the focused Input components.
18965
+ /// @group input
18401
18966
  $kendo-input-focus-shadow: null !default;
18402
18967
 
18968
+ /// The background color of the selected Input components.
18969
+ /// @group input
18970
+ $kendo-input-selected-bg: null !default;
18971
+ /// The text color of the selected Input components.
18972
+ /// @group input
18973
+ $kendo-input-selected-text: null !default;
18974
+
18975
+ /// The background color of the disabled Input components.
18976
+ /// @group input
18403
18977
  $kendo-input-disabled-bg: k-try-shade( $kendo-component-bg, .25 ) !default;
18978
+ /// The text color of the disabled Input components.
18979
+ /// @group input
18404
18980
  $kendo-input-disabled-text: $kendo-disabled-text !default;
18981
+ /// The border color of the disabled Input components.
18982
+ /// @group input
18405
18983
  $kendo-input-disabled-border: rgba( $kendo-component-border, k-math-div( k-color-alpha( $kendo-component-border ), 2 ) ) !default;
18984
+ /// The gradient of the disabled Input components.
18985
+ /// @group input
18406
18986
  $kendo-input-disabled-gradient: null !default;
18987
+ /// The shadow of the disabled Input components.
18988
+ /// @group input
18407
18989
  $kendo-input-disabled-shadow: null !default;
18408
18990
 
18991
+ /// The background color of the outline Input components.
18992
+ /// @group input
18409
18993
  $kendo-input-outline-bg: null !default;
18994
+ /// The text color of the outline Input components.
18995
+ /// @group input
18410
18996
  $kendo-input-outline-text: $kendo-input-text !default;
18997
+ /// The border color of the outline Input components.
18998
+ /// @group input
18411
18999
  $kendo-input-outline-border: $kendo-input-border !default;
18412
19000
 
19001
+ /// The background color of the outline hovered Input components.
19002
+ /// @group input
18413
19003
  $kendo-input-outline-hover-bg: null !default;
19004
+ /// The text color of the outline hovered Input components.
19005
+ /// @group input
18414
19006
  $kendo-input-outline-hover-text: null !default;
19007
+ /// The border color of the outline hovered Input components.
19008
+ /// @group input
18415
19009
  $kendo-input-outline-hover-border: $kendo-input-hover-border !default;
18416
19010
 
19011
+ /// The background color of the outline focused Input components.
19012
+ /// @group input
18417
19013
  $kendo-input-outline-focus-bg: null !default;
19014
+ /// The text color of the outline focused Input components.
19015
+ /// @group input
18418
19016
  $kendo-input-outline-focus-text: null !default;
19017
+ /// The border color of the outline focused Input components.
19018
+ /// @group input
18419
19019
  $kendo-input-outline-focus-border: $kendo-input-focus-border !default;
19020
+ /// The shadow of the outline focused Input components.
19021
+ /// @group input
18420
19022
  $kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
18421
19023
 
19024
+ /// The background color of the flat Input components.
19025
+ /// @group input
18422
19026
  $kendo-input-flat-bg: null !default;
19027
+ /// The text color of the flat Input components.
19028
+ /// @group input
18423
19029
  $kendo-input-flat-text: $kendo-input-text !default;
19030
+ /// The border color of the flat Input components.
19031
+ /// @group input
18424
19032
  $kendo-input-flat-border: $kendo-input-border !default;
18425
19033
 
19034
+ /// The background color of the flat hovered Input components.
19035
+ /// @group input
18426
19036
  $kendo-input-flat-hover-bg: null !default;
19037
+ /// The text color of the flat hovered Input components.
19038
+ /// @group input
18427
19039
  $kendo-input-flat-hover-text: null !default;
19040
+ /// The border color of the flat hovered Input components.
19041
+ /// @group input
18428
19042
  $kendo-input-flat-hover-border: $kendo-input-hover-border !default;
18429
19043
 
19044
+ /// The background color of the flat focused Input components.
19045
+ /// @group input
18430
19046
  $kendo-input-flat-focus-bg: null !default;
19047
+ /// The text color of the flat focused Input components.
19048
+ /// @group input
18431
19049
  $kendo-input-flat-focus-text: null !default;
19050
+ /// The border color of the flat focused Input components.
19051
+ /// @group input
18432
19052
  $kendo-input-flat-focus-border: $kendo-input-focus-border !default;
19053
+ /// The shadow of the flat focused Input components.
19054
+ /// @group input
18433
19055
  $kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;
18434
19056
 
19057
+ /// The text color of the Input placeholder.
19058
+ /// @group input
19059
+ $kendo-input-placeholder-text: $kendo-subtle-text !default;
19060
+ /// The opacity of the Input placeholder.
19061
+ /// @group input
19062
+ $kendo-input-placeholder-opacity: 1 !default;
19063
+
19064
+
19065
+ /// The color of the Input clear value icon.
19066
+ /// @group input
19067
+ $kendo-input-clear-value-text: null !default;
19068
+ /// The opacity of the Input clear value icon.
19069
+ /// @group input
19070
+ $kendo-input-clear-value-opacity: .5 !default;
19071
+ /// The color of the hovered Input clear value icon.
19072
+ /// @group input
19073
+ $kendo-input-clear-value-hover-text: null !default;
19074
+ /// The opacity of the hovered Input clear value icon.
19075
+ /// @group input
19076
+ $kendo-input-clear-value-hover-opacity: 1 !default;
19077
+
19078
+ /// The vertical margin of the clear value icon.
19079
+ /// @group input
19080
+ $kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
19081
+ /// The horizontal margin of the clear value icon.
19082
+ /// @group input
19083
+ $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
19084
+
19085
+ /// The width of the Input button.
19086
+ /// @group input
19087
+ $kendo-input-button-width: null !default;
19088
+ /// The border width of the Input button.
19089
+ /// @group input
19090
+ $kendo-input-button-border-width: 1px !default;
19091
+ /// The width of the Input spinner button.
19092
+ /// @group input
19093
+ $kendo-input-spinner-width: null !default;
19094
+ /// The icon offset of the Input spinner button.
19095
+ /// @group input
19096
+ $kendo-input-spinner-icon-offset: null !default;
19097
+
19098
+ /// The color of the Input separator.
19099
+ /// @group input
19100
+ $kendo-input-separator-color: $kendo-input-text !default;
19101
+ /// The opacity of the Input separator.
19102
+ /// @group input
19103
+ $kendo-input-separator-opacity: .5 !default;
19104
+
19105
+ /// The border color of the invalid Input components.
19106
+ /// @group input
19107
+ $kendo-input-invalid-border: $kendo-invalid-border !default;
19108
+ /// The shadow of the invalid Input components.
19109
+ /// @group input
19110
+ $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
19111
+
19112
+ /// The background color of the Picker components.
19113
+ /// @group picker
18435
19114
  $kendo-picker-bg: $kendo-input-bg !default;
19115
+ /// The text color of the Picker components.
19116
+ /// @group picker
18436
19117
  $kendo-picker-text: $kendo-input-text !default;
19118
+ /// The border color of the Picker components.
19119
+ /// @group picker
18437
19120
  $kendo-picker-border: $kendo-input-border !default;
19121
+ /// The gradient of the Picker components.
19122
+ /// @group picker
18438
19123
  $kendo-picker-gradient: null !default;
19124
+ /// The shadow of the Picker components.
19125
+ /// @group picker
18439
19126
  $kendo-picker-shadow: $kendo-input-shadow !default;
18440
19127
 
19128
+ /// The background color of the hovered Picker components.
19129
+ /// @group picker
18441
19130
  $kendo-picker-hover-bg: $kendo-input-hover-bg !default;
19131
+ /// The text color of the hovered Picker components.
19132
+ /// @group picker
18442
19133
  $kendo-picker-hover-text: $kendo-input-hover-text !default;
19134
+ /// The border color of the hovered Picker components.
19135
+ /// @group picker
18443
19136
  $kendo-picker-hover-border: $kendo-input-hover-border !default;
19137
+ /// The gradient of the hovered Picker components.
19138
+ /// @group picker
18444
19139
  $kendo-picker-hover-gradient: null !default;
19140
+ /// The shadow of the hovered Picker components.
19141
+ /// @group picker
18445
19142
  $kendo-picker-hover-shadow: $kendo-input-hover-shadow !default;
18446
19143
 
19144
+ /// The background color of the focused Picker components.
19145
+ /// @group picker
18447
19146
  $kendo-picker-focus-bg: $kendo-input-focus-bg !default;
19147
+ /// The text color of the focused Picker components.
19148
+ /// @group picker
18448
19149
  $kendo-picker-focus-text: $kendo-input-focus-text !default;
19150
+ /// The border color of the focused Picker components.
19151
+ /// @group picker
18449
19152
  $kendo-picker-focus-border: $kendo-input-focus-border !default;
19153
+ /// The gradient of the focused Picker components.
19154
+ /// @group picker
18450
19155
  $kendo-picker-focus-gradient: null !default;
19156
+ /// The shadow of the focused Picker components.
19157
+ /// @group picker
18451
19158
  $kendo-picker-focus-shadow: $kendo-input-focus-shadow !default;
18452
19159
 
19160
+ /// The background color of the disabled Picker components.
19161
+ /// @group picker
18453
19162
  $kendo-picker-disabled-bg: $kendo-input-disabled-bg !default;
19163
+ /// The text color of the disabled Picker components.
19164
+ /// @group picker
18454
19165
  $kendo-picker-disabled-text: $kendo-input-disabled-text !default;
19166
+ /// The border color of the disabled Picker components.
19167
+ /// @group picker
18455
19168
  $kendo-picker-disabled-border: $kendo-input-disabled-border !default;
19169
+ /// The gradient of the disabled Picker components.
19170
+ /// @group picker
18456
19171
  $kendo-picker-disabled-gradient: null !default;
19172
+ /// The shadow of the disabled Picker components.
19173
+ /// @group picker
18457
19174
  $kendo-picker-disabled-shadow: null !default;
18458
19175
 
19176
+ /// The background color of the outline Picker components.
19177
+ /// @group picker
18459
19178
  $kendo-picker-outline-bg: null !default;
19179
+ /// The text color of the outline Picker components.
19180
+ /// @group picker
18460
19181
  $kendo-picker-outline-text: $kendo-picker-text !default;
19182
+ /// The border color of the outline Picker components.
19183
+ /// @group picker
18461
19184
  $kendo-picker-outline-border: $kendo-picker-border !default;
18462
19185
 
19186
+ /// The background color of the outline hovered Picker components.
19187
+ /// @group picker
18463
19188
  $kendo-picker-outline-hover-bg: null !default;
19189
+ /// The text color of the outline hovered Picker components.
19190
+ /// @group picker
18464
19191
  $kendo-picker-outline-hover-text: null !default;
19192
+ /// The border color of the outline hovered Picker components.
19193
+ /// @group picker
18465
19194
  $kendo-picker-outline-hover-border: $kendo-picker-hover-border !default;
18466
19195
 
19196
+ /// The background color of the outline focused Picker components.
19197
+ /// @group picker
18467
19198
  $kendo-picker-outline-focus-bg: nul !default;
19199
+ /// The text color of the outline focused Picker components.
19200
+ /// @group picker
18468
19201
  $kendo-picker-outline-focus-text: null !default;
19202
+ /// The border color of the outline focused Picker components.
19203
+ /// @group picker
18469
19204
  $kendo-picker-outline-focus-border: $kendo-picker-focus-border !default;
19205
+ /// The shadow of the outline focused Picker components.
19206
+ /// @group picker
18470
19207
  $kendo-picker-outline-focus-shadow: null !default;
18471
19208
 
19209
+ /// The background color of the outline hovered and focused Picker components.
19210
+ /// @group picker
18472
19211
  $kendo-picker-outline-hover-focus-bg: null !default;
19212
+ /// The text color of the outline hovered and focused Picker components.
19213
+ /// @group picker
18473
19214
  $kendo-picker-outline-hover-focus-text: null !default;
19215
+ /// The border color of the outline hovered and focused Picker components.
19216
+ /// @group picker
18474
19217
  $kendo-picker-outline-hover-focus-border: null !default;
18475
19218
 
19219
+ /// The background color of the flat Picker components.
19220
+ /// @group picker
18476
19221
  $kendo-picker-flat-bg: null !default;
19222
+ /// The text color of the flat Picker components.
19223
+ /// @group picker
18477
19224
  $kendo-picker-flat-text: $kendo-picker-text !default;
19225
+ /// The border color of the flat Picker components.
19226
+ /// @group picker
18478
19227
  $kendo-picker-flat-border: $kendo-picker-border !default;
18479
19228
 
19229
+ /// The background color of the flat hovered Picker components.
19230
+ /// @group picker
18480
19231
  $kendo-picker-flat-hover-bg: null !default;
19232
+ /// The text color of the flat hovered Picker components.
19233
+ /// @group picker
18481
19234
  $kendo-picker-flat-hover-text: null !default;
19235
+ /// The border color of the flat hovered Picker components.
19236
+ /// @group pickers
18482
19237
  $kendo-picker-flat-hover-border: $kendo-picker-hover-border !default;
18483
19238
 
19239
+ /// The background color of the flat focused Picker components.
19240
+ /// @group picker
18484
19241
  $kendo-picker-flat-focus-bg: null !default;
19242
+ /// The text color of the flat focused Picker components.
19243
+ /// @group picker
18485
19244
  $kendo-picker-flat-focus-text: null !default;
19245
+ /// The border color of the flat focused Picker components.
19246
+ /// @group picker
18486
19247
  $kendo-picker-flat-focus-border: $kendo-picker-focus-border !default;
19248
+ /// The shadow of the flat focused Picker components.
19249
+ /// @group picker
18487
19250
  $kendo-picker-flat-focus-shadow: null !default;
18488
19251
 
19252
+ /// The background color of the flat hovered and focused Picker components.
19253
+ /// @group picker
18489
19254
  $kendo-picker-flat-hover-focus-bg: null !default;
19255
+ /// The text color of the flat hovered and focused Picker components.
19256
+ /// @group picker
18490
19257
  $kendo-picker-flat-hover-focus-text: null !default;
19258
+ /// The border color of the flat hovered and focused Picker components.
19259
+ /// @group picker
18491
19260
  $kendo-picker-flat-hover-focus-border: null !default;
18492
19261
 
18493
- $kendo-input-placeholder-text: $kendo-subtle-text !default;
18494
- $kendo-input-placeholder-opacity: 1 !default;
18495
-
18496
- $kendo-input-selected-bg: null !default;
18497
- $kendo-input-selected-text: null !default;
18498
-
18499
- $kendo-input-clear-value-text: null !default;
18500
- $kendo-input-clear-value-opacity: .5 !default;
18501
- $kendo-input-clear-value-hover-text: null !default;
18502
- $kendo-input-clear-value-hover-opacity: 1 !default;
18503
-
18504
- $kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
18505
- $kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
18506
-
18507
-
18508
- // Input actions
18509
- $kendo-input-button-width: null !default;
18510
- $kendo-input-button-border-width: 1px !default;
18511
- $kendo-input-spinner-width: null !default;
18512
- $kendo-input-spinner-icon-offset: null !default;
18513
-
18514
-
18515
- // Input separator
18516
- $kendo-input-separator-color: $kendo-input-text !default;
18517
- $kendo-input-separator-opacity: .5 !default;
18518
-
18519
-
18520
- // Invalid
18521
- $kendo-input-invalid-border: $kendo-invalid-border !default;
18522
- $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
18523
-
18524
19262
  // #endregion
18525
19263
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
18526
19264
  // Tooltip
@@ -20882,22 +21620,34 @@ $_kendo-module-meta: (
20882
21620
  // #region @import "./_variables.scss"; -> scss/split-button/_variables.scss
20883
21621
  // Split-button
20884
21622
 
20885
- /// Focus shadow of the split button.
21623
+ /// The focus shadow of the SplitButton.
20886
21624
  /// @group split-button
20887
21625
  $kendo-split-button-focus-shadow: $kendo-button-focus-shadow !default;
20888
21626
 
20889
- /// Horizontal padding of the arrow button.
21627
+ /// The horizontal padding of the arrow Button.
20890
21628
  /// @group split-button
20891
21629
  $kendo-split-button-arrow-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
21630
+ /// The horizontal padding of the small arrow Button.
21631
+ /// @group split-button
20892
21632
  $kendo-split-button-sm-arrow-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
21633
+ /// The horizontal padding of the medium arrow Button.
21634
+ /// @group split-button
20893
21635
  $kendo-split-button-md-arrow-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
21636
+ /// The horizontal padding of the large arrow Button.
21637
+ /// @group split-button
20894
21638
  $kendo-split-button-lg-arrow-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
20895
21639
 
20896
- /// Vertical padding of the arrow button.
21640
+ /// The vertical padding of the arrow Button.
20897
21641
  /// @group split-button
20898
21642
  $kendo-split-button-arrow-padding-y: $kendo-button-padding-y !default;
21643
+ /// The vertical padding of the small arrow Button.
21644
+ /// @group split-button
20899
21645
  $kendo-split-button-sm-arrow-padding-y: $kendo-button-sm-padding-y !default;
21646
+ /// The vertical padding of the medium arrow Button.
21647
+ /// @group split-button
20900
21648
  $kendo-split-button-md-arrow-padding-y: $kendo-button-md-padding-y !default;
21649
+ /// The vertical padding of the large arrow Button.
21650
+ /// @group split-button
20901
21651
  $kendo-split-button-lg-arrow-padding-y: $kendo-button-lg-padding-y !default;
20902
21652
 
20903
21653
  // #endregion
@@ -21971,153 +22721,185 @@ $_kendo-module-meta: (
21971
22721
 
21972
22722
  // Radio button
21973
22723
 
21974
- /// Border radius of radio button.
22724
+ /// The border radius of the RadioButton.
21975
22725
  /// @group radio
21976
22726
  $kendo-radio-radius: 50% !default;
21977
- /// Border width of radio button.
22727
+ /// The border width of the RadioButton.
21978
22728
  /// @group radio
21979
22729
  $kendo-radio-border-width: 2px !default;
21980
22730
 
21981
- // Radio button sizes
22731
+ /// The size of a small RadioButton.
22732
+ /// @group radio
22733
+ $kendo-radio-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
22734
+ /// The size of a medium RadioButton.
22735
+ /// @group radio
22736
+ $kendo-radio-md-size: k-map-get( $kendo-spacing, 4 ) !default;
22737
+ /// The size of a large RadioButton.
22738
+ /// @group radio
22739
+ $kendo-radio-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
22740
+
22741
+ /// The glyph size of a small RadioButton.
22742
+ /// @group radio
22743
+ $kendo-radio-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
22744
+ /// The glyph size of a medium RadioButton.
22745
+ /// @group radio
22746
+ $kendo-radio-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
22747
+ /// The glyph size of a large RadioButton.
22748
+ /// @group radio
22749
+ $kendo-radio-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
22750
+
22751
+ /// The ripple size of a small RadioButton.
22752
+ /// @group radio
22753
+ $kendo-radio-sm-ripple-size: 300% !default;
22754
+ /// The ripple size of a medium RadioButton.
22755
+ /// @group radio
22756
+ $kendo-radio-md-ripple-size: 300% !default;
22757
+ /// The ripple size of a large RadioButton.
22758
+ /// @group radio
22759
+ $kendo-radio-lg-ripple-size: 300% !default;
22760
+
22761
+ /// The map with the different RadioButton sizes.
22762
+ /// @group radio
21982
22763
  $kendo-radio-sizes: (
21983
22764
  sm: (
21984
- size: k-map-get( $kendo-spacing, 3 ),
21985
- glyph-size: k-map-get( $kendo-spacing, 2.5 ),
21986
- ripple-size: 300%
22765
+ size: $kendo-radio-sm-size,
22766
+ glyph-size: $kendo-radio-sm-glyph-size,
22767
+ ripple-size: $kendo-radio-sm-ripple-size
21987
22768
  ),
21988
22769
  md: (
21989
- size: k-map-get( $kendo-spacing, 4 ),
21990
- glyph-size: k-map-get( $kendo-spacing, 3.5 ),
21991
- ripple-size: 300%
22770
+ size: $kendo-radio-md-size,
22771
+ glyph-size: $kendo-radio-md-glyph-size,
22772
+ ripple-size: $kendo-radio-md-ripple-size
21992
22773
  ),
21993
22774
  lg: (
21994
- size: k-map-get( $kendo-spacing, 5 ),
21995
- glyph-size: k-map-get( $kendo-spacing, 4.5 ),
21996
- ripple-size: 300%
22775
+ size: $kendo-radio-lg-size,
22776
+ glyph-size: $kendo-radio-lg-glyph-size,
22777
+ ripple-size: $kendo-radio-lg-ripple-size
21997
22778
  )
21998
22779
  ) !default;
21999
22780
 
22000
- /// Background color of radio button.
22781
+ /// The background color of the RadioButton.
22001
22782
  /// @group radio
22002
22783
  $kendo-radio-bg: $kendo-checkbox-bg !default;
22003
- /// Color of radio button.
22784
+ /// The color of the RadioButton.
22004
22785
  /// @group radio
22005
22786
  $kendo-radio-text: $kendo-checkbox-text !default;
22006
- /// Border color of radio button.
22787
+ /// The border color of the RadioButton.
22007
22788
  /// @group radio
22008
22789
  $kendo-radio-border: $kendo-checkbox-border !default;
22009
22790
 
22010
- /// Background color of hovered radio button.
22791
+ /// The background color of the hovered RadioButton.
22011
22792
  /// @group radio
22012
22793
  $kendo-radio-hover-bg: null !default;
22013
- /// Color of hovered radio button.
22794
+ /// The color of the hovered RadioButton.
22014
22795
  /// @group radio
22015
22796
  $kendo-radio-hover-text: null !default;
22016
- /// Border color of hovered radio button.
22797
+ /// The border color of the hovered RadioButton.
22017
22798
  /// @group radio
22018
22799
  $kendo-radio-hover-border: null !default;
22019
22800
 
22020
- /// Background color of checked radio button.
22801
+ /// The background color of the checked RadioButton.
22021
22802
  /// @group radio
22022
22803
  $kendo-radio-checked-bg: null !default;
22023
- /// Color of checked radio button.
22804
+ /// The color of the checked RadioButton.
22024
22805
  /// @group radio
22025
22806
  $kendo-radio-checked-text: $kendo-color-primary !default;
22026
- /// Border color of checked radio button.
22807
+ /// The border color of the checked RadioButton.
22027
22808
  /// @group radio
22028
22809
  $kendo-radio-checked-border: $kendo-radio-checked-text !default;
22029
22810
 
22030
- /// Border color of focused radio button.
22811
+ /// The border color of the focused RadioButton.
22031
22812
  /// @group radio
22032
22813
  $kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
22033
- /// Box shadow of focused radio button.
22814
+ /// The box shadow of the focused RadioButton.
22034
22815
  /// @group radio
22035
22816
  $kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
22036
- /// Border color of focused and checked radio button.
22817
+
22818
+ /// The border color of the focused and checked RadioButton.
22037
22819
  /// @group radio
22038
22820
  $kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
22039
- /// Box shadow of focused and checked radio button.
22821
+ /// The box shadow of the focused and checked RadioButton.
22040
22822
  /// @group radio
22041
22823
  $kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
22042
22824
 
22043
- /// Background color of disabled radio button.
22825
+ /// The background color of the disabled RadioButton.
22044
22826
  /// @group radio
22045
22827
  $kendo-radio-disabled-bg: null !default;
22046
- /// Color of disabled radio button.
22828
+ /// The color of the disabled RadioButton.
22047
22829
  /// @group radio
22048
22830
  $kendo-radio-disabled-text: null !default;
22049
- /// Border color of disabled radio button.
22831
+ /// The border color of the disabled RadioButton.
22050
22832
  /// @group radio
22051
22833
  $kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
22052
22834
 
22053
- /// Background color of disabled and checked radio button.
22835
+ /// The background color of the disabled and checked RadioButton.
22054
22836
  /// @group radio
22055
22837
  $kendo-radio-disabled-checked-bg: null !default;
22056
- /// Color of disabled and checked radio button.
22838
+ /// The color of the disabled and checked RadioButton.
22057
22839
  /// @group radio
22058
22840
  $kendo-radio-disabled-checked-text: $kendo-radio-disabled-border !default;
22059
- /// Border color of disabled and checked radio button.
22841
+ /// The border color of disabled and checked RadioButton.
22060
22842
  /// @group radio
22061
22843
  $kendo-radio-disabled-checked-border: $kendo-radio-disabled-border !default;
22062
22844
 
22063
- /// Background color of invalid radio button.
22845
+ /// The background color of the invalid RadioButton.
22064
22846
  /// @group radio
22065
22847
  $kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
22066
- /// Color of invalid radio button.
22848
+ /// The color of the invalid RadioButton.
22067
22849
  /// @group radio
22068
22850
  $kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
22069
- /// Border color of invalid radio button.
22851
+ /// The border color of the invalid RadioButton.
22070
22852
  /// @group radio
22071
22853
  $kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
22072
22854
 
22073
22855
 
22074
22856
  // Radio indicator
22075
22857
 
22076
- /// Type of radio button indicator.
22858
+ /// The type of the RadioButton indicator.
22077
22859
  /// @group radio
22078
22860
  $kendo-radio-indicator-type: image !default;
22079
22861
 
22080
- /// Glyph font family of radio button indicator.
22862
+ /// The font family of the RadioButton indicator glyph.
22081
22863
  /// @group radio
22082
22864
  $kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
22083
- /// Glyph of radio button indicator.
22865
+ /// The glyph of the RadioButton indicator.
22084
22866
  /// @group radio
22085
22867
  $kendo-radio-checked-glyph: "\e308" !default;
22086
22868
 
22087
- /// Image of checked radio button indicator.
22869
+ /// The image of the checked RadioButton indicator.
22088
22870
  /// @group radio
22089
22871
  $kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
22090
- /// Image of disabled and checked radio button indicator.
22872
+ /// The image of the disabled and checked RadioButton indicator.
22091
22873
  /// @group radio
22092
22874
  $kendo-radio-disabled-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-disabled-checked-text}'/></svg>") ) !default;
22093
22875
 
22094
22876
 
22095
22877
  // Radio label
22096
22878
 
22097
- /// The horizontal margin of the radio button inside of a label.
22879
+ /// The horizontal margin of the RadioButton inside of a label.
22098
22880
  /// @group radio
22099
22881
  $kendo-radio-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
22100
22882
 
22101
22883
 
22102
22884
  // Radio list
22103
22885
 
22104
- /// Spacing between items of horizontal radio button list.
22886
+ /// The horizontal list item margin of the RadioButton.
22105
22887
  /// @group radio
22106
22888
  $kendo-radio-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
22107
- /// Horizontal padding of radio button list items.
22889
+ /// The horizontal list item padding of the RadioButton.
22108
22890
  /// @group radio
22109
22891
  $kendo-radio-list-item-padding-x: 0px !default;
22110
- /// Vertical padding of radio button list items.
22892
+ /// The vertical list item padding of the RadioButton.
22111
22893
  /// @group radio
22112
22894
  $kendo-radio-list-item-padding-y: $kendo-list-md-item-padding-y !default;
22113
22895
 
22114
22896
 
22115
22897
  // Radio ripple
22116
22898
 
22117
- /// Background color of radio button ripple.
22899
+ /// The background color of the RadioButton ripple..
22118
22900
  /// @group radio
22119
22901
  $kendo-radio-ripple-bg: $kendo-color-primary !default;
22120
- /// Opacity of radio button ripple.
22902
+ /// The opacity of the RadioButton ripple.
22121
22903
  /// @group radio
22122
22904
  $kendo-radio-ripple-opacity: .2 !default;
22123
22905
 
@@ -27458,27 +28240,27 @@ $_kendo-module-meta: (
27458
28240
  // #region @import "./_variables.scss"; -> scss/switch/_variables.scss
27459
28241
  // Switch
27460
28242
 
27461
- /// Font family of the switch.
28243
+ /// The font family of the Switch.
27462
28244
  /// @group switch
27463
28245
  $kendo-switch-font-family: null !default;
27464
28246
 
27465
- /// Border width of the switch track.
28247
+ /// The border width of the Switch track.
27466
28248
  /// @group switch
27467
28249
  $kendo-switch-track-border-width: null !default;
27468
28250
 
27469
- /// Border width of the switch thumb.
28251
+ /// The border width of the Switch thumb.
27470
28252
  /// @group switch
27471
28253
  $kendo-switch-thumb-border-width: null !default;
27472
28254
 
27473
- /// Text transform of the switch label.
28255
+ /// The text transform of the Switch label.
27474
28256
  /// @group switch
27475
28257
  $kendo-switch-label-text-transform: null !default;
27476
28258
 
27477
- /// Display of the switch label.
28259
+ /// The display of the Switch label.
27478
28260
  /// @group switch
27479
28261
  $kendo-switch-label-display: none !default;
27480
28262
 
27481
- /// Map with the different switch sizes.
28263
+ /// The map with the different Switch sizes.
27482
28264
  /// @group switch
27483
28265
  $kendo-switch-sizes: (
27484
28266
  sm: ( font-size: null, track-width: 26px, track-height: 12px, thumb-width: 16px, thumb-height: 16px, thumb-offset: -2px, label-offset: 0px ),
@@ -27486,166 +28268,166 @@ $kendo-switch-sizes: (
27486
28268
  lg: ( font-size: null, track-width: 38px, track-height: 16px, thumb-width: 24px, thumb-height: 24px, thumb-offset: -4px, label-offset: 0px )
27487
28269
  ) !default;
27488
28270
 
27489
- /// The background of the track when the switch is not checked.
28271
+ /// The background of the track when the Switch is not checked.
27490
28272
  /// @group switch
27491
28273
  $kendo-switch-off-track-bg: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .38 ) !default;
27492
- /// The text color of the track when the switch is not checked.
28274
+ /// The text color of the track when the Switch is not checked.
27493
28275
  /// @group switch
27494
28276
  $kendo-switch-off-track-text: null !default;
27495
- /// The border color of the track when the switch is not checked.
28277
+ /// The border color of the track when the Switch is not checked
27496
28278
  /// @group switch
27497
28279
  $kendo-switch-off-track-border: null !default;
27498
- /// The background gradient of the track when the switch is not checked.
28280
+ /// The background gradient of the track when the Switch is not checked.
27499
28281
  /// @group switch
27500
28282
  $kendo-switch-off-track-gradient: null !default;
27501
28283
 
27502
- /// The background of the track when hovered switch is not checked.
28284
+ /// The background of the track when the hovered Switch is not checked.
27503
28285
  /// @group switch
27504
28286
  $kendo-switch-off-track-hover-bg: null !default;
27505
- /// The text color of the track when hovered switch is not checked.
28287
+ /// The text color of the track when the hovered Switch is not checked.
27506
28288
  /// @group switch
27507
28289
  $kendo-switch-off-track-hover-text: null !default;
27508
- /// The border color of the track when hovered switch is not checked.
28290
+ /// The border color of the track when the hovered Switch is not checked.
27509
28291
  /// @group switch
27510
28292
  $kendo-switch-off-track-hover-border: null !default;
27511
- /// The background gradient of the track when hovered switch is not checked.
28293
+ /// The background gradient of the track when the hovered Switch is not checked.
27512
28294
  /// @group switch
27513
28295
  $kendo-switch-off-track-hover-gradient: null !default;
27514
28296
 
27515
- /// The background of the track when focused switch is not checked.
28297
+ /// The background of the track when the focused Switch is not checked.
27516
28298
  /// @group switch
27517
28299
  $kendo-switch-off-track-focus-bg: null !default;
27518
- /// The text color of the track when focused switch is not checked.
28300
+ /// The text color of the track when the focused Switch is not checked.
27519
28301
  /// @group switch
27520
28302
  $kendo-switch-off-track-focus-text: null !default;
27521
- /// The border color of the track when focused switch is not checked.
28303
+ /// The border color of the track when the focused Switch is not checked.
27522
28304
  /// @group switch
27523
28305
  $kendo-switch-off-track-focus-border: null !default;
27524
- /// The background gradient of the track when focused switch is not checked.
28306
+ /// The background gradient of the track when the focused Switch is not checked.
27525
28307
  /// @group switch
27526
28308
  $kendo-switch-off-track-focus-gradient: null !default;
27527
- /// The ring around the track when focused switch is not checked.
28309
+ /// The ring around the track when the focused Switch is not checked.
27528
28310
  /// @group switch
27529
28311
  $kendo-switch-off-track-focus-ring: null !default;
27530
28312
 
27531
- /// The background of the track when disabled switch is not checked.
28313
+ /// The background of the track when the disabled Switch is not checked.
27532
28314
  /// @group switch
27533
28315
  $kendo-switch-off-track-disabled-bg: null !default;
27534
- /// The text color of the track when disabled switch is not checked.
28316
+ /// The text color of the track when the disabled Switch is not checked.
27535
28317
  /// @group switch
27536
28318
  $kendo-switch-off-track-disabled-text: null !default;
27537
- /// The border color of the track when disabled switch is not checked.
28319
+ /// The border color of the track when the disabled Switch is not checked.
27538
28320
  /// @group switch
27539
28321
  $kendo-switch-off-track-disabled-border: null !default;
27540
- /// The background gradient of the track when disabled switch is not checked.
28322
+ /// The background gradient of the track when the disabled Switch is not checked.
27541
28323
  /// @group switch
27542
28324
  $kendo-switch-off-track-disabled-gradient: null !default;
27543
28325
 
27544
- /// The background of the thumb when the switch is not checked.
28326
+ /// The background of the thumb when the Switch is not checked.
27545
28327
  /// @group switch
27546
28328
  $kendo-switch-off-thumb-bg: if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ) !default;
27547
- /// The text color of the thumb when the switch is not checked.
28329
+ /// The text color of the thumb when the Switch is not checked.
27548
28330
  /// @group switch
27549
28331
  $kendo-switch-off-thumb-text: null !default;
27550
- /// The border color of the thumb when the switch is not checked.
28332
+ /// The border color of the thumb when the Switch is not checked.
27551
28333
  /// @group switch
27552
28334
  $kendo-switch-off-thumb-border: null !default;
27553
- /// The background gradient of the thumb when the switch is not checked.
28335
+ /// The background gradient of the thumb when the Switch is not checked.
27554
28336
  /// @group switch
27555
28337
  $kendo-switch-off-thumb-gradient: null !default;
27556
28338
 
27557
- /// The background of the thumb when the hovered switch is not checked.
28339
+ /// The background of the thumb when the hovered Switch is not checked.
27558
28340
  /// @group switch
27559
28341
  $kendo-switch-off-thumb-hover-bg: null !default;
27560
- /// The text color of the thumb when the hovered switch is not checked.
28342
+ /// The text color of the thumb when the hovered Switch is not checked.
27561
28343
  /// @group switch
27562
28344
  $kendo-switch-off-thumb-hover-text: null !default;
27563
- /// The border color of the thumb when the hovered switch is not checked.
28345
+ /// The border color of the thumb when the hovered Switch is not checked.
27564
28346
  /// @group switch
27565
28347
  $kendo-switch-off-thumb-hover-border: null !default;
27566
- /// The background gradient of the thumb when the hovered switch is not checked.
28348
+ /// The background gradient of the thumb when the hovered Switch is not checked.
27567
28349
  /// @group switch
27568
28350
  $kendo-switch-off-thumb-hover-gradient: null !default;
27569
28351
 
27570
28352
 
27571
- /// The background of the track when the switch is checked.
28353
+ /// The background of the track when the Switch is checked.
27572
28354
  /// @group switch
27573
28355
  $kendo-switch-on-track-bg: rgba( $kendo-color-primary, .54 ) !default;
27574
- /// The text color of the track when the switch is checked.
28356
+ /// The text color of the track when the Switch is checked.
27575
28357
  /// @group switch
27576
28358
  $kendo-switch-on-track-text: null !default;
27577
- /// The border color of the track when the switch is checked.
28359
+ /// The border color of the track when the Switch is checked.
27578
28360
  /// @group switch
27579
28361
  $kendo-switch-on-track-border: null !default;
27580
- /// The background gradient of the track when the switch is checked.
28362
+ /// The background gradient of the track when the Switch is checked.
27581
28363
  /// @group switch
27582
28364
  $kendo-switch-on-track-gradient: null !default;
27583
28365
 
27584
- /// The background of the track when the hovered switch is checked.
28366
+ /// The background of the track when the hovered Switch is checked.
27585
28367
  /// @group switch
27586
28368
  $kendo-switch-on-track-hover-bg: null !default;
27587
- /// The text color of the track when the hovered switch is checked.
28369
+ /// The text color of the track when the hovered Switch is checked.
27588
28370
  /// @group switch
27589
28371
  $kendo-switch-on-track-hover-text: null !default;
27590
- /// The border color of the track when the hovered switch is checked.
28372
+ /// The border color of the track when the hovered Switch is checked.
27591
28373
  /// @group switch
27592
28374
  $kendo-switch-on-track-hover-border: null !default;
27593
- /// The background gradient of the track when the hovered switch is checked.
28375
+ /// The background gradient of the track when the hovered Switch is checked.
27594
28376
  /// @group switch
27595
28377
  $kendo-switch-on-track-hover-gradient: null !default;
27596
28378
 
27597
- /// The background of the track when the focused switch is checked.
28379
+ /// The background of the track when the focused Switch is checked.
27598
28380
  /// @group switch
27599
28381
  $kendo-switch-on-track-focus-bg: null !default;
27600
- /// The text color of the track when the focused switch is checked.
28382
+ /// The text color of the track when the focused Switch is checked.
27601
28383
  /// @group switch
27602
28384
  $kendo-switch-on-track-focus-text: null !default;
27603
- /// The border color of the track when the focused switch is checked.
28385
+ /// The border color of the track when the focused Switch is checked.
27604
28386
  /// @group switch
27605
28387
  $kendo-switch-on-track-focus-border: null !default;
27606
- /// The background gradient of the track when the focused switch is checked.
28388
+ /// The background gradient of the track when the focused Switch is checked.
27607
28389
  /// @group switch
27608
28390
  $kendo-switch-on-track-focus-gradient: null !default;
27609
- /// The ring around the track when the focused switch is checked.
28391
+ /// The ring around the track when the focused Switch is checked.
27610
28392
  /// @group switch
27611
28393
  $kendo-switch-on-track-focus-ring: null !default;
27612
28394
 
27613
- /// The background of the track when the disabled switch is checked.
28395
+ /// The background of the track when the disabled Switch is checked.
27614
28396
  /// @group switch
27615
28397
  $kendo-switch-on-track-disabled-bg: null !default;
27616
- /// The text color of the track when the disabled switch is checked.
28398
+ /// The text color of the track when the disabled Switch is checked.
27617
28399
  /// @group switch
27618
28400
  $kendo-switch-on-track-disabled-text: null !default;
27619
- /// The border color of the track when the disabled switch is checked.
28401
+ /// The border color of the track when the disabled Switch is checked.
27620
28402
  /// @group switch
27621
28403
  $kendo-switch-on-track-disabled-border: null !default;
27622
- /// The background gradient of the track when the disabled switch is checked.
28404
+ /// The background gradient of the track when the disabled Switch is checked.
27623
28405
  /// @group switch
27624
28406
  $kendo-switch-on-track-disabled-gradient: null !default;
27625
28407
 
27626
- /// The background of the thumb when the switch is checked.
28408
+ /// The background of the thumb when the Switch is checked.
27627
28409
  /// @group switch
27628
28410
  $kendo-switch-on-thumb-bg: $kendo-color-primary !default;
27629
- /// The text color of the thumb when the switch is checked.
28411
+ /// The text color of the thumb when the Switch is checked.
27630
28412
  /// @group switch
27631
28413
  $kendo-switch-on-thumb-text: null !default;
27632
- /// The border color of the thumb when the switch is checked.
28414
+ /// The border color of the thumb when the Switch is checked.
27633
28415
  /// @group switch
27634
28416
  $kendo-switch-on-thumb-border: null !default;
27635
- /// The background gradient of the thumb when the switch is checked.
28417
+ /// The background gradient of the thumb when the Switch is checked.
27636
28418
  /// @group switch
27637
28419
  $kendo-switch-on-thumb-gradient: null !default;
27638
28420
 
27639
- /// The background of the thumb when the hovered switch is checked.
28421
+ /// The background of the thumb when the hovered Switch is checked.
27640
28422
  /// @group switch
27641
28423
  $kendo-switch-on-thumb-hover-bg: null !default;
27642
- /// The text color of the thumb when the hovered switch is checked.
28424
+ /// The text color of the thumb when the hovered Switch is checked.
27643
28425
  /// @group switch
27644
28426
  $kendo-switch-on-thumb-hover-text: null !default;
27645
- /// The border color of the thumb when the hovered switch is checked.
28427
+ /// The border color of the thumb when the hovered Switch is checked.
27646
28428
  /// @group switch
27647
28429
  $kendo-switch-on-thumb-hover-border: null !default;
27648
- /// The background gradient of the thumb when the hovered switch is checked.
28430
+ /// The background gradient of the thumb when the hovered Switch is checked.
27649
28431
  /// @group switch
27650
28432
  $kendo-switch-on-thumb-hover-gradient: null !default;
27651
28433
 
@@ -43149,7 +43931,6 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
43149
43931
  display: flex;
43150
43932
  flex-flow: column nowrap;
43151
43933
  position: relative;
43152
- z-index: 1;
43153
43934
  -webkit-touch-callout: none;
43154
43935
  -webkit-tap-highlight-color: $kendo-color-rgba-transparent;
43155
43936