@openui-xio/ui 0.0.2
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/CHANGELOG.md +13 -0
- package/LICENSE +661 -0
- package/README.md +9 -0
- package/components.json +20 -0
- package/package.json +74 -0
- package/postcss.config.mjs +6 -0
- package/src/components/.gitkeep +0 -0
- package/src/components/accordion.tsx +66 -0
- package/src/components/alert-dialog.tsx +157 -0
- package/src/components/alert.tsx +66 -0
- package/src/components/aspect-ratio.tsx +11 -0
- package/src/components/avatar.tsx +53 -0
- package/src/components/badge.tsx +46 -0
- package/src/components/breadcrumb.tsx +109 -0
- package/src/components/button.tsx +46 -0
- package/src/components/calendar.tsx +85 -0
- package/src/components/card.tsx +92 -0
- package/src/components/carousel.tsx +241 -0
- package/src/components/chart.tsx +353 -0
- package/src/components/checkbox.tsx +32 -0
- package/src/components/collapsible.tsx +33 -0
- package/src/components/command.tsx +177 -0
- package/src/components/context-menu.tsx +252 -0
- package/src/components/dialog.tsx +135 -0
- package/src/components/drawer.tsx +132 -0
- package/src/components/dropdown-menu.tsx +257 -0
- package/src/components/form.tsx +168 -0
- package/src/components/hover-card.tsx +44 -0
- package/src/components/input-otp.tsx +77 -0
- package/src/components/input.tsx +21 -0
- package/src/components/label.tsx +24 -0
- package/src/components/menubar.tsx +276 -0
- package/src/components/navigation-menu.tsx +168 -0
- package/src/components/pagination.tsx +126 -0
- package/src/components/popover.tsx +48 -0
- package/src/components/progress.tsx +31 -0
- package/src/components/radio-group.tsx +45 -0
- package/src/components/resizable.tsx +56 -0
- package/src/components/scroll-area.tsx +58 -0
- package/src/components/select.tsx +185 -0
- package/src/components/separator.tsx +28 -0
- package/src/components/sheet.tsx +139 -0
- package/src/components/sidebar.tsx +726 -0
- package/src/components/skeleton.tsx +13 -0
- package/src/components/slider.tsx +63 -0
- package/src/components/sonner.tsx +25 -0
- package/src/components/switch.tsx +31 -0
- package/src/components/table.tsx +116 -0
- package/src/components/tabs.tsx +66 -0
- package/src/components/textarea.tsx +18 -0
- package/src/components/toggle-group.tsx +73 -0
- package/src/components/toggle.tsx +47 -0
- package/src/components/tooltip.tsx +61 -0
- package/src/hooks/.gitkeep +0 -0
- package/src/hooks/use-mobile.ts +21 -0
- package/src/lib/utils.ts +6 -0
- package/src/styles/globals.css +161 -0
- package/tsconfig.json +11 -0
- package/tsconfig.lint.json +8 -0
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as RechartsPrimitive from 'recharts';
|
|
5
|
+
|
|
6
|
+
import { cn } from '@openui-xio/ui/lib/utils';
|
|
7
|
+
|
|
8
|
+
// Format: { THEME_NAME: CSS_SELECTOR }
|
|
9
|
+
const THEMES = { light: '', dark: '.dark' } as const;
|
|
10
|
+
|
|
11
|
+
export type ChartConfig = {
|
|
12
|
+
[k in string]: {
|
|
13
|
+
label?: React.ReactNode;
|
|
14
|
+
icon?: React.ComponentType;
|
|
15
|
+
} & (
|
|
16
|
+
| { color?: string; theme?: never }
|
|
17
|
+
| { color?: never; theme: Record<keyof typeof THEMES, string> }
|
|
18
|
+
);
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
type ChartContextProps = {
|
|
22
|
+
config: ChartConfig;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const ChartContext = React.createContext<ChartContextProps | null>(null);
|
|
26
|
+
|
|
27
|
+
function useChart() {
|
|
28
|
+
const context = React.useContext(ChartContext);
|
|
29
|
+
|
|
30
|
+
if (!context) {
|
|
31
|
+
throw new Error('useChart must be used within a <ChartContainer />');
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return context;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function ChartContainer({
|
|
38
|
+
id,
|
|
39
|
+
className,
|
|
40
|
+
children,
|
|
41
|
+
config,
|
|
42
|
+
...props
|
|
43
|
+
}: React.ComponentProps<'div'> & {
|
|
44
|
+
config: ChartConfig;
|
|
45
|
+
children: React.ComponentProps<
|
|
46
|
+
typeof RechartsPrimitive.ResponsiveContainer
|
|
47
|
+
>['children'];
|
|
48
|
+
}) {
|
|
49
|
+
const uniqueId = React.useId();
|
|
50
|
+
const chartId = `chart-${id || uniqueId.replace(/:/g, '')}`;
|
|
51
|
+
|
|
52
|
+
return (
|
|
53
|
+
<ChartContext.Provider value={{ config }}>
|
|
54
|
+
<div
|
|
55
|
+
data-slot="chart"
|
|
56
|
+
data-chart={chartId}
|
|
57
|
+
className={cn(
|
|
58
|
+
"flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-hidden [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-hidden [&_.recharts-surface]:outline-hidden",
|
|
59
|
+
className,
|
|
60
|
+
)}
|
|
61
|
+
{...props}
|
|
62
|
+
>
|
|
63
|
+
<ChartStyle id={chartId} config={config} />
|
|
64
|
+
<RechartsPrimitive.ResponsiveContainer>
|
|
65
|
+
{children}
|
|
66
|
+
</RechartsPrimitive.ResponsiveContainer>
|
|
67
|
+
</div>
|
|
68
|
+
</ChartContext.Provider>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const ChartStyle = ({ id, config }: { id: string; config: ChartConfig }) => {
|
|
73
|
+
const colorConfig = Object.entries(config).filter(
|
|
74
|
+
([, config]) => config.theme || config.color,
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
if (!colorConfig.length) {
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return (
|
|
82
|
+
<style
|
|
83
|
+
dangerouslySetInnerHTML={{
|
|
84
|
+
__html: Object.entries(THEMES)
|
|
85
|
+
.map(
|
|
86
|
+
([theme, prefix]) => `
|
|
87
|
+
${prefix} [data-chart=${id}] {
|
|
88
|
+
${colorConfig
|
|
89
|
+
.map(([key, itemConfig]) => {
|
|
90
|
+
const color =
|
|
91
|
+
itemConfig.theme?.[theme as keyof typeof itemConfig.theme] ||
|
|
92
|
+
itemConfig.color;
|
|
93
|
+
return color ? ` --color-${key}: ${color};` : null;
|
|
94
|
+
})
|
|
95
|
+
.join('\n')}
|
|
96
|
+
}
|
|
97
|
+
`,
|
|
98
|
+
)
|
|
99
|
+
.join('\n'),
|
|
100
|
+
}}
|
|
101
|
+
/>
|
|
102
|
+
);
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
const ChartTooltip = RechartsPrimitive.Tooltip;
|
|
106
|
+
|
|
107
|
+
function ChartTooltipContent({
|
|
108
|
+
active,
|
|
109
|
+
payload,
|
|
110
|
+
className,
|
|
111
|
+
indicator = 'dot',
|
|
112
|
+
hideLabel = false,
|
|
113
|
+
hideIndicator = false,
|
|
114
|
+
label,
|
|
115
|
+
labelFormatter,
|
|
116
|
+
labelClassName,
|
|
117
|
+
formatter,
|
|
118
|
+
color,
|
|
119
|
+
nameKey,
|
|
120
|
+
labelKey,
|
|
121
|
+
}: React.ComponentProps<typeof RechartsPrimitive.Tooltip> &
|
|
122
|
+
React.ComponentProps<'div'> & {
|
|
123
|
+
hideLabel?: boolean;
|
|
124
|
+
hideIndicator?: boolean;
|
|
125
|
+
indicator?: 'line' | 'dot' | 'dashed';
|
|
126
|
+
nameKey?: string;
|
|
127
|
+
labelKey?: string;
|
|
128
|
+
}) {
|
|
129
|
+
const { config } = useChart();
|
|
130
|
+
|
|
131
|
+
const tooltipLabel = React.useMemo(() => {
|
|
132
|
+
if (hideLabel || !payload?.length) {
|
|
133
|
+
return null;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
const [item] = payload;
|
|
137
|
+
const key = `${labelKey || item?.dataKey || item?.name || 'value'}`;
|
|
138
|
+
const itemConfig = getPayloadConfigFromPayload(config, item, key);
|
|
139
|
+
const value =
|
|
140
|
+
!labelKey && typeof label === 'string'
|
|
141
|
+
? config[label as keyof typeof config]?.label || label
|
|
142
|
+
: itemConfig?.label;
|
|
143
|
+
|
|
144
|
+
if (labelFormatter) {
|
|
145
|
+
return (
|
|
146
|
+
<div className={cn('font-medium', labelClassName)}>
|
|
147
|
+
{labelFormatter(value, payload)}
|
|
148
|
+
</div>
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
if (!value) {
|
|
153
|
+
return null;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
return <div className={cn('font-medium', labelClassName)}>{value}</div>;
|
|
157
|
+
}, [
|
|
158
|
+
label,
|
|
159
|
+
labelFormatter,
|
|
160
|
+
payload,
|
|
161
|
+
hideLabel,
|
|
162
|
+
labelClassName,
|
|
163
|
+
config,
|
|
164
|
+
labelKey,
|
|
165
|
+
]);
|
|
166
|
+
|
|
167
|
+
if (!active || !payload?.length) {
|
|
168
|
+
return null;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
const nestLabel = payload.length === 1 && indicator !== 'dot';
|
|
172
|
+
|
|
173
|
+
return (
|
|
174
|
+
<div
|
|
175
|
+
className={cn(
|
|
176
|
+
'grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl',
|
|
177
|
+
className,
|
|
178
|
+
)}
|
|
179
|
+
>
|
|
180
|
+
{!nestLabel ? tooltipLabel : null}
|
|
181
|
+
<div className="grid gap-1.5">
|
|
182
|
+
{payload.map((item, index) => {
|
|
183
|
+
const key = `${nameKey || item.name || item.dataKey || 'value'}`;
|
|
184
|
+
const itemConfig = getPayloadConfigFromPayload(config, item, key);
|
|
185
|
+
const indicatorColor = color || item.payload.fill || item.color;
|
|
186
|
+
|
|
187
|
+
return (
|
|
188
|
+
<div
|
|
189
|
+
key={item.dataKey}
|
|
190
|
+
className={cn(
|
|
191
|
+
'flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground',
|
|
192
|
+
indicator === 'dot' && 'items-center',
|
|
193
|
+
)}
|
|
194
|
+
>
|
|
195
|
+
{formatter && item?.value !== undefined && item.name ? (
|
|
196
|
+
formatter(item.value, item.name, item, index, item.payload)
|
|
197
|
+
) : (
|
|
198
|
+
<>
|
|
199
|
+
{itemConfig?.icon ? (
|
|
200
|
+
<itemConfig.icon />
|
|
201
|
+
) : (
|
|
202
|
+
!hideIndicator && (
|
|
203
|
+
<div
|
|
204
|
+
className={cn(
|
|
205
|
+
'shrink-0 rounded-[2px] border-(--color-border) bg-(--color-bg)',
|
|
206
|
+
{
|
|
207
|
+
'h-2.5 w-2.5': indicator === 'dot',
|
|
208
|
+
'w-1': indicator === 'line',
|
|
209
|
+
'w-0 border-[1.5px] border-dashed bg-transparent':
|
|
210
|
+
indicator === 'dashed',
|
|
211
|
+
'my-0.5': nestLabel && indicator === 'dashed',
|
|
212
|
+
},
|
|
213
|
+
)}
|
|
214
|
+
style={
|
|
215
|
+
{
|
|
216
|
+
'--color-bg': indicatorColor,
|
|
217
|
+
'--color-border': indicatorColor,
|
|
218
|
+
} as React.CSSProperties
|
|
219
|
+
}
|
|
220
|
+
/>
|
|
221
|
+
)
|
|
222
|
+
)}
|
|
223
|
+
<div
|
|
224
|
+
className={cn(
|
|
225
|
+
'flex flex-1 justify-between leading-none',
|
|
226
|
+
nestLabel ? 'items-end' : 'items-center',
|
|
227
|
+
)}
|
|
228
|
+
>
|
|
229
|
+
<div className="grid gap-1.5">
|
|
230
|
+
{nestLabel ? tooltipLabel : null}
|
|
231
|
+
<span className="text-muted-foreground">
|
|
232
|
+
{itemConfig?.label || item.name}
|
|
233
|
+
</span>
|
|
234
|
+
</div>
|
|
235
|
+
{item.value && (
|
|
236
|
+
<span className="font-medium font-mono text-foreground tabular-nums">
|
|
237
|
+
{item.value.toLocaleString()}
|
|
238
|
+
</span>
|
|
239
|
+
)}
|
|
240
|
+
</div>
|
|
241
|
+
</>
|
|
242
|
+
)}
|
|
243
|
+
</div>
|
|
244
|
+
);
|
|
245
|
+
})}
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
const ChartLegend = RechartsPrimitive.Legend;
|
|
252
|
+
|
|
253
|
+
function ChartLegendContent({
|
|
254
|
+
className,
|
|
255
|
+
hideIcon = false,
|
|
256
|
+
payload,
|
|
257
|
+
verticalAlign = 'bottom',
|
|
258
|
+
nameKey,
|
|
259
|
+
}: React.ComponentProps<'div'> &
|
|
260
|
+
Pick<RechartsPrimitive.LegendProps, 'payload' | 'verticalAlign'> & {
|
|
261
|
+
hideIcon?: boolean;
|
|
262
|
+
nameKey?: string;
|
|
263
|
+
}) {
|
|
264
|
+
const { config } = useChart();
|
|
265
|
+
|
|
266
|
+
if (!payload?.length) {
|
|
267
|
+
return null;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
return (
|
|
271
|
+
<div
|
|
272
|
+
className={cn(
|
|
273
|
+
'flex items-center justify-center gap-4',
|
|
274
|
+
verticalAlign === 'top' ? 'pb-3' : 'pt-3',
|
|
275
|
+
className,
|
|
276
|
+
)}
|
|
277
|
+
>
|
|
278
|
+
{payload.map((item) => {
|
|
279
|
+
const key = `${nameKey || item.dataKey || 'value'}`;
|
|
280
|
+
const itemConfig = getPayloadConfigFromPayload(config, item, key);
|
|
281
|
+
|
|
282
|
+
return (
|
|
283
|
+
<div
|
|
284
|
+
key={item.value}
|
|
285
|
+
className={cn(
|
|
286
|
+
'flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground',
|
|
287
|
+
)}
|
|
288
|
+
>
|
|
289
|
+
{itemConfig?.icon && !hideIcon ? (
|
|
290
|
+
<itemConfig.icon />
|
|
291
|
+
) : (
|
|
292
|
+
<div
|
|
293
|
+
className="h-2 w-2 shrink-0 rounded-[2px]"
|
|
294
|
+
style={{
|
|
295
|
+
backgroundColor: item.color,
|
|
296
|
+
}}
|
|
297
|
+
/>
|
|
298
|
+
)}
|
|
299
|
+
{itemConfig?.label}
|
|
300
|
+
</div>
|
|
301
|
+
);
|
|
302
|
+
})}
|
|
303
|
+
</div>
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// Helper to extract item config from a payload.
|
|
308
|
+
function getPayloadConfigFromPayload(
|
|
309
|
+
config: ChartConfig,
|
|
310
|
+
payload: unknown,
|
|
311
|
+
key: string,
|
|
312
|
+
) {
|
|
313
|
+
if (typeof payload !== 'object' || payload === null) {
|
|
314
|
+
return undefined;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
const payloadPayload =
|
|
318
|
+
'payload' in payload &&
|
|
319
|
+
typeof payload.payload === 'object' &&
|
|
320
|
+
payload.payload !== null
|
|
321
|
+
? payload.payload
|
|
322
|
+
: undefined;
|
|
323
|
+
|
|
324
|
+
let configLabelKey: string = key;
|
|
325
|
+
|
|
326
|
+
if (
|
|
327
|
+
key in payload &&
|
|
328
|
+
typeof payload[key as keyof typeof payload] === 'string'
|
|
329
|
+
) {
|
|
330
|
+
configLabelKey = payload[key as keyof typeof payload] as string;
|
|
331
|
+
} else if (
|
|
332
|
+
payloadPayload &&
|
|
333
|
+
key in payloadPayload &&
|
|
334
|
+
typeof payloadPayload[key as keyof typeof payloadPayload] === 'string'
|
|
335
|
+
) {
|
|
336
|
+
configLabelKey = payloadPayload[
|
|
337
|
+
key as keyof typeof payloadPayload
|
|
338
|
+
] as string;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
return configLabelKey in config
|
|
342
|
+
? config[configLabelKey]
|
|
343
|
+
: config[key as keyof typeof config];
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export {
|
|
347
|
+
ChartContainer,
|
|
348
|
+
ChartTooltip,
|
|
349
|
+
ChartTooltipContent,
|
|
350
|
+
ChartLegend,
|
|
351
|
+
ChartLegendContent,
|
|
352
|
+
ChartStyle,
|
|
353
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
5
|
+
import { CheckIcon } from 'lucide-react';
|
|
6
|
+
|
|
7
|
+
import { cn } from '@openui-xio/ui/lib/utils';
|
|
8
|
+
|
|
9
|
+
function Checkbox({
|
|
10
|
+
className,
|
|
11
|
+
...props
|
|
12
|
+
}: React.ComponentProps<typeof CheckboxPrimitive.Root>) {
|
|
13
|
+
return (
|
|
14
|
+
<CheckboxPrimitive.Root
|
|
15
|
+
data-slot="checkbox"
|
|
16
|
+
className={cn(
|
|
17
|
+
'peer size-4 shrink-0 rounded-[4px] border border-input shadow-xs outline-none transition-shadow focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[state=checked]:border-primary data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground dark:bg-input/30 dark:data-[state=checked]:bg-primary dark:aria-invalid:ring-destructive/40',
|
|
18
|
+
className,
|
|
19
|
+
)}
|
|
20
|
+
{...props}
|
|
21
|
+
>
|
|
22
|
+
<CheckboxPrimitive.Indicator
|
|
23
|
+
data-slot="checkbox-indicator"
|
|
24
|
+
className="flex items-center justify-center text-current transition-none"
|
|
25
|
+
>
|
|
26
|
+
<CheckIcon className="size-3.5" />
|
|
27
|
+
</CheckboxPrimitive.Indicator>
|
|
28
|
+
</CheckboxPrimitive.Root>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export { Checkbox };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
4
|
+
|
|
5
|
+
function Collapsible({
|
|
6
|
+
...props
|
|
7
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>) {
|
|
8
|
+
return <CollapsiblePrimitive.Root data-slot="collapsible" {...props} />;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function CollapsibleTrigger({
|
|
12
|
+
...props
|
|
13
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>) {
|
|
14
|
+
return (
|
|
15
|
+
<CollapsiblePrimitive.CollapsibleTrigger
|
|
16
|
+
data-slot="collapsible-trigger"
|
|
17
|
+
{...props}
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function CollapsibleContent({
|
|
23
|
+
...props
|
|
24
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>) {
|
|
25
|
+
return (
|
|
26
|
+
<CollapsiblePrimitive.CollapsibleContent
|
|
27
|
+
data-slot="collapsible-content"
|
|
28
|
+
{...props}
|
|
29
|
+
/>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { Collapsible, CollapsibleTrigger, CollapsibleContent };
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import { Command as CommandPrimitive } from 'cmdk';
|
|
5
|
+
import { SearchIcon } from 'lucide-react';
|
|
6
|
+
|
|
7
|
+
import { cn } from '@openui-xio/ui/lib/utils';
|
|
8
|
+
import {
|
|
9
|
+
Dialog,
|
|
10
|
+
DialogContent,
|
|
11
|
+
DialogDescription,
|
|
12
|
+
DialogHeader,
|
|
13
|
+
DialogTitle,
|
|
14
|
+
} from '@openui-xio/ui/components/dialog';
|
|
15
|
+
|
|
16
|
+
function Command({
|
|
17
|
+
className,
|
|
18
|
+
...props
|
|
19
|
+
}: React.ComponentProps<typeof CommandPrimitive>) {
|
|
20
|
+
return (
|
|
21
|
+
<CommandPrimitive
|
|
22
|
+
data-slot="command"
|
|
23
|
+
className={cn(
|
|
24
|
+
'flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground',
|
|
25
|
+
className,
|
|
26
|
+
)}
|
|
27
|
+
{...props}
|
|
28
|
+
/>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function CommandDialog({
|
|
33
|
+
title = 'Command Palette',
|
|
34
|
+
description = 'Search for a command to run...',
|
|
35
|
+
children,
|
|
36
|
+
...props
|
|
37
|
+
}: React.ComponentProps<typeof Dialog> & {
|
|
38
|
+
title?: string;
|
|
39
|
+
description?: string;
|
|
40
|
+
}) {
|
|
41
|
+
return (
|
|
42
|
+
<Dialog {...props}>
|
|
43
|
+
<DialogHeader className="sr-only">
|
|
44
|
+
<DialogTitle>{title}</DialogTitle>
|
|
45
|
+
<DialogDescription>{description}</DialogDescription>
|
|
46
|
+
</DialogHeader>
|
|
47
|
+
<DialogContent className="overflow-hidden p-0">
|
|
48
|
+
<Command className="**:data-[slot=command-input-wrapper]:h-12 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[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">
|
|
49
|
+
{children}
|
|
50
|
+
</Command>
|
|
51
|
+
</DialogContent>
|
|
52
|
+
</Dialog>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function CommandInput({
|
|
57
|
+
className,
|
|
58
|
+
...props
|
|
59
|
+
}: React.ComponentProps<typeof CommandPrimitive.Input>) {
|
|
60
|
+
return (
|
|
61
|
+
<div
|
|
62
|
+
data-slot="command-input-wrapper"
|
|
63
|
+
className="flex h-9 items-center gap-2 border-b px-3"
|
|
64
|
+
>
|
|
65
|
+
<SearchIcon className="size-4 shrink-0 opacity-50" />
|
|
66
|
+
<CommandPrimitive.Input
|
|
67
|
+
data-slot="command-input"
|
|
68
|
+
className={cn(
|
|
69
|
+
'flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50',
|
|
70
|
+
className,
|
|
71
|
+
)}
|
|
72
|
+
{...props}
|
|
73
|
+
/>
|
|
74
|
+
</div>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function CommandList({
|
|
79
|
+
className,
|
|
80
|
+
...props
|
|
81
|
+
}: React.ComponentProps<typeof CommandPrimitive.List>) {
|
|
82
|
+
return (
|
|
83
|
+
<CommandPrimitive.List
|
|
84
|
+
data-slot="command-list"
|
|
85
|
+
className={cn(
|
|
86
|
+
'max-h-[300px] scroll-py-1 overflow-y-auto overflow-x-hidden',
|
|
87
|
+
className,
|
|
88
|
+
)}
|
|
89
|
+
{...props}
|
|
90
|
+
/>
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function CommandEmpty({
|
|
95
|
+
...props
|
|
96
|
+
}: React.ComponentProps<typeof CommandPrimitive.Empty>) {
|
|
97
|
+
return (
|
|
98
|
+
<CommandPrimitive.Empty
|
|
99
|
+
data-slot="command-empty"
|
|
100
|
+
className="py-6 text-center text-sm"
|
|
101
|
+
{...props}
|
|
102
|
+
/>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function CommandGroup({
|
|
107
|
+
className,
|
|
108
|
+
...props
|
|
109
|
+
}: React.ComponentProps<typeof CommandPrimitive.Group>) {
|
|
110
|
+
return (
|
|
111
|
+
<CommandPrimitive.Group
|
|
112
|
+
data-slot="command-group"
|
|
113
|
+
className={cn(
|
|
114
|
+
'overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group-heading]]:text-xs',
|
|
115
|
+
className,
|
|
116
|
+
)}
|
|
117
|
+
{...props}
|
|
118
|
+
/>
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function CommandSeparator({
|
|
123
|
+
className,
|
|
124
|
+
...props
|
|
125
|
+
}: React.ComponentProps<typeof CommandPrimitive.Separator>) {
|
|
126
|
+
return (
|
|
127
|
+
<CommandPrimitive.Separator
|
|
128
|
+
data-slot="command-separator"
|
|
129
|
+
className={cn('-mx-1 h-px bg-border', className)}
|
|
130
|
+
{...props}
|
|
131
|
+
/>
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
function CommandItem({
|
|
136
|
+
className,
|
|
137
|
+
...props
|
|
138
|
+
}: React.ComponentProps<typeof CommandPrimitive.Item>) {
|
|
139
|
+
return (
|
|
140
|
+
<CommandPrimitive.Item
|
|
141
|
+
data-slot="command-item"
|
|
142
|
+
className={cn(
|
|
143
|
+
'data-[disabled=true]:opacity-50"size-"])]:size-4 relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden [&_svg:not([class*= data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground [&_svg:not([class*="text-"])]:text-muted-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0',
|
|
144
|
+
className,
|
|
145
|
+
)}
|
|
146
|
+
{...props}
|
|
147
|
+
/>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function CommandShortcut({
|
|
152
|
+
className,
|
|
153
|
+
...props
|
|
154
|
+
}: React.ComponentProps<'span'>) {
|
|
155
|
+
return (
|
|
156
|
+
<span
|
|
157
|
+
data-slot="command-shortcut"
|
|
158
|
+
className={cn(
|
|
159
|
+
'ml-auto text-muted-foreground text-xs tracking-widest',
|
|
160
|
+
className,
|
|
161
|
+
)}
|
|
162
|
+
{...props}
|
|
163
|
+
/>
|
|
164
|
+
);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export {
|
|
168
|
+
Command,
|
|
169
|
+
CommandDialog,
|
|
170
|
+
CommandInput,
|
|
171
|
+
CommandList,
|
|
172
|
+
CommandEmpty,
|
|
173
|
+
CommandGroup,
|
|
174
|
+
CommandItem,
|
|
175
|
+
CommandShortcut,
|
|
176
|
+
CommandSeparator,
|
|
177
|
+
};
|