@underverse-ui/underverse 1.0.57 → 1.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2142,214 +2142,6 @@ declare const Grid: React__default.ForwardRefExoticComponent<GridProps & React__
2142
2142
  Item: React__default.ForwardRefExoticComponent<GridItemProps & React__default.RefAttributes<HTMLDivElement>>;
2143
2143
  };
2144
2144
 
2145
- interface LineChartDataPoint {
2146
- label: string;
2147
- value: number;
2148
- }
2149
- interface LineChartSeries {
2150
- name: string;
2151
- data: LineChartDataPoint[];
2152
- color: string;
2153
- fillColor?: string;
2154
- }
2155
- interface LineChartProps {
2156
- /** Single series data (backward compatible) */
2157
- data?: LineChartDataPoint[];
2158
- /** Multi-series data */
2159
- series?: LineChartSeries[];
2160
- width?: number;
2161
- height?: number;
2162
- color?: string;
2163
- fillColor?: string;
2164
- showDots?: boolean;
2165
- showGrid?: boolean;
2166
- showLabels?: boolean;
2167
- showValues?: boolean;
2168
- /** Show legend (auto-enabled for multi-series) */
2169
- showLegend?: boolean;
2170
- animated?: boolean;
2171
- curved?: boolean;
2172
- /** Custom value formatter for labels and tooltips */
2173
- formatValue?: (value: number) => string;
2174
- /** Horizontal reference lines */
2175
- referenceLines?: {
2176
- value: number;
2177
- color?: string;
2178
- label?: string;
2179
- strokeDasharray?: string;
2180
- }[];
2181
- /** Custom class for axis labels */
2182
- labelClassName?: string;
2183
- className?: string;
2184
- }
2185
- declare function LineChart({ data, series, width, height, color, fillColor, showDots, showGrid, showLabels, showValues, showLegend, animated, curved, formatValue, referenceLines, labelClassName, className, }: LineChartProps): react_jsx_runtime.JSX.Element;
2186
-
2187
- interface BarChartDataPoint {
2188
- label: string;
2189
- value: number;
2190
- color?: string;
2191
- }
2192
- interface BarChartSeries {
2193
- name: string;
2194
- data: BarChartDataPoint[];
2195
- color: string;
2196
- }
2197
- interface BarChartProps {
2198
- /** Single series data (backward compatible) */
2199
- data?: BarChartDataPoint[];
2200
- /** Multi-series data */
2201
- series?: BarChartSeries[];
2202
- width?: number;
2203
- height?: number;
2204
- color?: string;
2205
- showLabels?: boolean;
2206
- showValues?: boolean;
2207
- showGrid?: boolean;
2208
- /** Show legend for multi-series */
2209
- showLegend?: boolean;
2210
- horizontal?: boolean;
2211
- animated?: boolean;
2212
- /** Stacked mode for multi-series */
2213
- stacked?: boolean;
2214
- barRadius?: number;
2215
- barGap?: number;
2216
- /** Custom value formatter */
2217
- formatValue?: (value: number) => string;
2218
- /** Custom class for axis labels */
2219
- labelClassName?: string;
2220
- className?: string;
2221
- }
2222
- declare function BarChart({ data, series, width, height, color, showLabels, showValues, showGrid, showLegend, horizontal, animated, stacked, barRadius, barGap, formatValue, labelClassName, className, }: BarChartProps): react_jsx_runtime.JSX.Element;
2223
-
2224
- interface PieChartDataPoint {
2225
- label: string;
2226
- value: number;
2227
- color: string;
2228
- }
2229
- interface PieChartProps {
2230
- data: PieChartDataPoint[];
2231
- size?: number;
2232
- donut?: boolean;
2233
- donutWidth?: number;
2234
- showLabels?: boolean;
2235
- showLegend?: boolean;
2236
- showPercentage?: boolean;
2237
- animated?: boolean;
2238
- startAngle?: number;
2239
- /** Custom center content for donut chart */
2240
- renderCenter?: (total: number) => React__default.ReactNode;
2241
- /** Custom value formatter */
2242
- formatValue?: (value: number) => string;
2243
- /** Custom class for labels */
2244
- labelClassName?: string;
2245
- className?: string;
2246
- }
2247
- declare function PieChart({ data, size, donut, donutWidth, showLabels, showLegend, showPercentage, animated, startAngle, renderCenter, formatValue, labelClassName, className, }: PieChartProps): react_jsx_runtime.JSX.Element;
2248
-
2249
- interface AreaChartDataPoint {
2250
- label: string;
2251
- value: number;
2252
- }
2253
- interface AreaChartSeries {
2254
- name: string;
2255
- data: AreaChartDataPoint[];
2256
- color: string;
2257
- fillOpacity?: number;
2258
- }
2259
- interface AreaChartProps {
2260
- series: AreaChartSeries[];
2261
- width?: number;
2262
- height?: number;
2263
- showDots?: boolean;
2264
- showGrid?: boolean;
2265
- showLabels?: boolean;
2266
- showLegend?: boolean;
2267
- animated?: boolean;
2268
- stacked?: boolean;
2269
- curved?: boolean;
2270
- /** Custom value formatter for labels and tooltips */
2271
- formatValue?: (value: number) => string;
2272
- /** Text shown when data is empty */
2273
- emptyText?: string;
2274
- /** Custom class for axis labels */
2275
- labelClassName?: string;
2276
- className?: string;
2277
- }
2278
- declare function AreaChart({ series, width, height, showDots, showGrid, showLabels, showLegend, animated, stacked, curved, formatValue, emptyText, labelClassName, className, }: AreaChartProps): react_jsx_runtime.JSX.Element;
2279
-
2280
- interface SparklineDataPoint {
2281
- value: number;
2282
- }
2283
- interface SparklineProps {
2284
- data: SparklineDataPoint[] | number[];
2285
- width?: number;
2286
- height?: number;
2287
- color?: string;
2288
- fillColor?: string;
2289
- showFill?: boolean;
2290
- showDots?: boolean;
2291
- showEndDot?: boolean;
2292
- animated?: boolean;
2293
- curved?: boolean;
2294
- strokeWidth?: number;
2295
- className?: string;
2296
- }
2297
- declare function Sparkline({ data, width, height, color, fillColor, showFill, showDots, showEndDot, animated, curved, strokeWidth, className, }: SparklineProps): react_jsx_runtime.JSX.Element;
2298
-
2299
- interface RadarChartDataPoint {
2300
- axis: string;
2301
- value: number;
2302
- }
2303
- interface RadarChartSeries {
2304
- name: string;
2305
- data: RadarChartDataPoint[];
2306
- color: string;
2307
- fillOpacity?: number;
2308
- }
2309
- interface RadarChartProps {
2310
- series: RadarChartSeries[];
2311
- size?: number;
2312
- levels?: number;
2313
- showLabels?: boolean;
2314
- showLegend?: boolean;
2315
- showValues?: boolean;
2316
- animated?: boolean;
2317
- /** Custom value formatter */
2318
- formatValue?: (value: number) => string;
2319
- /** Custom class for axis labels */
2320
- labelClassName?: string;
2321
- className?: string;
2322
- }
2323
- declare function RadarChart({ series, size, levels, showLabels, showLegend, showValues, animated, formatValue, labelClassName, className, }: RadarChartProps): react_jsx_runtime.JSX.Element;
2324
-
2325
- interface GaugeChartProps {
2326
- value: number;
2327
- min?: number;
2328
- max?: number;
2329
- size?: number;
2330
- thickness?: number;
2331
- color?: string;
2332
- backgroundColor?: string;
2333
- showValue?: boolean;
2334
- showMinMax?: boolean;
2335
- label?: string;
2336
- animated?: boolean;
2337
- startAngle?: number;
2338
- endAngle?: number;
2339
- /** Color zones on the gauge arc */
2340
- zones?: {
2341
- min: number;
2342
- max: number;
2343
- color: string;
2344
- }[];
2345
- /** Custom value formatter */
2346
- formatValue?: (value: number) => string;
2347
- /** Custom class for min/max/value labels */
2348
- labelClassName?: string;
2349
- className?: string;
2350
- }
2351
- declare function GaugeChart({ value, min, max, size, thickness, color, backgroundColor, showValue, showMinMax, label, animated, startAngle, endAngle, zones, formatValue, labelClassName, className, }: GaugeChartProps): react_jsx_runtime.JSX.Element;
2352
-
2353
2145
  interface ClientOnlyProps {
2354
2146
  children: React.ReactNode;
2355
2147
  fallback?: React.ReactNode;
@@ -4755,4 +4547,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
4755
4547
  };
