@progress/kendo-theme-core 13.0.0-dev.0 → 13.0.0-dev.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-core",
3
3
  "description": "A collection of functions and mixins used for building themes for Kendo UI",
4
- "version": "13.0.0-dev.0",
4
+ "version": "13.0.0-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -46,5 +46,5 @@
46
46
  "directories": {
47
47
  "doc": "docs"
48
48
  },
49
- "gitHead": "38e27eadee8553fb04c4e46f57812022ff2e149b"
49
+ "gitHead": "c1e883bc20fcf4b83398d27c582cd0fcb3e6f71f"
50
50
  }
@@ -7,6 +7,7 @@
7
7
  @use "../../typography/index.scss" as *;
8
8
  @use "../../spacing/index.scss" as *;
9
9
  @use "../../z-index/index.scss" as *;
10
+ @use "../../elevation/index.scss" as *;
10
11
  @use "./variables.scss" as *;
11
12
  @use "../icons/_variables.scss" as *;
12
13
  @use "../chip/_variables.scss" as *;
@@ -317,6 +318,28 @@
317
318
  border-inline-start-width: $kendo-grid-cell-vertical-border-width;
318
319
  }
319
320
 
321
+ .k-grid-sticky-container {
322
+ position: sticky;
323
+ inset-block-start: 0;
324
+ z-index: k-z-index("base", 3);
325
+ overflow: hidden;
326
+ border-color: inherit;
327
+ box-shadow: $kendo-grid-sticky-container-shadow;
328
+
329
+ .k-table {
330
+ table-layout: fixed;
331
+ }
332
+ }
333
+
334
+ .k-grid-sticky-top-container:has(> .k-grid-group-sticky-header-table) {
335
+ border-block-end-width: 1px;
336
+ border-block-end-style: solid;
337
+ }
338
+ .k-grid-sticky-bottom-container:has(> .k-grid-group-sticky-footer-table) {
339
+ border-block-start-width: 1px;
340
+ border-block-start-style: solid;
341
+ }
342
+
320
343
  .k-hierarchy-cell,
321
344
  .k-drag-cell {
322
345
  text-align: center;
@@ -335,6 +358,20 @@
335
358
  }
336
359
  }
337
360
 
361
+ .k-pin-cell {
362
+ display: inline-flex;
363
+ align-items: center;
364
+ justify-content: center;
365
+ gap: k-spacing(2);
366
+ padding: k-spacing(1);
367
+ cursor: pointer;
368
+
369
+ > .k-icon-wrapper-host .k-icon,
370
+ > .k-icon {
371
+ flex-shrink: 0;
372
+ }
373
+ }
374
+
338
375
  .k-hierarchy-cell + .k-grid-content-sticky {
339
376
  border-inline-start-width: $kendo-grid-cell-vertical-border-width;
340
377
  }
@@ -403,6 +440,11 @@
403
440
  .k-table-row.k-highlighted > .k-table-td {
404
441
  font-weight: $kendo-grid-highlighted-font-weight;
405
442
  }
443
+
444
+ // Indicates that the row is a source of a pinned element
445
+ .k-table-row.k-pinned-source {
446
+ font-weight: $kendo-grid-pinned-source-font-weight;
447
+ }
406
448
  }
407
449
 
408
450
  .k-grid-resizable {
@@ -1489,6 +1531,7 @@
1489
1531
  cursor: pointer;
1490
1532
 
1491
1533
  > .k-icon,
1534
+ > .k-icon-wrapper-host,
1492
1535
  > .k-expander-indicator {
1493
1536
  margin-inline-end: $kendo-icon-spacing;
1494
1537
  }
@@ -67,6 +67,15 @@
67
67
  );
68
68
  }
69
69
 
70
+ .k-grid-sticky-container {
71
+ background-color: inherit;
72
+ }
73
+
74
+ .k-grid-sticky-top-container:has(> .k-grid-group-sticky-header-table),
75
+ .k-grid-sticky-bottom-container:has(> .k-grid-group-sticky-footer-table) {
76
+ border-color: $kendo-grid-sticky-border;
77
+ }
78
+
70
79
  .k-grouping-dropclue {
71
80
  &::before {
72
81
  border-color: $kendo-grid-header-text transparent transparent;
@@ -172,6 +172,8 @@ $kendo-grid-sticky-header-border: null !default;
172
172
 
173
173
  $kendo-grid-sticky-footer-bg: null !default;
174
174
 
175
+ $kendo-grid-sticky-container-shadow: null !default;
176
+
175
177
  $kendo-grid-column-menu-width: null !default;
176
178
  $kendo-grid-column-menu-max-width: null !default;
177
179
 
@@ -227,3 +229,5 @@ $kendo-grid-stack-expandable-shadow-height: null !default;
227
229
  $kendo-grid-stack-header-color: null !default;
228
230
  $kendo-grid-stack-focus-outline: null !default;
229
231
  $kendo-grid-stack-expandable-shadow: null !default;
232
+
233
+ $kendo-grid-pinned-source-font-weight: null !default;
@@ -610,6 +610,7 @@
610
610
  cursor: pointer;
611
611
 
612
612
  > .k-icon,
613
+ > .k-icon-wrapper-host,
613
614
  > .k-expander-indicator {
614
615
  margin-inline-end: $kendo-spreadsheet-filter-padding;
615
616
  }