@uipath/apollo-wind 1.5.0 → 2.0.0-pr482.0700da2
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/flow-properties-expanded.cjs +2 -2
- package/dist/components/custom/flow-properties-expanded.js +2 -2
- package/dist/components/forms/form-designer.cjs +6 -4
- package/dist/components/forms/form-designer.js +6 -4
- package/dist/components/forms/schema-viewer.cjs +0 -2
- package/dist/components/forms/schema-viewer.js +0 -2
- package/dist/components/ui/badge.cjs +4 -0
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/badge.js +4 -0
- package/dist/components/ui/button.cjs +12 -4
- package/dist/components/ui/button.d.ts +2 -1
- package/dist/components/ui/button.js +12 -4
- package/dist/components/ui/calendar.cjs +10 -10
- package/dist/components/ui/calendar.js +10 -10
- package/dist/components/ui/code-block.cjs +2 -2
- package/dist/components/ui/code-block.js +2 -2
- package/dist/components/ui/dropdown-menu.cjs +1 -1
- package/dist/components/ui/dropdown-menu.js +1 -1
- package/dist/components/ui/file-upload.cjs +2 -2
- package/dist/components/ui/file-upload.js +2 -2
- package/dist/components/ui/index.cjs +24 -24
- package/dist/components/ui/pagination.cjs +2 -2
- package/dist/components/ui/pagination.js +2 -2
- package/dist/components/ui/search.cjs +2 -2
- package/dist/components/ui/search.js +2 -2
- package/dist/components/ui/skeleton.cjs +1 -1
- package/dist/components/ui/skeleton.js +1 -1
- package/dist/components/ui/spinner.d.ts +1 -1
- package/dist/components/ui/toggle-group.d.ts +2 -2
- package/dist/components/ui/toggle.d.ts +2 -2
- package/dist/components/ui/tooltip.cjs +4 -0
- package/dist/components/ui/tooltip.d.ts +2 -1
- package/dist/components/ui/tooltip.js +3 -2
- package/dist/components/ui/tree-view.cjs +6 -6
- package/dist/components/ui/tree-view.js +6 -6
- package/dist/index.cjs +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/styles.css +105 -43
- package/dist/tailwind.css +28 -8
- package/package.json +1 -1
|
@@ -55,12 +55,12 @@ const PaginationItem = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
|
55
55
|
...props
|
|
56
56
|
}));
|
|
57
57
|
PaginationItem.displayName = 'PaginationItem';
|
|
58
|
-
const PaginationLink = ({ className, isActive, size = '
|
|
58
|
+
const PaginationLink = ({ className, isActive, size = 'default', ...props })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("a", {
|
|
59
59
|
"aria-current": isActive ? 'page' : void 0,
|
|
60
60
|
className: (0, index_cjs_namespaceObject.cn)((0, external_button_cjs_namespaceObject.buttonVariants)({
|
|
61
61
|
variant: isActive ? 'outline' : 'ghost',
|
|
62
62
|
size
|
|
63
|
-
}), className),
|
|
63
|
+
}), 'aspect-square p-0', className),
|
|
64
64
|
...props
|
|
65
65
|
});
|
|
66
66
|
PaginationLink.displayName = 'PaginationLink';
|
|
@@ -21,12 +21,12 @@ const PaginationItem = /*#__PURE__*/ forwardRef(({ className, ...props }, ref)=>
|
|
|
21
21
|
...props
|
|
22
22
|
}));
|
|
23
23
|
PaginationItem.displayName = 'PaginationItem';
|
|
24
|
-
const PaginationLink = ({ className, isActive, size = '
|
|
24
|
+
const PaginationLink = ({ className, isActive, size = 'default', ...props })=>/*#__PURE__*/ jsx("a", {
|
|
25
25
|
"aria-current": isActive ? 'page' : void 0,
|
|
26
26
|
className: cn(buttonVariants({
|
|
27
27
|
variant: isActive ? 'outline' : 'ghost',
|
|
28
28
|
size
|
|
29
|
-
}), className),
|
|
29
|
+
}), 'aspect-square p-0', className),
|
|
30
30
|
...props
|
|
31
31
|
});
|
|
32
32
|
PaginationLink.displayName = 'PaginationLink';
|
|
@@ -57,8 +57,8 @@ const Search = /*#__PURE__*/ external_react_namespaceObject.forwardRef(({ classN
|
|
|
57
57
|
showClearButton && value && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(external_button_cjs_namespaceObject.Button, {
|
|
58
58
|
type: "button",
|
|
59
59
|
variant: "ghost",
|
|
60
|
-
|
|
61
|
-
className: "absolute right-0 top-0 h-full w-8
|
|
60
|
+
icon: true,
|
|
61
|
+
className: "absolute right-0 top-0 h-full w-8 hover:bg-transparent",
|
|
62
62
|
onClick: handleClear,
|
|
63
63
|
children: [
|
|
64
64
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.X, {
|
|
@@ -28,8 +28,8 @@ const search_Search = /*#__PURE__*/ forwardRef(({ className, value, onChange, on
|
|
|
28
28
|
showClearButton && value && /*#__PURE__*/ jsxs(Button, {
|
|
29
29
|
type: "button",
|
|
30
30
|
variant: "ghost",
|
|
31
|
-
|
|
32
|
-
className: "absolute right-0 top-0 h-full w-8
|
|
31
|
+
icon: true,
|
|
32
|
+
className: "absolute right-0 top-0 h-full w-8 hover:bg-transparent",
|
|
33
33
|
onClick: handleClear,
|
|
34
34
|
children: [
|
|
35
35
|
/*#__PURE__*/ jsx(X, {
|
|
@@ -30,7 +30,7 @@ const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
|
30
30
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
31
31
|
function Skeleton({ className, ...props }) {
|
|
32
32
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
33
|
-
className: (0, index_cjs_namespaceObject.cn)('animate-pulse rounded-md bg-
|
|
33
|
+
className: (0, index_cjs_namespaceObject.cn)('animate-pulse rounded-md bg-surface-overlay', className),
|
|
34
34
|
...props
|
|
35
35
|
});
|
|
36
36
|
}
|
|
@@ -2,7 +2,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { cn } from "../../lib/index.js";
|
|
3
3
|
function Skeleton({ className, ...props }) {
|
|
4
4
|
return /*#__PURE__*/ jsx("div", {
|
|
5
|
-
className: cn('animate-pulse rounded-md bg-
|
|
5
|
+
className: cn('animate-pulse rounded-md bg-surface-overlay', className),
|
|
6
6
|
...props
|
|
7
7
|
});
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { type VariantProps } from 'class-variance-authority';
|
|
3
3
|
declare const spinnerVariants: (props?: ({
|
|
4
|
-
size?: "default" | "
|
|
4
|
+
size?: "default" | "lg" | "sm" | "xl" | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
6
|
export interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof spinnerVariants> {
|
|
7
7
|
label?: string;
|
|
@@ -3,10 +3,10 @@ import { type VariantProps } from 'class-variance-authority';
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
declare const ToggleGroup: React.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
|
|
5
5
|
variant?: "default" | "outline" | null | undefined;
|
|
6
|
-
size?: "default" | "
|
|
6
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string>) & React.RefAttributes<HTMLDivElement>>;
|
|
8
8
|
declare const ToggleGroupItem: React.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
9
9
|
variant?: "default" | "outline" | null | undefined;
|
|
10
|
-
size?: "default" | "
|
|
10
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
export { ToggleGroup, ToggleGroupItem };
|
|
@@ -3,10 +3,10 @@ import { type VariantProps } from 'class-variance-authority';
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
declare const toggleVariants: (props?: ({
|
|
5
5
|
variant?: "default" | "outline" | null | undefined;
|
|
6
|
-
size?: "default" | "
|
|
6
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
declare const Toggle: React.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
9
9
|
variant?: "default" | "outline" | null | undefined;
|
|
10
|
-
size?: "default" | "
|
|
10
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
11
11
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
export { Toggle, toggleVariants };
|
|
@@ -25,6 +25,7 @@ var __webpack_exports__ = {};
|
|
|
25
25
|
__webpack_require__.r(__webpack_exports__);
|
|
26
26
|
__webpack_require__.d(__webpack_exports__, {
|
|
27
27
|
Tooltip: ()=>Tooltip,
|
|
28
|
+
TooltipPortal: ()=>TooltipPortal,
|
|
28
29
|
TooltipProvider: ()=>TooltipProvider,
|
|
29
30
|
TooltipContent: ()=>TooltipContent,
|
|
30
31
|
TooltipTrigger: ()=>TooltipTrigger
|
|
@@ -36,6 +37,7 @@ const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
|
36
37
|
const TooltipProvider = react_tooltip_namespaceObject.Provider;
|
|
37
38
|
const Tooltip = react_tooltip_namespaceObject.Root;
|
|
38
39
|
const TooltipTrigger = react_tooltip_namespaceObject.Trigger;
|
|
40
|
+
const TooltipPortal = react_tooltip_namespaceObject.Portal;
|
|
39
41
|
const TooltipContent = /*#__PURE__*/ external_react_namespaceObject.forwardRef(({ className, sideOffset = 4, ...props }, ref)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(react_tooltip_namespaceObject.Content, {
|
|
40
42
|
ref: ref,
|
|
41
43
|
sideOffset: sideOffset,
|
|
@@ -45,11 +47,13 @@ const TooltipContent = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
|
45
47
|
TooltipContent.displayName = react_tooltip_namespaceObject.Content.displayName;
|
|
46
48
|
exports.Tooltip = __webpack_exports__.Tooltip;
|
|
47
49
|
exports.TooltipContent = __webpack_exports__.TooltipContent;
|
|
50
|
+
exports.TooltipPortal = __webpack_exports__.TooltipPortal;
|
|
48
51
|
exports.TooltipProvider = __webpack_exports__.TooltipProvider;
|
|
49
52
|
exports.TooltipTrigger = __webpack_exports__.TooltipTrigger;
|
|
50
53
|
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
51
54
|
"Tooltip",
|
|
52
55
|
"TooltipContent",
|
|
56
|
+
"TooltipPortal",
|
|
53
57
|
"TooltipProvider",
|
|
54
58
|
"TooltipTrigger"
|
|
55
59
|
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -3,5 +3,6 @@ import * as React from 'react';
|
|
|
3
3
|
declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
4
4
|
declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
|
|
5
5
|
declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
6
|
+
declare const TooltipPortal: React.FC<TooltipPrimitive.TooltipPortalProps>;
|
|
6
7
|
declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
-
export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
|
|
8
|
+
export { Tooltip, TooltipTrigger, TooltipPortal, TooltipContent, TooltipProvider };
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Content, Provider, Root, Trigger } from "@radix-ui/react-tooltip";
|
|
2
|
+
import { Content, Portal, Provider, Root, Trigger } from "@radix-ui/react-tooltip";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
4
|
import { cn } from "../../lib/index.js";
|
|
5
5
|
const TooltipProvider = Provider;
|
|
6
6
|
const Tooltip = Root;
|
|
7
7
|
const TooltipTrigger = Trigger;
|
|
8
|
+
const TooltipPortal = Portal;
|
|
8
9
|
const TooltipContent = /*#__PURE__*/ forwardRef(({ className, sideOffset = 4, ...props }, ref)=>/*#__PURE__*/ jsx(Content, {
|
|
9
10
|
ref: ref,
|
|
10
11
|
sideOffset: sideOffset,
|
|
@@ -12,4 +13,4 @@ const TooltipContent = /*#__PURE__*/ forwardRef(({ className, sideOffset = 4, ..
|
|
|
12
13
|
...props
|
|
13
14
|
}));
|
|
14
15
|
TooltipContent.displayName = Content.displayName;
|
|
15
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
|
|
16
|
+
export { Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger };
|
|
@@ -232,8 +232,8 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
232
232
|
onClick: (e)=>e.stopPropagation(),
|
|
233
233
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_button_cjs_namespaceObject.Button, {
|
|
234
234
|
variant: "ghost",
|
|
235
|
-
size: "
|
|
236
|
-
|
|
235
|
+
size: "3xs",
|
|
236
|
+
icon: true,
|
|
237
237
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_framer_motion_namespaceObject.motion.div, {
|
|
238
238
|
initial: false,
|
|
239
239
|
animate: {
|
|
@@ -308,7 +308,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
308
308
|
asChild: true,
|
|
309
309
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_button_cjs_namespaceObject.Button, {
|
|
310
310
|
variant: "ghost",
|
|
311
|
-
|
|
311
|
+
icon: true,
|
|
312
312
|
className: "h-6 w-6 shrink-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
313
313
|
onClick: (e)=>e.stopPropagation(),
|
|
314
314
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.MoreHorizontal, {
|
|
@@ -405,7 +405,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
405
405
|
asChild: true,
|
|
406
406
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_button_cjs_namespaceObject.Button, {
|
|
407
407
|
variant: "ghost",
|
|
408
|
-
|
|
408
|
+
icon: true,
|
|
409
409
|
className: "h-6 w-6 shrink-0 p-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
410
410
|
onClick: (e)=>e.stopPropagation(),
|
|
411
411
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Info, {
|
|
@@ -534,7 +534,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
534
534
|
asChild: true,
|
|
535
535
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_button_cjs_namespaceObject.Button, {
|
|
536
536
|
variant: "ghost",
|
|
537
|
-
|
|
537
|
+
icon: true,
|
|
538
538
|
className: "h-6 w-6 shrink-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
539
539
|
onClick: (e)=>e.stopPropagation(),
|
|
540
540
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.MoreHorizontal, {
|
|
@@ -620,7 +620,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
620
620
|
asChild: true,
|
|
621
621
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_button_cjs_namespaceObject.Button, {
|
|
622
622
|
variant: "ghost",
|
|
623
|
-
|
|
623
|
+
icon: true,
|
|
624
624
|
className: "h-6 w-6 shrink-0 p-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
625
625
|
onClick: (e)=>e.stopPropagation(),
|
|
626
626
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Info, {
|
|
@@ -204,8 +204,8 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
204
204
|
onClick: (e)=>e.stopPropagation(),
|
|
205
205
|
children: /*#__PURE__*/ jsx(Button, {
|
|
206
206
|
variant: "ghost",
|
|
207
|
-
size: "
|
|
208
|
-
|
|
207
|
+
size: "3xs",
|
|
208
|
+
icon: true,
|
|
209
209
|
children: /*#__PURE__*/ jsx(motion.div, {
|
|
210
210
|
initial: false,
|
|
211
211
|
animate: {
|
|
@@ -280,7 +280,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
280
280
|
asChild: true,
|
|
281
281
|
children: /*#__PURE__*/ jsx(Button, {
|
|
282
282
|
variant: "ghost",
|
|
283
|
-
|
|
283
|
+
icon: true,
|
|
284
284
|
className: "h-6 w-6 shrink-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
285
285
|
onClick: (e)=>e.stopPropagation(),
|
|
286
286
|
children: /*#__PURE__*/ jsx(MoreHorizontal, {
|
|
@@ -377,7 +377,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
377
377
|
asChild: true,
|
|
378
378
|
children: /*#__PURE__*/ jsx(Button, {
|
|
379
379
|
variant: "ghost",
|
|
380
|
-
|
|
380
|
+
icon: true,
|
|
381
381
|
className: "h-6 w-6 shrink-0 p-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
382
382
|
onClick: (e)=>e.stopPropagation(),
|
|
383
383
|
children: /*#__PURE__*/ jsx(Info, {
|
|
@@ -506,7 +506,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
506
506
|
asChild: true,
|
|
507
507
|
children: /*#__PURE__*/ jsx(Button, {
|
|
508
508
|
variant: "ghost",
|
|
509
|
-
|
|
509
|
+
icon: true,
|
|
510
510
|
className: "h-6 w-6 shrink-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
511
511
|
onClick: (e)=>e.stopPropagation(),
|
|
512
512
|
children: /*#__PURE__*/ jsx(MoreHorizontal, {
|
|
@@ -592,7 +592,7 @@ function TreeItem({ item, depth = 0, selectedIds, lastSelectedId, onSelect, expa
|
|
|
592
592
|
asChild: true,
|
|
593
593
|
children: /*#__PURE__*/ jsx(Button, {
|
|
594
594
|
variant: "ghost",
|
|
595
|
-
|
|
595
|
+
icon: true,
|
|
596
596
|
className: "h-6 w-6 shrink-0 p-0 opacity-0 group-hover:opacity-100 transition-opacity",
|
|
597
597
|
onClick: (e)=>e.stopPropagation(),
|
|
598
598
|
children: /*#__PURE__*/ jsx(Info, {
|
package/dist/index.cjs
CHANGED
|
@@ -162,6 +162,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
162
162
|
Switch: ()=>switch_cjs_namespaceObject.Switch,
|
|
163
163
|
PaginationEllipsis: ()=>pagination_cjs_namespaceObject.PaginationEllipsis,
|
|
164
164
|
DialogDescription: ()=>dialog_cjs_namespaceObject.DialogDescription,
|
|
165
|
+
TooltipPortal: ()=>tooltip_cjs_namespaceObject.TooltipPortal,
|
|
165
166
|
AlertDialogHeader: ()=>alert_dialog_cjs_namespaceObject.AlertDialogHeader,
|
|
166
167
|
CommandShortcut: ()=>command_cjs_namespaceObject.CommandShortcut,
|
|
167
168
|
Textarea: ()=>textarea_cjs_namespaceObject.Textarea,
|
|
@@ -502,6 +503,7 @@ exports.ToggleGroup = __webpack_exports__.ToggleGroup;
|
|
|
502
503
|
exports.ToggleGroupItem = __webpack_exports__.ToggleGroupItem;
|
|
503
504
|
exports.Tooltip = __webpack_exports__.Tooltip;
|
|
504
505
|
exports.TooltipContent = __webpack_exports__.TooltipContent;
|
|
506
|
+
exports.TooltipPortal = __webpack_exports__.TooltipPortal;
|
|
505
507
|
exports.TooltipProvider = __webpack_exports__.TooltipProvider;
|
|
506
508
|
exports.TooltipTrigger = __webpack_exports__.TooltipTrigger;
|
|
507
509
|
exports.TreeView = __webpack_exports__.TreeView;
|
|
@@ -714,6 +716,7 @@ for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
|
714
716
|
"ToggleGroupItem",
|
|
715
717
|
"Tooltip",
|
|
716
718
|
"TooltipContent",
|
|
719
|
+
"TooltipPortal",
|
|
717
720
|
"TooltipProvider",
|
|
718
721
|
"TooltipTrigger",
|
|
719
722
|
"TreeView",
|
package/dist/index.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, Di
|
|
|
57
57
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from './components/ui/alert-dialog';
|
|
58
58
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, } from './components/ui/sheet';
|
|
59
59
|
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger, } from './components/ui/popover';
|
|
60
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from './components/ui/tooltip';
|
|
60
|
+
export { Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, } from './components/ui/tooltip';
|
|
61
61
|
export { HoverCard, HoverCardContent, HoverCardTrigger, } from './components/ui/hover-card';
|
|
62
62
|
export { Alert, AlertDescription, AlertTitle } from './components/ui/alert';
|
|
63
63
|
export { toast, Toaster } from './components/ui/sonner';
|
package/dist/index.js
CHANGED
|
@@ -38,7 +38,7 @@ import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, Di
|
|
|
38
38
|
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./components/ui/alert-dialog.js";
|
|
39
39
|
import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./components/ui/sheet.js";
|
|
40
40
|
import { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from "./components/ui/popover.js";
|
|
41
|
-
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/ui/tooltip.js";
|
|
41
|
+
import { Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger } from "./components/ui/tooltip.js";
|
|
42
42
|
import { HoverCard, HoverCardContent, HoverCardTrigger } from "./components/ui/hover-card.js";
|
|
43
43
|
import { Alert, AlertDescription, AlertTitle } from "./components/ui/alert.js";
|
|
44
44
|
import { Toaster, toast } from "./components/ui/sonner.js";
|
|
@@ -63,4 +63,4 @@ import { ExpressionBuilder, RuleBuilder, RulesEngine } from "./components/forms/
|
|
|
63
63
|
import { DataFetcher, DataSourceBuilder, DataTransformers, FetchAdapter } from "./components/forms/data-fetcher.js";
|
|
64
64
|
import { analyticsPlugin, auditPlugin, autoSavePlugin, formattingPlugin, validationPlugin, workflowPlugin } from "./components/forms/form-plugins.js";
|
|
65
65
|
import { hasMinMaxStep, hasOptions, isCustomField, isFileField } from "./components/forms/form-schema.js";
|
|
66
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CodeBlock, Collapsible, CollapsibleContent, CollapsibleTrigger, Column, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataFetcher, DataSourceBuilder, DataTable, DataTableColumnHeader, DataTableSelectColumn, DataTransformers, DatePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableCell, EmptyState, ExpressionBuilder, FetchAdapter, FileUpload, FormDesigner, FormFieldRenderer, FormStateViewer, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, MetadataForm, MultiSelect, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Row, RuleBuilder, RulesEngine, ScrollArea, ScrollBar, Search, SearchWithSuggestions, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, StatsCard, Stepper, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, tree_view as TreeView, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, formattingPlugin, hasMinMaxStep, hasOptions, isCustomField, isFileField, spinnerVariants, toast, toggleVariants, validationPlugin, workflowPlugin };
|
|
66
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CodeBlock, Collapsible, CollapsibleContent, CollapsibleTrigger, Column, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataFetcher, DataSourceBuilder, DataTable, DataTableColumnHeader, DataTableSelectColumn, DataTransformers, DatePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableCell, EmptyState, ExpressionBuilder, FetchAdapter, FileUpload, FormDesigner, FormFieldRenderer, FormStateViewer, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, MetadataForm, MultiSelect, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Row, RuleBuilder, RulesEngine, ScrollArea, ScrollBar, Search, SearchWithSuggestions, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, StatsCard, Stepper, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, tree_view as TreeView, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, formattingPlugin, hasMinMaxStep, hasOptions, isCustomField, isFileField, spinnerVariants, toast, toggleVariants, validationPlugin, workflowPlugin };
|