@progress/kendo-theme-meridian 14.0.0-dev.5 → 14.0.0-dev.7

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.
@@ -3,7 +3,7 @@
3
3
  "name": "Meridian Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-meridian",
6
- "version": "14.0.0-dev.5",
6
+ "version": "14.0.0-dev.7",
7
7
  "previewColors": [
8
8
  "oklch(100% 0 0deg)",
9
9
  "oklch(98.46% 0.0017 247.84deg)",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-meridian",
3
3
  "description": "Meridian theme for Kendo UI",
4
- "version": "14.0.0-dev.5",
4
+ "version": "14.0.0-dev.7",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -52,13 +52,13 @@
52
52
  "postpublish": "echo 'no postpublish for meridian theme'"
53
53
  },
54
54
  "dependencies": {
55
- "@progress/kendo-svg-icons": "^4.8.0",
56
- "@progress/kendo-theme-core": "14.0.0-dev.5",
57
- "@progress/kendo-theme-utils": "14.0.0-dev.5"
55
+ "@progress/kendo-svg-icons": "4.9.0",
56
+ "@progress/kendo-theme-core": "14.0.0-dev.7",
57
+ "@progress/kendo-theme-utils": "14.0.0-dev.7"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
61
61
  "lib": "lib"
62
62
  },
63
- "gitHead": "e4940bedb197a2fd5923e82978532f175982b08a"
63
+ "gitHead": "0e45bfaa59a5e51c96cdd46b78d35db59103aef4"
64
64
  }
@@ -1,3 +1,4 @@
1
+ @use "sass:map";
1
2
  @use "../core/_index.scss" as *;
2
3
  @use "../core/functions/index.scss" as *;
3
4
 
@@ -26,7 +27,7 @@ $kendo-color-preview-hover-border: k-color(border) !default;
26
27
  $kendo-color-preview-no-color-bg: k-color(surface-alt) !default;
27
28
  /// The text color of the ColorPreview when no color is selected.
28
29
  /// @group color-preview
29
- $kendo-color-preview-no-color-text: k-color(error) !default;
30
+ $kendo-color-preview-no-color-text: map.get($kendo-colors, error) !default;
30
31
  /// The border color of the ColorPreview when no color is selected.
31
32
  /// @group color-preview
32
33
  $kendo-color-preview-no-color-border: null !default;
@@ -106,7 +106,7 @@ $kendo-font-family-sans: Arial, Verdana, Tahoma, "Trebuchet MS", Helvetica, Impa
106
106
  $kendo-font-family-serif: "Times New Roman", Georgia, Garamond, Palatino, Baskerville !default;
107
107
  /// The sans-serif font family across all components.
108
108
  /// @group typography
109
- $kendo-font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
109
+ $kendo-font-family-sans-serif: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
110
110
  /// The monospace font family across all components.
111
111
  /// @group typography
112
112
  $kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
@@ -368,7 +368,7 @@ $kendo-chart-no-data-font-size: var( --kendo-font-size-lg, inherit ) !default;
368
368
  $kendo-chart-no-data-font-weight: var( --kendo-font-weight, normal ) !default;
369
369
  /// The vertical padding of the Chart.
370
370
  /// @group charts
371
- $kendo-chart-no-data-padding-y: k-spacing( 25 ) !default;
371
+ $kendo-chart-no-data-padding-y: 7rem !default;
372
372
 
373
373
  // Gauge
374
374
  /// The background color of the Gauge.
@@ -1,16 +1,24 @@
1
1
  @use "@progress/kendo-theme-core/scss/components/gantt/_layout.scss" as *;
2
+ @use "../core/_index.scss" as *;
2
3
  @use "./_variables.scss" as *;
3
4
 
4
5
  @mixin kendo-gantt--layout() {
5
6
  @include kendo-gantt--layout-base();
6
7
 
7
8
  .k-gantt{
9
+
8
10
  .k-splitbar {
9
11
  border-inline: 1px solid $kendo-gantt-border;
10
12
  }
11
- .k-gantt-header,
13
+
14
+ .k-gantt-header {
15
+ @include border-top-radius($kendo-gantt-border-radius);
16
+ @include border-bottom-radius(0);
17
+ }
18
+
12
19
  .k-gantt-footer {
13
- border-radius: 0;
20
+ @include border-top-radius(0);
21
+ @include border-bottom-radius($kendo-gantt-border-radius);
14
22
  }
15
23
  }
16
24
  }
@@ -15,6 +15,7 @@
15
15
  }
16
16
 
17
17
  .k-grid {
18
+
18
19
  .k-table .k-grid-header-sticky,
19
20
  .k-table .k-grid-content-sticky,
20
21
  .k-table .k-grid-footer-sticky {
@@ -42,6 +43,18 @@
42
43
  border-inline-start: 1px solid k-color(border);
43
44
  }
44
45
  }
46
+
47
+ .k-table .k-table-row .k-table-group-td {
48
+ border-width: 0;
49
+ }
50
+
51
+ .k-grouping-row + .k-table-row .k-table-td {
52
+ border-block-start-width: 0;
53
+ }
54
+
55
+ .k-grouping-row + .k-master-row .k-table-td {
56
+ border-block-start-width: $kendo-grid-grouping-row-border-top;
57
+ }
45
58
  }
46
59
 
47
60
  // Column menu fix for action buttons focus state
@@ -63,6 +76,10 @@
63
76
  font-weight: var(--kendo-font-weight-medium, 500);
64
77
  }
65
78
 
79
+ .k-table-group-row .k-table-td {
80
+ border-block-end-width: 0;
81
+ }
82
+
66
83
  // Row-span cells use an inset shadow for all borders,
67
84
  // so zero out the td's own borders to avoid doubling.
68
85
  .k-grid .k-table-td-row-span {
@@ -80,4 +97,16 @@
80
97
  border-block-end-width: 0;
81
98
  }
82
99
  }
100
+
101
+ .k-grid-header {
102
+ .k-table-thead > .k-table-row:not(:only-child) > .k-table-th,
103
+ .k-table-thead > .k-table-row:not(:only-child) > .k-table-td {
104
+ border-inline-start: 1px solid k-color(border);
105
+ }
106
+
107
+ .k-table-thead > .k-table-row:not(:only-child):first-child > .k-table-th:first-child,
108
+ .k-table-thead > .k-table-row:not(:only-child):first-child > .k-table-td:first-child {
109
+ border-inline-start-width: 0;
110
+ }
111
+ }
83
112
  }
@@ -462,7 +462,7 @@ $kendo-grid-hierarchy-col-width: ($kendo-icon-size * 2) !default;
462
462
 
463
463
  /// The grouping border top of the Grid row.
464
464
  /// @group grid
465
- $kendo-grid-grouping-row-border-top: 0px !default;
465
+ $kendo-grid-grouping-row-border-top: 1px !default;
466
466
  /// The vertical border of the Grid footer.
467
467
  /// @group grid
468
468
  $kendo-grid-group-footer-border-y: 1px !default;
@@ -1,12 +1,14 @@
1
1
  @use "@progress/kendo-theme-core/scss/components/pdf-viewer/_layout.scss" as *;
2
-
2
+ @use "../core/_index.scss" as *;
3
+ @use "./_variables.scss" as *;
3
4
 
4
5
  @mixin kendo-pdf-viewer--layout() {
5
6
  @include kendo-pdf-viewer--layout-base();
6
7
 
7
8
  .k-pdf-viewer {
8
9
  .k-toolbar {
9
- border-radius: 0;
10
+ @include border-top-radius($kendo-pdf-viewer-border-radius);
11
+ @include border-bottom-radius(0);
10
12
  }
11
13
  }
12
14
  }
@@ -1,5 +1,6 @@
1
1
  @use "@progress/kendo-theme-core/scss/components/scheduler/_layout.scss" as *;
2
-
2
+ @use "../core/_index.scss" as *;
3
+ @use "./variables.scss" as *;
3
4
 
4
5
  @mixin kendo-scheduler--layout() {
5
6
  @include kendo-scheduler--layout-base();
@@ -15,8 +16,13 @@
15
16
  font-weight: var(--kendo-font-weight-normal);
16
17
  }
17
18
 
18
- .k-scheduler-toolbar,
19
+ .k-scheduler-toolbar {
20
+ @include border-top-radius($kendo-scheduler-border-radius);
21
+ @include border-bottom-radius(0);
22
+ }
23
+
19
24
  .k-scheduler-footer {
20
- border-radius: 0;
25
+ @include border-top-radius(0);
26
+ @include border-bottom-radius($kendo-scheduler-border-radius);
21
27
  }
22
28
  }
@@ -1,6 +1,13 @@
1
1
  @use "@progress/kendo-theme-core/scss/components/segmented-control/_layout.scss" as *;
2
-
2
+ @use "../core/z-index/index.scss" as *;
3
3
 
4
4
  @mixin kendo-segmented-control--layout() {
5
5
  @include kendo-segmented-control--layout-base();
6
+
7
+ .k-segmented-control {
8
+ > .k-segmented-control-button:focus,
9
+ > .k-segmented-control-button.k-focus {
10
+ z-index: k-z-index("base", 3);
11
+ }
12
+ }
6
13
  }
@@ -23,4 +23,9 @@
23
23
  .k-spreadsheet-toolbar {
24
24
  background-color: $kendo-spreadsheet-bg !important; // stylelint-disable-line declaration-no-important
25
25
  }
26
+
27
+ .k-spreadsheet-tabstrip {
28
+ background-color: k-translucency-bg(k-color(surface-alt));
29
+ border-radius: inherit;
30
+ }
26
31
  }
@@ -18,7 +18,8 @@
18
18
  border-start-start-radius: $kendo-window-border-radius;
19
19
  border-start-end-radius: $kendo-window-border-radius;
20
20
  }
21
- .k-window-content:last-child {
21
+ .k-window-content:last-child,
22
+ .k-window-content:has(+ .k-resize-handles-wrapper) {
22
23
  border-end-start-radius: $kendo-window-border-radius;
23
24
  border-end-end-radius: $kendo-window-border-radius;
24
25
  }