4756
4548
  };
4757
4549
 
4758
- export { AccessDenied, type AccessDeniedProps, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
4550
+ export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
package/dist/index.d.ts CHANGED
@@ -2142,214 +2142,6 @@ declare const Grid: React__default.ForwardRefExoticComponent<GridProps & React__
2142
2142
  Item: React__default.ForwardRefExoticComponent<GridItemProps & React__default.RefAttributes<HTMLDivElement>>;
2143
2143
  };
2144
2144
 
2145
- interface LineChartDataPoint {
2146
- label: string;
2147
- value: number;
2148
- }
2149
- interface LineChartSeries {
2150
- name: string;
2151
- data: LineChartDataPoint[];
2152
- color: string;
2153
- fillColor?: string;
2154
- }
2155
- interface LineChartProps {
2156
- /** Single series data (backward compatible) */
2157
- data?: LineChartDataPoint[];
2158
- /** Multi-series data */
2159
- series?: LineChartSeries[];
2160
- width?: number;
2161
- height?: number;
2162
- color?: string;
2163
- fillColor?: string;
2164
- showDots?: boolean;
2165
- showGrid?: boolean;
2166
- showLabels?: boolean;
2167
- showValues?: boolean;
2168
- /** Show legend (auto-enabled for multi-series) */
2169
- showLegend?: boolean;
2170
- animated?: boolean;
2171
- curved?: boolean;
2172
- /** Custom value formatter for labels and tooltips */
2173
- formatValue?: (value: number) => string;
2174
- /** Horizontal reference lines */
2175
- referenceLines?: {
2176
- value: number;
2177
- color?: string;
2178
- label?: string;
2179
- strokeDasharray?: string;
2180
- }[];
2181
- /** Custom class for axis labels */
2182
- labelClassName?: string;
2183
- className?: string;
2184
- }
2185
- declare function LineChart({ data, series, width, height, color, fillColor, showDots, showGrid, showLabels, showValues, showLegend, animated, curved, formatValue, referenceLines, labelClassName, className, }: LineChartProps): react_jsx_runtime.JSX.Element;
2186
-
2187
- interface BarChartDataPoint {
2188
- label: string;
2189
- value: number;
2190
- color?: string;
2191
- }
2192
- interface BarChartSeries {
2193
- name: string;
2194
- data: BarChartDataPoint[];
2195
- color: string;
2196
- }
2197
- interface BarChartProps {
2198
- /** Single series data (backward compatible) */
2199
- data?: BarChartDataPoint[];
2200
- /** Multi-series data */
2201
- series?: BarChartSeries[];
2202
- width?: number;
2203
- height?: number;
2204
- color?: string;
2205
- showLabels?: boolean;
2206
- showValues?: boolean;
2207
- showGrid?: boolean;
2208
- /** Show legend for multi-series */
2209
- showLegend?: boolean;
2210
- horizontal?: boolean;
2211
- animated?: boolean;
2212
- /** Stacked mode for multi-series */
2213
- stacked?: boolean;
2214
- barRadius?: number;
2215
- barGap?: number;
2216
- /** Custom value formatter */
2217
- formatValue?: (value: number) => string;
2218
- /** Custom class for axis labels */
2219
- labelClassName?: string;
2220
- className?: string;
2221
- }
2222
- declare function BarChart({ data, series, width, height, color, showLabels, showValues, showGrid, showLegend, horizontal, animated, stacked, barRadius, barGap, formatValue, labelClassName, className, }: BarChartProps): react_jsx_runtime.JSX.Element;
2223
-
2224
- interface PieChartDataPoint {
2225
- label: string;
2226
- value: number;
2227
- color: string;
2228
- }
2229
- interface PieChartProps {
2230
- data: PieChartDataPoint[];
2231
- size?: number;
2232
- donut?: boolean;
2233
- donutWidth?: number;
2234
- showLabels?: boolean;
2235
- showLegend?: boolean;
2236
- showPercentage?: boolean;
2237
- animated?: boolean;
2238
- startAngle?: number;
2239
- /** Custom center content for donut chart */
2240
- renderCenter?: (total: number) => React__default.ReactNode;
2241
- /** Custom value formatter */
2242
- formatValue?: (value: number) => string;
2243
- /** Custom class for labels */
2244
- labelClassName?: string;
2245
- className?: string;
2246
- }
2247
- declare function PieChart({ data, size, donut, donutWidth, showLabels, showLegend, showPercentage, animated, startAngle, renderCenter, formatValue, labelClassName, className, }: PieChartProps): react_jsx_runtime.JSX.Element;
2248
-
2249
- interface AreaChartDataPoint {
2250
- label: string;
2251
- value: number;
2252
- }
2253
- interface AreaChartSeries {
2254
- name: string;
2255
- data: AreaChartDataPoint[];
2256
- color: string;
2257
- fillOpacity?: number;
2258
- }
2259
- interface AreaChartProps {
2260
- series: AreaChartSeries[];
2261
- width?: number;
2262
- height?: number;
2263
- showDots?: boolean;
2264
- showGrid?: boolean;
2265
- showLabels?: boolean;
2266
- showLegend?: boolean;
2267
- animated?: boolean;
2268
- stacked?: boolean;
2269
- curved?: boolean;
2270
- /** Custom value formatter for labels and tooltips */
2271
- formatValue?: (value: number) => string;
2272
- /** Text shown when data is empty */
2273
- emptyText?: string;
2274
- /** Custom class for axis labels */
2275
- labelClassName?: string;
2276
- className?: string;
2277
- }
2278
- declare function AreaChart({ series, width, height, showDots, showGrid, showLabels, showLegend, animated, stacked, curved, formatValue, emptyText, labelClassName, className, }: AreaChartProps): react_jsx_runtime.JSX.Element;
2279
-
2280
- interface SparklineDataPoint {
2281
- value: number;
2282
- }
2283
- interface SparklineProps {
2284
- data: SparklineDataPoint[] | number[];
2285
- width?: number;
2286
- height?: number;
2287
- color?: string;
2288
- fillColor?: string;
2289
- showFill?: boolean;
2290
- showDots?: boolean;
2291
- showEndDot?: boolean;
2292
- animated?: boolean;
2293
- curved?: boolean;
2294
- strokeWidth?: number;
2295
- className?: string;
2296
- }
2297
- declare function Sparkline({ data, width, height, color, fillColor, showFill, showDots, showEndDot, animated, curved, strokeWidth, className, }: SparklineProps): react_jsx_runtime.JSX.Element;
2298
-
2299
- interface RadarChartDataPoint {
2300
- axis: string;
2301
- value: number;
2302
- }
2303
- interface RadarChartSeries {
2304
- name: string;
2305
- data: RadarChartDataPoint[];
2306
- color: string;
2307
- fillOpacity?: number;
2308
- }
2309
- interface RadarChartProps {
2310
- series: RadarChartSeries[];
2311
- size?: number;
2312
- levels?: number;
2313
- showLabels?: boolean;
2314
- showLegend?: boolean;
2315
- showValues?: boolean;
2316
- animated?: boolean;
2317
- /** Custom value formatter */
2318
- formatValue?: (value: number) => string;
2319
- /** Custom class for axis labels */
2320
- labelClassName?: string;
2321
- className?: string;
2322
- }
2323
- declare function RadarChart({ series, size, levels, showLabels, showLegend, showValues, animated, formatValue, labelClassName, className, }: RadarChartProps): react_jsx_runtime.JSX.Element;
2324
-
2325
- interface GaugeChartProps {
2326
- value: number;
2327
- min?: number;
2328
- max?: number;
2329
- size?: number;
2330
- thickness?: number;
2331
- color?: string;
2332
- backgroundColor?: string;
2333
- showValue?: boolean;
2334
- showMinMax?: boolean;
2335
- label?: string;
2336
- animated?: boolean;
2337
- startAngle?: number;
2338
- endAngle?: number;
2339
- /** Color zones on the gauge arc */
2340
- zones?: {
2341
- min: number;
2342
- max: number;
2343
- color: string;
2344
- }[];
2345
- /** Custom value formatter */
2346
- formatValue?: (value: number) => string;
2347
- /** Custom class for min/max/value labels */
2348
- labelClassName?: string;
2349
- className?: string;
2350
- }
2351
- declare function GaugeChart({ value, min, max, size, thickness, color, backgroundColor, showValue, showMinMax, label, animated, startAngle, endAngle, zones, formatValue, labelClassName, className, }: GaugeChartProps): react_jsx_runtime.JSX.Element;
2352
-
2353
2145
  interface ClientOnlyProps {
2354
2146
  children: React.ReactNode;
2355
2147
  fallback?: React.ReactNode;
@@ -4755,4 +4547,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
4755
4547
  };
4756
4548
  };
4757
4549
 
4758
- export { AccessDenied, type AccessDeniedProps, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
4550
+ export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorInlineUploadedItem, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };