@rafal.lemieszewski/tide-ui 0.82.1 → 0.84.2
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 +21 -9
- 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/index.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/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 +205 -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/index.js +37 -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 +2459 -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 +388 -0
- package/dist/es/lib/utils.js +8 -0
- package/dist/es/style.css +1 -0
- package/dist/{components → types/components}/fundamental/avatar-group.d.ts +5 -5
- package/dist/{components → types/components}/fundamental/avatar.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/badge.d.ts +5 -5
- package/dist/{components → types/components}/fundamental/button-group.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/button.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/command.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/empty.d.ts +4 -4
- package/dist/{components → types/components}/fundamental/file-upload.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/flag.d.ts +10 -10
- package/dist/{components → types/components}/fundamental/form-field.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/form.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/icon.d.ts +5 -5
- package/dist/{components → types/components}/fundamental/input-group.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/input.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/kbd.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/label.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/progress.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/select.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/sidebar.d.ts +6 -6
- package/dist/{components → types/components}/fundamental/skeleton.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/spinner.d.ts +4 -4
- package/dist/{components → types/components}/fundamental/table.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/tabs.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/tag.d.ts +4 -4
- package/dist/{components → types/components}/fundamental/text-link.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/textarea.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/toggle-group.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/toggle.d.ts +1 -1
- package/dist/{components → types/components}/index.d.ts +134 -128
- package/dist/{components → types/components}/product/activity-log.d.ts +1 -1
- package/dist/{components → types/components}/product/attributes-list.d.ts +3 -3
- package/dist/{components → types/components}/product/bookmarks.d.ts +1 -1
- package/dist/{components → types/components}/product/fixture-status.d.ts +5 -5
- package/dist/{components → types/components}/product/linked-chart.d.ts +1 -1
- package/dist/types/lib/index.d.cts +3 -0
- package/dist/types/lib/index.d.ts +3 -0
- package/package.json +111 -33
- 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 -87763
- 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/breadcrumb.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/button.test.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/calendar.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/card.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/chart.d.ts +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 → types/components}/fundamental/country-dropdown.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/custom-icons.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/date-picker.d.ts +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/hover-card.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/radio-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/resizable.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/scroll-area.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/slider.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/switch.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toast.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 → types/components}/product/data-table.d.ts +0 -0
- /package/dist/{components → types/components}/product/filters.d.ts +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,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)";
|
|
@@ -131,17 +131,23 @@ export declare const designTokens: {
|
|
|
131
131
|
readonly borderFocus: "var(--color-border-focused)";
|
|
132
132
|
};
|
|
133
133
|
readonly spacing: {
|
|
134
|
-
readonly
|
|
135
|
-
readonly
|
|
136
|
-
readonly
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
134
|
+
readonly xs: "var(--space-xs)";
|
|
135
|
+
readonly s: "var(--space-s)";
|
|
136
|
+
readonly m: "var(--space-m)";
|
|
137
|
+
readonly l: "var(--space-l)";
|
|
138
|
+
readonly xl: "var(--space-xl)";
|
|
139
|
+
readonly '2xl': "var(--space-2xl)";
|
|
140
|
+
readonly '3xl': "var(--space-3xl)";
|
|
141
|
+
readonly '4xl': "var(--space-4xl)";
|
|
139
142
|
};
|
|
140
143
|
readonly sizing: {
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
144
|
+
readonly xs: "var(--size-xs)";
|
|
145
|
+
readonly s: "var(--size-s)";
|
|
146
|
+
readonly m: "var(--size-m)";
|
|
147
|
+
readonly l: "var(--size-l)";
|
|
148
|
+
readonly xl: "var(--size-xl)";
|
|
149
|
+
readonly '2xl': "var(--size-2xl)";
|
|
150
|
+
readonly '3xl': "var(--size-3xl)";
|
|
151
|
+
readonly '4xl': "var(--size-4xl)";
|
|
146
152
|
};
|
|
147
153
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { CollapsibleContent } from '../fundamental/collapsible';
|
|
1
|
+
import { CollapsibleContent } from '../fundamental/collapsible.js';
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
type AttributesListSize = '
|
|
3
|
+
type AttributesListSize = 's' | 'xs';
|
|
4
4
|
export interface AttributesListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
5
5
|
/**
|
|
6
6
|
* Size variant for the entire attributes list
|
|
7
|
-
* @default "
|
|
7
|
+
* @default "s"
|
|
8
8
|
*/
|
|
9
9
|
size?: AttributesListSize;
|
|
10
10
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { IconColor } from '../fundamental/icon';
|
|
2
|
+
import { IconColor } from '../fundamental/icon.js';
|
|
3
3
|
type StatusConfig = {
|
|
4
4
|
icon: string;
|
|
5
5
|
color: IconColor;
|
|
@@ -9,10 +9,10 @@ type StatusConfig = {
|
|
|
9
9
|
export type StatusValue = "order-draft" | "order-distributed" | "order-withdrawn" | "negotiation-indicative-offer" | "negotiation-indicative-bid" | "negotiation-firm-offer" | "negotiation-firm-bid" | "negotiation-firm" | "negotiation-on-subs" | "negotiation-fixed" | "negotiation-firm-offer-expired" | "negotiation-withdrawn" | "negotiation-firm-amendment" | "negotiation-subs-expired" | "negotiation-subs-failed" | "negotiation-on-subs-amendment" | "contract-draft" | "contract-working-copy" | "contract-final" | "contract-rejected" | "addenda-draft" | "addenda-working-copy" | "addenda-final" | "recap-manager-draft" | "recap-manager-on-subs" | "recap-manager-fully-fixed" | "recap-manager-canceled" | "recap-manager-failed";
|
|
10
10
|
declare const statusConfig: Record<StatusValue, StatusConfig>;
|
|
11
11
|
declare const textSizeClasses: {
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
12
|
+
readonly xs: "text-body-medium-xsm";
|
|
13
|
+
readonly s: "text-body-medium-sm";
|
|
14
|
+
readonly m: "text-body-medium-md";
|
|
15
|
+
readonly l: "text-body-medium-lg";
|
|
16
16
|
};
|
|
17
17
|
type StatusSize = keyof typeof textSizeClasses;
|
|
18
18
|
export interface FixtureStatusProps extends React.HTMLAttributes<HTMLDivElement> {
|
package/package.json
CHANGED
|
@@ -1,21 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rafal.lemieszewski/tide-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.84.2",
|
|
4
4
|
"description": "A comprehensive React component library built with Tailwind CSS and Radix UI primitives",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs
|
|
7
|
-
"module": "./dist/index.
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
6
|
+
"main": "./dist/cjs/lib/index.cjs",
|
|
7
|
+
"module": "./dist/es/lib/index.js",
|
|
8
|
+
"types": "./dist/types/lib/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/types/lib/index.d.ts",
|
|
13
|
+
"default": "./dist/es/lib/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/types/lib/index.d.cts",
|
|
17
|
+
"default": "./dist/cjs/lib/index.cjs"
|
|
18
|
+
}
|
|
14
19
|
},
|
|
15
|
-
"./styles":
|
|
20
|
+
"./styles": {
|
|
21
|
+
"import": "./dist/es/style.css",
|
|
22
|
+
"require": "./dist/es/style.css",
|
|
23
|
+
"default": "./dist/es/style.css"
|
|
24
|
+
},
|
|
25
|
+
"./package.json": "./package.json"
|
|
16
26
|
},
|
|
17
27
|
"files": [
|
|
18
|
-
"dist"
|
|
28
|
+
"dist/es",
|
|
29
|
+
"dist/cjs",
|
|
30
|
+
"dist/types",
|
|
31
|
+
"!dist/**/*.map",
|
|
32
|
+
"!dist/cjs/*.css"
|
|
19
33
|
],
|
|
20
34
|
"sideEffects": [
|
|
21
35
|
"**/*.css"
|
|
@@ -23,7 +37,7 @@
|
|
|
23
37
|
"scripts": {
|
|
24
38
|
"dev": "vite",
|
|
25
39
|
"build": "vite build",
|
|
26
|
-
"build:lib": "vite build --config vite.config.lib.ts",
|
|
40
|
+
"build:lib": "rm -rf dist && vite build --config vite.config.lib.ts && node scripts/fix-cjs-types.mjs",
|
|
27
41
|
"lint": "eslint .",
|
|
28
42
|
"preview": "vite preview",
|
|
29
43
|
"test": "vitest",
|
|
@@ -32,7 +46,10 @@
|
|
|
32
46
|
"test:coverage": "vitest --coverage",
|
|
33
47
|
"storybook": "npx storybook dev -p 6006",
|
|
34
48
|
"build-storybook": "npx storybook build --quiet",
|
|
35
|
-
"
|
|
49
|
+
"check:publint": "publint",
|
|
50
|
+
"check:types": "attw --pack . --ignore-rules=no-resolution",
|
|
51
|
+
"size": "size-limit",
|
|
52
|
+
"prepublishOnly": "npm run build:lib && npm run check:publint && npm run check:types",
|
|
36
53
|
"release:patch": "npm version patch && git push && git push --tags",
|
|
37
54
|
"release:minor": "npm version minor && git push && git push --tags",
|
|
38
55
|
"release:major": "npm version major && git push && git push --tags"
|
|
@@ -50,12 +67,70 @@
|
|
|
50
67
|
"license": "MIT",
|
|
51
68
|
"repository": {
|
|
52
69
|
"type": "git",
|
|
53
|
-
"url": "https://github.com/lemu/tide-ui"
|
|
70
|
+
"url": "git+https://github.com/lemu/tide-ui.git"
|
|
54
71
|
},
|
|
55
72
|
"homepage": "https://tide-ui-storybook.vercel.app",
|
|
56
73
|
"peerDependencies": {
|
|
74
|
+
"@dnd-kit/core": ">=6.0.0",
|
|
75
|
+
"@dnd-kit/sortable": ">=10.0.0",
|
|
76
|
+
"@dnd-kit/utilities": ">=3.0.0",
|
|
77
|
+
"@hookform/resolvers": ">=5.0.0",
|
|
78
|
+
"@tanstack/react-table": ">=8.0.0",
|
|
79
|
+
"@tanstack/react-virtual": ">=3.0.0",
|
|
80
|
+
"cmdk": ">=1.0.0",
|
|
81
|
+
"country-data-list": ">=1.0.0",
|
|
57
82
|
"react": ">=18.0.0",
|
|
58
|
-
"react-
|
|
83
|
+
"react-day-picker": ">=9.0.0",
|
|
84
|
+
"react-dom": ">=18.0.0",
|
|
85
|
+
"react-hook-form": ">=7.0.0",
|
|
86
|
+
"react-resizable-panels": ">=3.0.0",
|
|
87
|
+
"recharts": ">=3.0.0",
|
|
88
|
+
"vaul": ">=1.0.0",
|
|
89
|
+
"zod": ">=4.0.0"
|
|
90
|
+
},
|
|
91
|
+
"peerDependenciesMeta": {
|
|
92
|
+
"recharts": {
|
|
93
|
+
"optional": true
|
|
94
|
+
},
|
|
95
|
+
"@tanstack/react-table": {
|
|
96
|
+
"optional": true
|
|
97
|
+
},
|
|
98
|
+
"@tanstack/react-virtual": {
|
|
99
|
+
"optional": true
|
|
100
|
+
},
|
|
101
|
+
"@dnd-kit/core": {
|
|
102
|
+
"optional": true
|
|
103
|
+
},
|
|
104
|
+
"@dnd-kit/sortable": {
|
|
105
|
+
"optional": true
|
|
106
|
+
},
|
|
107
|
+
"@dnd-kit/utilities": {
|
|
108
|
+
"optional": true
|
|
109
|
+
},
|
|
110
|
+
"react-hook-form": {
|
|
111
|
+
"optional": true
|
|
112
|
+
},
|
|
113
|
+
"@hookform/resolvers": {
|
|
114
|
+
"optional": true
|
|
115
|
+
},
|
|
116
|
+
"zod": {
|
|
117
|
+
"optional": true
|
|
118
|
+
},
|
|
119
|
+
"react-day-picker": {
|
|
120
|
+
"optional": true
|
|
121
|
+
},
|
|
122
|
+
"cmdk": {
|
|
123
|
+
"optional": true
|
|
124
|
+
},
|
|
125
|
+
"vaul": {
|
|
126
|
+
"optional": true
|
|
127
|
+
},
|
|
128
|
+
"react-resizable-panels": {
|
|
129
|
+
"optional": true
|
|
130
|
+
},
|
|
131
|
+
"country-data-list": {
|
|
132
|
+
"optional": true
|
|
133
|
+
}
|
|
59
134
|
},
|
|
60
135
|
"optionalDependencies": {
|
|
61
136
|
"@rollup/rollup-linux-x64-gnu": "^4.46.2",
|
|
@@ -63,11 +138,7 @@
|
|
|
63
138
|
"lightningcss-linux-x64-gnu": "^1.30.1"
|
|
64
139
|
},
|
|
65
140
|
"dependencies": {
|
|
66
|
-
"@
|
|
67
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
68
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
69
|
-
"@fontsource/inter": "^5.2.6",
|
|
70
|
-
"@hookform/resolvers": "^5.2.1",
|
|
141
|
+
"@fontsource-variable/inter": "^5.2.5",
|
|
71
142
|
"@radix-ui/react-accordion": "^1.2.11",
|
|
72
143
|
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
73
144
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
@@ -89,30 +160,24 @@
|
|
|
89
160
|
"@radix-ui/react-toggle": "^1.1.9",
|
|
90
161
|
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
91
162
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
92
|
-
"@tanstack/react-table": "^8.21.3",
|
|
93
|
-
"@tanstack/react-virtual": "^3.13.12",
|
|
94
163
|
"class-variance-authority": "^0.7.1",
|
|
95
164
|
"clsx": "^2.1.1",
|
|
96
|
-
"cmdk": "^1.1.1",
|
|
97
|
-
"country-data-list": "^1.5.4",
|
|
98
165
|
"date-fns": "^4.1.0",
|
|
99
|
-
"flag-icons": "^7.5.0",
|
|
100
166
|
"lucide-react": "^0.534.0",
|
|
101
|
-
"react": ">=18.0.0",
|
|
102
|
-
"react-day-picker": "^9.8.1",
|
|
103
|
-
"react-dom": ">=18.0.0",
|
|
104
|
-
"react-hook-form": "^7.62.0",
|
|
105
167
|
"react-is": "^19.2.0",
|
|
106
|
-
"react-resizable-panels": "^3.0.6",
|
|
107
|
-
"recharts": "^3.1.2",
|
|
108
168
|
"sonner": "^2.0.7",
|
|
109
|
-
"tailwind-merge": "^3.3.1"
|
|
110
|
-
"vaul": "^1.1.2",
|
|
111
|
-
"zod": "^4.0.16"
|
|
169
|
+
"tailwind-merge": "^3.3.1"
|
|
112
170
|
},
|
|
113
171
|
"devDependencies": {
|
|
172
|
+
"@arethetypeswrong/cli": "^0.17.4",
|
|
114
173
|
"@chromatic-com/storybook": "^4.1.0",
|
|
174
|
+
"@dnd-kit/core": "^6.3.1",
|
|
175
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
176
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
115
177
|
"@eslint/js": "^9.30.1",
|
|
178
|
+
"@hookform/resolvers": "^5.2.2",
|
|
179
|
+
"@size-limit/esbuild": "^11.2.0",
|
|
180
|
+
"@size-limit/file": "^11.2.0",
|
|
116
181
|
"@storybook/addon-a11y": "^9.1.2",
|
|
117
182
|
"@storybook/addon-docs": "^9.1.2",
|
|
118
183
|
"@storybook/addon-onboarding": "^9.1.2",
|
|
@@ -120,6 +185,8 @@
|
|
|
120
185
|
"@storybook/react-vite": "^9.1.2",
|
|
121
186
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
122
187
|
"@tailwindcss/vite": "^4.1.11",
|
|
188
|
+
"@tanstack/react-table": "^8.21.3",
|
|
189
|
+
"@tanstack/react-virtual": "^3.13.19",
|
|
123
190
|
"@testing-library/jest-dom": "^6.9.1",
|
|
124
191
|
"@testing-library/react": "^16.3.0",
|
|
125
192
|
"@testing-library/user-event": "^14.6.1",
|
|
@@ -129,6 +196,8 @@
|
|
|
129
196
|
"@vitejs/plugin-react": "^4.6.0",
|
|
130
197
|
"@vitest/browser": "^3.2.4",
|
|
131
198
|
"@vitest/coverage-v8": "^3.2.4",
|
|
199
|
+
"cmdk": "^1.1.1",
|
|
200
|
+
"country-data-list": "^1.6.0",
|
|
132
201
|
"eslint": "^9.30.1",
|
|
133
202
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
134
203
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
@@ -136,11 +205,20 @@
|
|
|
136
205
|
"globals": "^16.3.0",
|
|
137
206
|
"jsdom": "^27.2.0",
|
|
138
207
|
"playwright": "^1.54.2",
|
|
208
|
+
"publint": "^0.3.17",
|
|
209
|
+
"react-day-picker": "^9.13.2",
|
|
210
|
+
"react-hook-form": "^7.71.2",
|
|
211
|
+
"react-resizable-panels": "^3.0.6",
|
|
212
|
+
"recharts": "^3.7.0",
|
|
213
|
+
"rollup-plugin-visualizer": "^7.0.0",
|
|
214
|
+
"size-limit": "^11.2.0",
|
|
139
215
|
"storybook": "^9.1.2",
|
|
140
216
|
"tailwindcss": "^4.1.11",
|
|
141
217
|
"typescript": "^5.6.0",
|
|
218
|
+
"vaul": "^1.1.2",
|
|
142
219
|
"vite": "^7.0.4",
|
|
143
220
|
"vite-plugin-dts": "^4.5.4",
|
|
144
|
-
"vitest": "^3.2.4"
|
|
221
|
+
"vitest": "^3.2.4",
|
|
222
|
+
"zod": "^4.3.6"
|
|
145
223
|
}
|
|
146
224
|
}
|