- Fastify API・Node Worker・PostgreSQL・S3互換ストレージ構成
- ADP ZIPのマルチパートアップロードとManifest検証(パストラバーサル・ZIP爆弾等を拒否)
- manifest.json/signatureは再シリアライズせず元バイト列を保持
- Cloudflare風の運用向け管理ダッシュボード(shadcn/Radix・日本語UI・4ルート)
概要/Sources/アプリ/リリース + ルートランディングページ
- 汎用OIDC SSO・Workspace単位の認可・demo mode
- 匿名配布: /sources/{slug}/source.json, /artifacts/{releaseId}/manifest.json
- Docker Compose対応
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { Command as CommandPrimitive } from "cmdk";
|
|
import type { ComponentPropsWithoutRef } from "react";
|
|
import { cn } from "./utils";
|
|
|
|
export function Command({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive>) {
|
|
return <CommandPrimitive className={cn("ui-command", className)} {...props} />;
|
|
}
|
|
|
|
export function CommandInput({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive.Input>) {
|
|
return <CommandPrimitive.Input className={cn("ui-command-input", className)} {...props} />;
|
|
}
|
|
|
|
export function CommandList({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive.List>) {
|
|
return <CommandPrimitive.List className={cn("ui-command-list", className)} {...props} />;
|
|
}
|
|
|
|
export function CommandEmpty({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive.Empty>) {
|
|
return <CommandPrimitive.Empty className={cn("ui-command-empty", className)} {...props} />;
|
|
}
|
|
|
|
export function CommandGroup({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive.Group>) {
|
|
return <CommandPrimitive.Group className={cn("ui-command-group", className)} {...props} />;
|
|
}
|
|
|
|
export function CommandItem({ className, ...props }: ComponentPropsWithoutRef<typeof CommandPrimitive.Item>) {
|
|
return <CommandPrimitive.Item className={cn("ui-command-item", className)} {...props} />;
|
|
}
|
|
|