@snack-uikit/table 0.37.19-preview-08dad456.0 → 0.37.19

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/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## <small>0.37.19 (2025-11-26)</small>
7
+
8
+ * fix(PDS-3189): fix selection with shift key for single row selection mode ([2cdfb64](https://github.com/cloud-ru-tech/snack-uikit/commit/2cdfb64))
9
+ * feat(PDS-3156): implement disabled rows appearance variants ([75ed605](https://github.com/cloud-ru-tech/snack-uikit/commit/75ed605))
10
+
11
+
12
+
13
+
14
+
6
15
  ## <small>0.37.18 (2025-11-26)</small>
7
16
 
8
17
  * fix(HCE-284): export table, set column width to maximum content length ([cc1f55b](https://github.com/cloud-ru-tech/snack-uikit/commit/cc1f55b))
@@ -82,10 +82,8 @@
82
82
  .bodyRow[data-row-bg-appearance=pink]{
83
83
  --snack-ui-table-row-background:color-mix(in srgb, var(--sys-pink-accent-default, #d1668e), var(--sys-neutral-background1-level, #fdfdfd) calc((1 - var(--opacity-a008, 0.08)) * 100%));
84
84
  }
85
- .bodyRow[data-disabled]{
86
- cursor:not-allowed;
87
- }
88
85
  .bodyRow[data-row-appearance=disabled]{
86
+ cursor:not-allowed;
89
87
  background-color:var(--sys-neutral-background, #eeeff3);
90
88
  }
91
89
  .bodyRow[data-row-appearance=disabled] .rowPinnedCells{
@@ -82,10 +82,8 @@
82
82
  .bodyRow[data-row-bg-appearance=pink]{
83
83
  --snack-ui-table-row-background:color-mix(in srgb, var(--sys-pink-accent-default, #d1668e), var(--sys-neutral-background1-level, #fdfdfd) calc((1 - var(--opacity-a008, 0.08)) * 100%));
84
84
  }
85
- .bodyRow[data-disabled]{
86
- cursor:not-allowed;
87
- }
88
85
  .bodyRow[data-row-appearance=disabled]{
86
+ cursor:not-allowed;
89
87
  background-color:var(--sys-neutral-background, #eeeff3);
90
88
  }
91
89
  .bodyRow[data-row-appearance=disabled] .rowPinnedCells{
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Table",
7
- "version": "0.37.19-preview-08dad456.0",
7
+ "version": "0.37.19",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -65,5 +65,5 @@
65
65
  "peerDependencies": {
66
66
  "@snack-uikit/locale": "*"
67
67
  },
68
- "gitHead": "4f5d687dfbf0a2e5dfb6eac6315cf61014467e09"
68
+ "gitHead": "20705cda6956b2cfe72239357c1e93b55bc3c437"
69
69
  }
@@ -108,11 +108,9 @@ $snack-ui-table-row-background: var(--snack-ui-table-row-background);
108
108
  )};
109
109
  }
110
110
  }
111
- &[data-disabled] {
112
- cursor: not-allowed;
113
- }
114
111
 
115
112
  &[data-row-appearance='disabled'] {
113
+ cursor: not-allowed;
116
114
  background-color: styles-tokens-table.$sys-neutral-background;
117
115
 
118
116
  .rowPinnedCells {