@helpwave/hightide 0.6.7 → 0.6.9
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/dist/index.d.mts +68 -26
- package/dist/index.d.ts +68 -26
- package/dist/index.js +562 -478
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +558 -478
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +60 -31
- package/dist/style/uncompiled/theme/components/checkbox.css +6 -5
- package/dist/style/uncompiled/theme/components/expandable.css +3 -3
- package/dist/style/uncompiled/theme/components/expansion-icon.css +1 -1
- package/dist/style/uncompiled/theme/components/form-field.css +4 -4
- package/dist/style/uncompiled/theme/components/input-elements.css +3 -3
- package/dist/style/uncompiled/theme/components/property.css +10 -10
- package/dist/style/uncompiled/theme/components/table.css +8 -1
- package/dist/style/uncompiled/theme/components/textarea.css +1 -1
- package/package.json +1 -1
package/dist/style/globals.css
CHANGED
|
@@ -750,9 +750,6 @@
|
|
|
750
750
|
.max-w-4 {
|
|
751
751
|
max-width: calc(var(--spacing) * 4);
|
|
752
752
|
}
|
|
753
|
-
.max-w-6 {
|
|
754
|
-
max-width: calc(var(--spacing) * 6);
|
|
755
|
-
}
|
|
756
753
|
.max-w-8 {
|
|
757
754
|
max-width: calc(var(--spacing) * 8);
|
|
758
755
|
}
|
|
@@ -2832,7 +2829,7 @@
|
|
|
2832
2829
|
}
|
|
2833
2830
|
}
|
|
2834
2831
|
@layer components {
|
|
2835
|
-
[data-name="input"]
|
|
2832
|
+
[data-name="input"] {
|
|
2836
2833
|
height: calc(var(--spacing) * 10);
|
|
2837
2834
|
&:focus-visible {
|
|
2838
2835
|
border-style: var(--tw-border-style);
|
|
@@ -2891,7 +2888,7 @@
|
|
|
2891
2888
|
padding-inline: calc(var(--spacing) * 3);
|
|
2892
2889
|
padding-block: calc(var(--spacing) * 2);
|
|
2893
2890
|
}
|
|
2894
|
-
[data-name="select-button"]
|
|
2891
|
+
[data-name="select-button"] {
|
|
2895
2892
|
display: flex;
|
|
2896
2893
|
flex-direction: row;
|
|
2897
2894
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -2961,7 +2958,7 @@
|
|
|
2961
2958
|
}
|
|
2962
2959
|
}
|
|
2963
2960
|
}
|
|
2964
|
-
[data-name="select-button-chips"]
|
|
2961
|
+
[data-name="select-button-chips"] {
|
|
2965
2962
|
display: flex;
|
|
2966
2963
|
&:focus-visible {
|
|
2967
2964
|
border-style: var(--tw-border-style);
|
|
@@ -3067,6 +3064,7 @@
|
|
|
3067
3064
|
text-overflow: ellipsis;
|
|
3068
3065
|
}
|
|
3069
3066
|
.table-header-cell {
|
|
3067
|
+
position: relative;
|
|
3070
3068
|
padding-inline: calc(var(--spacing) * 3);
|
|
3071
3069
|
padding-block: calc(var(--spacing) * 2.5);
|
|
3072
3070
|
&:first-child {
|
|
@@ -3106,6 +3104,13 @@
|
|
|
3106
3104
|
background-color: var(--color-table-row-hover-background);
|
|
3107
3105
|
}
|
|
3108
3106
|
}
|
|
3107
|
+
&[data-clickable] {
|
|
3108
|
+
&:hover {
|
|
3109
|
+
@media (hover: hover) {
|
|
3110
|
+
cursor: pointer;
|
|
3111
|
+
}
|
|
3112
|
+
}
|
|
3113
|
+
}
|
|
3109
3114
|
}
|
|
3110
3115
|
.table-body-filler-row {
|
|
3111
3116
|
&:hover {
|
|
@@ -3113,6 +3118,18 @@
|
|
|
3113
3118
|
cursor: not-allowed;
|
|
3114
3119
|
}
|
|
3115
3120
|
}
|
|
3121
|
+
&[data-clickable] {
|
|
3122
|
+
&:hover {
|
|
3123
|
+
@media (hover: hover) {
|
|
3124
|
+
cursor: pointer;
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
&:hover {
|
|
3128
|
+
@media (hover: hover) {
|
|
3129
|
+
background-color: var(--color-table-row-hover-background);
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
}
|
|
3116
3133
|
}
|
|
3117
3134
|
.table-body-cell, .table-body-filler-cell {
|
|
3118
3135
|
padding-inline: calc(var(--spacing) * 3);
|
|
@@ -3174,7 +3191,7 @@
|
|
|
3174
3191
|
}
|
|
3175
3192
|
}
|
|
3176
3193
|
}
|
|
3177
|
-
.table-body-row:last-child > .table-body-cell {
|
|
3194
|
+
.table-body-row:last-child > .table-body-cell, .table-body-filler-row:last-child > .table-body-filler-cell {
|
|
3178
3195
|
&:first-child {
|
|
3179
3196
|
border-bottom-left-radius: var(--radius-lg);
|
|
3180
3197
|
}
|
|
@@ -3755,7 +3772,7 @@
|
|
|
3755
3772
|
}
|
|
3756
3773
|
}
|
|
3757
3774
|
@layer components {
|
|
3758
|
-
[data-name="expandable-root"]
|
|
3775
|
+
[data-name="expandable-root"] {
|
|
3759
3776
|
display: flex;
|
|
3760
3777
|
flex-direction: column;
|
|
3761
3778
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3782,7 +3799,7 @@
|
|
|
3782
3799
|
cursor: pointer;
|
|
3783
3800
|
}
|
|
3784
3801
|
}
|
|
3785
|
-
[data-name="expandable-header"]
|
|
3802
|
+
[data-name="expandable-header"] {
|
|
3786
3803
|
display: flex;
|
|
3787
3804
|
flex-direction: row;
|
|
3788
3805
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -3838,7 +3855,7 @@
|
|
|
3838
3855
|
--coloring-text-hover: transparent;
|
|
3839
3856
|
}
|
|
3840
3857
|
}
|
|
3841
|
-
[data-name="expandable-content"]
|
|
3858
|
+
[data-name="expandable-content"] {
|
|
3842
3859
|
display: flex;
|
|
3843
3860
|
flex-direction: column;
|
|
3844
3861
|
row-gap: calc(var(--spacing) * 2);
|
|
@@ -3873,7 +3890,7 @@
|
|
|
3873
3890
|
}
|
|
3874
3891
|
}
|
|
3875
3892
|
@layer components {
|
|
3876
|
-
[data-name="expansion-icon"]
|
|
3893
|
+
[data-name="expansion-icon"] {
|
|
3877
3894
|
display: flex;
|
|
3878
3895
|
flex-direction: column;
|
|
3879
3896
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3903,7 +3920,7 @@
|
|
|
3903
3920
|
}
|
|
3904
3921
|
}
|
|
3905
3922
|
@layer components {
|
|
3906
|
-
|
|
3923
|
+
.checkbox {
|
|
3907
3924
|
display: flex;
|
|
3908
3925
|
flex-direction: column;
|
|
3909
3926
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3979,19 +3996,31 @@
|
|
|
3979
3996
|
}
|
|
3980
3997
|
}
|
|
3981
3998
|
&[data-size="sm"] {
|
|
3982
|
-
width: calc(var(--spacing) * 5);
|
|
3983
3999
|
height: calc(var(--spacing) * 5);
|
|
4000
|
+
min-height: calc(var(--spacing) * 5);
|
|
4001
|
+
max-height: calc(var(--spacing) * 5);
|
|
4002
|
+
width: calc(var(--spacing) * 5);
|
|
4003
|
+
min-width: calc(var(--spacing) * 5);
|
|
4004
|
+
max-width: calc(var(--spacing) * 5);
|
|
3984
4005
|
}
|
|
3985
4006
|
&[data-size="md"] {
|
|
3986
|
-
width: calc(var(--spacing) * 6);
|
|
3987
4007
|
height: calc(var(--spacing) * 6);
|
|
4008
|
+
min-height: calc(var(--spacing) * 6);
|
|
4009
|
+
max-height: calc(var(--spacing) * 6);
|
|
4010
|
+
width: calc(var(--spacing) * 6);
|
|
4011
|
+
min-width: calc(var(--spacing) * 6);
|
|
4012
|
+
max-width: calc(var(--spacing) * 6);
|
|
3988
4013
|
}
|
|
3989
4014
|
&[data-size="lg"] {
|
|
3990
|
-
width: calc(var(--spacing) * 8);
|
|
3991
4015
|
height: calc(var(--spacing) * 8);
|
|
4016
|
+
min-height: calc(var(--spacing) * 8);
|
|
4017
|
+
max-height: calc(var(--spacing) * 8);
|
|
4018
|
+
width: calc(var(--spacing) * 8);
|
|
4019
|
+
min-width: calc(var(--spacing) * 8);
|
|
4020
|
+
max-width: calc(var(--spacing) * 8);
|
|
3992
4021
|
}
|
|
3993
4022
|
}
|
|
3994
|
-
|
|
4023
|
+
.checkbox-indicator {
|
|
3995
4024
|
height: 100%;
|
|
3996
4025
|
width: 100%;
|
|
3997
4026
|
&[data-size="sm"] {
|
|
@@ -4310,7 +4339,7 @@
|
|
|
4310
4339
|
}
|
|
4311
4340
|
}
|
|
4312
4341
|
@layer components {
|
|
4313
|
-
[data-name="textarea"]
|
|
4342
|
+
[data-name="textarea"] {
|
|
4314
4343
|
height: calc(var(--spacing) * 32);
|
|
4315
4344
|
width: 100%;
|
|
4316
4345
|
&:focus-visible {
|
|
@@ -4374,18 +4403,18 @@
|
|
|
4374
4403
|
}
|
|
4375
4404
|
}
|
|
4376
4405
|
@layer components {
|
|
4377
|
-
|
|
4406
|
+
.form-field-container {
|
|
4378
4407
|
position: relative;
|
|
4379
4408
|
display: flex;
|
|
4380
4409
|
flex-direction: column;
|
|
4381
4410
|
row-gap: calc(var(--spacing) * 1);
|
|
4382
4411
|
}
|
|
4383
|
-
|
|
4412
|
+
.form-field-description {
|
|
4384
4413
|
font-size: var(--text-sm);
|
|
4385
4414
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
4386
4415
|
color: var(--color-description);
|
|
4387
4416
|
}
|
|
4388
|
-
|
|
4417
|
+
.form-field-error {
|
|
4389
4418
|
position: absolute;
|
|
4390
4419
|
top: calc(100% + 0.25rem);
|
|
4391
4420
|
left: calc(var(--spacing) * 0);
|
|
@@ -4395,7 +4424,7 @@
|
|
|
4395
4424
|
font-weight: var(--font-weight-medium);
|
|
4396
4425
|
color: var(--color-negative);
|
|
4397
4426
|
}
|
|
4398
|
-
|
|
4427
|
+
.form-field-label {
|
|
4399
4428
|
display: flex;
|
|
4400
4429
|
flex-direction: row;
|
|
4401
4430
|
column-gap: calc(var(--spacing) * 1);
|
|
@@ -4567,13 +4596,13 @@
|
|
|
4567
4596
|
}
|
|
4568
4597
|
}
|
|
4569
4598
|
@layer components {
|
|
4570
|
-
[data-name="property-root"]
|
|
4599
|
+
[data-name="property-root"] {
|
|
4571
4600
|
display: flex;
|
|
4572
4601
|
flex-direction: row;
|
|
4573
4602
|
column-gap: calc(var(--spacing) * 0);
|
|
4574
4603
|
border-radius: var(--radius-xl);
|
|
4575
4604
|
}
|
|
4576
|
-
[data-name="property-root"]
|
|
4605
|
+
[data-name="property-root"] {
|
|
4577
4606
|
transition: outline-offset var(--animation-duration-in, 250ms);
|
|
4578
4607
|
outline-offset: 0;
|
|
4579
4608
|
&:hover {
|
|
@@ -4598,7 +4627,7 @@
|
|
|
4598
4627
|
}
|
|
4599
4628
|
}
|
|
4600
4629
|
}
|
|
4601
|
-
[data-name="property-title"]
|
|
4630
|
+
[data-name="property-title"] {
|
|
4602
4631
|
display: flex;
|
|
4603
4632
|
flex-direction: row;
|
|
4604
4633
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -4624,11 +4653,11 @@
|
|
|
4624
4653
|
color: var(--color-on-warning);
|
|
4625
4654
|
}
|
|
4626
4655
|
}
|
|
4627
|
-
[data-name="property-title-icon"]
|
|
4656
|
+
[data-name="property-title-icon"] {
|
|
4628
4657
|
max-width: calc(var(--spacing) * 6);
|
|
4629
4658
|
min-width: calc(var(--spacing) * 6);
|
|
4630
4659
|
}
|
|
4631
|
-
[data-name="property-title-text"]
|
|
4660
|
+
[data-name="property-title-text"] {
|
|
4632
4661
|
min-width: calc(var(--spacing) * 0);
|
|
4633
4662
|
overflow: hidden;
|
|
4634
4663
|
text-overflow: ellipsis;
|
|
@@ -4636,7 +4665,7 @@
|
|
|
4636
4665
|
--tw-font-weight: var(--font-weight-semibold);
|
|
4637
4666
|
font-weight: var(--font-weight-semibold);
|
|
4638
4667
|
}
|
|
4639
|
-
[data-name="property-content"]
|
|
4668
|
+
[data-name="property-content"] {
|
|
4640
4669
|
display: flex;
|
|
4641
4670
|
flex-direction: row;
|
|
4642
4671
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -4661,14 +4690,14 @@
|
|
|
4661
4690
|
background-color: var(--color-surface-warning);
|
|
4662
4691
|
}
|
|
4663
4692
|
}
|
|
4664
|
-
[data-name="property-actions"]
|
|
4693
|
+
[data-name="property-actions"] {
|
|
4665
4694
|
display: flex;
|
|
4666
4695
|
flex-direction: row;
|
|
4667
4696
|
column-gap: calc(var(--spacing) * 2);
|
|
4668
4697
|
align-items: center;
|
|
4669
4698
|
gap: calc(var(--spacing) * 1);
|
|
4670
4699
|
}
|
|
4671
|
-
[data-name="property-input-wrapper"]
|
|
4700
|
+
[data-name="property-input-wrapper"] {
|
|
4672
4701
|
position: relative;
|
|
4673
4702
|
display: flex;
|
|
4674
4703
|
flex-direction: row;
|
|
@@ -4682,7 +4711,7 @@
|
|
|
4682
4711
|
}
|
|
4683
4712
|
}
|
|
4684
4713
|
}
|
|
4685
|
-
[data-name="property-input"]
|
|
4714
|
+
[data-name="property-input"] {
|
|
4686
4715
|
border-radius: 0.25rem;
|
|
4687
4716
|
padding: calc(var(--spacing) * 1);
|
|
4688
4717
|
&[data-invalid] {
|
|
@@ -4692,7 +4721,7 @@
|
|
|
4692
4721
|
}
|
|
4693
4722
|
}
|
|
4694
4723
|
}
|
|
4695
|
-
[data-name="property-suffix"]
|
|
4724
|
+
[data-name="property-suffix"] {
|
|
4696
4725
|
position: absolute;
|
|
4697
4726
|
top: calc(1/2 * 100%);
|
|
4698
4727
|
right: calc(var(--spacing) * 2);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
|
|
2
|
+
.checkbox {
|
|
3
3
|
@apply flex-col-0 items-center justify-center rounded border-2;
|
|
4
4
|
&:not([data-disabled]) {
|
|
5
5
|
@apply hover:cursor-pointer;
|
|
@@ -25,16 +25,17 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
&[data-size="sm"] {
|
|
28
|
-
@apply size-5;
|
|
28
|
+
@apply size-force-5;
|
|
29
29
|
}
|
|
30
30
|
&[data-size="md"] {
|
|
31
|
-
@apply size-6;
|
|
31
|
+
@apply size-force-6;
|
|
32
32
|
}
|
|
33
33
|
&[data-size="lg"] {
|
|
34
|
-
@apply size-8;
|
|
34
|
+
@apply size-force-8;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
|
|
37
|
+
|
|
38
|
+
.checkbox-indicator{
|
|
38
39
|
@apply w-full h-full;
|
|
39
40
|
&[data-size="sm"] {
|
|
40
41
|
@apply stroke-3;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
[data-name="expandable-root"]
|
|
2
|
+
[data-name="expandable-root"] {
|
|
3
3
|
@apply flex-col-0 surface coloring-solid rounded-lg shadow-sm;
|
|
4
4
|
|
|
5
5
|
&:not([data-disabled])[data-containertoggleable] {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
[data-name="expandable-header"]
|
|
10
|
+
[data-name="expandable-header"] {
|
|
11
11
|
@apply flex-row-2 justify-between items-center py-2 px-4 rounded-lg select-none;
|
|
12
12
|
|
|
13
13
|
&:not([data-disabled]) {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
[data-name="expandable-content"]
|
|
22
|
+
[data-name="expandable-content"] {
|
|
23
23
|
@apply flex-col-2 px-4 transition-all ease-in-out h-24;
|
|
24
24
|
|
|
25
25
|
&[data-state="opening"],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
[data-name="expansion-icon"]
|
|
2
|
+
[data-name="expansion-icon"] {
|
|
3
3
|
@apply flex-col-0 items-center justify-center size-6 transition-transform motion-safe:duration-200 motion-reduce:duration-0 ease-in-out;
|
|
4
4
|
|
|
5
5
|
&[data-expanded] {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
|
|
2
|
+
.form-field-container {
|
|
3
3
|
@apply relative flex-col-1;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
.form-field-description {
|
|
7
7
|
@apply text-description text-sm;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
.form-field-error {
|
|
11
11
|
@apply absolute top-[calc(100%_+_0.25rem)] left-0 text-negative text-sm font-medium;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
.form-field-label {
|
|
15
15
|
@apply flex-row-1 items-start typography-label-lg text-label;
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
|
|
34
34
|
/* input-elements */
|
|
35
35
|
@layer components {
|
|
36
|
-
[data-name="input"]
|
|
36
|
+
[data-name="input"] {
|
|
37
37
|
@apply px-3 py-2 rounded-md h-10 input-element;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
[data-name="select-button"]
|
|
40
|
+
[data-name="select-button"] {
|
|
41
41
|
@apply flex-row-2 items-center justify-between rounded-md px-3 py-2 input-element;
|
|
42
42
|
&:not([data-disabled]) {
|
|
43
43
|
@apply hover:cursor-pointer;
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
[data-name="select-button-chips"]
|
|
47
|
+
[data-name="select-button-chips"] {
|
|
48
48
|
@apply flex flex-wrap gap-2 items-center rounded-md px-2.5 py-2.5 input-element;
|
|
49
49
|
&:not([data-disabled]) {
|
|
50
50
|
@apply hover:cursor-pointer;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
[data-name="property-root"]
|
|
2
|
+
[data-name="property-root"] {
|
|
3
3
|
@apply flex-row-0 rounded-xl;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
[data-name="property-root"]
|
|
6
|
+
[data-name="property-root"] {
|
|
7
7
|
transition: outline-offset var(--animation-duration-in, 250ms);
|
|
8
8
|
outline-offset: 0;
|
|
9
9
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
[data-name="property-title"]
|
|
37
|
+
[data-name="property-title"] {
|
|
38
38
|
@apply flex-row-2 max-w-48 min-w-48 px-3 py-2 items-center justify-between rounded-l-xl border-2 border-r-0;
|
|
39
39
|
|
|
40
40
|
&:not([data-invalid]) {
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
[data-name="property-title-icon"]
|
|
50
|
+
[data-name="property-title-icon"] {
|
|
51
51
|
@apply max-w-6 min-w-6;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
[data-name="property-title-text"]
|
|
54
|
+
[data-name="property-title-text"] {
|
|
55
55
|
@apply font-semibold truncate min-w-0;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
[data-name="property-content"]
|
|
58
|
+
[data-name="property-content"] {
|
|
59
59
|
@apply flex-row-2 grow px-3 py-2 justify-between items-center rounded-r-xl border-2 border-l-0 min-h-15;
|
|
60
60
|
|
|
61
61
|
&:not([data-invalid]) {
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
[data-name="property-actions"]
|
|
70
|
+
[data-name="property-actions"] {
|
|
71
71
|
@apply flex-row-2 items-center gap-1;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
[data-name="property-input-wrapper"]
|
|
74
|
+
[data-name="property-input-wrapper"] {
|
|
75
75
|
@apply relative flex-row-2 w-full;
|
|
76
76
|
|
|
77
77
|
&[data-invalid] {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
[data-name="property-input"]
|
|
87
|
+
[data-name="property-input"] {
|
|
88
88
|
@apply rounded p-1;
|
|
89
89
|
|
|
90
90
|
&[data-invalid] {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
[data-name="property-suffix"]
|
|
95
|
+
[data-name="property-suffix"] {
|
|
96
96
|
@apply absolute top-1/2 -translate-y-1/2 right-2;
|
|
97
97
|
|
|
98
98
|
&[data-invalid] {
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.table-header-cell {
|
|
20
|
+
@apply relative;
|
|
20
21
|
@apply px-3 first:pl-6 last:pr-6 py-2.5;
|
|
21
22
|
@apply border-y-1 first:border-l-1 last:border-r-1;
|
|
22
23
|
@apply first:rounded-tl-lg last:rounded-tr-lg;
|
|
@@ -29,10 +30,16 @@
|
|
|
29
30
|
|
|
30
31
|
.table-body-row {
|
|
31
32
|
@apply hover:bg-table-row-hover-background;
|
|
33
|
+
&[data-clickable] {
|
|
34
|
+
@apply hover:cursor-pointer;
|
|
35
|
+
}
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
.table-body-filler-row {
|
|
35
39
|
@apply hover:cursor-not-allowed;
|
|
40
|
+
&[data-clickable] {
|
|
41
|
+
@apply hover:cursor-pointer hover:bg-table-row-hover-background;
|
|
42
|
+
}
|
|
36
43
|
}
|
|
37
44
|
|
|
38
45
|
.table-body-cell, .table-body-filler-cell {
|
|
@@ -60,7 +67,7 @@
|
|
|
60
67
|
}
|
|
61
68
|
}
|
|
62
69
|
|
|
63
|
-
.table-body-row:last-child > .table-body-cell {
|
|
70
|
+
.table-body-row:last-child > .table-body-cell, .table-body-filler-row:last-child > .table-body-filler-cell {
|
|
64
71
|
@apply first:rounded-bl-lg last:rounded-br-lg;
|
|
65
72
|
}
|
|
66
73
|
}
|