@deepnoid/ui 0.1.61 → 0.1.63
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/.turbo/turbo-build.log +182 -187
- package/dist/{chunk-WINX3AKW.mjs → chunk-PMZH6GPQ.mjs} +1 -1
- package/dist/{chunk-HHRKPSO6.mjs → chunk-QX6F6C6X.mjs} +2 -1
- package/dist/{chunk-A6HCKIVP.mjs → chunk-V5T3D6WI.mjs} +3 -3
- package/dist/components/breadcrumb/breadcrumb.mjs +3 -3
- package/dist/components/breadcrumb/index.mjs +3 -3
- package/dist/components/button/index.mjs +6 -6
- package/dist/components/dateTimePicker/dateTimePicker.mjs +3 -3
- package/dist/components/dateTimePicker/index.mjs +3 -3
- package/dist/components/dateTimePicker/timePicker.mjs +2 -2
- package/dist/components/fileUpload/fileUpload.mjs +3 -3
- package/dist/components/fileUpload/index.mjs +3 -3
- package/dist/components/list/index.mjs +3 -3
- package/dist/components/modal/index.mjs +3 -3
- package/dist/components/modal/modal.mjs +3 -3
- package/dist/components/table/definition-table.d.mts +13 -6
- package/dist/components/table/definition-table.d.ts +13 -6
- package/dist/components/table/definition-table.js +99 -12
- package/dist/components/table/definition-table.mjs +2 -1
- package/dist/components/table/index.d.mts +1 -2
- package/dist/components/table/index.d.ts +1 -2
- package/dist/components/table/index.js +12 -41
- package/dist/components/table/index.mjs +6 -10
- package/dist/components/table/table.mjs +2 -2
- package/dist/components/tree/index.js +2 -1
- package/dist/components/tree/index.mjs +1 -1
- package/dist/components/tree/tree.d.mts +6 -0
- package/dist/components/tree/tree.d.ts +6 -0
- package/dist/components/tree/tree.js +2 -1
- package/dist/components/tree/tree.mjs +1 -1
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +329 -357
- package/dist/index.mjs +38 -42
- package/package.json +1 -1
- package/dist/chunk-6TIIBU7J.mjs +0 -35
- package/dist/components/table/definition-table2.d.mts +0 -58
- package/dist/components/table/definition-table2.d.ts +0 -58
- package/dist/components/table/definition-table2.js +0 -438
- package/dist/components/table/definition-table2.mjs +0 -10
- package/dist/{chunk-K65JLBZI.mjs → chunk-DLFXCMUU.mjs} +3 -3
- package/dist/{chunk-DLR42ZKG.mjs → chunk-DX3KXNP6.mjs} +0 -0
- package/dist/{chunk-LKC7AK3H.mjs → chunk-MPATONSK.mjs} +3 -3
- package/dist/{chunk-UEUOHSJ6.mjs → chunk-ORYYC6BI.mjs} +3 -3
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
} from "../../chunk-4T7R3PEH.mjs";
|
|
5
5
|
import "../../chunk-BPEMHZH3.mjs";
|
|
6
6
|
import "../../chunk-P7YYNA6L.mjs";
|
|
7
|
-
import "../../chunk-DQRAFUDA.mjs";
|
|
8
|
-
import "../../chunk-M37VBNB3.mjs";
|
|
9
7
|
import "../../chunk-MZ76AA76.mjs";
|
|
10
8
|
import "../../chunk-6PN3DGOE.mjs";
|
|
9
|
+
import "../../chunk-DQRAFUDA.mjs";
|
|
10
|
+
import "../../chunk-M37VBNB3.mjs";
|
|
11
11
|
import "../../chunk-7B7LRG5J.mjs";
|
|
12
12
|
import "../../chunk-LQEA2HU5.mjs";
|
|
13
13
|
import "../../chunk-F3HENRVM.mjs";
|
|
@@ -4515,7 +4515,7 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
4515
4515
|
]
|
|
4516
4516
|
}
|
|
4517
4517
|
),
|
|
4518
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: slots.
|
|
4518
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: slots.itemWrapper({ class: classNames == null ? void 0 : classNames.itemWrapper }), children: group.data.map((node) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
4519
4519
|
TreeNodeItem,
|
|
4520
4520
|
{
|
|
4521
4521
|
node,
|
|
@@ -4536,6 +4536,7 @@ var treeStyle = tv({
|
|
|
4536
4536
|
slots: {
|
|
4537
4537
|
base: ["border", "border-neutral-light", "rounded-xl", "p-[20px]", "flex", "flex-col", "gap-[20px]", "select-none"],
|
|
4538
4538
|
wrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
4539
|
+
itemWrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
4539
4540
|
node: [
|
|
4540
4541
|
"flex",
|
|
4541
4542
|
"items-center",
|
|
@@ -37,6 +37,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
37
37
|
gap?: tailwind_merge.ClassNameValue;
|
|
38
38
|
base?: tailwind_merge.ClassNameValue;
|
|
39
39
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
40
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
40
41
|
node?: tailwind_merge.ClassNameValue;
|
|
41
42
|
clickable?: tailwind_merge.ClassNameValue;
|
|
42
43
|
};
|
|
@@ -47,6 +48,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
47
48
|
gap?: tailwind_merge.ClassNameValue;
|
|
48
49
|
base?: tailwind_merge.ClassNameValue;
|
|
49
50
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
51
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
50
52
|
node?: tailwind_merge.ClassNameValue;
|
|
51
53
|
clickable?: tailwind_merge.ClassNameValue;
|
|
52
54
|
};
|
|
@@ -54,6 +56,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
54
56
|
} | {}, {
|
|
55
57
|
base: string[];
|
|
56
58
|
wrapper: string[];
|
|
59
|
+
itemWrapper: string[];
|
|
57
60
|
node: string[];
|
|
58
61
|
clickable: string[];
|
|
59
62
|
gap: string[];
|
|
@@ -63,6 +66,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
63
66
|
gap?: tailwind_merge.ClassNameValue;
|
|
64
67
|
base?: tailwind_merge.ClassNameValue;
|
|
65
68
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
69
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
66
70
|
node?: tailwind_merge.ClassNameValue;
|
|
67
71
|
clickable?: tailwind_merge.ClassNameValue;
|
|
68
72
|
};
|
|
@@ -70,12 +74,14 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
70
74
|
} | {}, {
|
|
71
75
|
base: string[];
|
|
72
76
|
wrapper: string[];
|
|
77
|
+
itemWrapper: string[];
|
|
73
78
|
node: string[];
|
|
74
79
|
clickable: string[];
|
|
75
80
|
gap: string[];
|
|
76
81
|
}, tailwind_variants.TVReturnType<unknown, {
|
|
77
82
|
base: string[];
|
|
78
83
|
wrapper: string[];
|
|
84
|
+
itemWrapper: string[];
|
|
79
85
|
node: string[];
|
|
80
86
|
clickable: string[];
|
|
81
87
|
gap: string[];
|
|
@@ -37,6 +37,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
37
37
|
gap?: tailwind_merge.ClassNameValue;
|
|
38
38
|
base?: tailwind_merge.ClassNameValue;
|
|
39
39
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
40
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
40
41
|
node?: tailwind_merge.ClassNameValue;
|
|
41
42
|
clickable?: tailwind_merge.ClassNameValue;
|
|
42
43
|
};
|
|
@@ -47,6 +48,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
47
48
|
gap?: tailwind_merge.ClassNameValue;
|
|
48
49
|
base?: tailwind_merge.ClassNameValue;
|
|
49
50
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
51
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
50
52
|
node?: tailwind_merge.ClassNameValue;
|
|
51
53
|
clickable?: tailwind_merge.ClassNameValue;
|
|
52
54
|
};
|
|
@@ -54,6 +56,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
54
56
|
} | {}, {
|
|
55
57
|
base: string[];
|
|
56
58
|
wrapper: string[];
|
|
59
|
+
itemWrapper: string[];
|
|
57
60
|
node: string[];
|
|
58
61
|
clickable: string[];
|
|
59
62
|
gap: string[];
|
|
@@ -63,6 +66,7 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
63
66
|
gap?: tailwind_merge.ClassNameValue;
|
|
64
67
|
base?: tailwind_merge.ClassNameValue;
|
|
65
68
|
wrapper?: tailwind_merge.ClassNameValue;
|
|
69
|
+
itemWrapper?: tailwind_merge.ClassNameValue;
|
|
66
70
|
node?: tailwind_merge.ClassNameValue;
|
|
67
71
|
clickable?: tailwind_merge.ClassNameValue;
|
|
68
72
|
};
|
|
@@ -70,12 +74,14 @@ declare const treeStyle: tailwind_variants.TVReturnType<{
|
|
|
70
74
|
} | {}, {
|
|
71
75
|
base: string[];
|
|
72
76
|
wrapper: string[];
|
|
77
|
+
itemWrapper: string[];
|
|
73
78
|
node: string[];
|
|
74
79
|
clickable: string[];
|
|
75
80
|
gap: string[];
|
|
76
81
|
}, tailwind_variants.TVReturnType<unknown, {
|
|
77
82
|
base: string[];
|
|
78
83
|
wrapper: string[];
|
|
84
|
+
itemWrapper: string[];
|
|
79
85
|
node: string[];
|
|
80
86
|
clickable: string[];
|
|
81
87
|
gap: string[];
|
|
@@ -4514,7 +4514,7 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
4514
4514
|
]
|
|
4515
4515
|
}
|
|
4516
4516
|
),
|
|
4517
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: slots.
|
|
4517
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: slots.itemWrapper({ class: classNames == null ? void 0 : classNames.itemWrapper }), children: group.data.map((node) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
4518
4518
|
TreeNodeItem,
|
|
4519
4519
|
{
|
|
4520
4520
|
node,
|
|
@@ -4535,6 +4535,7 @@ var treeStyle = tv({
|
|
|
4535
4535
|
slots: {
|
|
4536
4536
|
base: ["border", "border-neutral-light", "rounded-xl", "p-[20px]", "flex", "flex-col", "gap-[20px]", "select-none"],
|
|
4537
4537
|
wrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
4538
|
+
itemWrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
4538
4539
|
node: [
|
|
4539
4540
|
"flex",
|
|
4540
4541
|
"items-center",
|
package/dist/index.d.mts
CHANGED
|
@@ -9,8 +9,7 @@ export { default as Input } from './components/input/input.mjs';
|
|
|
9
9
|
export { default as Tabs, TabsDataType } from './components/tabs/tabs.mjs';
|
|
10
10
|
export { default as Textarea } from './components/textarea/textarea.mjs';
|
|
11
11
|
export { default as Table, TableColumn, TableRow } from './components/table/table.mjs';
|
|
12
|
-
export { default as DefinitionTable } from './components/table/definition-table.mjs';
|
|
13
|
-
export { default as DefinitionTable2, TableRow as TableRow2, TableRowCell } from './components/table/definition-table2.mjs';
|
|
12
|
+
export { default as DefinitionTable, DefinitionTableRow, DefinitionTableRowCell } from './components/table/definition-table.mjs';
|
|
14
13
|
export { default as Select, SelectOption, SelectProps } from './components/select/select.mjs';
|
|
15
14
|
export { default as CheckBox } from './components/checkbox/checkbox.mjs';
|
|
16
15
|
export { default as Chip } from './components/chip/chip.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -9,8 +9,7 @@ export { default as Input } from './components/input/input.js';
|
|
|
9
9
|
export { default as Tabs, TabsDataType } from './components/tabs/tabs.js';
|
|
10
10
|
export { default as Textarea } from './components/textarea/textarea.js';
|
|
11
11
|
export { default as Table, TableColumn, TableRow } from './components/table/table.js';
|
|
12
|
-
export { default as DefinitionTable } from './components/table/definition-table.js';
|
|
13
|
-
export { default as DefinitionTable2, TableRow as TableRow2, TableRowCell } from './components/table/definition-table2.js';
|
|
12
|
+
export { default as DefinitionTable, DefinitionTableRow, DefinitionTableRowCell } from './components/table/definition-table.js';
|
|
14
13
|
export { default as Select, SelectOption, SelectProps } from './components/select/select.js';
|
|
15
14
|
export { default as CheckBox } from './components/checkbox/checkbox.js';
|
|
16
15
|
export { default as Chip } from './components/chip/chip.js';
|