@kayord/ui 0.0.11 → 0.0.13

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.
@@ -0,0 +1,2 @@
1
+ export { Loader } from "./loader/index.js";
2
+ export { ThemeSwitch } from "./theme-switch/index.js";
@@ -0,0 +1,2 @@
1
+ export { Loader } from "./loader/index.js";
2
+ export { ThemeSwitch } from "./theme-switch/index.js";
@@ -114,4 +114,4 @@ type Props = ButtonPrimitive.Props & {
114
114
  size?: Size;
115
115
  };
116
116
  type Events = ButtonPrimitive.Events;
117
- export { Root, type Props, type Events, Root as Button, type Props as ButtonProps, type Events as ButtonEvents, buttonVariants };
117
+ export { Root, type Props, type Events, Root as Button, type Props as ButtonProps, type Events as ButtonEvents, buttonVariants, };
@@ -9,20 +9,20 @@ const buttonVariants = tv({
9
9
  outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
10
10
  secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80",
11
11
  ghost: "hover:bg-accent hover:text-accent-foreground",
12
- link: "text-primary underline-offset-4 hover:underline"
12
+ link: "text-primary underline-offset-4 hover:underline",
13
13
  },
14
14
  size: {
15
15
  default: "h-10 px-4 py-2",
16
16
  sm: "h-9 rounded-md px-3",
17
17
  lg: "h-11 rounded-md px-8",
18
- icon: "h-10 w-10"
19
- }
18
+ icon: "h-10 w-10",
19
+ },
20
20
  },
21
21
  defaultVariants: {
22
22
  variant: "default",
23
- size: "default"
24
- }
23
+ size: "default",
24
+ },
25
25
  });
