@buillaume.biondo/fab-ui 0.1.0
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/LICENSE +21 -0
- package/dist/components/alert/Alert.vue.d.ts +41 -0
- package/dist/components/alert/AlertDescription.vue.d.ts +21 -0
- package/dist/components/alert/AlertTitle.vue.d.ts +21 -0
- package/dist/components/alert/index.d.ts +3 -0
- package/dist/components/avatar/Avatar.vue.d.ts +23 -0
- package/dist/components/avatar/AvatarFallback.vue.d.ts +22 -0
- package/dist/components/avatar/AvatarImage.vue.d.ts +18 -0
- package/dist/components/avatar/index.d.ts +3 -0
- package/dist/components/badge/Badge.vue.d.ts +31 -0
- package/dist/components/badge/OverlayBadge.vue.d.ts +30 -0
- package/dist/components/badge/index.d.ts +10 -0
- package/dist/components/breadcrumb/Breadcrumb.vue.d.ts +21 -0
- package/dist/components/breadcrumb/BreadcrumbEllipsis.vue.d.ts +21 -0
- package/dist/components/breadcrumb/BreadcrumbItem.vue.d.ts +21 -0
- package/dist/components/breadcrumb/BreadcrumbLink.vue.d.ts +24 -0
- package/dist/components/breadcrumb/BreadcrumbList.vue.d.ts +21 -0
- package/dist/components/breadcrumb/BreadcrumbPage.vue.d.ts +21 -0
- package/dist/components/breadcrumb/BreadcrumbSeparator.vue.d.ts +21 -0
- package/dist/components/breadcrumb/index.d.ts +7 -0
- package/dist/components/button/Button.vue.d.ts +47 -0
- package/dist/components/button/index.d.ts +11 -0
- package/dist/components/card/Card.vue.d.ts +35 -0
- package/dist/components/card/CardAction.vue.d.ts +21 -0
- package/dist/components/card/CardContent.vue.d.ts +21 -0
- package/dist/components/card/CardDescription.vue.d.ts +21 -0
- package/dist/components/card/CardFooter.vue.d.ts +21 -0
- package/dist/components/card/CardHeader.vue.d.ts +24 -0
- package/dist/components/card/CardTitle.vue.d.ts +21 -0
- package/dist/components/card/index.d.ts +7 -0
- package/dist/components/carousel/Carousel.vue.d.ts +43 -0
- package/dist/components/carousel/CarouselSlide.vue.d.ts +24 -0
- package/dist/components/carousel/index.d.ts +2 -0
- package/dist/components/checkbox/Checkbox.vue.d.ts +29 -0
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/code/Code.vue.d.ts +37 -0
- package/dist/components/code/index.d.ts +1 -0
- package/dist/components/collapsible/Collapsible.vue.d.ts +24 -0
- package/dist/components/collapsible/CollapsibleContent.vue.d.ts +28 -0
- package/dist/components/collapsible/CollapsibleTrigger.vue.d.ts +18 -0
- package/dist/components/collapsible/index.d.ts +3 -0
- package/dist/components/context-menu/ContextMenu.vue.d.ts +22 -0
- package/dist/components/context-menu/ContextMenuCheckboxItem.vue.d.ts +27 -0
- package/dist/components/context-menu/ContextMenuContent.vue.d.ts +33 -0
- package/dist/components/context-menu/ContextMenuGroup.vue.d.ts +18 -0
- package/dist/components/context-menu/ContextMenuItem.vue.d.ts +25 -0
- package/dist/components/context-menu/ContextMenuLabel.vue.d.ts +22 -0
- package/dist/components/context-menu/ContextMenuRadioGroup.vue.d.ts +22 -0
- package/dist/components/context-menu/ContextMenuRadioItem.vue.d.ts +25 -0
- package/dist/components/context-menu/ContextMenuSeparator.vue.d.ts +6 -0
- package/dist/components/context-menu/ContextMenuShortcut.vue.d.ts +20 -0
- package/dist/components/context-menu/ContextMenuSub.vue.d.ts +22 -0
- package/dist/components/context-menu/ContextMenuSubContent.vue.d.ts +37 -0
- package/dist/components/context-menu/ContextMenuSubTrigger.vue.d.ts +22 -0
- package/dist/components/context-menu/ContextMenuTrigger.vue.d.ts +18 -0
- package/dist/components/context-menu/index.d.ts +14 -0
- package/dist/components/data-table/index.d.ts +2 -0
- package/dist/components/data-table/types.d.ts +14 -0
- package/dist/components/dialog/Dialog.vue.d.ts +25 -0
- package/dist/components/dialog/DialogClose.vue.d.ts +18 -0
- package/dist/components/dialog/DialogContent.vue.d.ts +39 -0
- package/dist/components/dialog/DialogDescription.vue.d.ts +22 -0
- package/dist/components/dialog/DialogFooter.vue.d.ts +21 -0
- package/dist/components/dialog/DialogHeader.vue.d.ts +21 -0
- package/dist/components/dialog/DialogOverlay.vue.d.ts +22 -0
- package/dist/components/dialog/DialogScrollContent.vue.d.ts +36 -0
- package/dist/components/dialog/DialogTitle.vue.d.ts +22 -0
- package/dist/components/dialog/DialogTrigger.vue.d.ts +18 -0
- package/dist/components/dialog/index.d.ts +10 -0
- package/dist/components/dropdown-menu/DropdownMenu.vue.d.ts +24 -0
- package/dist/components/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +29 -0
- package/dist/components/dropdown-menu/DropdownMenuContent.vue.d.ts +36 -0
- package/dist/components/dropdown-menu/DropdownMenuGroup.vue.d.ts +18 -0
- package/dist/components/dropdown-menu/DropdownMenuItem.vue.d.ts +26 -0
- package/dist/components/dropdown-menu/DropdownMenuLabel.vue.d.ts +23 -0
- package/dist/components/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +22 -0
- package/dist/components/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +27 -0
- package/dist/components/dropdown-menu/DropdownMenuSeparator.vue.d.ts +7 -0
- package/dist/components/dropdown-menu/DropdownMenuShortcut.vue.d.ts +21 -0
- package/dist/components/dropdown-menu/DropdownMenuSub.vue.d.ts +22 -0
- package/dist/components/dropdown-menu/DropdownMenuSubContent.vue.d.ts +38 -0
- package/dist/components/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +23 -0
- package/dist/components/dropdown-menu/DropdownMenuTrigger.vue.d.ts +18 -0
- package/dist/components/dropdown-menu/index.d.ts +15 -0
- package/dist/components/image/Image.vue.d.ts +30 -0
- package/dist/components/image/index.d.ts +1 -0
- package/dist/components/input/Input.vue.d.ts +16 -0
- package/dist/components/input/InputArea.vue.d.ts +21 -0
- package/dist/components/input/InputNumber.vue.d.ts +22 -0
- package/dist/components/input/InputPassword.vue.d.ts +15 -0
- package/dist/components/input/index.d.ts +4 -0
- package/dist/components/input-otp/InputOTP.vue.d.ts +46 -0
- package/dist/components/input-otp/InputOTPGroup.vue.d.ts +21 -0
- package/dist/components/input-otp/InputOTPSeparator.vue.d.ts +21 -0
- package/dist/components/input-otp/InputOTPSlot.vue.d.ts +7 -0
- package/dist/components/input-otp/index.d.ts +4 -0
- package/dist/components/label/Label.vue.d.ts +21 -0
- package/dist/components/label/index.d.ts +1 -0
- package/dist/components/navigation-menu/NavigationMenu.vue.d.ts +31 -0
- package/dist/components/navigation-menu/NavigationMenuContent.vue.d.ts +32 -0
- package/dist/components/navigation-menu/NavigationMenuIndicator.vue.d.ts +7 -0
- package/dist/components/navigation-menu/NavigationMenuItem.vue.d.ts +22 -0
- package/dist/components/navigation-menu/NavigationMenuLink.vue.d.ts +30 -0
- package/dist/components/navigation-menu/NavigationMenuList.vue.d.ts +22 -0
- package/dist/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +22 -0
- package/dist/components/navigation-menu/NavigationMenuViewport.vue.d.ts +7 -0
- package/dist/components/navigation-menu/index.d.ts +9 -0
- package/dist/components/progress/ProgressBar.vue.d.ts +17 -0
- package/dist/components/progress/index.d.ts +1 -0
- package/dist/components/select/Select.vue.d.ts +28 -0
- package/dist/components/select/SelectContent.vue.d.ts +32 -0
- package/dist/components/select/SelectGroup.vue.d.ts +18 -0
- package/dist/components/select/SelectItem.vue.d.ts +23 -0
- package/dist/components/select/SelectItemText.vue.d.ts +18 -0
- package/dist/components/select/SelectLabel.vue.d.ts +22 -0
- package/dist/components/select/SelectScrollDownButton.vue.d.ts +22 -0
- package/dist/components/select/SelectScrollUpButton.vue.d.ts +22 -0
- package/dist/components/select/SelectSeparator.vue.d.ts +7 -0
- package/dist/components/select/SelectTrigger.vue.d.ts +25 -0
- package/dist/components/select/SelectValue.vue.d.ts +18 -0
- package/dist/components/select/index.d.ts +11 -0
- package/dist/components/separator/Separator.vue.d.ts +10 -0
- package/dist/components/separator/index.d.ts +1 -0
- package/dist/components/sheet/Sheet.vue.d.ts +25 -0
- package/dist/components/sheet/SheetClose.vue.d.ts +18 -0
- package/dist/components/sheet/SheetContent.vue.d.ts +39 -0
- package/dist/components/sheet/SheetDescription.vue.d.ts +22 -0
- package/dist/components/sheet/SheetFooter.vue.d.ts +21 -0
- package/dist/components/sheet/SheetHeader.vue.d.ts +21 -0
- package/dist/components/sheet/SheetOverlay.vue.d.ts +22 -0
- package/dist/components/sheet/SheetTitle.vue.d.ts +22 -0
- package/dist/components/sheet/SheetTrigger.vue.d.ts +18 -0
- package/dist/components/sheet/index.d.ts +8 -0
- package/dist/components/sidebar/Sidebar.vue.d.ts +24 -0
- package/dist/components/sidebar/SidebarContent.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarFooter.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarGroup.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarGroupAction.vue.d.ts +22 -0
- package/dist/components/sidebar/SidebarGroupContent.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarGroupLabel.vue.d.ts +22 -0
- package/dist/components/sidebar/SidebarHeader.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarInput.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarInset.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarMenu.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarMenuAction.vue.d.ts +25 -0
- package/dist/components/sidebar/SidebarMenuBadge.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarMenuButton.vue.d.ts +27 -0
- package/dist/components/sidebar/SidebarMenuButtonChild.vue.d.ts +30 -0
- package/dist/components/sidebar/SidebarMenuItem.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarMenuSkeleton.vue.d.ts +7 -0
- package/dist/components/sidebar/SidebarMenuSub.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarMenuSubButton.vue.d.ts +27 -0
- package/dist/components/sidebar/SidebarMenuSubItem.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarProvider.vue.d.ts +30 -0
- package/dist/components/sidebar/SidebarRail.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarSeparator.vue.d.ts +21 -0
- package/dist/components/sidebar/SidebarTrigger.vue.d.ts +6 -0
- package/dist/components/sidebar/index.d.ts +37 -0
- package/dist/components/sidebar/utils.d.ts +17 -0
- package/dist/components/skeleton/Skeleton.vue.d.ts +5 -0
- package/dist/components/skeleton/index.d.ts +1 -0
- package/dist/components/slider/Slider.vue.d.ts +19 -0
- package/dist/components/slider/index.d.ts +1 -0
- package/dist/components/speed-dial/SpeedDial.vue.d.ts +26 -0
- package/dist/components/speed-dial/index.d.ts +2 -0
- package/dist/components/spinner/Spinner.vue.d.ts +6 -0
- package/dist/components/spinner/index.d.ts +1 -0
- package/dist/components/split-button/SplitButton.vue.d.ts +44 -0
- package/dist/components/split-button/index.d.ts +1 -0
- package/dist/components/toast/Toast.vue.d.ts +10 -0
- package/dist/components/toast/Toaster.vue.d.ts +2 -0
- package/dist/components/toast/index.d.ts +4 -0
- package/dist/components/toggle/Toggle.vue.d.ts +39 -0
- package/dist/components/toggle/index.d.ts +1 -0
- package/dist/components/toggle-switch/ToggleSwitch.vue.d.ts +19 -0
- package/dist/components/toggle-switch/index.d.ts +1 -0
- package/dist/components/tooltip/Tooltip.vue.d.ts +24 -0
- package/dist/components/tooltip/TooltipContent.vue.d.ts +30 -0
- package/dist/components/tooltip/TooltipProvider.vue.d.ts +20 -0
- package/dist/components/tooltip/TooltipTrigger.vue.d.ts +18 -0
- package/dist/components/tooltip/index.d.ts +4 -0
- package/dist/composables/useAppearance.d.ts +13 -0
- package/dist/composables/useToast.d.ts +22 -0
- package/dist/index.cjs +12 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +57126 -0
- package/dist/lib/utils.d.ts +5 -0
- package/dist/style.css +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/ui-kit.d.ts +12 -0
- package/dist/types/ui.d.ts +3 -0
- package/fonts/marianne/Marianne-Bold.woff +0 -0
- package/fonts/marianne/Marianne-Bold.woff2 +0 -0
- package/fonts/marianne/Marianne-Bold_Italic.woff +0 -0
- package/fonts/marianne/Marianne-Bold_Italic.woff2 +0 -0
- package/fonts/marianne/Marianne-ExtraBold.woff +0 -0
- package/fonts/marianne/Marianne-ExtraBold.woff2 +0 -0
- package/fonts/marianne/Marianne-ExtraBold_Italic.woff +0 -0
- package/fonts/marianne/Marianne-ExtraBold_Italic.woff2 +0 -0
- package/fonts/marianne/Marianne-Light.woff +0 -0
- package/fonts/marianne/Marianne-Light.woff2 +0 -0
- package/fonts/marianne/Marianne-Light_Italic.woff +0 -0
- package/fonts/marianne/Marianne-Light_Italic.woff2 +0 -0
- package/fonts/marianne/Marianne-Medium.woff +0 -0
- package/fonts/marianne/Marianne-Medium.woff2 +0 -0
- package/fonts/marianne/Marianne-Medium_Italic.woff +0 -0
- package/fonts/marianne/Marianne-Medium_Italic.woff2 +0 -0
- package/fonts/marianne/Marianne-Regular.woff +0 -0
- package/fonts/marianne/Marianne-Regular.woff2 +0 -0
- package/fonts/marianne/Marianne-Regular_Italic.woff +0 -0
- package/fonts/marianne/Marianne-Regular_Italic.woff2 +0 -0
- package/fonts/marianne/Marianne-Thin.woff +0 -0
- package/fonts/marianne/Marianne-Thin.woff2 +0 -0
- package/fonts/marianne/Marianne-Thin_Italic.woff +0 -0
- package/fonts/marianne/Marianne-Thin_Italic.woff2 +0 -0
- package/package.json +55 -0
- package/readme.md +1525 -0
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap";@custom-variant dark (&:is(.dark *));@theme inline{ --font-display: "Marianne", system-ui, sans-serif; --font-sans: "DM Sans", system-ui, sans-serif; --font-mono: "JetBrains Mono", ui-monospace, monospace; --radius-sm: var(--radius-sm); --radius-md: var(--radius-md); --radius-lg: var(--radius-lg); --radius-full: var(--radius-full); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-destructive: var(--destructive); --color-destructive-foreground: var(--destructive-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-sidebar: var(--sidebar-background); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-border: var(--sidebar-border); --color-sidebar-ring: var(--sidebar-ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); }:root{--brand-975: #f4f6ff;--brand-950: #e8edff;--brand-900: #c5d2f7;--brand-800: #92aef0;--brand-700: #5a85e8;--brand-600: #2d62d9;--brand-500: #1a4fbf;--brand-400: #1242a3;--brand-300: #0d3282;--brand-200: #092561;--brand-100: #061a45;--brand-50: #030e26;--grey-975: #f6f6f6;--grey-950: #eeeeee;--grey-900: #e5e5e5;--grey-850: #cecece;--grey-800: #b7b7b7;--grey-625: #929292;--grey-425: #666666;--grey-200: #3a3a3a;--grey-50: #161616;--radius-sm: 4px;--radius-md: 6px;--radius-lg: 10px;--radius-full: 9999px;--shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);--shadow-md: 0 4px 12px rgba(0, 0, 0, .08);--shadow-lg: 0 8px 24px rgba(0, 0, 0, .12);--transition-fast: .1s ease;--transition-base: .2s ease;--transition-slow: .35s ease;--color-bg: #ffffff;--color-bg-subtle: var(--grey-975);--color-bg-raised: #ffffff;--color-border: var(--grey-900);--color-border-strong: var(--grey-800);--color-text: var(--grey-50);--color-text-subtle: var(--grey-425);--color-text-disabled: var(--grey-625);--color-text-inverse: #ffffff;--color-action: var(--brand-500);--color-action-hover: var(--brand-400);--color-action-active: var(--brand-300);--color-success: #18753c;--color-success-bg: #dffee8;--color-warning: #b34000;--color-warning-bg: #fff3e5;--color-danger: #ce0500;--color-danger-bg: #fee2e2;--color-info: var(--brand-500);--color-info-bg: var(--brand-975);--color-help: #7c3aed;--color-help-bg: #f5f3ff;--color-contrast: #1f2937;--color-contrast-bg: #f9fafb;--color-state-idle: var(--grey-625);--color-state-run: #16a34a;--color-state-hold: #d97706;--color-state-alarm: #dc2626;--color-state-estop: #b91c1c;--color-state-home: var(--brand-600);--color-state-unreachable: var(--grey-850);--color-laser: #00ff41;--color-laser-glow: rgba(0, 255, 65, .15);--background: #ffffff;--foreground: var(--grey-50);--card: #ffffff;--card-foreground: var(--grey-50);--popover: #ffffff;--popover-foreground: var(--grey-50);--primary: var(--brand-500);--primary-foreground: #ffffff;--secondary: var(--grey-950);--secondary-foreground: var(--grey-50);--muted: var(--grey-975);--muted-foreground: var(--grey-425);--accent: var(--brand-975);--accent-foreground: var(--brand-500);--destructive: #ce0500;--destructive-foreground: #ffffff;--border: var(--grey-900);--input: var(--grey-950);--ring: var(--brand-500);--sidebar-background: var(--grey-975);--sidebar-foreground: var(--grey-200);--sidebar-primary: var(--brand-500);--sidebar-primary-foreground: #ffffff;--sidebar-accent: var(--brand-975);--sidebar-accent-foreground: var(--brand-400);--sidebar-border: var(--grey-900);--sidebar-ring: var(--brand-500);--chart-1: var(--brand-500);--chart-2: #18753c;--chart-3: #b34000;--chart-4: #d97706;--chart-5: var(--brand-700)}.dark{--color-bg: #161616;--color-bg-subtle: #1e1e1e;--color-bg-raised: #2a2a2a;--color-border: #3a3a3a;--color-border-strong: #666666;--color-danger-bg: #2d1515;--color-success-bg: #0f2d1a;--color-warning-bg: #2d1a08;--color-info-bg: #0f1a38;--color-help-bg: #1e1038;--color-contrast-bg: #1f2937;--color-contrast: #f9fafb;--color-help: #a78bfa;--color-text: #eeeeee;--color-text-subtle: #929292;--color-text-disabled: #666666;--color-text-inverse: #161616;--color-action: var(--brand-700);--color-action-hover: var(--brand-800);--color-action-active: var(--brand-600);--color-state-run: #00ff41;--color-state-alarm: #ff3333;--color-state-estop: #ff0000;--color-laser: #00ff41;--color-laser-glow: rgba(0, 255, 65, .15);--background: #161616;--foreground: #eeeeee;--card: #1e1e1e;--card-foreground: #eeeeee;--popover: #1e1e1e;--popover-foreground: #eeeeee;--primary: var(--brand-700);--primary-foreground: #ffffff;--secondary: #2a2a2a;--secondary-foreground: #eeeeee;--muted: #1e1e1e;--muted-foreground: #929292;--accent: #2a2a2a;--accent-foreground: var(--brand-800);--destructive: #ff3333;--destructive-foreground: #ffffff;--border: #3a3a3a;--input: #2a2a2a;--ring: var(--brand-700);--sidebar-background: #0f0f0f;--sidebar-foreground: #eeeeee;--sidebar-primary: var(--brand-700);--sidebar-primary-foreground: #ffffff;--sidebar-accent: #1e1e1e;--sidebar-accent-foreground: var(--brand-800);--sidebar-border: #3a3a3a;--sidebar-ring: var(--brand-700);--chart-1: var(--brand-700);--chart-2: #00ff41;--chart-3: #ff6600;--chart-4: #d97706;--chart-5: var(--brand-800)}[data-radius=square]{--radius-sm: 0px;--radius-md: 2px;--radius-lg: 2px;--radius-full: 2px}@layer base{*,:after,:before,::backdrop,::file-selector-button{border-color:var(--border)}*{@apply border-border outline-ring/50;}html{font-family:DM Sans,system-ui,sans-serif}body{@apply bg-background text-foreground;font-family:DM Sans,system-ui,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{font-family:Marianne,system-ui,sans-serif}code,pre,kbd,samp{font-family:JetBrains Mono,ui-monospace,monospace}}@keyframes pulse-run{0%,to{opacity:1}50%{opacity:.6}}@keyframes flash-alarm{0%,to{opacity:1}50%{opacity:.3}}.animate-pulse-run{animation:pulse-run 2s ease-in-out infinite}.animate-flash-alarm{animation:flash-alarm .6s ease-in-out infinite}div[data-v-93b421e9]::-webkit-scrollbar{display:none}.hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-keyword,.hljs-formula{color:#c678dd}.hljs-section,.hljs-name,.hljs-selector-tag,.hljs-deletion,.hljs-subst{color:#e06c75}.hljs-literal{color:#56b6c2}.hljs-string,.hljs-regexp,.hljs-addition,.hljs-attribute,.hljs-meta .hljs-string{color:#98c379}.hljs-attr,.hljs-variable,.hljs-template-variable,.hljs-type,.hljs-selector-class,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-number{color:#d19a66}.hljs-symbol,.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-title{color:#61aeee}.hljs-built_in,.hljs-title.class_,.hljs-class .hljs-title{color:#e6c07b}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}@keyframes indeterminate-eeebe18a{0%{transform:translate(-100%)}50%{transform:translate(150%)}to{transform:translate(400%)}}.dial-enter-active[data-v-8399d4a5],.dial-leave-active[data-v-8399d4a5]{transition:opacity .15s ease,transform .15s ease}.dial-enter-from[data-v-8399d4a5],.dial-leave-to[data-v-8399d4a5]{opacity:0;transform:scale(.75)}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** Sévérité sémantique — commun à Button, Badge, Alert, Card, Tag… */
|
|
2
|
+
export type Severity = 'primary' | 'secondary' | 'success' | 'danger' | 'info' | 'warning' | 'help' | 'contrast';
|
|
3
|
+
/** Taille standardisée — commun à Button, Badge, Avatar, Input… */
|
|
4
|
+
export type Size = 'tiny' | 'small' | 'default' | 'large' | 'extra';
|
|
5
|
+
/** Forme du Button */
|
|
6
|
+
export type ButtonShape = 'plain' | 'outline' | 'ghost' | 'link';
|
|
7
|
+
/** Forme du Badge */
|
|
8
|
+
export type BadgeShape = 'filled' | 'outline' | 'ghost';
|
|
9
|
+
/** Renvoie la CSS custom property de couleur principale pour une sévérité */
|
|
10
|
+
export declare const severityColorVar: Record<Severity, string>;
|
|
11
|
+
/** Renvoie la CSS custom property de couleur de fond pour une sévérité */
|
|
12
|
+
export declare const severityBgVar: Record<Severity, string>;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@buillaume.biondo/fab-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"fonts"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/index.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./style": "./dist/style.css"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "vite build",
|
|
22
|
+
"dev": "vite build --watch",
|
|
23
|
+
"prepare": "npm run build"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@vueuse/core": "^12.0.0",
|
|
27
|
+
"class-variance-authority": "^0.7.0",
|
|
28
|
+
"lucide-vue-next": ">=0.400.0",
|
|
29
|
+
"reka-ui": "^2.0.0",
|
|
30
|
+
"tailwindcss": "^4.0.0",
|
|
31
|
+
"vue": "^3.5.0",
|
|
32
|
+
"vue-input-otp": "^0.3.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"@inertiajs/vue3": {
|
|
36
|
+
"optional": true
|
|
37
|
+
},
|
|
38
|
+
"vue-input-otp": {
|
|
39
|
+
"optional": true
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"clsx": "^2.1.1",
|
|
44
|
+
"highlight.js": "^11.0.0",
|
|
45
|
+
"tailwind-merge": "^3.2.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
49
|
+
"typescript": "^5.2.0",
|
|
50
|
+
"vite": "^7.0.0",
|
|
51
|
+
"vite-plugin-dts": "^4.0.0",
|
|
52
|
+
"vue": "^3.5.13",
|
|
53
|
+
"vue-input-otp": "^0.3.2"
|
|
54
|
+
}
|
|
55
|
+
}
|