@deepnoid/ui 0.1.87 → 0.1.90

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.
Files changed (39) hide show
  1. package/.turbo/turbo-build.log +154 -154
  2. package/dist/{chunk-D6OJWEZM.mjs → chunk-3IBXNNJV.mjs} +1 -1
  3. package/dist/{chunk-NBLCM4J2.mjs → chunk-I3ADJOUT.mjs} +1 -1
  4. package/dist/{chunk-Q3JMHIW5.mjs → chunk-KPV5BPMU.mjs} +2 -2
  5. package/dist/{chunk-54342D4Z.mjs → chunk-MPZKOT6P.mjs} +2 -4
  6. package/dist/{chunk-AI4YKKH4.mjs → chunk-TMQVDHLM.mjs} +1 -1
  7. package/dist/components/accordion/accordionItem.js +1 -1
  8. package/dist/components/accordion/accordionItem.mjs +1 -1
  9. package/dist/components/accordion/index.js +1 -1
  10. package/dist/components/accordion/index.mjs +1 -1
  11. package/dist/components/breadcrumb/breadcrumb.mjs +4 -4
  12. package/dist/components/breadcrumb/index.mjs +4 -4
  13. package/dist/components/button/button.mjs +2 -2
  14. package/dist/components/button/icon-button.mjs +2 -2
  15. package/dist/components/button/index.mjs +6 -6
  16. package/dist/components/fileUpload/fileUpload.mjs +5 -5
  17. package/dist/components/fileUpload/index.mjs +5 -5
  18. package/dist/components/modal/index.mjs +5 -5
  19. package/dist/components/modal/modal.mjs +5 -5
  20. package/dist/components/ripple/index.mjs +3 -3
  21. package/dist/components/select/index.js +2 -4
  22. package/dist/components/select/index.mjs +1 -1
  23. package/dist/components/select/select.d.mts +0 -6
  24. package/dist/components/select/select.d.ts +0 -6
  25. package/dist/components/select/select.js +2 -4
  26. package/dist/components/select/select.mjs +1 -1
  27. package/dist/components/table/index.js +1 -1
  28. package/dist/components/table/index.mjs +1 -1
  29. package/dist/components/table/table-body.js +1 -1
  30. package/dist/components/table/table-body.mjs +1 -1
  31. package/dist/components/table/table-head.js +1 -1
  32. package/dist/components/table/table-head.mjs +1 -1
  33. package/dist/components/table/table.js +1 -1
  34. package/dist/components/table/table.mjs +1 -1
  35. package/dist/index.js +4 -6
  36. package/dist/index.mjs +28 -28
  37. package/package.json +1 -1
  38. package/dist/{chunk-V5OCV42N.mjs → chunk-66X6SVGO.mjs} +3 -3
  39. package/dist/{chunk-P6CRHHI3.mjs → chunk-Z6IOS3S6.mjs} +3 -3
@@ -4,10 +4,10 @@ import {
4
4
  } from "./chunk-MVL7HJSH.mjs";
5
5
  import {
6
6
  button_default
7
- } from "./chunk-V5OCV42N.mjs";
7
+ } from "./chunk-66X6SVGO.mjs";
8
8
  import {
9
9
  icon_button_default
10
- } from "./chunk-P6CRHHI3.mjs";
10
+ } from "./chunk-Z6IOS3S6.mjs";
11
11
 
12
12
  // src/components/fileUpload/fileUpload.tsx
13
13
  import { useRef, useState, useEffect } from "react";
