auxalia-ui-kit 1.3.3 → 1.3.4
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/dist/index.cjs +2 -2
- package/dist/index.d.cts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js +1 -1
- package/dist/styles.css +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -35,6 +35,7 @@ __export(index_exports, {
|
|
|
35
35
|
CollapsibleContent: () => CollapsibleContent,
|
|
36
36
|
CollapsibleRoot: () => CollapsibleRoot,
|
|
37
37
|
CollapsibleTrigger: () => CollapsibleTrigger,
|
|
38
|
+
ControlledTable: () => ControlledTable_default,
|
|
38
39
|
DropdownMenu: () => DropdownMenu,
|
|
39
40
|
DropdownMenuCheckboxItem: () => DropdownMenuCheckboxItem,
|
|
40
41
|
DropdownMenuContent: () => DropdownMenuContent,
|
|
@@ -83,7 +84,6 @@ __export(index_exports, {
|
|
|
83
84
|
SelectSeparator: () => SelectSeparator2,
|
|
84
85
|
SelectTrigger: () => SelectTrigger2,
|
|
85
86
|
SelectValue: () => SelectValue2,
|
|
86
|
-
TableView: () => ControlledTable_default,
|
|
87
87
|
Tabs: () => Tabs,
|
|
88
88
|
TabsContent: () => TabsContent,
|
|
89
89
|
TabsList: () => TabsList,
|
|
@@ -7149,6 +7149,7 @@ var AuxaliaTokens = {
|
|
|
7149
7149
|
CollapsibleContent,
|
|
7150
7150
|
CollapsibleRoot,
|
|
7151
7151
|
CollapsibleTrigger,
|
|
7152
|
+
ControlledTable,
|
|
7152
7153
|
DropdownMenu,
|
|
7153
7154
|
DropdownMenuCheckboxItem,
|
|
7154
7155
|
DropdownMenuContent,
|
|
@@ -7197,7 +7198,6 @@ var AuxaliaTokens = {
|
|
|
7197
7198
|
SelectSeparator,
|
|
7198
7199
|
SelectTrigger,
|
|
7199
7200
|
SelectValue,
|
|
7200
|
-
TableView,
|
|
7201
7201
|
Tabs,
|
|
7202
7202
|
TabsContent,
|
|
7203
7203
|
TabsList,
|
package/dist/index.d.cts
CHANGED
|
@@ -16,7 +16,7 @@ import 'tailwindcss';
|
|
|
16
16
|
|
|
17
17
|
declare const buttonVariants: (props?: {
|
|
18
18
|
variant?: "default" | "outline" | "ghost" | "link";
|
|
19
|
-
color?: "
|
|
19
|
+
color?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
20
20
|
size?: "default" | "sm" | "lg" | "icon";
|
|
21
21
|
} & class_variance_authority_types.ClassProp) => string;
|
|
22
22
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -30,7 +30,7 @@ declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Co
|
|
|
30
30
|
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof Collapsible.Content>): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const dropdownMenuItemVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
36
36
|
|
|
@@ -105,7 +105,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
105
105
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
106
106
|
|
|
107
107
|
declare const cardVariants: (props?: {
|
|
108
|
-
variant?: "
|
|
108
|
+
variant?: "default" | "secondary" | "accent" | "outlined" | "elevated" | "success";
|
|
109
109
|
} & class_variance_authority_types.ClassProp) => string;
|
|
110
110
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
111
111
|
|
|
@@ -121,11 +121,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
121
121
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
declare const selectTriggerVariants: (props?: {
|
|
124
|
-
variant?: "
|
|
124
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive" | "error";
|
|
125
125
|
size?: "sm" | "lg" | "md";
|
|
126
126
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
127
|
declare const selectItemVariants: (props?: {
|
|
128
|
-
variant?: "
|
|
128
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
129
129
|
} & class_variance_authority_types.ClassProp) => string;
|
|
130
130
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
131
131
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
|
@@ -198,8 +198,8 @@ interface SortObj {
|
|
|
198
198
|
order: 'asc' | 'desc';
|
|
199
199
|
}
|
|
200
200
|
interface QueryParams {
|
|
201
|
-
limit?: number
|
|
202
|
-
offset?: number
|
|
201
|
+
limit?: number;
|
|
202
|
+
offset?: number;
|
|
203
203
|
search?: {
|
|
204
204
|
value: string;
|
|
205
205
|
};
|
|
@@ -215,7 +215,7 @@ interface TableField {
|
|
|
215
215
|
width?: string | number;
|
|
216
216
|
headAlign?: 'left' | 'center' | 'right';
|
|
217
217
|
textAlign?: 'left' | 'center' | 'right';
|
|
218
|
-
type?: 'customComponent' | 'link' | 'img' | 'bool' | 'text';
|
|
218
|
+
type?: 'customComponent' | 'link' | 'img' | 'bool' | 'text' | 'textWithComponent';
|
|
219
219
|
getValue?: (record: Record<string, any>) => any;
|
|
220
220
|
component?: (props: {
|
|
221
221
|
data: Record<string, any>;
|
|
@@ -372,4 +372,4 @@ declare const AuxaliaTokens: {
|
|
|
372
372
|
|
|
373
373
|
declare function cn(...inputs: ClassValue[]): string;
|
|
374
374
|
|
|
375
|
-
export { AuxaliaTokens, Button, type ButtonProps, Card, CollapsibleContent, CollapsibleRoot, CollapsibleTrigger, type CommonTableProps, type CustomComponentType, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, type FieldOption, FieldSeparator, FieldSet, FieldTitle, type FilterField, Input, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type QueryParams, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SortObj, type TableConfig, type TableField,
|
|
375
|
+
export { AuxaliaTokens, Button, type ButtonProps, Card, CollapsibleContent, CollapsibleRoot, CollapsibleTrigger, type CommonTableProps, ControlledTable, type CustomComponentType, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, type FieldOption, FieldSeparator, FieldSet, FieldTitle, type FilterField, Input, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type QueryParams, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SortObj, type TableConfig, type TableField, Tabs, TabsContent, TabsList, TabsTrigger, Text, type ToolbarActionsProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonVariants, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ import 'tailwindcss';
|
|
|
16
16
|
|
|
17
17
|
declare const buttonVariants: (props?: {
|
|
18
18
|
variant?: "default" | "outline" | "ghost" | "link";
|
|
19
|
-
color?: "
|
|
19
|
+
color?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
20
20
|
size?: "default" | "sm" | "lg" | "icon";
|
|
21
21
|
} & class_variance_authority_types.ClassProp) => string;
|
|
22
22
|
interface ButtonProps extends React.ComponentProps<'button'>, VariantProps<typeof buttonVariants> {
|
|
@@ -30,7 +30,7 @@ declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Co
|
|
|
30
30
|
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof Collapsible.Content>): react_jsx_runtime.JSX.Element;
|
|
31
31
|
|
|
32
32
|
declare const dropdownMenuItemVariants: (props?: {
|
|
33
|
-
variant?: "
|
|
33
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
34
34
|
} & class_variance_authority_types.ClassProp) => string;
|
|
35
35
|
type DropdownMenuItemVariantProps = VariantProps<typeof dropdownMenuItemVariants>;
|
|
36
36
|
|
|
@@ -105,7 +105,7 @@ declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Toolti
|
|
|
105
105
|
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
106
106
|
|
|
107
107
|
declare const cardVariants: (props?: {
|
|
108
|
-
variant?: "
|
|
108
|
+
variant?: "default" | "secondary" | "accent" | "outlined" | "elevated" | "success";
|
|
109
109
|
} & class_variance_authority_types.ClassProp) => string;
|
|
110
110
|
type CardVariantProps = VariantProps<typeof cardVariants>;
|
|
111
111
|
|
|
@@ -121,11 +121,11 @@ type InputProps = Omit<React.ComponentProps<'input'>, 'size'> & InputVariantProp
|
|
|
121
121
|
declare function Input({ size, variant, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
122
122
|
|
|
123
123
|
declare const selectTriggerVariants: (props?: {
|
|
124
|
-
variant?: "
|
|
124
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive" | "error";
|
|
125
125
|
size?: "sm" | "lg" | "md";
|
|
126
126
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
127
|
declare const selectItemVariants: (props?: {
|
|
128
|
-
variant?: "
|
|
128
|
+
variant?: "default" | "primary" | "secondary" | "accent" | "destructive";
|
|
129
129
|
} & class_variance_authority_types.ClassProp) => string;
|
|
130
130
|
type SelectTriggerVariantProps = VariantProps<typeof selectTriggerVariants>;
|
|
131
131
|
type SelectItemVariantProps = VariantProps<typeof selectItemVariants>;
|
|
@@ -198,8 +198,8 @@ interface SortObj {
|
|
|
198
198
|
order: 'asc' | 'desc';
|
|
199
199
|
}
|
|
200
200
|
interface QueryParams {
|
|
201
|
-
limit?: number
|
|
202
|
-
offset?: number
|
|
201
|
+
limit?: number;
|
|
202
|
+
offset?: number;
|
|
203
203
|
search?: {
|
|
204
204
|
value: string;
|
|
205
205
|
};
|
|
@@ -215,7 +215,7 @@ interface TableField {
|
|
|
215
215
|
width?: string | number;
|
|
216
216
|
headAlign?: 'left' | 'center' | 'right';
|
|
217
217
|
textAlign?: 'left' | 'center' | 'right';
|
|
218
|
-
type?: 'customComponent' | 'link' | 'img' | 'bool' | 'text';
|
|
218
|
+
type?: 'customComponent' | 'link' | 'img' | 'bool' | 'text' | 'textWithComponent';
|
|
219
219
|
getValue?: (record: Record<string, any>) => any;
|
|
220
220
|
component?: (props: {
|
|
221
221
|
data: Record<string, any>;
|
|
@@ -372,4 +372,4 @@ declare const AuxaliaTokens: {
|
|
|
372
372
|
|
|
373
373
|
declare function cn(...inputs: ClassValue[]): string;
|
|
374
374
|
|
|
375
|
-
export { AuxaliaTokens, Button, type ButtonProps, Card, CollapsibleContent, CollapsibleRoot, CollapsibleTrigger, type CommonTableProps, type CustomComponentType, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, type FieldOption, FieldSeparator, FieldSet, FieldTitle, type FilterField, Input, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type QueryParams, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SortObj, type TableConfig, type TableField,
|
|
375
|
+
export { AuxaliaTokens, Button, type ButtonProps, Card, CollapsibleContent, CollapsibleRoot, CollapsibleTrigger, type CommonTableProps, ControlledTable, type CustomComponentType, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, type FieldOption, FieldSeparator, FieldSet, FieldTitle, type FilterField, Input, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type QueryParams, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SortObj, type TableConfig, type TableField, Tabs, TabsContent, TabsList, TabsTrigger, Text, type ToolbarActionsProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonVariants, cn };
|
package/dist/index.js
CHANGED
|
@@ -6979,6 +6979,7 @@ export {
|
|
|
6979
6979
|
CollapsibleContent,
|
|
6980
6980
|
CollapsibleRoot,
|
|
6981
6981
|
CollapsibleTrigger,
|
|
6982
|
+
ControlledTable_default as ControlledTable,
|
|
6982
6983
|
DropdownMenu,
|
|
6983
6984
|
DropdownMenuCheckboxItem,
|
|
6984
6985
|
DropdownMenuContent,
|
|
@@ -7027,7 +7028,6 @@ export {
|
|
|
7027
7028
|
SelectSeparator2 as SelectSeparator,
|
|
7028
7029
|
SelectTrigger2 as SelectTrigger,
|
|
7029
7030
|
SelectValue2 as SelectValue,
|
|
7030
|
-
ControlledTable_default as TableView,
|
|
7031
7031
|
Tabs,
|
|
7032
7032
|
TabsContent,
|
|
7033
7033
|
TabsList,
|
package/dist/styles.css
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* Font imports */
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
|
|
3
|
+
|
|
1
4
|
/* inline safelist classes previously stored in safelist.txt */
|
|
2
5
|
@source inline("bg-primary text-primary bg-secondary bg-accent bg-destructive text-primary-foreground bg-primary-hover border-primary ring-primary bg-card bg-popover border-black/10 dark:border-white/10 shadow-md bg-primary/5 bg-primary/10 bg-primary/15 bg-primary/20 bg-primary/25 bg-primary/30 bg-primary/40 bg-primary/50 border-primary/10 border-primary/20 border-primary/25 border-primary/30 border-primary/40 border-primary/50 ring-primary/15 ring-primary/20 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=top]:slide-in-from-bottom-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2");
|
|
3
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auxalia-ui-kit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "A React component library built with Radix UI and Tailwind CSS, designed to provide accessible and customizable UI components for modern web applications.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": {
|