@espressif/dashboard-ui-components 1.0.0 → 1.1.0
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 +2 -1
- package/dist/{chunk-QJVPE3FM.js → chunk-34PXJOCS.js} +255 -215
- package/dist/{chunk-JOSB72WF.js → chunk-E6IO2DVV.js} +247 -57
- package/dist/{chunk-36DQX2ML.js → chunk-IT5T6Y4V.js} +2 -2
- package/dist/{chunk-JL7VATX6.js → chunk-SYEKNRS5.js} +1 -1
- package/dist/{chunk-FRLPPTMV.js → chunk-WCCSASYX.js} +2 -6
- package/dist/common/index.js +4 -4
- package/dist/components/index.d.ts +114 -9
- package/dist/components/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/layouts/index.d.ts +2 -2
- package/dist/layouts/index.js +3 -3
- package/dist/{types-BMw6Ljjc.d.ts → types-B_tam56l.d.ts} +8 -1
- package/package.json +1 -1
- package/src/styles/globals.css +4 -2
|
@@ -6,8 +6,8 @@ import React__default, { ReactNode, CSSProperties, ReactElement, HTMLAttributes,
|
|
|
6
6
|
import { f as ListProps } from '../list.props-DBDJt4C1.js';
|
|
7
7
|
export { L as LIST_CLASS_NAMES, a as ListGroup, b as ListItem, c as ListItemSize, d as ListItemVariant, e as ListLinkComponentProps, g as ListRole } from '../list.props-DBDJt4C1.js';
|
|
8
8
|
import { HTMLMotionProps, Transition, SpringOptions, UseInViewOptions } from 'motion/react';
|
|
9
|
-
import { e as SidebarProps$1 } from '../types-
|
|
10
|
-
export { S as SidebarEndActionConfig, a as SidebarGroupConfig, b as SidebarItemConfig, c as SidebarLinkComponentProps, d as SidebarNavEntry, f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from '../types-
|
|
9
|
+
import { e as SidebarProps$1 } from '../types-B_tam56l.js';
|
|
10
|
+
export { S as SidebarEndActionConfig, a as SidebarGroupConfig, b as SidebarItemConfig, c as SidebarLinkComponentProps, d as SidebarNavEntry, f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from '../types-B_tam56l.js';
|
|
11
11
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
12
12
|
import { VariantProps } from 'class-variance-authority';
|
|
13
13
|
import { Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Switch as Switch$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
|
|
@@ -137,6 +137,12 @@ interface SectionCardProps {
|
|
|
137
137
|
icon?: ReactNode;
|
|
138
138
|
primaryText?: ReactNode;
|
|
139
139
|
secondaryText?: ReactNode;
|
|
140
|
+
/**
|
|
141
|
+
* When `true`, keeps `secondaryText` on one line with ellipsis and shows a
|
|
142
|
+
* tooltip on overflow. When `false`, the full text wraps onto as many lines
|
|
143
|
+
* as needed and no tooltip is rendered. Defaults to `true`.
|
|
144
|
+
*/
|
|
145
|
+
truncateSecondaryText?: boolean;
|
|
140
146
|
actions?: ReactNode;
|
|
141
147
|
allowCollapse?: boolean;
|
|
142
148
|
defaultOpen?: boolean;
|
|
@@ -160,7 +166,7 @@ interface SectionCardProps {
|
|
|
160
166
|
/** Called when the collapsible section is expanded or collapsed. */
|
|
161
167
|
onOpenChange?: (open: boolean) => void;
|
|
162
168
|
}
|
|
163
|
-
declare function SectionCard({ icon, primaryText, secondaryText, actions, allowCollapse, defaultOpen, size, variant, color, children, className, style, fillHeight, onOpenChange, }: SectionCardProps): React$1.JSX.Element;
|
|
169
|
+
declare function SectionCard({ icon, primaryText, secondaryText, truncateSecondaryText, actions, allowCollapse, defaultOpen, size, variant, color, children, className, style, fillHeight, onOpenChange, }: SectionCardProps): React$1.JSX.Element;
|
|
164
170
|
|
|
165
171
|
declare const animatedCardAnimations: {
|
|
166
172
|
readonly accessDenied: {
|
|
@@ -16389,7 +16395,9 @@ interface InputProps extends Omit<React$1.ComponentProps<"input">, "size"> {
|
|
|
16389
16395
|
errorContent?: React$1.ReactNode;
|
|
16390
16396
|
startIcon?: React$1.ReactNode;
|
|
16391
16397
|
endIcon?: React$1.ReactNode;
|
|
16398
|
+
/** Leading add-on box. Takes precedence over `startAddOn` when both are set. */
|
|
16392
16399
|
startAddOnContent?: React$1.ReactNode;
|
|
16400
|
+
/** Trailing add-on box. Takes precedence over `endAddOn` when both are set. */
|
|
16393
16401
|
endAddOnContent?: React$1.ReactNode;
|
|
16394
16402
|
startAddOn?: string;
|
|
16395
16403
|
endAddOn?: string;
|
|
@@ -16590,10 +16598,15 @@ interface ScrollableSectionsProps extends React$1.ComponentPropsWithoutRef<"div"
|
|
|
16590
16598
|
*/
|
|
16591
16599
|
scrollRootRef?: React$1.RefObject<HTMLElement | null>;
|
|
16592
16600
|
/**
|
|
16593
|
-
* CSS length applied as `top` on the sticky tab strip (desktop
|
|
16601
|
+
* CSS length applied as `top` on the sticky tab strip (desktop) and on the sticky
|
|
16602
|
+
* section select (mobile).
|
|
16594
16603
|
* Increase this when the tabs render inside a shell that already has a sticky
|
|
16595
16604
|
* header at `top: 0` — pass a value tall enough to clear that header,
|
|
16596
16605
|
* e.g. `"calc(var(--espd-header-height) + 8rem)"`. Defaults to `"1rem"`.
|
|
16606
|
+
*
|
|
16607
|
+
* Note: an ancestor with `overflow: hidden` disables `position: sticky`, so the
|
|
16608
|
+
* strip and select only stick when the scrolling ancestor is the page or a
|
|
16609
|
+
* container with `overflow-y: auto`.
|
|
16597
16610
|
*/
|
|
16598
16611
|
stickyTop?: string;
|
|
16599
16612
|
}
|
|
@@ -16608,7 +16621,7 @@ interface ScrollableSectionsContentProps extends React$1.ComponentPropsWithoutRe
|
|
|
16608
16621
|
id: string;
|
|
16609
16622
|
}
|
|
16610
16623
|
|
|
16611
|
-
declare function ScrollableSectionsRoot({ className, children, defaultValue, scrollRootRef, stickyTop, ...rest }: ScrollableSectionsProps): React$1.JSX.Element;
|
|
16624
|
+
declare function ScrollableSectionsRoot({ className, children, defaultValue, scrollRootRef, stickyTop, style, ...rest }: ScrollableSectionsProps): React$1.JSX.Element;
|
|
16612
16625
|
declare function ScrollableSectionsTabs({ className, children, ...rest }: ScrollableSectionsTabsProps): React$1.JSX.Element;
|
|
16613
16626
|
declare namespace ScrollableSectionsTabs {
|
|
16614
16627
|
var displayName: string;
|
|
@@ -17623,6 +17636,13 @@ interface TogglableItemsListProps {
|
|
|
17623
17636
|
}
|
|
17624
17637
|
declare function TogglableItemsList({ items, checkedState, onToggle, label, icon, triggerButtonVariant, triggerButtonColor, triggerButtonSize, contentAlign, contentClassName, }: TogglableItemsListProps): React$1.JSX.Element;
|
|
17625
17638
|
|
|
17639
|
+
/**
|
|
17640
|
+
* Default page-size choices used by `DataTable`'s page-size selector.
|
|
17641
|
+
*
|
|
17642
|
+
* `Pagination` itself does not default to this list — omitting `pageSizeOptions`
|
|
17643
|
+
* there hides the selector.
|
|
17644
|
+
*/
|
|
17645
|
+
declare const DEFAULT_PAGE_SIZE_OPTIONS: readonly number[];
|
|
17626
17646
|
interface PaginationProps {
|
|
17627
17647
|
pageLabel?: string;
|
|
17628
17648
|
previousLabel?: string;
|
|
@@ -17635,7 +17655,8 @@ interface PaginationProps {
|
|
|
17635
17655
|
/** Controls button sizing and container spacing. Defaults to `"default"`. */
|
|
17636
17656
|
size?: Size;
|
|
17637
17657
|
currentPageSize: number;
|
|
17638
|
-
|
|
17658
|
+
/** Page sizes offered in the selector. Omit (or pass `[]`) to hide it entirely. */
|
|
17659
|
+
pageSizeOptions?: readonly number[];
|
|
17639
17660
|
onPageSizeChange: (size: number) => void;
|
|
17640
17661
|
pageSizeOptionLabel?: (size: number) => string;
|
|
17641
17662
|
}
|
|
@@ -17644,9 +17665,19 @@ declare function Pagination({ pageLabel, previousLabel, nextLabel, onPrevPage, o
|
|
|
17644
17665
|
|
|
17645
17666
|
interface CopiableTextProps {
|
|
17646
17667
|
text: string | number;
|
|
17668
|
+
/**
|
|
17669
|
+
* Rendered immediately before the copy button. Buttons are joined into a single
|
|
17670
|
+
* segmented group, so pass plain icon buttons with the copy button's chrome.
|
|
17671
|
+
*/
|
|
17672
|
+
actions?: React$1.ReactNode;
|
|
17673
|
+
/**
|
|
17674
|
+
* Keep the action cluster visible instead of revealing it on hover/focus. The cluster then
|
|
17675
|
+
* takes layout space, so the text truncates beside the buttons rather than sliding under them.
|
|
17676
|
+
*/
|
|
17677
|
+
alwaysShowActions?: boolean;
|
|
17647
17678
|
className?: string;
|
|
17648
17679
|
}
|
|
17649
|
-
declare function CopiableText({ text, className }: CopiableTextProps): React$1.JSX.Element;
|
|
17680
|
+
declare function CopiableText({ text, actions, alwaysShowActions, className }: CopiableTextProps): React$1.JSX.Element;
|
|
17650
17681
|
|
|
17651
17682
|
interface TableSkeletonProps {
|
|
17652
17683
|
totalRows?: number;
|
|
@@ -17668,6 +17699,14 @@ interface DataTableProps<TData, TValue> {
|
|
|
17668
17699
|
onPrevPage?: () => void;
|
|
17669
17700
|
pageSize?: number;
|
|
17670
17701
|
onPageSizeChange?: (size: number) => void;
|
|
17702
|
+
/**
|
|
17703
|
+
* Page sizes offered in the page-size selector. Defaults to
|
|
17704
|
+
* `DEFAULT_PAGE_SIZE_OPTIONS` (`[5, 10, 15, 20, 25]`); pass `[]` to hide the
|
|
17705
|
+
* selector. The current `pageSize` is always selectable, even when absent from
|
|
17706
|
+
* this list. The selector is also hidden when `onPageSizeChange` is omitted,
|
|
17707
|
+
* since it would have no effect.
|
|
17708
|
+
*/
|
|
17709
|
+
pageSizeOptions?: readonly number[];
|
|
17671
17710
|
showColumnVisibilitySelector?: boolean;
|
|
17672
17711
|
columnVisibilityLabel?: string;
|
|
17673
17712
|
noResultsHeading?: string;
|
|
@@ -17691,7 +17730,7 @@ interface DataTableProps<TData, TValue> {
|
|
|
17691
17730
|
className?: string;
|
|
17692
17731
|
hidePaginationControls?: boolean;
|
|
17693
17732
|
}
|
|
17694
|
-
declare function DataTable<TData, TValue>({ columns, data, tableActionsContent, isFetching, pageIndex, hasNextPage, hasPrevPage, onNextPage, onPrevPage, pageSize, onPageSizeChange, showColumnVisibilitySelector, columnVisibilityLabel, noResultsHeading, noResultsDescription, pageLabel, previousLabel, nextLabel, pageSizeOptionLabel, onRowClick, showBorder, rowSelection, onRowSelectionChange, getRowId, enableMultiRowSelection, enableRowSelection, tableRowClassName, getRowClassName, className, hidePaginationControls, }: DataTableProps<TData, TValue>): React$1.JSX.Element;
|
|
17733
|
+
declare function DataTable<TData, TValue>({ columns, data, tableActionsContent, isFetching, pageIndex, hasNextPage, hasPrevPage, onNextPage, onPrevPage, pageSize, onPageSizeChange, pageSizeOptions, showColumnVisibilitySelector, columnVisibilityLabel, noResultsHeading, noResultsDescription, pageLabel, previousLabel, nextLabel, pageSizeOptionLabel, onRowClick, showBorder, rowSelection, onRowSelectionChange, getRowId, enableMultiRowSelection, enableRowSelection, tableRowClassName, getRowClassName, className, hidePaginationControls, }: DataTableProps<TData, TValue>): React$1.JSX.Element;
|
|
17695
17734
|
|
|
17696
17735
|
interface DeviceIconProps {
|
|
17697
17736
|
type: string;
|
|
@@ -18081,6 +18120,48 @@ interface KeyValueManagerProps {
|
|
|
18081
18120
|
|
|
18082
18121
|
declare function KeyValueManager({ items, meta, onUpdate, maxAllowed, itemsPerPage, labels: labelsProp, className, }: KeyValueManagerProps): React$1.JSX.Element;
|
|
18083
18122
|
|
|
18123
|
+
type RequirementListSize = "sm" | "default" | "lg";
|
|
18124
|
+
/** One requirement, already resolved to display text and a pass/fail state. */
|
|
18125
|
+
interface RequirementListItem {
|
|
18126
|
+
/** Stable identifier, used as the list key. */
|
|
18127
|
+
id: string;
|
|
18128
|
+
/** Display text for the requirement, e.g. "Must contain an uppercase letter". */
|
|
18129
|
+
label: string;
|
|
18130
|
+
/** Whether the requirement is currently satisfied. */
|
|
18131
|
+
met: boolean;
|
|
18132
|
+
}
|
|
18133
|
+
interface RequirementListProps extends Omit<HTMLAttributes<HTMLUListElement>, "children"> {
|
|
18134
|
+
items: RequirementListItem[];
|
|
18135
|
+
/** Defaults to "sm" — the size that reads as helper text under a field. */
|
|
18136
|
+
size?: RequirementListSize;
|
|
18137
|
+
/** Screen-reader suffix for satisfied rows. Defaults to "Requirement met". */
|
|
18138
|
+
metLabel?: string;
|
|
18139
|
+
/** Screen-reader suffix for unsatisfied rows. Defaults to "Requirement not met". */
|
|
18140
|
+
unmetLabel?: string;
|
|
18141
|
+
/**
|
|
18142
|
+
* Whether to announce state changes as they happen. Defaults to `true`, which is
|
|
18143
|
+
* right for a checklist that updates while the user types. Set `false` when the
|
|
18144
|
+
* list is static, so it is not announced as a live region for no reason.
|
|
18145
|
+
*/
|
|
18146
|
+
live?: boolean;
|
|
18147
|
+
className?: string;
|
|
18148
|
+
}
|
|
18149
|
+
|
|
18150
|
+
/**
|
|
18151
|
+
* Live checklist of requirements a value does and does not yet satisfy — password
|
|
18152
|
+
* policy rules, plan prerequisites, upload conditions.
|
|
18153
|
+
*
|
|
18154
|
+
* Pure: labels arrive already translated and the pass/fail state is computed by the
|
|
18155
|
+
* caller, so the component knows nothing about the rules themselves.
|
|
18156
|
+
*
|
|
18157
|
+
* Each row carries a screen-reader-only state label. Without it the met/unmet
|
|
18158
|
+
* distinction would be conveyed only by icon shape and colour, both invisible to a
|
|
18159
|
+
* screen reader, and the polite live region would have no text change to announce.
|
|
18160
|
+
*
|
|
18161
|
+
* Carries no outer spacing so the surface hosting it owns its placement.
|
|
18162
|
+
*/
|
|
18163
|
+
declare const RequirementList: React$1.ForwardRefExoticComponent<RequirementListProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
18164
|
+
|
|
18084
18165
|
type SimpleListItemDirection = "row" | "column";
|
|
18085
18166
|
type SimpleListIconStyle = "inline" | "avatar" | "none";
|
|
18086
18167
|
type SimpleListAvatarSize = "sm" | "default" | "lg";
|
|
@@ -18167,6 +18248,12 @@ interface AlertProps {
|
|
|
18167
18248
|
hideIcon?: boolean;
|
|
18168
18249
|
action?: React$1.ReactNode;
|
|
18169
18250
|
actions?: React$1.ReactNode;
|
|
18251
|
+
/** Render a close button in the trailing actions slot; clicking it hides the alert. */
|
|
18252
|
+
dismissible?: boolean;
|
|
18253
|
+
/** Called after the alert is dismissed. Notification only — the Alert hides itself. */
|
|
18254
|
+
onDismiss?: () => void;
|
|
18255
|
+
/** Accessible label for the close button. */
|
|
18256
|
+
dismissLabel?: string;
|
|
18170
18257
|
className?: string;
|
|
18171
18258
|
size?: AlertSize;
|
|
18172
18259
|
variant?: AlertVariant;
|
|
@@ -18252,7 +18339,25 @@ declare const MarkdownContent: React$1.ForwardRefExoticComponent<MarkdownContent
|
|
|
18252
18339
|
interface MonospaceContentProps {
|
|
18253
18340
|
title?: ReactNode;
|
|
18254
18341
|
value: string;
|
|
18342
|
+
/** Surface color of the value block. Also accepts the brand `"silver"` value. */
|
|
18255
18343
|
color?: AlertColor;
|
|
18344
|
+
/**
|
|
18345
|
+
* Hide the value behind mask characters — for secrets such as API keys or passwords.
|
|
18346
|
+
* Copying still puts the real value on the clipboard.
|
|
18347
|
+
*
|
|
18348
|
+
* Masking is presentational: the value stays in the DOM, so this is a UI guard, not a
|
|
18349
|
+
* security boundary.
|
|
18350
|
+
*
|
|
18351
|
+
* @default false
|
|
18352
|
+
*/
|
|
18353
|
+
mask?: boolean;
|
|
18354
|
+
/**
|
|
18355
|
+
* Show an eye toggle that reveals the masked value. Only meaningful when `mask` is `true`;
|
|
18356
|
+
* set to `false` to keep the value permanently masked while still allowing copy.
|
|
18357
|
+
*
|
|
18358
|
+
* @default true
|
|
18359
|
+
*/
|
|
18360
|
+
allowUnmask?: boolean;
|
|
18256
18361
|
className?: string;
|
|
18257
18362
|
}
|
|
18258
18363
|
|
|
@@ -18592,4 +18697,4 @@ interface PageContainerSkeletonProps {
|
|
|
18592
18697
|
}
|
|
18593
18698
|
declare function PageContainerSkeleton({ maxWidth, noGutters, showBackLink, showHeader, showActions, className, }: PageContainerSkeletonProps): React$1.JSX.Element;
|
|
18594
18699
|
|
|
18595
|
-
export { Accordion, type AccordionItem, type AccordionProps, type AccordionSize, AdvancedSearchBox, type AdvancedSearchBoxProps, Alert, type AlertColor, type AlertIconAvatarVariant, type AlertProps, type AlertSize, type AlertType, type AlertVariant, AnimatedCard, type AnimatedCardProps, type AnimatedCardType, AreaChart, type AreaChartProps, AsyncCombobox, type AsyncComboboxProps, AsyncMultiSelect, type AsyncMultiSelectOption, type AsyncMultiSelectProps, Avatar, type AvatarProps, BarChart, type BarChartProps, type BarSize, BasicDetailsCard, type BasicDetailsCardProps, Button, type ButtonProps$1 as ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, type CalendarProps, type ChartCategoryColorKey, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, type CircularProgressProps, Code, type CodeProps, CollapsibleCard, type CollapsibleCardProps, Color, type ComboboxOption, ComposedChart, type ComposedChartProps, type ComposedChartSeries, ConfirmationDialog, type ConfirmationDialogProps, ContentContainer, type ContentContainerMaxWidth, type ContentContainerProps, CopiableText, type CopiableTextProps, CopyButton, type CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerCommittedRange, type DateRangePickerDraftRange, type DateRangePickerPresetId, type DateRangePickerProps, DeviceIcon, type DeviceIconProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DonutChart, type DonutChartProps, type DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, DynamicList, type DynamicListEntry, type DynamicListMetaEntry, type DynamicListMetaType, type DynamicListProps, FileUpload, type FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, type FullSizeErrorProps, FullscreenDialog, type FullscreenDialogProps, GlitchText, type GlitchTextProps, type GoBackLinkData, GradientText, type GradientTextProps, HighlightText, type HighlightTextProps, IconAvatar, type IconAvatarProps, type IconAvatarRingProps, type IconAvatarVariant, IconTextActionCard, type IconTextActionCardProps, type IconTextActionCardVariant, Illustration, type IllustrationProps, type IllustrationType, InlineError, type InlineErrorProps, Input, InputPassword, InvertButton, type InvertButtonProps, KeyValueManager, type KeyValueManagerFieldMeta, type KeyValueManagerItem, type KeyValueManagerLabels, type KeyValueManagerProps, LineChart, type LineChartProps, type LineStrokeWidth, Link, type LinkColor, type LinkProps, List, ListDetails, type ListDetailsItem, type ListDetailsProps, type ListDetailsTitleListPanelColumnWidth, ListProps, LottieAnimationContainer, type LottieAnimationContainerProps, MarkdownContent, type MarkdownContentProps, Menu, type MenuProps, MonospaceContent, type MonospaceContentProps, NoDataCard, type NoDataCardProps, OverflowBadgeList, type OverflowBadgeListColor, type OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, type PageContainerMaxWidth, type PageContainerProps, PageContainerSkeleton, type PageContainerSkeletonProps, Pagination, type PaginationProps, PopCollectionItem, type PopCollectionItemProps, PresetColor, PreviewCard, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPanel, type PreviewCardPanelProps, type PreviewCardProps, PreviewCardTrigger, type PreviewCardTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSegment, RadioGroup, type RadioGroupProps, type RadioGroupSize, type RadioOption, ScrollArea, ScrollBar, ScrollableSections, type ScrollableSectionsContentProps, type ScrollableSectionsProps, type ScrollableSectionsTabProps, type ScrollableSectionsTabsProps, SearchBox, type SearchBoxProps, type SearchMeta, SectionCard, type SectionCardProps, type SectionCardSize, type SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, SelectableCardList, type SelectableCardListElement, type SelectableCardListItem, type SelectableCardListMultiProps, type SelectableCardListProps, type SelectableCardListSingleProps, type SelectableCardListSize, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, ShimmeringText, type ShimmeringTextProps, Sidebar$1 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProps$1 as SidebarProps, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, type SimpleCardProps, SimpleClickableCard, type SimpleClickableCardProps, type SimpleClickableCardSharedProps, type SimpleClickableCardVariant, SimpleInfoCard, type SimpleInfoCardProps, SimpleList, type SimpleListAvatarSize, type SimpleListIconStyle, type SimpleListItem, type SimpleListItemDirection, type SimpleListProps, SimplePaginatedList, type SimplePaginatedListItem, type SimplePaginatedListProps, type SimplePaginatedListSize, SimplifiedDate, type SimplifiedDateProps, Size, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StatCardSize, type StatCardValueType, StatusCardList, type StatusCardListItem, type StatusCardListProps, type StatusCardListSize, type StatusCardState, Switch, type SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, type TagProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, Toast, type ToastColor, type ToastId, type ToastInput, type ToastOptions, type ToastProps, type ToastToasterProps, type ToastType, type ToastVariant, Toaster, type TogglableItem, TogglableItemsList, type TogglableItemsListProps, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip$1 as Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps$2 as TooltipProps, TooltipProvider, type TooltipProviderProps, Tooltip as TooltipRoot, TooltipTrigger, type TooltipTriggerProps, type TransferItem, TransferList, type TransferListProps, type TreemapAnimationEasing, TreemapChart, type TreemapChartProps, type TreemapDatum, type TreemapTileLabelStyle, Typography, type TypographyProps, type TypographyVariant, type UserType, UserTypeBadge, type UserTypeBadgeProps, type UserTypeBadgeRegistryItem, Variant, VerificationInProgress, type VerificationInProgressProps, VerticalStepper, type VerticalStepperProps, type VerticalStepperSize, type VerticalStepperStep, type VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes };
|
|
18700
|
+
export { Accordion, type AccordionItem, type AccordionProps, type AccordionSize, AdvancedSearchBox, type AdvancedSearchBoxProps, Alert, type AlertColor, type AlertIconAvatarVariant, type AlertProps, type AlertSize, type AlertType, type AlertVariant, AnimatedCard, type AnimatedCardProps, type AnimatedCardType, AreaChart, type AreaChartProps, AsyncCombobox, type AsyncComboboxProps, AsyncMultiSelect, type AsyncMultiSelectOption, type AsyncMultiSelectProps, Avatar, type AvatarProps, BarChart, type BarChartProps, type BarSize, BasicDetailsCard, type BasicDetailsCardProps, Button, type ButtonProps$1 as ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, type CalendarProps, type ChartCategoryColorKey, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, type CircularProgressProps, Code, type CodeProps, CollapsibleCard, type CollapsibleCardProps, Color, type ComboboxOption, ComposedChart, type ComposedChartProps, type ComposedChartSeries, ConfirmationDialog, type ConfirmationDialogProps, ContentContainer, type ContentContainerMaxWidth, type ContentContainerProps, CopiableText, type CopiableTextProps, CopyButton, type CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerCommittedRange, type DateRangePickerDraftRange, type DateRangePickerPresetId, type DateRangePickerProps, DeviceIcon, type DeviceIconProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DonutChart, type DonutChartProps, type DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, DynamicList, type DynamicListEntry, type DynamicListMetaEntry, type DynamicListMetaType, type DynamicListProps, FileUpload, type FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, type FullSizeErrorProps, FullscreenDialog, type FullscreenDialogProps, GlitchText, type GlitchTextProps, type GoBackLinkData, GradientText, type GradientTextProps, HighlightText, type HighlightTextProps, IconAvatar, type IconAvatarProps, type IconAvatarRingProps, type IconAvatarVariant, IconTextActionCard, type IconTextActionCardProps, type IconTextActionCardVariant, Illustration, type IllustrationProps, type IllustrationType, InlineError, type InlineErrorProps, Input, InputPassword, InvertButton, type InvertButtonProps, KeyValueManager, type KeyValueManagerFieldMeta, type KeyValueManagerItem, type KeyValueManagerLabels, type KeyValueManagerProps, LineChart, type LineChartProps, type LineStrokeWidth, Link, type LinkColor, type LinkProps, List, ListDetails, type ListDetailsItem, type ListDetailsProps, type ListDetailsTitleListPanelColumnWidth, ListProps, LottieAnimationContainer, type LottieAnimationContainerProps, MarkdownContent, type MarkdownContentProps, Menu, type MenuProps, MonospaceContent, type MonospaceContentProps, NoDataCard, type NoDataCardProps, OverflowBadgeList, type OverflowBadgeListColor, type OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, type PageContainerMaxWidth, type PageContainerProps, PageContainerSkeleton, type PageContainerSkeletonProps, Pagination, type PaginationProps, PopCollectionItem, type PopCollectionItemProps, PresetColor, PreviewCard, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPanel, type PreviewCardPanelProps, type PreviewCardProps, PreviewCardTrigger, type PreviewCardTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSegment, RadioGroup, type RadioGroupProps, type RadioGroupSize, type RadioOption, RequirementList, type RequirementListItem, type RequirementListProps, type RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, type ScrollableSectionsContentProps, type ScrollableSectionsProps, type ScrollableSectionsTabProps, type ScrollableSectionsTabsProps, SearchBox, type SearchBoxProps, type SearchMeta, SectionCard, type SectionCardProps, type SectionCardSize, type SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, SelectableCardList, type SelectableCardListElement, type SelectableCardListItem, type SelectableCardListMultiProps, type SelectableCardListProps, type SelectableCardListSingleProps, type SelectableCardListSize, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, ShimmeringText, type ShimmeringTextProps, Sidebar$1 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProps$1 as SidebarProps, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, type SimpleCardProps, SimpleClickableCard, type SimpleClickableCardProps, type SimpleClickableCardSharedProps, type SimpleClickableCardVariant, SimpleInfoCard, type SimpleInfoCardProps, SimpleList, type SimpleListAvatarSize, type SimpleListIconStyle, type SimpleListItem, type SimpleListItemDirection, type SimpleListProps, SimplePaginatedList, type SimplePaginatedListItem, type SimplePaginatedListProps, type SimplePaginatedListSize, SimplifiedDate, type SimplifiedDateProps, Size, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StatCardSize, type StatCardValueType, StatusCardList, type StatusCardListItem, type StatusCardListProps, type StatusCardListSize, type StatusCardState, Switch, type SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, type TagProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, Toast, type ToastColor, type ToastId, type ToastInput, type ToastOptions, type ToastProps, type ToastToasterProps, type ToastType, type ToastVariant, Toaster, type TogglableItem, TogglableItemsList, type TogglableItemsListProps, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip$1 as Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps$2 as TooltipProps, TooltipProvider, type TooltipProviderProps, Tooltip as TooltipRoot, TooltipTrigger, type TooltipTriggerProps, type TransferItem, TransferList, type TransferListProps, type TreemapAnimationEasing, TreemapChart, type TreemapChartProps, type TreemapDatum, type TreemapTileLabelStyle, Typography, type TypographyProps, type TypographyVariant, type UserType, UserTypeBadge, type UserTypeBadgeProps, type UserTypeBadgeRegistryItem, Variant, VerificationInProgress, type VerificationInProgressProps, VerticalStepper, type VerticalStepperProps, type VerticalStepperSize, type VerticalStepperStep, type VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes };
|
package/dist/components/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from '../chunk-
|
|
1
|
+
export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from '../chunk-E6IO2DVV.js';
|
|
2
2
|
export { Badge, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Label, PRESET_GRADIENT_BACKDROP, PRESET_GRADIENT_FRAME, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, VARIANTS, VARIANT_GRADIENT_BACKDROP_BASE, VARIANT_GRADIENT_DURATION_CLASS, VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, VARIANT_GRADIENT_TRANSITION_DURATION_MS, arbitraryGradientBackgroundImage, badgeVariants, buttonGroupVariants, resolveVariantStyles } from '../chunk-JPMN2UMF.js';
|
|
3
|
-
export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from '../chunk-
|
|
3
|
+
export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from '../chunk-34PXJOCS.js';
|
|
4
4
|
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Collapsible, CollapsibleContent, CollapsibleTrigger, Separator, Skeleton, buttonVariants, useIsMobile } from '../chunk-F5P6S7K2.js';
|
|
5
5
|
import '../chunk-VU4CZ76T.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { A as AppName, C as Color, P as PresetColor, S as Size } from './index-Cv9vHALn.js';
|
|
2
2
|
export { B as Badge, a as BadgeProps, b as Breadcrumb, c as BreadcrumbEllipsis, d as BreadcrumbItem, e as BreadcrumbLink, f as BreadcrumbList, g as BreadcrumbPage, h as BreadcrumbSeparator, i as ButtonGroup, j as ButtonGroupSeparator, k as ButtonGroupText, C as Card, l as CardContent, m as CardDescription, n as CardFooter, o as CardHeader, p as CardTitle, q as Collapsible, r as CollapsibleContent, s as CollapsibleTrigger, L as Label, P as PRESET_GRADIENT_BACKDROP, t as PRESET_GRADIENT_FRAME, u as Popover, v as PopoverAnchor, w as PopoverContent, x as PopoverTrigger, S as Separator, y as Skeleton, V as VARIANTS, z as VARIANT_GRADIENT_BACKDROP_BASE, A as VARIANT_GRADIENT_DURATION_CLASS, D as VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, E as VARIANT_GRADIENT_TRANSITION_DURATION_MS, F as Variant, G as VariantStyles, H as arbitraryGradientBackgroundImage, I as badgeVariants, J as buttonGroupVariants, K as buttonVariants, M as resolveVariantStyles, N as useIsMobile } from './popover-CRznb4Q7.js';
|
|
3
|
-
export { Accordion, AccordionItem, AccordionProps, AccordionSize, AdvancedSearchBox, AdvancedSearchBoxProps, Alert, AlertColor, AlertIconAvatarVariant, AlertProps, AlertSize, AlertType, AlertVariant, AnimatedCard, AnimatedCardProps, AnimatedCardType, AreaChart, AreaChartProps, AsyncCombobox, AsyncComboboxProps, AsyncMultiSelect, AsyncMultiSelectOption, AsyncMultiSelectProps, Avatar, AvatarProps, BarChart, BarChartProps, BarSize, BasicDetailsCard, BasicDetailsCardProps, Button, ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, CalendarProps, ChartCategoryColorKey, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, CircularProgressProps, Code, CodeProps, CollapsibleCard, CollapsibleCardProps, ComboboxOption, ComposedChart, ComposedChartProps, ComposedChartSeries, ConfirmationDialog, ConfirmationDialogProps, ContentContainer, ContentContainerMaxWidth, ContentContainerProps, CopiableText, CopiableTextProps, CopyButton, CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DataTable, DataTableProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerCommittedRange, DateRangePickerDraftRange, DateRangePickerPresetId, DateRangePickerProps, DeviceIcon, DeviceIconProps, Dialog, DialogClose, DialogCloseProps, DialogContent, DialogContentProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogProps, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, DonutChart, DonutChartProps, DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemProps, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuGroupProps, DropdownMenuItem, DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemProps, DropdownMenuSeparator, DropdownMenuSeparatorProps, DropdownMenuShortcut, DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubContentProps, DropdownMenuSubProps, DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, DropdownMenuTrigger, DropdownMenuTriggerProps, DynamicList, DynamicListEntry, DynamicListMetaEntry, DynamicListMetaType, DynamicListProps, FileUpload, FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullSizeErrorProps, FullscreenDialog, FullscreenDialogProps, GlitchText, GlitchTextProps, GoBackLinkData, GradientText, GradientTextProps, HighlightText, HighlightTextProps, IconAvatar, IconAvatarProps, IconAvatarRingProps, IconAvatarVariant, IconTextActionCard, IconTextActionCardProps, IconTextActionCardVariant, Illustration, IllustrationProps, IllustrationType, InlineError, InlineErrorProps, Input, InputPassword, InvertButton, InvertButtonProps, KeyValueManager, KeyValueManagerFieldMeta, KeyValueManagerItem, KeyValueManagerLabels, KeyValueManagerProps, LineChart, LineChartProps, LineStrokeWidth, Link, LinkColor, LinkProps, List, ListDetails, ListDetailsItem, ListDetailsProps, ListDetailsTitleListPanelColumnWidth, LottieAnimationContainer, LottieAnimationContainerProps, MarkdownContent, MarkdownContentProps, Menu, MenuProps, MonospaceContent, MonospaceContentProps, NoDataCard, NoDataCardProps, OverflowBadgeList, OverflowBadgeListColor, OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerMaxWidth, PageContainerProps, PageContainerSkeleton, PageContainerSkeletonProps, Pagination, PaginationProps, PopCollectionItem, PopCollectionItemProps, PreviewCard, PreviewCardBackdrop, PreviewCardBackdropProps, PreviewCardPanel, PreviewCardPanelProps, PreviewCardProps, PreviewCardTrigger, PreviewCardTriggerProps, ProgressBar, ProgressBarProps, ProgressBarSegment, RadioGroup, RadioGroupProps, RadioGroupSize, RadioOption, ScrollArea, ScrollBar, ScrollableSections, ScrollableSectionsContentProps, ScrollableSectionsProps, ScrollableSectionsTabProps, ScrollableSectionsTabsProps, SearchBox, SearchBoxProps, SearchMeta, SectionCard, SectionCardProps, SectionCardSize, SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerProps, SelectValue, SelectableCardList, SelectableCardListElement, SelectableCardListItem, SelectableCardListMultiProps, SelectableCardListProps, SelectableCardListSingleProps, SelectableCardListSize, Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps, ShimmeringText, ShimmeringTextProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, SimpleCardProps, SimpleClickableCard, SimpleClickableCardProps, SimpleClickableCardSharedProps, SimpleClickableCardVariant, SimpleInfoCard, SimpleInfoCardProps, SimpleList, SimpleListAvatarSize, SimpleListIconStyle, SimpleListItem, SimpleListItemDirection, SimpleListProps, SimplePaginatedList, SimplePaginatedListItem, SimplePaginatedListProps, SimplePaginatedListSize, SimplifiedDate, SimplifiedDateProps, Spinner, SpinnerProps, StatCard, StatCardProps, StatCardSize, StatCardValueType, StatusCardList, StatusCardListItem, StatusCardListProps, StatusCardListSize, StatusCardState, Switch, SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContentProps, TabsContents, TabsContentsProps, TabsList, TabsListProps, TabsProps, TabsTrigger, TabsTriggerProps, Tag, TagInput, TagInputProps, TagProps, Textarea, TextareaProps, TimePicker, TimePickerProps, Toast, ToastColor, ToastId, ToastInput, ToastOptions, ToastProps, ToastToasterProps, ToastType, ToastVariant, Toaster, TogglableItem, TogglableItemsList, TogglableItemsListProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipContentProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipRoot, TooltipTrigger, TooltipTriggerProps, TransferItem, TransferList, TransferListProps, TreemapAnimationEasing, TreemapChart, TreemapChartProps, TreemapDatum, TreemapTileLabelStyle, Typography, TypographyProps, TypographyVariant, UserType, UserTypeBadge, UserTypeBadgeProps, UserTypeBadgeRegistryItem, VerificationInProgress, VerificationInProgressProps, VerticalStepper, VerticalStepperProps, VerticalStepperSize, VerticalStepperStep, VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './components/index.js';
|
|
3
|
+
export { Accordion, AccordionItem, AccordionProps, AccordionSize, AdvancedSearchBox, AdvancedSearchBoxProps, Alert, AlertColor, AlertIconAvatarVariant, AlertProps, AlertSize, AlertType, AlertVariant, AnimatedCard, AnimatedCardProps, AnimatedCardType, AreaChart, AreaChartProps, AsyncCombobox, AsyncComboboxProps, AsyncMultiSelect, AsyncMultiSelectOption, AsyncMultiSelectProps, Avatar, AvatarProps, BarChart, BarChartProps, BarSize, BasicDetailsCard, BasicDetailsCardProps, Button, ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, CalendarProps, ChartCategoryColorKey, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, CircularProgressProps, Code, CodeProps, CollapsibleCard, CollapsibleCardProps, ComboboxOption, ComposedChart, ComposedChartProps, ComposedChartSeries, ConfirmationDialog, ConfirmationDialogProps, ContentContainer, ContentContainerMaxWidth, ContentContainerProps, CopiableText, CopiableTextProps, CopyButton, CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DataTableProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerCommittedRange, DateRangePickerDraftRange, DateRangePickerPresetId, DateRangePickerProps, DeviceIcon, DeviceIconProps, Dialog, DialogClose, DialogCloseProps, DialogContent, DialogContentProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogProps, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, DonutChart, DonutChartProps, DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemProps, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuGroupProps, DropdownMenuItem, DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemProps, DropdownMenuSeparator, DropdownMenuSeparatorProps, DropdownMenuShortcut, DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubContentProps, DropdownMenuSubProps, DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, DropdownMenuTrigger, DropdownMenuTriggerProps, DynamicList, DynamicListEntry, DynamicListMetaEntry, DynamicListMetaType, DynamicListProps, FileUpload, FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullSizeErrorProps, FullscreenDialog, FullscreenDialogProps, GlitchText, GlitchTextProps, GoBackLinkData, GradientText, GradientTextProps, HighlightText, HighlightTextProps, IconAvatar, IconAvatarProps, IconAvatarRingProps, IconAvatarVariant, IconTextActionCard, IconTextActionCardProps, IconTextActionCardVariant, Illustration, IllustrationProps, IllustrationType, InlineError, InlineErrorProps, Input, InputPassword, InvertButton, InvertButtonProps, KeyValueManager, KeyValueManagerFieldMeta, KeyValueManagerItem, KeyValueManagerLabels, KeyValueManagerProps, LineChart, LineChartProps, LineStrokeWidth, Link, LinkColor, LinkProps, List, ListDetails, ListDetailsItem, ListDetailsProps, ListDetailsTitleListPanelColumnWidth, LottieAnimationContainer, LottieAnimationContainerProps, MarkdownContent, MarkdownContentProps, Menu, MenuProps, MonospaceContent, MonospaceContentProps, NoDataCard, NoDataCardProps, OverflowBadgeList, OverflowBadgeListColor, OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerMaxWidth, PageContainerProps, PageContainerSkeleton, PageContainerSkeletonProps, Pagination, PaginationProps, PopCollectionItem, PopCollectionItemProps, PreviewCard, PreviewCardBackdrop, PreviewCardBackdropProps, PreviewCardPanel, PreviewCardPanelProps, PreviewCardProps, PreviewCardTrigger, PreviewCardTriggerProps, ProgressBar, ProgressBarProps, ProgressBarSegment, RadioGroup, RadioGroupProps, RadioGroupSize, RadioOption, RequirementList, RequirementListItem, RequirementListProps, RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, ScrollableSectionsContentProps, ScrollableSectionsProps, ScrollableSectionsTabProps, ScrollableSectionsTabsProps, SearchBox, SearchBoxProps, SearchMeta, SectionCard, SectionCardProps, SectionCardSize, SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerProps, SelectValue, SelectableCardList, SelectableCardListElement, SelectableCardListItem, SelectableCardListMultiProps, SelectableCardListProps, SelectableCardListSingleProps, SelectableCardListSize, Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps, ShimmeringText, ShimmeringTextProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, SimpleCardProps, SimpleClickableCard, SimpleClickableCardProps, SimpleClickableCardSharedProps, SimpleClickableCardVariant, SimpleInfoCard, SimpleInfoCardProps, SimpleList, SimpleListAvatarSize, SimpleListIconStyle, SimpleListItem, SimpleListItemDirection, SimpleListProps, SimplePaginatedList, SimplePaginatedListItem, SimplePaginatedListProps, SimplePaginatedListSize, SimplifiedDate, SimplifiedDateProps, Spinner, SpinnerProps, StatCard, StatCardProps, StatCardSize, StatCardValueType, StatusCardList, StatusCardListItem, StatusCardListProps, StatusCardListSize, StatusCardState, Switch, SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContentProps, TabsContents, TabsContentsProps, TabsList, TabsListProps, TabsProps, TabsTrigger, TabsTriggerProps, Tag, TagInput, TagInputProps, TagProps, Textarea, TextareaProps, TimePicker, TimePickerProps, Toast, ToastColor, ToastId, ToastInput, ToastOptions, ToastProps, ToastToasterProps, ToastType, ToastVariant, Toaster, TogglableItem, TogglableItemsList, TogglableItemsListProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipContentProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipRoot, TooltipTrigger, TooltipTriggerProps, TransferItem, TransferList, TransferListProps, TreemapAnimationEasing, TreemapChart, TreemapChartProps, TreemapDatum, TreemapTileLabelStyle, Typography, TypographyProps, TypographyVariant, UserType, UserTypeBadge, UserTypeBadgeProps, UserTypeBadgeRegistryItem, VerificationInProgress, VerificationInProgressProps, VerticalStepper, VerticalStepperProps, VerticalStepperSize, VerticalStepperStep, VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './components/index.js';
|
|
4
4
|
export { L as LIST_CLASS_NAMES, a as ListGroup, b as ListItem, c as ListItemSize, d as ListItemVariant, e as ListLinkComponentProps, f as ListProps, g as ListRole } from './list.props-DBDJt4C1.js';
|
|
5
|
-
export { S as SidebarEndActionConfig, a as SidebarGroupConfig, b as SidebarItemConfig, c as SidebarLinkComponentProps, d as SidebarNavEntry, e as SidebarProps, f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from './types-
|
|
5
|
+
export { S as SidebarEndActionConfig, a as SidebarGroupConfig, b as SidebarItemConfig, c as SidebarLinkComponentProps, d as SidebarNavEntry, e as SidebarProps, f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from './types-B_tam56l.js';
|
|
6
6
|
export { AnimatedRainmakerLogo, AnimatedRainmakerLogoProps, AppLogo, CopyrightCard, CopyrightCardProps, FooterCard, MyAccountMenu, MyAccountMenuProps, PageLoader, ProfileCard, ProfileCardProps } from './common/index.js';
|
|
7
7
|
export { A as AppLogoProps, L as LogoAsset, a as LogoAssetConfig, b as LogoVariantSet } from './app-logo.props-TKCDuodn.js';
|
|
8
8
|
export { AccountMenu, AccountMenuProps, BreadcrumbItemConfig, EntryLayout, EntryLayoutProps, LanguageOption, WorkspaceFooter, WorkspaceFooterConfig, WorkspaceFooterProps, WorkspaceHeader, WorkspaceHeaderConfig, WorkspaceHeaderProps, WorkspaceLayout, WorkspaceLayoutProps, WorkspaceSidebarConfig } from './layouts/index.js';
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { CopyrightCard, PageLoader } from './chunk-
|
|
2
|
-
export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AnimatedRainmakerLogo, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './chunk-
|
|
1
|
+
export { CopyrightCard, PageLoader } from './chunk-IT5T6Y4V.js';
|
|
2
|
+
export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AnimatedRainmakerLogo, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './chunk-E6IO2DVV.js';
|
|
3
3
|
export { Badge, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Label, PRESET_GRADIENT_BACKDROP, PRESET_GRADIENT_FRAME, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, VARIANTS, VARIANT_GRADIENT_BACKDROP_BASE, VARIANT_GRADIENT_DURATION_CLASS, VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, VARIANT_GRADIENT_TRANSITION_DURATION_MS, arbitraryGradientBackgroundImage, badgeVariants, buttonGroupVariants, resolveVariantStyles } from './chunk-JPMN2UMF.js';
|
|
4
|
-
export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from './chunk-
|
|
5
|
-
export { AppLogo, FooterCard, MyAccountMenu, ProfileCard } from './chunk-
|
|
6
|
-
export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from './chunk-
|
|
4
|
+
export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from './chunk-WCCSASYX.js';
|
|
5
|
+
export { AppLogo, FooterCard, MyAccountMenu, ProfileCard } from './chunk-SYEKNRS5.js';
|
|
6
|
+
export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from './chunk-34PXJOCS.js';
|
|
7
7
|
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Collapsible, CollapsibleContent, CollapsibleTrigger, Separator, Skeleton, buttonVariants, useControlledState, useIsMobile } from './chunk-F5P6S7K2.js';
|
|
8
8
|
export { cn } from './chunk-VU4CZ76T.js';
|
package/dist/layouts/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
|
-
import { d as SidebarNavEntry, c as SidebarLinkComponentProps } from '../types-
|
|
4
|
-
export { f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from '../types-
|
|
3
|
+
import { d as SidebarNavEntry, c as SidebarLinkComponentProps } from '../types-B_tam56l.js';
|
|
4
|
+
export { f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from '../types-B_tam56l.js';
|
|
5
5
|
import { a as ListGroup } from '../list.props-DBDJt4C1.js';
|
|
6
6
|
import { C as Color, A as AppName } from '../index-Cv9vHALn.js';
|
|
7
7
|
import { a as LogoAssetConfig } from '../app-logo.props-TKCDuodn.js';
|
package/dist/layouts/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
export { isSidebarGroup } from '../chunk-
|
|
1
|
+
export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from '../chunk-WCCSASYX.js';
|
|
2
|
+
import '../chunk-SYEKNRS5.js';
|
|
3
|
+
export { isSidebarGroup } from '../chunk-34PXJOCS.js';
|
|
4
4
|
import '../chunk-F5P6S7K2.js';
|
|
5
5
|
import '../chunk-VU4CZ76T.js';
|
|
@@ -47,7 +47,14 @@ type SidebarTopLevelLinkConfig = SidebarItemConfig;
|
|
|
47
47
|
type SidebarNavEntry = SidebarGroupConfig | SidebarTopLevelLinkConfig;
|
|
48
48
|
declare function isSidebarGroup(entry: SidebarNavEntry): entry is SidebarGroupConfig;
|
|
49
49
|
/**
|
|
50
|
-
* Props for the LinkComponent passed to Sidebar
|
|
50
|
+
* Props for the LinkComponent passed to Sidebar.
|
|
51
|
+
*
|
|
52
|
+
* These three are all the sidebar needs — a component that renders only them stays fully
|
|
53
|
+
* correct, selected rows included. Rows are rendered with Radix `asChild`, though, so the
|
|
54
|
+
* sidebar also merges `data-active` / `data-slot` / `data-size` onto whatever this returns:
|
|
55
|
+
* spreading any extra props onto the underlying anchor (as router `Link`s such as TanStack
|
|
56
|
+
* Router's already do) is optional, and gives apps those data attributes for their own
|
|
57
|
+
* styling hooks and test selectors.
|
|
51
58
|
*/
|
|
52
59
|
type SidebarLinkComponentProps = {
|
|
53
60
|
to: string;
|
package/package.json
CHANGED
package/src/styles/globals.css
CHANGED
|
@@ -65,9 +65,11 @@
|
|
|
65
65
|
--text-sm: 0.875rem;
|
|
66
66
|
--text-sm--line-height: 1.25rem;
|
|
67
67
|
|
|
68
|
+
/** Every sidebar nav row: group labels and menu item labels share one scale. */
|
|
68
69
|
--espd-sidebar-item-font-size: 0.875rem;
|
|
69
|
-
/** Collapsed-sidebar flyout: group title row
|
|
70
|
-
|
|
70
|
+
/** Collapsed-sidebar flyout: group title row. Matches the rows above by default;
|
|
71
|
+
raise it if you want the flyout title to stand out from its submenu items. */
|
|
72
|
+
--espd-sidebar-flyout-group-label-font-size: 0.875rem;
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
.dark {
|