@@ -156,7 +156,7 @@ var Select = forwardRef((originalProps, ref) => {
156
156
  ref,
157
157
  className: clsx(
158
158
  slots.select({ class: classNames == null ? void 0 : classNames.select }),
159
- inputProps.readOnly ? "!text-body-foreground placeholder:text-body-foreground" : ""
159
+ inputProps.readOnly ? "!placeholder:text-body-foreground" : ""
160
160
  ),
161
161
  name: void 0,
162
162
  value: displayValue,
@@ -244,7 +244,7 @@ var select = tv({
244
244
  "w-full",
245
245
  "outline-none",
246
246
  "placeholder:text-neutral-main",
247
- "text-neutral-dark",
247
+ "text-body-foreground",
248
248
  "group-has-[p.error]/select:text-danger-main",
249
249
  "group-has-[p.error]/select:placeholder:text-danger-main"
250
250
  ],
@@ -258,13 +258,11 @@ var select = tv({
258
258
  color: {
259
259
  primary: {
260
260
  selectWrapper: ["text-primary-main"],
261
- select: ["text-primary-main"],
262
261
  option: ["hover:bg-primary-soft", "hover:text-primary-main"],
263
262
  helperMessage: ["text-primary-main"]
264
263
  },
265
264
  secondary: {
266
265
  selectWrapper: ["text-secondary-main"],
267
- select: ["text-secondary-main"],
268
266
  option: ["hover:bg-secondary-soft", "hover:text-secondary-main"],
269
267
  helperMessage: ["text-secondary-main"]
270
268
  }
@@ -284,7 +284,7 @@ var tableStyle = tv({
284
284
  outline: {
285
285
  tbody: ["[&>td]:border"],
286
286
  th: ["border"],
287
- td: ["border"]
287
+ td: ["border", "bg-body-background"]
288
288
  },
289
289
  underline: {
290
290
  tbody: ["[&>tr]:border-b"],
@@ -453,7 +453,7 @@ var accordionItem = tv({
453
453
  "select-none",
454
454
  "gap-[8px]"
455
455
  ],
456
- headerTitle: ["truncate", "w-full", "font-bold", "text-body-foreground"],
456
+ headerTitle: ["w-full", "font-bold", "text-body-foreground"],
457
457
  content: [
458
458
  "overflow-hidden",
459
459
  "transition-all",
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  accordionItem_default
4
- } from "../../chunk-NBLCM4J2.mjs";
4
+ } from "../../chunk-I3ADJOUT.mjs";
5
5
  import "../../chunk-E3G5QXSH.mjs";
6
6
  import "../../chunk-CDXBML6O.mjs";
7
7
  import "../../chunk-AC6TWLRT.mjs";
@@ -522,7 +522,7 @@ var accordionItem = tv({
522
522
  "select-none",
523
523
  "gap-[8px]"
524
524
  ],
525
- headerTitle: ["truncate", "w-full", "font-bold", "text-body-foreground"],
525
+ headerTitle: ["w-full", "font-bold", "text-body-foreground"],
526
526
  content: [
527
527
  "overflow-hidden",
528
528
  "transition-all",
@@ -5,7 +5,7 @@ import {
5
5
  } from "../../chunk-EKLA6ZR4.mjs";
6
6
  import {
7
7
  accordionItem_default
8
- } from "../../chunk-NBLCM4J2.mjs";
8
+ } from "../../chunk-I3ADJOUT.mjs";
9
9
  import "../../chunk-E3G5QXSH.mjs";
10
10
  import "../../chunk-CDXBML6O.mjs";
11
11
  import "../../chunk-AC6TWLRT.mjs";
@@ -3,13 +3,13 @@ import {
3
3
  breadcrumb_default
4
4
  } from "../../chunk-RE2WH26E.mjs";
5
5
  import "../../chunk-MY5U63QO.mjs";
6
+ import "../../chunk-JBSV7GCL.mjs";
6
7
  import "../../chunk-ITWKPTSD.mjs";
7
- import "../../chunk-V5OCV42N.mjs";
8
- import "../../chunk-P6CRHHI3.mjs";
8
+ import "../../chunk-66X6SVGO.mjs";
9
+ import "../../chunk-Z6IOS3S6.mjs";
9
10
  import "../../chunk-6WSACUIB.mjs";
10
- import "../../chunk-LXHUO6VM.mjs";
11
11
  import "../../chunk-6PNKRBUT.mjs";
12
- import "../../chunk-JBSV7GCL.mjs";
12
+ import "../../chunk-LXHUO6VM.mjs";
13
13
  import "../../chunk-ZYIIXWVY.mjs";
14
14
  import "../../chunk-JP4TEWP7.mjs";
15
15
  import "../../chunk-E3G5QXSH.mjs";
@@ -4,13 +4,13 @@ import {
4
4
  breadcrumb_default
5
5
  } from "../../chunk-RE2WH26E.mjs";
6
6
  import "../../chunk-MY5U63QO.mjs";
7
+ import "../../chunk-JBSV7GCL.mjs";
7
8
  import "../../chunk-ITWKPTSD.mjs";
8
- import "../../chunk-V5OCV42N.mjs";
9
- import "../../chunk-P6CRHHI3.mjs";
9
+ import "../../chunk-66X6SVGO.mjs";
10
+ import "../../chunk-Z6IOS3S6.mjs";
10
11
  import "../../chunk-6WSACUIB.mjs";
11
- import "../../chunk-LXHUO6VM.mjs";
12
12
  import "../../chunk-6PNKRBUT.mjs";
13
- import "../../chunk-JBSV7GCL.mjs";
13
+ import "../../chunk-LXHUO6VM.mjs";
14
14
  import "../../chunk-ZYIIXWVY.mjs";
15
15
  import "../../chunk-JP4TEWP7.mjs";
16
16
  import "../../chunk-E3G5QXSH.mjs";
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  button_default
4
- } from "../../chunk-V5OCV42N.mjs";
4
+ } from "../../chunk-66X6SVGO.mjs";
5
5
  import "../../chunk-6WSACUIB.mjs";
6
- import "../../chunk-LXHUO6VM.mjs";
7
6
  import "../../chunk-6PNKRBUT.mjs";
7
+ import "../../chunk-LXHUO6VM.mjs";
8
8
  import "../../chunk-ZYIIXWVY.mjs";
9
9
  import "../../chunk-JP4TEWP7.mjs";
10
10
  import "../../chunk-E3G5QXSH.mjs";
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  icon_button_default
4
- } from "../../chunk-P6CRHHI3.mjs";
4
+ } from "../../chunk-Z6IOS3S6.mjs";
5
5
  import "../../chunk-6WSACUIB.mjs";
6
- import "../../chunk-LXHUO6VM.mjs";
7
6
  import "../../chunk-6PNKRBUT.mjs";
7
+ import "../../chunk-LXHUO6VM.mjs";
8
8
  import "../../chunk-ZYIIXWVY.mjs";
9
9
  import "../../chunk-JP4TEWP7.mjs";
10
10
  import "../../chunk-E3G5QXSH.mjs";
@@ -1,20 +1,20 @@
1
1
  "use client";
2
2
  import "../../chunk-MY5U63QO.mjs";
3
+ import {
4
+ text_button_default
5
+ } from "../../chunk-JBSV7GCL.mjs";
3
6
  import {
4
7
  button_group_default
5
8
  } from "../../chunk-ITWKPTSD.mjs";
6
9
  import {
7
10
  button_default
8
- } from "../../chunk-V5OCV42N.mjs";
11
+ } from "../../chunk-66X6SVGO.mjs";
9
12
  import {
10
13
  icon_button_default
11
- } from "../../chunk-P6CRHHI3.mjs";
14
+ } from "../../chunk-Z6IOS3S6.mjs";
12
15
  import "../../chunk-6WSACUIB.mjs";
13
- import "../../chunk-LXHUO6VM.mjs";
14
16
  import "../../chunk-6PNKRBUT.mjs";
15
- import {
16
- text_button_default
17
- } from "../../chunk-JBSV7GCL.mjs";
17
+ import "../../chunk-LXHUO6VM.mjs";
18
18
  import "../../chunk-ZYIIXWVY.mjs";
19
19
  import "../../chunk-JP4TEWP7.mjs";
20
20
  import "../../chunk-E3G5QXSH.mjs";
@@ -3,17 +3,17 @@ import {
3
3
  FileUpload,
4
4
  fileUploadStyle,
5
5
  fileUpload_default
6
- } from "../../chunk-Q3JMHIW5.mjs";
6
+ } from "../../chunk-KPV5BPMU.mjs";
7
7
  import "../../chunk-2GCSFWHD.mjs";
8
8
  import "../../chunk-MVL7HJSH.mjs";
9
9
  import "../../chunk-MY5U63QO.mjs";
10
+ import "../../chunk-JBSV7GCL.mjs";
10
11
  import "../../chunk-ITWKPTSD.mjs";
11
- import "../../chunk-V5OCV42N.mjs";
12
- import "../../chunk-P6CRHHI3.mjs";
12
+ import "../../chunk-66X6SVGO.mjs";
13
+ import "../../chunk-Z6IOS3S6.mjs";
13
14
  import "../../chunk-6WSACUIB.mjs";
14
- import "../../chunk-LXHUO6VM.mjs";
15
15
  import "../../chunk-6PNKRBUT.mjs";
16
- import "../../chunk-JBSV7GCL.mjs";
16
+ import "../../chunk-LXHUO6VM.mjs";
17
17
  import "../../chunk-ZYIIXWVY.mjs";
18
18
  import "../../chunk-JP4TEWP7.mjs";
19
19
  import "../../chunk-E3G5QXSH.mjs";
@@ -2,17 +2,17 @@
2
2
  import "../../chunk-RLXOHILK.mjs";
3
3
  import {
4
4
  fileUpload_default
5
- } from "../../chunk-Q3JMHIW5.mjs";
5
+ } from "../../chunk-KPV5BPMU.mjs";
6
6
  import "../../chunk-2GCSFWHD.mjs";
7
7
  import "../../chunk-MVL7HJSH.mjs";
8
8
  import "../../chunk-MY5U63QO.mjs";
9
+ import "../../chunk-JBSV7GCL.mjs";
9
10
  import "../../chunk-ITWKPTSD.mjs";
10
- import "../../chunk-V5OCV42N.mjs";
11
- import "../../chunk-P6CRHHI3.mjs";
11
+ import "../../chunk-66X6SVGO.mjs";
12
+ import "../../chunk-Z6IOS3S6.mjs";
12
13
  import "../../chunk-6WSACUIB.mjs";
13
- import "../../chunk-LXHUO6VM.mjs";
14
14
  import "../../chunk-6PNKRBUT.mjs";
15
- import "../../chunk-JBSV7GCL.mjs";
15
+ import "../../chunk-LXHUO6VM.mjs";
16
16
  import "../../chunk-ZYIIXWVY.mjs";
17
17
  import "../../chunk-JP4TEWP7.mjs";
18
18
  import "../../chunk-E3G5QXSH.mjs";
@@ -2,17 +2,17 @@
2
2
  import "../../chunk-DJOG6Z35.mjs";
3
3
  import {
4
4
  modal_default
5
- } from "../../chunk-D6OJWEZM.mjs";
5
+ } from "../../chunk-3IBXNNJV.mjs";
6
6
  import "../../chunk-SE5TU755.mjs";
7
7
  import "../../chunk-AF4I7ZQS.mjs";
8
8
  import "../../chunk-MY5U63QO.mjs";
9
+ import "../../chunk-JBSV7GCL.mjs";
9
10
  import "../../chunk-ITWKPTSD.mjs";
10
- import "../../chunk-V5OCV42N.mjs";
11
- import "../../chunk-P6CRHHI3.mjs";
11
+ import "../../chunk-66X6SVGO.mjs";
12
+ import "../../chunk-Z6IOS3S6.mjs";
12
13
  import "../../chunk-6WSACUIB.mjs";
13
- import "../../chunk-LXHUO6VM.mjs";
14
14
  import "../../chunk-6PNKRBUT.mjs";
15
- import "../../chunk-JBSV7GCL.mjs";
15
+ import "../../chunk-LXHUO6VM.mjs";
16
16
  import "../../chunk-ZYIIXWVY.mjs";
17
17
  import "../../chunk-JP4TEWP7.mjs";
18
18
  import "../../chunk-E3G5QXSH.mjs";
@@ -1,17 +1,17 @@
1
1
  "use client";
2
2
  import {
3
3
  modal_default
4
- } from "../../chunk-D6OJWEZM.mjs";
4
+ } from "../../chunk-3IBXNNJV.mjs";
5
5
  import "../../chunk-SE5TU755.mjs";
