@progress/kendo-theme-core 13.2.0-dev.2 → 13.2.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 (37) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/meta/sassdoc-data.json +44 -566
  3. package/dist/meta/sassdoc-raw-data.json +21 -253
  4. package/dist/meta/variables.json +2 -42
  5. package/package.json +2 -2
  6. package/scss/color-system/_swatch.scss +0 -56
  7. package/scss/components/appbar/_theme.scss +1 -6
  8. package/scss/components/appbar/_variables.scss +1 -7
  9. package/scss/components/avatar/_variables.scss +1 -1
  10. package/scss/components/badge/_variables.scss +1 -1
  11. package/scss/components/bottom-navigation/_theme.scss +1 -5
  12. package/scss/components/bottom-navigation/_variables.scss +1 -1
  13. package/scss/components/button/_theme.scss +4 -4
  14. package/scss/components/button/_variables.scss +1 -1
  15. package/scss/components/card/_theme.scss +0 -15
  16. package/scss/components/card/_variables.scss +0 -6
  17. package/scss/components/dialog/_theme.scss +0 -12
  18. package/scss/components/dialog/_variables.scss +0 -6
  19. package/scss/components/fab/_variables.scss +1 -1
  20. package/scss/components/floating-label/_theme.scss +1 -1
  21. package/scss/components/forms/_theme.scss +2 -2
  22. package/scss/components/grid/_layout.scss +6 -29
  23. package/scss/components/grid/_theme.scss +244 -296
  24. package/scss/components/icons/_theme.scss +4 -0
  25. package/scss/components/icons/_variables.scss +1 -0
  26. package/scss/components/listbox/_layout.scss +1 -0
  27. package/scss/components/loader/_layout.scss +9 -6
  28. package/scss/components/loader/_variables.scss +1 -1
  29. package/scss/components/messagebox/_theme.scss +5 -13
  30. package/scss/components/messagebox/_variables.scss +1 -1
  31. package/scss/components/overlay/_theme.scss +0 -17
  32. package/scss/components/overlay/_variables.scss +0 -5
  33. package/scss/components/suggestion/_layout.scss +6 -1
  34. package/scss/components/suggestion/_variables.scss +1 -1
  35. package/scss/components/timeselector/_theme.scss +1 -1
  36. package/scss/components/window/_theme.scss +0 -12
  37. package/scss/components/window/_variables.scss +0 -5
@@ -4,4 +4,8 @@
4
4
  .k-accent-icon {
5
5
  color: $kendo-accent-icon-color;
6
6
  }
7
+
8
+ .k-action-icon {
9
+ color: $kendo-action-icon-color;
10
+ }
7
11
  }
@@ -11,3 +11,4 @@ $kendo-icon-spacing: null !default;
11
11
  $kendo-icon-padding: null !default;
12
12
 
13
13
  $kendo-accent-icon-color: null !default;
14
+ $kendo-action-icon-color: null !default;
@@ -51,6 +51,7 @@
51
51
 
52
52
  .k-list-scroller {
53
53
  width: 100%;
54
+ min-width: 0;
54
55
  min-height: 0;
55
56
  height: inherit;
56
57
  border-width: $kendo-listbox-border-width;
@@ -420,8 +420,7 @@
420
420
 
421
421
  }
422
422
 
