@rafal.lemieszewski/tide-ui 0.83.0 → 0.84.3
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/README.md +20 -8
- package/dist/cjs/components/core-index.cjs +1 -0
- package/dist/cjs/components/fundamental/accordion.cjs +1 -0
- package/dist/cjs/components/fundamental/alert-dialog.cjs +1 -0
- package/dist/cjs/components/fundamental/alert.cjs +1 -0
- package/dist/cjs/components/fundamental/autocomplete-search.cjs +1 -0
- package/dist/cjs/components/fundamental/avatar-group.cjs +1 -0
- package/dist/cjs/components/fundamental/avatar.cjs +1 -0
- package/dist/cjs/components/fundamental/badge.cjs +1 -0
- package/dist/cjs/components/fundamental/breadcrumb.cjs +1 -0
- package/dist/cjs/components/fundamental/button-group.cjs +1 -0
- package/dist/cjs/components/fundamental/button.cjs +1 -0
- package/dist/cjs/components/fundamental/calendar.cjs +1 -0
- package/dist/cjs/components/fundamental/card.cjs +1 -0
- package/dist/cjs/components/fundamental/chart.cjs +1 -0
- package/dist/cjs/components/fundamental/checkbox.cjs +1 -0
- package/dist/cjs/components/fundamental/collapsible.cjs +1 -0
- package/dist/cjs/components/fundamental/combobox.cjs +1 -0
- package/dist/cjs/components/fundamental/command.cjs +1 -0
- package/dist/cjs/components/fundamental/country-dropdown.cjs +1 -0
- package/dist/cjs/components/fundamental/custom-icons.cjs +1 -0
- package/dist/cjs/components/fundamental/date-picker.cjs +1 -0
- package/dist/cjs/components/fundamental/dialog.cjs +1 -0
- package/dist/cjs/components/fundamental/drawer.cjs +1 -0
- package/dist/cjs/components/fundamental/dropdown-menu.cjs +1 -0
- package/dist/cjs/components/fundamental/editable.cjs +1 -0
- package/dist/cjs/components/fundamental/empty.cjs +1 -0
- package/dist/cjs/components/fundamental/file-upload.cjs +1 -0
- package/dist/cjs/components/fundamental/flag.cjs +1 -0
- package/dist/cjs/components/fundamental/form-field.cjs +1 -0
- package/dist/cjs/components/fundamental/hover-card.cjs +1 -0
- package/dist/cjs/components/fundamental/icon.cjs +1 -0
- package/dist/cjs/components/fundamental/input-group.cjs +1 -0
- package/dist/cjs/components/fundamental/input.cjs +1 -0
- package/dist/cjs/components/fundamental/kbd.cjs +1 -0
- package/dist/cjs/components/fundamental/label.cjs +1 -0
- package/dist/cjs/components/fundamental/month-picker.cjs +1 -0
- package/dist/cjs/components/fundamental/pagination.cjs +1 -0
- package/dist/cjs/components/fundamental/popover.cjs +1 -0
- package/dist/cjs/components/fundamental/progress.cjs +1 -0
- package/dist/cjs/components/fundamental/radio-group.cjs +1 -0
- package/dist/cjs/components/fundamental/resizable.cjs +1 -0
- package/dist/cjs/components/fundamental/scroll-area.cjs +1 -0
- package/dist/cjs/components/fundamental/select.cjs +1 -0
- package/dist/cjs/components/fundamental/separator.cjs +1 -0
- package/dist/cjs/components/fundamental/sheet.cjs +1 -0
- package/dist/cjs/components/fundamental/sidebar.cjs +1 -0
- package/dist/cjs/components/fundamental/skeleton.cjs +1 -0
- package/dist/cjs/components/fundamental/slider.cjs +1 -0
- package/dist/cjs/components/fundamental/spinner.cjs +1 -0
- package/dist/cjs/components/fundamental/switch.cjs +1 -0
- package/dist/cjs/components/fundamental/table.cjs +1 -0
- package/dist/cjs/components/fundamental/tabs.cjs +1 -0
- package/dist/cjs/components/fundamental/tag.cjs +27 -0
- package/dist/cjs/components/fundamental/text-link.cjs +1 -0
- package/dist/cjs/components/fundamental/textarea.cjs +1 -0
- package/dist/cjs/components/fundamental/toast.cjs +1 -0
- package/dist/cjs/components/fundamental/toggle-group.cjs +1 -0
- package/dist/cjs/components/fundamental/toggle.cjs +1 -0
- package/dist/cjs/components/fundamental/tooltip.cjs +1 -0
- package/dist/cjs/components/fundamental/tree.cjs +1 -0
- package/dist/cjs/components/product/activity-log.cjs +1 -0
- package/dist/cjs/components/product/app-frame.cjs +1 -0
- package/dist/cjs/components/product/attributes-list.cjs +1 -0
- package/dist/cjs/components/product/bookmarks.cjs +1 -0
- package/dist/cjs/components/product/data-table-settings-menu.cjs +1 -0
- package/dist/cjs/components/product/data-table.cjs +1 -0
- package/dist/cjs/components/product/filters.cjs +1 -0
- package/dist/cjs/components/product/fixture-status.cjs +1 -0
- package/dist/cjs/components/product/linked-chart.cjs +1 -0
- package/dist/cjs/components/product/view-mode-menu.cjs +1 -0
- package/dist/cjs/lib/date-utils.cjs +1 -0
- package/dist/cjs/lib/hooks.cjs +1 -0
- package/dist/cjs/lib/index.cjs +1 -0
- package/dist/cjs/lib/utils.cjs +1 -0
- package/dist/es/components/core-index.js +37 -0
- package/dist/es/components/fundamental/accordion.js +60 -0
- package/dist/es/components/fundamental/alert-dialog.js +116 -0
- package/dist/es/components/fundamental/alert.js +65 -0
- package/dist/es/components/fundamental/autocomplete-search.js +139 -0
- package/dist/es/components/fundamental/avatar-group.js +51 -0
- package/dist/es/components/fundamental/avatar.js +165 -0
- package/dist/es/components/fundamental/badge.js +157 -0
- package/dist/es/components/fundamental/breadcrumb.js +142 -0
- package/dist/es/components/fundamental/button-group.js +86 -0
- package/dist/es/components/fundamental/button.js +186 -0
- package/dist/es/components/fundamental/calendar.js +130 -0
- package/dist/es/components/fundamental/card.js +68 -0
- package/dist/es/components/fundamental/chart.js +1006 -0
- package/dist/es/components/fundamental/checkbox.js +51 -0
- package/dist/es/components/fundamental/collapsible.js +55 -0
- package/dist/es/components/fundamental/combobox.js +229 -0
- package/dist/es/components/fundamental/command.js +155 -0
- package/dist/es/components/fundamental/country-dropdown.js +215 -0
- package/dist/es/components/fundamental/custom-icons.js +876 -0
- package/dist/es/components/fundamental/date-picker.js +119 -0
- package/dist/es/components/fundamental/dialog.js +106 -0
- package/dist/es/components/fundamental/drawer.js +93 -0
- package/dist/es/components/fundamental/dropdown-menu.js +600 -0
- package/dist/es/components/fundamental/editable.js +123 -0
- package/dist/es/components/fundamental/empty.js +152 -0
- package/dist/es/components/fundamental/file-upload.js +289 -0
- package/dist/es/components/fundamental/flag.js +60 -0
- package/dist/es/components/fundamental/form-field.js +352 -0
- package/dist/es/components/fundamental/hover-card.js +23 -0
- package/dist/es/components/fundamental/icon.js +200 -0
- package/dist/es/components/fundamental/input-group.js +135 -0
- package/dist/es/components/fundamental/input.js +78 -0
- package/dist/es/components/fundamental/kbd.js +57 -0
- package/dist/es/components/fundamental/label.js +54 -0
- package/dist/es/components/fundamental/month-picker.js +161 -0
- package/dist/es/components/fundamental/pagination.js +109 -0
- package/dist/es/components/fundamental/popover.js +24 -0
- package/dist/es/components/fundamental/progress.js +66 -0
- package/dist/es/components/fundamental/radio-group.js +64 -0
- package/dist/es/components/fundamental/resizable.js +43 -0
- package/dist/es/components/fundamental/scroll-area.js +38 -0
- package/dist/es/components/fundamental/select.js +136 -0
- package/dist/es/components/fundamental/separator.js +47 -0
- package/dist/es/components/fundamental/sheet.js +134 -0
- package/dist/es/components/fundamental/sidebar.js +709 -0
- package/dist/es/components/fundamental/skeleton.js +158 -0
- package/dist/es/components/fundamental/slider.js +35 -0
- package/dist/es/components/fundamental/spinner.js +225 -0
- package/dist/es/components/fundamental/switch.js +27 -0
- package/dist/es/components/fundamental/table.js +263 -0
- package/dist/es/components/fundamental/tabs.js +170 -0
- package/dist/es/components/fundamental/tag.js +295 -0
- package/dist/es/components/fundamental/text-link.js +105 -0
- package/dist/es/components/fundamental/textarea.js +47 -0
- package/dist/es/components/fundamental/toast.js +108 -0
- package/dist/es/components/fundamental/toggle-group.js +37 -0
- package/dist/es/components/fundamental/toggle.js +51 -0
- package/dist/es/components/fundamental/tooltip.js +26 -0
- package/dist/es/components/fundamental/tree.js +161 -0
- package/dist/es/components/product/activity-log.js +231 -0
- package/dist/es/components/product/app-frame.js +985 -0
- package/dist/es/components/product/attributes-list.js +351 -0
- package/dist/es/components/product/bookmarks.js +833 -0
- package/dist/es/components/product/data-table-settings-menu.js +169 -0
- package/dist/es/components/product/data-table.js +2473 -0
- package/dist/es/components/product/filters.js +1041 -0
- package/dist/es/components/product/fixture-status.js +178 -0
- package/dist/es/components/product/linked-chart.js +179 -0
- package/dist/es/components/product/view-mode-menu.js +353 -0
- package/dist/es/lib/date-utils.js +151 -0
- package/dist/es/lib/hooks.js +29 -0
- package/dist/es/lib/index.js +348 -0
- package/dist/es/lib/utils.js +8 -0
- package/dist/es/style.css +1 -0
- package/dist/types/bookmarks.d.ts +2 -0
- package/dist/types/calendar.d.ts +2 -0
- package/dist/types/chart.d.ts +2 -0
- package/dist/types/components/core-index.d.cts +135 -0
- package/dist/types/components/core-index.d.ts +135 -0
- package/dist/{components → types/components}/fundamental/avatar.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/badge.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/button-group.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/button.d.ts +1 -1
- package/dist/types/components/fundamental/calendar.d.ts +7 -0
- package/dist/types/components/fundamental/chart.d.ts +95 -0
- package/dist/{components → types/components}/fundamental/command.d.ts +2 -2
- package/dist/types/components/fundamental/country-dropdown.d.ts +34 -0
- package/dist/types/components/fundamental/date-picker.d.ts +30 -0
- package/dist/{components → types/components}/fundamental/file-upload.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/form-field.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/form.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/icon.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/input-group.d.ts +1 -1
- package/dist/types/components/fundamental/resizable.d.cts +23 -0
- package/dist/{components → types/components}/fundamental/resizable.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/sidebar.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/spinner.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/table.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/text-link.d.ts +1 -1
- package/dist/{components → types/components}/index.d.ts +118 -118
- package/dist/{components → types/components}/product/activity-log.d.ts +1 -1
- package/dist/{components → types/components}/product/attributes-list.d.ts +1 -1
- package/dist/types/components/product/bookmarks.d.cts +90 -0
- package/dist/{components → types/components}/product/bookmarks.d.ts +1 -1
- package/dist/types/components/product/data-table.d.ts +802 -0
- package/dist/types/components/product/filters.d.ts +124 -0
- package/dist/{components → types/components}/product/fixture-status.d.ts +1 -1
- package/dist/types/components/product/linked-chart.d.cts +22 -0
- package/dist/{components → types/components}/product/linked-chart.d.ts +1 -1
- package/dist/types/country-dropdown.d.ts +2 -0
- package/dist/types/data-table.d.ts +2 -0
- package/dist/types/date-picker.d.ts +2 -0
- package/dist/types/filters.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/lib/index.d.cts +104 -0
- package/dist/types/lib/index.d.ts +104 -0
- package/dist/types/linked-chart.d.ts +2 -0
- package/dist/types/resizable.d.ts +2 -0
- package/package.json +191 -31
- package/dist/index.cjs.js +0 -144
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.es.js +0 -87768
- package/dist/index.es.js.map +0 -1
- package/dist/lib/index.d.ts +0 -3
- package/dist/style.css +0 -1
- /package/dist/{components → types/components}/fundamental/accordion.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/alert-dialog.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/alert.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/autocomplete-search.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/avatar-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/breadcrumb.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/button.test.d.ts +0 -0
- /package/dist/{components/fundamental/calendar.d.ts → types/components/fundamental/calendar.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/card.d.ts +0 -0
- /package/dist/{components/fundamental/chart.d.ts → types/components/fundamental/chart.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/checkbox.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/collapsible.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/combobox.d.ts +0 -0
- /package/dist/{components/fundamental/country-dropdown.d.ts → types/components/fundamental/country-dropdown.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/custom-icons.d.ts +0 -0
- /package/dist/{components/fundamental/date-picker.d.ts → types/components/fundamental/date-picker.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/dialog.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/drawer.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/dropdown-menu.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/editable.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/empty.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/flag.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/hover-card.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/input.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/kbd.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/label.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/month-picker.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/pagination.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/popover.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/progress.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/radio-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/scroll-area.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/select.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/separator.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/sheet.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/skeleton.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/slider.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/switch.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tabs.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tag.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/textarea.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toast.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toggle-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toggle.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tooltip.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tree.d.ts +0 -0
- /package/dist/{components → types/components}/product/app-frame.d.ts +0 -0
- /package/dist/{components → types/components}/product/data-table-settings-menu.d.ts +0 -0
- /package/dist/{components/product/data-table.d.ts → types/components/product/data-table.d.cts} +0 -0
- /package/dist/{components/product/filters.d.ts → types/components/product/filters.d.cts} +0 -0
- /package/dist/{components → types/components}/product/view-mode-menu.d.ts +0 -0
- /package/dist/{lib → types/lib}/date-utils.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks.d.ts +0 -0
- /package/dist/{lib → types/lib}/utils.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ResizablePrimitive from "react-resizable-panels";
|
|
2
2
|
declare const ResizablePanelGroup: ({ className, ...props }: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
declare const ResizablePanel: import('react').ForwardRefExoticComponent<Omit<import('react').HTMLAttributes<HTMLDivElement | HTMLElement | HTMLHeadingElement |
|
|
3
|
+
declare const ResizablePanel: import('react').ForwardRefExoticComponent<Omit<import('react').HTMLAttributes<HTMLDivElement | HTMLElement | HTMLHeadingElement | HTMLSpanElement | HTMLObjectElement | HTMLStyleElement | HTMLSlotElement | HTMLTitleElement | HTMLLinkElement | HTMLMapElement | HTMLButtonElement | HTMLDialogElement | HTMLFormElement | HTMLImageElement | HTMLOptionElement | HTMLTableElement | HTMLAnchorElement | HTMLInputElement | HTMLLabelElement | HTMLLIElement | HTMLOListElement | HTMLParagraphElement | HTMLSelectElement | HTMLUListElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLLegendElement | HTMLMetaElement | HTMLMeterElement | HTMLOptGroupElement | HTMLOutputElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSourceElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTableRowElement | HTMLTrackElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
|
|
4
4
|
className?: string;
|
|
5
5
|
collapsedSize?: number | undefined;
|
|
6
6
|
collapsible?: boolean | undefined;
|
|
@@ -23,7 +23,7 @@ declare const Sidebar: React.ForwardRefExoticComponent<Omit<React.ClassAttribute
|
|
|
23
23
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
24
24
|
side?: "left" | "right";
|
|
25
25
|
}, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
-
declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<import('./button').ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
26
|
+
declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<import('./button.js').ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
27
27
|
declare const SidebarRail: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
28
28
|
declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
29
29
|
declare const SidebarInput: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -37,7 +37,7 @@ declare const SidebarSearchTrigger: React.ForwardRefExoticComponent<Omit<React.C
|
|
|
37
37
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
38
38
|
declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
39
39
|
declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
-
declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<import('./separator').SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<import('./separator.js').SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
41
41
|
declare const SidebarContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
42
42
|
declare const SidebarGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
43
43
|
declare const SidebarGroupLabel: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -60,7 +60,7 @@ declare const SidebarMenuButton: React.ForwardRefExoticComponent<Omit<React.Clas
|
|
|
60
60
|
variant?: "default" | "outline" | null | undefined;
|
|
61
61
|
size?: "default" | "s" | "l" | null | undefined;
|
|
62
62
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
63
|
-
declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<import('./button').ButtonProps & React.RefAttributes<HTMLButtonElement> & {
|
|
63
|
+
declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<import('./button.js').ButtonProps & React.RefAttributes<HTMLButtonElement> & {
|
|
64
64
|
showOnHover?: boolean;
|
|
65
65
|
size?: "s" | "m" | "l";
|
|
66
66
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
declare const spinnerVariants: (props?: ({
|
|
4
|
-
size?: "
|
|
4
|
+
size?: "xs" | "s" | "m" | "l" | "xl" | "2xl" | null | undefined;
|
|
5
5
|
variant?: "default" | "success" | "warning" | "error" | "disabled" | "primary" | "secondary" | "tertiary" | "inverse" | null | undefined;
|
|
6
6
|
speed?: "normal" | "slow" | "fast" | null | undefined;
|
|
7
7
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
@@ -9,15 +9,15 @@ declare const tableRowVariants: (props?: ({
|
|
|
9
9
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
10
10
|
declare const tableCellVariants: (props?: ({
|
|
11
11
|
size?: "s" | "m" | "l" | null | undefined;
|
|
12
|
-
align?: "
|
|
13
|
-
verticalAlign?: "
|
|
12
|
+
align?: "center" | "left" | "right" | null | undefined;
|
|
13
|
+
verticalAlign?: "middle" | "bottom" | "top" | null | undefined;
|
|
14
14
|
numeric?: boolean | null | undefined;
|
|
15
15
|
showBorder?: boolean | null | undefined;
|
|
16
16
|
showRowBorder?: boolean | null | undefined;
|
|
17
17
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
18
18
|
declare const tableHeaderVariants: (props?: ({
|
|
19
19
|
size?: "s" | "m" | "l" | null | undefined;
|
|
20
|
-
align?: "
|
|
20
|
+
align?: "center" | "left" | "right" | null | undefined;
|
|
21
21
|
numeric?: boolean | null | undefined;
|
|
22
22
|
showBorder?: boolean | null | undefined;
|
|
23
23
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
@@ -1,122 +1,122 @@
|
|
|
1
|
-
export { Alert, AlertDescription, AlertTitle } from './fundamental/alert';
|
|
2
|
-
export type { AlertProps } from './fundamental/alert';
|
|
3
|
-
export { Chart, generateChartColors, createChartConfig, chartColorSchemes } from './fundamental/chart';
|
|
4
|
-
export type { ChartProps, ChartConfig, ChartDataPoint, ChartType, ChartColorScheme } from './fundamental/chart';
|
|
5
|
-
export { Avatar, AvatarImage, AvatarFallback, avatarVariants, avatarFallbackVariants } from './fundamental/avatar';
|
|
6
|
-
export type { AvatarProps, AvatarFallbackProps } from './fundamental/avatar';
|
|
7
|
-
export { AvatarGroup } from './fundamental/avatar-group';
|
|
8
|
-
export type { AvatarGroupProps, AvatarGroupSize } from './fundamental/avatar-group';
|
|
9
|
-
export { Badge } from './fundamental/badge';
|
|
10
|
-
export type { BadgeProps } from './fundamental/badge';
|
|
11
|
-
export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './fundamental/collapsible';
|
|
12
|
-
export { Button } from './fundamental/button';
|
|
13
|
-
export type { ButtonProps } from './fundamental/button';
|
|
14
|
-
export { ButtonGroup, ButtonGroupText, ButtonGroupSeparator, buttonGroupVariants } from './fundamental/button-group';
|
|
15
|
-
export type { ButtonGroupProps, ButtonGroupTextProps, ButtonGroupSeparatorProps } from './fundamental/button-group';
|
|
16
|
-
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './fundamental/card';
|
|
17
|
-
export { Checkbox, checkboxVariants } from './fundamental/checkbox';
|
|
18
|
-
export { RadioGroup, RadioGroupItem, radioGroupVariants, radioGroupItemVariants } from './fundamental/radio-group';
|
|
19
|
-
export type { RadioGroupProps, RadioGroupItemProps } from './fundamental/radio-group';
|
|
20
|
-
export { Input } from './fundamental/input';
|
|
21
|
-
export type { InputProps } from './fundamental/input';
|
|
22
|
-
export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, inputGroupAddonVariants, } from './fundamental/input-group';
|
|
23
|
-
export type { InputGroupProps, InputGroupAddonProps, InputGroupButtonProps, InputGroupTextProps, InputGroupInputProps, InputGroupTextareaProps, } from './fundamental/input-group';
|
|
24
|
-
export { Label } from './fundamental/label';
|
|
25
|
-
export type { LabelProps } from './fundamental/label';
|
|
26
|
-
export { ScrollArea, ScrollBar } from './fundamental/scroll-area';
|
|
27
|
-
export { Separator } from './fundamental/separator';
|
|
28
|
-
export { Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonTable, skeletonVariants } from './fundamental/skeleton';
|
|
29
|
-
export { Spinner, LoadingOverlay, Pulse, ProgressDots } from './fundamental/spinner';
|
|
30
|
-
export type { SpinnerProps, LoadingOverlayProps } from './fundamental/spinner';
|
|
31
|
-
export { FixtureStatus, statusConfig } from './product/fixture-status';
|
|
32
|
-
export type { FixtureStatusProps, StatusValue, StatusConfig } from './product/fixture-status';
|
|
33
|
-
export { Switch } from './fundamental/switch';
|
|
34
|
-
export { Textarea } from './fundamental/textarea';
|
|
35
|
-
export type { TextareaProps } from './fundamental/textarea';
|
|
36
|
-
export { ActivityLog, ActivityLogItem, ActivityLogSeparator, ActivityLogHeader, ActivityLogContent, ActivityLogDescription, ActivityLogTime, ActivityLogChevron, ActivityLogValue, } from './product/activity-log';
|
|
37
|
-
export type { ActivityLogProps, ActivityLogItemProps, ActivityLogSeparatorProps, ActivityLogHeaderProps, ActivityLogContentProps, ActivityLogDescriptionProps, ActivityLogTimeProps, ActivityLogChevronProps, ActivityLogValueProps, } from './product/activity-log';
|
|
38
|
-
export { AttributesList, AttributesSeparator, AttributesGroup, AttributesItem, AttributesRow, AttributesLabel, AttributesValue, AttributesContent, AttributesChevron, } from './product/attributes-list';
|
|
39
|
-
export type { AttributesListProps, AttributesSeparatorProps, AttributesGroupProps, AttributesItemProps, AttributesRowProps, AttributesLabelProps, AttributesValueProps, AttributesContentProps, AttributesChevronProps, } from './product/attributes-list';
|
|
40
|
-
export { Editable, EditablePreview, EditableInput, EditableDisplay, EditableField } from './fundamental/editable';
|
|
41
|
-
export type { EditableProps, EditablePreviewProps, EditableInputProps } from './fundamental/editable';
|
|
42
|
-
export { FormField, FormLabel, FormControl, FormHelperText, FormErrorMessage } from './fundamental/form-field';
|
|
43
|
-
export type { FormFieldProps, FormLabelProps, FormControlProps, FormHelperTextProps, FormErrorMessageProps } from './fundamental/form-field';
|
|
44
|
-
export { Field, FieldSet, FieldLegend, FieldGroup, FieldContent, FieldLabel, FieldTitle, FieldDescription, FieldSeparator, FieldError, fieldVariants, fieldLegendVariants, } from './fundamental/form-field';
|
|
45
|
-
export type { FieldProps, FieldSetProps, FieldLegendProps, FieldGroupProps, FieldContentProps, FieldLabelProps, FieldTitleProps, FieldDescriptionProps, FieldSeparatorProps, FieldErrorProps } from './fundamental/form-field';
|
|
46
|
-
export { Tabs, TabsList, TabsTrigger, TabsContent, TabsGroupLabel } from './fundamental/tabs';
|
|
47
|
-
export type { TabsProps, TabsListProps, TabsTriggerProps, TabsGroupLabelProps } from './fundamental/tabs';
|
|
48
|
-
export { Toggle } from './fundamental/toggle';
|
|
49
|
-
export type { ToggleProps } from './fundamental/toggle';
|
|
50
|
-
export { ToggleGroup, ToggleGroupItem } from './fundamental/toggle-group';
|
|
51
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, selectTriggerVariants, selectContentVariants, selectItemVariants, } from './fundamental/select';
|
|
52
|
-
export type { SelectTriggerProps, SelectContentProps, SelectItemProps } from './fundamental/select';
|
|
53
|
-
export { TextLink } from './fundamental/text-link';
|
|
54
|
-
export type { TextLinkProps } from './fundamental/text-link';
|
|
55
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from './fundamental/accordion';
|
|
56
|
-
export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogBody, DialogFooter, DialogTitle, } from './fundamental/dialog';
|
|
57
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogBody, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from './fundamental/alert-dialog';
|
|
58
|
-
export { Empty, EmptyHeader, EmptyMedia, EmptyTitle, EmptyDescription, EmptyContent, } from './fundamental/empty';
|
|
59
|
-
export type { EmptyProps, EmptyMediaProps, EmptyTitleProps, EmptyDescriptionProps, } from './fundamental/empty';
|
|
60
|
-
export { Flag } from './fundamental/flag';
|
|
61
|
-
export type { FlagProps, FlagSize } from './fundamental/flag';
|
|
62
|
-
export { FileUpload } from './fundamental/file-upload';
|
|
63
|
-
export type { FileUploadFile, FileUploadProps, FileUploadDropzoneProps, FileUploadTriggerProps, FileUploadListProps, FileUploadItemProps, FileUploadItemPreviewProps, FileUploadItemMetadataProps, FileUploadItemProgressProps, FileUploadItemDeleteProps, } from './fundamental/file-upload';
|
|
64
|
-
export { HoverCard, HoverCardTrigger, HoverCardContent } from './fundamental/hover-card';
|
|
65
|
-
export { Slider } from './fundamental/slider';
|
|
66
|
-
export { Tag, TagGroup } from './fundamental/tag';
|
|
67
|
-
export type { TagProps, TagGroupProps, TagDotColor, TagIntent, TagVariant } from './fundamental/tag';
|
|
68
|
-
export { Tree } from './fundamental/tree';
|
|
69
|
-
export type { TreeProps, TreeDataItem } from './fundamental/tree';
|
|
70
|
-
export { CountryDropdown, useCountryData } from './fundamental/country-dropdown';
|
|
71
|
-
export type { Country, CountryDropdownProps, CountryDropdownTriggerProps } from './fundamental/country-dropdown';
|
|
72
|
-
export { Icon } from './fundamental/icon';
|
|
73
|
-
export type { IconColor, IconSize, CustomIconName } from './fundamental/icon';
|
|
74
|
-
export { Kbd, KbdGroup } from './fundamental/kbd';
|
|
75
|
-
export type { KbdProps, KbdGroupProps } from './fundamental/kbd';
|
|
76
|
-
export { MonthPicker } from './fundamental/month-picker';
|
|
77
|
-
export type { MonthPickerProps } from './fundamental/month-picker';
|
|
78
|
-
export { Calendar } from './fundamental/calendar';
|
|
79
|
-
export type { CalendarProps } from './fundamental/calendar';
|
|
80
|
-
export { DatePicker, DateRangePicker } from './fundamental/date-picker';
|
|
81
|
-
export type { DatePickerProps, DateRangePickerProps } from './fundamental/date-picker';
|
|
82
|
-
export { CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, } from './fundamental/command';
|
|
83
|
-
export { Combobox, MultiCombobox } from './fundamental/combobox';
|
|
84
|
-
export type { ComboboxProps, ComboboxOption, ComboboxTriggerProps, MultiComboboxProps, MultiComboboxTriggerProps, } from './fundamental/combobox';
|
|
85
|
-
export { AutocompleteSearch } from './fundamental/autocomplete-search';
|
|
86
|
-
export type { AutocompleteSearchProps } from './fundamental/autocomplete-search';
|
|
87
|
-
export { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbPagePicker, BreadcrumbSeparator, } from './fundamental/breadcrumb';
|
|
88
|
-
export type { BreadcrumbPagePickerProps } from './fundamental/breadcrumb';
|
|
89
|
-
export { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarInput, SidebarSearchButton, SidebarSearchTrigger, SidebarRail, SidebarSeparator, SidebarGroup, SidebarGroupAction, SidebarGroupLabel, SidebarGroupContent, SidebarMenu, SidebarMenuItem, SidebarMenuButton, SidebarMenuAction, SidebarMenuBadge, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubItem, SidebarMenuSubButton, SidebarInset, SidebarProvider, SidebarTrigger, useSidebar, } from './fundamental/sidebar';
|
|
90
|
-
export { AppFrame } from './product/app-frame';
|
|
91
|
-
export type { AppFrameProps, AppFrameNavItem, AppFrameUser, AppFrameTeam, AppFrameNavigationData, } from './product/app-frame';
|
|
92
|
-
export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, } from './fundamental/drawer';
|
|
93
|
-
export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, } from './fundamental/sheet';
|
|
94
|
-
export type { SheetProps, SheetContentProps } from './fundamental/sheet';
|
|
95
|
-
export { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, DropdownMenuLabel, DropdownMenuGroup, } from './fundamental/dropdown-menu';
|
|
96
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from './fundamental/tooltip';
|
|
97
|
-
export { Toaster, toast } from './fundamental/toast';
|
|
98
|
-
export { Pagination } from './fundamental/pagination';
|
|
99
|
-
export type { PaginationProps } from './fundamental/pagination';
|
|
100
|
-
export { Progress } from './fundamental/progress';
|
|
101
|
-
export type { ProgressProps } from './fundamental/progress';
|
|
102
|
-
export { Popover, PopoverTrigger, PopoverContent } from './fundamental/popover';
|
|
103
|
-
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, TableSortHeader, TableGroupHeader, tableVariants, tableRowVariants, tableCellVariants, tableHeaderVariants, } from './fundamental/table';
|
|
104
|
-
export type { TableProps, TableRowProps, TableHeadProps, TableCellProps, TableSortHeaderProps, } from './fundamental/table';
|
|
105
|
-
export { DataTable } from './product/data-table';
|
|
106
|
-
export type { RowState, DepthColorConfig, DepthColors, DepthHeights, NestedRowStyling, DataTableEmptyStateProps, DataTableNoResultsStateProps, DataTableErrorStateProps, } from './product/data-table';
|
|
1
|
+
export { Alert, AlertDescription, AlertTitle } from './fundamental/alert.js';
|
|
2
|
+
export type { AlertProps } from './fundamental/alert.js';
|
|
3
|
+
export { Chart, generateChartColors, createChartConfig, chartColorSchemes } from './fundamental/chart.js';
|
|
4
|
+
export type { ChartProps, ChartConfig, ChartDataPoint, ChartType, ChartColorScheme } from './fundamental/chart.js';
|
|
5
|
+
export { Avatar, AvatarImage, AvatarFallback, avatarVariants, avatarFallbackVariants } from './fundamental/avatar.js';
|
|
6
|
+
export type { AvatarProps, AvatarFallbackProps } from './fundamental/avatar.js';
|
|
7
|
+
export { AvatarGroup } from './fundamental/avatar-group.js';
|
|
8
|
+
export type { AvatarGroupProps, AvatarGroupSize } from './fundamental/avatar-group.js';
|
|
9
|
+
export { Badge } from './fundamental/badge.js';
|
|
10
|
+
export type { BadgeProps } from './fundamental/badge.js';
|
|
11
|
+
export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './fundamental/collapsible.js';
|
|
12
|
+
export { Button } from './fundamental/button.js';
|
|
13
|
+
export type { ButtonProps } from './fundamental/button.js';
|
|
14
|
+
export { ButtonGroup, ButtonGroupText, ButtonGroupSeparator, buttonGroupVariants } from './fundamental/button-group.js';
|
|
15
|
+
export type { ButtonGroupProps, ButtonGroupTextProps, ButtonGroupSeparatorProps } from './fundamental/button-group.js';
|
|
16
|
+
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './fundamental/card.js';
|
|
17
|
+
export { Checkbox, checkboxVariants } from './fundamental/checkbox.js';
|
|
18
|
+
export { RadioGroup, RadioGroupItem, radioGroupVariants, radioGroupItemVariants } from './fundamental/radio-group.js';
|
|
19
|
+
export type { RadioGroupProps, RadioGroupItemProps } from './fundamental/radio-group.js';
|
|
20
|
+
export { Input } from './fundamental/input.js';
|
|
21
|
+
export type { InputProps } from './fundamental/input.js';
|
|
22
|
+
export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, inputGroupAddonVariants, } from './fundamental/input-group.js';
|
|
23
|
+
export type { InputGroupProps, InputGroupAddonProps, InputGroupButtonProps, InputGroupTextProps, InputGroupInputProps, InputGroupTextareaProps, } from './fundamental/input-group.js';
|
|
24
|
+
export { Label } from './fundamental/label.js';
|
|
25
|
+
export type { LabelProps } from './fundamental/label.js';
|
|
26
|
+
export { ScrollArea, ScrollBar } from './fundamental/scroll-area.js';
|
|
27
|
+
export { Separator } from './fundamental/separator.js';
|
|
28
|
+
export { Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonTable, skeletonVariants } from './fundamental/skeleton.js';
|
|
29
|
+
export { Spinner, LoadingOverlay, Pulse, ProgressDots } from './fundamental/spinner.js';
|
|
30
|
+
export type { SpinnerProps, LoadingOverlayProps } from './fundamental/spinner.js';
|
|
31
|
+
export { FixtureStatus, statusConfig } from './product/fixture-status.js';
|
|
32
|
+
export type { FixtureStatusProps, StatusValue, StatusConfig } from './product/fixture-status.js';
|
|
33
|
+
export { Switch } from './fundamental/switch.js';
|
|
34
|
+
export { Textarea } from './fundamental/textarea.js';
|
|
35
|
+
export type { TextareaProps } from './fundamental/textarea.js';
|
|
36
|
+
export { ActivityLog, ActivityLogItem, ActivityLogSeparator, ActivityLogHeader, ActivityLogContent, ActivityLogDescription, ActivityLogTime, ActivityLogChevron, ActivityLogValue, } from './product/activity-log.js';
|
|
37
|
+
export type { ActivityLogProps, ActivityLogItemProps, ActivityLogSeparatorProps, ActivityLogHeaderProps, ActivityLogContentProps, ActivityLogDescriptionProps, ActivityLogTimeProps, ActivityLogChevronProps, ActivityLogValueProps, } from './product/activity-log.js';
|
|
38
|
+
export { AttributesList, AttributesSeparator, AttributesGroup, AttributesItem, AttributesRow, AttributesLabel, AttributesValue, AttributesContent, AttributesChevron, } from './product/attributes-list.js';
|
|
39
|
+
export type { AttributesListProps, AttributesSeparatorProps, AttributesGroupProps, AttributesItemProps, AttributesRowProps, AttributesLabelProps, AttributesValueProps, AttributesContentProps, AttributesChevronProps, } from './product/attributes-list.js';
|
|
40
|
+
export { Editable, EditablePreview, EditableInput, EditableDisplay, EditableField } from './fundamental/editable.js';
|
|
41
|
+
export type { EditableProps, EditablePreviewProps, EditableInputProps } from './fundamental/editable.js';
|
|
42
|
+
export { FormField, FormLabel, FormControl, FormHelperText, FormErrorMessage } from './fundamental/form-field.js';
|
|
43
|
+
export type { FormFieldProps, FormLabelProps, FormControlProps, FormHelperTextProps, FormErrorMessageProps } from './fundamental/form-field.js';
|
|
44
|
+
export { Field, FieldSet, FieldLegend, FieldGroup, FieldContent, FieldLabel, FieldTitle, FieldDescription, FieldSeparator, FieldError, fieldVariants, fieldLegendVariants, } from './fundamental/form-field.js';
|
|
45
|
+
export type { FieldProps, FieldSetProps, FieldLegendProps, FieldGroupProps, FieldContentProps, FieldLabelProps, FieldTitleProps, FieldDescriptionProps, FieldSeparatorProps, FieldErrorProps } from './fundamental/form-field.js';
|
|
46
|
+
export { Tabs, TabsList, TabsTrigger, TabsContent, TabsGroupLabel } from './fundamental/tabs.js';
|
|
47
|
+
export type { TabsProps, TabsListProps, TabsTriggerProps, TabsGroupLabelProps } from './fundamental/tabs.js';
|
|
48
|
+
export { Toggle } from './fundamental/toggle.js';
|
|
49
|
+
export type { ToggleProps } from './fundamental/toggle.js';
|
|
50
|
+
export { ToggleGroup, ToggleGroupItem } from './fundamental/toggle-group.js';
|
|
51
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, selectTriggerVariants, selectContentVariants, selectItemVariants, } from './fundamental/select.js';
|
|
52
|
+
export type { SelectTriggerProps, SelectContentProps, SelectItemProps } from './fundamental/select.js';
|
|
53
|
+
export { TextLink } from './fundamental/text-link.js';
|
|
54
|
+
export type { TextLinkProps } from './fundamental/text-link.js';
|
|
55
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from './fundamental/accordion.js';
|
|
56
|
+
export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogBody, DialogFooter, DialogTitle, } from './fundamental/dialog.js';
|
|
57
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogBody, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from './fundamental/alert-dialog.js';
|
|
58
|
+
export { Empty, EmptyHeader, EmptyMedia, EmptyTitle, EmptyDescription, EmptyContent, } from './fundamental/empty.js';
|
|
59
|
+
export type { EmptyProps, EmptyMediaProps, EmptyTitleProps, EmptyDescriptionProps, } from './fundamental/empty.js';
|
|
60
|
+
export { Flag } from './fundamental/flag.js';
|
|
61
|
+
export type { FlagProps, FlagSize } from './fundamental/flag.js';
|
|
62
|
+
export { FileUpload } from './fundamental/file-upload.js';
|
|
63
|
+
export type { FileUploadFile, FileUploadProps, FileUploadDropzoneProps, FileUploadTriggerProps, FileUploadListProps, FileUploadItemProps, FileUploadItemPreviewProps, FileUploadItemMetadataProps, FileUploadItemProgressProps, FileUploadItemDeleteProps, } from './fundamental/file-upload.js';
|
|
64
|
+
export { HoverCard, HoverCardTrigger, HoverCardContent } from './fundamental/hover-card.js';
|
|
65
|
+
export { Slider } from './fundamental/slider.js';
|
|
66
|
+
export { Tag, TagGroup } from './fundamental/tag.js';
|
|
67
|
+
export type { TagProps, TagGroupProps, TagDotColor, TagIntent, TagVariant } from './fundamental/tag.js';
|
|
68
|
+
export { Tree } from './fundamental/tree.js';
|
|
69
|
+
export type { TreeProps, TreeDataItem } from './fundamental/tree.js';
|
|
70
|
+
export { CountryDropdown, useCountryData } from './fundamental/country-dropdown.js';
|
|
71
|
+
export type { Country, CountryDropdownProps, CountryDropdownTriggerProps } from './fundamental/country-dropdown.js';
|
|
72
|
+
export { Icon } from './fundamental/icon.js';
|
|
73
|
+
export type { IconColor, IconSize, CustomIconName } from './fundamental/icon.js';
|
|
74
|
+
export { Kbd, KbdGroup } from './fundamental/kbd.js';
|
|
75
|
+
export type { KbdProps, KbdGroupProps } from './fundamental/kbd.js';
|
|
76
|
+
export { MonthPicker } from './fundamental/month-picker.js';
|
|
77
|
+
export type { MonthPickerProps } from './fundamental/month-picker.js';
|
|
78
|
+
export { Calendar } from './fundamental/calendar.js';
|
|
79
|
+
export type { CalendarProps } from './fundamental/calendar.js';
|
|
80
|
+
export { DatePicker, DateRangePicker } from './fundamental/date-picker.js';
|
|
81
|
+
export type { DatePickerProps, DateRangePickerProps } from './fundamental/date-picker.js';
|
|
82
|
+
export { CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, } from './fundamental/command.js';
|
|
83
|
+
export { Combobox, MultiCombobox } from './fundamental/combobox.js';
|
|
84
|
+
export type { ComboboxProps, ComboboxOption, ComboboxTriggerProps, MultiComboboxProps, MultiComboboxTriggerProps, } from './fundamental/combobox.js';
|
|
85
|
+
export { AutocompleteSearch } from './fundamental/autocomplete-search.js';
|
|
86
|
+
export type { AutocompleteSearchProps } from './fundamental/autocomplete-search.js';
|
|
87
|
+
export { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbPagePicker, BreadcrumbSeparator, } from './fundamental/breadcrumb.js';
|
|
88
|
+
export type { BreadcrumbPagePickerProps } from './fundamental/breadcrumb.js';
|
|
89
|
+
export { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarInput, SidebarSearchButton, SidebarSearchTrigger, SidebarRail, SidebarSeparator, SidebarGroup, SidebarGroupAction, SidebarGroupLabel, SidebarGroupContent, SidebarMenu, SidebarMenuItem, SidebarMenuButton, SidebarMenuAction, SidebarMenuBadge, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubItem, SidebarMenuSubButton, SidebarInset, SidebarProvider, SidebarTrigger, useSidebar, } from './fundamental/sidebar.js';
|
|
90
|
+
export { AppFrame } from './product/app-frame.js';
|
|
91
|
+
export type { AppFrameProps, AppFrameNavItem, AppFrameUser, AppFrameTeam, AppFrameNavigationData, } from './product/app-frame.js';
|
|
92
|
+
export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, } from './fundamental/drawer.js';
|
|
93
|
+
export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, } from './fundamental/sheet.js';
|
|
94
|
+
export type { SheetProps, SheetContentProps } from './fundamental/sheet.js';
|
|
95
|
+
export { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, DropdownMenuLabel, DropdownMenuGroup, } from './fundamental/dropdown-menu.js';
|
|
96
|
+
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from './fundamental/tooltip.js';
|
|
97
|
+
export { Toaster, toast } from './fundamental/toast.js';
|
|
98
|
+
export { Pagination } from './fundamental/pagination.js';
|
|
99
|
+
export type { PaginationProps } from './fundamental/pagination.js';
|
|
100
|
+
export { Progress } from './fundamental/progress.js';
|
|
101
|
+
export type { ProgressProps } from './fundamental/progress.js';
|
|
102
|
+
export { Popover, PopoverTrigger, PopoverContent } from './fundamental/popover.js';
|
|
103
|
+
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, TableSortHeader, TableGroupHeader, tableVariants, tableRowVariants, tableCellVariants, tableHeaderVariants, } from './fundamental/table.js';
|
|
104
|
+
export type { TableProps, TableRowProps, TableHeadProps, TableCellProps, TableSortHeaderProps, } from './fundamental/table.js';
|
|
105
|
+
export { DataTable } from './product/data-table.js';
|
|
106
|
+
export type { RowState, DepthColorConfig, DepthColors, DepthHeights, NestedRowStyling, DataTableEmptyStateProps, DataTableNoResultsStateProps, DataTableErrorStateProps, } from './product/data-table.js';
|
|
107
107
|
export type { PaginationState, SortingState, ColumnFiltersState } from '@tanstack/react-table';
|
|
108
|
-
export { DataTableSettingsMenu } from './product/data-table-settings-menu';
|
|
109
|
-
export type { DataTableSettingsMenuProps, ColumnOption } from './product/data-table-settings-menu';
|
|
110
|
-
export { ViewModeMenu } from './product/view-mode-menu';
|
|
111
|
-
export type { ViewModeMenuProps, ViewMode, ViewModeMenuHandle, ViewModeSettings } from './product/view-mode-menu';
|
|
112
|
-
export { Filters, FilterPanelContent, FilterDropdownMenu, DEFAULT_DAY_PRESETS, DEFAULT_MONTH_PRESETS } from './product/filters';
|
|
113
|
-
export type { FiltersProps, FilterDefinition, FilterOption, FilterOptionGroup, FilterValue, GlobalSearchTerm, DateRangePreset, DateGranularity, NumberRangeConfig, DateRangeConfig, } from './product/filters';
|
|
114
|
-
export { Bookmarks, BookmarksContent, BookmarksActions, BookmarksSettings, BookmarksDefaultActions, BookmarksRevertButton, BookmarksCreateButton, BookmarksSaveButton, BookmarksResetButton, BookmarksSaveDropdown, useBookmarksActions, } from './product/bookmarks';
|
|
115
|
-
export type { Bookmark, BookmarksProps, FiltersState, TableState, } from './product/bookmarks';
|
|
116
|
-
export { LinkedChart, createLinkedChartColumns } from './product/linked-chart';
|
|
117
|
-
export type { LinkedChartProps, LinkedChartColumn } from './product/linked-chart';
|
|
118
|
-
export { ResizablePanelGroup, ResizablePanel, ResizableHandle } from './fundamental/resizable';
|
|
119
|
-
export { cn } from '../lib/utils';
|
|
108
|
+
export { DataTableSettingsMenu } from './product/data-table-settings-menu.js';
|
|
109
|
+
export type { DataTableSettingsMenuProps, ColumnOption } from './product/data-table-settings-menu.js';
|
|
110
|
+
export { ViewModeMenu } from './product/view-mode-menu.js';
|
|
111
|
+
export type { ViewModeMenuProps, ViewMode, ViewModeMenuHandle, ViewModeSettings } from './product/view-mode-menu.js';
|
|
112
|
+
export { Filters, FilterPanelContent, FilterDropdownMenu, DEFAULT_DAY_PRESETS, DEFAULT_MONTH_PRESETS } from './product/filters.js';
|
|
113
|
+
export type { FiltersProps, FilterDefinition, FilterOption, FilterOptionGroup, FilterValue, GlobalSearchTerm, DateRangePreset, DateGranularity, NumberRangeConfig, DateRangeConfig, } from './product/filters.js';
|
|
114
|
+
export { Bookmarks, BookmarksContent, BookmarksActions, BookmarksSettings, BookmarksDefaultActions, BookmarksRevertButton, BookmarksCreateButton, BookmarksSaveButton, BookmarksResetButton, BookmarksSaveDropdown, useBookmarksActions, } from './product/bookmarks.js';
|
|
115
|
+
export type { Bookmark, BookmarksProps, FiltersState, TableState, } from './product/bookmarks.js';
|
|
116
|
+
export { LinkedChart, createLinkedChartColumns } from './product/linked-chart.js';
|
|
117
|
+
export type { LinkedChartProps, LinkedChartColumn } from './product/linked-chart.js';
|
|
118
|
+
export { ResizablePanelGroup, ResizablePanel, ResizableHandle } from './fundamental/resizable.js';
|
|
119
|
+
export { cn } from '../lib/utils.js';
|
|
120
120
|
export declare const designTokens: {
|
|
121
121
|
readonly colors: {
|
|
122
122
|
readonly primary: "var(--color-surface-primary)";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CollapsibleContent } from '../fundamental/collapsible';
|
|
1
|
+
import { CollapsibleContent } from '../fundamental/collapsible.js';
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
type AttributesListSize = 's' | 'xs';
|
|
4
4
|
export interface AttributesListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { FilterValue } from './filters.js';
|
|
2
|
+
import { SortingState, VisibilityState, GroupingState, ColumnOrderState } from '@tanstack/react-table';
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
export interface FiltersState {
|
|
5
|
+
activeFilters: Record<string, FilterValue>;
|
|
6
|
+
pinnedFilters: string[];
|
|
7
|
+
globalSearchTerms: string[];
|
|
8
|
+
}
|
|
9
|
+
export interface TableState {
|
|
10
|
+
sorting: SortingState;
|
|
11
|
+
columnVisibility: VisibilityState;
|
|
12
|
+
grouping: GroupingState;
|
|
13
|
+
columnOrder: ColumnOrderState;
|
|
14
|
+
columnSizing: Record<string, number>;
|
|
15
|
+
}
|
|
16
|
+
export interface Bookmark {
|
|
17
|
+
id: string;
|
|
18
|
+
name: string;
|
|
19
|
+
type: "system" | "user";
|
|
20
|
+
isDefault?: boolean;
|
|
21
|
+
createdAt: Date;
|
|
22
|
+
updatedAt: Date;
|
|
23
|
+
count?: number;
|
|
24
|
+
isLoadingCount?: boolean;
|
|
25
|
+
filtersState?: FiltersState;
|
|
26
|
+
tableState?: TableState;
|
|
27
|
+
}
|
|
28
|
+
export interface BookmarksProps {
|
|
29
|
+
variant: "list" | "tabs";
|
|
30
|
+
bookmarks: Bookmark[];
|
|
31
|
+
systemBookmarks: Bookmark[];
|
|
32
|
+
activeBookmarkId?: string;
|
|
33
|
+
defaultBookmarkId?: string;
|
|
34
|
+
isDirty: boolean;
|
|
35
|
+
children?: React.ReactNode;
|
|
36
|
+
/** Accessible label for the bookmarks tab list (defaults to "Bookmarks") */
|
|
37
|
+
"aria-label"?: string;
|
|
38
|
+
onSelect: (bookmark: Bookmark) => void;
|
|
39
|
+
onRevert: () => void;
|
|
40
|
+
onSave: (action: "update" | "create", name?: string) => Promise<void>;
|
|
41
|
+
onRename: (id: string, newName: string) => Promise<void>;
|
|
42
|
+
onDelete: (id: string) => Promise<void>;
|
|
43
|
+
onSetDefault: (id: string) => Promise<void>;
|
|
44
|
+
/** Called when hovering over a bookmark tab - useful for prefetching count data */
|
|
45
|
+
onBookmarkHover?: (bookmark: Bookmark) => void;
|
|
46
|
+
/** Called when overflow menu opens/closes (tabs variant only) */
|
|
47
|
+
onOverflowMenuChange?: (open: boolean) => void;
|
|
48
|
+
/** Called when create/rename dialog opens/closes */
|
|
49
|
+
onDialogChange?: (dialog: "create" | "rename" | null) => void;
|
|
50
|
+
}
|
|
51
|
+
interface BookmarksContextValue {
|
|
52
|
+
isDirty: boolean;
|
|
53
|
+
isSystemBookmark: boolean;
|
|
54
|
+
activeBookmark?: Bookmark;
|
|
55
|
+
openCreateDialog: () => void;
|
|
56
|
+
openRenameDialog: (id?: string) => void;
|
|
57
|
+
handleRevert: () => void;
|
|
58
|
+
handleUpdate: () => void;
|
|
59
|
+
handleDelete: (id?: string) => void;
|
|
60
|
+
handleSetDefault: (id?: string) => void;
|
|
61
|
+
}
|
|
62
|
+
export declare function useBookmarksActions(): BookmarksContextValue;
|
|
63
|
+
export declare function BookmarksContent({ children }: {
|
|
64
|
+
children?: React.ReactNode;
|
|
65
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
66
|
+
export declare function BookmarksActions({ children }: {
|
|
67
|
+
children?: React.ReactNode;
|
|
68
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
69
|
+
export declare function BookmarksSettings({ children }: {
|
|
70
|
+
children?: React.ReactNode;
|
|
71
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
72
|
+
export declare function BookmarksRevertButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
73
|
+
export declare function BookmarksCreateButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
74
|
+
export declare function BookmarksSaveButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
75
|
+
export declare function BookmarksResetButton(): import("react/jsx-runtime").JSX.Element | null;
|
|
76
|
+
export declare function BookmarksSaveDropdown(): import("react/jsx-runtime").JSX.Element | null;
|
|
77
|
+
export declare function BookmarksDefaultActions(): import("react/jsx-runtime").JSX.Element | null;
|
|
78
|
+
export declare function Bookmarks({ variant, bookmarks, systemBookmarks, activeBookmarkId, isDirty, children, "aria-label": ariaLabel, onSelect, onRevert, onSave, onRename, onDelete, onSetDefault, onBookmarkHover, onOverflowMenuChange, onDialogChange, }: BookmarksProps): import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
export declare namespace Bookmarks {
|
|
80
|
+
var Content: typeof BookmarksContent;
|
|
81
|
+
var Actions: typeof BookmarksActions;
|
|
82
|
+
var Settings: typeof BookmarksSettings;
|
|
83
|
+
var DefaultActions: typeof BookmarksDefaultActions;
|
|
84
|
+
var RevertButton: typeof BookmarksRevertButton;
|
|
85
|
+
var CreateButton: typeof BookmarksCreateButton;
|
|
86
|
+
var SaveButton: typeof BookmarksSaveButton;
|
|
87
|
+
var ResetButton: typeof BookmarksResetButton;
|
|
88
|
+
var SaveDropdown: typeof BookmarksSaveDropdown;
|
|
89
|
+
}
|
|
90
|
+
export {};
|