6
6
  import "../../chunk-AF4I7ZQS.mjs";
7
7
  import "../../chunk-MY5U63QO.mjs";
8
+ import "../../chunk-JBSV7GCL.mjs";
8
9
  import "../../chunk-ITWKPTSD.mjs";
9
- import "../../chunk-V5OCV42N.mjs";
10
- import "../../chunk-P6CRHHI3.mjs";
10
+ import "../../chunk-66X6SVGO.mjs";
11
+ import "../../chunk-Z6IOS3S6.mjs";
11
12
  import "../../chunk-6WSACUIB.mjs";
12
- import "../../chunk-LXHUO6VM.mjs";
13
13
  import "../../chunk-6PNKRBUT.mjs";
14
- import "../../chunk-JBSV7GCL.mjs";
14
+ import "../../chunk-LXHUO6VM.mjs";
15
15
  import "../../chunk-ZYIIXWVY.mjs";
16
16
  import "../../chunk-JP4TEWP7.mjs";
17
17
  import "../../chunk-E3G5QXSH.mjs";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
2
  import "../../chunk-6WSACUIB.mjs";
3
- import {
4
- ripple_default
5
- } from "../../chunk-LXHUO6VM.mjs";
6
3
  import {
7
4
  useRipple
8
5
  } from "../../chunk-6PNKRBUT.mjs";
