@arch-cadre/ui 0.0.33 → 0.0.35
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/build.config.ts +7 -7
- package/dist/hooks/use-user.d.ts +2 -2
- package/package.json +3 -3
- package/dist/components/accordion.cjs +0 -62
- package/dist/components/alert-dialog.cjs +0 -127
- package/dist/components/alert.cjs +0 -58
- package/dist/components/aspect-ratio.cjs +0 -19
- package/dist/components/avatar.cjs +0 -44
- package/dist/components/badge.cjs +0 -41
- package/dist/components/breadcrumb.cjs +0 -106
- package/dist/components/button-group.cjs +0 -65
- package/dist/components/button.cjs +0 -57
- package/dist/components/calendar.cjs +0 -143
- package/dist/components/card.cjs +0 -86
- package/dist/components/checkbox.cjs +0 -28
- package/dist/components/collapsible.cjs +0 -37
- package/dist/components/command.cjs +0 -125
- package/dist/components/context-menu.cjs +0 -188
- package/dist/components/dialog.cjs +0 -123
- package/dist/components/drawer.cjs +0 -118
- package/dist/components/dropdown-menu.cjs +0 -190
- package/dist/components/empty.cjs +0 -92
- package/dist/components/field.cjs +0 -173
- package/dist/components/form.cjs +0 -143
- package/dist/components/hover-card.cjs +0 -46
- package/dist/components/input-group.cjs +0 -130
- package/dist/components/input-otp.cjs +0 -69
- package/dist/components/input.cjs +0 -22
- package/dist/components/item.cjs +0 -168
- package/dist/components/kbd.cjs +0 -31
- package/dist/components/label.cjs +0 -22
- package/dist/components/language-switcher.cjs +0 -43
- package/dist/components/menubar.cjs +0 -207
- package/dist/components/navigation-menu.cjs +0 -113
- package/dist/components/pagination.cjs +0 -106
- package/dist/components/popover.cjs +0 -53
- package/dist/components/progress.cjs +0 -29
- package/dist/components/radio-group.cjs +0 -39
- package/dist/components/scroll-area.cjs +0 -45
- package/dist/components/select.cjs +0 -140
- package/dist/components/separator.cjs +0 -26
- package/dist/components/sheet.cjs +0 -120
- package/dist/components/sidebar.cjs +0 -508
- package/dist/components/skeleton.cjs +0 -20
- package/dist/components/slider.cjs +0 -43
- package/dist/components/sonner.cjs +0 -49
- package/dist/components/spinner.cjs +0 -22
- package/dist/components/switch.cjs +0 -25
- package/dist/components/table.cjs +0 -101
- package/dist/components/tabs.cjs +0 -55
- package/dist/components/textarea.cjs +0 -20
- package/dist/components/toggle-group.cjs +0 -65
- package/dist/components/toggle.cjs +0 -47
- package/dist/components/tooltip.cjs +0 -56
- package/dist/hooks/use-mobile.cjs +0 -23
- package/dist/hooks/use-user.cjs +0 -21
- package/dist/index.cjs +0 -179
- package/dist/lib/utils.cjs +0 -11
- package/dist/logo.cjs +0 -49
- package/dist/postcss.config.cjs +0 -13
- package/dist/providers/auth-provider.cjs +0 -44
- package/dist/providers/index.cjs +0 -47
- package/dist/shared/access-denied.cjs +0 -38
- package/dist/shared/loader.cjs +0 -95
- package/dist/shared/page-loader.cjs +0 -23
- package/dist/shared/scroll-fade-effect.cjs +0 -21
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
"use client";
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.Calendar = Calendar;
|
|
8
|
-
exports.CalendarDayButton = CalendarDayButton;
|
|
9
|
-
var _lucideReact = require("lucide-react");
|
|
10
|
-
var React = _interopRequireWildcard(require("react"));
|
|
11
|
-
var _reactDayPicker = require("react-day-picker");
|
|
12
|
-
var _utils = require("../lib/utils.cjs");
|
|
13
|
-
var _button = require("./button.cjs");
|
|
14
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
|
-
function Calendar({
|
|
17
|
-
className,
|
|
18
|
-
classNames,
|
|
19
|
-
showOutsideDays = true,
|
|
20
|
-
captionLayout = "label",
|
|
21
|
-
buttonVariant = "ghost",
|
|
22
|
-
formatters,
|
|
23
|
-
components,
|
|
24
|
-
...props
|
|
25
|
-
}) {
|
|
26
|
-
const defaultClassNames = (0, _reactDayPicker.getDefaultClassNames)();
|
|
27
|
-
return /* @__PURE__ */React.createElement(_reactDayPicker.DayPicker, {
|
|
28
|
-
showOutsideDays,
|
|
29
|
-
className: (0, _utils.cn)("bg-background group/calendar p-3 [--cell-size:--spacing(8)] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent", String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`, String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`, className),
|
|
30
|
-
captionLayout,
|
|
31
|
-
formatters: {
|
|
32
|
-
formatMonthDropdown: date => date.toLocaleString("default", {
|
|
33
|
-
month: "short"
|
|
34
|
-
}),
|
|
35
|
-
...formatters
|
|
36
|
-
},
|
|
37
|
-
classNames: {
|
|
38
|
-
root: (0, _utils.cn)("w-fit", defaultClassNames.root),
|
|
39
|
-
months: (0, _utils.cn)("flex gap-4 flex-col md:flex-row relative", defaultClassNames.months),
|
|
40
|
-
month: (0, _utils.cn)("flex flex-col w-full gap-4", defaultClassNames.month),
|
|
41
|
-
nav: (0, _utils.cn)("flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between", defaultClassNames.nav),
|
|
42
|
-
button_previous: (0, _utils.cn)((0, _button.buttonVariants)({
|
|
43
|
-
variant: buttonVariant
|
|
44
|
-
}), "size-(--cell-size) aria-disabled:opacity-50 p-0 select-none", defaultClassNames.button_previous),
|
|
45
|
-
button_next: (0, _utils.cn)((0, _button.buttonVariants)({
|
|
46
|
-
variant: buttonVariant
|
|
47
|
-
}), "size-(--cell-size) aria-disabled:opacity-50 p-0 select-none", defaultClassNames.button_next),
|
|
48
|
-
month_caption: (0, _utils.cn)("flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)", defaultClassNames.month_caption),
|
|
49
|
-
dropdowns: (0, _utils.cn)("w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5", defaultClassNames.dropdowns),
|
|
50
|
-
dropdown_root: (0, _utils.cn)("relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md", defaultClassNames.dropdown_root),
|
|
51
|
-
dropdown: (0, _utils.cn)("absolute bg-popover inset-0 opacity-0", defaultClassNames.dropdown),
|
|
52
|
-
caption_label: (0, _utils.cn)("select-none font-medium", captionLayout === "label" ? "text-sm" : "rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5", defaultClassNames.caption_label),
|
|
53
|
-
table: "w-full border-collapse",
|
|
54
|
-
weekdays: (0, _utils.cn)("flex", defaultClassNames.weekdays),
|
|
55
|
-
weekday: (0, _utils.cn)("text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem] select-none", defaultClassNames.weekday),
|
|
56
|
-
week: (0, _utils.cn)("flex w-full mt-2", defaultClassNames.week),
|
|
57
|
-
week_number_header: (0, _utils.cn)("select-none w-(--cell-size)", defaultClassNames.week_number_header),
|
|
58
|
-
week_number: (0, _utils.cn)("text-[0.8rem] select-none text-muted-foreground", defaultClassNames.week_number),
|
|
59
|
-
day: (0, _utils.cn)("relative w-full h-full p-0 text-center [&:last-child[data-selected=true]_button]:rounded-r-md group/day aspect-square select-none", props.showWeekNumber ? "[&:nth-child(2)[data-selected=true]_button]:rounded-l-md" : "[&:first-child[data-selected=true]_button]:rounded-l-md", defaultClassNames.day),
|
|
60
|
-
range_start: (0, _utils.cn)("rounded-l-md bg-accent", defaultClassNames.range_start),
|
|
61
|
-
range_middle: (0, _utils.cn)("rounded-none", defaultClassNames.range_middle),
|
|
62
|
-
range_end: (0, _utils.cn)("rounded-r-md bg-accent", defaultClassNames.range_end),
|
|
63
|
-
today: (0, _utils.cn)("bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none", defaultClassNames.today),
|
|
64
|
-
outside: (0, _utils.cn)("text-muted-foreground aria-selected:text-muted-foreground", defaultClassNames.outside),
|
|
65
|
-
disabled: (0, _utils.cn)("text-muted-foreground opacity-50", defaultClassNames.disabled),
|
|
66
|
-
hidden: (0, _utils.cn)("invisible", defaultClassNames.hidden),
|
|
67
|
-
...classNames
|
|
68
|
-
},
|
|
69
|
-
components: {
|
|
70
|
-
Root: ({
|
|
71
|
-
className: className2,
|
|
72
|
-
rootRef,
|
|
73
|
-
...props2
|
|
74
|
-
}) => {
|
|
75
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
76
|
-
"data-slot": "calendar",
|
|
77
|
-
ref: rootRef,
|
|
78
|
-
className: (0, _utils.cn)(className2),
|
|
79
|
-
...props2
|
|
80
|
-
});
|
|
81
|
-
},
|
|
82
|
-
Chevron: ({
|
|
83
|
-
className: className2,
|
|
84
|
-
orientation,
|
|
85
|
-
...props2
|
|
86
|
-
}) => {
|
|
87
|
-
if (orientation === "left") {
|
|
88
|
-
return /* @__PURE__ */React.createElement(_lucideReact.ChevronLeftIcon, {
|
|
89
|
-
className: (0, _utils.cn)("size-4", className2),
|
|
90
|
-
...props2
|
|
91
|
-
});
|
|
92
|
-
}
|
|
93
|
-
if (orientation === "right") {
|
|
94
|
-
return /* @__PURE__ */React.createElement(_lucideReact.ChevronRightIcon, {
|
|
95
|
-
className: (0, _utils.cn)("size-4", className2),
|
|
96
|
-
...props2
|
|
97
|
-
});
|
|
98
|
-
}
|
|
99
|
-
return /* @__PURE__ */React.createElement(_lucideReact.ChevronDownIcon, {
|
|
100
|
-
className: (0, _utils.cn)("size-4", className2),
|
|
101
|
-
...props2
|
|
102
|
-
});
|
|
103
|
-
},
|
|
104
|
-
DayButton: CalendarDayButton,
|
|
105
|
-
WeekNumber: ({
|
|
106
|
-
children,
|
|
107
|
-
...props2
|
|
108
|
-
}) => {
|
|
109
|
-
return /* @__PURE__ */React.createElement("td", {
|
|
110
|
-
...props2
|
|
111
|
-
}, /* @__PURE__ */React.createElement("div", {
|
|
112
|
-
className: "flex size-(--cell-size) items-center justify-center text-center"
|
|
113
|
-
}, children));
|
|
114
|
-
},
|
|
115
|
-
...components
|
|
116
|
-
},
|
|
117
|
-
...props
|
|
118
|
-
});
|
|
119
|
-
}
|
|
120
|
-
function CalendarDayButton({
|
|
121
|
-
className,
|
|
122
|
-
day,
|
|
123
|
-
modifiers,
|
|
124
|
-
...props
|
|
125
|
-
}) {
|
|
126
|
-
const defaultClassNames = (0, _reactDayPicker.getDefaultClassNames)();
|
|
127
|
-
const ref = React.useRef(null);
|
|
128
|
-
React.useEffect(() => {
|
|
129
|
-
if (modifiers.focused) ref.current?.focus();
|
|
130
|
-
}, [modifiers.focused]);
|
|
131
|
-
return /* @__PURE__ */React.createElement(_button.Button, {
|
|
132
|
-
ref,
|
|
133
|
-
variant: "ghost",
|
|
134
|
-
size: "icon",
|
|
135
|
-
"data-day": day.date.toLocaleDateString(),
|
|
136
|
-
"data-selected-single": modifiers.selected && !modifiers.range_start && !modifiers.range_end && !modifiers.range_middle,
|
|
137
|
-
"data-range-start": modifiers.range_start,
|
|
138
|
-
"data-range-end": modifiers.range_end,
|
|
139
|
-
"data-range-middle": modifiers.range_middle,
|
|
140
|
-
className: (0, _utils.cn)("data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 dark:hover:text-accent-foreground flex aspect-square size-auto w-full min-w-(--cell-size) flex-col gap-1 leading-none font-normal group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] data-[range-end=true]:rounded-md data-[range-end=true]:rounded-r-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md data-[range-start=true]:rounded-l-md [&>span]:text-xs [&>span]:opacity-70", defaultClassNames.day, className),
|
|
141
|
-
...props
|
|
142
|
-
});
|
|
143
|
-
}
|
package/dist/components/card.cjs
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.Card = Card;
|
|
7
|
-
exports.CardAction = CardAction;
|
|
8
|
-
exports.CardContent = CardContent;
|
|
9
|
-
exports.CardDescription = CardDescription;
|
|
10
|
-
exports.CardFooter = CardFooter;
|
|
11
|
-
exports.CardHeader = CardHeader;
|
|
12
|
-
exports.CardTitle = CardTitle;
|
|
13
|
-
var React = _interopRequireWildcard(require("react"));
|
|
14
|
-
var _utils = require("../lib/utils.cjs");
|
|
15
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
16
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
17
|
-
function Card({
|
|
18
|
-
className,
|
|
19
|
-
...props
|
|
20
|
-
}) {
|
|
21
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
22
|
-
"data-slot": "card",
|
|
23
|
-
className: (0, _utils.cn)("bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm", className),
|
|
24
|
-
...props
|
|
25
|
-
});
|
|
26
|
-
}
|
|
27
|
-
function CardHeader({
|
|
28
|
-
className,
|
|
29
|
-
...props
|
|
30
|
-
}) {
|
|
31
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
32
|
-
"data-slot": "card-header",
|
|
33
|
-
className: (0, _utils.cn)("@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6", className),
|
|
34
|
-
...props
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
function CardTitle({
|
|
38
|
-
className,
|
|
39
|
-
...props
|
|
40
|
-
}) {
|
|
41
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
42
|
-
"data-slot": "card-title",
|
|
43
|
-
className: (0, _utils.cn)("leading-none font-semibold", className),
|
|
44
|
-
...props
|
|
45
|
-
});
|
|
46
|
-
}
|
|
47
|
-
function CardDescription({
|
|
48
|
-
className,
|
|
49
|
-
...props
|
|
50
|
-
}) {
|
|
51
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
52
|
-
"data-slot": "card-description",
|
|
53
|
-
className: (0, _utils.cn)("text-muted-foreground text-sm", className),
|
|
54
|
-
...props
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
function CardAction({
|
|
58
|
-
className,
|
|
59
|
-
...props
|
|
60
|
-
}) {
|
|
61
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
62
|
-
"data-slot": "card-action",
|
|
63
|
-
className: (0, _utils.cn)("col-start-2 row-span-2 row-start-1 self-start justify-self-end", className),
|
|
64
|
-
...props
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
function CardContent({
|
|
68
|
-
className,
|
|
69
|
-
...props
|
|
70
|
-
}) {
|
|
71
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
72
|
-
"data-slot": "card-content",
|
|
73
|
-
className: (0, _utils.cn)("px-6", className),
|
|
74
|
-
...props
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
function CardFooter({
|
|
78
|
-
className,
|
|
79
|
-
...props
|
|
80
|
-
}) {
|
|
81
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
82
|
-
"data-slot": "card-footer",
|
|
83
|
-
className: (0, _utils.cn)("flex items-center px-6 [.border-t]:pt-6", className),
|
|
84
|
-
...props
|
|
85
|
-
});
|
|
86
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
"use client";
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.Checkbox = Checkbox;
|
|
8
|
-
var _lucideReact = require("lucide-react");
|
|
9
|
-
var _radixUi = require("radix-ui");
|
|
10
|
-
var React = _interopRequireWildcard(require("react"));
|
|
11
|
-
var _utils = require("../lib/utils.cjs");
|
|
12
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
|
-
function Checkbox({
|
|
15
|
-
className,
|
|
16
|
-
...props
|
|
17
|
-
}) {
|
|
18
|
-
return /* @__PURE__ */React.createElement(_radixUi.Checkbox.Root, {
|
|
19
|
-
"data-slot": "checkbox",
|
|
20
|
-
className: (0, _utils.cn)("peer border-input dark:bg-input/30 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50", className),
|
|
21
|
-
...props
|
|
22
|
-
}, /* @__PURE__ */React.createElement(_radixUi.Checkbox.Indicator, {
|
|
23
|
-
"data-slot": "checkbox-indicator",
|
|
24
|
-
className: "grid place-content-center text-current transition-none"
|
|
25
|
-
}, /* @__PURE__ */React.createElement(_lucideReact.CheckIcon, {
|
|
26
|
-
className: "size-3.5"
|
|
27
|
-
})));
|
|
28
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
"use client";
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.Collapsible = Collapsible;
|
|
8
|
-
exports.CollapsibleContent = CollapsibleContent;
|
|
9
|
-
exports.CollapsibleTrigger = CollapsibleTrigger;
|
|
10
|
-
var _radixUi = require("radix-ui");
|
|
11
|
-
var React = _interopRequireWildcard(require("react"));
|
|
12
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
|
-
function Collapsible({
|
|
15
|
-
...props
|
|
16
|
-
}) {
|
|
17
|
-
return /* @__PURE__ */React.createElement(_radixUi.Collapsible.Root, {
|
|
18
|
-
"data-slot": "collapsible",
|
|
19
|
-
...props
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
function CollapsibleTrigger({
|
|
23
|
-
...props
|
|
24
|
-
}) {
|
|
25
|
-
return /* @__PURE__ */React.createElement(_radixUi.Collapsible.CollapsibleTrigger, {
|
|
26
|
-
"data-slot": "collapsible-trigger",
|
|
27
|
-
...props
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
function CollapsibleContent({
|
|
31
|
-
...props
|
|
32
|
-
}) {
|
|
33
|
-
return /* @__PURE__ */React.createElement(_radixUi.Collapsible.CollapsibleContent, {
|
|
34
|
-
"data-slot": "collapsible-content",
|
|
35
|
-
...props
|
|
36
|
-
});
|
|
37
|
-
}
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
"use client";
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.Command = Command;
|
|
8
|
-
exports.CommandDialog = CommandDialog;
|
|
9
|
-
exports.CommandEmpty = CommandEmpty;
|
|
10
|
-
exports.CommandGroup = CommandGroup;
|
|
11
|
-
exports.CommandInput = CommandInput;
|
|
12
|
-
exports.CommandItem = CommandItem;
|
|
13
|
-
exports.CommandList = CommandList;
|
|
14
|
-
exports.CommandSeparator = CommandSeparator;
|
|
15
|
-
exports.CommandShortcut = CommandShortcut;
|
|
16
|
-
var _cmdk = require("cmdk");
|
|
17
|
-
var _lucideReact = require("lucide-react");
|
|
18
|
-
var React = _interopRequireWildcard(require("react"));
|
|
19
|
-
var _utils = require("../lib/utils.cjs");
|
|
20
|
-
var _dialog = require("./dialog.cjs");
|
|
21
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
22
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
23
|
-
function Command({
|
|
24
|
-
className,
|
|
25
|
-
...props
|
|
26
|
-
}) {
|
|
27
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command, {
|
|
28
|
-
"data-slot": "command",
|
|
29
|
-
className: (0, _utils.cn)("bg-popover text-popover-foreground flex h-full w-full flex-col overflow-hidden rounded-md", className),
|
|
30
|
-
...props
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
function CommandDialog({
|
|
34
|
-
title = "Command Palette",
|
|
35
|
-
description = "Search for a command to run...",
|
|
36
|
-
children,
|
|
37
|
-
className,
|
|
38
|
-
showCloseButton = true,
|
|
39
|
-
...props
|
|
40
|
-
}) {
|
|
41
|
-
return /* @__PURE__ */React.createElement(_dialog.Dialog, {
|
|
42
|
-
...props
|
|
43
|
-
}, /* @__PURE__ */React.createElement(_dialog.DialogHeader, {
|
|
44
|
-
className: "sr-only"
|
|
45
|
-
}, /* @__PURE__ */React.createElement(_dialog.DialogTitle, null, title), /* @__PURE__ */React.createElement(_dialog.DialogDescription, null, description)), /* @__PURE__ */React.createElement(_dialog.DialogContent, {
|
|
46
|
-
className: (0, _utils.cn)("overflow-hidden p-0", className),
|
|
47
|
-
showCloseButton
|
|
48
|
-
}, /* @__PURE__ */React.createElement(Command, {
|
|
49
|
-
className: "[&_[cmdk-group-heading]]:text-muted-foreground **:data-[slot=command-input-wrapper]:h-12 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group]]:px-2 [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5"
|
|
50
|
-
}, children)));
|
|
51
|
-
}
|
|
52
|
-
function CommandInput({
|
|
53
|
-
className,
|
|
54
|
-
...props
|
|
55
|
-
}) {
|
|
56
|
-
return /* @__PURE__ */React.createElement("div", {
|
|
57
|
-
"data-slot": "command-input-wrapper",
|
|
58
|
-
className: "flex h-9 items-center gap-2 border-b px-3"
|
|
59
|
-
}, /* @__PURE__ */React.createElement(_lucideReact.SearchIcon, {
|
|
60
|
-
className: "size-4 shrink-0 opacity-50"
|
|
61
|
-
}), /* @__PURE__ */React.createElement(_cmdk.Command.Input, {
|
|
62
|
-
"data-slot": "command-input",
|
|
63
|
-
className: (0, _utils.cn)("placeholder:text-muted-foreground flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50", className),
|
|
64
|
-
...props
|
|
65
|
-
}));
|
|
66
|
-
}
|
|
67
|
-
function CommandList({
|
|
68
|
-
className,
|
|
69
|
-
...props
|
|
70
|
-
}) {
|
|
71
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command.List, {
|
|
72
|
-
"data-slot": "command-list",
|
|
73
|
-
className: (0, _utils.cn)("max-h-[300px] scroll-py-1 overflow-x-hidden overflow-y-auto", className),
|
|
74
|
-
...props
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
function CommandEmpty({
|
|
78
|
-
...props
|
|
79
|
-
}) {
|
|
80
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command.Empty, {
|
|
81
|
-
"data-slot": "command-empty",
|
|
82
|
-
className: "py-6 text-center text-sm",
|
|
83
|
-
...props
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
function CommandGroup({
|
|
87
|
-
className,
|
|
88
|
-
...props
|
|
89
|
-
}) {
|
|
90
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command.Group, {
|
|
91
|
-
"data-slot": "command-group",
|
|
92
|
-
className: (0, _utils.cn)("text-foreground [&_[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium", className),
|
|
93
|
-
...props
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
function CommandSeparator({
|
|
97
|
-
className,
|
|
98
|
-
...props
|
|
99
|
-
}) {
|
|
100
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command.Separator, {
|
|
101
|
-
"data-slot": "command-separator",
|
|
102
|
-
className: (0, _utils.cn)("bg-border -mx-1 h-px", className),
|
|
103
|
-
...props
|
|
104
|
-
});
|
|
105
|
-
}
|
|
106
|
-
function CommandItem({
|
|
107
|
-
className,
|
|
108
|
-
...props
|
|
109
|
-
}) {
|
|
110
|
-
return /* @__PURE__ */React.createElement(_cmdk.Command.Item, {
|
|
111
|
-
"data-slot": "command-item",
|
|
112
|
-
className: (0, _utils.cn)("data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
113
|
-
...props
|
|
114
|
-
});
|
|
115
|
-
}
|
|
116
|
-
function CommandShortcut({
|
|
117
|
-
className,
|
|
118
|
-
...props
|
|
119
|
-
}) {
|
|
120
|
-
return /* @__PURE__ */React.createElement("span", {
|
|
121
|
-
"data-slot": "command-shortcut",
|
|
122
|
-
className: (0, _utils.cn)("text-muted-foreground ml-auto text-xs tracking-widest", className),
|
|
123
|
-
...props
|
|
124
|
-
});
|
|
125
|
-
}
|
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
"use client";
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.ContextMenu = ContextMenu;
|
|
8
|
-
exports.ContextMenuCheckboxItem = ContextMenuCheckboxItem;
|
|
9
|
-
exports.ContextMenuContent = ContextMenuContent;
|
|
10
|
-
exports.ContextMenuGroup = ContextMenuGroup;
|
|
11
|
-
exports.ContextMenuItem = ContextMenuItem;
|
|
12
|
-
exports.ContextMenuLabel = ContextMenuLabel;
|
|
13
|
-
exports.ContextMenuPortal = ContextMenuPortal;
|
|
14
|
-
exports.ContextMenuRadioGroup = ContextMenuRadioGroup;
|
|
15
|
-
exports.ContextMenuRadioItem = ContextMenuRadioItem;
|
|
16
|
-
exports.ContextMenuSeparator = ContextMenuSeparator;
|
|
17
|
-
exports.ContextMenuShortcut = ContextMenuShortcut;
|
|
18
|
-
exports.ContextMenuSub = ContextMenuSub;
|
|
19
|
-
exports.ContextMenuSubContent = ContextMenuSubContent;
|
|
20
|
-
exports.ContextMenuSubTrigger = ContextMenuSubTrigger;
|
|
21
|
-
exports.ContextMenuTrigger = ContextMenuTrigger;
|
|
22
|
-
var _lucideReact = require("lucide-react");
|
|
23
|
-
var _radixUi = require("radix-ui");
|
|
24
|
-
var React = _interopRequireWildcard(require("react"));
|
|
25
|
-
var _utils = require("../lib/utils.cjs");
|
|
26
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
27
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
28
|
-
function ContextMenu({
|
|
29
|
-
...props
|
|
30
|
-
}) {
|
|
31
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Root, {
|
|
32
|
-
"data-slot": "context-menu",
|
|
33
|
-
...props
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
function ContextMenuTrigger({
|
|
37
|
-
...props
|
|
38
|
-
}) {
|
|
39
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Trigger, {
|
|
40
|
-
"data-slot": "context-menu-trigger",
|
|
41
|
-
...props
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
function ContextMenuGroup({
|
|
45
|
-
...props
|
|
46
|
-
}) {
|
|
47
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Group, {
|
|
48
|
-
"data-slot": "context-menu-group",
|
|
49
|
-
...props
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
function ContextMenuPortal({
|
|
53
|
-
...props
|
|
54
|
-
}) {
|
|
55
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Portal, {
|
|
56
|
-
"data-slot": "context-menu-portal",
|
|
57
|
-
...props
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
function ContextMenuSub({
|
|
61
|
-
...props
|
|
62
|
-
}) {
|
|
63
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Sub, {
|
|
64
|
-
"data-slot": "context-menu-sub",
|
|
65
|
-
...props
|
|
66
|
-
});
|
|
67
|
-
}
|
|
68
|
-
function ContextMenuRadioGroup({
|
|
69
|
-
...props
|
|
70
|
-
}) {
|
|
71
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.RadioGroup, {
|
|
72
|
-
"data-slot": "context-menu-radio-group",
|
|
73
|
-
...props
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
function ContextMenuSubTrigger({
|
|
77
|
-
className,
|
|
78
|
-
inset,
|
|
79
|
-
children,
|
|
80
|
-
...props
|
|
81
|
-
}) {
|
|
82
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.SubTrigger, {
|
|
83
|
-
"data-slot": "context-menu-sub-trigger",
|
|
84
|
-
"data-inset": inset,
|
|
85
|
-
className: (0, _utils.cn)("focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
86
|
-
...props
|
|
87
|
-
}, children, /* @__PURE__ */React.createElement(_lucideReact.ChevronRightIcon, {
|
|
88
|
-
className: "ml-auto"
|
|
89
|
-
}));
|
|
90
|
-
}
|
|
91
|
-
function ContextMenuSubContent({
|
|
92
|
-
className,
|
|
93
|
-
...props
|
|
94
|
-
}) {
|
|
95
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.SubContent, {
|
|
96
|
-
"data-slot": "context-menu-sub-content",
|
|
97
|
-
className: (0, _utils.cn)("bg-popover text-popover-foreground 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 z-50 min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg", className),
|
|
98
|
-
...props
|
|
99
|
-
});
|
|
100
|
-
}
|
|
101
|
-
function ContextMenuContent({
|
|
102
|
-
className,
|
|
103
|
-
...props
|
|
104
|
-
}) {
|
|
105
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Portal, null, /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Content, {
|
|
106
|
-
"data-slot": "context-menu-content",
|
|
107
|
-
className: (0, _utils.cn)("bg-popover text-popover-foreground 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 z-50 max-h-(--radix-context-menu-content-available-height) min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md", className),
|
|
108
|
-
...props
|
|
109
|
-
}));
|
|
110
|
-
}
|
|
111
|
-
function ContextMenuItem({
|
|
112
|
-
className,
|
|
113
|
-
inset,
|
|
114
|
-
variant = "default",
|
|
115
|
-
...props
|
|
116
|
-
}) {
|
|
117
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Item, {
|
|
118
|
-
"data-slot": "context-menu-item",
|
|
119
|
-
"data-inset": inset,
|
|
120
|
-
"data-variant": variant,
|
|
121
|
-
className: (0, _utils.cn)("focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
122
|
-
...props
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
function ContextMenuCheckboxItem({
|
|
126
|
-
className,
|
|
127
|
-
children,
|
|
128
|
-
checked,
|
|
129
|
-
...props
|
|
130
|
-
}) {
|
|
131
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.CheckboxItem, {
|
|
132
|
-
"data-slot": "context-menu-checkbox-item",
|
|
133
|
-
className: (0, _utils.cn)("focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
134
|
-
checked,
|
|
135
|
-
...props
|
|
136
|
-
}, /* @__PURE__ */React.createElement("span", {
|
|
137
|
-
className: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center"
|
|
138
|
-
}, /* @__PURE__ */React.createElement(_radixUi.ContextMenu.ItemIndicator, null, /* @__PURE__ */React.createElement(_lucideReact.CheckIcon, {
|
|
139
|
-
className: "size-4"
|
|
140
|
-
}))), children);
|
|
141
|
-
}
|
|
142
|
-
function ContextMenuRadioItem({
|
|
143
|
-
className,
|
|
144
|
-
children,
|
|
145
|
-
...props
|
|
146
|
-
}) {
|
|
147
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.RadioItem, {
|
|
148
|
-
"data-slot": "context-menu-radio-item",
|
|
149
|
-
className: (0, _utils.cn)("focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
150
|
-
...props
|
|
151
|
-
}, /* @__PURE__ */React.createElement("span", {
|
|
152
|
-
className: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center"
|
|
153
|
-
}, /* @__PURE__ */React.createElement(_radixUi.ContextMenu.ItemIndicator, null, /* @__PURE__ */React.createElement(_lucideReact.CircleIcon, {
|
|
154
|
-
className: "size-2 fill-current"
|
|
155
|
-
}))), children);
|
|
156
|
-
}
|
|
157
|
-
function ContextMenuLabel({
|
|
158
|
-
className,
|
|
159
|
-
inset,
|
|
160
|
-
...props
|
|
161
|
-
}) {
|
|
162
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Label, {
|
|
163
|
-
"data-slot": "context-menu-label",
|
|
164
|
-
"data-inset": inset,
|
|
165
|
-
className: (0, _utils.cn)("text-foreground px-2 py-1.5 text-sm font-medium data-[inset]:pl-8", className),
|
|
166
|
-
...props
|
|
167
|
-
});
|
|
168
|
-
}
|
|
169
|
-
function ContextMenuSeparator({
|
|
170
|
-
className,
|
|
171
|
-
...props
|
|
172
|
-
}) {
|
|
173
|
-
return /* @__PURE__ */React.createElement(_radixUi.ContextMenu.Separator, {
|
|
174
|
-
"data-slot": "context-menu-separator",
|
|
175
|
-
className: (0, _utils.cn)("bg-border -mx-1 my-1 h-px", className),
|
|
176
|
-
...props
|
|
177
|
-
});
|
|
178
|
-
}
|
|
179
|
-
function ContextMenuShortcut({
|
|
180
|
-
className,
|
|
181
|
-
...props
|
|
182
|
-
}) {
|
|
183
|
-
return /* @__PURE__ */React.createElement("span", {
|
|
184
|
-
"data-slot": "context-menu-shortcut",
|
|
185
|
-
className: (0, _utils.cn)("text-muted-foreground ml-auto text-xs tracking-widest", className),
|
|
186
|
-
...props
|
|
187
|
-
});
|
|
188
|
-
}
|