@epilot/volt-ui 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/components/badge/badge.d.ts +12 -8
- package/dist/components/button/button.d.ts +2 -2
- package/dist/components/callout/callout.d.ts +1 -1
- package/dist/components/data-table/data-table-column-order.d.ts +24 -0
- package/dist/components/data-table/data-table-context.d.ts +2 -0
- package/dist/components/data-table/data-table-header-draggable.d.ts +20 -0
- package/dist/components/data-table/data-table.d.ts +10 -2
- package/dist/components/label/label.d.ts +1 -1
- package/dist/components/pill/pill.d.ts +42 -0
- package/dist/components/spinner/spinner.d.ts +1 -1
- package/dist/components/switch/switch.d.ts +1 -1
- package/dist/index.cjs.js +25 -21
- package/dist/index.d.ts +6 -1
- package/dist/index.es.js +9557 -6387
- package/dist/lib/clear-button.d.ts +6 -0
- package/dist/lib/icons.d.ts +3 -0
- package/dist/style.css +1 -1
- package/package.json +11 -26
- package/README.md +0 -101
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { cn } from "./lib/utils";
|
|
2
|
+
export { ClearButton } from "./lib/clear-button";
|
|
3
|
+
export { CloseIcon } from "./lib/icons";
|
|
2
4
|
export { Button, buttonVariants } from "./components/button/button";
|
|
3
5
|
export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, } from "./components/button/button-group";
|
|
4
6
|
export { Field, FieldSet, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLabelContent, useFieldContext, } from "./components/field/field";
|
|
@@ -18,6 +20,7 @@ export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, Dr
|
|
|
18
20
|
export { Checkbox } from "./components/checkbox/checkbox";
|
|
19
21
|
export { RadioGroup, RadioGroupItem } from "./components/radio/radio";
|
|
20
22
|
export { Badge, badgeVariants } from "./components/badge/badge";
|
|
23
|
+
export { Pill, pillVariants } from "./components/pill/pill";
|
|
21
24
|
export { Callout, CalloutTitle, CalloutDescription, CalloutAction, } from "./components/callout/callout";
|
|
22
25
|
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent, } from "./components/accordion/accordion";
|
|
23
26
|
export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, } from "./components/alert-dialog/alert-dialog";
|
|
@@ -57,6 +60,8 @@ export { DataTableColumnHeader } from "./components/data-table/data-table-column
|
|
|
57
60
|
export type { DataTableColumnHeaderProps } from "./components/data-table/data-table-column-header";
|
|
58
61
|
export { DataTableColumnVisibility } from "./components/data-table/data-table-column-visibility";
|
|
59
62
|
export type { DataTableColumnVisibilityProps } from "./components/data-table/data-table-column-visibility";
|
|
63
|
+
export { DataTableColumnOrder } from "./components/data-table/data-table-column-order";
|
|
64
|
+
export type { DataTableColumnOrderProps } from "./components/data-table/data-table-column-order";
|
|
60
65
|
export { DataTableToolbar } from "./components/data-table/data-table-toolbar";
|
|
61
66
|
export type { DataTableToolbarProps } from "./components/data-table/data-table-toolbar";
|
|
62
67
|
export { DataTableFooter } from "./components/data-table/data-table-footer";
|
|
@@ -65,7 +70,7 @@ export { DataTableResizeHandle } from "./components/data-table/data-table-resize
|
|
|
65
70
|
export type { DataTableResizeHandleProps } from "./components/data-table/data-table-resize-handle";
|
|
66
71
|
export { getPinnedColumnOffset, isLastLeftPinnedColumn, isFirstRightPinnedColumn, } from "./components/data-table/data-table-pinning-utils";
|
|
67
72
|
export type { PinningPosition } from "./components/data-table/data-table-pinning-utils";
|
|
68
|
-
export type { ColumnDef, ColumnFiltersState, ColumnPinningState, ColumnSizingState, FilterFn, PaginationState, RowSelectionState, SortingState, VisibilityState, } from "@tanstack/react-table";
|
|
73
|
+
export type { ColumnDef, ColumnFiltersState, ColumnOrderState, ColumnPinningState, ColumnSizingState, FilterFn, PaginationState, RowSelectionState, SortingState, VisibilityState, } from "@tanstack/react-table";
|
|
69
74
|
export { DateTimePicker, Calendar, TimePicker, } from "./components/date-time-picker/date-time-picker";
|
|
70
75
|
export type { DateTimePickerProps, CalendarProps, TimePickerProps, DateTimePickerLocale, } from "./components/date-time-picker/date-time-picker";
|
|
71
76
|
export { DateRangePicker, RangeCalendar, } from "./components/date-range-picker/date-range-picker";
|