6
+ import {
7
+ ripple_default
8
+ } from "../../chunk-LXHUO6VM.mjs";
9
9
  import "../../chunk-AC6TWLRT.mjs";
10
10
  export {
11
11
  ripple_default as Ripple,
@@ -5188,7 +5188,7 @@ var Select = (0, import_react.forwardRef)((originalProps, ref) => {
5188
5188
  ref,
5189
5189
  className: clsx(
5190
5190
  slots.select({ class: classNames == null ? void 0 : classNames.select }),
5191
- inputProps.readOnly ? "!text-body-foreground placeholder:text-body-foreground" : ""
5191
+ inputProps.readOnly ? "!placeholder:text-body-foreground" : ""
5192
5192
  ),
5193
5193
  name: void 0,
5194
5194
  value: displayValue,
@@ -5276,7 +5276,7 @@ var select = tv({
5276
5276
  "w-full",
5277
5277
  "outline-none",
5278
5278
  "placeholder:text-neutral-main",
5279
- "text-neutral-dark",
5279
+ "text-body-foreground",
5280
5280
  "group-has-[p.error]/select:text-danger-main",
5281
5281
  "group-has-[p.error]/select:placeholder:text-danger-main"
5282
5282
  ],
@@ -5290,13 +5290,11 @@ var select = tv({
5290
5290
  color: {
5291
5291
  primary: {
5292
5292
  selectWrapper: ["text-primary-main"],
5293
- select: ["text-primary-main"],
5294
5293
  option: ["hover:bg-primary-soft", "hover:text-primary-main"],
5295
5294
  helperMessage: ["text-primary-main"]
5296
5295
  },
5297
5296
  secondary: {
5298
5297
  selectWrapper: ["text-secondary-main"],
5299
- select: ["text-secondary-main"],
5300
5298
  option: ["hover:bg-secondary-soft", "hover:text-secondary-main"],
5301
5299
  helperMessage: ["text-secondary-main"]
5302
5300
  }
@@ -2,7 +2,7 @@
2
2
  import "../../chunk-QCEKPS7U.mjs";
3
3
  import {
4
4
  select_default
5
- } from "../../chunk-54342D4Z.mjs";
5
+ } from "../../chunk-MPZKOT6P.mjs";
6
6
  import "../../chunk-ZYIIXWVY.mjs";
7
7
  import "../../chunk-JP4TEWP7.mjs";
8
8
  import "../../chunk-E3G5QXSH.mjs";
@@ -26,13 +26,11 @@ declare const select: tailwind_variants.TVReturnType<{
26
26
  color: {
27
27
  primary: {
28
28
  selectWrapper: string[];
29
- select: string[];
30
29
  option: string[];
31
30
  helperMessage: string[];
32
31
  };
33
32
  secondary: {
34
33
  selectWrapper: string[];
35
- select: string[];
36
34
  option: string[];
37
35
  helperMessage: string[];
38
36
  };
@@ -120,13 +118,11 @@ declare const select: tailwind_variants.TVReturnType<{
120
118
  color: {
121
119
  primary: {
122
120
  selectWrapper: string[];
123
- select: string[];
124
121
  option: string[];
125
122
  helperMessage: string[];
126
123
  };
127
124
  secondary: {
128
125
  selectWrapper: string[];
129
- select: string[];
130
126
  option: string[];
131
127
  helperMessage: string[];
132
128
  };
@@ -214,13 +210,11 @@ declare const select: tailwind_variants.TVReturnType<{
214
210
  color: {
215
211
  primary: {
216
212
  selectWrapper: string[];
217
- select: string[];
218
213
  option: string[];
219
214
  helperMessage: string[];
220
215
  };
221
216
  secondary: {
222
217
  selectWrapper: string[];
223
- select: string[];
224
218
  option: string[];
225
219
  helperMessage: string[];
226
220
  };
@@ -26,13 +26,11 @@ declare const select: tailwind_variants.TVReturnType<{
26
26
  color: {
27
27
  primary: {
28
28
  selectWrapper: string[];
29
- select: string[];
30
29
  option: string[];
31
30
  helperMessage: string[];
32
31
  };
33
32
  secondary: {
34
33
  selectWrapper: string[];
35
- select: string[];
36
34
  option: string[];
37
35
  helperMessage: string[];
38
36
  };
@@ -120,13 +118,11 @@ declare const select: tailwind_variants.TVReturnType<{
120
118
  color: {
121
119
  primary: {
122
120
  selectWrapper: string[];
123
- select: string[];
124
121
  option: string[];
125
122
  helperMessage: string[];
126
123
  };
127
124
  secondary: {
128
125
  selectWrapper: string[];
129
- select: string[];
130
126
  option: string[];
131
127
  helperMessage: string[];
132
128
  };
@@ -214,13 +210,11 @@ declare const select: tailwind_variants.TVReturnType<{
214
210
  color: {
215
211
  primary: {
216
212
  selectWrapper: string[];
217
- select: string[];
218
213
  option: string[];
219
214
  helperMessage: string[];
220
215
  };
221
216
  secondary: {
222
217
  selectWrapper: string[];
223
- select: string[];
224
218
  option: string[];
225
219
  helperMessage: string[];
226
220
  };
@@ -5186,7 +5186,7 @@ var Select = (0, import_react.forwardRef)((originalProps, ref) => {
5186
5186
  ref,
5187
5187
  className: clsx(
5188
5188
  slots.select({ class: classNames == null ? void 0 : classNames.select }),
5189
- inputProps.readOnly ? "!text-body-foreground placeholder:text-body-foreground" : ""
5189
+ inputProps.readOnly ? "!placeholder:text-body-foreground" : ""
5190
5190
  ),
5191
5191
  name: void 0,
5192
5192
  value: displayValue,
@@ -5274,7 +5274,7 @@ var select = tv({
5274
5274
  "w-full",
5275
5275
  "outline-none",
5276
5276
  "placeholder:text-neutral-main",
5277
- "text-neutral-dark",
5277
+ "text-body-foreground",
5278
5278
  "group-has-[p.error]/select:text-danger-main",
5279
5279
  "group-has-[p.error]/select:placeholder:text-danger-main"
5280
5280
  ],
@@ -5288,13 +5288,11 @@ var select = tv({
5288
5288
  color: {
5289
5289
  primary: {
5290
5290
  selectWrapper: ["text-primary-main"],
5291
- select: ["text-primary-main"],
5292
5291
  option: ["hover:bg-primary-soft", "hover:text-primary-main"],
5293
5292
  helperMessage: ["text-primary-main"]
5294
5293
  },
5295
5294
  secondary: {
5296
5295
  selectWrapper: ["text-secondary-main"],
5297
- select: ["text-secondary-main"],
5298
5296
  option: ["hover:bg-secondary-soft", "hover:text-secondary-main"],
5299
5297
  helperMessage: ["text-secondary-main"]
5300
5298
  }
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  select_default
4
- } from "../../chunk-54342D4Z.mjs";
4
+ } from "../../chunk-MPZKOT6P.mjs";
5
5
  import "../../chunk-ZYIIXWVY.mjs";
6
6
  import "../../chunk-JP4TEWP7.mjs";
7
7
  import "../../chunk-E3G5QXSH.mjs";
@@ -6329,7 +6329,7 @@ var tableStyle = (0, import_tailwind_variants7.tv)({
6329
6329
  outline: {
6330
6330
  tbody: ["[&>td]:border"],
6331
6331
  th: ["border"],
6332
- td: ["border"]
6332
+ td: ["border", "bg-body-background"]
6333
6333
  },
6334
6334
  underline: {
6335
6335
  tbody: ["[&>tr]:border-b"],
@@ -2,7 +2,7 @@
2
2
  import "../../chunk-DX3KXNP6.mjs";
3
3
  import {
4
4
  table_default
5
- } from "../../chunk-AI4YKKH4.mjs";
5
+ } from "../../chunk-TMQVDHLM.mjs";
6
6
  import "../../chunk-MZ76AA76.mjs";
7
7
  import "../../chunk-6PN3DGOE.mjs";
8
8
  import {
@@ -6244,7 +6244,7 @@ var tableStyle = (0, import_tailwind_variants7.tv)({
6244
6244
  outline: {
6245
6245
  tbody: ["[&>td]:border"],
6246
6246
  th: ["border"],
6247
- td: ["border"]
6247
+ td: ["border", "bg-body-background"]
6248
6248
  },
6249
6249
  underline: {
6250
6250
  tbody: ["[&>tr]:border-b"],
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  table_body_default
4
- } from "../../chunk-AI4YKKH4.mjs";
4
+ } from "../../chunk-TMQVDHLM.mjs";
5
5
  import "../../chunk-MZ76AA76.mjs";
6
6
  import "../../chunk-6PN3DGOE.mjs";
7
7
  import "../../chunk-DQRAFUDA.mjs";
@@ -6268,7 +6268,7 @@ var tableStyle = (0, import_tailwind_variants7.tv)({
6268
6268
  outline: {
6269
6269
  tbody: ["[&>td]:border"],
6270
6270
  th: ["border"],
6271
- td: ["border"]
6271
+ td: ["border", "bg-body-background"]
6272
6272
  },
6273
6273
  underline: {
6274
6274
  tbody: ["[&>tr]:border-b"],
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  table_head_default
4
- } from "../../chunk-AI4YKKH4.mjs";
4
+ } from "../../chunk-TMQVDHLM.mjs";
5
5
  import "../../chunk-MZ76AA76.mjs";
6
6
  import "../../chunk-6PN3DGOE.mjs";
7
7
  import "../../chunk-DQRAFUDA.mjs";
@@ -6327,7 +6327,7 @@ var tableStyle = (0, import_tailwind_variants7.tv)({
6327
6327
  outline: {
6328
6328
  tbody: ["[&>td]:border"],
6329
6329
  th: ["border"],
6330
- td: ["border"]
6330
+ td: ["border", "bg-body-background"]
6331
6331
  },
6332
6332
  underline: {
6333
6333
  tbody: ["[&>tr]:border-b"],
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getCellStyle,
4
4
  table_default
5
- } from "../../chunk-AI4YKKH4.mjs";
5
+ } from "../../chunk-TMQVDHLM.mjs";
6
6
  import "../../chunk-MZ76AA76.mjs";
7
7
  import "../../chunk-6PN3DGOE.mjs";
8
8
  import "../../chunk-DQRAFUDA.mjs";
package/dist/index.js CHANGED
@@ -904,7 +904,7 @@ var accordionItem = tv({
904
904
  "select-none",
905
905
  "gap-[8px]"
906
906
  ],
907
- headerTitle: ["truncate", "w-full", "font-bold", "text-body-foreground"],
907
+ headerTitle: ["w-full", "font-bold", "text-body-foreground"],
908
908
  content: [
909
909
  "overflow-hidden",
910
910
  "transition-all",
@@ -8663,7 +8663,7 @@ var tableStyle = (0, import_tailwind_variants18.tv)({
8663
8663
  outline: {
8664
8664
  tbody: ["[&>td]:border"],
8665
8665
  th: ["border"],
8666
- td: ["border"]
8666
+ td: ["border", "bg-body-background"]
8667
8667
  },
8668
8668
  underline: {
8669
8669
  tbody: ["[&>tr]:border-b"],
@@ -9065,7 +9065,7 @@ var Select = (0, import_react19.forwardRef)((originalProps, ref) => {
9065
9065
  ref,
9066
9066
  className: clsx(
9067
9067
  slots.select({ class: classNames == null ? void 0 : classNames.select }),
9068
- inputProps.readOnly ? "!text-body-foreground placeholder:text-body-foreground" : ""
9068
+ inputProps.readOnly ? "!placeholder:text-body-foreground" : ""
9069
9069
  ),
9070
9070
  name: void 0,
9071
9071
  value: displayValue,
@@ -9153,7 +9153,7 @@ var select = tv({
9153
9153
  "w-full",
9154
9154
  "outline-none",
9155
9155
  "placeholder:text-neutral-main",
9156
- "text-neutral-dark",
9156
+ "text-body-foreground",
9157
9157
  "group-has-[p.error]/select:text-danger-main",
9158
9158
  "group-has-[p.error]/select:placeholder:text-danger-main"
9159
9159
  ],
@@ -9167,13 +9167,11 @@ var select = tv({
9167
9167
  color: {
9168
9168
  primary: {
9169
9169
  selectWrapper: ["text-primary-main"],
9170
- select: ["text-primary-main"],
9171
9170
  option: ["hover:bg-primary-soft", "hover:text-primary-main"],
9172
9171
  helperMessage: ["text-primary-main"]
9173
9172
  },
9174
9173
  secondary: {
9175
9174
  selectWrapper: ["text-secondary-main"],
9176
- select: ["text-secondary-main"],
9177
9175
  option: ["hover:bg-secondary-soft", "hover:text-secondary-main"],
9178
9176
  helperMessage: ["text-secondary-main"]
9179
9177
  }