423
- .k-loader-container,
424
- .k-loader-container-overlay {
423
+ .k-loader-container {
425
424
  width: 100%;
426
425
  height: 100%;
427
426
  position: absolute;
@@ -431,10 +430,6 @@
431
430
  inset-inline-start: 0;
432
431
  }
433
432
 
434
- // TODO: use k-overlay as a base class in rendering
435
- .k-loader-container-overlay {
436
- opacity: $kendo-overlay-opacity;
437
- }
438
433
 
439
434
  .k-loader-container-inner {
440
435
  display: flex;
@@ -443,6 +438,14 @@
443
438
  z-index: k-z-index("base", 2);
444
439
  }
445
440
 
441
+ .k-loader-container-overlay {
442
+ position: absolute;
443
+ }
444
+
445
+ .k-loader-container-overlay + .k-loader-container-inner {
446
+ z-index: k-z-index("overlay");
447
+ }
448
+
446
449
  .k-loader-container-panel {
447
450
  border-width: $kendo-loader-container-panel-border-width;
448
451
  border-style: $kendo-loader-container-panel-border-style;
@@ -56,4 +56,4 @@ $kendo-zindex-loading: null !default;
56
56
 
57
57
  /// The theme colors map of the Loader.
58
58
  /// @group loader
59
- $kendo-loader-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse") !default;
59
+ $kendo-loader-theme-colors: ("base", "primary", "secondary", "tertiary") !default;
@@ -11,19 +11,11 @@
11
11
  .k-messagebox {
12
12
  #{k-when-default($kendo-message-box-default-theme-color, $color-name)}
13
13
  &.k-messagebox-#{$color-name} {
14
- @if $color-name == "inverse" {
15
- @include fill(
16
- k-color(dark-on-subtle),
17
- k-color(dark-subtle),
18
- k-color(dark-hover)
19
- );
20
- } @else {
21
- @include fill(
22
- k-color(#{$color-name}-on-subtle),
23
- k-color(#{$color-name}-subtle),
24
- k-color(#{$color-name}-emphasis)
25
- );
26
- }
14
+ @include fill(
15
+ k-color(#{$color-name}-on-subtle),
16
+ k-color(#{$color-name}-subtle),
17
+ k-color(#{$color-name}-emphasis)
18
+ );
27
19
  }
28
20
  }
29
21
  }
@@ -19,4 +19,4 @@ $kendo-message-box-link-text-decoration: null !default;
19
19
 
20
20
  /// The theme colors map of the MessageBox.
21
21
  /// @group message-box
22
- $kendo-message-box-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse") !default;
22
+ $kendo-message-box-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "inverse") !default;
@@ -1,25 +1,8 @@
1
- @use "../../color-system/_functions.scss" as *;
2
- @use "../../functions/default.scss" as *;
3
1
  @use "./_variables.scss" as *;
4
2
 
5
3
  @mixin kendo-overlay--theme-base() {
6
4
  // Overlay
7
5
  .k-overlay {
8
- @each $name in $kendo-overlay-theme-colors {
9
- #{k-when-default($kendo-overlay-default-theme-color, $name)}
10
- &.k-overlay-#{$name} {
11
- background-color: k-color(#{$name});
12
- }
13
- }
14
-
15
6
  background-color: $kendo-overlay-bg;
16
7
  }
17
-
18
- // Where single k-overlay-{color} is used as a theme element
19
- @each $name in $kendo-overlay-theme-colors {
20
- .k-overlay-#{$name} {
21
- background-color: k-color(#{$name});
22
- }
23
- }
24
-
25
8
  }
@@ -1,8 +1,3 @@
1
- $kendo-overlay-default-theme-color: null !default;
2
-
3
1
  $kendo-overlay-bg: null !default;
4
2
  $kendo-overlay-opacity: null !default;
5
3
 
6
- /// The theme colors map of the Overlay.
7
- /// @group overlay
8
- $kendo-overlay-theme-colors: ("dark", "light", "inverse") !default;
@@ -16,6 +16,7 @@
16
16
 
17
17
  .k-suggestion-group {
18
18
  padding-block: calc( #{$kendo-suggestion-padding-y} / 2 );
19
+ margin-inline: calc( #{$kendo-suggestion-padding-y} / -2 );
19
20
  display: flex;
20
21
  flex: 1;
21
22
  flex-wrap: wrap;
@@ -27,8 +28,12 @@
27
28
  flex-wrap: nowrap;
28
29
  }
29
30
 
31
+ &:not(:has(.k-suggestions-scroll)) {
32
+ padding-inline: calc( #{$kendo-suggestion-padding-y} / 2 );
33
+ }
34
+
30
35
  .k-suggestions-scroll {
31
- padding-block: calc( #{$kendo-suggestion-padding-y} / 2 );
36
+ padding: calc( #{$kendo-suggestion-padding-y} / 2 );
32
37
  margin-block: calc( #{$kendo-suggestion-padding-y} / -2 );
33
38
  display: flex;
34
39
  overflow-x: auto;
@@ -15,7 +15,7 @@ $kendo-suggestion-focus-shadow-color: null !default;
15
15
 
16
16
  /// The theme colors map of the Suggestion.
17
17
  /// @group suggestion
18
- $kendo-suggestion-theme-colors: ("base", "primary", "secondary") !default;
18
+ $kendo-suggestion-theme-colors: ("base", "primary", "secondary", "tertiary") !default;
19
19
 
20
20
  $kendo-suggestion-default-theme-color: null !default;
21
21
 
@@ -60,7 +60,7 @@
60
60
  }
61
61
 
62
62
  .k-item:hover {
63
- color: k-color(primary);
63
+ color: k-color(primary-on-surface);
64
64
  }
65
65
  }
66
66
 
@@ -14,18 +14,6 @@
14
14
  $kendo-window-border
15
15
  );
16
16
  @include box-shadow( $kendo-window-shadow );
17
-
18
- // Window theme colors
19
- @each $name in $kendo-window-theme-colors {
20
-
21
- #{k-when-default($kendo-window-default-theme-color, $name)}
22
- &.k-window-#{$name} {
23
- .k-window-titlebar {
24
- color: k-color(on-#{$name});
25
- background-color: k-color(#{$name});
26
- }
27
- }
28
- }
29
17
  }
30
18
 
31
19
  .k-window:focus,
@@ -1,6 +1,5 @@
1
1
  // Window
2
2
 
3
- $kendo-window-default-theme-color: null !default;
4
3
  $kendo-window-default-size: null !default;
5
4
 
6
5
  $kendo-window-border-width: null !default;
@@ -47,7 +46,3 @@ $kendo-window-sizes: (
47
46
  md: 800px,
48
47
  lg: 1200px
49
48
  ) !default;
50
-
51
- /// The theme colors map of the Window.
52
- /// @group window
53
- $kendo-window-theme-colors: ("primary", "light", "dark") !default;