@deepnoid/ui 0.0.91 → 0.0.93
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/{chunk-D5GGG7IO.mjs → chunk-BCN5F2MN.mjs} +1 -1
- package/dist/{chunk-WX32MAKV.mjs → chunk-FDKT4IBP.mjs} +3 -12
- package/dist/{chunk-HHYPMVLY.mjs → chunk-ON2OTH5K.mjs} +2 -2
- package/dist/{chunk-EDEV4IK4.mjs → chunk-V77MALL4.mjs} +4 -13
- package/dist/components/dateTimePicker/calendar.js +3 -12
- package/dist/components/dateTimePicker/calendar.mjs +1 -1
- package/dist/components/dateTimePicker/dateTimePicker.js +7 -25
- package/dist/components/dateTimePicker/dateTimePicker.mjs +4 -4
- package/dist/components/dateTimePicker/index.js +7 -25
- package/dist/components/dateTimePicker/index.mjs +4 -4
- package/dist/components/dateTimePicker/timePicker.js +4 -13
- package/dist/components/dateTimePicker/timePicker.mjs +2 -2
- package/dist/components/list/index.js +4 -13
- package/dist/components/list/index.mjs +1 -1
- package/dist/components/list/listItem.js +4 -13
- package/dist/components/list/listItem.mjs +1 -1
- package/dist/index.js +7 -25
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
|
@@ -164,6 +164,7 @@ var calendarStyle = tv({
|
|
|
164
164
|
"text-sm",
|
|
165
165
|
"rounded-full",
|
|
166
166
|
"cursor-pointer",
|
|
167
|
+
"hover:bg-neutral-soft",
|
|
167
168
|
"data-[today=true]:border",
|
|
168
169
|
"data-[today=true]:border-foreground",
|
|
169
170
|
"data-[saturday=true]:text-[#1E7EEE]",
|
|
@@ -183,20 +184,10 @@ var calendarStyle = tv({
|
|
|
183
184
|
},
|
|
184
185
|
color: {
|
|
185
186
|
primary: {
|
|
186
|
-
date: [
|
|
187
|
-
"hover:text-primary-main",
|
|
188
|
-
"hover:bg-primary-soft",
|
|
189
|
-
"data-[selected=true]:!border-primary-main",
|
|
190
|
-
"data-[selected=true]:bg-primary-main"
|
|
191
|
-
]
|
|
187
|
+
date: ["data-[selected=true]:!border-primary-main", "data-[selected=true]:bg-primary-main"]
|
|
192
188
|
},
|
|
193
189
|
secondary: {
|
|
194
|
-
date: [
|
|
195
|
-
"hover:text-secondary-main",
|
|
196
|
-
"hover:bg-secondary-soft",
|
|
197
|
-
"data-[selected=true]:!border-secondary-main",
|
|
198
|
-
"data-[selected=true]:bg-secondary-main"
|
|
199
|
-
]
|
|
190
|
+
date: ["data-[selected=true]:!border-secondary-main", "data-[selected=true]:bg-secondary-main"]
|
|
200
191
|
}
|
|
201
192
|
}
|
|
202
193
|
},
|
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
} from "./chunk-FWJ2ZKH6.mjs";
|
|
5
5
|
import {
|
|
6
6
|
calendar_default
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-FDKT4IBP.mjs";
|
|
8
8
|
import {
|
|
9
9
|
timePicker_default
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-BCN5F2MN.mjs";
|
|
11
11
|
import {
|
|
12
12
|
Icon_default
|
|
13
13
|
} from "./chunk-LCI6RPWE.mjs";
|
|
@@ -53,7 +53,8 @@ var listItem = tv({
|
|
|
53
53
|
"px-[10px]",
|
|
54
54
|
"cursor-pointer",
|
|
55
55
|
"select-none",
|
|
56
|
-
"gap-[10px]"
|
|
56
|
+
"gap-[10px]",
|
|
57
|
+
"hover:bg-neutral-soft"
|
|
57
58
|
],
|
|
58
59
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
59
60
|
title: "truncate"
|
|
@@ -93,24 +94,14 @@ var listItem = tv({
|
|
|
93
94
|
variant: "solid",
|
|
94
95
|
color: "primary",
|
|
95
96
|
class: {
|
|
96
|
-
base: [
|
|
97
|
-
"hover:text-primary-main",
|
|
98
|
-
"hover:bg-primary-soft",
|
|
99
|
-
"data-[selected=true]:text-primary-main",
|
|
100
|
-
"data-[selected=true]:bg-primary-soft"
|
|
101
|
-
]
|
|
97
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
102
98
|
}
|
|
103
99
|
},
|
|
104
100
|
{
|
|
105
101
|
variant: "solid",
|
|
106
102
|
color: "secondary",
|
|
107
103
|
class: {
|
|
108
|
-
base: [
|
|
109
|
-
"hover:text-secondary-main",
|
|
110
|
-
"hover:bg-secondary-soft",
|
|
111
|
-
"data-[selected=true]:text-secondary-main",
|
|
112
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
113
|
-
]
|
|
104
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
114
105
|
}
|
|
115
106
|
}
|
|
116
107
|
]
|
|
@@ -3800,6 +3800,7 @@ var calendarStyle = tv({
|
|
|
3800
3800
|
"text-sm",
|
|
3801
3801
|
"rounded-full",
|
|
3802
3802
|
"cursor-pointer",
|
|
3803
|
+
"hover:bg-neutral-soft",
|
|
3803
3804
|
"data-[today=true]:border",
|
|
3804
3805
|
"data-[today=true]:border-foreground",
|
|
3805
3806
|
"data-[saturday=true]:text-[#1E7EEE]",
|
|
@@ -3819,20 +3820,10 @@ var calendarStyle = tv({
|
|
|
3819
3820
|
},
|
|
3820
3821
|
color: {
|
|
3821
3822
|
primary: {
|
|
3822
|
-
date: [
|
|
3823
|
-
"hover:text-primary-main",
|
|
3824
|
-
"hover:bg-primary-soft",
|
|
3825
|
-
"data-[selected=true]:!border-primary-main",
|
|
3826
|
-
"data-[selected=true]:bg-primary-main"
|
|
3827
|
-
]
|
|
3823
|
+
date: ["data-[selected=true]:!border-primary-main", "data-[selected=true]:bg-primary-main"]
|
|
3828
3824
|
},
|
|
3829
3825
|
secondary: {
|
|
3830
|
-
date: [
|
|
3831
|
-
"hover:text-secondary-main",
|
|
3832
|
-
"hover:bg-secondary-soft",
|
|
3833
|
-
"data-[selected=true]:!border-secondary-main",
|
|
3834
|
-
"data-[selected=true]:bg-secondary-main"
|
|
3835
|
-
]
|
|
3826
|
+
date: ["data-[selected=true]:!border-secondary-main", "data-[selected=true]:bg-secondary-main"]
|
|
3836
3827
|
}
|
|
3837
3828
|
}
|
|
3838
3829
|
},
|
|
@@ -3883,6 +3883,7 @@ var calendarStyle = tv({
|
|
|
3883
3883
|
"text-sm",
|
|
3884
3884
|
"rounded-full",
|
|
3885
3885
|
"cursor-pointer",
|
|
3886
|
+
"hover:bg-neutral-soft",
|
|
3886
3887
|
"data-[today=true]:border",
|
|
3887
3888
|
"data-[today=true]:border-foreground",
|
|
3888
3889
|
"data-[saturday=true]:text-[#1E7EEE]",
|
|
@@ -3902,20 +3903,10 @@ var calendarStyle = tv({
|
|
|
3902
3903
|
},
|
|
3903
3904
|
color: {
|
|
3904
3905
|
primary: {
|
|
3905
|
-
date: [
|
|
3906
|
-
"hover:text-primary-main",
|
|
3907
|
-
"hover:bg-primary-soft",
|
|
3908
|
-
"data-[selected=true]:!border-primary-main",
|
|
3909
|
-
"data-[selected=true]:bg-primary-main"
|
|
3910
|
-
]
|
|
3906
|
+
date: ["data-[selected=true]:!border-primary-main", "data-[selected=true]:bg-primary-main"]
|
|
3911
3907
|
},
|
|
3912
3908
|
secondary: {
|
|
3913
|
-
date: [
|
|
3914
|
-
"hover:text-secondary-main",
|
|
3915
|
-
"hover:bg-secondary-soft",
|
|
3916
|
-
"data-[selected=true]:!border-secondary-main",
|
|
3917
|
-
"data-[selected=true]:bg-secondary-main"
|
|
3918
|
-
]
|
|
3909
|
+
date: ["data-[selected=true]:!border-secondary-main", "data-[selected=true]:bg-secondary-main"]
|
|
3919
3910
|
}
|
|
3920
3911
|
}
|
|
3921
3912
|
},
|
|
@@ -4029,7 +4020,8 @@ var listItem = tv({
|
|
|
4029
4020
|
"px-[10px]",
|
|
4030
4021
|
"cursor-pointer",
|
|
4031
4022
|
"select-none",
|
|
4032
|
-
"gap-[10px]"
|
|
4023
|
+
"gap-[10px]",
|
|
4024
|
+
"hover:bg-neutral-soft"
|
|
4033
4025
|
],
|
|
4034
4026
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
4035
4027
|
title: "truncate"
|
|
@@ -4069,24 +4061,14 @@ var listItem = tv({
|
|
|
4069
4061
|
variant: "solid",
|
|
4070
4062
|
color: "primary",
|
|
4071
4063
|
class: {
|
|
4072
|
-
base: [
|
|
4073
|
-
"hover:text-primary-main",
|
|
4074
|
-
"hover:bg-primary-soft",
|
|
4075
|
-
"data-[selected=true]:text-primary-main",
|
|
4076
|
-
"data-[selected=true]:bg-primary-soft"
|
|
4077
|
-
]
|
|
4064
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
4078
4065
|
}
|
|
4079
4066
|
},
|
|
4080
4067
|
{
|
|
4081
4068
|
variant: "solid",
|
|
4082
4069
|
color: "secondary",
|
|
4083
4070
|
class: {
|
|
4084
|
-
base: [
|
|
4085
|
-
"hover:text-secondary-main",
|
|
4086
|
-
"hover:bg-secondary-soft",
|
|
4087
|
-
"data-[selected=true]:text-secondary-main",
|
|
4088
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
4089
|
-
]
|
|
4071
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
4090
4072
|
}
|
|
4091
4073
|
}
|
|
4092
4074
|
]
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import {
|
|
3
3
|
dateTimePickerStyle,
|
|
4
4
|
dateTimePicker_default
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-ON2OTH5K.mjs";
|
|
6
6
|
import "../../chunk-FWJ2ZKH6.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-FDKT4IBP.mjs";
|
|
8
8
|
import "../../chunk-P732YGHO.mjs";
|
|
9
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-BCN5F2MN.mjs";
|
|
10
10
|
import "../../chunk-7MVEAQ7Z.mjs";
|
|
11
11
|
import "../../chunk-EYY4CRRR.mjs";
|
|
12
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-V77MALL4.mjs";
|
|
13
13
|
import "../../chunk-ZYIIXWVY.mjs";
|
|
14
14
|
import "../../chunk-LCI6RPWE.mjs";
|
|
15
15
|
import "../../chunk-IOCRFIQF.mjs";
|
|
@@ -3884,6 +3884,7 @@ var calendarStyle = tv({
|
|
|
3884
3884
|
"text-sm",
|
|
3885
3885
|
"rounded-full",
|
|
3886
3886
|
"cursor-pointer",
|
|
3887
|
+
"hover:bg-neutral-soft",
|
|
3887
3888
|
"data-[today=true]:border",
|
|
3888
3889
|
"data-[today=true]:border-foreground",
|
|
3889
3890
|
"data-[saturday=true]:text-[#1E7EEE]",
|
|
@@ -3903,20 +3904,10 @@ var calendarStyle = tv({
|
|
|
3903
3904
|
},
|
|
3904
3905
|
color: {
|
|
3905
3906
|
primary: {
|
|
3906
|
-
date: [
|
|
3907
|
-
"hover:text-primary-main",
|
|
3908
|
-
"hover:bg-primary-soft",
|
|
3909
|
-
"data-[selected=true]:!border-primary-main",
|
|
3910
|
-
"data-[selected=true]:bg-primary-main"
|
|
3911
|
-
]
|
|
3907
|
+
date: ["data-[selected=true]:!border-primary-main", "data-[selected=true]:bg-primary-main"]
|
|
3912
3908
|
},
|
|
3913
3909
|
secondary: {
|
|
3914
|
-
date: [
|
|
3915
|
-
"hover:text-secondary-main",
|
|
3916
|
-
"hover:bg-secondary-soft",
|
|
3917
|
-
"data-[selected=true]:!border-secondary-main",
|
|
3918
|
-
"data-[selected=true]:bg-secondary-main"
|
|
3919
|
-
]
|
|
3910
|
+
date: ["data-[selected=true]:!border-secondary-main", "data-[selected=true]:bg-secondary-main"]
|
|
3920
3911
|
}
|
|
3921
3912
|
}
|
|
3922
3913
|
},
|
|
@@ -4030,7 +4021,8 @@ var listItem = tv({
|
|
|
4030
4021
|
"px-[10px]",
|
|
4031
4022
|
"cursor-pointer",
|
|
4032
4023
|
"select-none",
|
|
4033
|
-
"gap-[10px]"
|
|
4024
|
+
"gap-[10px]",
|
|
4025
|
+
"hover:bg-neutral-soft"
|
|
4034
4026
|
],
|
|
4035
4027
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
4036
4028
|
title: "truncate"
|
|
@@ -4070,24 +4062,14 @@ var listItem = tv({
|
|
|
4070
4062
|
variant: "solid",
|
|
4071
4063
|
color: "primary",
|
|
4072
4064
|
class: {
|
|
4073
|
-
base: [
|
|
4074
|
-
"hover:text-primary-main",
|
|
4075
|
-
"hover:bg-primary-soft",
|
|
4076
|
-
"data-[selected=true]:text-primary-main",
|
|
4077
|
-
"data-[selected=true]:bg-primary-soft"
|
|
4078
|
-
]
|
|
4065
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
4079
4066
|
}
|
|
4080
4067
|
},
|
|
4081
4068
|
{
|
|
4082
4069
|
variant: "solid",
|
|
4083
4070
|
color: "secondary",
|
|
4084
4071
|
class: {
|
|
4085
|
-
base: [
|
|
4086
|
-
"hover:text-secondary-main",
|
|
4087
|
-
"hover:bg-secondary-soft",
|
|
4088
|
-
"data-[selected=true]:text-secondary-main",
|
|
4089
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
4090
|
-
]
|
|
4072
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
4091
4073
|
}
|
|
4092
4074
|
}
|
|
4093
4075
|
]
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import "../../chunk-75HLCORR.mjs";
|
|
3
3
|
import {
|
|
4
4
|
dateTimePicker_default
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-ON2OTH5K.mjs";
|
|
6
6
|
import "../../chunk-FWJ2ZKH6.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-FDKT4IBP.mjs";
|
|
8
8
|
import "../../chunk-P732YGHO.mjs";
|
|
9
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-BCN5F2MN.mjs";
|
|
10
10
|
import "../../chunk-7MVEAQ7Z.mjs";
|
|
11
11
|
import "../../chunk-EYY4CRRR.mjs";
|
|
12
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-V77MALL4.mjs";
|
|
13
13
|
import "../../chunk-ZYIIXWVY.mjs";
|
|
14
14
|
import "../../chunk-LCI6RPWE.mjs";
|
|
15
15
|
import "../../chunk-IOCRFIQF.mjs";
|
|
@@ -171,7 +171,8 @@ var listItem = tv({
|
|
|
171
171
|
"px-[10px]",
|
|
172
172
|
"cursor-pointer",
|
|
173
173
|
"select-none",
|
|
174
|
-
"gap-[10px]"
|
|
174
|
+
"gap-[10px]",
|
|
175
|
+
"hover:bg-neutral-soft"
|
|
175
176
|
],
|
|
176
177
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
177
178
|
title: "truncate"
|
|
@@ -211,24 +212,14 @@ var listItem = tv({
|
|
|
211
212
|
variant: "solid",
|
|
212
213
|
color: "primary",
|
|
213
214
|
class: {
|
|
214
|
-
base: [
|
|
215
|
-
"hover:text-primary-main",
|
|
216
|
-
"hover:bg-primary-soft",
|
|
217
|
-
"data-[selected=true]:text-primary-main",
|
|
218
|
-
"data-[selected=true]:bg-primary-soft"
|
|
219
|
-
]
|
|
215
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
220
216
|
}
|
|
221
217
|
},
|
|
222
218
|
{
|
|
223
219
|
variant: "solid",
|
|
224
220
|
color: "secondary",
|
|
225
221
|
class: {
|
|
226
|
-
base: [
|
|
227
|
-
"hover:text-secondary-main",
|
|
228
|
-
"hover:bg-secondary-soft",
|
|
229
|
-
"data-[selected=true]:text-secondary-main",
|
|
230
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
231
|
-
]
|
|
222
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
232
223
|
}
|
|
233
224
|
}
|
|
234
225
|
]
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
timePicker_default
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-BCN5F2MN.mjs";
|
|
5
5
|
import "../../chunk-7MVEAQ7Z.mjs";
|
|
6
6
|
import "../../chunk-EYY4CRRR.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-V77MALL4.mjs";
|
|
8
8
|
import "../../chunk-E3G5QXSH.mjs";
|
|
9
9
|
import "../../chunk-J725QONZ.mjs";
|
|
10
10
|
import "../../chunk-IZ6II3QA.mjs";
|
|
@@ -171,7 +171,8 @@ var listItem = tv({
|
|
|
171
171
|
"px-[10px]",
|
|
172
172
|
"cursor-pointer",
|
|
173
173
|
"select-none",
|
|
174
|
-
"gap-[10px]"
|
|
174
|
+
"gap-[10px]",
|
|
175
|
+
"hover:bg-neutral-soft"
|
|
175
176
|
],
|
|
176
177
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
177
178
|
title: "truncate"
|
|
@@ -211,24 +212,14 @@ var listItem = tv({
|
|
|
211
212
|
variant: "solid",
|
|
212
213
|
color: "primary",
|
|
213
214
|
class: {
|
|
214
|
-
base: [
|
|
215
|
-
"hover:text-primary-main",
|
|
216
|
-
"hover:bg-primary-soft",
|
|
217
|
-
"data-[selected=true]:text-primary-main",
|
|
218
|
-
"data-[selected=true]:bg-primary-soft"
|
|
219
|
-
]
|
|
215
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
220
216
|
}
|
|
221
217
|
},
|
|
222
218
|
{
|
|
223
219
|
variant: "solid",
|
|
224
220
|
color: "secondary",
|
|
225
221
|
class: {
|
|
226
|
-
base: [
|
|
227
|
-
"hover:text-secondary-main",
|
|
228
|
-
"hover:bg-secondary-soft",
|
|
229
|
-
"data-[selected=true]:text-secondary-main",
|
|
230
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
231
|
-
]
|
|
222
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
232
223
|
}
|
|
233
224
|
}
|
|
234
225
|
]
|
|
@@ -111,7 +111,8 @@ var listItem = tv({
|
|
|
111
111
|
"px-[10px]",
|
|
112
112
|
"cursor-pointer",
|
|
113
113
|
"select-none",
|
|
114
|
-
"gap-[10px]"
|
|
114
|
+
"gap-[10px]",
|
|
115
|
+
"hover:bg-neutral-soft"
|
|
115
116
|
],
|
|
116
117
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
117
118
|
title: "truncate"
|
|
@@ -151,24 +152,14 @@ var listItem = tv({
|
|
|
151
152
|
variant: "solid",
|
|
152
153
|
color: "primary",
|
|
153
154
|
class: {
|
|
154
|
-
base: [
|
|
155
|
-
"hover:text-primary-main",
|
|
156
|
-
"hover:bg-primary-soft",
|
|
157
|
-
"data-[selected=true]:text-primary-main",
|
|
158
|
-
"data-[selected=true]:bg-primary-soft"
|
|
159
|
-
]
|
|
155
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
160
156
|
}
|
|
161
157
|
},
|
|
162
158
|
{
|
|
163
159
|
variant: "solid",
|
|
164
160
|
color: "secondary",
|
|
165
161
|
class: {
|
|
166
|
-
base: [
|
|
167
|
-
"hover:text-secondary-main",
|
|
168
|
-
"hover:bg-secondary-soft",
|
|
169
|
-
"data-[selected=true]:text-secondary-main",
|
|
170
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
171
|
-
]
|
|
162
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
172
163
|
}
|
|
173
164
|
}
|
|
174
165
|
]
|
package/dist/index.js
CHANGED
|
@@ -7699,7 +7699,8 @@ var listItem = tv({
|
|
|
7699
7699
|
"px-[10px]",
|
|
7700
7700
|
"cursor-pointer",
|
|
7701
7701
|
"select-none",
|
|
7702
|
-
"gap-[10px]"
|
|
7702
|
+
"gap-[10px]",
|
|
7703
|
+
"hover:bg-neutral-soft"
|
|
7703
7704
|
],
|
|
7704
7705
|
titleWrapper: ["flex", "w-full", "gap-[10px]", "overflow-hidden", "whitespace-nowrap", "text-overflow-ellipsis"],
|
|
7705
7706
|
title: "truncate"
|
|
@@ -7739,24 +7740,14 @@ var listItem = tv({
|
|
|
7739
7740
|
variant: "solid",
|
|
7740
7741
|
color: "primary",
|
|
7741
7742
|
class: {
|
|
7742
|
-
base: [
|
|
7743
|
-
"hover:text-primary-main",
|
|
7744
|
-
"hover:bg-primary-soft",
|
|
7745
|
-
"data-[selected=true]:text-primary-main",
|
|
7746
|
-
"data-[selected=true]:bg-primary-soft"
|
|
7747
|
-
]
|
|
7743
|
+
base: ["data-[selected=true]:text-primary-main", "data-[selected=true]:bg-primary-soft"]
|
|
7748
7744
|
}
|
|
7749
7745
|
},
|
|
7750
7746
|
{
|
|
7751
7747
|
variant: "solid",
|
|
7752
7748
|
color: "secondary",
|
|
7753
7749
|
class: {
|
|
7754
|
-
base: [
|
|
7755
|
-
"hover:text-secondary-main",
|
|
7756
|
-
"hover:bg-secondary-soft",
|
|
7757
|
-
"data-[selected=true]:text-secondary-main",
|
|
7758
|
-
"data-[selected=true]:bg-secondary-soft"
|
|
7759
|
-
]
|
|
7750
|
+
base: ["data-[selected=true]:text-secondary-main", "data-[selected=true]:bg-secondary-soft"]
|
|
7760
7751
|
}
|
|
7761
7752
|
}
|
|
7762
7753
|
]
|
|
@@ -8215,6 +8206,7 @@ var calendarStyle = tv({
|
|
|
8215
8206
|
"text-sm",
|
|
8216
8207
|
"rounded-full",
|
|
8217
8208
|
"cursor-pointer",
|
|
8209
|
+
"hover:bg-neutral-soft",
|
|
8218
8210
|
"data-[today=true]:border",
|
|
8219
8211
|
"data-[today=true]:border-foreground",
|
|
8220
8212
|
"data-[saturday=true]:text-[#1E7EEE]",
|
|
@@ -8234,20 +8226,10 @@ var calendarStyle = tv({
|
|
|
8234
8226
|
},
|
|
8235
8227
|
color: {
|
|
8236
8228
|
primary: {
|
|
8237
|
-
date: [
|
|
8238
|
-
"hover:text-primary-main",
|
|
8239
|
-
"hover:bg-primary-soft",
|
|
8240
|
-
"data-[selected=true]:!border-primary-main",
|
|
8241
|
-
"data-[selected=true]:bg-primary-main"
|
|
8242
|
-
]
|
|
8229
|
+
date: ["data-[selected=true]:!border-primary-main", "data-[selected=true]:bg-primary-main"]
|
|
8243
8230
|
},
|
|
8244
8231
|
secondary: {
|
|
8245
|
-
date: [
|
|
8246
|
-
"hover:text-secondary-main",
|
|
8247
|
-
"hover:bg-secondary-soft",
|
|
8248
|
-
"data-[selected=true]:!border-secondary-main",
|
|
8249
|
-
"data-[selected=true]:bg-secondary-main"
|
|
8250
|
-
]
|
|
8232
|
+
date: ["data-[selected=true]:!border-secondary-main", "data-[selected=true]:bg-secondary-main"]
|
|
8251
8233
|
}
|
|
8252
8234
|
}
|
|
8253
8235
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -71,18 +71,18 @@ import {
|
|
|
71
71
|
import "./chunk-75HLCORR.mjs";
|
|
72
72
|
import {
|
|
73
73
|
dateTimePicker_default
|
|
74
|
-
} from "./chunk-
|
|
74
|
+
} from "./chunk-ON2OTH5K.mjs";
|
|
75
75
|
import "./chunk-FWJ2ZKH6.mjs";
|
|
76
|
-
import "./chunk-
|
|
76
|
+
import "./chunk-FDKT4IBP.mjs";
|
|
77
77
|
import "./chunk-P732YGHO.mjs";
|
|
78
|
-
import "./chunk-
|
|
78
|
+
import "./chunk-BCN5F2MN.mjs";
|
|
79
79
|
import "./chunk-7MVEAQ7Z.mjs";
|
|
80
80
|
import {
|
|
81
81
|
list_default
|
|
82
82
|
} from "./chunk-EYY4CRRR.mjs";
|
|
83
83
|
import {
|
|
84
84
|
listItem_default
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-V77MALL4.mjs";
|
|
86
86
|
import "./chunk-NMSDSEBD.mjs";
|
|
87
87
|
import "./chunk-VUYUQGLF.mjs";
|
|
88
88
|
import {
|