@progress/kendo-theme-bootstrap 14.1.1-dev.3 → 14.2.0-0

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 (43) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/bootstrap-3-dark.css +1 -1
  3. package/dist/bootstrap-3.css +1 -1
  4. package/dist/bootstrap-4-dark.css +1 -1
  5. package/dist/bootstrap-4.css +1 -1
  6. package/dist/bootstrap-dataviz-v4.css +1 -1
  7. package/dist/bootstrap-main-dark.css +1 -1
  8. package/dist/bootstrap-main.css +1 -1
  9. package/dist/bootstrap-nordic.css +1 -1
  10. package/dist/bootstrap-turquoise-dark.css +1 -1
  11. package/dist/bootstrap-turquoise.css +1 -1
  12. package/dist/bootstrap-urban.css +1 -1
  13. package/dist/bootstrap-vintage.css +1 -1
  14. package/dist/meta/sassdoc-data.json +834 -1974
  15. package/dist/meta/sassdoc-raw-data.json +416 -941
  16. package/dist/meta/variables.json +49 -85
  17. package/lib/swatches/bootstrap-3-dark.json +1 -1
  18. package/lib/swatches/bootstrap-3.json +1 -1
  19. package/lib/swatches/bootstrap-4-dark.json +1 -1
  20. package/lib/swatches/bootstrap-4.json +1 -1
  21. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  22. package/lib/swatches/bootstrap-main-dark.json +1 -1
  23. package/lib/swatches/bootstrap-main.json +1 -1
  24. package/lib/swatches/bootstrap-nordic.json +1 -1
  25. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  26. package/lib/swatches/bootstrap-turquoise.json +1 -1
  27. package/lib/swatches/bootstrap-urban.json +1 -1
  28. package/lib/swatches/bootstrap-vintage.json +1 -1
  29. package/package.json +4 -5
  30. package/scss/diagram/_index.scss +16 -0
  31. package/scss/diagram/_layout.scss +6 -0
  32. package/scss/diagram/_theme.scss +6 -0
  33. package/scss/diagram/_variables.scss +1 -0
  34. package/scss/drawer/_variables.scss +0 -12
  35. package/scss/expansion-panel/_variables.scss +1 -1
  36. package/scss/grid/_index.scss +0 -2
  37. package/scss/index.scss +2 -3
  38. package/scss/scheduler/_index.scss +10 -2
  39. package/scss/scheduler/_variables.scss +35 -4
  40. package/scss/adaptive/_index.scss +0 -26
  41. package/scss/adaptive/_layout.scss +0 -6
  42. package/scss/adaptive/_theme.scss +0 -6
  43. package/scss/adaptive/_variables.scss +0 -88
@@ -1,88 +0,0 @@
1
- @use "../core/_index.scss" as *;
2
-
3
- // Adaptive Common
4
- /// The background color of the Adaptive component.
5
- /// @group adaptive
6
- $kendo-adaptive-bg: k-color(app-surface) !default;
7
- /// The text color of the Adaptive component.
8
- /// @group adaptive
9
- $kendo-adaptive-text: k-color(on-app-surface) !default;
10
- /// The border color of the Adaptive component.
11
- /// @group adaptive
12
- $kendo-adaptive-border: k-color(border) !default;
13
-
14
- /// The background color of the Adaptive content.
15
- /// @group adaptive
16
- $kendo-adaptive-content-bg: k-color(surface) !default;
17
- /// The text color of the Adaptive content.
18
- /// @group adaptive
19
- $kendo-adaptive-content-text: k-color(on-app-surface) !default;
20
-
21
- /// The background color of the Adaptive menu.
22
- /// @group adaptive
23
- $kendo-adaptive-menu-bg: k-color(primary) !default;
24
- /// The text color of the Adaptive menu.
25
- /// @group adaptive
26
- $kendo-adaptive-menu-text: k-color(on-primary) !default;
27
-
28
- /// The text color of the Adaptive menu clear button.
29
- /// @group adaptive
30
- $kendo-adaptive-menu-clear-text: k-color(primary-on-surface) !default;
31
-
32
- /// The border color of the Adaptive menu item.
33
- /// @group adaptive
34
- $kendo-adaptive-menu-item-border: k-color(border) !default;
35
- /// The text color of the Adaptive menu title.
36
- /// @group adaptive
37
- $kendo-adaptive-menu-title-text: k-color(on-app-surface) !default;
38
-
39
- /// The width of the border around the Adaptive component.
40
- /// @group adaptive
41
- $kendo-adaptive-border-width: 1px !default;
42
- /// The font family of the Adaptive component.
43
- /// @group adaptive
44
- $kendo-adaptive-font-family: var(--kendo-font-family) !default;
45
- /// The font size of the Adaptive component.
46
- /// @group adaptive
47
- $kendo-adaptive-font-size: var(--kendo-font-size) !default;
48
- /// The line height of the Adaptive component.
49
- /// @group adaptive
50
- $kendo-adaptive-line-height: var(--kendo-line-height) !default;
51
-
52
- // Adaptive Grid
53
- /// The text color of the Adaptive Grid sort indicator.
54
- /// @group adaptive
55
- $kendo-adaptive-grid-sort-text: k-color(primary-on-surface) !default;
56
-
57
- // Adaptive Scheduler
58
- /// The text color of the current date in the Adaptive Scheduler.
59
- /// @group adaptive
60
- $kendo-adaptive-scheduler-current-text: k-color(primary-on-surface) !default;
61
- /// The base text color of the Adaptive Scheduler.
62
- /// @group adaptive
63
- $kendo-adaptive-scheduler-base-text: inherit !default;
64
- /// The subtle text color of the Adaptive Scheduler.
65
- /// @group adaptive
66
- $kendo-adaptive-scheduler-subtle-text: k-color(on-app-surface) !default;
67
-
68
-
69
- @forward "@progress/kendo-theme-core/scss/components/adaptive/_variables.scss" with (
70
- $kendo-adaptive-bg: $kendo-adaptive-bg,
71
- $kendo-adaptive-text: $kendo-adaptive-text,
72
- $kendo-adaptive-border: $kendo-adaptive-border,
73
- $kendo-adaptive-content-bg: $kendo-adaptive-content-bg,
74
- $kendo-adaptive-content-text: $kendo-adaptive-content-text,
75
- $kendo-adaptive-menu-bg: $kendo-adaptive-menu-bg,
76
- $kendo-adaptive-menu-text: $kendo-adaptive-menu-text,
77
- $kendo-adaptive-menu-clear-text: $kendo-adaptive-menu-clear-text,
78
- $kendo-adaptive-menu-item-border: $kendo-adaptive-menu-item-border,
79
- $kendo-adaptive-menu-title-text: $kendo-adaptive-menu-title-text,
80
- $kendo-adaptive-border-width: $kendo-adaptive-border-width,
81
- $kendo-adaptive-font-family: $kendo-adaptive-font-family,
82
- $kendo-adaptive-font-size: $kendo-adaptive-font-size,
83
- $kendo-adaptive-line-height: $kendo-adaptive-line-height,
84
- $kendo-adaptive-grid-sort-text: $kendo-adaptive-grid-sort-text,
85
- $kendo-adaptive-scheduler-current-text: $kendo-adaptive-scheduler-current-text,
86
- $kendo-adaptive-scheduler-base-text: $kendo-adaptive-scheduler-base-text,
87
- $kendo-adaptive-scheduler-subtle-text: $kendo-adaptive-scheduler-subtle-text
88
- );