@vuer-ai/vuer-uikit 0.0.77 → 0.0.79
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-UHDBWDHS.cjs → chunk-63LX3ILN.cjs} +10 -9
- package/dist/{chunk-3LM4LVYM.mjs → chunk-67FOC7SV.mjs} +10 -9
- package/dist/{chunk-3HERIMKO.mjs → chunk-JNOO5NXB.mjs} +2 -2
- package/dist/{chunk-33ZAFHOY.cjs → chunk-OITJZBFZ.cjs} +2 -2
- package/dist/chunk-WPDU2YYR.mjs +1 -0
- package/dist/chunk-YJ6X6T5K.cjs +2 -0
- package/dist/highlight-cursor/enhanced-components.cjs +8 -8
- package/dist/highlight-cursor/enhanced-components.mjs +3 -3
- package/dist/highlight-cursor/index.cjs +12 -12
- package/dist/highlight-cursor/index.mjs +3 -3
- package/dist/index.cjs +456 -431
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +48 -47
- package/dist/ui/UIKitBadge.cjs +5 -5
- package/dist/ui/UIKitBadge.mjs +1 -1
- package/dist/ui/badge.d.cts +1 -1
- package/dist/ui/badge.d.ts +1 -1
- package/dist/ui/index.cjs +371 -346
- package/dist/ui/index.d.cts +2 -1
- package/dist/ui/index.d.ts +2 -1
- package/dist/ui/index.mjs +47 -46
- package/dist/ui/inputs/index.cjs +18 -18
- package/dist/ui/inputs/index.mjs +4 -4
- package/dist/ui/inputs/input.d.cts +1 -1
- package/dist/ui/inputs/input.d.ts +1 -1
- package/dist/ui/inputs/number-inputs/index.cjs +15 -15
- package/dist/ui/inputs/number-inputs/index.mjs +3 -3
- package/dist/ui/pagination.cjs +9 -9
- package/dist/ui/pagination.mjs +2 -2
- package/dist/ui/select.d.cts +1 -1
- package/dist/ui/select.d.ts +1 -1
- package/dist/ui/sidebar.cjs +26 -26
- package/dist/ui/sidebar.mjs +2 -2
- package/dist/ui/tabs.cjs +6 -6
- package/dist/ui/tabs.mjs +2 -2
- package/dist/ui/textarea.d.cts +1 -1
- package/dist/ui/textarea.d.ts +1 -1
- package/dist/ui/timeline.cjs +4 -4
- package/dist/ui/timeline.mjs +3 -3
- package/dist/ui/tree-view/TreeView.cjs +3 -3
- package/dist/ui/tree-view/TreeView.d.cts +6 -6
- package/dist/ui/tree-view/TreeView.d.ts +6 -6
- package/dist/ui/tree-view/TreeView.mjs +1 -1
- package/dist/ui/tree-view/index.cjs +3 -3
- package/dist/ui/tree-view/index.mjs +1 -1
- package/dist/ui/tree-view-legacy.cjs +6 -6
- package/dist/ui/tree-view-legacy.mjs +2 -2
- package/dist/ui/waterfall/index.cjs +34 -9
- package/dist/ui/waterfall/index.d.cts +3 -1
- package/dist/ui/waterfall/index.d.ts +3 -1
- package/dist/ui/waterfall/index.mjs +9 -8
- package/dist/ui/waterfall/types.cjs +2 -0
- package/dist/ui/waterfall/types.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-6E4NTY34.cjs +0 -494
- package/dist/chunk-7644AY3P.cjs +0 -855
- package/dist/chunk-AOAM6HV2.mjs +0 -94
- package/dist/chunk-CSSMBHBD.mjs +0 -853
- package/dist/chunk-CW6FHIAT.cjs +0 -624
- package/dist/chunk-D5YKZOUG.mjs +0 -247
- package/dist/chunk-HOJOWLJT.mjs +0 -142
- package/dist/chunk-HTHCG2AN.cjs +0 -125
- package/dist/chunk-IZJYFVS7.mjs +0 -15
- package/dist/chunk-KQXLV6YW.mjs +0 -489
- package/dist/chunk-NEOSSUNE.mjs +0 -599
- package/dist/chunk-TE5JNR5C.mjs +0 -117
- package/dist/chunk-V2OROE7H.cjs +0 -99
- package/dist/chunk-XKIB3LSS.cjs +0 -167
- package/dist/chunk-YPQYI63K.cjs +0 -249
- package/dist/chunk-ZO3X2NDT.cjs +0 -21
- /package/dist/{chunk-MMT74K7A.mjs → chunk-3WSKU4Q4.mjs} +0 -0
- /package/dist/{chunk-E6D3BSYY.cjs → chunk-G2U3V4VA.cjs} +0 -0
|
@@ -46,13 +46,14 @@ function TreeEntryItem({
|
|
|
46
46
|
isSelectable,
|
|
47
47
|
selectedItemId,
|
|
48
48
|
onSelectChange,
|
|
49
|
-
expandedItems,
|
|
50
|
-
toggleItem
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
49
|
+
expandedItems = /* @__PURE__ */ new Set(),
|
|
50
|
+
toggleItem = () => {
|
|
51
|
+
},
|
|
52
|
+
alwaysShowExpand = false,
|
|
53
|
+
hasDescendants = () => false,
|
|
54
|
+
getIcon = () => null,
|
|
55
|
+
renderLabel = (label) => label,
|
|
56
|
+
dataWithMeta = []
|
|
56
57
|
}) {
|
|
57
58
|
const handleItemSelect = () => {
|
|
58
59
|
if (!item.disable && isSelectable && onSelectChange) {
|
|
@@ -112,7 +113,7 @@ function TreeEntryItem({
|
|
|
112
113
|
style: { paddingLeft: `${indent * 1.25 + 0.5}rem` },
|
|
113
114
|
children: [
|
|
114
115
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
|
|
115
|
-
alwaysShowExpand && hasDescendants(item.id) && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
116
|
+
alwaysShowExpand && hasDescendants(item.id) && expandedItems && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
116
117
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
117
118
|
"button",
|
|
118
119
|
{
|
|
@@ -156,7 +157,7 @@ function TreeEntryItem({
|
|
|
156
157
|
{
|
|
157
158
|
className: chunkOHIB3TEN_cjs.cn(
|
|
158
159
|
"size-4 transition-transform",
|
|
159
|
-
!expandedItems.has(item.id) && "-rotate-90",
|
|
160
|
+
expandedItems && !expandedItems.has(item.id) && "-rotate-90",
|
|
160
161
|
item.disable && "text-icon-tertiary"
|
|
161
162
|
)
|
|
162
163
|
}
|
|
@@ -44,13 +44,14 @@ function TreeEntryItem({
|
|
|
44
44
|
isSelectable,
|
|
45
45
|
selectedItemId,
|
|
46
46
|
onSelectChange,
|
|
47
|
-
expandedItems,
|
|
48
|
-
toggleItem
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
47
|
+
expandedItems = /* @__PURE__ */ new Set(),
|
|
48
|
+
toggleItem = () => {
|
|
49
|
+
},
|
|
50
|
+
alwaysShowExpand = false,
|
|
51
|
+
hasDescendants = () => false,
|
|
52
|
+
getIcon = () => null,
|
|
53
|
+
renderLabel = (label) => label,
|
|
54
|
+
dataWithMeta = []
|
|
54
55
|
}) {
|
|
55
56
|
const handleItemSelect = () => {
|
|
56
57
|
if (!item.disable && isSelectable && onSelectChange) {
|
|
@@ -110,7 +111,7 @@ function TreeEntryItem({
|
|
|
110
111
|
style: { paddingLeft: `${indent * 1.25 + 0.5}rem` },
|
|
111
112
|
children: [
|
|
112
113
|
/* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
|
|
113
|
-
alwaysShowExpand && hasDescendants(item.id) && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
114
|
+
alwaysShowExpand && hasDescendants(item.id) && expandedItems && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
114
115
|
/* @__PURE__ */ jsx(
|
|
115
116
|
"button",
|
|
116
117
|
{
|
|
@@ -154,7 +155,7 @@ function TreeEntryItem({
|
|
|
154
155
|
{
|
|
155
156
|
className: cn(
|
|
156
157
|
"size-4 transition-transform",
|
|
157
|
-
!expandedItems.has(item.id) && "-rotate-90",
|
|
158
|
+
expandedItems && !expandedItems.has(item.id) && "-rotate-90",
|
|
158
159
|
item.disable && "text-icon-tertiary"
|
|
159
160
|
)
|
|
160
161
|
}
|
|
@@ -2,9 +2,9 @@ import { cn } from './chunk-HMN4IKTG.mjs';
|
|
|
2
2
|
import { GitBranch } from 'lucide-react';
|
|
3
3
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
4
|
|
|
5
|
-
var PACKAGE_VERSION = "0.0.
|
|
5
|
+
var PACKAGE_VERSION = "0.0.79" ;
|
|
6
6
|
var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
|
|
7
|
-
var GIT_HASH = "
|
|
7
|
+
var GIT_HASH = "cf10ee2" ;
|
|
8
8
|
function PackageBadge({
|
|
9
9
|
className,
|
|
10
10
|
packageName,
|
|
@@ -4,9 +4,9 @@ var chunkOHIB3TEN_cjs = require('./chunk-OHIB3TEN.cjs');
|
|
|
4
4
|
var lucideReact = require('lucide-react');
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
|
|
7
|
-
var PACKAGE_VERSION = "0.0.
|
|
7
|
+
var PACKAGE_VERSION = "0.0.79" ;
|
|
8
8
|
var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
|
|
9
|
-
var GIT_HASH = "
|
|
9
|
+
var GIT_HASH = "cf10ee2" ;
|
|
10
10
|
function PackageBadge({
|
|
11
11
|
className,
|
|
12
12
|
packageName,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var chunk3MINR6DU_cjs = require('../chunk-3MINR6DU.cjs');
|
|
4
|
+
require('../chunk-L6LCOLOV.cjs');
|
|
5
5
|
require('../chunk-7DFI7CUK.cjs');
|
|
6
6
|
require('../chunk-JBMXLVXM.cjs');
|
|
7
7
|
require('../chunk-YQCSEMRB.cjs');
|
|
8
8
|
require('../chunk-NSQOQD43.cjs');
|
|
9
|
+
require('../chunk-T3G35JSP.cjs');
|
|
9
10
|
require('../chunk-WJY6BMVR.cjs');
|
|
10
11
|
require('../chunk-QN4N4I3Z.cjs');
|
|
11
12
|
require('../chunk-Q7E73DVJ.cjs');
|
|
@@ -18,27 +19,26 @@ require('../chunk-RPTRTGC2.cjs');
|
|
|
18
19
|
require('../chunk-LBWMTA5T.cjs');
|
|
19
20
|
require('../chunk-OHIB3TEN.cjs');
|
|
20
21
|
require('../chunk-P6DICGAV.cjs');
|
|
21
|
-
require('../chunk-T3G35JSP.cjs');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
Object.defineProperty(exports, "CursorButton", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunk3MINR6DU_cjs.CursorButton; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "CursorInputRoot", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunk3MINR6DU_cjs.CursorInputRoot; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "CursorSelectTrigger", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunk3MINR6DU_cjs.CursorSelectTrigger; }
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "CursorTabs", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunk3MINR6DU_cjs.CursorTabs; }
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(exports, "CursorTextarea", {
|
|
42
42
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunk3MINR6DU_cjs.CursorTextarea; }
|
|
44
44
|
});
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export { CursorButton, CursorInputRoot, CursorSelectTrigger, CursorTabs, CursorTextarea } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
1
|
+
export { CursorButton, CursorInputRoot, CursorSelectTrigger, CursorTabs, CursorTextarea } from '../chunk-7CTCK26U.mjs';
|
|
2
|
+
import '../chunk-B53A4WNW.mjs';
|
|
3
3
|
import '../chunk-25RDJXX7.mjs';
|
|
4
4
|
import '../chunk-KY4I766B.mjs';
|
|
5
5
|
import '../chunk-JXALL32A.mjs';
|
|
6
6
|
import '../chunk-INHZ5D7P.mjs';
|
|
7
|
+
import '../chunk-XMG3IVGZ.mjs';
|
|
7
8
|
import '../chunk-RAHKRYQJ.mjs';
|
|
8
9
|
import '../chunk-F7ZHPSLA.mjs';
|
|
9
10
|
import '../chunk-3QT5VABC.mjs';
|
|
@@ -16,4 +17,3 @@ import '../chunk-4F2GSF2T.mjs';
|
|
|
16
17
|
import '../chunk-IDUVYPN7.mjs';
|
|
17
18
|
import '../chunk-HMN4IKTG.mjs';
|
|
18
19
|
import '../chunk-3FR3WKI4.mjs';
|
|
19
|
-
import '../chunk-XMG3IVGZ.mjs';
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
require('../chunk-EFZ746FR.cjs');
|
|
4
4
|
var chunkA5LCX2UQ_cjs = require('../chunk-A5LCX2UQ.cjs');
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var chunk3MINR6DU_cjs = require('../chunk-3MINR6DU.cjs');
|
|
6
|
+
require('../chunk-L6LCOLOV.cjs');
|
|
7
7
|
require('../chunk-7DFI7CUK.cjs');
|
|
8
8
|
require('../chunk-JBMXLVXM.cjs');
|
|
9
9
|
require('../chunk-YQCSEMRB.cjs');
|
|
10
10
|
require('../chunk-NSQOQD43.cjs');
|
|
11
|
+
var chunkT3G35JSP_cjs = require('../chunk-T3G35JSP.cjs');
|
|
11
12
|
var chunkWJY6BMVR_cjs = require('../chunk-WJY6BMVR.cjs');
|
|
12
13
|
require('../chunk-QN4N4I3Z.cjs');
|
|
13
14
|
require('../chunk-Q7E73DVJ.cjs');
|
|
@@ -20,7 +21,6 @@ require('../chunk-RPTRTGC2.cjs');
|
|
|
20
21
|
require('../chunk-LBWMTA5T.cjs');
|
|
21
22
|
require('../chunk-OHIB3TEN.cjs');
|
|
22
23
|
require('../chunk-P6DICGAV.cjs');
|
|
23
|
-
var chunkT3G35JSP_cjs = require('../chunk-T3G35JSP.cjs');
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
|
|
@@ -30,29 +30,29 @@ Object.defineProperty(exports, "CursorProvider", {
|
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "CursorButton", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunk3MINR6DU_cjs.CursorButton; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "CursorInputRoot", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunk3MINR6DU_cjs.CursorInputRoot; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "CursorSelectTrigger", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunk3MINR6DU_cjs.CursorSelectTrigger; }
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "CursorTabs", {
|
|
44
44
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
45
|
+
get: function () { return chunk3MINR6DU_cjs.CursorTabs; }
|
|
46
46
|
});
|
|
47
47
|
Object.defineProperty(exports, "CursorTextarea", {
|
|
48
48
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
50
|
-
});
|
|
51
|
-
Object.defineProperty(exports, "withCursor", {
|
|
52
|
-
enumerable: true,
|
|
53
|
-
get: function () { return chunkWJY6BMVR_cjs.withCursor; }
|
|
49
|
+
get: function () { return chunk3MINR6DU_cjs.CursorTextarea; }
|
|
54
50
|
});
|
|
55
51
|
Object.defineProperty(exports, "TabsCursorProvider", {
|
|
56
52
|
enumerable: true,
|
|
57
53
|
get: function () { return chunkT3G35JSP_cjs.TabsCursorProvider; }
|
|
58
54
|
});
|
|
55
|
+
Object.defineProperty(exports, "withCursor", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return chunkWJY6BMVR_cjs.withCursor; }
|
|
58
|
+
});
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import '../chunk-VGCVIHBR.mjs';
|
|
2
2
|
export { CursorProvider } from '../chunk-WWGF6TBZ.mjs';
|
|
3
|
-
export { CursorButton, CursorInputRoot, CursorSelectTrigger, CursorTabs, CursorTextarea } from '../chunk-
|
|
4
|
-
import '../chunk-
|
|
3
|
+
export { CursorButton, CursorInputRoot, CursorSelectTrigger, CursorTabs, CursorTextarea } from '../chunk-7CTCK26U.mjs';
|
|
4
|
+
import '../chunk-B53A4WNW.mjs';
|
|
5
5
|
import '../chunk-25RDJXX7.mjs';
|
|
6
6
|
import '../chunk-KY4I766B.mjs';
|
|
7
7
|
import '../chunk-JXALL32A.mjs';
|
|
8
8
|
import '../chunk-INHZ5D7P.mjs';
|
|
9
|
+
export { TabsCursorProvider } from '../chunk-XMG3IVGZ.mjs';
|
|
9
10
|
export { withCursor } from '../chunk-RAHKRYQJ.mjs';
|
|
10
11
|
import '../chunk-F7ZHPSLA.mjs';
|
|
11
12
|
import '../chunk-3QT5VABC.mjs';
|
|
@@ -18,4 +19,3 @@ import '../chunk-4F2GSF2T.mjs';
|
|
|
18
19
|
import '../chunk-IDUVYPN7.mjs';
|
|
19
20
|
import '../chunk-HMN4IKTG.mjs';
|
|
20
21
|
import '../chunk-3FR3WKI4.mjs';
|
|
21
|
-
export { TabsCursorProvider } from '../chunk-XMG3IVGZ.mjs';
|