@redseed/redseed-ui-tailwindcss 7.30.0 → 7.30.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.
@@ -72,8 +72,10 @@
72
72
  @apply absolute inset-0 size-full pointer-events-none rounded-xl border-border-secondary;
73
73
  }
74
74
 
75
- /* Prevent table row hover background from bleeding past card rounded corners */
76
- .rsui-card:has(.rsui-table) {
75
+ /* Prevent table row hover background from bleeding past card rounded corners.
76
+ Opt out while a dropdown menu is open inside the card — otherwise the menu
77
+ gets clipped by the card's overflow boundary. */
78
+ .rsui-card:has(.rsui-table):not(:has(.rsui-dropdown-menu__container--open)) {
77
79
  @apply overflow-x-hidden;
78
80
  }
79
81
 
@@ -0,0 +1,31 @@
1
+ .rsui-column-picker__count {
2
+ @apply inline-flex items-center px-1.5 ml-1 text-xs rounded-md bg-background-disabled text-text-secondary;
3
+ }
4
+
5
+ .rsui-column-picker__list {
6
+ @apply flex flex-col p-1 min-w-44;
7
+ }
8
+
9
+ .rsui-column-picker__item {
10
+ @apply flex items-center gap-2.5 px-2 py-1.5 rounded-md cursor-pointer text-sm text-text-primary;
11
+ @apply hover:bg-background-secondary;
12
+ @apply focus-visible:bg-background-secondary focus-visible:outline-none;
13
+ }
14
+
15
+ .rsui-column-picker__check {
16
+ @apply shrink-0 flex items-center justify-center;
17
+ @apply w-4 h-4 rounded border border-border-primary bg-background-primary;
18
+ @apply transition-colors;
19
+ }
20
+
21
+ .rsui-column-picker__check svg {
22
+ @apply w-3 h-3 stroke-[3] text-text-primary;
23
+ }
24
+
25
+ .rsui-column-picker__check--on {
26
+ @apply border-text-primary;
27
+ }
28
+
29
+ .rsui-column-picker__label {
30
+ @apply leading-none;
31
+ }
package/components.css CHANGED
@@ -21,6 +21,7 @@ Please be careful when adding new components and updating the order.
21
21
  @import './components/card.css';
22
22
  @import './components/card_header.css';
23
23
  @import './components/checkbox_card.css';
24
+ @import './components/column_picker.css';
24
25
  @import './components/comments.css';
25
26
  @import './components/comment.css';
26
27
  @import './components/disclosure.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "7.30.0",
3
+ "version": "7.30.1",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "style": "index.css",