@vuer-ai/vuer-uikit 0.0.82 → 0.0.84

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 (37) hide show
  1. package/dist/{chunk-G2U3V4VA.cjs → chunk-2ZBQXVNV.cjs} +53 -17
  2. package/dist/{chunk-3WSKU4Q4.mjs → chunk-3M2Y6VIW.mjs} +55 -19
  3. package/dist/{chunk-W4CDQ2RJ.mjs → chunk-556XSWKR.mjs} +3 -3
  4. package/dist/{chunk-4LT6ESYQ.cjs → chunk-5MIKF753.cjs} +8 -7
  5. package/dist/{chunk-KSXW76L2.mjs → chunk-7VYMOW2I.mjs} +8 -7
  6. package/dist/{chunk-RM7E3WGH.cjs → chunk-DFJQXQ7Q.cjs} +3 -3
  7. package/dist/{chunk-PTO3XF2K.mjs → chunk-OZPCCMGQ.mjs} +2 -2
  8. package/dist/{chunk-ZMOTCTTP.cjs → chunk-WMYO3VA4.cjs} +2 -2
  9. package/dist/index.cjs +38 -38
  10. package/dist/index.mjs +10 -10
  11. package/dist/ui/UIKitBadge.cjs +5 -5
  12. package/dist/ui/UIKitBadge.mjs +1 -1
  13. package/dist/ui/badge.d.cts +1 -1
  14. package/dist/ui/badge.d.ts +1 -1
  15. package/dist/ui/index.cjs +38 -38
  16. package/dist/ui/index.mjs +10 -10
  17. package/dist/ui/inputs/index.cjs +5 -5
  18. package/dist/ui/inputs/index.mjs +1 -1
  19. package/dist/ui/inputs/input.d.cts +1 -1
  20. package/dist/ui/inputs/input.d.ts +1 -1
  21. package/dist/ui/layouts/index.cjs +2 -2
  22. package/dist/ui/layouts/index.mjs +2 -2
  23. package/dist/ui/select.d.cts +1 -1
  24. package/dist/ui/select.d.ts +1 -1
  25. package/dist/ui/textarea.d.cts +1 -1
  26. package/dist/ui/textarea.d.ts +1 -1
  27. package/dist/ui/tree-view/TreeSearchBar.cjs +2 -2
  28. package/dist/ui/tree-view/TreeSearchBar.mjs +1 -1
  29. package/dist/ui/tree-view/TreeView.cjs +3 -3
  30. package/dist/ui/tree-view/TreeView.d.cts +4 -4
  31. package/dist/ui/tree-view/TreeView.d.ts +4 -4
  32. package/dist/ui/tree-view/TreeView.mjs +1 -1
  33. package/dist/ui/tree-view/index.cjs +5 -5
  34. package/dist/ui/tree-view/index.mjs +2 -2
  35. package/dist/ui/waterfall/index.cjs +7 -3
  36. package/dist/ui/waterfall/index.mjs +6 -2
  37. package/package.json +1 -1
@@ -8,10 +8,12 @@ var chunkTUYG6BYZ_cjs = require('./chunk-TUYG6BYZ.cjs');
8
8
  var chunkYXFHJKNW_cjs = require('./chunk-YXFHJKNW.cjs');
9
9
  var chunk5MNZYCN2_cjs = require('./chunk-5MNZYCN2.cjs');
10
10
  var chunkZ6UDRPC2_cjs = require('./chunk-Z6UDRPC2.cjs');
11
+ var chunkDFJQXQ7Q_cjs = require('./chunk-DFJQXQ7Q.cjs');
12
+ var chunk5MIKF753_cjs = require('./chunk-5MIKF753.cjs');
13
+ var chunkSYXRPCBO_cjs = require('./chunk-SYXRPCBO.cjs');
11
14
  var chunk2J75MYQA_cjs = require('./chunk-2J75MYQA.cjs');
12
15
  var chunkLP3AGGRK_cjs = require('./chunk-LP3AGGRK.cjs');
13
16
  var chunkG2ZYONQO_cjs = require('./chunk-G2ZYONQO.cjs');
14
- var chunkD4W2G6CY_cjs = require('./chunk-D4W2G6CY.cjs');
15
17
  var chunkLCCNBVKZ_cjs = require('./chunk-LCCNBVKZ.cjs');
16
18
  var chunkVBBJSIY7_cjs = require('./chunk-VBBJSIY7.cjs');
17
19
  var chunkG4FJGNY5_cjs = require('./chunk-G4FJGNY5.cjs');
