@helpwave/hightide 0.6.6 → 0.6.8
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 +215 -178
- package/dist/index.d.ts +215 -178
- package/dist/index.js +1658 -1558
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1712 -1616
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +78 -43
- 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/input-elements.css +3 -3
- package/dist/style/uncompiled/theme/components/property.css +10 -10
- package/dist/style/uncompiled/theme/components/table.css +18 -14
- package/dist/style/uncompiled/theme/components/textarea.css +1 -1
- package/dist/style/uncompiled/theme/components/tooltip.css +4 -4
- package/package.json +1 -1
package/dist/style/globals.css
CHANGED
|
@@ -491,6 +491,11 @@
|
|
|
491
491
|
flex-direction: row;
|
|
492
492
|
column-gap: calc(var(--spacing) * 6);
|
|
493
493
|
}
|
|
494
|
+
.flex-row-8 {
|
|
495
|
+
display: flex;
|
|
496
|
+
flex-direction: row;
|
|
497
|
+
column-gap: calc(var(--spacing) * 8);
|
|
498
|
+
}
|
|
494
499
|
.flex-col-0 {
|
|
495
500
|
display: flex;
|
|
496
501
|
flex-direction: column;
|
|
@@ -664,6 +669,9 @@
|
|
|
664
669
|
.max-h-71 {
|
|
665
670
|
max-height: calc(var(--spacing) * 71);
|
|
666
671
|
}
|
|
672
|
+
.max-h-128 {
|
|
673
|
+
max-height: calc(var(--spacing) * 128);
|
|
674
|
+
}
|
|
667
675
|
.\!min-h-10 {
|
|
668
676
|
min-height: calc(var(--spacing) * 10) !important;
|
|
669
677
|
}
|
|
@@ -763,9 +771,6 @@
|
|
|
763
771
|
.max-w-128 {
|
|
764
772
|
max-width: calc(var(--spacing) * 128);
|
|
765
773
|
}
|
|
766
|
-
.max-w-full {
|
|
767
|
-
max-width: 100%;
|
|
768
|
-
}
|
|
769
774
|
.min-w-0 {
|
|
770
775
|
min-width: calc(var(--spacing) * 0);
|
|
771
776
|
}
|
|
@@ -775,6 +780,9 @@
|
|
|
775
780
|
.min-w-20 {
|
|
776
781
|
min-width: calc(var(--spacing) * 20);
|
|
777
782
|
}
|
|
783
|
+
.min-w-24 {
|
|
784
|
+
min-width: calc(var(--spacing) * 24);
|
|
785
|
+
}
|
|
778
786
|
.min-w-26 {
|
|
779
787
|
min-width: calc(var(--spacing) * 26);
|
|
780
788
|
}
|
|
@@ -816,6 +824,10 @@
|
|
|
816
824
|
--tw-translate-x: calc(1/2 * 100%);
|
|
817
825
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
818
826
|
}
|
|
827
|
+
.translate-x-4 {
|
|
828
|
+
--tw-translate-x: calc(var(--spacing) * 4);
|
|
829
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
830
|
+
}
|
|
819
831
|
.-translate-y-1\/2 {
|
|
820
832
|
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
821
833
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1443,9 +1455,6 @@
|
|
|
1443
1455
|
.text-nowrap {
|
|
1444
1456
|
text-wrap: nowrap;
|
|
1445
1457
|
}
|
|
1446
|
-
.overflow-ellipsis {
|
|
1447
|
-
text-overflow: ellipsis;
|
|
1448
|
-
}
|
|
1449
1458
|
.text-ellipsis {
|
|
1450
1459
|
text-overflow: ellipsis;
|
|
1451
1460
|
}
|
|
@@ -2823,7 +2832,7 @@
|
|
|
2823
2832
|
}
|
|
2824
2833
|
}
|
|
2825
2834
|
@layer components {
|
|
2826
|
-
[data-name="input"]
|
|
2835
|
+
[data-name="input"] {
|
|
2827
2836
|
height: calc(var(--spacing) * 10);
|
|
2828
2837
|
&:focus-visible {
|
|
2829
2838
|
border-style: var(--tw-border-style);
|
|
@@ -2882,7 +2891,7 @@
|
|
|
2882
2891
|
padding-inline: calc(var(--spacing) * 3);
|
|
2883
2892
|
padding-block: calc(var(--spacing) * 2);
|
|
2884
2893
|
}
|
|
2885
|
-
[data-name="select-button"]
|
|
2894
|
+
[data-name="select-button"] {
|
|
2886
2895
|
display: flex;
|
|
2887
2896
|
flex-direction: row;
|
|
2888
2897
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -2952,7 +2961,7 @@
|
|
|
2952
2961
|
}
|
|
2953
2962
|
}
|
|
2954
2963
|
}
|
|
2955
|
-
[data-name="select-button-chips"]
|
|
2964
|
+
[data-name="select-button-chips"] {
|
|
2956
2965
|
display: flex;
|
|
2957
2966
|
&:focus-visible {
|
|
2958
2967
|
border-style: var(--tw-border-style);
|
|
@@ -3023,14 +3032,14 @@
|
|
|
3023
3032
|
}
|
|
3024
3033
|
}
|
|
3025
3034
|
@layer components {
|
|
3026
|
-
|
|
3035
|
+
.table-container {
|
|
3027
3036
|
display: flex;
|
|
3028
3037
|
flex-direction: column;
|
|
3029
3038
|
row-gap: calc(var(--spacing) * 0);
|
|
3030
3039
|
width: 100%;
|
|
3031
3040
|
overflow: auto;
|
|
3032
3041
|
}
|
|
3033
|
-
|
|
3042
|
+
.table {
|
|
3034
3043
|
table-layout: fixed;
|
|
3035
3044
|
border-collapse: separate;
|
|
3036
3045
|
--tw-border-spacing-x: calc(var(--spacing) * 0);
|
|
@@ -3040,7 +3049,7 @@
|
|
|
3040
3049
|
background-color: var(--color-table-background);
|
|
3041
3050
|
color: var(--color-table-text);
|
|
3042
3051
|
}
|
|
3043
|
-
|
|
3052
|
+
.table-filler-cell {
|
|
3044
3053
|
display: flex;
|
|
3045
3054
|
height: calc(var(--spacing) * 6);
|
|
3046
3055
|
width: calc(1/2 * 100%);
|
|
@@ -3050,17 +3059,15 @@
|
|
|
3050
3059
|
font-weight: var(--font-weight-bold);
|
|
3051
3060
|
color: var(--color-disabled);
|
|
3052
3061
|
}
|
|
3053
|
-
|
|
3062
|
+
.table-default-cell {
|
|
3054
3063
|
display: block;
|
|
3055
3064
|
max-width: 100%;
|
|
3056
3065
|
overflow: hidden;
|
|
3057
3066
|
white-space: nowrap;
|
|
3058
3067
|
text-overflow: ellipsis;
|
|
3059
3068
|
}
|
|
3060
|
-
|
|
3069
|
+
.table-header-cell {
|
|
3061
3070
|
position: relative;
|
|
3062
|
-
--tw-font-weight: var(--font-weight-bold);
|
|
3063
|
-
font-weight: var(--font-weight-bold);
|
|
3064
3071
|
padding-inline: calc(var(--spacing) * 3);
|
|
3065
3072
|
padding-block: calc(var(--spacing) * 2.5);
|
|
3066
3073
|
&:first-child {
|
|
@@ -3086,23 +3093,36 @@
|
|
|
3086
3093
|
border-top-right-radius: var(--radius-lg);
|
|
3087
3094
|
}
|
|
3088
3095
|
background-color: var(--color-table-header-background);
|
|
3096
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
3097
|
+
font-weight: var(--font-weight-bold);
|
|
3089
3098
|
color: var(--color-description);
|
|
3099
|
+
&[data-sticky] {
|
|
3100
|
+
position: sticky;
|
|
3101
|
+
top: calc(var(--spacing) * 0);
|
|
3102
|
+
}
|
|
3090
3103
|
}
|
|
3091
|
-
|
|
3104
|
+
.table-body-row {
|
|
3092
3105
|
&:hover {
|
|
3093
3106
|
@media (hover: hover) {
|
|
3094
3107
|
background-color: var(--color-table-row-hover-background);
|
|
3095
3108
|
}
|
|
3096
3109
|
}
|
|
3110
|
+
&[data-clickable] {
|
|
3111
|
+
&:hover {
|
|
3112
|
+
@media (hover: hover) {
|
|
3113
|
+
cursor: pointer;
|
|
3114
|
+
}
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3097
3117
|
}
|
|
3098
|
-
|
|
3118
|
+
.table-body-filler-row {
|
|
3099
3119
|
&:hover {
|
|
3100
3120
|
@media (hover: hover) {
|
|
3101
3121
|
cursor: not-allowed;
|
|
3102
3122
|
}
|
|
3103
3123
|
}
|
|
3104
3124
|
}
|
|
3105
|
-
|
|
3125
|
+
.table-body-cell, .table-body-filler-cell {
|
|
3106
3126
|
padding-inline: calc(var(--spacing) * 3);
|
|
3107
3127
|
padding-block: calc(var(--spacing) * 2.5);
|
|
3108
3128
|
&:first-child {
|
|
@@ -3162,7 +3182,7 @@
|
|
|
3162
3182
|
}
|
|
3163
3183
|
}
|
|
3164
3184
|
}
|
|
3165
|
-
|
|
3185
|
+
.table-body-row:last-child > .table-body-cell {
|
|
3166
3186
|
&:first-child {
|
|
3167
3187
|
border-bottom-left-radius: var(--radius-lg);
|
|
3168
3188
|
}
|
|
@@ -3743,7 +3763,7 @@
|
|
|
3743
3763
|
}
|
|
3744
3764
|
}
|
|
3745
3765
|
@layer components {
|
|
3746
|
-
[data-name="expandable-root"]
|
|
3766
|
+
[data-name="expandable-root"] {
|
|
3747
3767
|
display: flex;
|
|
3748
3768
|
flex-direction: column;
|
|
3749
3769
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3770,7 +3790,7 @@
|
|
|
3770
3790
|
cursor: pointer;
|
|
3771
3791
|
}
|
|
3772
3792
|
}
|
|
3773
|
-
[data-name="expandable-header"]
|
|
3793
|
+
[data-name="expandable-header"] {
|
|
3774
3794
|
display: flex;
|
|
3775
3795
|
flex-direction: row;
|
|
3776
3796
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -3826,7 +3846,7 @@
|
|
|
3826
3846
|
--coloring-text-hover: transparent;
|
|
3827
3847
|
}
|
|
3828
3848
|
}
|
|
3829
|
-
[data-name="expandable-content"]
|
|
3849
|
+
[data-name="expandable-content"] {
|
|
3830
3850
|
display: flex;
|
|
3831
3851
|
flex-direction: column;
|
|
3832
3852
|
row-gap: calc(var(--spacing) * 2);
|
|
@@ -3861,7 +3881,7 @@
|
|
|
3861
3881
|
}
|
|
3862
3882
|
}
|
|
3863
3883
|
@layer components {
|
|
3864
|
-
[data-name="expansion-icon"]
|
|
3884
|
+
[data-name="expansion-icon"] {
|
|
3865
3885
|
display: flex;
|
|
3866
3886
|
flex-direction: column;
|
|
3867
3887
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3891,7 +3911,7 @@
|
|
|
3891
3911
|
}
|
|
3892
3912
|
}
|
|
3893
3913
|
@layer components {
|
|
3894
|
-
|
|
3914
|
+
.checkbox {
|
|
3895
3915
|
display: flex;
|
|
3896
3916
|
flex-direction: column;
|
|
3897
3917
|
row-gap: calc(var(--spacing) * 0);
|
|
@@ -3967,19 +3987,31 @@
|
|
|
3967
3987
|
}
|
|
3968
3988
|
}
|
|
3969
3989
|
&[data-size="sm"] {
|
|
3970
|
-
width: calc(var(--spacing) * 5);
|
|
3971
3990
|
height: calc(var(--spacing) * 5);
|
|
3991
|
+
min-height: calc(var(--spacing) * 5);
|
|
3992
|
+
max-height: calc(var(--spacing) * 5);
|
|
3993
|
+
width: calc(var(--spacing) * 5);
|
|
3994
|
+
min-width: calc(var(--spacing) * 5);
|
|
3995
|
+
max-width: calc(var(--spacing) * 5);
|
|
3972
3996
|
}
|
|
3973
3997
|
&[data-size="md"] {
|
|
3974
|
-
width: calc(var(--spacing) * 6);
|
|
3975
3998
|
height: calc(var(--spacing) * 6);
|
|
3999
|
+
min-height: calc(var(--spacing) * 6);
|
|
4000
|
+
max-height: calc(var(--spacing) * 6);
|
|
4001
|
+
width: calc(var(--spacing) * 6);
|
|
4002
|
+
min-width: calc(var(--spacing) * 6);
|
|
4003
|
+
max-width: calc(var(--spacing) * 6);
|
|
3976
4004
|
}
|
|
3977
4005
|
&[data-size="lg"] {
|
|
3978
|
-
width: calc(var(--spacing) * 8);
|
|
3979
4006
|
height: calc(var(--spacing) * 8);
|
|
4007
|
+
min-height: calc(var(--spacing) * 8);
|
|
4008
|
+
max-height: calc(var(--spacing) * 8);
|
|
4009
|
+
width: calc(var(--spacing) * 8);
|
|
4010
|
+
min-width: calc(var(--spacing) * 8);
|
|
4011
|
+
max-width: calc(var(--spacing) * 8);
|
|
3980
4012
|
}
|
|
3981
4013
|
}
|
|
3982
|
-
|
|
4014
|
+
.checkbox-indicator {
|
|
3983
4015
|
height: 100%;
|
|
3984
4016
|
width: 100%;
|
|
3985
4017
|
&[data-size="sm"] {
|
|
@@ -3994,7 +4026,7 @@
|
|
|
3994
4026
|
}
|
|
3995
4027
|
}
|
|
3996
4028
|
@layer components {
|
|
3997
|
-
|
|
4029
|
+
.tooltip {
|
|
3998
4030
|
position: absolute;
|
|
3999
4031
|
border-radius: 0.25rem;
|
|
4000
4032
|
padding-inline: calc(var(--spacing) * 2);
|
|
@@ -4004,16 +4036,19 @@
|
|
|
4004
4036
|
--shadow-top: 0 -5px 5px 0 var(--tw-shadow-color, rgb(0 0 0 / 2%));
|
|
4005
4037
|
--shadow-bottom: 0 5px 5px 0 var(--tw-shadow-color, rgb(0 0 0 / 2%));
|
|
4006
4038
|
box-shadow: var(--shadow-right, 0 0 0 transparent), var(--shadow-left, 0 0 0 transparent), var(--shadow-top, 0 0 0 transparent), var(--shadow-bottom, 0 0 0 transparent);
|
|
4039
|
+
overflow: hidden;
|
|
4040
|
+
text-overflow: ellipsis;
|
|
4041
|
+
white-space: nowrap;
|
|
4007
4042
|
background-color: var(--color-tooltip-background);
|
|
4008
4043
|
font-size: var(--text-xs);
|
|
4009
4044
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
4010
4045
|
--tw-font-weight: var(--font-weight-semibold);
|
|
4011
4046
|
font-weight: var(--font-weight-semibold);
|
|
4012
4047
|
color: var(--color-tooltip-text);
|
|
4013
|
-
&[data-state="opening"] {
|
|
4048
|
+
&[data-state="opening"][data-animated] {
|
|
4014
4049
|
animation: fade-in calc(var(--animation-duration-in, 250ms) * 2) ease-in-out 1 forwards;
|
|
4015
4050
|
}
|
|
4016
|
-
&[data-state="closing"] {
|
|
4051
|
+
&[data-state="closing"][data-animated] {
|
|
4017
4052
|
animation: fade-in var(--animation-duration-out, 170ms) ease-in-out 1 reverse forwards;
|
|
4018
4053
|
}
|
|
4019
4054
|
&[data-state="closed"] {
|
|
@@ -4295,7 +4330,7 @@
|
|
|
4295
4330
|
}
|
|
4296
4331
|
}
|
|
4297
4332
|
@layer components {
|
|
4298
|
-
[data-name="textarea"]
|
|
4333
|
+
[data-name="textarea"] {
|
|
4299
4334
|
height: calc(var(--spacing) * 32);
|
|
4300
4335
|
width: 100%;
|
|
4301
4336
|
&:focus-visible {
|
|
@@ -4552,13 +4587,13 @@
|
|
|
4552
4587
|
}
|
|
4553
4588
|
}
|
|
4554
4589
|
@layer components {
|
|
4555
|
-
[data-name="property-root"]
|
|
4590
|
+
[data-name="property-root"] {
|
|
4556
4591
|
display: flex;
|
|
4557
4592
|
flex-direction: row;
|
|
4558
4593
|
column-gap: calc(var(--spacing) * 0);
|
|
4559
4594
|
border-radius: var(--radius-xl);
|
|
4560
4595
|
}
|
|
4561
|
-
[data-name="property-root"]
|
|
4596
|
+
[data-name="property-root"] {
|
|
4562
4597
|
transition: outline-offset var(--animation-duration-in, 250ms);
|
|
4563
4598
|
outline-offset: 0;
|
|
4564
4599
|
&:hover {
|
|
@@ -4583,7 +4618,7 @@
|
|
|
4583
4618
|
}
|
|
4584
4619
|
}
|
|
4585
4620
|
}
|
|
4586
|
-
[data-name="property-title"]
|
|
4621
|
+
[data-name="property-title"] {
|
|
4587
4622
|
display: flex;
|
|
4588
4623
|
flex-direction: row;
|
|
4589
4624
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -4609,11 +4644,11 @@
|
|
|
4609
4644
|
color: var(--color-on-warning);
|
|
4610
4645
|
}
|
|
4611
4646
|
}
|
|
4612
|
-
[data-name="property-title-icon"]
|
|
4647
|
+
[data-name="property-title-icon"] {
|
|
4613
4648
|
max-width: calc(var(--spacing) * 6);
|
|
4614
4649
|
min-width: calc(var(--spacing) * 6);
|
|
4615
4650
|
}
|
|
4616
|
-
[data-name="property-title-text"]
|
|
4651
|
+
[data-name="property-title-text"] {
|
|
4617
4652
|
min-width: calc(var(--spacing) * 0);
|
|
4618
4653
|
overflow: hidden;
|
|
4619
4654
|
text-overflow: ellipsis;
|
|
@@ -4621,7 +4656,7 @@
|
|
|
4621
4656
|
--tw-font-weight: var(--font-weight-semibold);
|
|
4622
4657
|
font-weight: var(--font-weight-semibold);
|
|
4623
4658
|
}
|
|
4624
|
-
[data-name="property-content"]
|
|
4659
|
+
[data-name="property-content"] {
|
|
4625
4660
|
display: flex;
|
|
4626
4661
|
flex-direction: row;
|
|
4627
4662
|
column-gap: calc(var(--spacing) * 2);
|
|
@@ -4646,14 +4681,14 @@
|
|
|
4646
4681
|
background-color: var(--color-surface-warning);
|
|
4647
4682
|
}
|
|
4648
4683
|
}
|
|
4649
|
-
[data-name="property-actions"]
|
|
4684
|
+
[data-name="property-actions"] {
|
|
4650
4685
|
display: flex;
|
|
4651
4686
|
flex-direction: row;
|
|
4652
4687
|
column-gap: calc(var(--spacing) * 2);
|
|
4653
4688
|
align-items: center;
|
|
4654
4689
|
gap: calc(var(--spacing) * 1);
|
|
4655
4690
|
}
|
|
4656
|
-
[data-name="property-input-wrapper"]
|
|
4691
|
+
[data-name="property-input-wrapper"] {
|
|
4657
4692
|
position: relative;
|
|
4658
4693
|
display: flex;
|
|
4659
4694
|
flex-direction: row;
|
|
@@ -4667,7 +4702,7 @@
|
|
|
4667
4702
|
}
|
|
4668
4703
|
}
|
|
4669
4704
|
}
|
|
4670
|
-
[data-name="property-input"]
|
|
4705
|
+
[data-name="property-input"] {
|
|
4671
4706
|
border-radius: 0.25rem;
|
|
4672
4707
|
padding: calc(var(--spacing) * 1);
|
|
4673
4708
|
&[data-invalid] {
|
|
@@ -4677,7 +4712,7 @@
|
|
|
4677
4712
|
}
|
|
4678
4713
|
}
|
|
4679
4714
|
}
|
|
4680
|
-
[data-name="property-suffix"]
|
|
4715
|
+
[data-name="property-suffix"] {
|
|
4681
4716
|
position: absolute;
|
|
4682
4717
|
top: calc(1/2 * 100%);
|
|
4683
4718
|
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] {
|
|
@@ -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] {
|
|
@@ -1,41 +1,45 @@
|
|
|
1
1
|
@layer components {
|
|
2
|
-
|
|
2
|
+
.table-container {
|
|
3
3
|
@apply flex-col-0 w-full overflow-auto;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
.table {
|
|
7
7
|
@apply table-fixed border-separate border-spacing-0 rounded-lg;
|
|
8
8
|
@apply bg-table-background text-table-text;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
.table-filler-cell {
|
|
12
12
|
@apply flex flex-row items-center w-1/2 h-6 text-disabled font-bold;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
.table-default-cell {
|
|
16
16
|
@apply block max-w-full overflow-ellipsis truncate;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
[data-name="table-header-cell"] {
|
|
23
|
-
@apply relative font-bold;
|
|
19
|
+
.table-header-cell {
|
|
20
|
+
@apply relative;
|
|
24
21
|
@apply px-3 first:pl-6 last:pr-6 py-2.5;
|
|
25
22
|
@apply border-y-1 first:border-l-1 last:border-r-1;
|
|
26
23
|
@apply first:rounded-tl-lg last:rounded-tr-lg;
|
|
27
|
-
@apply bg-table-header-background text-description;
|
|
24
|
+
@apply bg-table-header-background text-description font-bold;
|
|
25
|
+
|
|
26
|
+
&[data-sticky] {
|
|
27
|
+
@apply sticky top-0;
|
|
28
|
+
}
|
|
28
29
|
}
|
|
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;
|
|
36
40
|
}
|
|
37
41
|
|
|
38
|
-
|
|
42
|
+
.table-body-cell, .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;
|
|
@@ -60,7 +64,7 @@
|
|
|
60
64
|
}
|
|
61
65
|
}
|
|
62
66
|
|
|
63
|
-
|
|
67
|
+
.table-body-row:last-child > .table-body-cell {
|
|
64
68
|
@apply first:rounded-bl-lg last:rounded-br-lg;
|
|
65
69
|
}
|
|
66
70
|
}
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
@layer components {
|
|
11
|
-
|
|
11
|
+
.tooltip {
|
|
12
12
|
@apply absolute px-2 py-1 rounded shadow-around-md;
|
|
13
|
-
@apply text-xs font-semibold text-tooltip-text bg-tooltip-background;
|
|
13
|
+
@apply text-xs font-semibold text-tooltip-text bg-tooltip-background truncate;
|
|
14
14
|
|
|
15
|
-
&[data-state="opening"] {
|
|
15
|
+
&[data-state="opening"][data-animated] {
|
|
16
16
|
@apply animate-tooltip-fade-in;
|
|
17
17
|
}
|
|
18
|
-
&[data-state="closing"] {
|
|
18
|
+
&[data-state="closing"][data-animated] {
|
|
19
19
|
@apply animate-tooltip-fade-out;
|
|
20
20
|
}
|
|
21
21
|
&[data-state="closed"] {
|