@progress/kendo-theme-classic 14.4.0-dev.3 → 14.4.0-dev.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/classic-green-dark.css +1 -1
  3. package/dist/classic-green.css +1 -1
  4. package/dist/classic-lavender-dark.css +1 -1
  5. package/dist/classic-lavender.css +1 -1
  6. package/dist/classic-main-dark.css +1 -1
  7. package/dist/classic-main.css +1 -1
  8. package/dist/classic-metro-dark.css +1 -1
  9. package/dist/classic-metro.css +1 -1
  10. package/dist/classic-moonlight.css +1 -1
  11. package/dist/classic-opal-dark.css +1 -1
  12. package/dist/classic-opal.css +1 -1
  13. package/dist/classic-silver-dark.css +1 -1
  14. package/dist/classic-silver.css +1 -1
  15. package/dist/classic-uniform.css +1 -1
  16. package/dist/meta/sassdoc-data.json +3914 -3752
  17. package/dist/meta/sassdoc-raw-data.json +1941 -1866
  18. package/dist/meta/variables.json +101 -22
  19. package/lib/swatches/classic-green-dark.json +1 -1
  20. package/lib/swatches/classic-green.json +1 -1
  21. package/lib/swatches/classic-lavender-dark.json +1 -1
  22. package/lib/swatches/classic-lavender.json +1 -1
  23. package/lib/swatches/classic-main-dark.json +1 -1
  24. package/lib/swatches/classic-main.json +1 -1
  25. package/lib/swatches/classic-metro-dark.json +1 -1
  26. package/lib/swatches/classic-metro.json +1 -1
  27. package/lib/swatches/classic-moonlight.json +1 -1
  28. package/lib/swatches/classic-opal-dark.json +1 -1
  29. package/lib/swatches/classic-opal.json +1 -1
  30. package/lib/swatches/classic-silver-dark.json +1 -1
  31. package/lib/swatches/classic-silver.json +1 -1
  32. package/lib/swatches/classic-uniform.json +1 -1
  33. package/package.json +4 -4
  34. package/scss/filemanager/_variables.scss +5 -0
  35. package/scss/grid/_variables.scss +5 -0
  36. package/scss/icons/_variables.scss +0 -28
  37. package/scss/menu/_variables.scss +5 -0
  38. package/scss/panelbar/_variables.scss +5 -0
  39. package/scss/scheduler/_variables.scss +5 -0
  40. package/scss/stepper/_variables.scss +5 -0
  41. package/scss/tabstrip/_variables.scss +5 -0
  42. package/scss/toolbar/_variables.scss +5 -0
  43. package/scss/tooltip/_variables.scss +5 -0
  44. package/scss/treeview/_variables.scss +5 -0
@@ -1530,41 +1530,80 @@
1530
1530
  }
1531
1531
  }
1532
1532
  },
