@uipath/apollo-wind 0.9.1 → 0.10.0-pr257.2a4b17b
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/forms/field-renderer.cjs +120 -69
- package/dist/components/forms/field-renderer.js +120 -69
- package/dist/components/forms/form-designer.cjs +2352 -1488
- package/dist/components/forms/form-designer.js +2353 -1489
- package/dist/components/forms/form-examples.cjs +10 -10
- package/dist/components/forms/form-examples.js +10 -10
- package/dist/components/forms/form-state-viewer.cjs +988 -433
- package/dist/components/forms/form-state-viewer.js +988 -433
- package/dist/components/forms/metadata-form.cjs +446 -170
- package/dist/components/forms/metadata-form.js +446 -170
- package/dist/components/forms/schema-viewer.cjs +173 -80
- package/dist/components/forms/schema-viewer.js +173 -80
- package/dist/components/ui/accordion.cjs +131 -27
- package/dist/components/ui/accordion.js +131 -27
- package/dist/components/ui/alert-dialog.cjs +273 -45
- package/dist/components/ui/alert-dialog.js +273 -45
- package/dist/components/ui/alert.cjs +106 -17
- package/dist/components/ui/alert.js +106 -17
- package/dist/components/ui/avatar.cjs +100 -15
- package/dist/components/ui/avatar.js +100 -15
- package/dist/components/ui/badge.cjs +36 -6
- package/dist/components/ui/badge.js +36 -6
- package/dist/components/ui/breadcrumb.cjs +258 -52
- package/dist/components/ui/breadcrumb.js +258 -52
- package/dist/components/ui/button-group.cjs +119 -19
- package/dist/components/ui/button-group.js +119 -19
- package/dist/components/ui/button.cjs +48 -8
- package/dist/components/ui/button.js +48 -8
- package/dist/components/ui/calendar.cjs +88 -30
- package/dist/components/ui/calendar.js +88 -30
- package/dist/components/ui/card.cjs +199 -30
- package/dist/components/ui/card.js +199 -30
- package/dist/components/ui/checkbox.cjs +42 -8
- package/dist/components/ui/checkbox.js +42 -8
- package/dist/components/ui/combobox.cjs +150 -53
- package/dist/components/ui/combobox.js +150 -53
- package/dist/components/ui/command.cjs +291 -53
- package/dist/components/ui/command.js +291 -53
- package/dist/components/ui/context-menu.cjs +370 -72
- package/dist/components/ui/context-menu.js +370 -72
- package/dist/components/ui/data-table.cjs +76 -39
- package/dist/components/ui/data-table.js +76 -39
- package/dist/components/ui/date-picker.cjs +179 -68
- package/dist/components/ui/date-picker.js +179 -68
- package/dist/components/ui/datetime-picker.cjs +225 -104
- package/dist/components/ui/datetime-picker.js +225 -104
- package/dist/components/ui/dialog.cjs +290 -78
- package/dist/components/ui/dialog.js +290 -78
- package/dist/components/ui/drawer.cjs +220 -39
- package/dist/components/ui/drawer.js +220 -39
- package/dist/components/ui/dropdown-menu.cjs +376 -73
- package/dist/components/ui/dropdown-menu.js +376 -73
- package/dist/components/ui/editable-cell.cjs +106 -42
- package/dist/components/ui/editable-cell.js +106 -42
- package/dist/components/ui/empty-state.cjs +106 -33
- package/dist/components/ui/empty-state.js +106 -33
- package/dist/components/ui/file-upload.cjs +405 -187
- package/dist/components/ui/file-upload.d.ts +3 -1
- package/dist/components/ui/file-upload.js +405 -187
- package/dist/components/ui/hover-card.cjs +46 -7
- package/dist/components/ui/hover-card.js +46 -7
- package/dist/components/ui/index.cjs +22 -22
- package/dist/components/ui/input.cjs +39 -6
- package/dist/components/ui/input.js +39 -6
- package/dist/components/ui/label.cjs +34 -5
- package/dist/components/ui/label.js +34 -5
- package/dist/components/ui/layout/column.cjs +209 -41
- package/dist/components/ui/layout/column.js +209 -41
- package/dist/components/ui/layout/grid.cjs +275 -60
- package/dist/components/ui/layout/grid.js +275 -60
- package/dist/components/ui/layout/row.cjs +209 -41
- package/dist/components/ui/layout/row.js +209 -41
- package/dist/components/ui/menubar.cjs +540 -106
- package/dist/components/ui/menubar.js +540 -106
- package/dist/components/ui/multi-select.cjs +289 -135
- package/dist/components/ui/multi-select.js +289 -135
- package/dist/components/ui/navigation-menu.cjs +244 -47
- package/dist/components/ui/navigation-menu.js +244 -47
- package/dist/components/ui/pagination.cjs +301 -65
- package/dist/components/ui/pagination.js +301 -65
- package/dist/components/ui/popover.cjs +48 -9
- package/dist/components/ui/popover.js +48 -9
- package/dist/components/ui/progress.cjs +48 -8
- package/dist/components/ui/progress.js +48 -8
- package/dist/components/ui/radio-group.cjs +74 -12
- package/dist/components/ui/radio-group.js +74 -12
- package/dist/components/ui/resizable.cjs +75 -10
- package/dist/components/ui/resizable.js +75 -10
- package/dist/components/ui/scroll-area.cjs +113 -21
- package/dist/components/ui/scroll-area.js +113 -21
- package/dist/components/ui/search.cjs +280 -98
- package/dist/components/ui/search.js +280 -98
- package/dist/components/ui/select.cjs +334 -68
- package/dist/components/ui/select.js +334 -68
- package/dist/components/ui/separator.cjs +48 -7
- package/dist/components/ui/separator.js +48 -7
- package/dist/components/ui/sheet.cjs +236 -50
- package/dist/components/ui/sheet.js +236 -50
- package/dist/components/ui/skeleton.cjs +31 -5
- package/dist/components/ui/skeleton.js +31 -5
- package/dist/components/ui/slider.cjs +71 -21
- package/dist/components/ui/slider.js +71 -21
- package/dist/components/ui/sonner.cjs +43 -15
- package/dist/components/ui/sonner.js +43 -15
- package/dist/components/ui/spinner.cjs +83 -21
- package/dist/components/ui/spinner.js +83 -21
- package/dist/components/ui/stats-card.cjs +169 -60
- package/dist/components/ui/stats-card.js +169 -60
- package/dist/components/ui/stepper.cjs +126 -57
- package/dist/components/ui/stepper.js +126 -57
- package/dist/components/ui/switch.cjs +42 -8
- package/dist/components/ui/switch.js +42 -8
- package/dist/components/ui/table.cjs +267 -42
- package/dist/components/ui/table.js +267 -42
- package/dist/components/ui/tabs.cjs +100 -15
- package/dist/components/ui/tabs.js +100 -15
- package/dist/components/ui/textarea.cjs +34 -5
- package/dist/components/ui/textarea.js +34 -5
- package/dist/components/ui/toggle-group.cjs +112 -19
- package/dist/components/ui/toggle-group.js +112 -19
- package/dist/components/ui/toggle.cjs +43 -6
- package/dist/components/ui/toggle.js +43 -6
- package/dist/components/ui/tooltip.cjs +40 -6
- package/dist/components/ui/tooltip.js +40 -6
- package/dist/examples/admin-layout-example.cjs +879 -347
- package/dist/examples/admin-layout-example.js +879 -347
- package/dist/examples/app-shell-example.cjs +14 -14
- package/dist/examples/app-shell-example.js +14 -14
- package/dist/examples/dashboard-example.cjs +495 -334
- package/dist/examples/dashboard-example.js +495 -334
- package/dist/examples/data-management-example.cjs +501 -303
- package/dist/examples/data-management-example.js +502 -304
- package/dist/examples/flow-editor-layout-example.cjs +435 -231
- package/dist/examples/flow-editor-layout-example.js +436 -232
- package/dist/examples/flow-start-example.cjs +508 -251
- package/dist/examples/flow-start-example.js +509 -252
- package/dist/examples/form-builder-example.cjs +1006 -602
- package/dist/examples/form-builder-example.js +1007 -603
- package/dist/examples/new-project-example.cjs +806 -474
- package/dist/examples/new-project-example.js +807 -475
- package/dist/examples/settings-example.cjs +792 -704
- package/dist/examples/settings-example.js +792 -704
- package/dist/examples/vscode-example.cjs +731 -236
- package/dist/examples/vscode-example.js +731 -236
- package/package.json +4 -1
|
@@ -29,18 +29,57 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
HoverCardContent: ()=>HoverCardContent
|
|
30
30
|
});
|
|
31
31
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
32
|
+
const compiler_runtime_namespaceObject = require("react/compiler-runtime");
|
|
32
33
|
const react_hover_card_namespaceObject = require("@radix-ui/react-hover-card");
|
|
33
34
|
const external_react_namespaceObject = require("react");
|
|
34
35
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
35
36
|
const HoverCard = react_hover_card_namespaceObject.Root;
|
|
36
37
|
const HoverCardTrigger = react_hover_card_namespaceObject.Trigger;
|
|
37
|
-
const HoverCardContent = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
38
|
+
const HoverCardContent = /*#__PURE__*/ external_react_namespaceObject.forwardRef((t0, ref)=>{
|
|
39
|
+
const $ = (0, compiler_runtime_namespaceObject.c)(13);
|
|
40
|
+
let className;
|
|
41
|
+
let props;
|
|
42
|
+
let t1;
|
|
43
|
+
let t2;
|
|
44
|
+
if ($[0] !== t0) {
|
|
45
|
+
({ className, align: t1, sideOffset: t2, ...props } = t0);
|
|
46
|
+
$[0] = t0;
|
|
47
|
+
$[1] = className;
|
|
48
|
+
$[2] = props;
|
|
49
|
+
$[3] = t1;
|
|
50
|
+
$[4] = t2;
|
|
51
|
+
} else {
|
|
52
|
+
className = $[1];
|
|
53
|
+
props = $[2];
|
|
54
|
+
t1 = $[3];
|
|
55
|
+
t2 = $[4];
|
|
56
|
+
}
|
|
57
|
+
const align = void 0 === t1 ? "center" : t1;
|
|
58
|
+
const sideOffset = void 0 === t2 ? 4 : t2;
|
|
59
|
+
let t3;
|
|
60
|
+
if ($[5] !== className) {
|
|
61
|
+
t3 = (0, index_cjs_namespaceObject.cn)("z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]", className);
|
|
62
|
+
$[5] = className;
|
|
63
|
+
$[6] = t3;
|
|
64
|
+
} else t3 = $[6];
|
|
65
|
+
let t4;
|
|
66
|
+
if ($[7] !== align || $[8] !== props || $[9] !== ref || $[10] !== sideOffset || $[11] !== t3) {
|
|
67
|
+
t4 = /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(react_hover_card_namespaceObject.Content, {
|
|
68
|
+
ref: ref,
|
|
69
|
+
align: align,
|
|
70
|
+
sideOffset: sideOffset,
|
|
71
|
+
className: t3,
|
|
72
|
+
...props
|
|
73
|
+
});
|
|
74
|
+
$[7] = align;
|
|
75
|
+
$[8] = props;
|
|
76
|
+
$[9] = ref;
|
|
77
|
+
$[10] = sideOffset;
|
|
78
|
+
$[11] = t3;
|
|
79
|
+
$[12] = t4;
|
|
80
|
+
} else t4 = $[12];
|
|
81
|
+
return t4;
|
|
82
|
+
});
|
|
44
83
|
HoverCardContent.displayName = react_hover_card_namespaceObject.Content.displayName;
|
|
45
84
|
exports.HoverCard = __webpack_exports__.HoverCard;
|
|
46
85
|
exports.HoverCardContent = __webpack_exports__.HoverCardContent;
|
|
@@ -1,15 +1,54 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c } from "react/compiler-runtime";
|
|
2
3
|
import { Content, Root, Trigger } from "@radix-ui/react-hover-card";
|
|
3
4
|
import { forwardRef } from "react";
|
|
4
5
|
import { cn } from "../../lib/index.js";
|
|
5
6
|
const HoverCard = Root;
|
|
6
7
|
const HoverCardTrigger = Trigger;
|
|
7
|
-
const HoverCardContent = /*#__PURE__*/ forwardRef((
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
const HoverCardContent = /*#__PURE__*/ forwardRef((t0, ref)=>{
|
|
9
|
+
const $ = c(13);
|
|
10
|
+
let className;
|
|
11
|
+
let props;
|
|
12
|
+
let t1;
|
|
13
|
+
let t2;
|
|
14
|
+
if ($[0] !== t0) {
|
|
15
|
+
({ className, align: t1, sideOffset: t2, ...props } = t0);
|
|
16
|
+
$[0] = t0;
|
|
17
|
+
$[1] = className;
|
|
18
|
+
$[2] = props;
|
|
19
|
+
$[3] = t1;
|
|
20
|
+
$[4] = t2;
|
|
21
|
+
} else {
|
|
22
|
+
className = $[1];
|
|
23
|
+
props = $[2];
|
|
24
|
+
t1 = $[3];
|
|
25
|
+
t2 = $[4];
|
|
26
|
+
}
|
|
27
|
+
const align = void 0 === t1 ? "center" : t1;
|
|
28
|
+
const sideOffset = void 0 === t2 ? 4 : t2;
|
|
29
|
+
let t3;
|
|
30
|
+
if ($[5] !== className) {
|
|
31
|
+
t3 = cn("z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]", className);
|
|
32
|
+
$[5] = className;
|
|
33
|
+
$[6] = t3;
|
|
34
|
+
} else t3 = $[6];
|
|
35
|
+
let t4;
|
|
36
|
+
if ($[7] !== align || $[8] !== props || $[9] !== ref || $[10] !== sideOffset || $[11] !== t3) {
|
|
37
|
+
t4 = /*#__PURE__*/ jsx(Content, {
|
|
38
|
+
ref: ref,
|
|
39
|
+
align: align,
|
|
40
|
+
sideOffset: sideOffset,
|
|
41
|
+
className: t3,
|
|
42
|
+
...props
|
|
43
|
+
});
|
|
44
|
+
$[7] = align;
|
|
45
|
+
$[8] = props;
|
|
46
|
+
$[9] = ref;
|
|
47
|
+
$[10] = sideOffset;
|
|
48
|
+
$[11] = t3;
|
|
49
|
+
$[12] = t4;
|
|
50
|
+
} else t4 = $[12];
|
|
51
|
+
return t4;
|
|
52
|
+
});
|
|
14
53
|
HoverCardContent.displayName = Content.displayName;
|
|
15
54
|
export { HoverCard, HoverCardContent, HoverCardTrigger };
|
|
@@ -24,16 +24,16 @@ var __webpack_modules__ = {
|
|
|
24
24
|
"./button-group": function(module) {
|
|
25
25
|
module.exports = require("./button-group.cjs");
|
|
26
26
|
},
|
|
27
|
-
"
|
|
27
|
+
"./button": function(module) {
|
|
28
28
|
module.exports = require("./button.cjs");
|
|
29
29
|
},
|
|
30
|
-
"
|
|
30
|
+
"./calendar": function(module) {
|
|
31
31
|
module.exports = require("./calendar.cjs");
|
|
32
32
|
},
|
|
33
33
|
"./card": function(module) {
|
|
34
34
|
module.exports = require("./card.cjs");
|
|
35
35
|
},
|
|
36
|
-
"
|
|
36
|
+
"./checkbox": function(module) {
|
|
37
37
|
module.exports = require("./checkbox.cjs");
|
|
38
38
|
},
|
|
39
39
|
"./collapsible": function(module) {
|
|
@@ -42,7 +42,7 @@ var __webpack_modules__ = {
|
|
|
42
42
|
"./combobox": function(module) {
|
|
43
43
|
module.exports = require("./combobox.cjs");
|
|
44
44
|
},
|
|
45
|
-
"
|
|
45
|
+
"./command": function(module) {
|
|
46
46
|
module.exports = require("./command.cjs");
|
|
47
47
|
},
|
|
48
48
|
"./context-menu": function(module) {
|
|
@@ -63,10 +63,10 @@ var __webpack_modules__ = {
|
|
|
63
63
|
"./drawer": function(module) {
|
|
64
64
|
module.exports = require("./drawer.cjs");
|
|
65
65
|
},
|
|
66
|
-
"
|
|
66
|
+
"./dropdown-menu": function(module) {
|
|
67
67
|
module.exports = require("./dropdown-menu.cjs");
|
|
68
68
|
},
|
|
69
|
-
"
|
|
69
|
+
"./editable-cell": function(module) {
|
|
70
70
|
module.exports = require("./editable-cell.cjs");
|
|
71
71
|
},
|
|
72
72
|
"./empty-state": function(module) {
|
|
@@ -78,10 +78,10 @@ var __webpack_modules__ = {
|
|
|
78
78
|
"./hover-card": function(module) {
|
|
79
79
|
module.exports = require("./hover-card.cjs");
|
|
80
80
|
},
|
|
81
|
-
"
|
|
81
|
+
"./input": function(module) {
|
|
82
82
|
module.exports = require("./input.cjs");
|
|
83
83
|
},
|
|
84
|
-
"
|
|
84
|
+
"./label": function(module) {
|
|
85
85
|
module.exports = require("./label.cjs");
|
|
86
86
|
},
|
|
87
87
|
"./layout": function(module) {
|
|
@@ -99,7 +99,7 @@ var __webpack_modules__ = {
|
|
|
99
99
|
"./pagination": function(module) {
|
|
100
100
|
module.exports = require("./pagination.cjs");
|
|
101
101
|
},
|
|
102
|
-
"
|
|
102
|
+
"./popover": function(module) {
|
|
103
103
|
module.exports = require("./popover.cjs");
|
|
104
104
|
},
|
|
105
105
|
"./progress": function(module) {
|
|
@@ -147,7 +147,7 @@ var __webpack_modules__ = {
|
|
|
147
147
|
"./switch": function(module) {
|
|
148
148
|
module.exports = require("./switch.cjs");
|
|
149
149
|
},
|
|
150
|
-
"
|
|
150
|
+
"./table": function(module) {
|
|
151
151
|
module.exports = require("./table.cjs");
|
|
152
152
|
},
|
|
153
153
|
"./tabs": function(module) {
|
|
@@ -159,7 +159,7 @@ var __webpack_modules__ = {
|
|
|
159
159
|
"./toggle-group": function(module) {
|
|
160
160
|
module.exports = require("./toggle-group.cjs");
|
|
161
161
|
},
|
|
162
|
-
"
|
|
162
|
+
"./toggle": function(module) {
|
|
163
163
|
module.exports = require("./toggle.cjs");
|
|
164
164
|
},
|
|
165
165
|
"./tooltip": function(module) {
|
|
@@ -251,7 +251,7 @@ var __webpack_exports__ = {};
|
|
|
251
251
|
return _breadcrumb__WEBPACK_IMPORTED_MODULE_6__[key];
|
|
252
252
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
253
253
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
254
|
-
var _button__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("
|
|
254
|
+
var _button__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("./button");
|
|
255
255
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
256
256
|
for(var __WEBPACK_IMPORT_KEY__ in _button__WEBPACK_IMPORTED_MODULE_7__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
257
257
|
return _button__WEBPACK_IMPORTED_MODULE_7__[key];
|
|
@@ -263,7 +263,7 @@ var __webpack_exports__ = {};
|
|
|
263
263
|
return _button_group__WEBPACK_IMPORTED_MODULE_8__[key];
|
|
264
264
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
265
265
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
266
|
-
var _calendar__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("
|
|
266
|
+
var _calendar__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("./calendar");
|
|
267
267
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
268
268
|
for(var __WEBPACK_IMPORT_KEY__ in _calendar__WEBPACK_IMPORTED_MODULE_9__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
269
269
|
return _calendar__WEBPACK_IMPORTED_MODULE_9__[key];
|
|
@@ -275,7 +275,7 @@ var __webpack_exports__ = {};
|
|
|
275
275
|
return _card__WEBPACK_IMPORTED_MODULE_10__[key];
|
|
276
276
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
277
277
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
278
|
-
var _checkbox__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__("
|
|
278
|
+
var _checkbox__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__("./checkbox");
|
|
279
279
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
280
280
|
for(var __WEBPACK_IMPORT_KEY__ in _checkbox__WEBPACK_IMPORTED_MODULE_11__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
281
281
|
return _checkbox__WEBPACK_IMPORTED_MODULE_11__[key];
|
|
@@ -293,7 +293,7 @@ var __webpack_exports__ = {};
|
|
|
293
293
|
return _combobox__WEBPACK_IMPORTED_MODULE_13__[key];
|
|
294
294
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
295
295
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
296
|
-
var _command__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("
|
|
296
|
+
var _command__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("./command");
|
|
297
297
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
298
298
|
for(var __WEBPACK_IMPORT_KEY__ in _command__WEBPACK_IMPORTED_MODULE_14__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
299
299
|
return _command__WEBPACK_IMPORTED_MODULE_14__[key];
|
|
@@ -335,13 +335,13 @@ var __webpack_exports__ = {};
|
|
|
335
335
|
return _drawer__WEBPACK_IMPORTED_MODULE_20__[key];
|
|
336
336
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
337
337
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
338
|
-
var _dropdown_menu__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__("
|
|
338
|
+
var _dropdown_menu__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__("./dropdown-menu");
|
|
339
339
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
340
340
|
for(var __WEBPACK_IMPORT_KEY__ in _dropdown_menu__WEBPACK_IMPORTED_MODULE_21__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
341
341
|
return _dropdown_menu__WEBPACK_IMPORTED_MODULE_21__[key];
|
|
342
342
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
343
343
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
344
|
-
var _editable_cell__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__("
|
|
344
|
+
var _editable_cell__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__("./editable-cell");
|
|
345
345
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
346
346
|
for(var __WEBPACK_IMPORT_KEY__ in _editable_cell__WEBPACK_IMPORTED_MODULE_22__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
347
347
|
return _editable_cell__WEBPACK_IMPORTED_MODULE_22__[key];
|
|
@@ -365,13 +365,13 @@ var __webpack_exports__ = {};
|
|
|
365
365
|
return _hover_card__WEBPACK_IMPORTED_MODULE_25__[key];
|
|
366
366
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
367
367
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
368
|
-
var _input__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("
|
|
368
|
+
var _input__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("./input");
|
|
369
369
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
370
370
|
for(var __WEBPACK_IMPORT_KEY__ in _input__WEBPACK_IMPORTED_MODULE_26__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
371
371
|
return _input__WEBPACK_IMPORTED_MODULE_26__[key];
|
|
372
372
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
373
373
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
374
|
-
var _label__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__("
|
|
374
|
+
var _label__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__("./label");
|
|
375
375
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
376
376
|
for(var __WEBPACK_IMPORT_KEY__ in _label__WEBPACK_IMPORTED_MODULE_27__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
377
377
|
return _label__WEBPACK_IMPORTED_MODULE_27__[key];
|
|
@@ -407,7 +407,7 @@ var __webpack_exports__ = {};
|
|
|
407
407
|
return _pagination__WEBPACK_IMPORTED_MODULE_32__[key];
|
|
408
408
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
409
409
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
410
|
-
var _popover__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__("
|
|
410
|
+
var _popover__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__("./popover");
|
|
411
411
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
412
412
|
for(var __WEBPACK_IMPORT_KEY__ in _popover__WEBPACK_IMPORTED_MODULE_33__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
413
413
|
return _popover__WEBPACK_IMPORTED_MODULE_33__[key];
|
|
@@ -503,7 +503,7 @@ var __webpack_exports__ = {};
|
|
|
503
503
|
return _switch__WEBPACK_IMPORTED_MODULE_48__[key];
|
|
504
504
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
505
505
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
506
|
-
var _table__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__("
|
|
506
|
+
var _table__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__("./table");
|
|
507
507
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
508
508
|
for(var __WEBPACK_IMPORT_KEY__ in _table__WEBPACK_IMPORTED_MODULE_49__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
509
509
|
return _table__WEBPACK_IMPORTED_MODULE_49__[key];
|
|
@@ -527,7 +527,7 @@ var __webpack_exports__ = {};
|
|
|
527
527
|
return _toggle_group__WEBPACK_IMPORTED_MODULE_52__[key];
|
|
528
528
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
529
529
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
530
|
-
var _toggle__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__("
|
|
530
|
+
var _toggle__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__("./toggle");
|
|
531
531
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
532
532
|
for(var __WEBPACK_IMPORT_KEY__ in _toggle__WEBPACK_IMPORTED_MODULE_53__)if ("default" !== __WEBPACK_IMPORT_KEY__) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = (function(key) {
|
|
533
533
|
return _toggle__WEBPACK_IMPORTED_MODULE_53__[key];
|
|
@@ -27,14 +27,47 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
Input: ()=>Input
|
|
28
28
|
});
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
|
+
const compiler_runtime_namespaceObject = require("react/compiler-runtime");
|
|
30
31
|
const external_react_namespaceObject = require("react");
|
|
31
32
|
const utils_cjs_namespaceObject = require("../../lib/utils.cjs");
|
|
32
|
-
const Input = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
const Input = /*#__PURE__*/ external_react_namespaceObject.forwardRef((t0, ref)=>{
|
|
34
|
+
const $ = (0, compiler_runtime_namespaceObject.c)(11);
|
|
35
|
+
let className;
|
|
36
|
+
let props;
|
|
37
|
+
let type;
|
|
38
|
+
if ($[0] !== t0) {
|
|
39
|
+
({ className, type, ...props } = t0);
|
|
40
|
+
$[0] = t0;
|
|
41
|
+
$[1] = className;
|
|
42
|
+
$[2] = props;
|
|
43
|
+
$[3] = type;
|
|
44
|
+
} else {
|
|
45
|
+
className = $[1];
|
|
46
|
+
props = $[2];
|
|
47
|
+
type = $[3];
|
|
48
|
+
}
|
|
49
|
+
let t1;
|
|
50
|
+
if ($[4] !== className) {
|
|
51
|
+
t1 = (0, utils_cjs_namespaceObject.cn)("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm", className);
|
|
52
|
+
$[4] = className;
|
|
53
|
+
$[5] = t1;
|
|
54
|
+
} else t1 = $[5];
|
|
55
|
+
let t2;
|
|
56
|
+
if ($[6] !== props || $[7] !== ref || $[8] !== t1 || $[9] !== type) {
|
|
57
|
+
t2 = /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("input", {
|
|
58
|
+
type: type,
|
|
59
|
+
className: t1,
|
|
60
|
+
ref: ref,
|
|
61
|
+
...props
|
|
62
|
+
});
|
|
63
|
+
$[6] = props;
|
|
64
|
+
$[7] = ref;
|
|
65
|
+
$[8] = t1;
|
|
66
|
+
$[9] = type;
|
|
67
|
+
$[10] = t2;
|
|
68
|
+
} else t2 = $[10];
|
|
69
|
+
return t2;
|
|
70
|
+
});
|
|
38
71
|
Input.displayName = 'Input';
|
|
39
72
|
exports.Input = __webpack_exports__.Input;
|
|
40
73
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
@@ -1,11 +1,44 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c } from "react/compiler-runtime";
|
|
2
3
|
import { forwardRef } from "react";
|
|
3
4
|
import { cn } from "../../lib/utils.js";
|
|
4
|
-
const Input = /*#__PURE__*/ forwardRef((
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
const Input = /*#__PURE__*/ forwardRef((t0, ref)=>{
|
|
6
|
+
const $ = c(11);
|
|
7
|
+
let className;
|
|
8
|
+
let props;
|
|
9
|
+
let type;
|
|
10
|
+
if ($[0] !== t0) {
|
|
11
|
+
({ className, type, ...props } = t0);
|
|
12
|
+
$[0] = t0;
|
|
13
|
+
$[1] = className;
|
|
14
|
+
$[2] = props;
|
|
15
|
+
$[3] = type;
|
|
16
|
+
} else {
|
|
17
|
+
className = $[1];
|
|
18
|
+
props = $[2];
|
|
19
|
+
type = $[3];
|
|
20
|
+
}
|
|
21
|
+
let t1;
|
|
22
|
+
if ($[4] !== className) {
|
|
23
|
+
t1 = cn("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm", className);
|
|
24
|
+
$[4] = className;
|
|
25
|
+
$[5] = t1;
|
|
26
|
+
} else t1 = $[5];
|
|
27
|
+
let t2;
|
|
28
|
+
if ($[6] !== props || $[7] !== ref || $[8] !== t1 || $[9] !== type) {
|
|
29
|
+
t2 = /*#__PURE__*/ jsx("input", {
|
|
30
|
+
type: type,
|
|
31
|
+
className: t1,
|
|
32
|
+
ref: ref,
|
|
33
|
+
...props
|
|
34
|
+
});
|
|
35
|
+
$[6] = props;
|
|
36
|
+
$[7] = ref;
|
|
37
|
+
$[8] = t1;
|
|
38
|
+
$[9] = type;
|
|
39
|
+
$[10] = t2;
|
|
40
|
+
} else t2 = $[10];
|
|
41
|
+
return t2;
|
|
42
|
+
});
|
|
10
43
|
Input.displayName = 'Input';
|
|
11
44
|
export { Input };
|
|
@@ -27,16 +27,45 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
27
27
|
Label: ()=>Label
|
|
28
28
|
});
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
|
+
const compiler_runtime_namespaceObject = require("react/compiler-runtime");
|
|
30
31
|
const react_label_namespaceObject = require("@radix-ui/react-label");
|
|
31
32
|
const external_class_variance_authority_namespaceObject = require("class-variance-authority");
|
|
32
33
|
const external_react_namespaceObject = require("react");
|
|
33
34
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
34
35
|
const labelVariants = (0, external_class_variance_authority_namespaceObject.cva)('text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70');
|
|
35
|
-
const Label = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
const Label = /*#__PURE__*/ external_react_namespaceObject.forwardRef((t0, ref)=>{
|
|
37
|
+
const $ = (0, compiler_runtime_namespaceObject.c)(9);
|
|
38
|
+
let className;
|
|
39
|
+
let props;
|
|
40
|
+
if ($[0] !== t0) {
|
|
41
|
+
({ className, ...props } = t0);
|
|
42
|
+
$[0] = t0;
|
|
43
|
+
$[1] = className;
|
|
44
|
+
$[2] = props;
|
|
45
|
+
} else {
|
|
46
|
+
className = $[1];
|
|
47
|
+
props = $[2];
|
|
48
|
+
}
|
|
49
|
+
let t1;
|
|
50
|
+
if ($[3] !== className) {
|
|
51
|
+
t1 = (0, index_cjs_namespaceObject.cn)(labelVariants(), className);
|
|
52
|
+
$[3] = className;
|
|
53
|
+
$[4] = t1;
|
|
54
|
+
} else t1 = $[4];
|
|
55
|
+
let t2;
|
|
56
|
+
if ($[5] !== props || $[6] !== ref || $[7] !== t1) {
|
|
57
|
+
t2 = /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(react_label_namespaceObject.Root, {
|
|
58
|
+
ref: ref,
|
|
59
|
+
className: t1,
|
|
60
|
+
...props
|
|
61
|
+
});
|
|
62
|
+
$[5] = props;
|
|
63
|
+
$[6] = ref;
|
|
64
|
+
$[7] = t1;
|
|
65
|
+
$[8] = t2;
|
|
66
|
+
} else t2 = $[8];
|
|
67
|
+
return t2;
|
|
68
|
+
});
|
|
40
69
|
Label.displayName = react_label_namespaceObject.Root.displayName;
|
|
41
70
|
exports.Label = __webpack_exports__.Label;
|
|
42
71
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
@@ -1,13 +1,42 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c } from "react/compiler-runtime";
|
|
2
3
|
import { Root } from "@radix-ui/react-label";
|
|
3
4
|
import { cva } from "class-variance-authority";
|
|
4
5
|
import { forwardRef } from "react";
|
|
5
6
|
import { cn } from "../../lib/index.js";
|
|
6
7
|
const labelVariants = cva('text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70');
|
|
7
|
-
const Label = /*#__PURE__*/ forwardRef((
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
const Label = /*#__PURE__*/ forwardRef((t0, ref)=>{
|
|
9
|
+
const $ = c(9);
|
|
10
|
+
let className;
|
|
11
|
+
let props;
|
|
12
|
+
if ($[0] !== t0) {
|
|
13
|
+
({ className, ...props } = t0);
|
|
14
|
+
$[0] = t0;
|
|
15
|
+
$[1] = className;
|
|
16
|
+
$[2] = props;
|
|
17
|
+
} else {
|
|
18
|
+
className = $[1];
|
|
19
|
+
props = $[2];
|
|
20
|
+
}
|
|
21
|
+
let t1;
|
|
22
|
+
if ($[3] !== className) {
|
|
23
|
+
t1 = cn(labelVariants(), className);
|
|
24
|
+
$[3] = className;
|
|
25
|
+
$[4] = t1;
|
|
26
|
+
} else t1 = $[4];
|
|
27
|
+
let t2;
|
|
28
|
+
if ($[5] !== props || $[6] !== ref || $[7] !== t1) {
|
|
29
|
+
t2 = /*#__PURE__*/ jsx(Root, {
|
|
30
|
+
ref: ref,
|
|
31
|
+
className: t1,
|
|
32
|
+
...props
|
|
33
|
+
});
|
|
34
|
+
$[5] = props;
|
|
35
|
+
$[6] = ref;
|
|
36
|
+
$[7] = t1;
|
|
37
|
+
$[8] = t2;
|
|
38
|
+
} else t2 = $[8];
|
|
39
|
+
return t2;
|
|
40
|
+
});
|
|
12
41
|
Label.displayName = Root.displayName;
|
|
13
42
|
export { Label };
|