26
26
  export { Root,
27
27
  //
28
- Root as Button, buttonVariants };
28
+ Root as Button, buttonVariants, };
@@ -0,0 +1,33 @@
1
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./accordion/index.js";
2
+ export { Alert, AlertDescription, AlertTitle } from "./alert/index.js";
3
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from "./alert-dialog/index.js";
4
+ export { AspectRatio } from "./aspect-ratio/index.js";
5
+ export { Avatar, AvatarFallback, AvatarImage } from "./avatar/index.js";
6
+ export { Badge } from "./badge/index.js";
7
+ export { Button, type ButtonEvents, type ButtonProps } from "./button/index.js";
8
+ export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./card/index.js";
9
+ export { Checkbox } from "./checkbox/index.js";
10
+ export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./collapsible/index.js";
11
+ export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, } from "./context-menu/index.js";
12
+ export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./dialog/index.js";
13
+ export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from "./dropdown-menu/index.js";
14
+ export { Form, FormField, FormItem, FormLabel, FormDescription, FormValidation } from "./form/index.js";
15
+ export { HoverCard, HoverCardContent, HoverCardTrigger } from "./hover-card/index.js";
16
+ export { Input, type InputEvents } from "./input/index.js";
17
+ export { Label } from "./label/index.js";
18
+ export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, } from "./menubar/index.js";
19
+ export { Popover, PopoverContent, PopoverTrigger } from "./popover/index.js";
20
+ export { Progress } from "./progress/index.js";
21
+ export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./radio-group/index.js";
22
+ export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./select/index.js";
23
+ export { Separator } from "./separator/index.js";
24
+ export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, } from "./sheet/index.js";
25
+ export { Skeleton } from "./skeleton/index.js";
26
+ export { Slider } from "./slider/index.js";
27
+ export { Switch } from "./switch/index.js";
28
+ export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "./table/index.js";
29
+ export { Tabs, TabsContent, TabsList, TabsTrigger } from "./tabs/index.js";
30
+ export { Textarea, type TextareaEvents } from "./textarea/index.js";
31
+ export { Toggle } from "./toggle/index.js";
32
+ export { Tooltip } from "./tooltip/index.js";
33
+ export * as ButtonAll from "./button/index.js";
@@ -0,0 +1,33 @@
1
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./accordion/index.js";
2
+ export { Alert, AlertDescription, AlertTitle } from "./alert/index.js";
3
+ export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from "./alert-dialog/index.js";
4
+ export { AspectRatio } from "./aspect-ratio/index.js";
5
+ export { Avatar, AvatarFallback, AvatarImage } from "./avatar/index.js";
6
+ export { Badge } from "./badge/index.js";
7
+ export { Button } from "./button/index.js";
8
+ export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./card/index.js";
9
+ export { Checkbox } from "./checkbox/index.js";
10
+ export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./collapsible/index.js";
11
+ export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, } from "./context-menu/index.js";
12
+ export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./dialog/index.js";
13
+ export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from "./dropdown-menu/index.js";
14
+ export { Form, FormField, FormItem, FormLabel, FormDescription, FormValidation } from "./form/index.js";
15
+ export { HoverCard, HoverCardContent, HoverCardTrigger } from "./hover-card/index.js";
16
+ export { Input } from "./input/index.js";
17
+ export { Label } from "./label/index.js";
18
+ export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, } from "./menubar/index.js";
19
+ export { Popover, PopoverContent, PopoverTrigger } from "./popover/index.js";
20
+ export { Progress } from "./progress/index.js";
21
+ export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./radio-group/index.js";
22
+ export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./select/index.js";
23
+ export { Separator } from "./separator/index.js";
24
+ export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, } from "./sheet/index.js";
25
+ export { Skeleton } from "./skeleton/index.js";
26
+ export { Slider } from "./slider/index.js";
27
+ export { Switch } from "./switch/index.js";
28
+ export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "./table/index.js";
29
+ export { Tabs, TabsContent, TabsList, TabsTrigger } from "./tabs/index.js";
30
+ export { Textarea } from "./textarea/index.js";
31
+ export { Toggle } from "./toggle/index.js";
32
+ export { Tooltip } from "./tooltip/index.js";
33
+ export * as ButtonAll from "./button/index.js";
package/dist/index.d.ts CHANGED
@@ -1,37 +1,3 @@
1
- export { cn, flyAndScale } from "./utils";
2
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./components/ui/accordion";
3
- export { Alert, AlertDescription, AlertTitle } from "./components/ui/alert";
4
- export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./components/ui/alert-dialog";
5
- export { AspectRatio } from "./components/ui/aspect-ratio";
6
- export { Avatar, AvatarFallback, AvatarImage } from "./components/ui/avatar";
7
- export { Badge } from "./components/ui/badge";
8
- export { Button, type ButtonEvents, type ButtonProps } from "./components/ui/button";
9
- export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./components/ui/card";
10
- export { Checkbox } from "./components/ui/checkbox";
11
- export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./components/ui/collapsible";
12
- export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from "./components/ui/context-menu";
13
- export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/ui/dialog";
14
- export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./components/ui/dropdown-menu";
15
- export { Form, FormField, FormItem, FormLabel, FormDescription, FormValidation } from "./components/ui/form";
16
- export { HoverCard, HoverCardContent, HoverCardTrigger } from "./components/ui/hover-card";
17
- export { Input, type InputEvents } from "./components/ui/input";
18
- export { Label } from "./components/ui/label";
19
- export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from "./components/ui/menubar";
20
- export { Popover, PopoverContent, PopoverTrigger } from "./components/ui/popover";
21
- export { Progress } from "./components/ui/progress";
22
- export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./components/ui/radio-group";
23
- export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./components/ui/select";
24
- export { Separator } from "./components/ui/separator";
25
- export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./components/ui/sheet";
26
- export { Skeleton } from "./components/ui/skeleton";
27
- export { Slider } from "./components/ui/slider";
28
- export { Switch } from "./components/ui/switch";
29
- export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "./components/ui/table";
30
- export { Tabs, TabsContent, TabsList, TabsTrigger } from "./components/ui/tabs";
31
- export { Textarea, type TextareaEvents } from "./components/ui/textarea";
32
- export { Toggle } from "./components/ui/toggle";
33
- export { Tooltip } from "./components/ui/tooltip";
34
- export { Loader } from "./components/custom/loader";
35
- export { ThemeSwitch } from "./components/custom/theme-switch";
36
- export { kayordPlugin } from "./tailwind";
37
- export type { ConfigOptions, CustomThemeConfig, ThemeConfig, ThemeProperties } from "./tailwind";
1
+ export * from "./utils.js";
2
+ export * from "./components/ui/index.js";
3
+ export * from "./components/custom/index.js";
package/dist/index.js CHANGED
@@ -1,40 +1,6 @@
1
1
  // Utils
2
- export { cn, flyAndScale } from "./utils";
2
+ export * from "./utils.js";
3
3
  // ShadCN components