1533
- "kendo-icon-default-size": {
1533
+ "ki-icon-default-size": {
1534
1534
  "type": "String",
1535
1535
  "value": "\"md\""
1536
1536
  },
1537
- "kendo-icon-size": {
1537
+ "ki-icon-size": {
1538
1538
  "type": "Number",
1539
1539
  "value": "16px"
1540
1540
  },
1541
- "kendo-icon-size-xs": {
1542
- "type": "Calculation",
1543
- "value": "calc(16px * 0.75)"
1541
+ "ki-icon-size-xs": {
1542
+ "type": "String",
1543
+ "value": "var(--kendo-icon-size-xs, calc(var(--kendo-icon-size, 16px) * 0.75))"
1544
1544
  },
1545
- "kendo-icon-size-sm": {
1546
- "type": "Calculation",
1547
- "value": "calc(16px * 0.875)"
1545
+ "ki-icon-size-sm": {
1546
+ "type": "String",
1547
+ "value": "var(--kendo-icon-size-sm, calc(var(--kendo-icon-size, 16px) * 0.875))"
1548
+ },
1549
+ "ki-icon-size-md": {
1550
+ "type": "String",
1551
+ "value": "var(--kendo-icon-size-md, var(--kendo-icon-size, 16px))"
1552
+ },
1553
+ "ki-icon-size-lg": {
1554
+ "type": "String",
1555
+ "value": "var(--kendo-icon-size-lg, calc(var(--kendo-icon-size, 16px) * 1.25))"
1556
+ },
1557
+ "ki-icon-size-xl": {
1558
+ "type": "String",
1559
+ "value": "var(--kendo-icon-size-xl, calc(var(--kendo-icon-size, 16px) * 1.5))"
1560
+ },
1561
+ "ki-icon-size-xxl": {
1562
+ "type": "String",
1563
+ "value": "var(--kendo-icon-size-xxl, calc(var(--kendo-icon-size, 16px) * 2))"
1564
+ },
1565
+ "ki-icon-size-xxxl": {
1566
+ "type": "String",
1567
+ "value": "var(--kendo-icon-size-xxxl, calc(var(--kendo-icon-size, 16px) * 3))"
1548
1568
  },
1549
- "kendo-icon-size-md": {
1569
+ "ki-icon-stroke-width": {
1550
1570
  "type": "Number",
1551
- "value": "16px"
1571
+ "value": "1.5"
1552
1572
  },
1553
- "kendo-icon-size-lg": {
1554
- "type": "Calculation",
1555
- "value": "calc(16px * 1.25)"
1573
+ "ki-icon-sizes": {
1574
+ "type": "Map",
1575
+ "value": "(xs: var(--kendo-icon-size-xs, calc(var(--kendo-icon-size, 16px) * 0.75)), sm: var(--kendo-icon-size-sm, calc(var(--kendo-icon-size, 16px) * 0.875)), md: var(--kendo-icon-size-md, var(--kendo-icon-size, 16px)), lg: var(--kendo-icon-size-lg, calc(var(--kendo-icon-size, 16px) * 1.25)), xl: var(--kendo-icon-size-xl, calc(var(--kendo-icon-size, 16px) * 1.5)), xxl: var(--kendo-icon-size-xxl, calc(var(--kendo-icon-size, 16px) * 2)), xxxl: var(--kendo-icon-size-xxxl, calc(var(--kendo-icon-size, 16px) * 3)))",
1576
+ "prettyValue": {
1577
+ "xs": "var(--kendo-icon-size-xs, calc(var(--kendo-icon-size, 16px) * 0.75))",
1578
+ "sm": "var(--kendo-icon-size-sm, calc(var(--kendo-icon-size, 16px) * 0.875))",
1579
+ "md": "var(--kendo-icon-size-md, var(--kendo-icon-size, 16px))",
1580
+ "lg": "var(--kendo-icon-size-lg, calc(var(--kendo-icon-size, 16px) * 1.25))",
1581
+ "xl": "var(--kendo-icon-size-xl, calc(var(--kendo-icon-size, 16px) * 1.5))",
1582
+ "xxl": "var(--kendo-icon-size-xxl, calc(var(--kendo-icon-size, 16px) * 2))",
1583
+ "xxxl": "var(--kendo-icon-size-xxxl, calc(var(--kendo-icon-size, 16px) * 3))"
1584
+ }
1556
1585
  },
1557
- "kendo-icon-size-xl": {
1558
- "type": "Calculation",
1559
- "value": "calc(16px * 1.5)"
1586
+ "ki-rotate-map": {
1587
+ "type": "Map",
1588
+ "value": "(0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg)",
1589
+ "prettyValue": {
1590
+ "0": "0deg",
1591
+ "45": "45deg",
1592
+ "90": "90deg",
1593
+ "135": "135deg",
1594
+ "180": "180deg",
1595
+ "225": "225deg",
1596
+ "270": "270deg",
1597
+ "315": "315deg"
1598
+ }
1560
1599
  },
1561
- "kendo-icon-size-xxl": {
1562
- "type": "Calculation",
1563
- "value": "calc(16px * 2)"
1600
+ "kendo-icon-default-size": {
1601
+ "type": "String",
1602
+ "value": "\"md\""
1564
1603
  },
1565
- "kendo-icon-size-xxxl": {
1566
- "type": "Calculation",
1567
- "value": "calc(16px * 3)"
1604
+ "kendo-icon-size": {
1605
+ "type": "Number",
1606
+ "value": "16px"
1568
1607
  },
1569
1608
  "kendo-icon-spacing": {
1570
1609
  "type": "String",
@@ -3125,6 +3164,10 @@
3125
3164
  "type": "String",
3126
3165
  "value": "var(--kendo-spacing-2)"
3127
3166
  },
3167
+ "kendo-tooltip-icon-spacing": {
3168
+ "type": "String",
3169
+ "value": "var(--kendo-spacing-1)"
3170
+ },
3128
3171
  "kendo-tooltip-border-width": {
3129
3172
  "type": "Number",
3130
3173
  "value": "0px"
@@ -5541,6 +5584,10 @@
5541
5584
  "type": "Null",
5542
5585
  "value": "null"
5543
5586
  },
5587
+ "kendo-menu-expand-arrow-spacing": {
5588
+ "type": "String",
5589
+ "value": "var(--kendo-spacing-1)"
5590
+ },
5544
5591
  "kendo-menu-separator-margin-inline": {
5545
5592
  "type": "String",
5546
5593
  "value": "var(--kendo-spacing-1)"
@@ -5838,6 +5885,10 @@
5838
5885
  "type": "String",
5839
5886
  "value": "var(--kendo-spacing-2\\.5)"
5840
5887
  },
5888
+ "kendo-toolbar-item-icon-spacing": {
5889
+ "type": "String",
5890
+ "value": "var(--kendo-spacing-1)"
5891
+ },
5841
5892
  "kendo-toolbar-separator-height": {
5842
5893
  "type": "Calculation",
5843
5894
  "value": "calc(var(--kendo-line-height) * 1em + var(--kendo-spacing-1) * 2 + 1px * 2)"
@@ -7489,6 +7540,10 @@
7489
7540
  "type": "String",
7490
7541
  "value": "var(--kendo-spacing-0\\.5)"
7491
7542
  },
7543
+ "kendo-treeview-item-icon-spacing": {
7544
+ "type": "String",
7545
+ "value": "var(--kendo-spacing-1)"
7546
+ },
7492
7547
  "kendo-treeview-border-radius": {
7493
7548
  "type": "String",
7494
7549
  "value": "var(--kendo-border-radius-sm)"
@@ -10205,6 +10260,10 @@
10205
10260
  "type": "String",
10206
10261
  "value": "var(--kendo-border-radius-xxxl)"
10207
10262
  },
10263
+ "kendo-stepper-label-icon-spacing": {
10264
+ "type": "String",
10265
+ "value": "var(--kendo-spacing-1)"
10266
+ },
10208
10267
  "kendo-stepper-border-width": {
10209
10268
  "type": "Number",
10210
10269
  "value": "0px"
@@ -10545,6 +10604,10 @@
10545
10604
  "type": "String",
10546
10605
  "value": "var(--kendo-spacing-0)"
10547
10606
  },
10607
+ "kendo-tabstrip-item-icon-spacing": {
10608
+ "type": "String",
10609
+ "value": "var(--kendo-spacing-1)"
10610
+ },
10548
10611
  "kendo-tabstrip-item-spacing-x": {
10549
10612
  "type": "String",
10550
10613
  "value": "var(--kendo-spacing-1)"
@@ -10949,6 +11012,10 @@
10949
11012
  "type": "String",
10950
11013
  "value": "var(--kendo-spacing-1)"
10951
11014
  },
11015
+ "kendo-panelbar-item-icon-spacing": {
11016
+ "type": "String",
11017
+ "value": "var(--kendo-spacing-1)"
11018
+ },
10952
11019
  "kendo-panelbar-item-level-count": {
10953
11020
  "type": "Number",
10954
11021
  "value": "4"
@@ -11761,6 +11828,10 @@
11761
11828
  "type": "String",
11762
11829
  "value": "var(--kendo-spacing-1)"
11763
11830
  },
11831
+ "kendo-grid-column-menu-icon-spacing": {
11832
+ "type": "String",
11833
+ "value": "var(--kendo-spacing-1)"
11834
+ },
11764
11835
  "kendo-grid-toolbar-border-width": {
11765
11836
  "type": "Number",
11766
11837
  "value": "1px"
@@ -13101,6 +13172,10 @@
13101
13172
  "type": "String",
13102
13173
  "value": "var(--kendo-spacing-1)"
13103
13174
  },
13175
+ "kendo-file-manager-icon-spacing": {
13176
+ "type": "String",
13177
+ "value": "var(--kendo-spacing-1)"
13178
+ },
13104
13179
  "kendo-file-manager-preview-bg": {
13105
13180
  "type": "Null",
13106
13181
  "value": "null"
@@ -14257,6 +14332,10 @@
14257
14332
  "type": "String",
14258
14333
  "value": "var(--kendo-spacing-0\\.5)"
14259
14334
  },
14335
+ "kendo-scheduler-nav-item-icon-spacing": {
14336
+ "type": "String",
14337
+ "value": "var(--kendo-spacing-1)"
14338
+ },
14260
14339
  "kendo-scheduler-header-bg": {
14261
14340
  "type": "String",
14262
14341
  "value": "var(--kendo-color-surface)"
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(18.97% 0.0025 145.96deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(96.61% 0.0016 149.39deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Lavender Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(20.26% 0.0161 330.88deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Lavender",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(98.51% 0.0001 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(17.30% 0.0000 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(95.51% 0.0001 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Metro Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(16.38% 0.0000 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Metro",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(98.21% 0.0001 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Moonlight",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(27.98% 0.0255 248.78deg)",
9
9
  "oklch(33.48% 0.0217 259.40deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(27.27% 0.0000 0deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(95.37% 0.0262 224.39deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(0.00% 0.0000 0deg)",
9
9
  "oklch(18.72% 0.0020 285.91deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(96.44% 0.0014 284.24deg)",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Uniform",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "14.4.0-dev.3",
6
+ "version": "14.4.0-dev.4",
7
7
  "previewColors": [
8
8
  "oklch(100.00% 0.0001 0deg)",
9
9
  "oklch(95.51% 0.0001 0deg)",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-classic",
3
3
  "description": "Sass port of less based themes for Kendo UI theme",
4
- "version": "14.4.0-dev.3",
4
+ "version": "14.4.0-dev.4",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -52,9 +52,9 @@
52
52
  "postpublish": "echo 'no postpublish for classic theme'"
53
53
  },
54
54
  "dependencies": {
55
- "@progress/kendo-svg-icons": "^4.9.0",
56
- "@progress/kendo-theme-core": "14.4.0-dev.3",
57
- "@progress/kendo-theme-utils": "14.4.0-dev.3"
55
+ "@progress/kendo-svg-icons": "^4.11.0",
56
+ "@progress/kendo-theme-core": "14.4.0-dev.4",
57
+ "@progress/kendo-theme-utils": "14.4.0-dev.4"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
@@ -159,6 +159,10 @@ $kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
159
159
  /// The gap between the columns in the FileManager preview.
160
160
  /// @group file-manager
161
161
  $kendo-file-manager-preview-column-gap: k-spacing(1) !default;
162
+
163
+ /// The icon spacing in FileManager items.
164
+ /// @group file-manager
165
+ $kendo-file-manager-icon-spacing: k-spacing(1) !default;
162
166
  /// The background color of the FileManager preview.
163
167
  /// @group file-manager
164
168
  $kendo-file-manager-preview-bg: null !default;
@@ -230,6 +234,7 @@ $kendo-file-manager-preview-icon-border: null !default;
230
234
  $kendo-file-manager-preview-border-width: $kendo-file-manager-preview-border-width,
231
235
  $kendo-file-manager-preview-spacing: $kendo-file-manager-preview-spacing,
232
236
  $kendo-file-manager-preview-column-gap: $kendo-file-manager-preview-column-gap,
237
+ $kendo-file-manager-icon-spacing: $kendo-file-manager-icon-spacing,
233
238
  $kendo-file-manager-preview-bg: $kendo-file-manager-preview-bg,
234
239
  $kendo-file-manager-preview-text: $kendo-file-manager-preview-text,
235
240
  $kendo-file-manager-preview-border: $kendo-file-manager-preview-border,
@@ -190,6 +190,10 @@ $kendo-grid-header-first-border: 1px !default;
190
190
  /// @group grid
191
191
  $kendo-grid-header-menu-icon-spacing: $kendo-icon-spacing !default;
192
192
 
193
+ /// The spacing between icon and text in Grid column menu items.
194
+ /// @group grid
195
+ $kendo-grid-column-menu-icon-spacing: k-spacing(1) !default;
196
+
193
197
  /// The width of the border around the Grid toolbar.
194
198
  /// @group grid
195
199
  $kendo-grid-toolbar-border-width: $kendo-grid-border-width !default;
@@ -588,6 +592,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
588
592
  $kendo-grid-header-font-size: $kendo-grid-header-font-size,
589
593
  $kendo-grid-header-first-border: $kendo-grid-header-first-border,
590
594
  $kendo-grid-header-menu-icon-spacing: $kendo-grid-header-menu-icon-spacing,
595
+ $kendo-grid-column-menu-icon-spacing: $kendo-grid-column-menu-icon-spacing,
591
596
  $kendo-grid-toolbar-border-width: $kendo-grid-toolbar-border-width,
592
597
  $kendo-grid-cell-horizontal-border-width: $kendo-grid-cell-horizontal-border-width,
593
598
  $kendo-grid-cell-vertical-border-width: $kendo-grid-cell-vertical-border-width,
@@ -8,27 +8,6 @@ $kendo-icon-default-size: "md" !default;
8
8
  /// The default size icon size.
9
9
  /// @group icon
10
10
  $kendo-icon-size: 16px !default;
11
- /// The extra small icon size.
12
- /// @group icon
13
- $kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
14
- /// The small icon size.
15
- /// @group icon
16
- $kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
17
- /// The medium icon size.
18
- /// @group icon
19
- $kendo-icon-size-md: $kendo-icon-size !default;
20
- /// The large icon size.
21
- /// @group icon
22
- $kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
23
- /// The extra large icon size.
24
- /// @group icon
25
- $kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
26
- /// The double extra large icon size.
27
- /// @group icon
28
- $kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
29
- /// The triple extra large icon size.
30
- /// @group icon
31
- $kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
32
11
  /// The default icon spacing.
33
12
  /// @group icon
34
13
  $kendo-icon-spacing: k-spacing(1) !default;
@@ -45,13 +24,6 @@ $kendo-action-icon-color: k-color( primary-on-surface ) !default;
45
24
  @forward "@progress/kendo-theme-core/scss/components/icons/_variables.scss" with (
46
25
  $kendo-icon-default-size: $kendo-icon-default-size,
47
26
  $kendo-icon-size: $kendo-icon-size,
48
- $kendo-icon-size-xs: $kendo-icon-size-xs,
49
- $kendo-icon-size-sm: $kendo-icon-size-sm,
50
- $kendo-icon-size-md: $kendo-icon-size-md,
51
- $kendo-icon-size-lg: $kendo-icon-size-lg,
52
- $kendo-icon-size-xl: $kendo-icon-size-xl,
53
- $kendo-icon-size-xxl: $kendo-icon-size-xxl,
54
- $kendo-icon-size-xxxl: $kendo-icon-size-xxxl,
55
27
  $kendo-icon-spacing: $kendo-icon-spacing,
56
28
  $kendo-icon-padding: $kendo-icon-padding,
57
29
  $kendo-accent-icon-color: $kendo-accent-icon-color,
@@ -146,6 +146,10 @@ $kendo-menu-icon-padding-x: null !default;
146
146
  /// @group menu
147
147
  $kendo-menu-icon-padding-y: null !default;
148
148
 
149
+ /// The spacing used for the menu expand arrow negative offset.
150
+ /// @group menu
151
+ $kendo-menu-expand-arrow-spacing: k-spacing(1) !default;
152
+
149
153
  // Menu Separator
150
154
 
151
155
  /// The inline margin of the horizontal Menu separator.
@@ -349,6 +353,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
349
353
  $kendo-menu-scroll-button-hover-gradient: $kendo-menu-scroll-button-hover-gradient,
350
354
  $kendo-menu-icon-padding-x: $kendo-menu-icon-padding-x,
351
355
  $kendo-menu-icon-padding-y: $kendo-menu-icon-padding-y,
356
+ $kendo-menu-expand-arrow-spacing: $kendo-menu-expand-arrow-spacing,
352
357
  $kendo-menu-separator-margin-inline: $kendo-menu-separator-margin-inline,
353
358
  $kendo-menu-separator-margin-block: $kendo-menu-separator-margin-block,
354
359
  $kendo-menu-separator-border: $kendo-menu-separator-border,
@@ -39,6 +39,10 @@ $kendo-panelbar-item-padding-x: k-spacing(2) !default;
39
39
  /// @group panelbar
40
40
  $kendo-panelbar-item-padding-y: k-spacing(1) !default;
41
41
 
42
+ /// The spacing between icon and text in PanelBar items.
43
+ /// @group panelbar
44
+ $kendo-panelbar-item-icon-spacing: k-spacing(1) !default;
45
+
42
46
  /// The maximum nesting of the PanelBar items.
43
47
  /// @group panelbar
44
48
  $kendo-panelbar-item-level-count: 4 !default;
@@ -280,6 +284,7 @@ $kendo-panelbar-header-expanded-gradient: null !default;
280
284
  $kendo-panelbar-header-padding-y: $kendo-panelbar-header-padding-y,
281
285
  $kendo-panelbar-item-padding-x: $kendo-panelbar-item-padding-x,
282
286
  $kendo-panelbar-item-padding-y: $kendo-panelbar-item-padding-y,
287
+ $kendo-panelbar-item-icon-spacing: $kendo-panelbar-item-icon-spacing,
283
288
  $kendo-panelbar-item-level-count: $kendo-panelbar-item-level-count,
284
289
  $kendo-panelbar-bg: $kendo-panelbar-bg,
285
290
  $kendo-panelbar-text: $kendo-panelbar-text,
@@ -262,6 +262,10 @@ $kendo-scheduler-marquee-label-inset-x: k-spacing(1) !default;
262
262
  /// @group scheduler
263
263
  $kendo-scheduler-marquee-label-inset-y: k-spacing(0.5) !default;
264
264
 
265
+ /// The spacing between icon and text in Scheduler navigation items.
266
+ /// @group scheduler
267
+ $kendo-scheduler-nav-item-icon-spacing: k-spacing(1) !default;
268
+
265
269
  /// The background color of the Scheduler header.
266
270
  /// @group scheduler
267
271
  $kendo-scheduler-header-bg: k-color(surface) !default;
@@ -363,6 +367,7 @@ $kendo-scheduler-adaptive-subtle-text: k-color(on-app-surface) !default;
363
367
  $kendo-scheduler-indicators-margin: $kendo-scheduler-indicators-margin,
364
368
  $kendo-scheduler-marquee-label-inset-x: $kendo-scheduler-marquee-label-inset-x,
365
369
  $kendo-scheduler-marquee-label-inset-y: $kendo-scheduler-marquee-label-inset-y,
370
+ $kendo-scheduler-nav-item-icon-spacing: $kendo-scheduler-nav-item-icon-spacing,
366
371
  $kendo-scheduler-header-bg: $kendo-scheduler-header-bg,
367
372
  $kendo-scheduler-adaptive-bg: $kendo-scheduler-adaptive-bg,
368
373
  $kendo-scheduler-adaptive-text: $kendo-scheduler-adaptive-text,
@@ -28,6 +28,10 @@ $kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
28
28
  /// The border radius of the Stepper label.
29
29
  /// @group stepper
30
30
  $kendo-stepper-label-border-radius: k-border-radius(xxxl) !default;
31
+
32
+ /// The spacing between icon and text in Stepper labels.
33
+ /// @group stepper
34
+ $kendo-stepper-label-icon-spacing: k-spacing(1) !default;
31
35
  /// The width of the border around the Stepper.
32
36
  /// @group stepper
33
37
  $kendo-stepper-border-width: 0px !default;
@@ -243,6 +247,7 @@ $kendo-stepper-content-transition-timing-function: k-easing(standard) !default;
243
247
  $kendo-stepper-label-padding-x: $kendo-stepper-label-padding-x,
244
248
  $kendo-stepper-label-padding-y: $kendo-stepper-label-padding-y,
245
249
  $kendo-stepper-label-border-radius: $kendo-stepper-label-border-radius,
250
+ $kendo-stepper-label-icon-spacing: $kendo-stepper-label-icon-spacing,
246
251
  $kendo-stepper-border-width: $kendo-stepper-border-width,
247
252
  $kendo-stepper-inline-content-padding-x: $kendo-stepper-inline-content-padding-x,
248
253
  $kendo-stepper-inline-content-padding-y: $kendo-stepper-inline-content-padding-y,
@@ -79,6 +79,10 @@ $kendo-tabstrip-item-border-radius: k-border-radius(md) !default;
79
79
  /// The gap between the TabStrip items.
80
80
  /// @group tabstrip
81
81
  $kendo-tabstrip-item-gap: k-spacing(0) !default;
82
+
83
+ /// The spacing between icon and text in TabStrip tab items.
84
+ /// @group tabstrip
85
+ $kendo-tabstrip-item-icon-spacing: k-spacing(1) !default;
82
86
  /// The horizontal spacing of the TabStrip items.
83
87
  /// @group tabstrip
84
88
  $kendo-tabstrip-item-spacing-x: k-spacing(1) !default;
@@ -232,6 +236,7 @@ $kendo-tabstrip-scroll-button-spacing: null !default;
232
236
  $kendo-tabstrip-item-border-width: $kendo-tabstrip-item-border-width,
233
237
  $kendo-tabstrip-item-border-radius: $kendo-tabstrip-item-border-radius,
234
238
  $kendo-tabstrip-item-gap: $kendo-tabstrip-item-gap,
239
+ $kendo-tabstrip-item-icon-spacing: $kendo-tabstrip-item-icon-spacing,
235
240
  $kendo-tabstrip-item-spacing-x: $kendo-tabstrip-item-spacing-x,
236
241
  $kendo-tabstrip-item-bg: $kendo-tabstrip-item-bg,
237
242
  $kendo-tabstrip-sm-item-padding-x: $kendo-tabstrip-sm-item-padding-x,
@@ -43,6 +43,10 @@ $kendo-toolbar-md-spacing: k-spacing(2) !default;
43
43
  /// @group toolbar
44
44
  $kendo-toolbar-lg-spacing: k-spacing(2.5) !default;
45
45
 
46
+ /// The spacing between icon and text in Toolbar items.
47
+ /// @group toolbar
48
+ $kendo-toolbar-item-icon-spacing: k-spacing(1) !default;
49
+
46
50
  /// The height of the Toolbar button separator.
47
51
  /// @group toolbar
48
52
  $kendo-toolbar-separator-height: $kendo-button-md-calc-size !default;
@@ -165,6 +169,7 @@ $kendo-floating-toolbar-border-radius: k-border-radius(xxl) !default;
165
169
  $kendo-toolbar-sm-spacing: $kendo-toolbar-sm-spacing,
166
170
  $kendo-toolbar-md-spacing: $kendo-toolbar-md-spacing,
167
171
  $kendo-toolbar-lg-spacing: $kendo-toolbar-lg-spacing,
172
+ $kendo-toolbar-item-icon-spacing: $kendo-toolbar-item-icon-spacing,
168
173
  $kendo-toolbar-separator-height: $kendo-toolbar-separator-height,
169
174
  $kendo-toolbar-sm-separator-height: $kendo-toolbar-sm-separator-height,
170
175
  $kendo-toolbar-md-separator-height: $kendo-toolbar-md-separator-height,
@@ -10,6 +10,10 @@ $kendo-tooltip-padding-y: k-spacing(1) !default;
10
10
  /// The horizontal padding of the Tooltip.
11
11
  /// @group tooltip
12
12
  $kendo-tooltip-padding-x: k-spacing(2) !default;
13
+
14
+ /// The spacing between icon and tooltip text/button.
15
+ /// @group tooltip
16
+ $kendo-tooltip-icon-spacing: k-spacing(1) !default;
13
17
  /// The width of the border around the Tooltip.
14
18
  /// @group tooltip
15
19
  $kendo-tooltip-border-width: 0px !default;
@@ -63,6 +67,7 @@ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
63
67
  @forward "@progress/kendo-theme-core/scss/components/tooltip/_variables.scss" with (
64
68
  $kendo-tooltip-padding-y: $kendo-tooltip-padding-y,
65
69
  $kendo-tooltip-padding-x: $kendo-tooltip-padding-x,
70
+ $kendo-tooltip-icon-spacing: $kendo-tooltip-icon-spacing,
66
71
  $kendo-tooltip-border-width: $kendo-tooltip-border-width,
67
72
  $kendo-tooltip-border-radius: $kendo-tooltip-border-radius,
68
73
  $kendo-tooltip-font-family: $kendo-tooltip-font-family,
@@ -9,6 +9,10 @@ $kendo-treeview-default-size: "md" !default;
9
9
  /// The gap of the TreeView.
10
10
  /// @group treeview
11
11
  $kendo-treeview-gap: k-spacing(0.5) !default;
12
+
13
+ /// The spacing between icon and text in TreeView items.
14
+ /// @group treeview
15
+ $kendo-treeview-item-icon-spacing: k-spacing(1) !default;
12
16
  /// The border radius of the TreeView.
13
17
  /// @group treeview
14
18
  $kendo-treeview-border-radius: k-border-radius(sm) !default;
@@ -171,6 +175,7 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
171
175
  @forward "@progress/kendo-theme-core/scss/components/treeview/_variables.scss" with (
172
176
  $kendo-treeview-default-size: $kendo-treeview-default-size,
173
177
  $kendo-treeview-gap: $kendo-treeview-gap,
178
+ $kendo-treeview-item-icon-spacing: $kendo-treeview-item-icon-spacing,
174
179
  $kendo-treeview-border-radius: $kendo-treeview-border-radius,
175
180
  $kendo-treeview-font-family: $kendo-treeview-font-family,
176
181
  $kendo-treeview-font-size: $kendo-treeview-font-size,