@helpwave/hightide 0.6.4 → 0.6.5

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.
@@ -567,10 +567,10 @@
567
567
  min-width: calc(var(--spacing) * 6);
568
568
  max-width: calc(var(--spacing) * 6);
569
569
  }
570
- .expadable-content-h-39 {
571
- height: calc(var(--spacing) * 39);
570
+ .expandable-content-h-40 {
571
+ height: calc(var(--spacing) * 40);
572
572
  &[data-expanded] {
573
- max-height: calc(var(--spacing) * 39);
573
+ max-height: calc(var(--spacing) * 40);
574
574
  }
575
575
  }
576
576
  .size-4 {
@@ -3118,7 +3118,14 @@
3118
3118
  }
3119
3119
  }
3120
3120
  }
3121
- [data-name="table-body-cell"] {
3121
+ [data-name="table-body-filler-row"] {
3122
+ &:hover {
3123
+ @media (hover: hover) {
3124
+ cursor: not-allowed;
3125
+ }
3126
+ }
3127
+ }
3128
+ [data-name="table-body-cell"], [data-name="table-body-filler-cell"] {
3122
3129
  padding-inline: calc(var(--spacing) * 3);
3123
3130
  padding-block: calc(var(--spacing) * 2.5);
3124
3131
  &:first-child {
@@ -32,16 +32,16 @@
32
32
  }
33
33
 
34
34
  &:not([data-expanded]) {
35
- @apply max-h-0 opacity-0 overflow-hidden py-0 duration-[var(--animation-duration-out)];
35
+ @apply max-h-0 opacity-0 overflow-hidden py-0 duration-(--animation-duration-out);
36
36
  }
37
37
 
38
38
  &[data-expanded] {
39
- @apply max-h-24 opacity-100 py-2 duration-[var(--animation-duration-in)];
39
+ @apply max-h-24 opacity-100 py-2 duration-(--animation-duration-in);
40
40
  }
41
41
  }
42
42
  }
43
43
 
44
- @utility expadable-content-h-* {
44
+ @utility expandable-content-h-* {
45
45
  height: calc(var(--spacing) * --value(number));
46
46
 
47
47
  &[data-expanded] {
@@ -35,7 +35,11 @@
35
35
  @apply hover:bg-table-row-hover-background;
36
36
  }
37
37
 
38
- [data-name="table-body-cell"] {
38
+ [data-name="table-body-filler-row"] {
39
+ @apply hover:cursor-not-allowed;
40
+ }
41
+
42
+ [data-name="table-body-cell"], [data-name="table-body-filler-cell"] {
39
43
  @apply px-3 first:pl-6 last:pr-6 py-2.5;
40
44
  @apply border-b-1 first:border-l-1 last:border-r-1;
41
45
  @apply [nth-last-child(1)]:first:rounded-bl-lg [nth-last-child(1)]:last:rounded-br-lg;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "git+https://github.com/helpwave/hightide.git"
8
8
  },
9
9
  "license": "MPL-2.0",
10
- "version": "0.6.4",
10
+ "version": "0.6.5",
11
11
  "files": [
12
12
  "dist"
13
13
  ],