@deepnoid/ui 0.0.99 → 0.0.100
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-UGBBOYHB.mjs → chunk-UZL66GNP.mjs} +8 -1
- package/dist/{chunk-JMXQYSKY.mjs → chunk-YVBOTJAH.mjs} +1 -1
- package/dist/components/pagination/index.js +8 -1
- package/dist/components/pagination/index.mjs +1 -1
- package/dist/components/pagination/pagination.d.mts +18 -0
- package/dist/components/pagination/pagination.d.ts +18 -0
- package/dist/components/pagination/pagination.js +8 -1
- package/dist/components/pagination/pagination.mjs +1 -1
- package/dist/components/pagination/pagination.test.js +8 -1
- package/dist/components/pagination/pagination.test.mjs +1 -1
- package/dist/components/table/index.js +1 -1
- package/dist/components/table/index.mjs +1 -1
- package/dist/components/table/table.js +1 -1
- package/dist/components/table/table.mjs +1 -1
- package/dist/components/table/table.test.js +1 -1
- package/dist/components/table/table.test.mjs +1 -1
- package/dist/index.js +9 -2
- package/dist/index.mjs +20 -20
- package/package.json +1 -1
|
@@ -151,12 +151,19 @@ var pagination = tv(
|
|
|
151
151
|
secondary: {
|
|
152
152
|
label: "text-secondary-main"
|
|
153
153
|
}
|
|
154
|
+
},
|
|
155
|
+
isDisabled: {
|
|
156
|
+
true: {
|
|
157
|
+
icon: "!text-neutral-light !cursor-default",
|
|
158
|
+
button: "!text-neutral-light !cursor-default"
|
|
159
|
+
}
|
|
154
160
|
}
|
|
155
161
|
},
|
|
156
162
|
defaultVariants: {
|
|
157
163
|
variant: "solid",
|
|
158
164
|
color: "primary",
|
|
159
|
-
size: "md"
|
|
165
|
+
size: "md",
|
|
166
|
+
isDisabled: false
|
|
160
167
|
},
|
|
161
168
|
compoundVariants: [
|
|
162
169
|
{
|
|
@@ -233,12 +233,19 @@ var pagination = tv(
|
|
|
233
233
|
secondary: {
|
|
234
234
|
label: "text-secondary-main"
|
|
235
235
|
}
|
|
236
|
+
},
|
|
237
|
+
isDisabled: {
|
|
238
|
+
true: {
|
|
239
|
+
icon: "!text-neutral-light !cursor-default",
|
|
240
|
+
button: "!text-neutral-light !cursor-default"
|
|
241
|
+
}
|
|
236
242
|
}
|
|
237
243
|
},
|
|
238
244
|
defaultVariants: {
|
|
239
245
|
variant: "solid",
|
|
240
246
|
color: "primary",
|
|
241
|
-
size: "md"
|
|
247
|
+
size: "md",
|
|
248
|
+
isDisabled: false
|
|
242
249
|
},
|
|
243
250
|
compoundVariants: [
|
|
244
251
|
{
|
|
@@ -57,6 +57,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
57
57
|
label: string;
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
+
isDisabled: {
|
|
61
|
+
true: {
|
|
62
|
+
icon: string;
|
|
63
|
+
button: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
60
66
|
}, {
|
|
61
67
|
base: string;
|
|
62
68
|
label: string;
|
|
@@ -125,6 +131,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
125
131
|
label: string;
|
|
126
132
|
};
|
|
127
133
|
};
|
|
134
|
+
isDisabled: {
|
|
135
|
+
true: {
|
|
136
|
+
icon: string;
|
|
137
|
+
button: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
128
140
|
}, {
|
|
129
141
|
base: string;
|
|
130
142
|
label: string;
|
|
@@ -171,6 +183,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
171
183
|
label: string;
|
|
172
184
|
};
|
|
173
185
|
};
|
|
186
|
+
isDisabled: {
|
|
187
|
+
true: {
|
|
188
|
+
icon: string;
|
|
189
|
+
button: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
174
192
|
}, {
|
|
175
193
|
base: string;
|
|
176
194
|
label: string;
|
|
@@ -57,6 +57,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
57
57
|
label: string;
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
|
+
isDisabled: {
|
|
61
|
+
true: {
|
|
62
|
+
icon: string;
|
|
63
|
+
button: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
60
66
|
}, {
|
|
61
67
|
base: string;
|
|
62
68
|
label: string;
|
|
@@ -125,6 +131,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
125
131
|
label: string;
|
|
126
132
|
};
|
|
127
133
|
};
|
|
134
|
+
isDisabled: {
|
|
135
|
+
true: {
|
|
136
|
+
icon: string;
|
|
137
|
+
button: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
128
140
|
}, {
|
|
129
141
|
base: string;
|
|
130
142
|
label: string;
|
|
@@ -171,6 +183,12 @@ declare const pagination: tailwind_variants.TVReturnType<{
|
|
|
171
183
|
label: string;
|
|
172
184
|
};
|
|
173
185
|
};
|
|
186
|
+
isDisabled: {
|
|
187
|
+
true: {
|
|
188
|
+
icon: string;
|
|
189
|
+
button: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
174
192
|
}, {
|
|
175
193
|
base: string;
|
|
176
194
|
label: string;
|
|
@@ -233,12 +233,19 @@ var pagination = tv(
|
|
|
233
233
|
secondary: {
|
|
234
234
|
label: "text-secondary-main"
|
|
235
235
|
}
|
|
236
|
+
},
|
|
237
|
+
isDisabled: {
|
|
238
|
+
true: {
|
|
239
|
+
icon: "!text-neutral-light !cursor-default",
|
|
240
|
+
button: "!text-neutral-light !cursor-default"
|
|
241
|
+
}
|
|
236
242
|
}
|
|
237
243
|
},
|
|
238
244
|
defaultVariants: {
|
|
239
245
|
variant: "solid",
|
|
240
246
|
color: "primary",
|
|
241
|
-
size: "md"
|
|
247
|
+
size: "md",
|
|
248
|
+
isDisabled: false
|
|
242
249
|
},
|
|
243
250
|
compoundVariants: [
|
|
244
251
|
{
|
|
@@ -13078,12 +13078,19 @@ var pagination = tv(
|
|
|
13078
13078
|
secondary: {
|
|
13079
13079
|
label: "text-secondary-main"
|
|
13080
13080
|
}
|
|
13081
|
+
},
|
|
13082
|
+
isDisabled: {
|
|
13083
|
+
true: {
|
|
13084
|
+
icon: "!text-neutral-light !cursor-default",
|
|
13085
|
+
button: "!text-neutral-light !cursor-default"
|
|
13086
|
+
}
|
|
13081
13087
|
}
|
|
13082
13088
|
},
|
|
13083
13089
|
defaultVariants: {
|
|
13084
13090
|
variant: "solid",
|
|
13085
13091
|
color: "primary",
|
|
13086
|
-
size: "md"
|
|
13092
|
+
size: "md",
|
|
13093
|
+
isDisabled: false
|
|
13087
13094
|
},
|
|
13088
13095
|
compoundVariants: [
|
|
13089
13096
|
{
|
|
@@ -17051,7 +17051,7 @@ var table = (0, import_tailwind_variants3.tv)({
|
|
|
17051
17051
|
"bg-black/40",
|
|
17052
17052
|
"text-white",
|
|
17053
17053
|
"transition-opacity",
|
|
17054
|
-
"duration-
|
|
17054
|
+
"duration-200",
|
|
17055
17055
|
"ease-in-out"
|
|
17056
17056
|
]
|
|
17057
17057
|
},
|
package/dist/index.js
CHANGED
|
@@ -5630,7 +5630,7 @@ var table = (0, import_tailwind_variants8.tv)({
|
|
|
5630
5630
|
"bg-black/40",
|
|
5631
5631
|
"text-white",
|
|
5632
5632
|
"transition-opacity",
|
|
5633
|
-
"duration-
|
|
5633
|
+
"duration-200",
|
|
5634
5634
|
"ease-in-out"
|
|
5635
5635
|
]
|
|
5636
5636
|
},
|
|
@@ -6951,12 +6951,19 @@ var pagination = tv(
|
|
|
6951
6951
|
secondary: {
|
|
6952
6952
|
label: "text-secondary-main"
|
|
6953
6953
|
}
|
|
6954
|
+
},
|
|
6955
|
+
isDisabled: {
|
|
6956
|
+
true: {
|
|
6957
|
+
icon: "!text-neutral-light !cursor-default",
|
|
6958
|
+
button: "!text-neutral-light !cursor-default"
|
|
6959
|
+
}
|
|
6954
6960
|
}
|
|
6955
6961
|
},
|
|
6956
6962
|
defaultVariants: {
|
|
6957
6963
|
variant: "solid",
|
|
6958
6964
|
color: "primary",
|
|
6959
|
-
size: "md"
|
|
6965
|
+
size: "md",
|
|
6966
|
+
isDisabled: false
|
|
6960
6967
|
},
|
|
6961
6968
|
compoundVariants: [
|
|
6962
6969
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "./chunk-HIE2YRGA.mjs";
|
|
3
|
-
import {
|
|
4
|
-
tooltip_default
|
|
5
|
-
} from "./chunk-FY5YCQL5.mjs";
|
|
6
|
-
import "./chunk-DSBSLSJW.mjs";
|
|
7
|
-
import "./chunk-ODMRJXLJ.mjs";
|
|
8
|
-
import "./chunk-RRAZM5D3.mjs";
|
|
9
|
-
import {
|
|
10
|
-
textarea_default
|
|
11
|
-
} from "./chunk-OJ2OEI5B.mjs";
|
|
12
2
|
import "./chunk-LUWGOKLG.mjs";
|
|
13
3
|
import {
|
|
14
4
|
ToastProvider,
|
|
@@ -22,16 +12,26 @@ import "./chunk-LVFI2NOH.mjs";
|
|
|
22
12
|
import {
|
|
23
13
|
switch_default
|
|
24
14
|
} from "./chunk-S3O52LLG.mjs";
|
|
25
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-RRAZM5D3.mjs";
|
|
26
16
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
17
|
+
textarea_default
|
|
18
|
+
} from "./chunk-OJ2OEI5B.mjs";
|
|
19
|
+
import "./chunk-HIE2YRGA.mjs";
|
|
20
|
+
import {
|
|
21
|
+
tooltip_default
|
|
22
|
+
} from "./chunk-FY5YCQL5.mjs";
|
|
23
|
+
import "./chunk-DSBSLSJW.mjs";
|
|
24
|
+
import "./chunk-ODMRJXLJ.mjs";
|
|
29
25
|
import "./chunk-2UUH2MBF.mjs";
|
|
30
26
|
import {
|
|
31
27
|
table_default
|
|
32
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-YVBOTJAH.mjs";
|
|
33
29
|
import "./chunk-QDDEQY63.mjs";
|
|
34
30
|
import "./chunk-PO3ADNA5.mjs";
|
|
31
|
+
import "./chunk-3MY6LO7N.mjs";
|
|
32
|
+
import {
|
|
33
|
+
tabs_default
|
|
34
|
+
} from "./chunk-KRI5IALM.mjs";
|
|
35
35
|
import "./chunk-QCEKPS7U.mjs";
|
|
36
36
|
import {
|
|
37
37
|
select_default
|
|
@@ -57,17 +57,17 @@ import {
|
|
|
57
57
|
import "./chunk-7B7LRG5J.mjs";
|
|
58
58
|
import {
|
|
59
59
|
pagination_default
|
|
60
|
-
} from "./chunk-
|
|
60
|
+
} from "./chunk-UZL66GNP.mjs";
|
|
61
61
|
import "./chunk-F3HENRVM.mjs";
|
|
62
62
|
import "./chunk-2GCSFWHD.mjs";
|
|
63
63
|
import {
|
|
64
64
|
input_default
|
|
65
65
|
} from "./chunk-ZNEEYSIK.mjs";
|
|
66
|
-
import "./chunk-HAOK24MK.mjs";
|
|
67
66
|
import "./chunk-QZ3LVYJW.mjs";
|
|
67
|
+
import "./chunk-HAOK24MK.mjs";
|
|
68
68
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
69
|
+
card_default
|
|
70
|
+
} from "./chunk-2ALY3PH5.mjs";
|
|
71
71
|
import "./chunk-75HLCORR.mjs";
|
|
72
72
|
import {
|
|
73
73
|
dateTimePicker_default
|
|
@@ -92,8 +92,8 @@ import {
|
|
|
92
92
|
button_default
|
|
93
93
|
} from "./chunk-UR64ZUAU.mjs";
|
|
94
94
|
import {
|
|
95
|
-
|
|
96
|
-
} from "./chunk-
|
|
95
|
+
checkbox_default
|
|
96
|
+
} from "./chunk-ANYPMQH4.mjs";
|
|
97
97
|
import "./chunk-27Y6K5NK.mjs";
|
|
98
98
|
import {
|
|
99
99
|
accordion_default
|