4
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./components/ui/accordion";
5
- export { Alert, AlertDescription, AlertTitle } from "./components/ui/alert";
6
- export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./components/ui/alert-dialog";
7
- export { AspectRatio } from "./components/ui/aspect-ratio";
8
- export { Avatar, AvatarFallback, AvatarImage } from "./components/ui/avatar";
9
- export { Badge } from "./components/ui/badge";
10
- export { Button } from "./components/ui/button";
11
- export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./components/ui/card";
12
- export { Checkbox } from "./components/ui/checkbox";
13
- export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./components/ui/collapsible";
14
- export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from "./components/ui/context-menu";
15
- export { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/ui/dialog";
16
- export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./components/ui/dropdown-menu";
17
- export { Form, FormField, FormItem, FormLabel, FormDescription, FormValidation } from "./components/ui/form";
18
- export { HoverCard, HoverCardContent, HoverCardTrigger } from "./components/ui/hover-card";
19
- export { Input } from "./components/ui/input";
20
- export { Label } from "./components/ui/label";
21
- export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from "./components/ui/menubar";
22
- export { Popover, PopoverContent, PopoverTrigger } from "./components/ui/popover";
23
- export { Progress } from "./components/ui/progress";
24
- export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./components/ui/radio-group";
25
- export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./components/ui/select";
26
- export { Separator } from "./components/ui/separator";
27
- export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./components/ui/sheet";
28
- export { Skeleton } from "./components/ui/skeleton";
29
- export { Slider } from "./components/ui/slider";
30
- export { Switch } from "./components/ui/switch";
31
- export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "./components/ui/table";
32
- export { Tabs, TabsContent, TabsList, TabsTrigger } from "./components/ui/tabs";
33
- export { Textarea } from "./components/ui/textarea";
34
- export { Toggle } from "./components/ui/toggle";
35
- export { Tooltip } from "./components/ui/tooltip";
4
+ export * from "./components/ui/index.js";
36
5
  // Custom components
37
- export { Loader } from "./components/custom/loader";
38
- export { ThemeSwitch } from "./components/custom/theme-switch";
39
- // Tailwind Plugin
40
- export { kayordPlugin } from "./tailwind";
6
+ export * from "./components/custom/index.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kayord/ui",
3
3
  "private": false,
4
- "version": "0.0.11",
4
+ "version": "0.0.13",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -24,7 +24,6 @@
24
24
  "sveltekit-superforms": "^1.8.0",
25
25
  "tailwind-merge": "^1.14.0",
26
26
  "tailwind-variants": "^0.1.14",
27
- "tailwindcss": "^3.3.3",
28
27
  "zod": "^3.22.4"
29
28
  },
