@6thbridge/hexa 0.0.20 → 0.0.21
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/.turbo/turbo-lint.log +1 -1
- package/dist/index.d.mts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/.turbo/turbo-lint.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
WARN Issue while reading "/Users/joachim/.nvm/versions/node/v20.17.0/lib/node_modules/npmrc". EISDIR: illegal operation on a directory, read
|
2
2
|
|
3
|
-
> @6thbridge/hexa@0.0.
|
3
|
+
> @6thbridge/hexa@0.0.21 lint /Users/joachim/Documents/dev/payfusion/payfusion-component-library/packages/6thbridge-hexa
|
4
4
|
> eslint . --max-warnings 0
|
5
5
|
|
package/dist/index.d.mts
CHANGED
@@ -236,13 +236,6 @@ type PaginationProps = {
|
|
236
236
|
itemsPerPage?: number;
|
237
237
|
};
|
238
238
|
|
239
|
-
type Variant = "success" | "failed" | "pending" | "abandoned";
|
240
|
-
declare const Status: ({ status, variant, className, }: {
|
241
|
-
status: string;
|
242
|
-
variant: Variant;
|
243
|
-
className?: string;
|
244
|
-
}) => react_jsx_runtime.JSX.Element;
|
245
|
-
|
246
239
|
type TableSearchProps = {
|
247
240
|
enabled: boolean;
|
248
241
|
debounceRate?: number;
|
@@ -268,6 +261,13 @@ type TableProps<T extends RowData> = {
|
|
268
261
|
};
|
269
262
|
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, isLoading, pagination, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
270
263
|
|
264
|
+
type Variant = "success" | "failed" | "pending" | "abandoned";
|
265
|
+
declare const Status: ({ status, variant, className, }: {
|
266
|
+
status: string;
|
267
|
+
variant: Variant;
|
268
|
+
className?: string;
|
269
|
+
}) => react_jsx_runtime.JSX.Element;
|
270
|
+
|
271
271
|
declare function cn(...inputs: ClassValue[]): string;
|
272
272
|
|
273
|
-
export { Button, CopyableLabel, Country, DebouncedInput, Dialog, FlagComponent, FormLabel, Input, Loader, OTPInput, PasswordInput, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, Select, Status, Table, type
|
273
|
+
export { Button, CopyableLabel, Country, DebouncedInput, Dialog, FlagComponent, FormLabel, Input, Loader, OTPInput, PasswordInput, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, Select, Status, Table, type TablePaginationProps, Textarea, buttonVariants, cn };
|
package/dist/index.d.ts
CHANGED
@@ -236,13 +236,6 @@ type PaginationProps = {
|
|
236
236
|
itemsPerPage?: number;
|
237
237
|
};
|
238
238
|
|
239
|
-
type Variant = "success" | "failed" | "pending" | "abandoned";
|
240
|
-
declare const Status: ({ status, variant, className, }: {
|
241
|
-
status: string;
|
242
|
-
variant: Variant;
|
243
|
-
className?: string;
|
244
|
-
}) => react_jsx_runtime.JSX.Element;
|
245
|
-
|
246
239
|
type TableSearchProps = {
|
247
240
|
enabled: boolean;
|
248
241
|
debounceRate?: number;
|
@@ -268,6 +261,13 @@ type TableProps<T extends RowData> = {
|
|
268
261
|
};
|
269
262
|
declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, isLoading, pagination, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
|
270
263
|
|
264
|
+
type Variant = "success" | "failed" | "pending" | "abandoned";
|
265
|
+
declare const Status: ({ status, variant, className, }: {
|
266
|
+
status: string;
|
267
|
+
variant: Variant;
|
268
|
+
className?: string;
|
269
|
+
}) => react_jsx_runtime.JSX.Element;
|
270
|
+
|
271
271
|
declare function cn(...inputs: ClassValue[]): string;
|
272
272
|
|
273
|
-
export { Button, CopyableLabel, Country, DebouncedInput, Dialog, FlagComponent, FormLabel, Input, Loader, OTPInput, PasswordInput, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, Select, Status, Table, type
|
273
|
+
export { Button, CopyableLabel, Country, DebouncedInput, Dialog, FlagComponent, FormLabel, Input, Loader, OTPInput, PasswordInput, PhoneInput, Popover, PopoverContent, PopoverRoot, PopoverTrigger, Select, Status, Table, type TablePaginationProps, Textarea, buttonVariants, cn };
|