@uipath/apollo-wind 2.31.1 → 2.32.1
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/components/custom/panel-flow.cjs +3 -3
- package/dist/components/custom/panel-flow.d.ts +2 -0
- package/dist/components/custom/panel-flow.js +3 -3
- package/dist/components/forms/field-renderer.cjs +4 -1
- package/dist/components/forms/field-renderer.js +4 -1
- package/dist/components/ui/file-upload.cjs +22 -16
- package/dist/components/ui/file-upload.d.ts +19 -1
- package/dist/components/ui/file-upload.js +22 -16
- package/dist/components/ui/index.cjs +24 -24
- package/dist/components/ui/lockable-value-field/components/field-header.cjs +327 -0
- package/dist/components/ui/lockable-value-field/components/field-header.d.ts +19 -0
- package/dist/components/ui/lockable-value-field/components/field-header.js +293 -0
- package/dist/components/ui/lockable-value-field/components/lock-toggle-button.cjs +67 -0
- package/dist/components/ui/lockable-value-field/components/lock-toggle-button.d.ts +9 -0
- package/dist/components/ui/lockable-value-field/components/lock-toggle-button.js +33 -0
- package/dist/components/ui/lockable-value-field/components/mode-menu-item.cjs +63 -0
- package/dist/components/ui/lockable-value-field/components/mode-menu-item.d.ts +9 -0
- package/dist/components/ui/lockable-value-field/components/mode-menu-item.js +29 -0
- package/dist/components/ui/lockable-value-field/index.cjs +43 -0
- package/dist/components/ui/lockable-value-field/index.d.ts +3 -0
- package/dist/components/ui/lockable-value-field/index.js +3 -0
- package/dist/components/ui/lockable-value-field/lockable-value-field.cjs +264 -0
- package/dist/components/ui/lockable-value-field/lockable-value-field.d.ts +14 -0
- package/dist/components/ui/lockable-value-field/lockable-value-field.js +230 -0
- package/dist/components/ui/lockable-value-field/types.cjs +99 -0
- package/dist/components/ui/lockable-value-field/types.d.ts +78 -0
- package/dist/components/ui/lockable-value-field/types.js +62 -0
- package/dist/components/ui/lockable-value-field/utils.cjs +117 -0
- package/dist/components/ui/lockable-value-field/utils.d.ts +24 -0
- package/dist/components/ui/lockable-value-field/utils.js +68 -0
- package/dist/components/ui/multi-select.cjs +7 -3
- package/dist/components/ui/multi-select.d.ts +4 -0
- package/dist/components/ui/multi-select.js +7 -3
- package/dist/index.cjs +28 -18
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/styles.css +665 -0
- package/dist/tailwind.css +1 -0
- package/package.json +2 -2
|
@@ -30,11 +30,11 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
30
30
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
31
31
|
const external_lucide_react_namespaceObject = require("lucide-react");
|
|
32
32
|
const external_react_namespaceObject = require("react");
|
|
33
|
+
const external_chat_composer_cjs_namespaceObject = require("./chat-composer.cjs");
|
|
33
34
|
const avatar_cjs_namespaceObject = require("../ui/avatar.cjs");
|
|
34
35
|
const collapsible_cjs_namespaceObject = require("../ui/collapsible.cjs");
|
|
35
36
|
const tooltip_cjs_namespaceObject = require("../ui/tooltip.cjs");
|
|
36
37
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
37
|
-
const external_chat_composer_cjs_namespaceObject = require("./chat-composer.cjs");
|
|
38
38
|
function UiPathLogo() {
|
|
39
39
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
40
40
|
className: "flex h-9 w-9 items-center justify-center overflow-clip rounded-lg bg-[#0092b8] shadow-sm",
|
|
@@ -173,7 +173,7 @@ function ToolCard({ card }) {
|
|
|
173
173
|
}),
|
|
174
174
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
175
175
|
className: "flex flex-col gap-3",
|
|
176
|
-
children: card.items.map((item,
|
|
176
|
+
children: card.items.map((item, index)=>{
|
|
177
177
|
const Icon = toolIconMap[item.icon];
|
|
178
178
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
179
179
|
className: "flex items-start gap-2.5 pl-4 pr-9",
|
|
@@ -198,7 +198,7 @@ function ToolCard({ card }) {
|
|
|
198
198
|
]
|
|
199
199
|
})
|
|
200
200
|
]
|
|
201
|
-
},
|
|
201
|
+
}, item.id ?? `${item.icon}-${item.title}-${item.description}-${index}`);
|
|
202
202
|
})
|
|
203
203
|
})
|
|
204
204
|
]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Bot, Brain, ChevronUp, Copy, House, MessageCircle, PanelRightOpen, RefreshCcw, Search, ThumbsDown, ThumbsUp, Workflow } from "lucide-react";
|
|
3
3
|
import { useState } from "react";
|
|
4
|
+
import { ChatComposer } from "./chat-composer.js";
|
|
4
5
|
import { Avatar, AvatarFallback } from "../ui/avatar.js";
|
|
5
6
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "../ui/collapsible.js";
|
|
6
7
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "../ui/tooltip.js";
|
|
7
8
|
import { cn } from "../../lib/index.js";
|
|
8
|
-
import { ChatComposer } from "./chat-composer.js";
|
|
9
9
|
function UiPathLogo() {
|
|
10
10
|
return /*#__PURE__*/ jsx("div", {
|
|
11
11
|
className: "flex h-9 w-9 items-center justify-center overflow-clip rounded-lg bg-[#0092b8] shadow-sm",
|
|
@@ -144,7 +144,7 @@ function ToolCard({ card }) {
|
|
|
144
144
|
}),
|
|
145
145
|
/*#__PURE__*/ jsx("div", {
|
|
146
146
|
className: "flex flex-col gap-3",
|
|
147
|
-
children: card.items.map((item,
|
|
147
|
+
children: card.items.map((item, index)=>{
|
|
148
148
|
const Icon = toolIconMap[item.icon];
|
|
149
149
|
return /*#__PURE__*/ jsxs("div", {
|
|
150
150
|
className: "flex items-start gap-2.5 pl-4 pr-9",
|
|
@@ -169,7 +169,7 @@ function ToolCard({ card }) {
|
|
|
169
169
|
]
|
|
170
170
|
})
|
|
171
171
|
]
|
|
172
|
-
},
|
|
172
|
+
}, item.id ?? `${item.icon}-${item.title}-${item.description}-${index}`);
|
|
173
173
|
})
|
|
174
174
|
})
|
|
175
175
|
]
|
|
@@ -531,12 +531,14 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
|
|
|
531
531
|
}
|
|
532
532
|
function FormField({ children, className = '' }) {
|
|
533
533
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
534
|
-
|
|
534
|
+
"data-slot": "form-field",
|
|
535
|
+
className: (0, index_cjs_namespaceObject.cn)('grid gap-1.5', className),
|
|
535
536
|
children: children
|
|
536
537
|
});
|
|
537
538
|
}
|
|
538
539
|
function FormLabel({ children, required, htmlFor, className = '' }) {
|
|
539
540
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(label_cjs_namespaceObject.Label, {
|
|
541
|
+
"data-slot": "form-label",
|
|
540
542
|
htmlFor: htmlFor,
|
|
541
543
|
className: className,
|
|
542
544
|
children: [
|
|
@@ -551,6 +553,7 @@ function FormLabel({ children, required, htmlFor, className = '' }) {
|
|
|
551
553
|
function FormDescription({ children }) {
|
|
552
554
|
if (!children) return null;
|
|
553
555
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("p", {
|
|
556
|
+
"data-slot": "form-description",
|
|
554
557
|
className: "text-sm text-muted-foreground",
|
|
555
558
|
children: children
|
|
556
559
|
});
|
|
@@ -503,12 +503,14 @@ function FieldByType({ field, formField, error, disabled, required, options }) {
|
|
|
503
503
|
}
|
|
504
504
|
function FormField({ children, className = '' }) {
|
|
505
505
|
return /*#__PURE__*/ jsx("div", {
|
|
506
|
-
|
|
506
|
+
"data-slot": "form-field",
|
|
507
|
+
className: cn('grid gap-1.5', className),
|
|
507
508
|
children: children
|
|
508
509
|
});
|
|
509
510
|
}
|
|
510
511
|
function FormLabel({ children, required, htmlFor, className = '' }) {
|
|
511
512
|
return /*#__PURE__*/ jsxs(Label, {
|
|
513
|
+
"data-slot": "form-label",
|
|
512
514
|
htmlFor: htmlFor,
|
|
513
515
|
className: className,
|
|
514
516
|
children: [
|
|
@@ -523,6 +525,7 @@ function FormLabel({ children, required, htmlFor, className = '' }) {
|
|
|
523
525
|
function FormDescription({ children }) {
|
|
524
526
|
if (!children) return null;
|
|
525
527
|
return /*#__PURE__*/ jsx("p", {
|
|
528
|
+
"data-slot": "form-description",
|
|
526
529
|
className: "text-sm text-muted-foreground",
|
|
527
530
|
children: children
|
|
528
531
|
});
|
|
@@ -32,7 +32,7 @@ const external_lucide_react_namespaceObject = require("lucide-react");
|
|
|
32
32
|
const external_react_namespaceObject = require("react");
|
|
33
33
|
const external_button_cjs_namespaceObject = require("./button.cjs");
|
|
34
34
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
35
|
-
function FileUpload({ onFilesChange, accept, multiple = false, disabled = false, maxSize, className, showPreview = false, errors }) {
|
|
35
|
+
function FileUpload({ id, ariaLabel, onFilesChange, accept, multiple = false, disabled = false, maxSize, className, showPreview = false, errors, onBlur }) {
|
|
36
36
|
const [files, setFiles] = external_react_namespaceObject.useState([]);
|
|
37
37
|
const [isDragging, setIsDragging] = external_react_namespaceObject.useState(false);
|
|
38
38
|
const [fileErrors, setFileErrors] = external_react_namespaceObject.useState(new Map());
|
|
@@ -160,13 +160,29 @@ function FileUpload({ onFilesChange, accept, multiple = false, disabled = false,
|
|
|
160
160
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
161
161
|
return Math.round(bytes / k ** i * 100) / 100 + ' ' + sizes[i];
|
|
162
162
|
};
|
|
163
|
-
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("
|
|
164
|
-
className: (0, index_cjs_namespaceObject.cn)('w-full', className),
|
|
163
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("fieldset", {
|
|
164
|
+
className: (0, index_cjs_namespaceObject.cn)('m-0 min-w-0 w-full border-0 p-0', className),
|
|
165
|
+
onBlur: (event)=>{
|
|
166
|
+
if (!event.currentTarget.contains(event.relatedTarget)) onBlur?.(event);
|
|
167
|
+
},
|
|
165
168
|
children: [
|
|
169
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("input", {
|
|
170
|
+
ref: inputRef,
|
|
171
|
+
id: id,
|
|
172
|
+
type: "file",
|
|
173
|
+
className: "hidden",
|
|
174
|
+
accept: accept,
|
|
175
|
+
multiple: multiple,
|
|
176
|
+
disabled: disabled,
|
|
177
|
+
onChange: handleInputChange,
|
|
178
|
+
"aria-label": id ? void 0 : ariaLabel ?? 'File upload'
|
|
179
|
+
}),
|
|
166
180
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
167
|
-
role: "
|
|
168
|
-
"aria-label":
|
|
169
|
-
|
|
181
|
+
role: "button",
|
|
182
|
+
"aria-label": ariaLabel ?? 'File upload area',
|
|
183
|
+
"aria-disabled": disabled,
|
|
184
|
+
tabIndex: disabled ? -1 : 0,
|
|
185
|
+
className: (0, index_cjs_namespaceObject.cn)('relative flex flex-col items-center justify-center w-full h-32 px-4 py-6 border-2 border-dashed rounded-lg cursor-pointer transition-colors', 'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background', 'future:rounded-xl', isDragging ? 'border-primary bg-primary/5' : 'border-input bg-background hover:bg-accent/50 future:border-border future:bg-surface-raised future:hover:bg-surface-overlay', disabled && 'opacity-50 cursor-not-allowed hover:bg-background future:hover:bg-surface-raised'),
|
|
170
186
|
onDragEnter: handleDragEnter,
|
|
171
187
|
onDragOver: handleDragOver,
|
|
172
188
|
onDragLeave: handleDragLeave,
|
|
@@ -179,16 +195,6 @@ function FileUpload({ onFilesChange, accept, multiple = false, disabled = false,
|
|
|
179
195
|
}
|
|
180
196
|
},
|
|
181
197
|
children: [
|
|
182
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("input", {
|
|
183
|
-
ref: inputRef,
|
|
184
|
-
type: "file",
|
|
185
|
-
className: "hidden",
|
|
186
|
-
accept: accept,
|
|
187
|
-
multiple: multiple,
|
|
188
|
-
disabled: disabled,
|
|
189
|
-
onChange: handleInputChange,
|
|
190
|
-
"aria-label": "File upload"
|
|
191
|
-
}),
|
|
192
198
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Upload, {
|
|
193
199
|
className: "w-8 h-8 mb-2 text-muted-foreground"
|
|
194
200
|
}),
|
|
@@ -1,4 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
export interface FileUploadProps {
|
|
3
|
+
/**
|
|
4
|
+
* Applied to the underlying `<input type="file">`, so an external
|
|
5
|
+
* `<label htmlFor>` can activate it (click-to-open) like any other labelable
|
|
6
|
+
* control. The dropzone itself is a `div[role=button]`, which isn't labelable,
|
|
7
|
+
* hence `ariaLabel` below for naming that part.
|
|
8
|
+
*/
|
|
9
|
+
id?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Names the dropzone (`div[role=button]`, not a labelable element, so a
|
|
12
|
+
* surrounding `<label htmlFor>` can't associate with it -- pass the field's
|
|
13
|
+
* visible label text here instead). Also names the `<input type="file">`
|
|
14
|
+
* itself when `id` is omitted; when `id` is provided, an external
|
|
15
|
+
* `<label htmlFor>` names the input instead (aria-label would otherwise
|
|
16
|
+
* override it in the accessible-name computation).
|
|
17
|
+
*/
|
|
18
|
+
ariaLabel?: string;
|
|
2
19
|
onFilesChange?: (files: File[]) => void;
|
|
3
20
|
accept?: string;
|
|
4
21
|
multiple?: boolean;
|
|
@@ -8,5 +25,6 @@ export interface FileUploadProps {
|
|
|
8
25
|
showPreview?: boolean;
|
|
9
26
|
/** External errors keyed by filename. Use this to set errors from outside (e.g., upload failures). */
|
|
10
27
|
errors?: Record<string, string>;
|
|
28
|
+
onBlur?: React.FocusEventHandler<HTMLFieldSetElement>;
|
|
11
29
|
}
|
|
12
|
-
export declare function FileUpload({ onFilesChange, accept, multiple, disabled, maxSize, className, showPreview, errors, }: FileUploadProps): import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
export declare function FileUpload({ id, ariaLabel, onFilesChange, accept, multiple, disabled, maxSize, className, showPreview, errors, onBlur, }: FileUploadProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,7 +4,7 @@ import { Upload, X } from "lucide-react";
|
|
|
4
4
|
import { useRef, useState } from "react";
|
|
5
5
|
import { Button } from "./button.js";
|
|
6
6
|
import { cn } from "../../lib/index.js";
|
|
7
|
-
function FileUpload({ onFilesChange, accept, multiple = false, disabled = false, maxSize, className, showPreview = false, errors }) {
|
|
7
|
+
function FileUpload({ id, ariaLabel, onFilesChange, accept, multiple = false, disabled = false, maxSize, className, showPreview = false, errors, onBlur }) {
|
|
8
8
|
const [files, setFiles] = useState([]);
|
|
9
9
|
const [isDragging, setIsDragging] = useState(false);
|
|
10
10
|
const [fileErrors, setFileErrors] = useState(new Map());
|
|
@@ -132,13 +132,29 @@ function FileUpload({ onFilesChange, accept, multiple = false, disabled = false,
|
|
|
132
132
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
133
133
|
return Math.round(bytes / k ** i * 100) / 100 + ' ' + sizes[i];
|
|
134
134
|
};
|
|
135
|
-
return /*#__PURE__*/ jsxs("
|
|
136
|
-
className: cn('w-full', className),
|
|
135
|
+
return /*#__PURE__*/ jsxs("fieldset", {
|
|
136
|
+
className: cn('m-0 min-w-0 w-full border-0 p-0', className),
|
|
137
|
+
onBlur: (event)=>{
|
|
138
|
+
if (!event.currentTarget.contains(event.relatedTarget)) onBlur?.(event);
|
|
139
|
+
},
|
|
137
140
|
children: [
|
|
141
|
+
/*#__PURE__*/ jsx("input", {
|
|
142
|
+
ref: inputRef,
|
|
143
|
+
id: id,
|
|
144
|
+
type: "file",
|
|
145
|
+
className: "hidden",
|
|
146
|
+
accept: accept,
|
|
147
|
+
multiple: multiple,
|
|
148
|
+
disabled: disabled,
|
|
149
|
+
onChange: handleInputChange,
|
|
150
|
+
"aria-label": id ? void 0 : ariaLabel ?? 'File upload'
|
|
151
|
+
}),
|
|
138
152
|
/*#__PURE__*/ jsxs("div", {
|
|
139
|
-
role: "
|
|
140
|
-
"aria-label":
|
|
141
|
-
|
|
153
|
+
role: "button",
|
|
154
|
+
"aria-label": ariaLabel ?? 'File upload area',
|
|
155
|
+
"aria-disabled": disabled,
|
|
156
|
+
tabIndex: disabled ? -1 : 0,
|
|
157
|
+
className: cn('relative flex flex-col items-center justify-center w-full h-32 px-4 py-6 border-2 border-dashed rounded-lg cursor-pointer transition-colors', 'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background', 'future:rounded-xl', isDragging ? 'border-primary bg-primary/5' : 'border-input bg-background hover:bg-accent/50 future:border-border future:bg-surface-raised future:hover:bg-surface-overlay', disabled && 'opacity-50 cursor-not-allowed hover:bg-background future:hover:bg-surface-raised'),
|
|
142
158
|
onDragEnter: handleDragEnter,
|
|
143
159
|
onDragOver: handleDragOver,
|
|
144
160
|
onDragLeave: handleDragLeave,
|
|
@@ -151,16 +167,6 @@ function FileUpload({ onFilesChange, accept, multiple = false, disabled = false,
|
|
|
151
167
|
}
|
|
152
168
|
},
|
|
153
169
|
children: [
|
|
154
|
-
/*#__PURE__*/ jsx("input", {
|
|
155
|
-
ref: inputRef,
|
|
156
|
-
type: "file",
|
|
157
|
-
className: "hidden",
|
|
158
|
-
accept: accept,
|
|
159
|
-
multiple: multiple,
|
|
160
|
-
disabled: disabled,
|
|
161
|
-
onChange: handleInputChange,
|
|
162
|
-
"aria-label": "File upload"
|
|
163
|
-
}),
|
|
164
170
|
/*#__PURE__*/ jsx(Upload, {
|
|
165
171
|
className: "w-8 h-8 mb-2 text-muted-foreground"
|
|
166
172
|
}),
|
|
@@ -15,7 +15,7 @@ var __webpack_modules__ = {
|
|
|
15
15
|
"./avatar" (module) {
|
|
16
16
|
module.exports = require("./avatar.cjs");
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"@/components/ui/badge" (module) {
|
|
19
19
|
module.exports = require("./badge.cjs");
|
|
20
20
|
},
|
|
21
21
|
"./breadcrumb" (module) {
|
|
@@ -30,22 +30,22 @@ var __webpack_modules__ = {
|
|
|
30
30
|
"./calendar" (module) {
|
|
31
31
|
module.exports = require("./calendar.cjs");
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"@/components/ui/card" (module) {
|
|
34
34
|
module.exports = require("./card.cjs");
|
|
35
35
|
},
|
|
36
36
|
"./checkbox" (module) {
|
|
37
37
|
module.exports = require("./checkbox.cjs");
|
|
38
38
|
},
|
|
39
|
-
"
|
|
39
|
+
"@/components/ui/collapsible" (module) {
|
|
40
40
|
module.exports = require("./collapsible.cjs");
|
|
41
41
|
},
|
|
42
42
|
"./combobox" (module) {
|
|
43
43
|
module.exports = require("./combobox.cjs");
|
|
44
44
|
},
|
|
45
|
-
"
|
|
45
|
+
"@/components/ui/command" (module) {
|
|
46
46
|
module.exports = require("./command.cjs");
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"@/components/ui/context-menu" (module) {
|
|
49
49
|
module.exports = require("./context-menu.cjs");
|
|
50
50
|
},
|
|
51
51
|
"./data-table" (module) {
|
|
@@ -57,13 +57,13 @@ var __webpack_modules__ = {
|
|
|
57
57
|
"./datetime-picker" (module) {
|
|
58
58
|
module.exports = require("./datetime-picker.cjs");
|
|
59
59
|
},
|
|
60
|
-
"
|
|
60
|
+
"./dialog" (module) {
|
|
61
61
|
module.exports = require("./dialog.cjs");
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"@/components/ui/dropdown-menu" (module) {
|
|
64
64
|
module.exports = require("./dropdown-menu.cjs");
|
|
65
65
|
},
|
|
66
|
-
"
|
|
66
|
+
"@/components/ui/editable-cell" (module) {
|
|
67
67
|
module.exports = require("./editable-cell.cjs");
|
|
68
68
|
},
|
|
69
69
|
"./empty-state" (module) {
|
|
@@ -72,10 +72,10 @@ var __webpack_modules__ = {
|
|
|
72
72
|
"./file-upload" (module) {
|
|
73
73
|
module.exports = require("./file-upload.cjs");
|
|
74
74
|
},
|
|
75
|
-
"
|
|
75
|
+
"@/components/ui/hover-card" (module) {
|
|
76
76
|
module.exports = require("./hover-card.cjs");
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"@/components/ui/input-group" (module) {
|
|
79
79
|
module.exports = require("./input-group.cjs");
|
|
80
80
|
},
|
|
81
81
|
"./input" (module) {
|
|
@@ -93,7 +93,7 @@ var __webpack_modules__ = {
|
|
|
93
93
|
"./pagination" (module) {
|
|
94
94
|
module.exports = require("./pagination.cjs");
|
|
95
95
|
},
|
|
96
|
-
"
|
|
96
|
+
"@/components/ui/popover" (module) {
|
|
97
97
|
module.exports = require("./popover.cjs");
|
|
98
98
|
},
|
|
99
99
|
"./progress" (module) {
|
|
@@ -144,7 +144,7 @@ var __webpack_modules__ = {
|
|
|
144
144
|
"./switch" (module) {
|
|
145
145
|
module.exports = require("./switch.cjs");
|
|
146
146
|
},
|
|
147
|
-
"
|
|
147
|
+
"@/components/ui/table" (module) {
|
|
148
148
|
module.exports = require("./table.cjs");
|
|
149
149
|
},
|
|
150
150
|
"./tabs" (module) {
|
|
@@ -247,7 +247,7 @@ var __webpack_exports__ = {};
|
|
|
247
247
|
"default"
|
|
248
248
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_avatar__rspack_import_4[__rspack_import_key];
|
|
249
249
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
250
|
-
var _badge__rspack_import_5 = __webpack_require__("
|
|
250
|
+
var _badge__rspack_import_5 = __webpack_require__("@/components/ui/badge");
|
|
251
251
|
var __rspack_reexport = {};
|
|
252
252
|
for(const __rspack_import_key in _badge__rspack_import_5)if ([
|
|
253
253
|
"TreeView",
|
|
@@ -282,7 +282,7 @@ var __webpack_exports__ = {};
|
|
|
282
282
|
"default"
|
|
283
283
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_calendar__rspack_import_9[__rspack_import_key];
|
|
284
284
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
285
|
-
var _card__rspack_import_10 = __webpack_require__("
|
|
285
|
+
var _card__rspack_import_10 = __webpack_require__("@/components/ui/card");
|
|
286
286
|
var __rspack_reexport = {};
|
|
287
287
|
for(const __rspack_import_key in _card__rspack_import_10)if ([
|
|
288
288
|
"TreeView",
|
|
@@ -296,7 +296,7 @@ var __webpack_exports__ = {};
|
|
|
296
296
|
"default"
|
|
297
297
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_checkbox__rspack_import_11[__rspack_import_key];
|
|
298
298
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
299
|
-
var _collapsible__rspack_import_12 = __webpack_require__("
|
|
299
|
+
var _collapsible__rspack_import_12 = __webpack_require__("@/components/ui/collapsible");
|
|
300
300
|
var __rspack_reexport = {};
|
|
301
301
|
for(const __rspack_import_key in _collapsible__rspack_import_12)if ([
|
|
302
302
|
"TreeView",
|
|
@@ -310,14 +310,14 @@ var __webpack_exports__ = {};
|
|
|
310
310
|
"default"
|
|
311
311
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_combobox__rspack_import_13[__rspack_import_key];
|
|
312
312
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
313
|
-
var _command__rspack_import_14 = __webpack_require__("
|
|
313
|
+
var _command__rspack_import_14 = __webpack_require__("@/components/ui/command");
|
|
314
314
|
var __rspack_reexport = {};
|
|
315
315
|
for(const __rspack_import_key in _command__rspack_import_14)if ([
|
|
316
316
|
"TreeView",
|
|
317
317
|
"default"
|
|
318
318
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_command__rspack_import_14[__rspack_import_key];
|
|
319
319
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
320
|
-
var _context_menu__rspack_import_15 = __webpack_require__("
|
|
320
|
+
var _context_menu__rspack_import_15 = __webpack_require__("@/components/ui/context-menu");
|
|
321
321
|
var __rspack_reexport = {};
|
|
322
322
|
for(const __rspack_import_key in _context_menu__rspack_import_15)if ([
|
|
323
323
|
"TreeView",
|
|
@@ -345,21 +345,21 @@ var __webpack_exports__ = {};
|
|
|
345
345
|
"default"
|
|
346
346
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_datetime_picker__rspack_import_18[__rspack_import_key];
|
|
347
347
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
348
|
-
var _dialog__rspack_import_19 = __webpack_require__("
|
|
348
|
+
var _dialog__rspack_import_19 = __webpack_require__("./dialog");
|
|
349
349
|
var __rspack_reexport = {};
|
|
350
350
|
for(const __rspack_import_key in _dialog__rspack_import_19)if ([
|
|
351
351
|
"TreeView",
|
|
352
352
|
"default"
|
|
353
353
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_dialog__rspack_import_19[__rspack_import_key];
|
|
354
354
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
355
|
-
var _dropdown_menu__rspack_import_20 = __webpack_require__("
|
|
355
|
+
var _dropdown_menu__rspack_import_20 = __webpack_require__("@/components/ui/dropdown-menu");
|
|
356
356
|
var __rspack_reexport = {};
|
|
357
357
|
for(const __rspack_import_key in _dropdown_menu__rspack_import_20)if ([
|
|
358
358
|
"TreeView",
|
|
359
359
|
"default"
|
|
360
360
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_dropdown_menu__rspack_import_20[__rspack_import_key];
|
|
361
361
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
362
|
-
var _editable_cell__rspack_import_21 = __webpack_require__("
|
|
362
|
+
var _editable_cell__rspack_import_21 = __webpack_require__("@/components/ui/editable-cell");
|
|
363
363
|
var __rspack_reexport = {};
|
|
364
364
|
for(const __rspack_import_key in _editable_cell__rspack_import_21)if ([
|
|
365
365
|
"TreeView",
|
|
@@ -380,7 +380,7 @@ var __webpack_exports__ = {};
|
|
|
380
380
|
"default"
|
|
381
381
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_file_upload__rspack_import_23[__rspack_import_key];
|
|
382
382
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
383
|
-
var _hover_card__rspack_import_24 = __webpack_require__("
|
|
383
|
+
var _hover_card__rspack_import_24 = __webpack_require__("@/components/ui/hover-card");
|
|
384
384
|
var __rspack_reexport = {};
|
|
385
385
|
for(const __rspack_import_key in _hover_card__rspack_import_24)if ([
|
|
386
386
|
"TreeView",
|
|
@@ -394,7 +394,7 @@ var __webpack_exports__ = {};
|
|
|
394
394
|
"default"
|
|
395
395
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_input__rspack_import_25[__rspack_import_key];
|
|
396
396
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
397
|
-
var _input_group__rspack_import_26 = __webpack_require__("
|
|
397
|
+
var _input_group__rspack_import_26 = __webpack_require__("@/components/ui/input-group");
|
|
398
398
|
var __rspack_reexport = {};
|
|
399
399
|
for(const __rspack_import_key in _input_group__rspack_import_26)if ([
|
|
400
400
|
"TreeView",
|
|
@@ -429,7 +429,7 @@ var __webpack_exports__ = {};
|
|
|
429
429
|
"default"
|
|
430
430
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_pagination__rspack_import_30[__rspack_import_key];
|
|
431
431
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
432
|
-
var _popover__rspack_import_31 = __webpack_require__("
|
|
432
|
+
var _popover__rspack_import_31 = __webpack_require__("@/components/ui/popover");
|
|
433
433
|
var __rspack_reexport = {};
|
|
434
434
|
for(const __rspack_import_key in _popover__rspack_import_31)if ([
|
|
435
435
|
"TreeView",
|
|
@@ -548,7 +548,7 @@ var __webpack_exports__ = {};
|
|
|
548
548
|
"default"
|
|
549
549
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_switch__rspack_import_47[__rspack_import_key];
|
|
550
550
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
551
|
-
var _table__rspack_import_48 = __webpack_require__("
|
|
551
|
+
var _table__rspack_import_48 = __webpack_require__("@/components/ui/table");
|
|
552
552
|
var __rspack_reexport = {};
|
|
553
553
|
for(const __rspack_import_key in _table__rspack_import_48)if ([
|
|
554
554
|
"TreeView",
|