30
29
  "devDependencies": {
@@ -32,7 +31,6 @@
32
31
  "@sveltejs/adapter-auto": "^2.1.0",
33
32
  "@sveltejs/kit": "^1.25.1",
34
33
  "@sveltejs/package": "^2.2.2",
35
- "@tailwindcss/forms": "^0.5.6",
36
34
  "@typescript-eslint/eslint-plugin": "^6.7.4",
37
35
  "@typescript-eslint/parser": "^6.7.4",
38
36
  "autoprefixer": "^10.4.16",
@@ -46,6 +44,7 @@
46
44
  "publint": "^0.2.3",
47
45
  "svelte": "^4.2.1",
48
46
  "svelte-check": "^3.5.2",
47
+ "tailwindcss": "^3.3.3",
49
48
  "tslib": "^2.6.2",
50
49
  "typescript": "^5.2.2",
51
50
  "vite": "^4.4.11",
@@ -1,2 +0,0 @@
1
- export { kayordPlugin } from "./plugin";
2
- export type { ConfigOptions, CustomThemeConfig, ThemeConfig, ThemeProperties } from "./types";
@@ -1,2 +0,0 @@
1
- // export { kayordPlugin } from "./plugin";
2
- export { kayordPlugin } from "./plugin";
@@ -1,9 +0,0 @@
1
- import type { ConfigOptions } from "./types";
2
- declare const kayordPlugin: {
3
- (options: ConfigOptions): {
4
- handler: import("tailwindcss/types/config").PluginCreator;
5
- config?: Partial<import("tailwindcss").Config> | undefined;
6
- };
7
- __isOptionsFunction: true;
8
- };
9
- export { kayordPlugin };
@@ -1,18 +0,0 @@
1
- import plugin from "tailwindcss/plugin";
2
- const coreConfig = {
3
- theme: {
4
- extend: {}
5
- }
6
- };
7
- const kayordPlugin = plugin.withOptions(() => {
8
- return ({ addBase, theme }) => {
9
- addBase({
10
- h1: { fontSize: theme("fontSize.2xl") },
11
- h2: { fontSize: theme("fontSize.xl") },
12
- h3: { fontSize: theme("fontSize.lg") },
13
- });
14
- };
15
- }, () => {
16
- return { ...coreConfig };
17
- });
18
- export { kayordPlugin };
@@ -1,97 +0,0 @@
1
- export type ConfigOptions = {
2
- themes?: ThemeConfig;
3
- };
4
- export type ThemeConfig = {
5
- custom?: Array<CustomThemeConfig>;
6
- };
7
- export type CustomThemeConfig = {
8
- name: string;
9
- properties: ThemeProperties;
10
- properties_dark?: Partial<ThemeProperties>;
11
- };
12
- export type ThemeProperties = {
13
- '--theme-font-family-base': string;
14
- '--theme-font-family-heading': string;
15
- '--theme-font-color-base': string;
16
- '--theme-font-color-dark': string;
17
- '--theme-rounded-base': string;
18
- '--theme-rounded-container': string;
19
- '--theme-border-base': string;
20
- '--on-primary': string;
21
- '--on-secondary': string;
22
- '--on-tertiary': string;
23
- '--on-success': string;
24
- '--on-warning': string;
25
- '--on-error': string;
26
- '--on-surface': string;
27
- '--color-primary-50': string;
28
- '--color-primary-100': string;
29
- '--color-primary-200': string;
30
- '--color-primary-300': string;
31
- '--color-primary-400': string;
32
- '--color-primary-500': string;
33
- '--color-primary-600': string;
34
- '--color-primary-700': string;
35
- '--color-primary-800': string;
36
- '--color-primary-900': string;
37
- '--color-secondary-50': string;
38
- '--color-secondary-100': string;
39
- '--color-secondary-200': string;
40
- '--color-secondary-300': string;
41
- '--color-secondary-400': string;
42
- '--color-secondary-500': string;
43
- '--color-secondary-600': string;
44
- '--color-secondary-700': string;
45
- '--color-secondary-800': string;
46
- '--color-secondary-900': string;
47
- '--color-tertiary-50': string;
48
- '--color-tertiary-100': string;
49
- '--color-tertiary-200': string;
50
- '--color-tertiary-300': string;
51
- '--color-tertiary-400': string;
52
- '--color-tertiary-500': string;
53
- '--color-tertiary-600': string;
54
- '--color-tertiary-700': string;
55
- '--color-tertiary-800': string;
56
- '--color-tertiary-900': string;
57
- '--color-success-50': string;
58
- '--color-success-100': string;
59
- '--color-success-200': string;
60
- '--color-success-300': string;
61
- '--color-success-400': string;
62
- '--color-success-500': string;
63
- '--color-success-600': string;
64
- '--color-success-700': string;
65
- '--color-success-800': string;
66
- '--color-success-900': string;
67
- '--color-warning-50': string;
68
- '--color-warning-100': string;
69
- '--color-warning-200': string;
70
- '--color-warning-300': string;
71
- '--color-warning-400': string;
72
- '--color-warning-500': string;
73
- '--color-warning-600': string;
74
- '--color-warning-700': string;
75
- '--color-warning-800': string;
76
- '--color-warning-900': string;
77
- '--color-error-50': string;
78
- '--color-error-100': string;
79
- '--color-error-200': string;
80
- '--color-error-300': string;
81
- '--color-error-400': string;
82
- '--color-error-500': string;
83
- '--color-error-600': string;
84
- '--color-error-700': string;
85
- '--color-error-800': string;
86
- '--color-error-900': string;
87
- '--color-surface-50': string;
88
- '--color-surface-100': string;
89
- '--color-surface-200': string;
90
- '--color-surface-300': string;
91
- '--color-surface-400': string;
92
- '--color-surface-500': string;
93
- '--color-surface-600': string;
94
- '--color-surface-700': string;
95
- '--color-surface-800': string;
96
- '--color-surface-900': string;
97
- };
@@ -1 +0,0 @@
1
- export {};