@deepnoid/ui 1.0.3 → 1.0.5

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 (42) hide show
  1. package/.turbo/turbo-build.log +201 -201
  2. package/dist/{chunk-ONFHQWEZ.mjs → chunk-73ROORZV.mjs} +4 -4
  3. package/dist/{chunk-LC6ZEL7L.mjs → chunk-GPQDI4VB.mjs} +1 -1
  4. package/dist/{chunk-LOBVYG4E.mjs → chunk-HKLKWHOE.mjs} +1 -1
  5. package/dist/{chunk-HZHMDQHZ.mjs → chunk-QX4BGDC6.mjs} +5 -5
  6. package/dist/components/breadcrumb/breadcrumb.mjs +2 -2
  7. package/dist/components/breadcrumb/index.mjs +2 -2
  8. package/dist/components/button/index.mjs +3 -3
  9. package/dist/components/charts/index.mjs +3 -3
  10. package/dist/components/fileUpload/fileUpload.mjs +1 -1
  11. package/dist/components/fileUpload/index.mjs +1 -1
  12. package/dist/components/list/index.mjs +2 -2
  13. package/dist/components/list/listItem.mjs +2 -2
  14. package/dist/components/modal/GlobalModalProvider.js +2 -2
  15. package/dist/components/modal/GlobalModalProvider.mjs +5 -5
  16. package/dist/components/modal/index.js +2 -2
  17. package/dist/components/modal/index.mjs +6 -6
  18. package/dist/components/modal/modal.js +2 -2
  19. package/dist/components/modal/modal.mjs +4 -4
  20. package/dist/components/modal/useGlobalModal.mjs +6 -6
  21. package/dist/components/picker/datePicker.mjs +2 -2
  22. package/dist/components/picker/index.mjs +2 -2
  23. package/dist/components/picker/timePicker/Panel.mjs +1 -1
  24. package/dist/components/picker/timePicker/index.mjs +1 -1
  25. package/dist/components/select/index.mjs +1 -1
  26. package/dist/components/select/select.mjs +1 -1
  27. package/dist/components/table/index.js +4 -4
  28. package/dist/components/table/index.mjs +5 -5
  29. package/dist/components/table/table-body.js +4 -4
  30. package/dist/components/table/table-body.mjs +5 -5
  31. package/dist/components/table/table-head.js +4 -4
  32. package/dist/components/table/table-head.mjs +5 -5
  33. package/dist/components/table/table.d.mts +2 -1
  34. package/dist/components/table/table.d.ts +2 -1
  35. package/dist/components/table/table.js +4 -4
  36. package/dist/components/table/table.mjs +5 -5
  37. package/dist/index.js +6 -6
  38. package/dist/index.mjs +50 -50
  39. package/package.json +1 -1
  40. package/dist/{chunk-CVDI2GQ2.mjs → chunk-DEKPVTFX.mjs} +3 -3
  41. package/dist/{chunk-3STWFJVX.mjs → chunk-FQMA47EO.mjs} +3 -3
  42. package/dist/{chunk-DJZHJNYH.mjs → chunk-PCWANNZ4.mjs} +3 -3
@@ -1,19 +1,19 @@
1
1
  "use client";
2
2
  import {
3
3
  table_body_default
4
- } from "../../chunk-ONFHQWEZ.mjs";
4
+ } from "../../chunk-73ROORZV.mjs";
5
5
  import "../../chunk-7B7LRG5J.mjs";
6
6
  import "../../chunk-XNDDHEW6.mjs";
7
7
  import "../../chunk-F3HENRVM.mjs";
8
- import "../../chunk-QZ3LVYJW.mjs";
9
- import "../../chunk-2HYBU7NH.mjs";
10
8
  import "../../chunk-2GCSFWHD.mjs";
11
9
  import "../../chunk-HJ2RUGGG.mjs";