@@ -36,9 +38,26 @@ function Waterfall({
36
38
  }) {
37
39
  const [visibleLogData, setVisibleLogData] = react.useState([]);
38
40
  const [temporalMarkers, setTemporalMarkers] = react.useState([]);
41
+ const [searchQuery, setSearchQuery] = react.useState("");
42
+ const [isCaseSensitive, setIsCaseSensitive] = react.useState(false);
43
+ const [isRegex, setIsRegex] = react.useState(false);
39
44
  const internalTimelineState = chunkWJL5HMO6_cjs.useTimelineState(logData);
40
45
  const hoveredId = externalHoveredId ?? internalTimelineState.hoveredId;
41
46
  const setHoveredId = externalOnItemHover ?? internalTimelineState.setHoveredId;
47
+ const { visibleData, expandedItems, toggleItem, hasDescendants, dataWithMeta } = chunkSYXRPCBO_cjs.useTreeState({
48
+ data: logData,
49
+ defaultExpanded: true
50
+ });
51
+ const { filteredData, searchResultsCount, isRegexValid, renderLabel, hasActiveSearch } = chunkSYXRPCBO_cjs.useTreeSearch({
52
+ data: logData,
53
+ searchQuery,
54
+ isCaseSensitive,
55
+ isRegex
56
+ });
57
+ react.useEffect(() => {
58
+ const dataToUse = hasActiveSearch ? dataWithMeta.filter((item) => filteredData.some((f) => f.id === item.id)) : visibleData;
59
+ setVisibleLogData(dataToUse);
60
+ }, [filteredData, visibleData, dataWithMeta, hasActiveSearch]);
42
61
  const {
43
62
  viewStart,
44
63
  viewDuration,
@@ -63,29 +82,46 @@ function Waterfall({
63
82
  "div",
64
83
  {
65
84
  className: chunkOHIB3TEN_cjs.cn(
66
- "bg-bg-primary text-text-primary rounded-uk-md border-line-primary/50 mx-auto flex w-full flex-col overflow-hidden border font-sans shadow-[0_4px_16px_0_var(--color-shadow-secondary)]",
85
+ "bg-bg-primary text-text-primary rounded-uk-md border-line-primary/50",
86
+ "mx-auto flex w-full flex-col overflow-hidden border font-sans",
87
+ "shadow-[0_4px_16px_0_var(--color-shadow-secondary)]",
67
88
  className
68
89
  ),
69
90
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex h-full flex-row items-stretch", children: [
70
- /* @__PURE__ */ jsxRuntime.jsx(
91
+ /* @__PURE__ */ jsxRuntime.jsxs(
71
92
  "div",
72
93
  {
73
94
  className: "border-line-primary/50 relative flex h-full flex-none flex-col border-r",
74
95
  style: { width: panelWidth },
75
- children: /* @__PURE__ */ jsxRuntime.jsx(
76
- chunkD4W2G6CY_cjs.TreeView,
77
- {
78
- className: "h-full",
79
- alwaysShowExpand: true,
80
- isSearchable: true,
81
- data: logData,
82
- getIcon,
83
- onVisibleDataChange: setVisibleLogData,
84
- onItemHover: setHoveredId,
85
- hoveredId,
86
- useSyncScroll: true
87
- }
88
- )
96
+ children: [
97
+ /* @__PURE__ */ jsxRuntime.jsx(
98
+ chunkDFJQXQ7Q_cjs.TreeSearchBar,
99
+ {
100
+ className: "p-1",
101
+ searchQuery,
102
+ setSearchQuery,
103
+ isCaseSensitive,
104
+ setIsCaseSensitive,
105
+ isRegex,
106
+ setIsRegex,
107
+ isRegexValid,
108
+ searchResultsCount
109
+ }
110
+ ),
111
+ /* @__PURE__ */ jsxRuntime.jsx(chunkVBBJSIY7_cjs.SyncScroll, { className: "flex-1 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(
112
+ chunk5MIKF753_cjs.TreeView,
113
+ {
114
+ data: hasActiveSearch ? dataWithMeta.filter((item) => filteredData.some((f) => f.id === item.id)) : visibleData,
115
+ getIcon,
116
+ expandedItems,
117
+ onToggleItem: toggleItem,
118
+ onItemHover: setHoveredId,
119
+ hoveredId,
120
+ hasDescendants,
121
+ renderLabel
122
+ }
123
+ ) })
124
+ ]
89
125
  }
90
126
  ),
91
127
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -6,15 +6,17 @@ import { TimelineEvent } from './chunk-N6DSPSMM.mjs';
6
6
  import { TimelineProcessBar } from './chunk-CO6EASQO.mjs';
7
7
  import { LeftWedge, RightWedge } from './chunk-IR334P7F.mjs';
8
8
  import { WheelZoomContext } from './chunk-CIPI2V54.mjs';
9
+ import { TreeSearchBar } from './chunk-556XSWKR.mjs';
10
+ import { TreeView } from './chunk-7VYMOW2I.mjs';
11
+ import { useTreeState, useTreeSearch } from './chunk-BWBBQCG2.mjs';
9
12
  import { CursorOverlay } from './chunk-SA5WKLYB.mjs';
10
13
  import { NavigationControls } from './chunk-5EXV5EWF.mjs';
11
14
  import { rightWedgeClasses, leftWedgeClasses, TOTAL_DURATION } from './chunk-4U232QAX.mjs';
12
- import { TreeView } from './chunk-OEM5OJDP.mjs';
13
15
  import { TooltipProvider } from './chunk-PCSY5IJ2.mjs';
14
- import { SyncDragY, SyncScrollSlave } from './chunk-BEJIZ56L.mjs';
16
+ import { SyncScroll, SyncDragY, SyncScrollSlave } from './chunk-BEJIZ56L.mjs';
15
17
  import { SyncScrollProvider } from './chunk-SAGQV2YZ.mjs';
16
18
  import { cn } from './chunk-HMN4IKTG.mjs';
17
- import { useState } from 'react';
19
+ import { useState, useEffect } from 'react';
18
20
  import { jsx, jsxs } from 'react/jsx-runtime';
19
21
 
20
22
  function Waterfall({
@@ -34,9 +36,26 @@ function Waterfall({
34
36
  }) {
35
37
  const [visibleLogData, setVisibleLogData] = useState([]);
36
38
  const [temporalMarkers, setTemporalMarkers] = useState([]);
39
+ const [searchQuery, setSearchQuery] = useState("");
40
+ const [isCaseSensitive, setIsCaseSensitive] = useState(false);
41
+ const [isRegex, setIsRegex] = useState(false);
37
42
  const internalTimelineState = useTimelineState(logData);
38
43
  const hoveredId = externalHoveredId ?? internalTimelineState.hoveredId;
39
44
  const setHoveredId = externalOnItemHover ?? internalTimelineState.setHoveredId;
45
+ const { visibleData, expandedItems, toggleItem, hasDescendants, dataWithMeta } = useTreeState({
46
+ data: logData,
47
+ defaultExpanded: true
48
+ });
49
+ const { filteredData, searchResultsCount, isRegexValid, renderLabel, hasActiveSearch } = useTreeSearch({
50
+ data: logData,
51
+ searchQuery,
52
+ isCaseSensitive,
53
+ isRegex
54
+ });
55
+ useEffect(() => {
56
+ const dataToUse = hasActiveSearch ? dataWithMeta.filter((item) => filteredData.some((f) => f.id === item.id)) : visibleData;
57
+ setVisibleLogData(dataToUse);
58
+ }, [filteredData, visibleData, dataWithMeta, hasActiveSearch]);
40
59
  const {
41
60
  viewStart,
42
61
  viewDuration,
@@ -61,29 +80,46 @@ function Waterfall({
61
80
  "div",
62
81
  {
63
82
  className: cn(
64
- "bg-bg-primary text-text-primary rounded-uk-md border-line-primary/50 mx-auto flex w-full flex-col overflow-hidden border font-sans shadow-[0_4px_16px_0_var(--color-shadow-secondary)]",
83
+ "bg-bg-primary text-text-primary rounded-uk-md border-line-primary/50",
84
+ "mx-auto flex w-full flex-col overflow-hidden border font-sans",
85
+ "shadow-[0_4px_16px_0_var(--color-shadow-secondary)]",
65
86
  className
66
87
  ),
67
88
  children: /* @__PURE__ */ jsxs("div", { className: "relative flex h-full flex-row items-stretch", children: [
68
- /* @__PURE__ */ jsx(
89
+ /* @__PURE__ */ jsxs(
69
90
  "div",
70
91
  {
71
92
  className: "border-line-primary/50 relative flex h-full flex-none flex-col border-r",
72
93
  style: { width: panelWidth },
73
- children: /* @__PURE__ */ jsx(
74
- TreeView,
75
- {
76
- className: "h-full",
77
- alwaysShowExpand: true,
78
- isSearchable: true,
79
- data: logData,
80
- getIcon,
81
- onVisibleDataChange: setVisibleLogData,
82
- onItemHover: setHoveredId,
83
- hoveredId,
84
- useSyncScroll: true
85
- }
86
- )
94
+ children: [
95
+ /* @__PURE__ */ jsx(
96
+ TreeSearchBar,
97
+ {
98
+ className: "p-1",
99
+ searchQuery,
100
+ setSearchQuery,
101
+ isCaseSensitive,
102
+ setIsCaseSensitive,
103
+ isRegex,
104
+ setIsRegex,
105
+ isRegexValid,
106
+ searchResultsCount
107
+ }
108
+ ),
109
+ /* @__PURE__ */ jsx(SyncScroll, { className: "flex-1 overflow-y-auto", children: /* @__PURE__ */ jsx(
110
+ TreeView,
111
+ {
112
+ data: hasActiveSearch ? dataWithMeta.filter((item) => filteredData.some((f) => f.id === item.id)) : visibleData,
113
+ getIcon,
114
+ expandedItems,
115
+ onToggleItem: toggleItem,
116
+ onItemHover: setHoveredId,
117
+ hoveredId,
118
+ hasDescendants,
119
+ renderLabel
120
+ }
121
+ ) })
122
+ ]
87
123
  }
88
124
  ),
89
125
  /* @__PURE__ */ jsxs(
@@ -16,12 +16,12 @@ function TreeSearchBar({
16
16
  className
17
17
  }) {
18
18
  return /* @__PURE__ */ jsxs("div", { className: cn("shrink-0", className), children: [
19
- /* @__PURE__ */ jsx("div", { className: "flex items-center gap-1 py-1", children: /* @__PURE__ */ jsxs(
19
+ /* @__PURE__ */ jsxs(
20
20
  InputRoot,
21
21
  {
22
22
  type: "text",
23
23
  placeholder: "Search...",
24
- size: "md",
24
+ size: "sm",
25
25
  className: "flex-1",
26
26
  inputClassName: cn(!isRegexValid && "text-red-500"),
27
27
  value: searchQuery,
@@ -57,7 +57,7 @@ function TreeSearchBar({
57
57
  ] }) })
58
58
  ]
59
59
  }
60
- ) }),
60
+ ),
61
61
  searchQuery && isRegexValid && /* @__PURE__ */ jsx("div", { className: "flex justify-end px-2 pb-1", children: /* @__PURE__ */ jsxs("span", { className: "text-uk-xs text-text-secondary", children: [
62
62
  searchResultsCount,
63
63
  " result",
@@ -46,7 +46,7 @@ function TreeEntryItem({
46
46
  isSelectable,
47
47
  selectedItemId,
48
48
  onSelectChange,
49
- expandedItems = /* @__PURE__ */ new Set(),
49
+ expandedItems,
50
50
  toggleItem = () => {
51
51
  },
52
52
  hideExpand = false,
@@ -112,8 +112,8 @@ function TreeEntryItem({
112
112
  className: "text-uk-md z-10 flex w-full items-center justify-between gap-2 px-2 whitespace-nowrap",
113
113
  style: { paddingLeft: `${indent * 1.25 + 0.5}rem` },
114
114
  children: [
115
- /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
116
- !hideExpand && hasDescendants(item.id) && expandedItems && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
115
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-1", children: [
116
+ !hideExpand && hasDescendants(item.id) ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
117
117
  /* @__PURE__ */ jsxRuntime.jsx(
118
118
  "button",
119
119
  {
@@ -126,7 +126,8 @@ function TreeEntryItem({
126
126
  lucideReact.ChevronDown,
127
127
  {
128
128
  className: chunkOHIB3TEN_cjs.cn(
129
- "size-4 -rotate-90 transition-transform",
129
+ "size-4 transition-transform",
130
+ expandedItems && !expandedItems?.has(item.id) && "-rotate-90",
130
131
  item.disable && "text-icon-tertiary"
131
132
  )
132
133
  }
@@ -140,7 +141,7 @@ function TreeEntryItem({
140
141
  "flex size-4 items-center justify-center",
141
142
  item.disable && "text-icon-tertiary"
142
143
  ),
143
- children: getIcon(item)
144
+ children: getIcon(item, expandedItems?.has?.(item.id))
144
145
  }
145
146
  )
146
147
  ] }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex size-4 items-center justify-center", children: [
@@ -157,7 +158,7 @@ function TreeEntryItem({
157
158
  {
158
159
  className: chunkOHIB3TEN_cjs.cn(
159
160
  "size-4 transition-transform",
160
- expandedItems && !expandedItems.has(item.id) && "-rotate-90",
161
+ expandedItems && !expandedItems?.has(item.id) && "-rotate-90",
161
162
  item.disable && "text-icon-tertiary"
162
163
  )
163
164
  }
@@ -172,7 +173,7 @@ function TreeEntryItem({
172
173
  item.isCollapsible && "group-hover:opacity-0",
173
174
  item.disable && "text-icon-tertiary"
174
175
  ),
175
- children: getIcon(item)
176
+ children: getIcon(item, expandedItems?.has(item.id))
176
177
  }
177
178
  )
178
179
  ] }),
@@ -44,7 +44,7 @@ function TreeEntryItem({
44
44
  isSelectable,
45
45
  selectedItemId,
46
46
  onSelectChange,
47
- expandedItems = /* @__PURE__ */ new Set(),
47
+ expandedItems,
48
48
  toggleItem = () => {
49
49
  },
50
50
  hideExpand = false,
@@ -110,8 +110,8 @@ function TreeEntryItem({
110
110
  className: "text-uk-md z-10 flex w-full items-center justify-between gap-2 px-2 whitespace-nowrap",
111
111
  style: { paddingLeft: `${indent * 1.25 + 0.5}rem` },
112
112
  children: [
113
- /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
114
- !hideExpand && hasDescendants(item.id) && expandedItems && !expandedItems.has(item.id) ? /* @__PURE__ */ jsxs(Fragment, { children: [
113
+ /* @__PURE__ */ jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-1", children: [
114
+ !hideExpand && hasDescendants(item.id) ? /* @__PURE__ */ jsxs(Fragment, { children: [
115
115
  /* @__PURE__ */ jsx(
116
116
  "button",
117
117
  {
@@ -124,7 +124,8 @@ function TreeEntryItem({
124
124
  ChevronDown,
125
125
  {
126
126
  className: cn(
127
- "size-4 -rotate-90 transition-transform",
127
+ "size-4 transition-transform",
128
+ expandedItems && !expandedItems?.has(item.id) && "-rotate-90",
128
129
  item.disable && "text-icon-tertiary"
129
130
  )
130
131
  }
@@ -138,7 +139,7 @@ function TreeEntryItem({
138
139
  "flex size-4 items-center justify-center",
139
140
  item.disable && "text-icon-tertiary"
140
141
  ),
141
- children: getIcon(item)
142
+ children: getIcon(item, expandedItems?.has?.(item.id))
142
143
  }
143
144
  )
144
145
  ] }) : /* @__PURE__ */ jsxs("div", { className: "relative flex size-4 items-center justify-center", children: [
@@ -155,7 +156,7 @@ function TreeEntryItem({
155
156
  {
156
157
  className: cn(
157
158
  "size-4 transition-transform",
158
- expandedItems && !expandedItems.has(item.id) && "-rotate-90",
159
+ expandedItems && !expandedItems?.has(item.id) && "-rotate-90",
159
160
  item.disable && "text-icon-tertiary"
160
161
  )
161
162
  }
@@ -170,7 +171,7 @@ function TreeEntryItem({
170
171
  item.isCollapsible && "group-hover:opacity-0",
171
172
  item.disable && "text-icon-tertiary"
172
173
  ),
173
- children: getIcon(item)
174
+ children: getIcon(item, expandedItems?.has(item.id))
174
175
  }
175
176
  )
176
177
  ] }),
@@ -18,12 +18,12 @@ function TreeSearchBar({
18
18
  className
19
19
  }) {
20
20
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: chunkOHIB3TEN_cjs.cn("shrink-0", className), children: [
21
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-1 py-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
21
+ /* @__PURE__ */ jsxRuntime.jsxs(
22
22
  chunkYQCSEMRB_cjs.InputRoot,
23
23
  {
24
24
  type: "text",
25
25
  placeholder: "Search...",
26
- size: "md",
26
+ size: "sm",
27
27
  className: "flex-1",
28
28
  inputClassName: chunkOHIB3TEN_cjs.cn(!isRegexValid && "text-red-500"),
29
29
  value: searchQuery,
@@ -59,7 +59,7 @@ function TreeSearchBar({
59
59
  ] }) })
60
60
  ]
61
61
  }
62
- ) }),
62
+ ),
63
63
  searchQuery && isRegexValid && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex justify-end px-2 pb-1", children: /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-uk-xs text-text-secondary", children: [
64
64
  searchResultsCount,
65
65
  " result",
@@ -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.79" ;
5
+ var PACKAGE_VERSION = "0.0.84" ;
6
6
  var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
7
- var GIT_HASH = "f59bbbd" ;
7
+ var GIT_HASH = "a811324" ;
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.79" ;
7
+ var PACKAGE_VERSION = "0.0.84" ;
8
8
  var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
9
- var GIT_HASH = "f59bbbd" ;
9
+ var GIT_HASH = "a811324" ;
10
10
  function PackageBadge({
11
11
  className,
12
12
  packageName,
package/dist/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-KFPS5CCR.cjs');
4
- var chunkG2U3V4VA_cjs = require('./chunk-G2U3V4VA.cjs');
4
+ var chunk2ZBQXVNV_cjs = require('./chunk-2ZBQXVNV.cjs');
5
5
  require('./chunk-WJL5HMO6.cjs');
6
6
  require('./chunk-RJ7I6ZQK.cjs');
7
7
  require('./chunk-6TSA7KXX.cjs');
@@ -12,23 +12,20 @@ require('./chunk-5MNZYCN2.cjs');
12
12
  require('./chunk-Z6UDRPC2.cjs');
13
13
  require('./chunk-YJ6X6T5K.cjs');
14
14
  require('./chunk-G5NT42YF.cjs');
15
- var chunkRM7E3WGH_cjs = require('./chunk-RM7E3WGH.cjs');
16
- var chunk4LT6ESYQ_cjs = require('./chunk-4LT6ESYQ.cjs');
15
+ var chunkDFJQXQ7Q_cjs = require('./chunk-DFJQXQ7Q.cjs');
16
+ var chunk5MIKF753_cjs = require('./chunk-5MIKF753.cjs');
17
17
  var chunkSYXRPCBO_cjs = require('./chunk-SYXRPCBO.cjs');
18
18
  require('./chunk-VOTZLQ6J.cjs');
19
19
  require('./chunk-2J75MYQA.cjs');
20
20
  require('./chunk-LP3AGGRK.cjs');
21
21
  var chunkG2ZYONQO_cjs = require('./chunk-G2ZYONQO.cjs');
22
- require('./chunk-4H5EXSBN.cjs');
23
- var chunkA2LWPEGE_cjs = require('./chunk-A2LWPEGE.cjs');
24
- var chunkT737IFFK_cjs = require('./chunk-T737IFFK.cjs');
25
22
  require('./chunk-E6G4MTX3.cjs');
23
+ require('./chunk-WX7SLJUA.cjs');
26
24
  require('./chunk-4AE2TOOL.cjs');
27
25
  var chunkW3J4QTKS_cjs = require('./chunk-W3J4QTKS.cjs');
28
- require('./chunk-WX7SLJUA.cjs');
26
+ require('./chunk-UCRLH44Q.cjs');
29
27
  var chunkKAA4NEHL_cjs = require('./chunk-KAA4NEHL.cjs');
30
28
  var chunkUULSGVNF_cjs = require('./chunk-UULSGVNF.cjs');
31
- require('./chunk-UCRLH44Q.cjs');
32
29
  require('./chunk-LGOEGWMJ.cjs');
33
30
  var chunkVJWZW66V_cjs = require('./chunk-VJWZW66V.cjs');
34
31
  var chunkJM6NBUDT_cjs = require('./chunk-JM6NBUDT.cjs');
@@ -36,6 +33,9 @@ var chunkJD4J3RDN_cjs = require('./chunk-JD4J3RDN.cjs');
36
33
  require('./chunk-KQAZ6BRD.cjs');
37
34
  var chunkZZDIW5JV_cjs = require('./chunk-ZZDIW5JV.cjs');
38
35
  var chunkSBTB5YJV_cjs = require('./chunk-SBTB5YJV.cjs');
36
+ require('./chunk-4H5EXSBN.cjs');
37
+ var chunkA2LWPEGE_cjs = require('./chunk-A2LWPEGE.cjs');
38
+ var chunkT737IFFK_cjs = require('./chunk-T737IFFK.cjs');
39
39
  require('./chunk-65OSA4MM.cjs');
40
40
  require('./chunk-DECFNBXU.cjs');
41
41
  var chunkQBFIZ2VX_cjs = require('./chunk-QBFIZ2VX.cjs');
@@ -51,9 +51,9 @@ var chunkHHP7ZB25_cjs = require('./chunk-HHP7ZB25.cjs');
51
51
  var chunkP3SKSMO7_cjs = require('./chunk-P3SKSMO7.cjs');
52
52
  var chunkQCL6NV6L_cjs = require('./chunk-QCL6NV6L.cjs');
53
53
  var chunk5KPZP63X_cjs = require('./chunk-5KPZP63X.cjs');
54
- var chunkWW3RIVOI_cjs = require('./chunk-WW3RIVOI.cjs');
55
54
  var chunkK6KHDM35_cjs = require('./chunk-K6KHDM35.cjs');
56
55
  var chunkT2RTITL6_cjs = require('./chunk-T2RTITL6.cjs');
56
+ var chunkWW3RIVOI_cjs = require('./chunk-WW3RIVOI.cjs');
57
57
  var chunkMCYFLR4F_cjs = require('./chunk-MCYFLR4F.cjs');
58
58
  var chunkNZOZ3KKM_cjs = require('./chunk-NZOZ3KKM.cjs');
59
59
  var chunk3TZL7ET3_cjs = require('./chunk-3TZL7ET3.cjs');
@@ -81,7 +81,7 @@ var chunkNQVD3ZW4_cjs = require('./chunk-NQVD3ZW4.cjs');
81
81
  var chunkLPVBUX2J_cjs = require('./chunk-LPVBUX2J.cjs');
82
82
  var chunk76V4RD4V_cjs = require('./chunk-76V4RD4V.cjs');
83
83
  var chunkZAP4EHBO_cjs = require('./chunk-ZAP4EHBO.cjs');
84
- var chunkZMOTCTTP_cjs = require('./chunk-ZMOTCTTP.cjs');
84
+ var chunkWMYO3VA4_cjs = require('./chunk-WMYO3VA4.cjs');
85
85
  var chunkGWIACOMY_cjs = require('./chunk-GWIACOMY.cjs');
86
86
  var chunkIJGCH57E_cjs = require('./chunk-IJGCH57E.cjs');
87
87
  var chunk62VCQ2SU_cjs = require('./chunk-62VCQ2SU.cjs');
@@ -116,19 +116,19 @@ require('./chunk-P6DICGAV.cjs');
116
116
 
117
117
  Object.defineProperty(exports, "Waterfall", {
118
118
  enumerable: true,
119
- get: function () { return chunkG2U3V4VA_cjs.Waterfall; }
119
+ get: function () { return chunk2ZBQXVNV_cjs.Waterfall; }
120
120
  });
121
121
  Object.defineProperty(exports, "TreeSearchBar", {
122
122
  enumerable: true,
123
- get: function () { return chunkRM7E3WGH_cjs.TreeSearchBar; }
123
+ get: function () { return chunkDFJQXQ7Q_cjs.TreeSearchBar; }
124
124
  });
125
125
  Object.defineProperty(exports, "TreeEntryItem", {
126
126
  enumerable: true,
127
- get: function () { return chunk4LT6ESYQ_cjs.TreeEntryItem; }
127
+ get: function () { return chunk5MIKF753_cjs.TreeEntryItem; }
128
128
  });
129
129
  Object.defineProperty(exports, "TreeView", {
130
130
  enumerable: true,
131
- get: function () { return chunk4LT6ESYQ_cjs.TreeView; }
131
+ get: function () { return chunk5MIKF753_cjs.TreeView; }
132
132
  });
133
133
  Object.defineProperty(exports, "useTreeSearch", {
134
134
  enumerable: true,
@@ -162,22 +162,6 @@ Object.defineProperty(exports, "rightWedgeClasses", {
162
162
  enumerable: true,
163
163
  get: function () { return chunkG2ZYONQO_cjs.rightWedgeClasses; }
164
164
  });
165
- Object.defineProperty(exports, "MouseCursorAltIcon", {
166
- enumerable: true,
167
- get: function () { return chunkA2LWPEGE_cjs.MouseCursorAltIcon; }
168
- });
169
- Object.defineProperty(exports, "MouseCursorIcon", {
170
- enumerable: true,
171
- get: function () { return chunkA2LWPEGE_cjs.MouseCursorIcon; }
172
- });
173
- Object.defineProperty(exports, "CursorFilledIcon", {
174
- enumerable: true,
175
- get: function () { return chunkT737IFFK_cjs.CursorFilledIcon; }
176
- });
177
- Object.defineProperty(exports, "CursorIcon", {
178
- enumerable: true,
179
- get: function () { return chunkT737IFFK_cjs.CursorIcon; }
180
- });
181
165
  Object.defineProperty(exports, "LiquidLayoutView", {
182
166
  enumerable: true,
183
167
  get: function () { return chunkW3J4QTKS_cjs.LiquidLayoutView; }
@@ -258,6 +242,22 @@ Object.defineProperty(exports, "useDragSelectContext", {
258
242
  enumerable: true,
259
243
  get: function () { return chunkSBTB5YJV_cjs.useDragSelectContext; }
260
244
  });
245
+ Object.defineProperty(exports, "MouseCursorAltIcon", {
246
+ enumerable: true,
247
+ get: function () { return chunkA2LWPEGE_cjs.MouseCursorAltIcon; }
248
+ });
249
+ Object.defineProperty(exports, "MouseCursorIcon", {
250
+ enumerable: true,
251
+ get: function () { return chunkA2LWPEGE_cjs.MouseCursorIcon; }
252
+ });
253
+ Object.defineProperty(exports, "CursorFilledIcon", {
254
+ enumerable: true,
255
+ get: function () { return chunkT737IFFK_cjs.CursorFilledIcon; }
256
+ });
257
+ Object.defineProperty(exports, "CursorIcon", {
258
+ enumerable: true,
259
+ get: function () { return chunkT737IFFK_cjs.CursorIcon; }
260
+ });
261
261
  Object.defineProperty(exports, "KVectorInput", {
262
262
  enumerable: true,
263
263
  get: function () { return chunkQBFIZ2VX_cjs.KVectorInput; }
@@ -310,10 +310,6 @@ Object.defineProperty(exports, "IntInput", {
310
310
  enumerable: true,
311
311
  get: function () { return chunk5KPZP63X_cjs.IntInput; }
312
312
  });
313
- Object.defineProperty(exports, "ColorInput", {
314
- enumerable: true,
315
- get: function () { return chunkWW3RIVOI_cjs.ColorInput; }
316
- });
317
313
  Object.defineProperty(exports, "PresetsInput", {
318
314
  enumerable: true,
319
315
  get: function () { return chunkK6KHDM35_cjs.PresetsInput; }
@@ -322,6 +318,10 @@ Object.defineProperty(exports, "InputNumbers", {
322
318
  enumerable: true,
323
319
  get: function () { return chunkT2RTITL6_cjs.InputNumbers; }
324
320
  });
321
+ Object.defineProperty(exports, "ColorInput", {
322
+ enumerable: true,
323
+ get: function () { return chunkWW3RIVOI_cjs.ColorInput; }
324
+ });
325
325
  Object.defineProperty(exports, "Toaster", {
326
326
  enumerable: true,
327
327
  get: function () { return chunkMCYFLR4F_cjs.Toaster; }
@@ -824,19 +824,19 @@ Object.defineProperty(exports, "PaginationPrevious", {
824
824
  });
825
825
  Object.defineProperty(exports, "GIT_HASH", {
826
826
  enumerable: true,
827
- get: function () { return chunkZMOTCTTP_cjs.GIT_HASH; }
827
+ get: function () { return chunkWMYO3VA4_cjs.GIT_HASH; }
828
828
  });
829
829
  Object.defineProperty(exports, "PACKAGE_VERSION", {
830
830
  enumerable: true,
831
- get: function () { return chunkZMOTCTTP_cjs.PACKAGE_VERSION; }
831
+ get: function () { return chunkWMYO3VA4_cjs.PACKAGE_VERSION; }
832
832
  });
833
833
  Object.defineProperty(exports, "PackageBadge", {
834
834
  enumerable: true,
835
- get: function () { return chunkZMOTCTTP_cjs.PackageBadge; }
835
+ get: function () { return chunkWMYO3VA4_cjs.PackageBadge; }
836
836
  });
837
837
  Object.defineProperty(exports, "UIKitBadge", {
838
838
  enumerable: true,
839
- get: function () { return chunkZMOTCTTP_cjs.UIKitBadge; }
839
+ get: function () { return chunkWMYO3VA4_cjs.UIKitBadge; }
840
840
  });
841
841
  Object.defineProperty(exports, "Avatar", {
842
842
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import './chunk-G3EIVAVR.mjs';
2
- export { Waterfall } from './chunk-3WSKU4Q4.mjs';
2
+ export { Waterfall } from './chunk-3M2Y6VIW.mjs';
3
3
  import './chunk-JWKOW2OV.mjs';
4
4
  import './chunk-VPQ5SSY3.mjs';
5
5
  import './chunk-K22BEXUA.mjs';
@@ -10,23 +10,20 @@ import './chunk-IR334P7F.mjs';
10
10
  import './chunk-CIPI2V54.mjs';
11
11
  import './chunk-WPDU2YYR.mjs';
12
12
  import './chunk-HVVT3D2T.mjs';
13
- export { TreeSearchBar } from './chunk-W4CDQ2RJ.mjs';
14
- export { TreeEntryItem, TreeView } from './chunk-KSXW76L2.mjs';
13
+ export { TreeSearchBar } from './chunk-556XSWKR.mjs';
14
+ export { TreeEntryItem, TreeView } from './chunk-7VYMOW2I.mjs';
15
15
  export { useTreeSearch, useTreeState } from './chunk-BWBBQCG2.mjs';
16
16
  import './chunk-HTAFERCZ.mjs';
17
17
  import './chunk-SA5WKLYB.mjs';
18
18
  import './chunk-5EXV5EWF.mjs';
19
19
  export { TOTAL_DURATION, borderColorClasses, colorClasses, formatDuration, leftWedgeClasses, rightWedgeClasses } from './chunk-4U232QAX.mjs';
20
- import './chunk-5UMTQHTX.mjs';
21
- export { MouseCursorAltIcon, MouseCursorIcon } from './chunk-D2DMH5WY.mjs';
22
- export { CursorFilledIcon, CursorIcon } from './chunk-2MANWDY4.mjs';
23
20
  import './chunk-IGTUE4NW.mjs';
21
+ import './chunk-4QFWMPJZ.mjs';
24
22
  import './chunk-EPRRJR2S.mjs';
25
23
  export { LiquidLayoutView } from './chunk-L26ULDYM.mjs';
26
- import './chunk-4QFWMPJZ.mjs';
24
+ import './chunk-V2IP7UUV.mjs';
27
25
  export { DockLayoutView } from './chunk-5T7MTIHW.mjs';
28
26
  export { DockLayout, DockLayoutBottom, DockLayoutContent, DockLayoutLeft, DockLayoutRight, DockLayoutTop } from './chunk-3LO3AM25.mjs';
29
- import './chunk-V2IP7UUV.mjs';
30
27
  import './chunk-6NK7UMFP.mjs';
31
28
  export { LiquidToggle, ThemeColorToggle, ThemeToggles } from './chunk-COVQAQYO.mjs';
32
29
  export { ThemeProvider, computeTheme, defaultThemes, parseOldTheme, useTheme } from './chunk-7LLDKYND.mjs';
@@ -34,6 +31,9 @@ export { ThemeScript } from './chunk-PQEAXTVY.mjs';
34
31
  import './chunk-KHROZRRE.mjs';
35
32
  export { createSelectable } from './chunk-TVKPO5VK.mjs';
36
33
  export { DragSelectProvider, useDragSelectContext } from './chunk-JBQP2CBI.mjs';
34
+ import './chunk-5UMTQHTX.mjs';
35
+ export { MouseCursorAltIcon, MouseCursorIcon } from './chunk-D2DMH5WY.mjs';
36
+ export { CursorFilledIcon, CursorIcon } from './chunk-2MANWDY4.mjs';
37
37
  import './chunk-FIWBOGQV.mjs';
38
38
  import './chunk-AGRPGNME.mjs';
39
39
  export { KVectorInput } from './chunk-DYFJAD2K.mjs';
@@ -49,9 +49,9 @@ export { EulerInput } from './chunk-IBW26377.mjs';
49
49
  export { VectorInput } from './chunk-U4OZ35J3.mjs';
50
50
  export { InchInput } from './chunk-LKEPALXM.mjs';
51
51
  export { IntInput } from './chunk-ZRYL32TK.mjs';
52
- export { ColorInput } from './chunk-MDBCKCGI.mjs';
53
52
  export { PresetsInput } from './chunk-6VB53UMO.mjs';
54
53
  export { InputNumbers } from './chunk-WU3YZHOP.mjs';
54
+ export { ColorInput } from './chunk-MDBCKCGI.mjs';
55
55
  export { Toaster, toast } from './chunk-EAZQH4IX.mjs';
56
56
  export { ToggleButton, ToggleButtons, toggleButtonHighlightVariants, toggleButtonVariants, toggleButtonsVariants } from './chunk-JRBTIFM6.mjs';
57
57
  export { ToggleGroup, ToggleGroupItem, toggleGroupVariants } from './chunk-ABLQ4QRY.mjs';
@@ -79,7 +79,7 @@ export { Layout } from './chunk-BGYHKHMQ.mjs';
79
79
  export { Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from './chunk-3THWK3HB.mjs';
80
80
  export { Navigation } from './chunk-LG3PNH2P.mjs';
81
81
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from './chunk-NTGUD2JN.mjs';
82
- export { GIT_HASH, PACKAGE_VERSION, PackageBadge, UIKitBadge } from './chunk-PTO3XF2K.mjs';
82
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, UIKitBadge } from './chunk-OZPCCMGQ.mjs';
83
83
  export { Avatar, AvatarFallback, AvatarFallbackRoot, AvatarFallbackSSR, AvatarGroup, AvatarImage, AvatarImageFallback, AvatarImageRoot, AvatarRoot, AvatarSSRFallback } from './chunk-NO35POZW.mjs';
84
84
  export { Badge, badgeVariants } from './chunk-SUSABE24.mjs';
85
85
  export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './chunk-D3IW2NW6.mjs';