10
+ import "../../chunk-QZ3LVYJW.mjs";
11
+ import "../../chunk-2HYBU7NH.mjs";
12
+ import "../../chunk-DQRAFUDA.mjs";
13
+ import "../../chunk-EWS3FESG.mjs";
12
14
  import "../../chunk-ZYIIXWVY.mjs";
13
15
  import "../../chunk-A6UUVHC6.mjs";
14
16
  import "../../chunk-AOU4QX7H.mjs";
15
- import "../../chunk-DQRAFUDA.mjs";
16
- import "../../chunk-EWS3FESG.mjs";
17
17
  import "../../chunk-27Y6K5NK.mjs";
18
18
  import "../../chunk-E3G5QXSH.mjs";
19
19
  import "../../chunk-DPWUIAVC.mjs";
@@ -7162,7 +7162,7 @@ var tableStyle = (0, import_tailwind_variants6.tv)({
7162
7162
  height: "narrow"
7163
7163
  }
7164
7164
  });
7165
- var getCellStyle = (column) => {
7165
+ var getCellStyle = (column, isHeader = false) => {
7166
7166
  const hasFixedWidth = column.width;
7167
7167
  const hasMinWidth = column.minWidth;
7168
7168
  return {
@@ -7170,7 +7170,7 @@ var getCellStyle = (column) => {
7170
7170
  minWidth: hasMinWidth ? `${column.minWidth}px` : hasFixedWidth ? `${column.width}px` : void 0,
7171
7171
  maxWidth: column.maxWidth ? `${column.maxWidth}px` : void 0,
7172
7172
  height: column.height ? `${column.height}px` : void 0,
7173
- textAlign: column.align || "center",
7173
+ textAlign: isHeader ? column.headAlign || "center" : column.align || "center",
7174
7174
  boxSizing: "border-box",
7175
7175
  overflow: "hidden",
7176
7176
  textOverflow: "ellipsis",
@@ -7214,7 +7214,7 @@ function TableHeaderCell({
7214
7214
  flexGrow: 0,
7215
7215
  boxSizing: "border-box"
7216
7216
  } : column ? {
7217
- ...getCellStyle(column)
7217
+ ...getCellStyle(column, true)
7218
7218
  } : void 0,
7219
7219
  title: titleText,
7220
7220
  children: isTextContent ? content : /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
@@ -7222,7 +7222,7 @@ function TableHeaderCell({
7222
7222
  {
7223
7223
  className: clsx(
7224
7224
  "flex w-full items-center",
7225
- isCheckbox ? "justify-center" : (column == null ? void 0 : column.align) === "right" ? "justify-end" : (column == null ? void 0 : column.align) === "left" ? "justify-start" : "justify-center"
7225
+ isCheckbox ? "justify-center" : ((column == null ? void 0 : column.headAlign) || "center") === "right" ? "justify-end" : ((column == null ? void 0 : column.headAlign) || "center") === "left" ? "justify-start" : "justify-center"
7226
7226
  ),
7227
7227
  children: content
7228
7228
  }
@@ -1,19 +1,19 @@
1
1
  "use client";
2
2
  import {
3
3
  table_head_default
4
- } from "../../chunk-ONFHQWEZ.mjs";
4
+ } from "../../chunk-73ROORZV.mjs";
5
5
  import "../../chunk-7B7LRG5J.mjs";
6
6
  import "../../chunk-XNDDHEW6.mjs";
7
7
  import "../../chunk-F3HENRVM.mjs";
8
- import "../../chunk-QZ3LVYJW.mjs";
9
- import "../../chunk-2HYBU7NH.mjs";
10
8
  import "../../chunk-2GCSFWHD.mjs";
11
9
  import "../../chunk-HJ2RUGGG.mjs";
10
+ import "../../chunk-QZ3LVYJW.mjs";
11
+ import "../../chunk-2HYBU7NH.mjs";
12
+ import "../../chunk-DQRAFUDA.mjs";
13
+ import "../../chunk-EWS3FESG.mjs";
12
14
  import "../../chunk-ZYIIXWVY.mjs";
13
15
  import "../../chunk-A6UUVHC6.mjs";
14
16
  import "../../chunk-AOU4QX7H.mjs";
15
- import "../../chunk-DQRAFUDA.mjs";
16
- import "../../chunk-EWS3FESG.mjs";
17
17
  import "../../chunk-27Y6K5NK.mjs";
18
18
  import "../../chunk-E3G5QXSH.mjs";
19
19
  import "../../chunk-DPWUIAVC.mjs";
@@ -198,7 +198,7 @@ declare const tableStyle: tailwind_variants.TVReturnType<{
198
198
  tbodyLoading: never[];
199
199
  overlay: never[];
200
200
  }, undefined, unknown, unknown, undefined>>;
201
- declare const getCellStyle: (column: TableColumn) => CSSProperties;
201
+ declare const getCellStyle: (column: TableColumn, isHeader?: boolean) => CSSProperties;
202
202
  type TableVariantProps = VariantProps<typeof tableStyle>;
203
203
  type TableSlots = keyof ReturnType<typeof tableStyle>;
204
204
  type TableReturnType = ReturnType<typeof tableStyle>;
@@ -209,6 +209,7 @@ type TableColumn<R extends RowValue = RowValue, V = any, F = V> = {
209
209
  field: string;
210
210
  headerName?: ReactNode;
211
211
  align?: Align;
212
+ headAlign?: Align;
212
213
  width?: number;
213
214
  minWidth?: number;
214
215
  maxWidth?: number;
@@ -198,7 +198,7 @@ declare const tableStyle: tailwind_variants.TVReturnType<{
198
198
  tbodyLoading: never[];
199
199
  overlay: never[];
200
200
  }, undefined, unknown, unknown, undefined>>;
201
- declare const getCellStyle: (column: TableColumn) => CSSProperties;
201
+ declare const getCellStyle: (column: TableColumn, isHeader?: boolean) => CSSProperties;
202
202
  type TableVariantProps = VariantProps<typeof tableStyle>;
203
203
  type TableSlots = keyof ReturnType<typeof tableStyle>;
204
204
  type TableReturnType = ReturnType<typeof tableStyle>;
@@ -209,6 +209,7 @@ type TableColumn<R extends RowValue = RowValue, V = any, F = V> = {
209
209
  field: string;
210
210
  headerName?: ReactNode;
211
211
  align?: Align;
212
+ headAlign?: Align;
212
213
  width?: number;
213
214
  minWidth?: number;
214
215
  maxWidth?: number;
@@ -998,7 +998,7 @@ function TableHeaderCell({
998
998
  flexGrow: 0,
999
999
  boxSizing: "border-box"
1000
1000
  } : column ? {
1001
- ...getCellStyle(column)
1001
+ ...getCellStyle(column, true)
1002
1002
  } : void 0,
1003
1003
  title: titleText,
1004
1004
  children: isTextContent ? content : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
@@ -1006,7 +1006,7 @@ function TableHeaderCell({
1006
1006
  {
1007
1007
  className: clsx(
1008
1008
  "flex w-full items-center",
1009
- isCheckbox ? "justify-center" : (column == null ? void 0 : column.align) === "right" ? "justify-end" : (column == null ? void 0 : column.align) === "left" ? "justify-start" : "justify-center"
1009
+ isCheckbox ? "justify-center" : ((column == null ? void 0 : column.headAlign) || "center") === "right" ? "justify-end" : ((column == null ? void 0 : column.headAlign) || "center") === "left" ? "justify-start" : "justify-center"
1010
1010
  ),
1011
1011
  children: content
1012
1012
  }
@@ -7255,7 +7255,7 @@ var tableStyle = (0, import_tailwind_variants6.tv)({
7255
7255
  height: "narrow"
7256
7256
  }
7257
7257
  });
7258
- var getCellStyle = (column) => {
7258
+ var getCellStyle = (column, isHeader = false) => {
7259
7259
  const hasFixedWidth = column.width;
7260
7260
  const hasMinWidth = column.minWidth;
7261
7261
  return {
@@ -7263,7 +7263,7 @@ var getCellStyle = (column) => {
7263
7263
  minWidth: hasMinWidth ? `${column.minWidth}px` : hasFixedWidth ? `${column.width}px` : void 0,
7264
7264
  maxWidth: column.maxWidth ? `${column.maxWidth}px` : void 0,
7265
7265
  height: column.height ? `${column.height}px` : void 0,
7266
- textAlign: column.align || "center",
7266
+ textAlign: isHeader ? column.headAlign || "center" : column.align || "center",
7267
7267
  boxSizing: "border-box",
7268
7268
  overflow: "hidden",
7269
7269
  textOverflow: "ellipsis",
@@ -2,19 +2,19 @@
2
2
  import {
3
3
  getCellStyle,
4
4
  table_default
5
- } from "../../chunk-ONFHQWEZ.mjs";
5
+ } from "../../chunk-73ROORZV.mjs";
6
6
  import "../../chunk-7B7LRG5J.mjs";
7
7
  import "../../chunk-XNDDHEW6.mjs";
8
8
  import "../../chunk-F3HENRVM.mjs";
9
- import "../../chunk-QZ3LVYJW.mjs";
10
- import "../../chunk-2HYBU7NH.mjs";
11
9
  import "../../chunk-2GCSFWHD.mjs";
12
10
  import "../../chunk-HJ2RUGGG.mjs";
11
+ import "../../chunk-QZ3LVYJW.mjs";
12
+ import "../../chunk-2HYBU7NH.mjs";
13
+ import "../../chunk-DQRAFUDA.mjs";
14
+ import "../../chunk-EWS3FESG.mjs";
13
15
  import "../../chunk-ZYIIXWVY.mjs";
14
16
  import "../../chunk-A6UUVHC6.mjs";
15
17
  import "../../chunk-AOU4QX7H.mjs";
16
- import "../../chunk-DQRAFUDA.mjs";
17
- import "../../chunk-EWS3FESG.mjs";
18
18
  import "../../chunk-27Y6K5NK.mjs";
19
19
  import "../../chunk-E3G5QXSH.mjs";
20
20
  import "../../chunk-DPWUIAVC.mjs";
package/dist/index.js CHANGED
@@ -8546,7 +8546,7 @@ function TableHeaderCell({
8546
8546
  flexGrow: 0,
8547
8547
  boxSizing: "border-box"
8548
8548
  } : column ? {
8549
- ...getCellStyle(column)
8549
+ ...getCellStyle(column, true)
8550
8550
  } : void 0,
8551
8551
  title: titleText,
8552
8552
  children: isTextContent ? content : /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
@@ -8554,7 +8554,7 @@ function TableHeaderCell({
8554
8554
  {
8555
8555
  className: clsx(
8556
8556
  "flex w-full items-center",
8557
- isCheckbox ? "justify-center" : (column == null ? void 0 : column.align) === "right" ? "justify-end" : (column == null ? void 0 : column.align) === "left" ? "justify-start" : "justify-center"
8557
+ isCheckbox ? "justify-center" : ((column == null ? void 0 : column.headAlign) || "center") === "right" ? "justify-end" : ((column == null ? void 0 : column.headAlign) || "center") === "left" ? "justify-start" : "justify-center"
8558
8558
  ),
8559
8559
  children: content
8560
8560
  }
@@ -9476,7 +9476,7 @@ var tableStyle = (0, import_tailwind_variants18.tv)({
9476
9476
  height: "narrow"
9477
9477
  }
9478
9478
  });
9479
- var getCellStyle = (column) => {
9479
+ var getCellStyle = (column, isHeader = false) => {
9480
9480
  const hasFixedWidth = column.width;
9481
9481
  const hasMinWidth = column.minWidth;
9482
9482
  return {
@@ -9484,7 +9484,7 @@ var getCellStyle = (column) => {
9484
9484
  minWidth: hasMinWidth ? `${column.minWidth}px` : hasFixedWidth ? `${column.width}px` : void 0,
9485
9485
  maxWidth: column.maxWidth ? `${column.maxWidth}px` : void 0,
9486
9486
  height: column.height ? `${column.height}px` : void 0,
9487
- textAlign: column.align || "center",
9487
+ textAlign: isHeader ? column.headAlign || "center" : column.align || "center",
9488
9488
  boxSizing: "border-box",
9489
9489
  overflow: "hidden",
9490
9490
  textOverflow: "ellipsis",
@@ -10914,7 +10914,7 @@ var Modal = (0, import_react27.forwardRef)((props, ref) => {
10914
10914
  /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
10915
10915
  hasBackdrop && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(backdrop_default, { open: true }),
10916
10916
  /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), ...restProps, children: [
10917
- /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.titleWrapper({ class: classNames == null ? void 0 : classNames.titleWrapper }), children: [
10917
+ (iconName || title) && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_jsx_runtime28.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.titleWrapper({ class: classNames == null ? void 0 : classNames.titleWrapper }), children: [
10918
10918
  iconName && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
10919
10919
  Icon_default,
10920
10920
  {
@@ -10925,7 +10925,7 @@ var Modal = (0, import_react27.forwardRef)((props, ref) => {
10925
10925
  }
10926
10926
  ),
10927
10927
  title && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title })
10928
- ] }),
10928
+ ] }) }),
10929
10929
  showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Icon_default, { name: "close", className: slots.closeIcon({ class: classNames == null ? void 0 : classNames.closeIcon }), onClick: onCancel }),
10930
10930
  typeof content === "string" ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.content({ class: classNames == null ? void 0 : classNames.content }), children: content }) : content,
10931
10931
  (cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.footerWrapper({ class: classNames == null ? void 0 : classNames.footerWrapper }), children: [
package/dist/index.mjs CHANGED
@@ -18,10 +18,10 @@ import {
18
18
  } from "./chunk-LJSGQO4B.mjs";
19
19
  import "./chunk-ZMOAFSYE.mjs";
20
20
  import "./chunk-WSIADHVC.mjs";
21
- import "./chunk-OLQOLLKG.mjs";
21
+ import "./chunk-LVFI2NOH.mjs";
22
22
  import {
23
- starRating_default
24
- } from "./chunk-EIVSXVP5.mjs";
23
+ switch_default
24
+ } from "./chunk-CBIV6KFQ.mjs";
25
25
  import "./chunk-3MY6LO7N.mjs";
26
26
  import {
27
27
  tabs_default
@@ -34,17 +34,17 @@ import "./chunk-MV2WCFK7.mjs";
34
34
  import {
35
35
  slider_default
36
36
  } from "./chunk-OK34FKBQ.mjs";
37
- import "./chunk-LVFI2NOH.mjs";
37
+ import "./chunk-OLQOLLKG.mjs";
38
38
  import {
39
- switch_default
40
- } from "./chunk-CBIV6KFQ.mjs";
39
+ starRating_default
40
+ } from "./chunk-EIVSXVP5.mjs";
41
41
  import "./chunk-DX3KXNP6.mjs";
42
42
  import {
43
43
  definition_table_default
44
44
  } from "./chunk-4V5D237Z.mjs";
45
45
  import {
46
46
  table_default
47
- } from "./chunk-ONFHQWEZ.mjs";
47
+ } from "./chunk-73ROORZV.mjs";
48
48
  import "./chunk-QCEKPS7U.mjs";
49
49
  import {
50
50
  select_default
@@ -66,13 +66,13 @@ import {
66
66
  import "./chunk-NNVGYR5T.mjs";
67
67
  import {
68
68
  useGlobalModal
69
- } from "./chunk-LOBVYG4E.mjs";
69
+ } from "./chunk-HKLKWHOE.mjs";
70
70
  import {
71
71
  GlobalModalProvider
72
- } from "./chunk-LC6ZEL7L.mjs";
72
+ } from "./chunk-GPQDI4VB.mjs";
73
73
  import {
74
74
  modal_default
75
- } from "./chunk-HZHMDQHZ.mjs";
75
+ } from "./chunk-QX4BGDC6.mjs";
76
76
  import "./chunk-7B7LRG5J.mjs";
77
77
  import {
78
78
  pagination_default
@@ -80,7 +80,7 @@ import {
80
80
  import "./chunk-F3HENRVM.mjs";
81
81
  import {
82
82
  datePicker_default
83
- } from "./chunk-3STWFJVX.mjs";
83
+ } from "./chunk-FQMA47EO.mjs";
84
84
  import {
85
85
  day_default
86
86
  } from "./chunk-DI7QXTYZ.mjs";
@@ -91,15 +91,17 @@ import {
91
91
  } from "./chunk-HKF5BNPX.mjs";
92
92
  import {
93
93
  listItem_default
94
- } from "./chunk-DJZHJNYH.mjs";
95
- import "./chunk-QZ3LVYJW.mjs";
94
+ } from "./chunk-PCWANNZ4.mjs";
95
+ import "./chunk-3OCNT22V.mjs";
96
96
  import {
97
- checkbox_default
98
- } from "./chunk-2HYBU7NH.mjs";
99
- import "./chunk-MGEWSREV.mjs";
97
+ circularProgress_default
98
+ } from "./chunk-3QZPVRM5.mjs";
100
99
  import {
101
- chip_default
102
- } from "./chunk-PXUYPS6M.mjs";
100
+ radarChart_default
101
+ } from "./chunk-BBCJTXGU.mjs";
102
+ import {
103
+ simpleBarChart_default
104
+ } from "./chunk-VO2ZIGIK.mjs";
103
105
  import "./chunk-32GA3YW4.mjs";
104
106
  import {
105
107
  drawer_default
@@ -116,15 +118,37 @@ import "./chunk-2GCSFWHD.mjs";
116
118
  import {
117
119
  input_default
118
120
  } from "./chunk-HJ2RUGGG.mjs";
119
- import "./chunk-7DLOYKVC.mjs";
121
+ import "./chunk-QZ3LVYJW.mjs";
120
122
  import {
121
- avatar_default
122
- } from "./chunk-3N442F6I.mjs";
123
+ checkbox_default
124
+ } from "./chunk-2HYBU7NH.mjs";
125
+ import "./chunk-MGEWSREV.mjs";
126
+ import {
127
+ chip_default
128
+ } from "./chunk-PXUYPS6M.mjs";
129
+ import {
130
+ areaChart_default
131
+ } from "./chunk-M7V5YMM2.mjs";
132
+ import "./chunk-DQRAFUDA.mjs";
133
+ import {
134
+ scrollArea_default
135
+ } from "./chunk-EWS3FESG.mjs";
136
+ import {
137
+ BarChartTooltip,
138
+ barChart_default
139
+ } from "./chunk-NJWXYTBQ.mjs";
140
+ import "./chunk-SE5TU755.mjs";
141
+ import {
142
+ backdrop_default
143
+ } from "./chunk-P4GNXDMO.mjs";
123
144
  import "./chunk-KYIODWXL.mjs";
124
145
  import {
125
146
  breadcrumb_default
126
- } from "./chunk-CVDI2GQ2.mjs";
147
+ } from "./chunk-DEKPVTFX.mjs";
127
148
  import "./chunk-MY5U63QO.mjs";
149
+ import {
150
+ text_button_default
151
+ } from "./chunk-BTAOTEW7.mjs";
128
152
  import {
129
153
  button_group_default
130
154
  } from "./chunk-67DEFPS6.mjs";
@@ -142,32 +166,7 @@ import {
142
166
  Icon_default,
143
167
  iconTemplate
144
168
  } from "./chunk-A6UUVHC6.mjs";
145
- import {
146
- text_button_default
147
- } from "./chunk-BTAOTEW7.mjs";
148
169
  import "./chunk-ROG3BOMM.mjs";
149
- import "./chunk-AOU4QX7H.mjs";
150
- import "./chunk-3OCNT22V.mjs";
151
- import {
152
- radarChart_default
153
- } from "./chunk-BBCJTXGU.mjs";
154
- import {
155
- simpleBarChart_default
156
- } from "./chunk-VO2ZIGIK.mjs";
157
- import {
158
- areaChart_default
159
- } from "./chunk-M7V5YMM2.mjs";
160
- import "./chunk-DQRAFUDA.mjs";
161
- import {
162
- scrollArea_default
163
- } from "./chunk-EWS3FESG.mjs";
164
- import {
165
- BarChartTooltip,
166
- barChart_default
167
- } from "./chunk-NJWXYTBQ.mjs";
168
- import {
169
- circularProgress_default
170
- } from "./chunk-3QZPVRM5.mjs";
171
170
  import "./chunk-NMSDSEBD.mjs";
172
171
  import {
173
172
  accordion_default
@@ -175,10 +174,11 @@ import {
175
174
  import {
176
175
  accordionItem_default
177
176
  } from "./chunk-NKYNCXOU.mjs";
178
- import "./chunk-SE5TU755.mjs";
177
+ import "./chunk-7DLOYKVC.mjs";
179
178
  import {
180
- backdrop_default
181
- } from "./chunk-P4GNXDMO.mjs";
179
+ avatar_default
180
+ } from "./chunk-3N442F6I.mjs";
181
+ import "./chunk-AOU4QX7H.mjs";
182
182
  import "./chunk-3V4HT2K5.mjs";
183
183
  import "./chunk-27Y6K5NK.mjs";
184
184
  import "./chunk-E3G5QXSH.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepnoid/ui",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- Icon_default
4
- } from "./chunk-A6UUVHC6.mjs";
5
2
  import {
6
3
  text_button_default
7
4
  } from "./chunk-BTAOTEW7.mjs";
5
+ import {
6
+ Icon_default
7
+ } from "./chunk-A6UUVHC6.mjs";
8
8
  import {
9
9
  tv
10
10
  } from "./chunk-DPWUIAVC.mjs";
@@ -9,6 +9,9 @@ import {
9
9
  import {
10
10
  input_default
11
11
  } from "./chunk-HJ2RUGGG.mjs";
12
+ import {
13
+ text_button_default
14
+ } from "./chunk-BTAOTEW7.mjs";
12
15
  import {
13
16
  button_default
14
17
  } from "./chunk-JXIQOVRO.mjs";
@@ -18,9 +21,6 @@ import {
18
21
  import {
19
22
  Icon_default
20
23
  } from "./chunk-A6UUVHC6.mjs";
21
- import {
22
- text_button_default
23
- } from "./chunk-BTAOTEW7.mjs";
24
24
  import {
25
25
  mapPropsVariants
26
26
  } from "./chunk-E3G5QXSH.mjs";
@@ -1,10 +1,10 @@
1
1
  "use client";
2
- import {
3
- avatar_default
4
- } from "./chunk-3N442F6I.mjs";
5
2
  import {
6
3
  Icon_default
7
4
  } from "./chunk-A6UUVHC6.mjs";
5
+ import {
6
+ avatar_default
7
+ } from "./chunk-3N442F6I.mjs";
8
8
  import {
9
9
  mapPropsVariants
10
10
  } from "./chunk-E3G5QXSH.mjs";