@expcat/tigercat-core 0.3.0 → 0.3.69

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
@@ -259,10 +259,6 @@ declare function getScrollTop(target: HTMLElement | Window): number;
259
259
  * Uses easeInOutCubic easing function for natural feel
260
260
  */
261
261
  declare function scrollToTop(target: HTMLElement | Window, duration: number, callback?: () => void): void;
262
- /**
263
- * Base CSS classes for the BackTop button (without positioning)
264
- */
265
- declare const backTopBaseClasses = "z-50 flex h-10 w-10 cursor-pointer items-center justify-center rounded-full bg-[var(--tiger-primary,#2563eb)] text-white shadow-lg transition-all duration-300 hover:bg-[var(--tiger-primary-hover,#1d4ed8)] focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-primary,#2563eb)] focus-visible:ring-offset-2";
266
262
  /**
267
263
  * Default CSS classes for the BackTop button (fixed positioning for window target)
268
264
  */
@@ -285,6 +281,17 @@ declare const backTopVisibleClasses = "opacity-100 translate-y-0";
285
281
  */
286
282
  declare const backTopIconPath = "M12 19V5M12 5l-7 7M12 5l7 7";
287
283
 
284
+ /**
285
+ * Normalize imperative API options: if a plain string is provided,
286
+ * wrap it into a config object with the given key.
287
+ *
288
+ * Used by Message (key='content') and Notification (key='title').
289
+ *
290
+ * @example
291
+ * normalizeStringOption('hello', 'content') // → { content: 'hello' }
292
+ */
293
+ declare function normalizeStringOption<T extends object>(options: string | T, key: string): T;
294
+
288
295
  /**
289
296
  * Common inline SVG icon constants
290
297
  *
@@ -506,12 +513,18 @@ interface TigerLocalePagination {
506
513
  /** Page button aria-label template: supports {page} */
507
514
  pageAriaLabel?: string;
508
515
  }
516
+ interface TigerLocaleFormWizard {
517
+ prevText?: string;
518
+ nextText?: string;
519
+ finishText?: string;
520
+ }
509
521
  interface TigerLocale {
510
522
  common?: TigerLocaleCommon;
511
523
  modal?: TigerLocaleModal;
512
524
  drawer?: TigerLocaleDrawer;
513
525
  upload?: TigerLocaleUpload;
514
526
  pagination?: TigerLocalePagination;
527
+ formWizard?: TigerLocaleFormWizard;
515
528
  }
516
529
 
517
530
  declare function resolveLocaleText(fallback: string, ...candidates: Array<string | null | undefined>): string;
@@ -525,6 +538,9 @@ declare const DEFAULT_PAGINATION_LABELS: Required<TigerLocalePagination>;
525
538
  * Chinese (Simplified) pagination labels
526
539
  */
527
540
  declare const ZH_CN_PAGINATION_LABELS: Required<TigerLocalePagination>;
541
+ declare const DEFAULT_FORM_WIZARD_LABELS: Required<TigerLocaleFormWizard>;
542
+ declare const ZH_CN_FORM_WIZARD_LABELS: Required<TigerLocaleFormWizard>;
543
+ declare function getFormWizardLabels(locale?: Partial<TigerLocale>): Required<TigerLocaleFormWizard>;
528
544
  /**
529
545
  * Get resolved pagination labels with fallback to defaults
530
546
  *
@@ -1245,10 +1261,15 @@ interface GetInputClassesOptions {
1245
1261
  /**
1246
1262
  * Get complete input class string
1247
1263
  */
1248
- declare function getInputClasses(options?: GetInputClassesOptions | InputSize): string;
1264
+ declare function getInputClasses(options?: GetInputClassesOptions): string;
1249
1265
  declare function getInputWrapperClasses(): string;
1250
1266
  declare function getInputAffixClasses(position: 'prefix' | 'suffix', size?: InputSize): string;
1251
1267
  declare function getInputErrorClasses(size?: InputSize): string;
1268
+ /**
1269
+ * Extract value from an input element.
1270
+ * Returns the numeric value for number inputs (if valid), otherwise the string value.
1271
+ */
1272
+ declare function parseInputValue(target: HTMLInputElement, type: string): string | number;
1252
1273
 
1253
1274
  /**
1254
1275
  * Form component types and interfaces
@@ -1464,7 +1485,6 @@ declare function getFormItemContentClasses(labelPosition?: FormLabelPosition): s
1464
1485
  declare function getFormItemFieldClasses(): string;
1465
1486
  declare function getFormItemErrorClasses(size?: FormSize): string;
1466
1487
  declare function getFormItemAsteriskClasses(): string;
1467
- declare function getFormItemAsteriskStyle(): Record<string, string>;
1468
1488
 
1469
1489
  /**
1470
1490
  * Select component types and interfaces
@@ -1617,6 +1637,12 @@ declare function getSelectOptionClasses(isSelected: boolean, isDisabled: boolean
1617
1637
  * @returns True if option is a SelectOptionGroup
1618
1638
  */
1619
1639
  declare function isOptionGroup(option: SelectOption | SelectOptionGroup | null | undefined): option is SelectOptionGroup;
1640
+ /**
1641
+ * Flatten options (including groups) into a flat array of SelectOption
1642
+ * @param options - Array of options or option groups
1643
+ * @returns Flat array of all SelectOption items
1644
+ */
1645
+ declare function flattenSelectOptions(options: SelectOptions): SelectOption[];
1620
1646
  /**
1621
1647
  * Filter options based on search query
1622
1648
  * @param options - Array of options or option groups to filter
@@ -1857,11 +1883,9 @@ interface RadioColorScheme {
1857
1883
  */
1858
1884
  declare const defaultRadioColors: RadioColorScheme;
1859
1885
  /**
1860
- * Get radio color classes
1861
- * @param colors - Radio color scheme (uses default if not provided)
1862
- * @returns Radio color scheme with all class strings
1886
+ * @deprecated Use `defaultRadioColors` directly. This is an identity function kept for backward compatibility.
1863
1887
  */
1864
- declare function getRadioColorClasses(colors?: RadioColorScheme): RadioColorScheme;
1888
+ declare const getRadioColorClasses: (colors?: RadioColorScheme) => RadioColorScheme;
1865
1889
  /**
1866
1890
  * Link color scheme interface
1867
1891
  * Defines all color-related classes for link variants
@@ -1907,6 +1931,12 @@ interface LinkThemeColors {
1907
1931
  declare const defaultLinkThemeColors: LinkThemeColors;
1908
1932
  /**
1909
1933
  * Get link variant classes based on theme colors
1934
+ *
1935
+ * Notes:
1936
+ * - `scheme.focus` is not included because `linkBaseClasses` already provides
1937
+ * `focus-visible:ring-*` with proper CSS variable fallback.
1938
+ * - `disabled:` pseudo-class is omitted because it has no effect on `<a>` elements;
1939
+ * disabled styling is applied directly when `options.disabled` is true.
1910
1940
  */
1911
1941
  declare function getLinkVariantClasses(variant: keyof LinkThemeColors, colors?: LinkThemeColors, options?: {
1912
1942
  disabled?: boolean;
@@ -2033,49 +2063,22 @@ declare const defaultTagThemeColors: TagThemeColors;
2033
2063
  declare function getTagVariantClasses(variant: keyof TagThemeColors, colors?: TagThemeColors): string;
2034
2064
  /**
2035
2065
  * Badge color scheme interface
2036
- * Defines all color-related classes for badge variants
2037
2066
  */
2038
2067
  interface BadgeColorScheme {
2039
- /**
2040
- * Background color class
2041
- */
2068
+ /** Background color class */
2042
2069
  bg: string;
2043
- /**
2044
- * Text color class
2045
- */
2070
+ /** Text color class */
2046
2071
  text: string;
2047
- /**
2048
- * Border color class (optional)
2049
- */
2050
- border?: string;
2051
2072
  }
2052
2073
  /**
2053
2074
  * Badge theme colors configuration for all variants
2054
2075
  */
2055
2076
  interface BadgeThemeColors {
2056
- /**
2057
- * Default badge theme (gray background)
2058
- */
2059
2077
  default: BadgeColorScheme;
2060
- /**
2061
- * Primary badge theme (blue background)
2062
- */
2063
2078
  primary: BadgeColorScheme;
2064
- /**
2065
- * Success badge theme (green background)
2066
- */
2067
2079
  success: BadgeColorScheme;
2068
- /**
2069
- * Warning badge theme (yellow background)
2070
- */
2071
2080
  warning: BadgeColorScheme;
2072
- /**
2073
- * Danger badge theme (red background)
2074
- */
2075
2081
  danger: BadgeColorScheme;
2076
- /**
2077
- * Info badge theme (light blue background)
2078
- */
2079
2082
  info: BadgeColorScheme;
2080
2083
  }
2081
2084
  /**
@@ -2084,9 +2087,6 @@ interface BadgeThemeColors {
2084
2087
  declare const defaultBadgeThemeColors: BadgeThemeColors;
2085
2088
  /**
2086
2089
  * Get badge variant classes based on theme colors
2087
- * @param variant - Badge variant type
2088
- * @param colors - Badge theme colors configuration (uses default if not provided)
2089
- * @returns Combined class string for the badge variant
2090
2090
  */
2091
2091
  declare function getBadgeVariantClasses(variant: keyof BadgeThemeColors, colors?: BadgeThemeColors): string;
2092
2092
  /**
@@ -2256,9 +2256,8 @@ declare const getRadioLabelClasses: ({ size, disabled, colors }: GetRadioLabelCl
2256
2256
  declare const radioGroupDefaultClasses = "space-y-2";
2257
2257
  interface GetRadioGroupClassesOptions {
2258
2258
  className?: ClassValue;
2259
- hasCustomClass?: boolean;
2260
2259
  }
2261
- declare const getRadioGroupClasses: ({ className, hasCustomClass }?: GetRadioGroupClassesOptions) => string;
2260
+ declare const getRadioGroupClasses: ({ className }?: GetRadioGroupClassesOptions) => string;
2262
2261
 
2263
2262
  /**
2264
2263
  * Date utility functions for DatePicker
@@ -2385,7 +2384,9 @@ declare const datePickerCalendarGridClasses: string;
2385
2384
  */
2386
2385
  declare const datePickerDayNameClasses: string;
2387
2386
  /**
2388
- * Get day cell classes
2387
+ * Get day cell classes.
2388
+ * Uses early returns to avoid conflicting Tailwind classes
2389
+ * (e.g. text-gray-900 + text-white, hover:bg-gray-100 + hover:bg-primary).
2389
2390
  */
2390
2391
  declare function getDatePickerDayCellClasses(isCurrentMonth: boolean, isSelected: boolean, isToday: boolean, isDisabled: boolean, isInRange?: boolean, isRangeStart?: boolean, isRangeEnd?: boolean): string;
2391
2392
  /**
@@ -2551,11 +2552,10 @@ declare function validateFileSize(file: File, maxSize?: number): boolean;
2551
2552
  declare function formatFileSize(bytes: number): string;
2552
2553
  /**
2553
2554
  * Get upload button classes
2554
- * @param drag - Whether in drag mode
2555
2555
  * @param disabled - Whether the button is disabled
2556
2556
  * @returns Complete button class string
2557
2557
  */
2558
- declare function getUploadButtonClasses(drag: boolean, disabled: boolean): string;
2558
+ declare function getUploadButtonClasses(disabled: boolean): string;
2559
2559
  /**
2560
2560
  * Get drag area classes
2561
2561
  * @param isDragging - Whether currently dragging
@@ -2656,6 +2656,11 @@ type ColOffset = number | Partial<Record<Breakpoint, number>>;
2656
2656
  type ColOrder = number | Partial<Record<Breakpoint, number>>;
2657
2657
  declare function getColStyleVars(span?: ColSpan, offset?: ColOffset): Record<string, string>;
2658
2658
  declare function getColOrderStyleVars(order?: ColOrder): Record<string, string>;
2659
+ /**
2660
+ * Get all Col CSS variable styles in a single pass
2661
+ * Combines span, offset, order and flex vars into one object
2662
+ */
2663
+ declare function getColMergedStyleVars(span?: ColSpan, offset?: ColOffset, order?: ColOrder, flex?: string | number): Record<string, string>;
2659
2664
  /**
2660
2665
  * Get align classes for Row component
2661
2666
  */
@@ -2736,24 +2741,14 @@ interface DividerProps {
2736
2741
  }
2737
2742
 
2738
2743
  /**
2739
- * Get spacing classes based on spacing type and orientation
2740
- * @param spacing - Spacing size
2741
- * @param orientation - Divider orientation
2742
- * @returns Spacing class string
2743
- */
2744
- declare function getDividerSpacingClasses(spacing: DividerSpacing, orientation: DividerOrientation): string;
2745
- /**
2746
- * Get border style classes based on line style
2747
- * @param lineStyle - Line style type
2748
- * @returns Border style class string
2744
+ * Get combined Tailwind classes for a divider
2749
2745
  */
2750
- declare function getDividerLineStyleClasses(lineStyle: DividerLineStyle): string;
2746
+ declare function getDividerClasses(orientation: DividerOrientation, lineStyle: DividerLineStyle, spacing: DividerSpacing): string;
2751
2747
  /**
2752
- * Get base divider classes based on orientation
2753
- * @param orientation - Divider orientation
2754
- * @returns Base divider class string
2748
+ * Get inline style object for custom color / thickness
2749
+ * Returns undefined when no custom values are set (avoids empty object allocation)
2755
2750
  */
2756
- declare function getDividerOrientationClasses(orientation: DividerOrientation): string;
2751
+ declare function getDividerStyle(orientation: DividerOrientation, color?: string, thickness?: string): Record<string, string> | undefined;
2757
2752
 
2758
2753
  /**
2759
2754
  * Layout component shared classes
@@ -2762,7 +2757,7 @@ declare function getDividerOrientationClasses(orientation: DividerOrientation):
2762
2757
  */
2763
2758
  declare const layoutRootClasses = "tiger-layout flex flex-col min-h-screen";
2764
2759
  declare const layoutHeaderClasses = "tiger-header bg-[var(--tiger-surface,#ffffff)] border-b border-[var(--tiger-border,#e5e7eb)]";
2765
- declare const layoutSidebarClasses = "tiger-sidebar bg-[var(--tiger-surface,#ffffff)] border-r border-[var(--tiger-border,#e5e7eb)] transition-all duration-300";
2760
+ declare const layoutSidebarClasses = "tiger-sidebar bg-[var(--tiger-surface,#ffffff)] border-r border-[var(--tiger-border,#e5e7eb)] overflow-hidden transition-all duration-300";
2766
2761
  declare const layoutContentClasses = "tiger-content flex-1 bg-[var(--tiger-layout-content-bg,#f9fafb)] p-6";
2767
2762
  declare const layoutFooterClasses = "tiger-footer bg-[var(--tiger-surface,#ffffff)] border-t border-[var(--tiger-border,#e5e7eb)] p-4";
2768
2763
 
@@ -2861,30 +2856,18 @@ interface SpaceProps {
2861
2856
  */
2862
2857
 
2863
2858
  /**
2864
- * Base class for Space component
2865
- */
2866
- declare const SPACE_BASE_CLASS = "inline-flex";
2867
- /**
2868
- * Get gap size class or style based on SpaceSize
2869
- * @param size - Space size (preset or custom number)
2870
- * @returns Object with class or style property
2871
- */
2872
- declare function getSpaceGapSize(size?: SpaceSize): {
2873
- class?: string;
2874
- style?: string;
2875
- };
2876
- /**
2877
- * Get alignment class based on SpaceAlign
2878
- * @param align - Alignment option
2879
- * @returns Tailwind alignment class
2859
+ * Build all Tailwind classes for the Space component
2860
+ * @param props - SpaceProps (direction, size, align, wrap)
2861
+ * @param className - Optional extra class string (e.g. React className)
2862
+ * @returns Combined class string
2880
2863
  */
2881
- declare function getSpaceAlignClass(align?: SpaceAlign): string;
2864
+ declare function getSpaceClasses({ direction, size, align, wrap }?: SpaceProps, className?: string): string;
2882
2865
  /**
2883
- * Get flex direction class based on SpaceDirection
2884
- * @param direction - Space direction
2885
- * @returns Tailwind flex direction class
2866
+ * Build inline style for numeric gap size
2867
+ * @param size - SpaceSize (only numeric values produce a style)
2868
+ * @returns Style object with gap property, or undefined
2886
2869
  */
2887
- declare function getSpaceDirectionClass(direction?: SpaceDirection): string;
2870
+ declare function getSpaceStyle(size?: SpaceSize): Record<string, string> | undefined;
2888
2871
 
2889
2872
  /**
2890
2873
  * Table component types and interfaces
@@ -3263,7 +3246,7 @@ declare function getSortIconClasses(active: boolean): string;
3263
3246
  /**
3264
3247
  * Get empty state classes
3265
3248
  */
3266
- declare const tableEmptyStateClasses = "text-center py-12 text-gray-500";
3249
+ declare const tableEmptyStateClasses = "text-center py-12 text-[var(--tiger-text-muted,#6b7280)]";
3267
3250
  /**
3268
3251
  * Get loading overlay classes
3269
3252
  */
@@ -3335,122 +3318,65 @@ declare const tagCloseButtonBaseClasses = "inline-flex items-center justify-cent
3335
3318
  declare const tagCloseIconPath = "M6 18L18 6M6 6l12 12";
3336
3319
 
3337
3320
  /**
3338
- * Badge component types and interfaces
3339
- */
3340
- /**
3341
- * Badge variant types
3321
+ * Badge component types
3342
3322
  */
3323
+ /** Badge variant types */
3343
3324
  type BadgeVariant = 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
3344
- /**
3345
- * Badge size types
3346
- */
3325
+ /** Badge size types */
3347
3326
  type BadgeSize = 'sm' | 'md' | 'lg';
3348
- /**
3349
- * Badge display types
3350
- */
3327
+ /** Badge display types */
3351
3328
  type BadgeType = 'dot' | 'number' | 'text';
3352
- /**
3353
- * Badge position types (for positioning badge on wrapper)
3354
- */
3329
+ /** Badge position types (for non-standalone mode) */
3355
3330
  type BadgePosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
3356
- /**
3357
- * Base badge props interface
3358
- */
3331
+ /** Base badge props interface */
3359
3332
  interface BadgeProps {
3360
- /**
3361
- * Badge variant style
3362
- * @default 'danger'
3363
- */
3333
+ /** Badge variant style @default 'danger' */
3364
3334
  variant?: BadgeVariant;
3365
- /**
3366
- * Badge size
3367
- * @default 'md'
3368
- */
3335
+ /** Badge size @default 'md' */
3369
3336
  size?: BadgeSize;
3370
- /**
3371
- * Badge display type
3372
- * @default 'number'
3373
- */
3337
+ /** Badge display type @default 'number' */
3374
3338
  type?: BadgeType;
3375
3339
  /**
3376
- * Badge content (number or text)
3377
- * For type='number', this should be a number or string
3378
- * For type='text', this should be a string
3379
- * For type='dot', this prop is ignored
3340
+ * Badge content (number or text).
3341
+ * Ignored when type='dot'.
3380
3342
  */
3381
3343
  content?: number | string;
3382
- /**
3383
- * Maximum count to display (only for type='number')
3384
- * When content exceeds max, displays 'max+' (e.g., '99+')
3385
- * @default 99
3386
- */
3344
+ /** Maximum count (type='number' only). Exceeds shows 'max+'. @default 99 */
3387
3345
  max?: number;
3388
- /**
3389
- * Whether to show zero count
3390
- * @default false
3391
- */
3346
+ /** Whether to show zero count @default false */
3392
3347
  showZero?: boolean;
3393
- /**
3394
- * Badge position when used as wrapper (standalone mode)
3395
- * @default 'top-right'
3396
- */
3348
+ /** Badge position in non-standalone mode @default 'top-right' */
3397
3349
  position?: BadgePosition;
3398
- /**
3399
- * Whether badge is standalone or wrapping content
3400
- * When true, badge is displayed inline
3401
- * When false, badge wraps children and positions badge absolutely
3402
- * @default true
3403
- */
3350
+ /** Standalone (inline) or wrapping children @default true */
3404
3351
  standalone?: boolean;
3405
- /**
3406
- * Additional CSS classes
3407
- */
3352
+ /** Additional CSS classes */
3408
3353
  className?: string;
3409
3354
  }
3410
3355
 
3411
3356
  /**
3412
3357
  * Badge component utilities
3413
- * Shared styles and helpers for Badge components
3414
3358
  */
3415
3359
 
3416
- /**
3417
- * Base classes for all badge variants
3418
- */
3360
+ /** Base classes for all badge variants */
3419
3361
  declare const badgeBaseClasses = "inline-flex items-center justify-center font-medium transition-colors";
3420
- /**
3421
- * Size classes for badge variants
3422
- */
3362
+ /** Size classes for badge content (number/text) */
3423
3363
  declare const badgeSizeClasses: Record<BadgeSize, string>;
3424
- /**
3425
- * Dot size classes
3426
- */
3364
+ /** Size classes for dot badges */
3427
3365
  declare const dotSizeClasses: Record<BadgeSize, string>;
3428
- /**
3429
- * Badge type specific classes
3430
- */
3366
+ /** Shape classes per badge type */
3431
3367
  declare const badgeTypeClasses: Record<BadgeType, string>;
3432
- /**
3433
- * Wrapper classes when badge is not standalone
3434
- */
3368
+ /** Wrapper classes for non-standalone badge */
3435
3369
  declare const badgeWrapperClasses = "relative inline-flex";
3436
- /**
3437
- * Position classes for badge when used as wrapper
3438
- */
3370
+ /** Position classes for non-standalone badge */
3439
3371
  declare const badgePositionClasses: Record<BadgePosition, string>;
3440
3372
  /**
3441
- * Format badge content for display
3442
- * @param content - Badge content (number or string)
3443
- * @param max - Maximum count to display
3444
- * @param showZero - Whether to show zero count
3445
- * @returns Formatted content string or null if should not display
3373
+ * Format badge content for display.
3374
+ * Returns null when badge should not display (e.g. zero without showZero).
3446
3375
  */
3447
3376
  declare function formatBadgeContent(content: number | string | undefined, max?: number, showZero?: boolean): string | null;
3448
3377
  /**
3449
- * Check if badge should be hidden
3450
- * @param content - Badge content
3451
- * @param type - Badge type
3452
- * @param showZero - Whether to show zero count
3453
- * @returns true if badge should be hidden
3378
+ * Check if badge should be hidden.
3379
+ * Dot badges are always visible; number/text badges hide when content is empty or zero.
3454
3380
  */
3455
3381
  declare function shouldHideBadge(content: number | string | undefined, type: BadgeType, showZero: boolean): boolean;
3456
3382
 
@@ -3495,7 +3421,6 @@ declare const cardSizeClasses: Record<CardSize, string>;
3495
3421
  declare const cardVariantClasses: Record<CardVariant, string>;
3496
3422
  declare const cardHoverClasses = "cursor-pointer hover:shadow-xl hover:scale-[1.02]";
3497
3423
  declare const cardHeaderClasses = "border-b border-[var(--tiger-border,#e5e7eb)] pb-3 mb-3";
3498
- declare const cardBodyClasses = "";
3499
3424
  declare const cardFooterClasses = "border-t border-[var(--tiger-border,#e5e7eb)] pt-3 mt-3";
3500
3425
  declare const cardCoverClasses = "w-full h-48 object-cover";
3501
3426
  declare const cardCoverWrapperClasses = "overflow-hidden";
@@ -3540,11 +3465,6 @@ interface AvatarProps {
3540
3465
  * Used when src is not provided or fails to load
3541
3466
  */
3542
3467
  text?: string;
3543
- /**
3544
- * Icon content (slot/children)
3545
- * Used when both src and text are not provided
3546
- */
3547
- icon?: boolean;
3548
3468
  /**
3549
3469
  * Background color for text/icon avatars
3550
3470
  * Uses Tailwind color classes or CSS color value
@@ -3808,12 +3728,6 @@ declare const listEmptyStateClasses = "py-8 text-center text-[var(--tiger-text-m
3808
3728
  * List loading overlay classes
3809
3729
  */
3810
3730
  declare const listLoadingOverlayClasses = "absolute inset-0 bg-[var(--tiger-surface,#ffffff)]/75 flex items-center justify-center z-10";
3811
- /**
3812
- * List pagination container classes
3813
- * @deprecated Use `getSimplePaginationContainerClasses()` from pagination-utils instead.
3814
- * This constant will be removed in v0.3.0.
3815
- */
3816
- declare const listPaginationContainerClasses = "flex items-center justify-between px-4 py-3 border-t border-[var(--tiger-border,#e5e7eb)]";
3817
3731
  /**
3818
3732
  * List item meta classes (for avatar + content)
3819
3733
  */
@@ -3973,10 +3887,6 @@ declare const descriptionsExtraClasses = "text-sm text-[var(--tiger-text-muted,#
3973
3887
  declare const descriptionsSizeClasses: Record<DescriptionsSize, string>;
3974
3888
  declare const descriptionsTableClasses = "w-full border-collapse";
3975
3889
  declare const descriptionsTableBorderedClasses = "border border-[var(--tiger-border,#e5e7eb)]";
3976
- /**
3977
- * Descriptions row classes
3978
- */
3979
- declare const descriptionsRowClasses = "";
3980
3890
  /**
3981
3891
  * Size classes for descriptions cells
3982
3892
  */
@@ -3988,7 +3898,7 @@ declare const descriptionsContentBorderedClasses = "border border-[var(--tiger-b
3988
3898
  /**
3989
3899
  * Vertical layout wrapper classes
3990
3900
  */
3991
- declare const descriptionsVerticalWrapperClasses = "space-y-0";
3901
+ declare const descriptionsVerticalWrapperClasses = "";
3992
3902
  /**
3993
3903
  * Vertical layout item classes
3994
3904
  */
@@ -4003,11 +3913,10 @@ declare const descriptionsVerticalLabelClasses = "font-medium mb-1 text-[var(--t
4003
3913
  declare const descriptionsVerticalContentClasses = "text-[var(--tiger-text,#111827)]";
4004
3914
  /**
4005
3915
  * Get descriptions container classes
4006
- * @param bordered - Whether to show border
4007
3916
  * @param size - Descriptions size
4008
3917
  * @returns Combined class string
4009
3918
  */
4010
- declare function getDescriptionsClasses(bordered: boolean, size: DescriptionsSize): string;
3919
+ declare function getDescriptionsClasses(size: DescriptionsSize): string;
4011
3920
  /**
4012
3921
  * Get descriptions table classes
4013
3922
  * @param bordered - Whether to show border
@@ -4032,11 +3941,10 @@ declare function getDescriptionsLabelClasses(bordered: boolean, size: Descriptio
4032
3941
  declare function getDescriptionsContentClasses(bordered: boolean, size: DescriptionsSize, layout: DescriptionsLayout): string;
4033
3942
  /**
4034
3943
  * Get descriptions vertical item classes
4035
- * @param bordered - Whether to show border
4036
3944
  * @param size - Descriptions size
4037
3945
  * @returns Combined class string
4038
3946
  */
4039
- declare function getDescriptionsVerticalItemClasses(bordered: boolean, size: DescriptionsSize): string;
3947
+ declare function getDescriptionsVerticalItemClasses(size: DescriptionsSize): string;
4040
3948
  /**
4041
3949
  * Group items into rows based on column configuration
4042
3950
  * @param items - Array of description items
@@ -4132,8 +4040,8 @@ declare const timelineDescriptionClasses = "text-[var(--tiger-text,#374151)]";
4132
4040
  declare const timelineDotClasses = "w-2.5 h-2.5 rounded-full border-2 border-[var(--tiger-surface,#ffffff)] bg-[var(--tiger-timeline-dot,#d1d5db)]";
4133
4041
  declare function getTimelineContainerClasses(mode: TimelineMode): string;
4134
4042
  declare function getTimelineItemClasses(mode: TimelineMode, position?: TimelineItemPosition, isLast?: boolean): string;
4135
- declare function getTimelineTailClasses(mode: TimelineMode, _position?: TimelineItemPosition, isLast?: boolean): string;
4136
- declare function getTimelineHeadClasses(mode: TimelineMode, _position?: TimelineItemPosition): string;
4043
+ declare function getTimelineTailClasses(mode: TimelineMode, isLast?: boolean): string;
4044
+ declare function getTimelineHeadClasses(mode: TimelineMode): string;
4137
4045
  declare function getTimelineDotClasses(color?: string, isCustom?: boolean): string;
4138
4046
  declare function getTimelineContentClasses(mode: TimelineMode, position?: TimelineItemPosition): string;
4139
4047
  declare function getPendingDotClasses(): string;
@@ -4357,7 +4265,7 @@ declare const treeNodeHoverClasses = "hover:bg-gray-50";
4357
4265
  /**
4358
4266
  * Tree node selected classes
4359
4267
  */
4360
- declare const treeNodeSelectedClasses = "bg-[var(--tiger-primary,#2563eb)] bg-opacity-10 text-[var(--tiger-primary,#2563eb)]";
4268
+ declare const treeNodeSelectedClasses = "bg-[color-mix(in_srgb,var(--tiger-primary,#2563eb)_10%,transparent)] text-[var(--tiger-primary,#2563eb)]";
4361
4269
  /**
4362
4270
  * Tree node disabled classes
4363
4271
  */
@@ -4416,16 +4324,6 @@ declare function getTreeNodeClasses(selected: boolean, disabled: boolean, blockN
4416
4324
  * @returns Combined class string for expand icon
4417
4325
  */
4418
4326
  declare function getTreeNodeExpandIconClasses(expanded: boolean): string;
4419
- /**
4420
- * Flatten tree data to a flat array
4421
- * @param treeData - Tree data
4422
- * @param expandedKeys - Expanded node keys
4423
- * @returns Flattened array of nodes with level information
4424
- */
4425
- declare function flattenTree(treeData: TreeNode[], expandedKeys?: Set<string | number>): Array<TreeNode & {
4426
- level: number;
4427
- parentKey?: string | number;
4428
- }>;
4429
4327
  /**
4430
4328
  * Get all keys from tree data
4431
4329
  * @param treeData - Tree data
@@ -4500,13 +4398,13 @@ declare function filterTreeNodes(treeData: TreeNode[], filterValue: string, filt
4500
4398
  */
4501
4399
  declare function getAutoExpandKeys(treeData: TreeNode[], matchedKeys: Set<string | number>): Set<string | number>;
4502
4400
  /**
4503
- * Default expand icon SVG
4504
- */
4505
- declare const defaultExpandIcon: (expanded: boolean) => string;
4506
- /**
4507
- * Default checkbox icon SVG (indeterminate state)
4401
+ * Create Set-based lookup from TreeCheckedState for O(1) per-node checks.
4402
+ * Use this in render loops instead of Array.includes() for better performance.
4508
4403
  */
4509
- declare const defaultIndeterminateIcon = "\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"currentColor\">\n <rect x=\"4\" y=\"7\" width=\"8\" height=\"2\" rx=\"1\"/>\n </svg>\n";
4404
+ declare function checkedSetsFromState(state: TreeCheckedState): {
4405
+ checkedSet: Set<string | number>;
4406
+ halfCheckedSet: Set<string | number>;
4407
+ };
4510
4408
 
4511
4409
  /**
4512
4410
  * Skeleton component types and interfaces
@@ -4717,7 +4615,7 @@ interface ProgressProps {
4717
4615
 
4718
4616
  declare const progressLineBaseClasses = "relative overflow-hidden rounded-full";
4719
4617
  declare const progressLineInnerClasses = "h-full rounded-full transition-all duration-300 ease-in-out flex items-center justify-end";
4720
- declare const progressTextBaseClasses = "font-medium ml-2 text-[color:var(--tiger-text,#374151)]";
4618
+ declare const progressTextBaseClasses = "font-medium ml-2";
4721
4619
  declare const progressCircleBaseClasses = "relative inline-flex items-center justify-center";
4722
4620
  declare const progressLineSizeClasses: Record<ProgressSize, string>;
4723
4621
  declare const progressCircleSizeClasses: Record<ProgressSize, number>;
@@ -4727,7 +4625,7 @@ declare const progressStripedAnimationClasses = "animate-[progress-stripes_1s_li
4727
4625
  declare function getStatusVariant(status: ProgressStatus): string;
4728
4626
  declare function formatProgressText(percentage: number, customText?: string, formatFn?: (percentage: number) => string): string;
4729
4627
  declare function clampPercentage(percentage: number): number;
4730
- declare function calculateCirclePath(radius: number, strokeWidth: number, percentage: number): {
4628
+ declare function calculateCirclePath(radius: number, percentage: number): {
4731
4629
  circumference: number;
4732
4630
  strokeDasharray: string;
4733
4631
  strokeDashoffset: number;
@@ -4883,10 +4781,6 @@ declare const collapseIconPositionClasses: {
4883
4781
  * Collapse header text classes
4884
4782
  */
4885
4783
  declare const collapseHeaderTextClasses = "flex-1 font-medium text-gray-900";
4886
- /**
4887
- * Collapse extra content classes
4888
- */
4889
- declare const collapseExtraClasses = "ml-auto";
4890
4784
  /**
4891
4785
  * Get collapse container classes
4892
4786
  */
@@ -4915,10 +4809,6 @@ declare function isPanelActive(panelKey: string | number, activeKeys: (string |
4915
4809
  * Toggle panel key in active keys array
4916
4810
  */
4917
4811
  declare function togglePanelKey(panelKey: string | number, activeKeys: (string | number)[], accordion: boolean): (string | number)[];
4918
- /**
4919
- * Right arrow SVG icon for collapse
4920
- */
4921
- declare const collapseRightArrowIcon: string;
4922
4812
 
4923
4813
  /**
4924
4814
  * Menu component types and interfaces
@@ -5206,6 +5096,27 @@ declare function toggleKey(key: string | number, keys: (string | number)[]): (st
5206
5096
  * Replace keys array with single key (for single selection mode)
5207
5097
  */
5208
5098
  declare function replaceKeys(key: string | number, keys: (string | number)[]): (string | number)[];
5099
+ /**
5100
+ * Query all enabled, visible menu-item buttons within a menu container.
5101
+ */
5102
+ declare function getMenuButtons(container: HTMLElement): HTMLButtonElement[];
5103
+ /**
5104
+ * Move roving-tabindex focus by `delta` steps (±1) within the nearest `ul[role="menu"]`.
5105
+ */
5106
+ declare function moveFocusInMenu(current: HTMLButtonElement, delta: number): void;
5107
+ /**
5108
+ * Move roving-tabindex focus to the first or last item.
5109
+ */
5110
+ declare function focusMenuEdge(current: HTMLButtonElement, edge: 'start' | 'end'): void;
5111
+ /**
5112
+ * Initialise roving tabindex on a menu root element.
5113
+ * Sets tabindex=0 on the selected (or first) item, -1 on the rest.
5114
+ */
5115
+ declare function initRovingTabIndex(root: HTMLElement): void;
5116
+ /**
5117
+ * Focus the first child menu-item inside a submenu (called after expanding).
5118
+ */
5119
+ declare function focusFirstChildItem(titleEl: HTMLElement): void;
5209
5120
 
5210
5121
  /**
5211
5122
  * Tabs component types and interfaces
@@ -5342,9 +5253,9 @@ declare const tabsBaseClasses = "w-full";
5342
5253
  /**
5343
5254
  * Tab nav base classes
5344
5255
  */
5345
- declare const tabNavBaseClasses = "flex transition-colors duration-200";
5256
+ declare const tabNavBaseClasses = "flex";
5346
5257
  /**
5347
- * Tab nav position classes
5258
+ * Tab nav position classes (direction only)
5348
5259
  */
5349
5260
  declare const tabNavPositionClasses: {
5350
5261
  top: string;
@@ -5352,6 +5263,15 @@ declare const tabNavPositionClasses: {
5352
5263
  left: string;
5353
5264
  right: string;
5354
5265
  };
5266
+ /**
5267
+ * Tab nav border classes (applied only for line type)
5268
+ */
5269
+ declare const tabNavLineBorderClasses: {
5270
+ top: string;
5271
+ bottom: string;
5272
+ left: string;
5273
+ right: string;
5274
+ };
5355
5275
  /**
5356
5276
  * Tab nav list base classes
5357
5277
  */
@@ -5373,7 +5293,7 @@ declare const tabNavListCenteredClasses = "justify-center";
5373
5293
  * Tab item base classes
5374
5294
  * @since 0.2.0 - Added focus-visible ring for keyboard navigation
5375
5295
  */
5376
- declare const tabItemBaseClasses = "relative px-4 py-2 cursor-pointer transition-all duration-200 select-none flex items-center gap-2 focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))] focus-visible:ring-offset-2 active:opacity-90";
5296
+ declare const tabItemBaseClasses = "relative cursor-pointer transition-all duration-200 select-none flex items-center gap-2 focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))] focus-visible:ring-offset-2 active:opacity-90";
5377
5297
  /**
5378
5298
  * Tab item size classes
5379
5299
  */
@@ -5546,7 +5466,7 @@ declare const breadcrumbSeparatorBaseClasses = "text-gray-400 select-none";
5546
5466
  /**
5547
5467
  * Get breadcrumb item classes
5548
5468
  */
5549
- declare function getBreadcrumbItemClasses(current?: boolean, className?: string): string;
5469
+ declare function getBreadcrumbItemClasses(className?: string): string;
5550
5470
  /**
5551
5471
  * Get breadcrumb link classes
5552
5472
  */
@@ -5652,15 +5572,9 @@ interface StepsProps {
5652
5572
  */
5653
5573
 
5654
5574
  /**
5655
- * Default check icon used by StepsItem when status is "finish"
5656
- * (Shared between React/Vue to keep visuals consistent)
5575
+ * Checkmark character used by StepsItem when status is "finish"
5657
5576
  */
5658
- declare const stepFinishIconSvgClasses = "w-5 h-5";
5659
- declare const stepFinishIconViewBox = "0 0 24 24";
5660
- declare const stepFinishIconPathD = "M5 13l4 4L19 7";
5661
- declare const stepFinishIconPathStrokeLinecap = "round";
5662
- declare const stepFinishIconPathStrokeLinejoin = "round";
5663
- declare const stepFinishIconPathStrokeWidth = 2;
5577
+ declare const stepFinishChar = "\u2713";
5664
5578
  /**
5665
5579
  * Get Steps container classes
5666
5580
  */
@@ -5668,7 +5582,7 @@ declare function getStepsContainerClasses(direction: StepsDirection): string;
5668
5582
  /**
5669
5583
  * Get Step item container classes
5670
5584
  */
5671
- declare function getStepItemClasses(direction: StepsDirection, isLast: boolean, simple: boolean): string;
5585
+ declare function getStepItemClasses(direction: StepsDirection, isLast: boolean): string;
5672
5586
  /**
5673
5587
  * Get Step icon container classes
5674
5588
  */
@@ -5676,11 +5590,11 @@ declare function getStepIconClasses(status: StepStatus, size: StepSize, simple:
5676
5590
  /**
5677
5591
  * Get Step tail/connector line classes
5678
5592
  */
5679
- declare function getStepTailClasses(direction: StepsDirection, status: StepStatus, isLast: boolean): string;
5593
+ declare function getStepTailClasses(direction: StepsDirection, status: StepStatus, isLast: boolean, size: StepSize, simple: boolean): string;
5680
5594
  /**
5681
5595
  * Get Step content container classes
5682
5596
  */
5683
- declare function getStepContentClasses(direction: StepsDirection, simple: boolean): string;
5597
+ declare function getStepContentClasses(direction: StepsDirection): string;
5684
5598
  /**
5685
5599
  * Get Step title classes
5686
5600
  */
@@ -5795,8 +5709,8 @@ interface PaginationProps {
5795
5709
  */
5796
5710
  hideOnSinglePage?: boolean;
5797
5711
  /**
5798
- * Number of page buttons to show on each side of current page
5799
- * @default 2
5712
+ * Whether to show fewer page buttons around current page
5713
+ * @default false
5800
5714
  */
5801
5715
  showLessItems?: boolean;
5802
5716
  /**
@@ -5883,6 +5797,10 @@ declare function getQuickJumperInputClasses(size?: PaginationSize): string;
5883
5797
  * Get page size selector classes
5884
5798
  */
5885
5799
  declare function getPageSizeSelectorClasses(size?: PaginationSize): string;
5800
+ /**
5801
+ * Get text size class for a given pagination size
5802
+ */
5803
+ declare function getSizeTextClasses(size?: PaginationSize): string;
5886
5804
  /**
5887
5805
  * Get total text classes
5888
5806
  */
@@ -5918,100 +5836,6 @@ declare function getSimplePaginationPageIndicatorClasses(): string;
5918
5836
  */
5919
5837
  declare function getSimplePaginationButtonsWrapperClasses(): string;
5920
5838
 
5921
- /**
5922
- * Dropdown component types and interfaces
5923
- */
5924
- /**
5925
- * Dropdown trigger mode - determines how the dropdown is opened
5926
- */
5927
- type DropdownTrigger = 'click' | 'hover';
5928
- /**
5929
- * Dropdown placement - position relative to the trigger element
5930
- */
5931
- type DropdownPlacement = 'bottom-start' | 'bottom' | 'bottom-end' | 'top-start' | 'top' | 'top-end' | 'left-start' | 'left' | 'left-end' | 'right-start' | 'right' | 'right-end';
5932
- /**
5933
- * Base dropdown props interface
5934
- */
5935
- interface DropdownProps {
5936
- /**
5937
- * Trigger mode - click or hover
5938
- * @default 'hover'
5939
- */
5940
- trigger?: DropdownTrigger;
5941
- /**
5942
- * Dropdown placement relative to trigger
5943
- * @default 'bottom-start'
5944
- */
5945
- placement?: DropdownPlacement;
5946
- /**
5947
- * Whether the dropdown is disabled
5948
- * @default false
5949
- */
5950
- disabled?: boolean;
5951
- /**
5952
- * Whether the dropdown is visible (controlled mode)
5953
- */
5954
- visible?: boolean;
5955
- /**
5956
- * Default visibility (uncontrolled mode)
5957
- * @default false
5958
- */
5959
- defaultVisible?: boolean;
5960
- /**
5961
- * Whether to close dropdown on menu item click
5962
- * @default true
5963
- */
5964
- closeOnClick?: boolean;
5965
- /**
5966
- * Additional CSS classes
5967
- */
5968
- className?: string;
5969
- /**
5970
- * Custom styles
5971
- */
5972
- style?: Record<string, unknown>;
5973
- }
5974
- /**
5975
- * Dropdown menu props interface
5976
- */
5977
- interface DropdownMenuProps {
5978
- /**
5979
- * Additional CSS classes
5980
- */
5981
- className?: string;
5982
- /**
5983
- * Custom styles
5984
- */
5985
- style?: Record<string, unknown>;
5986
- }
5987
- /**
5988
- * Dropdown item props interface
5989
- */
5990
- interface DropdownItemProps {
5991
- /**
5992
- * Unique key for the dropdown item
5993
- */
5994
- key?: string | number;
5995
- /**
5996
- * Whether the item is disabled
5997
- * @default false
5998
- */
5999
- disabled?: boolean;
6000
- /**
6001
- * Whether the item is divided from previous item
6002
- * @default false
6003
- */
6004
- divided?: boolean;
6005
- /**
6006
- * Icon for the dropdown item
6007
- */
6008
- icon?: unknown;
6009
- /**
6010
- * Additional CSS classes
6011
- */
6012
- className?: string;
6013
- }
6014
-
6015
5839
  /**
6016
5840
  * Get base dropdown container classes
6017
5841
  */
@@ -6021,9 +5845,13 @@ declare function getDropdownContainerClasses(): string;
6021
5845
  */
6022
5846
  declare function getDropdownTriggerClasses(disabled: boolean): string;
6023
5847
  /**
6024
- * Get dropdown menu wrapper classes
5848
+ * Get dropdown chevron indicator classes
5849
+ */
5850
+ declare function getDropdownChevronClasses(visible: boolean): string;
5851
+ /**
5852
+ * SVG path for the dropdown chevron-down icon (viewBox 0 0 24 24)
6025
5853
  */
6026
- declare function getDropdownMenuWrapperClasses(visible: boolean, placement: DropdownPlacement): string;
5854
+ declare const DROPDOWN_CHEVRON_PATH = "M6 9l6 6 6-6";
6027
5855
  /**
6028
5856
  * Get dropdown menu classes
6029
5857
  */
@@ -6032,6 +5860,15 @@ declare function getDropdownMenuClasses(): string;
6032
5860
  * Get dropdown item classes
6033
5861
  */
6034
5862
  declare function getDropdownItemClasses(disabled: boolean, divided: boolean): string;
5863
+ /**
5864
+ * Inject dropdown animation styles into the document head.
5865
+ * Safe to call multiple times - will only inject once.
5866
+ */
5867
+ declare function injectDropdownStyles(): void;
5868
+ /**
5869
+ * CSS class for dropdown menu entrance animation
5870
+ */
5871
+ declare const DROPDOWN_ENTER_CLASS = "tiger-dropdown-enter";
6035
5872
 
6036
5873
  /**
6037
5874
  * Drawer component types
@@ -6118,7 +5955,7 @@ declare function getDrawerMaskClasses(visible: boolean): string;
6118
5955
  /**
6119
5956
  * Get drawer container classes (wrapper positioned over mask)
6120
5957
  */
6121
- declare function getDrawerContainerClasses(zIndex: number): string;
5958
+ declare function getDrawerContainerClasses(): string;
6122
5959
  /**
6123
5960
  * Get drawer panel classes based on placement and visibility
6124
5961
  */
@@ -6350,22 +6187,6 @@ declare const alertIconContainerClasses = "flex-shrink-0";
6350
6187
  * Alert content container classes
6351
6188
  */
6352
6189
  declare const alertContentClasses = "flex-1 ml-3";
6353
- /**
6354
- * SVG path for success (check circle) icon
6355
- */
6356
- declare const alertSuccessIconPath = "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z";
6357
- /**
6358
- * SVG path for warning (exclamation triangle) icon
6359
- */
6360
- declare const alertWarningIconPath = "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z";
6361
- /**
6362
- * SVG path for error (x circle) icon
6363
- */
6364
- declare const alertErrorIconPath = "M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z";
6365
- /**
6366
- * SVG path for info (information circle) icon
6367
- */
6368
- declare const alertInfoIconPath = "M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z";
6369
6190
  /**
6370
6191
  * SVG path for close (x) icon
6371
6192
  */
@@ -6493,13 +6314,6 @@ declare const messagePositionClasses: Record<MessagePosition, string>;
6493
6314
  * Base message item classes
6494
6315
  */
6495
6316
  declare const messageBaseClasses = "flex items-center gap-3 px-4 py-3 rounded-lg shadow-lg border pointer-events-auto transition-all duration-300 ease-in-out";
6496
- /**
6497
- * Message animation classes
6498
- */
6499
- declare const messageEnterClasses = "opacity-0 -translate-y-2";
6500
- declare const messageEnterActiveClasses = "opacity-100 translate-y-0";
6501
- declare const messageLeaveClasses = "opacity-100 translate-y-0";
6502
- declare const messageLeaveActiveClasses = "opacity-0 -translate-y-2";
6503
6317
  /**
6504
6318
  * Message type color schemes
6505
6319
  */
@@ -6888,19 +6702,273 @@ declare const animationDelayStyles = "\n@keyframes bounce-dot {\n 0%, 100% { tr
6888
6702
  declare function injectLoadingAnimationStyles(): void;
6889
6703
 
6890
6704
  /**
6891
- * Popconfirm component types and interfaces
6705
+ * Floating UI wrapper utilities for positioning popups, tooltips, and dropdowns.
6706
+ * Provides edge-aware positioning with automatic collision detection and flipping.
6892
6707
  */
6893
6708
 
6894
6709
  /**
6895
- * Popconfirm icon type
6710
+ * Placement options supported by the floating system.
6711
+ * These map directly to Floating UI placements.
6896
6712
  */
6897
- type PopconfirmIconType = 'warning' | 'info' | 'error' | 'success' | 'question';
6713
+ type FloatingPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
6898
6714
  /**
6899
- * Base popconfirm props interface
6715
+ * Options for computing floating element position.
6900
6716
  */
6901
- interface PopconfirmProps {
6717
+ interface FloatingOptions {
6902
6718
  /**
6903
- * Whether the popconfirm is visible (controlled mode)
6719
+ * Preferred placement of the floating element relative to the reference.
6720
+ * @default 'bottom'
6721
+ */
6722
+ placement?: FloatingPlacement;
6723
+ /**
6724
+ * Distance (in pixels) between reference and floating element.
6725
+ * @default 8
6726
+ */
6727
+ offset?: number;
6728
+ /**
6729
+ * Whether to flip placement when there's not enough space.
6730
+ * @default true
6731
+ */
6732
+ flip?: boolean;
6733
+ /**
6734
+ * Whether to shift the floating element to stay within viewport.
6735
+ * @default true
6736
+ */
6737
+ shift?: boolean;
6738
+ /**
6739
+ * Padding from viewport edges when shifting.
6740
+ * @default 8
6741
+ */
6742
+ shiftPadding?: number;
6743
+ /**
6744
+ * Arrow element for positioning the arrow indicator.
6745
+ */
6746
+ arrowElement?: HTMLElement | null;
6747
+ /**
6748
+ * Arrow padding from edges.
6749
+ * @default 8
6750
+ */
6751
+ arrowPadding?: number;
6752
+ }
6753
+ /**
6754
+ * Result of computing floating position.
6755
+ */
6756
+ interface FloatingResult {
6757
+ /**
6758
+ * X coordinate to position the floating element.
6759
+ */
6760
+ x: number;
6761
+ /**
6762
+ * Y coordinate to position the floating element.
6763
+ */
6764
+ y: number;
6765
+ /**
6766
+ * Final placement after auto-positioning (may differ from requested).
6767
+ */
6768
+ placement: FloatingPlacement;
6769
+ /**
6770
+ * Arrow position data (if arrow element was provided).
6771
+ */
6772
+ arrow?: {
6773
+ x?: number;
6774
+ y?: number;
6775
+ };
6776
+ /**
6777
+ * Middleware data from Floating UI.
6778
+ */
6779
+ middlewareData: MiddlewareData;
6780
+ }
6781
+ /**
6782
+ * Compute the position of a floating element relative to a reference element.
6783
+ * Uses Floating UI for edge-aware positioning with automatic collision detection.
6784
+ *
6785
+ * @param reference - The reference element (trigger)
6786
+ * @param floating - The floating element (popup/tooltip)
6787
+ * @param options - Positioning options
6788
+ * @returns Promise resolving to position data
6789
+ *
6790
+ * @example
6791
+ * ```ts
6792
+ * const { x, y, placement } = await computeFloatingPosition(
6793
+ * triggerEl,
6794
+ * tooltipEl,
6795
+ * { placement: 'top', offset: 8 }
6796
+ * )
6797
+ * tooltipEl.style.left = `${x}px`
6798
+ * tooltipEl.style.top = `${y}px`
6799
+ * ```
6800
+ */
6801
+ declare function computeFloatingPosition(reference: HTMLElement, floating: HTMLElement, options?: FloatingOptions): Promise<FloatingResult>;
6802
+ /**
6803
+ * Cleanup function type returned by autoUpdateFloating.
6804
+ */
6805
+ type FloatingCleanup = () => void;
6806
+ /**
6807
+ * Set up automatic position updates for a floating element.
6808
+ * Updates position when reference/floating elements resize, scroll, or when
6809
+ * the reference moves in the viewport.
6810
+ *
6811
+ * @param reference - The reference element (trigger)
6812
+ * @param floating - The floating element (popup/tooltip)
6813
+ * @param update - Callback to run when position should be updated
6814
+ * @returns Cleanup function to stop auto-updates
6815
+ *
6816
+ * @example
6817
+ * ```ts
6818
+ * const cleanup = autoUpdateFloating(triggerEl, tooltipEl, async () => {
6819
+ * const { x, y } = await computeFloatingPosition(triggerEl, tooltipEl)
6820
+ * tooltipEl.style.left = `${x}px`
6821
+ * tooltipEl.style.top = `${y}px`
6822
+ * })
6823
+ *
6824
+ * // Later, when unmounting:
6825
+ * cleanup()
6826
+ * ```
6827
+ */
6828
+ declare function autoUpdateFloating(reference: HTMLElement, floating: HTMLElement, update: () => void): FloatingCleanup;
6829
+ /**
6830
+ * Get CSS transform origin based on placement.
6831
+ * Useful for scaling/fading animations that should originate from the reference.
6832
+ *
6833
+ * @param placement - Current placement of the floating element
6834
+ * @returns CSS transform-origin value
6835
+ *
6836
+ * @example
6837
+ * ```ts
6838
+ * tooltipEl.style.transformOrigin = getTransformOrigin('top')
6839
+ * // Returns 'bottom center'
6840
+ * ```
6841
+ */
6842
+ declare function getTransformOrigin(placement: FloatingPlacement): string;
6843
+ /**
6844
+ * Get the side of the reference element where the floating element is placed.
6845
+ *
6846
+ * @param placement - Current placement
6847
+ * @returns The side: 'top', 'bottom', 'left', or 'right'
6848
+ */
6849
+ declare function getPlacementSide(placement: FloatingPlacement): 'top' | 'bottom' | 'left' | 'right';
6850
+ /**
6851
+ * Get arrow positioning styles based on placement and arrow data.
6852
+ *
6853
+ * @param placement - Current placement of the floating element
6854
+ * @param arrowData - Arrow position data from computeFloatingPosition
6855
+ * @returns CSS styles object for the arrow element
6856
+ *
6857
+ * @example
6858
+ * ```ts
6859
+ * const arrowStyles = getArrowStyles('top', result.arrow)
6860
+ * Object.assign(arrowEl.style, arrowStyles)
6861
+ * ```
6862
+ */
6863
+ declare function getArrowStyles(placement: FloatingPlacement, arrowData?: {
6864
+ x?: number;
6865
+ y?: number;
6866
+ }): Record<string, string>;
6867
+ /**
6868
+ * Apply floating position to an element's style.
6869
+ * Convenience function that sets left/top CSS properties.
6870
+ *
6871
+ * @param element - The floating element to position
6872
+ * @param result - Position result from computeFloatingPosition
6873
+ *
6874
+ * @example
6875
+ * ```ts
6876
+ * const result = await computeFloatingPosition(trigger, tooltip)
6877
+ * applyFloatingStyles(tooltip, result)
6878
+ * ```
6879
+ */
6880
+ declare function applyFloatingStyles(element: HTMLElement, result: FloatingResult): void;
6881
+
6882
+ /**
6883
+ * Shared floating-popup types used by Tooltip, Popover, and Popconfirm.
6884
+ */
6885
+
6886
+ /**
6887
+ * Trigger type shared by floating popup components
6888
+ */
6889
+ type FloatingTrigger = 'click' | 'hover' | 'focus' | 'manual';
6890
+ /**
6891
+ * Base props shared across all floating-popup components
6892
+ * (Tooltip, Popover, Popconfirm).
6893
+ */
6894
+ interface BaseFloatingPopupProps {
6895
+ /** Whether the popup is visible (controlled mode) */
6896
+ visible?: boolean;
6897
+ /** Default visibility (uncontrolled mode) @default false */
6898
+ defaultVisible?: boolean;
6899
+ /** Placement relative to trigger @default 'top' */
6900
+ placement?: FloatingPlacement;
6901
+ /** Whether the popup is disabled @default false */
6902
+ disabled?: boolean;
6903
+ /** Offset distance from trigger in pixels @default 8 */
6904
+ offset?: number;
6905
+ /** Additional CSS classes */
6906
+ className?: string;
6907
+ }
6908
+
6909
+ /**
6910
+ * Shared utilities for floating-popup components (Tooltip, Popover, Popconfirm).
6911
+ *
6912
+ * Provides:
6913
+ * - Auto-incrementing ID factory for aria-* attributes
6914
+ * - Trigger-handler builder (maps trigger type → event handler map)
6915
+ */
6916
+
6917
+ /**
6918
+ * Create an auto-incrementing ID generator for a given component prefix.
6919
+ *
6920
+ * @example
6921
+ * ```ts
6922
+ * const createId = createFloatingIdFactory('tooltip')
6923
+ * createId() // 'tiger-tooltip-1'
6924
+ * createId() // 'tiger-tooltip-2'
6925
+ * ```
6926
+ */
6927
+ declare function createFloatingIdFactory(prefix: string): () => string;
6928
+ /**
6929
+ * Describes a set of event-handler names produced by `buildTriggerHandlerMap`.
6930
+ * The actual values are determined by the caller (Vue or React).
6931
+ */
6932
+ interface TriggerHandlerMap<H> {
6933
+ onClick?: H;
6934
+ onMouseenter?: H;
6935
+ onMouseleave?: H;
6936
+ onMouseEnter?: H;
6937
+ onMouseLeave?: H;
6938
+ onFocus?: H;
6939
+ onBlur?: H;
6940
+ onFocusin?: H;
6941
+ onFocusout?: H;
6942
+ }
6943
+ /**
6944
+ * Build a trigger-handler map for a given trigger type.
6945
+ * Returns *only* the keys relevant to `trigger`; the caller supplies the
6946
+ * handler functions so this stays framework-agnostic.
6947
+ *
6948
+ * @param trigger - Current trigger type
6949
+ * @param handlers - Named handler functions keyed by action
6950
+ * @param framework - 'vue' | 'react' (differences: casing & focusin/focusout)
6951
+ */
6952
+ declare function buildTriggerHandlerMap<H>(trigger: FloatingTrigger, handlers: {
6953
+ toggle: H;
6954
+ show: H;
6955
+ hide: H;
6956
+ }, framework?: 'vue' | 'react'): Record<string, H>;
6957
+
6958
+ /**
6959
+ * Popconfirm component types and interfaces
6960
+ */
6961
+
6962
+ /**
6963
+ * Popconfirm icon type
6964
+ */
6965
+ type PopconfirmIconType = 'warning' | 'info' | 'error' | 'success' | 'question';
6966
+ /**
6967
+ * Base popconfirm props interface
6968
+ */
6969
+ interface PopconfirmProps {
6970
+ /**
6971
+ * Whether the popconfirm is visible (controlled mode)
6904
6972
  */
6905
6973
  visible?: boolean;
6906
6974
  /**
@@ -6945,7 +7013,7 @@ interface PopconfirmProps {
6945
7013
  * Popconfirm placement relative to trigger
6946
7014
  * @default 'top'
6947
7015
  */
6948
- placement?: DropdownPlacement;
7016
+ placement?: FloatingPlacement;
6949
7017
  /**
6950
7018
  * Whether the popconfirm is disabled
6951
7019
  * @default false
@@ -6976,7 +7044,7 @@ declare function getPopconfirmContentClasses(): string;
6976
7044
  /**
6977
7045
  * Get popconfirm arrow classes (small pointer to the trigger)
6978
7046
  */
6979
- declare function getPopconfirmArrowClasses(placement: DropdownPlacement): string;
7047
+ declare function getPopconfirmArrowClasses(placement: FloatingPlacement): string;
6980
7048
  /**
6981
7049
  * Get popconfirm title classes
6982
7050
  */
@@ -7022,24 +7090,22 @@ declare const popconfirmQuestionIconPath = "M9.879 7.519c1.171-1.025 3.071-1.025
7022
7090
  */
7023
7091
  declare function getPopconfirmIconPath(iconType: PopconfirmIconType): string;
7024
7092
 
7025
- /**
7026
- * Get base popover container classes
7027
- */
7093
+ /** Base popover container classes */
7028
7094
  declare function getPopoverContainerClasses(): string;
7029
- /**
7030
- * Get popover trigger classes
7031
- */
7095
+ /** Popover trigger classes */
7032
7096
  declare function getPopoverTriggerClasses(disabled: boolean): string;
7033
- /**
7034
- * Get popover content wrapper classes
7035
- */
7097
+ /** Popover content wrapper classes */
7036
7098
  declare function getPopoverContentClasses(width?: string | number): string;
7099
+ /** Popover title classes (static) */
7100
+ declare const POPOVER_TITLE_CLASSES: string;
7101
+ /** Popover content text classes (static) */
7102
+ declare const POPOVER_TEXT_CLASSES: string;
7037
7103
  /**
7038
- * Get popover title classes
7104
+ * @deprecated Use POPOVER_TITLE_CLASSES instead
7039
7105
  */
7040
7106
  declare function getPopoverTitleClasses(): string;
7041
7107
  /**
7042
- * Get popover content text classes
7108
+ * @deprecated Use POPOVER_TEXT_CLASSES instead
7043
7109
  */
7044
7110
  declare function getPopoverContentTextClasses(): string;
7045
7111
 
@@ -7148,12 +7214,96 @@ interface IconProps {
7148
7214
  declare const iconWrapperClasses = "inline-flex align-middle";
7149
7215
  declare const iconSvgBaseClasses = "inline-block";
7150
7216
  declare const iconSizeClasses: Record<IconSize, string>;
7217
+ declare const iconSvgDefaultStrokeWidth = 2;
7218
+ declare const iconSvgDefaultStrokeLinecap = "round";
7219
+ declare const iconSvgDefaultStrokeLinejoin = "round";
7151
7220
 
7152
7221
  declare const codeBlockContainerClasses = "relative rounded-lg border border-gray-200 bg-gray-50 text-gray-800 dark:border-gray-800 dark:bg-gray-900/60 dark:text-gray-100";
7153
7222
  declare const codeBlockPreClasses = "m-0 overflow-auto p-4 text-sm leading-relaxed font-mono whitespace-pre";
7154
7223
  declare const codeBlockCopyButtonBaseClasses = "absolute right-3 top-0 -translate-y-1/2 inline-flex items-center rounded-md border border-gray-200 bg-white/90 px-1.5 py-0.5 text-[10px] text-gray-600 shadow-sm transition-colors hover:bg-white hover:text-gray-900 dark:border-gray-700 dark:bg-gray-900/90 dark:text-gray-200 dark:hover:bg-gray-800";
7155
7224
  declare const codeBlockCopyButtonCopiedClasses = "border-[var(--tiger-primary,#2563eb)] text-[var(--tiger-primary,#2563eb)]";
7156
7225
 
7226
+ /**
7227
+ * Text component types and interfaces
7228
+ */
7229
+ /**
7230
+ * Text tag types - semantic HTML elements for text
7231
+ */
7232
+ type TextTag = 'p' | 'span' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'label' | 'strong' | 'em' | 'small';
7233
+ /**
7234
+ * Text size types
7235
+ */
7236
+ type TextSize = 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl';
7237
+ /**
7238
+ * Text weight types
7239
+ */
7240
+ type TextWeight = 'thin' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black';
7241
+ /**
7242
+ * Text alignment types
7243
+ */
7244
+ type TextAlign = 'left' | 'center' | 'right' | 'justify';
7245
+ /**
7246
+ * Text color types
7247
+ */
7248
+ type TextColor = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'muted';
7249
+ /**
7250
+ * Base text props interface
7251
+ */
7252
+ interface TextProps {
7253
+ /**
7254
+ * HTML tag to render
7255
+ * @default 'p'
7256
+ */
7257
+ tag?: TextTag;
7258
+ /**
7259
+ * Text size
7260
+ * @default 'base'
7261
+ */
7262
+ size?: TextSize;
7263
+ /**
7264
+ * Text weight
7265
+ * @default 'normal'
7266
+ */
7267
+ weight?: TextWeight;
7268
+ /**
7269
+ * Text alignment
7270
+ */
7271
+ align?: TextAlign;
7272
+ /**
7273
+ * Text color
7274
+ * @default 'default'
7275
+ */
7276
+ color?: TextColor;
7277
+ /**
7278
+ * Whether to truncate text with ellipsis
7279
+ * @default false
7280
+ */
7281
+ truncate?: boolean;
7282
+ /**
7283
+ * Whether text should be italic
7284
+ * @default false
7285
+ */
7286
+ italic?: boolean;
7287
+ /**
7288
+ * Whether text should have underline
7289
+ * @default false
7290
+ */
7291
+ underline?: boolean;
7292
+ /**
7293
+ * Whether text should have line-through
7294
+ * @default false
7295
+ */
7296
+ lineThrough?: boolean;
7297
+ }
7298
+
7299
+ /**
7300
+ * Generate Tailwind class string for the Text component.
7301
+ *
7302
+ * Shared by both Vue and React implementations so the class
7303
+ * computation logic lives in a single place.
7304
+ */
7305
+ declare function getTextClasses(props: TextProps): string;
7306
+
7157
7307
  /**
7158
7308
  * Carousel component types and interfaces
7159
7309
  */
@@ -7299,10 +7449,6 @@ declare const carouselTrackFadeClasses = "relative";
7299
7449
  * Carousel slide base classes
7300
7450
  */
7301
7451
  declare const carouselSlideBaseClasses = "flex-shrink-0 w-full";
7302
- /**
7303
- * Carousel slide classes for fade effect
7304
- */
7305
- declare const carouselSlideFadeClasses = "absolute inset-0 transition-opacity ease-in-out";
7306
7452
  /**
7307
7453
  * Carousel dots container base classes
7308
7454
  */
@@ -8011,6 +8157,10 @@ interface ChartSeriesProps<T = ChartSeriesPoint> {
8011
8157
  */
8012
8158
  className?: string;
8013
8159
  }
8160
+ /**
8161
+ * Value label position for bar charts
8162
+ */
8163
+ type BarValueLabelPosition = 'top' | 'inside';
8014
8164
  interface BarChartDatum {
8015
8165
  x: ChartScaleValue;
8016
8166
  y: number;
@@ -8117,6 +8267,39 @@ interface BarChartProps extends BaseChartProps, ChartInteractionProps, ChartLege
8117
8267
  * @default 1
8118
8268
  */
8119
8269
  gridStrokeWidth?: number;
8270
+ /**
8271
+ * Show value labels above or inside bars
8272
+ * @default false
8273
+ */
8274
+ showValueLabels?: boolean;
8275
+ /**
8276
+ * Value label position
8277
+ * @default 'top'
8278
+ */
8279
+ valueLabelPosition?: BarValueLabelPosition;
8280
+ /**
8281
+ * Value label formatter
8282
+ */
8283
+ valueLabelFormatter?: (datum: BarChartDatum, index: number) => string;
8284
+ /**
8285
+ * Minimum bar height in px (ensures near-zero values remain visible)
8286
+ * @default 0
8287
+ */
8288
+ barMinHeight?: number;
8289
+ /**
8290
+ * Maximum bar width in px (prevents overly wide bars with few data points)
8291
+ */
8292
+ barMaxWidth?: number;
8293
+ /**
8294
+ * Enable linear gradient fill on bars (top-to-bottom, lighter to full)
8295
+ * @default false
8296
+ */
8297
+ gradient?: boolean;
8298
+ /**
8299
+ * Enable CSS transitions for smooth bar updates
8300
+ * @default false
8301
+ */
8302
+ animated?: boolean;
8120
8303
  /**
8121
8304
  * Tooltip formatter
8122
8305
  */
@@ -8139,8 +8322,8 @@ interface ScatterChartProps extends BaseChartProps, ChartInteractionProps, Chart
8139
8322
  */
8140
8323
  data: ScatterChartDatum[];
8141
8324
  /**
8142
- * Point size
8143
- * @default 4
8325
+ * Point size (radius)
8326
+ * @default 6
8144
8327
  */
8145
8328
  pointSize?: number;
8146
8329
  /**
@@ -8151,6 +8334,31 @@ interface ScatterChartProps extends BaseChartProps, ChartInteractionProps, Chart
8151
8334
  * Point opacity
8152
8335
  */
8153
8336
  pointOpacity?: number;
8337
+ /**
8338
+ * Point shape
8339
+ * @default 'circle'
8340
+ */
8341
+ pointStyle?: 'circle' | 'square' | 'triangle' | 'diamond';
8342
+ /**
8343
+ * Enable radial gradient fill for points
8344
+ * @default false
8345
+ */
8346
+ gradient?: boolean;
8347
+ /**
8348
+ * Enable entrance animation with stagger
8349
+ * @default false
8350
+ */
8351
+ animated?: boolean;
8352
+ /**
8353
+ * Point border (stroke) width
8354
+ * @default 0
8355
+ */
8356
+ pointBorderWidth?: number;
8357
+ /**
8358
+ * Point border (stroke) color
8359
+ * @default 'white'
8360
+ */
8361
+ pointBorderColor?: string;
8154
8362
  /**
8155
8363
  * Include zero in domain
8156
8364
  * @default false
@@ -8223,7 +8431,32 @@ interface PieChartProps extends BaseChartProps, ChartInteractionProps, ChartLege
8223
8431
  /**
8224
8432
  * Legend formatter
8225
8433
  */
8226
- legendFormatter?: (datum: PieChartDatum, index: number) => string;
8434
+ legendFormatter?: (datum: PieChartDatum, index: number) => string;
8435
+ /**
8436
+ * Border width between slices
8437
+ * @default 2
8438
+ */
8439
+ borderWidth?: number;
8440
+ /**
8441
+ * Border color between slices
8442
+ * @default '#ffffff'
8443
+ */
8444
+ borderColor?: string;
8445
+ /**
8446
+ * Distance slices translate outward on hover (ECharts emphasis style)
8447
+ * @default 8
8448
+ */
8449
+ hoverOffset?: number;
8450
+ /**
8451
+ * Label position: inside the slice or outside with leader lines
8452
+ * @default 'inside'
8453
+ */
8454
+ labelPosition?: 'inside' | 'outside';
8455
+ /**
8456
+ * Enable drop shadow on slices
8457
+ * @default false
8458
+ */
8459
+ shadow?: boolean;
8227
8460
  }
8228
8461
  interface DonutChartDatum extends PieChartDatum {
8229
8462
  }
@@ -8233,6 +8466,19 @@ interface DonutChartProps extends PieChartProps {
8233
8466
  * @default 0.6
8234
8467
  */
8235
8468
  innerRadiusRatio?: number;
8469
+ /**
8470
+ * Text shown as the main value in the donut center
8471
+ */
8472
+ centerValue?: string | number;
8473
+ /**
8474
+ * Descriptive label shown below centerValue in the donut center
8475
+ */
8476
+ centerLabel?: string;
8477
+ /**
8478
+ * Enable entrance animation (fade + scale)
8479
+ * @default false
8480
+ */
8481
+ animated?: boolean;
8236
8482
  }
8237
8483
  interface RadarChartDatum extends ChartSeriesPoint {
8238
8484
  value: number;
@@ -8284,6 +8530,14 @@ interface RadarChartSeries {
8284
8530
  * Point color
8285
8531
  */
8286
8532
  pointColor?: string;
8533
+ /**
8534
+ * Point border width (stroke around data points)
8535
+ */
8536
+ pointBorderWidth?: number;
8537
+ /**
8538
+ * Point border color
8539
+ */
8540
+ pointBorderColor?: string;
8287
8541
  /**
8288
8542
  * Additional CSS classes
8289
8543
  */
@@ -8330,6 +8584,21 @@ interface LineChartSeries {
8330
8584
  * Point color (defaults to line color)
8331
8585
  */
8332
8586
  pointColor?: string;
8587
+ /**
8588
+ * Hollow point style (stroke + white fill, ECharts emptyCircle)
8589
+ * @default false
8590
+ */
8591
+ pointHollow?: boolean;
8592
+ /**
8593
+ * Show gradient area fill under line
8594
+ * @default false
8595
+ */
8596
+ showArea?: boolean;
8597
+ /**
8598
+ * Area fill opacity
8599
+ * @default 0.15
8600
+ */
8601
+ areaOpacity?: number;
8333
8602
  /**
8334
8603
  * Additional CSS classes for this series
8335
8604
  */
@@ -8453,6 +8722,26 @@ interface LineChartProps extends BaseChartProps, ChartInteractionProps, ChartLeg
8453
8722
  * Custom colors for multi-series
8454
8723
  */
8455
8724
  colors?: string[];
8725
+ /**
8726
+ * Show gradient area fill under lines
8727
+ * @default false
8728
+ */
8729
+ showArea?: boolean;
8730
+ /**
8731
+ * Area fill opacity
8732
+ * @default 0.15
8733
+ */
8734
+ areaOpacity?: number;
8735
+ /**
8736
+ * Hollow point style (stroke + white fill, ECharts emptyCircle)
8737
+ * @default false
8738
+ */
8739
+ pointHollow?: boolean;
8740
+ /**
8741
+ * Enable line draw entrance animation
8742
+ * @default false
8743
+ */
8744
+ animated?: boolean;
8456
8745
  /**
8457
8746
  * Tooltip formatter
8458
8747
  */
@@ -8603,6 +8892,21 @@ interface AreaChartProps extends BaseChartProps, ChartInteractionProps, ChartLeg
8603
8892
  * Custom colors for multi-series
8604
8893
  */
8605
8894
  colors?: string[];
8895
+ /**
8896
+ * Enable linear gradient fill (top-to-bottom, ECharts style)
8897
+ * @default false
8898
+ */
8899
+ gradient?: boolean;
8900
+ /**
8901
+ * Hollow point style (stroke + white fill, ECharts emptyCircle)
8902
+ * @default false
8903
+ */
8904
+ pointHollow?: boolean;
8905
+ /**
8906
+ * Enable line draw entrance animation
8907
+ * @default false
8908
+ */
8909
+ animated?: boolean;
8606
8910
  /**
8607
8911
  * Tooltip formatter
8608
8912
  */
@@ -8755,6 +9059,44 @@ interface RadarChartProps extends BaseChartProps, ChartLegendProps, ChartTooltip
8755
9059
  * Point color
8756
9060
  */
8757
9061
  pointColor?: string;
9062
+ /**
9063
+ * Grid shape: polygon (default) or circle (ECharts style)
9064
+ * @default 'polygon'
9065
+ */
9066
+ gridShape?: 'polygon' | 'circle';
9067
+ /**
9068
+ * Show alternating split area fills between grid levels
9069
+ * @default false
9070
+ */
9071
+ showSplitArea?: boolean;
9072
+ /**
9073
+ * Split area fill opacity
9074
+ * @default 0.06
9075
+ */
9076
+ splitAreaOpacity?: number;
9077
+ /**
9078
+ * Split area colors (alternates between entries)
9079
+ */
9080
+ splitAreaColors?: string[];
9081
+ /**
9082
+ * Point border width (white ring around data points)
9083
+ * @default 2
9084
+ */
9085
+ pointBorderWidth?: number;
9086
+ /**
9087
+ * Point border color
9088
+ * @default '#fff'
9089
+ */
9090
+ pointBorderColor?: string;
9091
+ /**
9092
+ * Point size when hovered (enlargement effect)
9093
+ */
9094
+ pointHoverSize?: number;
9095
+ /**
9096
+ * Auto-align axis labels based on their angle position
9097
+ * @default true
9098
+ */
9099
+ labelAutoAlign?: boolean;
8758
9100
  }
8759
9101
 
8760
9102
  declare const chartCanvasBaseClasses = "block";
@@ -8821,6 +9163,39 @@ declare function createPieArcPath(options: {
8821
9163
  startAngle: number;
8822
9164
  endAngle: number;
8823
9165
  }): string;
9166
+ /**
9167
+ * Compute translate offset for a pie slice hover emphasis effect.
9168
+ * The slice moves outward along its bisector angle.
9169
+ */
9170
+ declare function computePieHoverOffset(startAngle: number, endAngle: number, offset: number): {
9171
+ dx: number;
9172
+ dy: number;
9173
+ };
9174
+ /**
9175
+ * Compute positions for an outside label with a leader line.
9176
+ * Returns anchor (on slice edge), elbow (turn point), label (text position), and textAnchor.
9177
+ */
9178
+ declare function computePieLabelLine(cx: number, cy: number, outerRadius: number, startAngle: number, endAngle: number, offset?: number): {
9179
+ anchor: {
9180
+ x: number;
9181
+ y: number;
9182
+ };
9183
+ elbow: {
9184
+ x: number;
9185
+ y: number;
9186
+ };
9187
+ label: {
9188
+ x: number;
9189
+ y: number;
9190
+ };
9191
+ textAnchor: 'start' | 'end';
9192
+ };
9193
+ /** Drop shadow filter value for emphasized pie slices */
9194
+ declare const PIE_EMPHASIS_SHADOW = "drop-shadow(0 4px 8px rgba(0,0,0,0.2))";
9195
+ declare const PIE_BASE_SHADOW = "drop-shadow(0 1px 2px rgba(0,0,0,0.06))";
9196
+ /** Enhanced donut-specific shadow – deeper & more diffuse for richer emphasis */
9197
+ declare const DONUT_EMPHASIS_SHADOW = "drop-shadow(0 8px 20px rgba(0,0,0,0.28)) drop-shadow(0 2px 6px rgba(0,0,0,0.12))";
9198
+ declare const DONUT_BASE_SHADOW = "drop-shadow(0 2px 8px rgba(0,0,0,0.10))";
8824
9199
  declare function getRadarAngles(count: number, startAngle?: number): number[];
8825
9200
  interface RadarPoint<T> {
8826
9201
  data: T;
@@ -8844,7 +9219,39 @@ declare function createPolygonPath(points: Array<{
8844
9219
  x: number;
8845
9220
  y: number;
8846
9221
  }>): string;
9222
+ /**
9223
+ * Compute text-anchor and dominant-baseline for a radar label based on its angle.
9224
+ * Mimics ECharts indicator name positioning for natural readability.
9225
+ */
9226
+ declare function getRadarLabelAlign(angle: number): {
9227
+ textAnchor: 'start' | 'middle' | 'end';
9228
+ dominantBaseline: 'auto' | 'middle' | 'hanging';
9229
+ };
9230
+ /**
9231
+ * Default split area colors (subtle alternating fills – ECharts style)
9232
+ */
9233
+ declare const RADAR_SPLIT_AREA_COLORS: string[];
8847
9234
 
9235
+ /**
9236
+ * Generate a unique gradient ID prefix for a LineChart instance.
9237
+ */
9238
+ declare function getLineGradientPrefix(): string;
9239
+ /**
9240
+ * Reset the line gradient counter (for testing only)
9241
+ */
9242
+ declare function resetLineGradientCounter(): void;
9243
+ /**
9244
+ * Generate a unique gradient ID prefix for an AreaChart instance.
9245
+ */
9246
+ declare function getAreaGradientPrefix(): string;
9247
+ /**
9248
+ * Reset the area gradient counter (for testing only)
9249
+ */
9250
+ declare function resetAreaGradientCounter(): void;
9251
+ /**
9252
+ * CSS transition classes for line chart point hover
9253
+ */
9254
+ declare const linePointTransitionClasses = "transition-all duration-200 ease-out";
8848
9255
  /**
8849
9256
  * Create a line path from points
8850
9257
  */
@@ -8870,6 +9277,70 @@ declare function stackSeriesData<T extends {
8870
9277
  y0: number;
8871
9278
  y1: number;
8872
9279
  }[][];
9280
+ /**
9281
+ * Generate a unique gradient ID prefix for a BarChart instance.
9282
+ * Each BarChart must have its own prefix to avoid gradient ID collisions.
9283
+ */
9284
+ declare function getBarGradientPrefix(): string;
9285
+ /**
9286
+ * Reset the gradient counter (for testing only)
9287
+ */
9288
+ declare function resetBarGradientCounter(): void;
9289
+ /**
9290
+ * Clamp bar width to a maximum value
9291
+ */
9292
+ declare function clampBarWidth(width: number, maxWidth?: number): number;
9293
+ /**
9294
+ * Ensure bar meets minimum height for near-zero values.
9295
+ * Returns adjusted y and height while keeping the bar anchored at the baseline.
9296
+ */
9297
+ declare function ensureBarMinHeight(barY: number, barHeight: number, baseline: number, minHeight: number): {
9298
+ y: number;
9299
+ height: number;
9300
+ };
9301
+ /**
9302
+ * Get the Y coordinate for a value label on a bar
9303
+ */
9304
+ declare function getBarValueLabelY(barY: number, barHeight: number, position: 'top' | 'inside', offset?: number): number;
9305
+ /**
9306
+ * CSS classes for value labels displayed on bars
9307
+ */
9308
+ declare const barValueLabelClasses = "fill-[color:var(--tiger-text,#374151)] text-[11px] font-medium pointer-events-none select-none";
9309
+ /**
9310
+ * CSS classes for value labels inside bars (needs contrasting color)
9311
+ */
9312
+ declare const barValueLabelInsideClasses = "fill-white text-[11px] font-medium pointer-events-none select-none";
9313
+ /**
9314
+ * CSS transition string for animated bars
9315
+ */
9316
+ declare const barAnimatedTransition = "transition: y 600ms cubic-bezier(.4,0,.2,1), height 600ms cubic-bezier(.4,0,.2,1), opacity 200ms ease-out, filter 200ms ease-out";
9317
+ /**
9318
+ * Generate a unique gradient ID prefix for a ScatterChart instance.
9319
+ */
9320
+ declare function getScatterGradientPrefix(): string;
9321
+ /**
9322
+ * Reset the scatter gradient counter (for testing only)
9323
+ */
9324
+ declare function resetScatterGradientCounter(): void;
9325
+ /** CSS transition for scatter point hover */
9326
+ declare const scatterPointTransitionClasses = "transition-all duration-200 ease-out";
9327
+ /** Drop shadow filter for hovered scatter points */
9328
+ declare function getScatterHoverShadow(color: string): string;
9329
+ /**
9330
+ * Generate SVG path for different point shapes centered at (0, 0).
9331
+ * Use with transform="translate(cx, cy)".
9332
+ */
9333
+ declare function getScatterPointPath(style: 'square' | 'triangle' | 'diamond', size: number): string;
9334
+ /**
9335
+ * Compute the hovered size for a scatter point.
9336
+ */
9337
+ declare function getScatterHoverSize(baseSize: number): number;
9338
+ /**
9339
+ * CSS animation keyframes and class for scatter entrance animation.
9340
+ * Inject once via <style> tag.
9341
+ */
9342
+ declare const SCATTER_ENTRANCE_KEYFRAMES = "@keyframes tiger-scatter-entrance{from{opacity:0;transform:scale(0)}60%{transform:scale(1.15)}to{opacity:1;transform:scale(1)}}";
9343
+ declare const SCATTER_ENTRANCE_CLASS = "tiger-scatter-entrance";
8873
9344
 
8874
9345
  /**
8875
9346
  * Chart interaction utilities
@@ -8977,198 +9448,73 @@ interface ChartAnimationConfig {
8977
9448
  /**
8978
9449
  * Stagger delay between elements in ms
8979
9450
  * @default 50
8980
- */
8981
- stagger?: number;
8982
- }
8983
- /**
8984
- * Get CSS transition style for chart animation
8985
- */
8986
- declare function getChartAnimationStyle(config: ChartAnimationConfig, index?: number): string;
8987
- /**
8988
- * Get SVG transform for entrance animation
8989
- */
8990
- declare function getChartEntranceTransform(type: 'scale' | 'slide-up' | 'slide-left' | 'fade', progress: number, options?: {
8991
- originX?: number;
8992
- originY?: number;
8993
- }): string;
8994
-
8995
- /**
8996
- * Floating UI wrapper utilities for positioning popups, tooltips, and dropdowns.
8997
- * Provides edge-aware positioning with automatic collision detection and flipping.
8998
- */
8999
-
9000
- /**
9001
- * Placement options supported by the floating system.
9002
- * These map directly to Floating UI placements.
9003
- */
9004
- type FloatingPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
9005
- /**
9006
- * Options for computing floating element position.
9007
- */
9008
- interface FloatingOptions {
9009
- /**
9010
- * Preferred placement of the floating element relative to the reference.
9011
- * @default 'bottom'
9012
- */
9013
- placement?: FloatingPlacement;
9014
- /**
9015
- * Distance (in pixels) between reference and floating element.
9016
- * @default 8
9017
- */
9018
- offset?: number;
9019
- /**
9020
- * Whether to flip placement when there's not enough space.
9021
- * @default true
9022
- */
9023
- flip?: boolean;
9024
- /**
9025
- * Whether to shift the floating element to stay within viewport.
9026
- * @default true
9027
- */
9028
- shift?: boolean;
9029
- /**
9030
- * Padding from viewport edges when shifting.
9031
- * @default 8
9032
- */
9033
- shiftPadding?: number;
9034
- /**
9035
- * Arrow element for positioning the arrow indicator.
9036
- */
9037
- arrowElement?: HTMLElement | null;
9038
- /**
9039
- * Arrow padding from edges.
9040
- * @default 8
9041
- */
9042
- arrowPadding?: number;
9043
- }
9044
- /**
9045
- * Result of computing floating position.
9046
- */
9047
- interface FloatingResult {
9048
- /**
9049
- * X coordinate to position the floating element.
9050
- */
9051
- x: number;
9052
- /**
9053
- * Y coordinate to position the floating element.
9054
- */
9055
- y: number;
9056
- /**
9057
- * Final placement after auto-positioning (may differ from requested).
9058
- */
9059
- placement: FloatingPlacement;
9060
- /**
9061
- * Arrow position data (if arrow element was provided).
9062
- */
9063
- arrow?: {
9064
- x?: number;
9065
- y?: number;
9066
- };
9067
- /**
9068
- * Middleware data from Floating UI.
9069
- */
9070
- middlewareData: MiddlewareData;
9071
- }
9072
- /**
9073
- * Compute the position of a floating element relative to a reference element.
9074
- * Uses Floating UI for edge-aware positioning with automatic collision detection.
9075
- *
9076
- * @param reference - The reference element (trigger)
9077
- * @param floating - The floating element (popup/tooltip)
9078
- * @param options - Positioning options
9079
- * @returns Promise resolving to position data
9080
- *
9081
- * @example
9082
- * ```ts
9083
- * const { x, y, placement } = await computeFloatingPosition(
9084
- * triggerEl,
9085
- * tooltipEl,
9086
- * { placement: 'top', offset: 8 }
9087
- * )
9088
- * tooltipEl.style.left = `${x}px`
9089
- * tooltipEl.style.top = `${y}px`
9090
- * ```
9091
- */
9092
- declare function computeFloatingPosition(reference: HTMLElement, floating: HTMLElement, options?: FloatingOptions): Promise<FloatingResult>;
9093
- /**
9094
- * Cleanup function type returned by autoUpdateFloating.
9095
- */
9096
- type FloatingCleanup = () => void;
9097
- /**
9098
- * Set up automatic position updates for a floating element.
9099
- * Updates position when reference/floating elements resize, scroll, or when
9100
- * the reference moves in the viewport.
9101
- *
9102
- * @param reference - The reference element (trigger)
9103
- * @param floating - The floating element (popup/tooltip)
9104
- * @param update - Callback to run when position should be updated
9105
- * @returns Cleanup function to stop auto-updates
9106
- *
9107
- * @example
9108
- * ```ts
9109
- * const cleanup = autoUpdateFloating(triggerEl, tooltipEl, async () => {
9110
- * const { x, y } = await computeFloatingPosition(triggerEl, tooltipEl)
9111
- * tooltipEl.style.left = `${x}px`
9112
- * tooltipEl.style.top = `${y}px`
9113
- * })
9114
- *
9115
- * // Later, when unmounting:
9116
- * cleanup()
9117
- * ```
9118
- */
9119
- declare function autoUpdateFloating(reference: HTMLElement, floating: HTMLElement, update: () => void): FloatingCleanup;
9451
+ */
9452
+ stagger?: number;
9453
+ }
9120
9454
  /**
9121
- * Get CSS transform origin based on placement.
9122
- * Useful for scaling/fading animations that should originate from the reference.
9123
- *
9124
- * @param placement - Current placement of the floating element
9125
- * @returns CSS transform-origin value
9126
- *
9127
- * @example
9128
- * ```ts
9129
- * tooltipEl.style.transformOrigin = getTransformOrigin('top')
9130
- * // Returns 'bottom center'
9131
- * ```
9455
+ * Get CSS transition style for chart animation
9132
9456
  */
9133
- declare function getTransformOrigin(placement: FloatingPlacement): string;
9457
+ declare function getChartAnimationStyle(config: ChartAnimationConfig, index?: number): string;
9134
9458
  /**
9135
- * Get the side of the reference element where the floating element is placed.
9136
- *
9137
- * @param placement - Current placement
9138
- * @returns The side: 'top', 'bottom', 'left', or 'right'
9459
+ * Get SVG transform for entrance animation
9139
9460
  */
9140
- declare function getPlacementSide(placement: FloatingPlacement): 'top' | 'bottom' | 'left' | 'right';
9461
+ declare function getChartEntranceTransform(type: 'scale' | 'slide-up' | 'slide-left' | 'fade', progress: number, options?: {
9462
+ originX?: number;
9463
+ originY?: number;
9464
+ }): string;
9465
+
9141
9466
  /**
9142
- * Get arrow positioning styles based on placement and arrow data.
9143
- *
9144
- * @param placement - Current placement of the floating element
9145
- * @param arrowData - Arrow position data from computeFloatingPosition
9146
- * @returns CSS styles object for the arrow element
9147
- *
9148
- * @example
9149
- * ```ts
9150
- * const arrowStyles = getArrowStyles('top', result.arrow)
9151
- * Object.assign(arrowEl.style, arrowStyles)
9152
- * ```
9467
+ * Shared chart helpers palette, legend, tooltip, series normalisation.
9153
9468
  */
9154
- declare function getArrowStyles(placement: FloatingPlacement, arrowData?: {
9155
- x?: number;
9469
+
9470
+ /** Resolve palette: `colors` → `fallbackColor` → DEFAULT_CHART_COLORS. */
9471
+ declare function resolveChartPalette(colors: string[] | undefined, fallbackColor?: string): string[];
9472
+ interface BuildLegendItemsOptions<T> {
9473
+ data: T[];
9474
+ palette: string[];
9475
+ activeIndex: number | null;
9476
+ getLabel: (datum: T, index: number) => string;
9477
+ getColor?: (datum: T, index: number) => string;
9478
+ }
9479
+ /** Build `ChartLegendItem[]` from data/series array. */
9480
+ declare function buildChartLegendItems<T>(options: BuildLegendItemsOptions<T>): ChartLegendItem[];
9481
+ /** Resolve tooltip content for single-series charts (Bar, Scatter, Pie). */
9482
+ declare function resolveChartTooltipContent<T>(hoveredIndex: number | null, data: T[], formatter: ((datum: T, index: number) => string) | undefined, defaultFormatter: (datum: T, index: number) => string): string;
9483
+ /** Resolve tooltip content for multi-series charts (Line, Area, Radar). */
9484
+ declare function resolveMultiSeriesTooltipContent<TDatum, TSeries extends {
9485
+ data: TDatum[];
9486
+ }>(hoveredPoint: {
9487
+ seriesIndex: number;
9488
+ pointIndex: number;
9489
+ } | null, series: TSeries[], formatter: ((datum: TDatum, seriesIndex: number, pointIndex: number, series?: TSeries) => string) | undefined, defaultFormatter: (datum: TDatum, seriesIndex: number, pointIndex: number, series?: TSeries) => string): string;
9490
+ /**
9491
+ * Normalise `series` / `data` props for multi-series charts.
9492
+ * Returns `series` if non-empty, else wraps `data` into a single-series array.
9493
+ */
9494
+ declare function resolveSeriesData<TDatum, TSeries extends {
9495
+ data: TDatum[];
9496
+ }>(series: TSeries[] | undefined, data: TDatum[] | undefined, defaultSeries?: Partial<Omit<TSeries, 'data'>>): TSeries[];
9497
+ /** Default tooltip for single-datum x/y charts (Bar, Scatter). */
9498
+ declare function defaultXYTooltipFormatter(datum: {
9499
+ x?: ChartScaleValue;
9156
9500
  y?: number;
9157
- }): Record<string, string>;
9158
- /**
9159
- * Apply floating position to an element's style.
9160
- * Convenience function that sets left/top CSS properties.
9161
- *
9162
- * @param element - The floating element to position
9163
- * @param result - Position result from computeFloatingPosition
9164
- *
9165
- * @example
9166
- * ```ts
9167
- * const result = await computeFloatingPosition(trigger, tooltip)
9168
- * applyFloatingStyles(tooltip, result)
9169
- * ```
9170
- */
9171
- declare function applyFloatingStyles(element: HTMLElement, result: FloatingResult): void;
9501
+ label?: string;
9502
+ }, index: number): string;
9503
+ /** Default tooltip for multi-series x/y charts (Line, Area). */
9504
+ declare function defaultSeriesXYTooltipFormatter<TSeries extends {
9505
+ name?: string;
9506
+ }>(datum: {
9507
+ x?: ChartScaleValue;
9508
+ y?: number;
9509
+ label?: string;
9510
+ }, seriesIndex: number, _pointIndex: number, series?: TSeries): string;
9511
+ /** Default tooltip for Radar chart. */
9512
+ declare function defaultRadarTooltipFormatter<TSeries extends {
9513
+ name?: string;
9514
+ }>(datum: {
9515
+ value: number;
9516
+ label?: string;
9517
+ }, seriesIndex: number, _pointIndex: number, series?: TSeries): string;
9172
9518
 
9173
9519
  /**
9174
9520
  * Tag component types and interfaces
@@ -10159,6 +10505,10 @@ interface WizardStep {
10159
10505
  * Step content (framework-specific)
10160
10506
  */
10161
10507
  content?: unknown;
10508
+ /**
10509
+ * Field names for step-scoped validation
10510
+ */
10511
+ fields?: string[];
10162
10512
  /**
10163
10513
  * Custom data
10164
10514
  */
@@ -10231,6 +10581,10 @@ interface FormWizardProps {
10231
10581
  * Finish button text
10232
10582
  */
10233
10583
  finishText?: string;
10584
+ /**
10585
+ * Locale overrides for FormWizard UI text
10586
+ */
10587
+ locale?: Partial<TigerLocale>;
10234
10588
  /**
10235
10589
  * Validation hook before moving to next step
10236
10590
  */
@@ -10590,19 +10944,34 @@ interface FooterProps {
10590
10944
  }
10591
10945
 
10592
10946
  /**
10593
- * Popover component types and interfaces
10947
+ * Dropdown component types and interfaces
10594
10948
  */
10595
10949
 
10596
10950
  /**
10597
- * Popover trigger type
10951
+ * Dropdown trigger mode - determines how the dropdown is opened
10598
10952
  */
10599
- type PopoverTrigger = 'click' | 'hover' | 'focus' | 'manual';
10953
+ type DropdownTrigger = 'click' | 'hover';
10600
10954
  /**
10601
- * Base popover props interface
10955
+ * @deprecated Use `FloatingPlacement` from floating utils instead.
10956
+ * Kept for backward compatibility with popover/tooltip/popconfirm types.
10602
10957
  */
10603
- interface PopoverProps {
10958
+ type DropdownPlacement = FloatingPlacement;
10959
+ /**
10960
+ * Base dropdown props interface
10961
+ */
10962
+ interface DropdownProps {
10963
+ /**
10964
+ * Trigger mode - click or hover
10965
+ * @default 'hover'
10966
+ */
10967
+ trigger?: DropdownTrigger;
10968
+ /**
10969
+ * Whether the dropdown is disabled
10970
+ * @default false
10971
+ */
10972
+ disabled?: boolean;
10604
10973
  /**
10605
- * Whether the popover is visible (controlled mode)
10974
+ * Whether the dropdown is visible (controlled mode)
10606
10975
  */
10607
10976
  visible?: boolean;
10608
10977
  /**
@@ -10611,164 +10980,167 @@ interface PopoverProps {
10611
10980
  */
10612
10981
  defaultVisible?: boolean;
10613
10982
  /**
10614
- * Popover title text
10983
+ * Whether to close dropdown on menu item click
10984
+ * @default true
10985
+ */
10986
+ closeOnClick?: boolean;
10987
+ /**
10988
+ * Whether to show the dropdown arrow/chevron indicator
10989
+ * @default true
10615
10990
  */
10616
- title?: string;
10991
+ showArrow?: boolean;
10617
10992
  /**
10618
- * Popover content text (can be overridden by content slot/prop)
10993
+ * Additional CSS classes
10619
10994
  */
10620
- content?: string;
10995
+ className?: string;
10621
10996
  /**
10622
- * Trigger type for showing/hiding popover
10623
- * @default 'click'
10997
+ * Custom styles
10624
10998
  */
10625
- trigger?: PopoverTrigger;
10999
+ style?: Record<string, unknown>;
11000
+ }
11001
+ /**
11002
+ * Dropdown menu props interface
11003
+ */
11004
+ interface DropdownMenuProps {
10626
11005
  /**
10627
- * Popover placement relative to trigger
10628
- * @default 'top'
11006
+ * Additional CSS classes
10629
11007
  */
10630
- placement?: DropdownPlacement;
11008
+ className?: string;
10631
11009
  /**
10632
- * Whether the popover is disabled
11010
+ * Custom styles
11011
+ */
11012
+ style?: Record<string, unknown>;
11013
+ }
11014
+ /**
11015
+ * Dropdown item props interface
11016
+ */
11017
+ interface DropdownItemProps {
11018
+ /**
11019
+ * Unique key for the dropdown item
11020
+ */
11021
+ key?: string | number;
11022
+ /**
11023
+ * Whether the item is disabled
10633
11024
  * @default false
10634
11025
  */
10635
11026
  disabled?: boolean;
10636
11027
  /**
10637
- * Popover width (CSS value)
10638
- * @default 'auto'
11028
+ * Whether the item is divided from previous item
11029
+ * @default false
10639
11030
  */
10640
- width?: string | number;
11031
+ divided?: boolean;
10641
11032
  /**
10642
- * Additional CSS classes
11033
+ * Icon for the dropdown item
10643
11034
  */
10644
- className?: string;
11035
+ icon?: unknown;
10645
11036
  /**
10646
- * Custom styles
11037
+ * Additional CSS classes
10647
11038
  */
10648
- style?: Record<string, string | number>;
11039
+ className?: string;
10649
11040
  }
10650
11041
 
10651
11042
  /**
10652
- * Tooltip component types and interfaces
11043
+ * Popover component types and interfaces
10653
11044
  */
10654
11045
 
10655
11046
  /**
10656
- * Tooltip trigger type
11047
+ * Popover trigger type
10657
11048
  */
10658
- type TooltipTrigger = 'hover' | 'focus' | 'click' | 'manual';
11049
+ type PopoverTrigger = 'click' | 'hover' | 'focus' | 'manual';
10659
11050
  /**
10660
- * Base tooltip props interface
11051
+ * Base popover props interface
10661
11052
  */
10662
- interface TooltipProps {
10663
- /**
10664
- * Whether the tooltip is visible (controlled mode)
10665
- */
11053
+ interface PopoverProps {
11054
+ /** Whether the popover is visible (controlled mode) */
10666
11055
  visible?: boolean;
10667
11056
  /**
10668
11057
  * Default visibility (uncontrolled mode)
10669
11058
  * @default false
10670
11059
  */
10671
11060
  defaultVisible?: boolean;
10672
- /**
10673
- * Tooltip content text
10674
- */
11061
+ /** Popover title text */
11062
+ title?: string;
11063
+ /** Popover content text (can be overridden by content slot/prop) */
10675
11064
  content?: string;
10676
11065
  /**
10677
- * Trigger type for showing/hiding tooltip
10678
- * @default 'hover'
11066
+ * Trigger type for showing/hiding popover
11067
+ * @default 'click'
10679
11068
  */
10680
- trigger?: TooltipTrigger;
11069
+ trigger?: PopoverTrigger;
10681
11070
  /**
10682
- * Tooltip placement relative to trigger
11071
+ * Popover placement relative to trigger
10683
11072
  * @default 'top'
10684
11073
  */
10685
- placement?: DropdownPlacement;
11074
+ placement?: FloatingPlacement;
10686
11075
  /**
10687
- * Whether the tooltip is disabled
11076
+ * Whether the popover is disabled
10688
11077
  * @default false
10689
11078
  */
10690
11079
  disabled?: boolean;
10691
11080
  /**
10692
- * Additional CSS classes
11081
+ * Popover width (pixel number or Tailwind class)
10693
11082
  */
10694
- className?: string;
11083
+ width?: string | number;
10695
11084
  /**
10696
- * Custom styles
11085
+ * Offset distance from trigger (in pixels)
11086
+ * @default 8
10697
11087
  */
11088
+ offset?: number;
11089
+ /** Additional CSS classes */
11090
+ className?: string;
11091
+ /** Custom styles */
10698
11092
  style?: Record<string, string | number>;
10699
11093
  }
10700
11094
 
10701
11095
  /**
10702
- * Text component types and interfaces
10703
- */
10704
- /**
10705
- * Text tag types - semantic HTML elements for text
10706
- */
10707
- type TextTag = 'p' | 'span' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'label' | 'strong' | 'em' | 'small';
10708
- /**
10709
- * Text size types
10710
- */
10711
- type TextSize = 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl';
10712
- /**
10713
- * Text weight types
10714
- */
10715
- type TextWeight = 'thin' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black';
10716
- /**
10717
- * Text alignment types
11096
+ * Tooltip component types and interfaces
10718
11097
  */
10719
- type TextAlign = 'left' | 'center' | 'right' | 'justify';
11098
+
10720
11099
  /**
10721
- * Text color types
11100
+ * Tooltip trigger type
10722
11101
  */
10723
- type TextColor = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'muted';
11102
+ type TooltipTrigger = 'hover' | 'focus' | 'click' | 'manual';
10724
11103
  /**
10725
- * Base text props interface
11104
+ * Base tooltip props interface
10726
11105
  */
10727
- interface TextProps {
10728
- /**
10729
- * HTML tag to render
10730
- * @default 'p'
10731
- */
10732
- tag?: TextTag;
11106
+ interface TooltipProps {
10733
11107
  /**
10734
- * Text size
10735
- * @default 'base'
11108
+ * Whether the tooltip is visible (controlled mode)
10736
11109
  */
10737
- size?: TextSize;
11110
+ visible?: boolean;
10738
11111
  /**
10739
- * Text weight
10740
- * @default 'normal'
11112
+ * Default visibility (uncontrolled mode)
11113
+ * @default false
10741
11114
  */
10742
- weight?: TextWeight;
11115
+ defaultVisible?: boolean;
10743
11116
  /**
10744
- * Text alignment
11117
+ * Tooltip content text
10745
11118
  */
10746
- align?: TextAlign;
11119
+ content?: string;
10747
11120
  /**
10748
- * Text color
10749
- * @default 'default'
11121
+ * Trigger type for showing/hiding tooltip
11122
+ * @default 'hover'
10750
11123
  */
10751
- color?: TextColor;
11124
+ trigger?: TooltipTrigger;
10752
11125
  /**
10753
- * Whether to truncate text with ellipsis
10754
- * @default false
11126
+ * Tooltip placement relative to trigger
11127
+ * @default 'top'
10755
11128
  */
10756
- truncate?: boolean;
11129
+ placement?: FloatingPlacement;
10757
11130
  /**
10758
- * Whether text should be italic
11131
+ * Whether the tooltip is disabled
10759
11132
  * @default false
10760
11133
  */
10761
- italic?: boolean;
11134
+ disabled?: boolean;
10762
11135
  /**
10763
- * Whether text should have underline
10764
- * @default false
11136
+ * Offset distance from trigger (in pixels)
11137
+ * @default 8
10765
11138
  */
10766
- underline?: boolean;
11139
+ offset?: number;
10767
11140
  /**
10768
- * Whether text should have line-through
10769
- * @default false
11141
+ * Additional CSS classes
10770
11142
  */
10771
- lineThrough?: boolean;
11143
+ className?: string;
10772
11144
  }
10773
11145
 
10774
11146
  interface CodeProps {
@@ -11029,4 +11401,4 @@ declare const tigercatPlugin: {
11029
11401
  */
11030
11402
  declare const version = "0.2.0";
11031
11403
 
11032
- export { ANIMATION_DURATION_FAST_MS, ANIMATION_DURATION_MS, ANIMATION_DURATION_SLOW_MS, type ActivityAction, type ActivityFeedProps, type ActivityGroup, type ActivityItem, type ActivityStatusTag, type ActivityUser, type AlertColorScheme, type AlertProps, type AlertSize, type AlertThemeColors, type AlertType, type Align, type AnchorChangeInfo, type AnchorClickInfo, type AnchorDirection, type AnchorLinkProps, type AnchorProps, type AreaChartDatum, type AreaChartProps, type AreaChartSeries, type AutoResizeTextareaOptions, type AvatarProps, type AvatarShape, type AvatarSize, type BackTopProps, type BadgeColorScheme, type BadgePosition, type BadgeProps, type BadgeSize, type BadgeThemeColors, type BadgeType, type BadgeVariant, type BandScaleOptions, type BarChartDatum, type BarChartProps, type BaseChartProps, type BeforeUploadHandler, type BreadcrumbItemProps, type BreadcrumbProps, type BreadcrumbSeparator, type Breakpoint, type ButtonColorScheme, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIconPath, type CardProps, type CardSize, type CardVariant, type CarouselBeforeChangeInfo, type CarouselChangeInfo, type CarouselDotPosition, type CarouselEffect, type CarouselMethods, type CarouselProps, type ChartAnimationConfig, type ChartAxisOrientation, type ChartAxisProps, type ChartAxisTick, type ChartCanvasProps, type ChartCurveType, type ChartGridLine, type ChartGridLineStyle, type ChartGridProps, type ChartInteractionHandlers, type ChartInteractionOptions, type ChartInteractionProps, type ChartInteractionState, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, type ChartPadding, type ChartScale, type ChartScaleType, type ChartScaleValue, type ChartSeriesPoint, type ChartSeriesProps, type ChartSeriesType, type ChartTooltipProps, type ChartWithAxesProps, type ChatMessage, type ChatMessageDirection, type ChatMessageStatus, type ChatMessageStatusInfo, type ChatUser, type ChatWindowProps, type CheckboxGroupProps, type CheckboxGroupValue, type CheckboxProps, type CheckboxSize, type CheckboxValue, ChevronLeftIconPath, ChevronRightIconPath, type ClassValue, ClockIconPath, CloseIconPath, type CodeProps, type ColProps, type ColSpan, type CollapsePanelProps, type CollapseProps, type ColumnAlign, type ColumnFilter, type CommentAction, type CommentNode, type CommentTag, type CommentThreadProps, type CommentUser, type ContainerMaxWidth, type ContainerProps, type ContentProps, type CreateAriaIdOptions, DEFAULT_CHART_COLORS, DEFAULT_PAGINATION_LABELS, DURATION_CLASS, DURATION_FAST_CLASS, DURATION_SLOW_CLASS, type DataTableWithToolbarProps, type DateFormat, type DatePickerInputDate, type DatePickerLabels, type DatePickerModelValue, type DatePickerProps, type DatePickerRangeModelValue, type DatePickerRangeValue, type DatePickerSingleModelValue, type DatePickerSingleValue, type DatePickerSize, type DescriptionsItem, type DescriptionsLayout, type DescriptionsProps, type DescriptionsSize, type DividerLineStyle, type DividerOrientation, type DividerProps, type DividerSpacing, type DonutChartDatum, type DonutChartProps, type DrawerPlacement, type DrawerProps, type DrawerSize, type DropdownItemProps, type DropdownMenuProps, type DropdownPlacement, type DropdownProps, type DropdownTrigger, EASING_DEFAULT, EASING_ENTER, EASING_LEAVE, type ElementLike, type ExpandIconPosition, type FilterOption, type FilterType, type FloatingCleanup, type FloatingOptions, type FloatingPlacement, type FloatingResult, type FocusElementOptions, type FocusTrapNavigation, type FooterProps, type FormError, type FormItemClassOptions, type FormItemLabelClassOptions, type FormItemProps, type FormLabelAlign, type FormLabelPosition, type FormProps, type FormRule, type FormRuleTrigger, type FormRuleType, type FormRules, type FormSize, type FormValidationResult, type FormValues, type FormWizardProps, type FormWizardValidateResult, type FormWizardValidator, type GetContainerClassesOptions, type GetInputClassesOptions, type GetRadioDotClassesOptions, type GetRadioGroupClassesOptions, type GetRadioLabelClassesOptions, type GetRadioVisualClassesOptions, type GutterSize, type HeaderProps, type IconProps, type IconSize, type InputProps, type InputSize, type InputStatus, type InputType, type IsEventOutsideOptions, type Justify, type KeyLikeEvent, type LayoutProps, type LineChartDatum, type LineChartProps, type LineChartSeries, type LinkColorScheme, type LinkProps, type LinkSize, type LinkThemeColors, type LinkVariant, type ListBorderStyle, type ListItem, type ListItemLayout, type ListPaginationConfig, type ListProps, type ListSize, type LoadingAnimationIndex, type LoadingColor, type LoadingProps, type LoadingSize, type LoadingVariant, type MenuItem, type MenuItemGroupProps, type MenuItemProps, type MenuKey, type MenuMode, type MenuProps, type MenuTheme, type MessageColorScheme, type MessageConfig, type MessageInstance, type MessageOptions, type MessagePosition, type MessageProps, type MessageType, type ModalProps, type ModalSize, type NotificationCenterProps, type NotificationColorScheme, type NotificationConfig, type NotificationGroup, type NotificationInstance, type NotificationItem, type NotificationOptions, type NotificationPosition, type NotificationProps, type NotificationReadFilter, type NotificationType, type PageChangeInfo, type PageSizeChangeInfo, type PaginationAlign, type PaginationConfig, type PaginationPageSizeOption, type PaginationPageSizeOptionItem, type PaginationProps, type PaginationSize, type PieArcDatum, type PieChartDatum, type PieChartProps, type PointScaleOptions, type PopconfirmIconType, type PopconfirmProps, type PopoverProps, type PopoverTrigger, type PrepareUploadFilesOptions, type PrepareUploadFilesResult, type ProgressColorScheme, type ProgressProps, type ProgressSize, type ProgressStatus, type ProgressThemeColors, type ProgressType, type ProgressVariant, type RadarChartDatum, type RadarChartProps, type RadarChartSeries, type RadarPoint, type RadioColorScheme, type RadioGroupProps, type RadioProps, type RadioSize, type RowProps, type RowSelectionConfig, SHAKE_CLASS, SPACE_BASE_CLASS, SVG_ANIMATION_CLASSES, SVG_ANIMATION_VARS, SVG_DEFAULT_FILL, SVG_DEFAULT_STROKE, SVG_DEFAULT_VIEWBOX_20, SVG_DEFAULT_VIEWBOX_24, SVG_DEFAULT_XMLNS, SVG_PATH_ANIMATION_CSS, type ScatterChartDatum, type ScatterChartProps, type SelectModelValue, type SelectOption, type SelectOptionGroup, type SelectOptions, type SelectProps, type SelectSize, type SelectValue, type SelectValues, type SidebarProps, type SkeletonAnimation, type SkeletonProps, type SkeletonShape, type SkeletonVariant, type SliderProps, type SliderSize, type SortDirection, type SortState, type SpaceAlign, type SpaceDirection, type SpaceProps, type SpaceSize, type StatusIconType, type StepItem, type StepSize, type StepStatus, type StepsDirection, type StepsProps, type StyleAtom, type StyleObject, type StyleValue, type SubMenuProps, type SwitchProps, type SwitchSize, THEME_CSS_VARS, TRANSITION_BASE, TRANSITION_OPACITY, TRANSITION_TRANSFORM, type TabChangeInfo, type TabEditInfo, type TabPaneProps, type TabPosition, type TabSize, type TabType, type TableColumn, type TableProps, type TableSize, type TableToolbarAction, type TableToolbarFilter, type TableToolbarFilterValue, type TableToolbarProps, type TabsProps, type TagColorScheme, type TagProps, type TagSize, type TagThemeColors, type TagVariant, type TextAlign, type TextColor, type TextProps, type TextSize, type TextTag, type TextWeight, type TextareaProps, type TextareaSize, type ThemeColors, type TigerLocale, type TigerLocaleCommon, type TigerLocaleDrawer, type TigerLocaleModal, type TigerLocalePagination, type TigerLocaleUpload, type TimeFormat, TimePickerCloseIconPath, type TimePickerLabels, type TimePickerModelValue, type TimePickerOptionUnit, type TimePickerProps, type TimePickerRangeValue, type TimePickerSingleValue, type TimePickerSize, type TimelineItem, type TimelineItemPosition, type TimelineMode, type TimelineProps, type TooltipProps, type TooltipTrigger, type TreeCheckStrategy, type TreeCheckedState, type TreeExpandedState, type TreeFilterFn, type TreeLoadDataFn, type TreeNode, type TreeProps, type TreeSelectionMode, type UploadFile, type UploadFileStatus, type UploadLabelOverrides, type UploadLabels, type UploadListType, type UploadProps, type UploadRejectReason, type UploadRejectedFile, type UploadRequestOptions, type UploadStatusIconSize, type VisibleTreeItem, type WizardStep, ZH_CN_PAGINATION_LABELS, activeOpacityClasses, activePressClasses, alertBaseClasses, alertCloseButtonBaseClasses, alertCloseIconPath, alertContentClasses, alertDescriptionSizeClasses, alertErrorIconPath, alertIconContainerClasses, alertIconSizeClasses, alertInfoIconPath, alertSizeClasses, alertSuccessIconPath, alertTitleSizeClasses, alertWarningIconPath, anchorAffixClasses, anchorBaseClasses, anchorInkActiveHorizontalClasses, anchorInkActiveVerticalClasses, anchorInkContainerHorizontalClasses, anchorInkContainerVerticalClasses, anchorLinkActiveClasses, anchorLinkBaseClasses, anchorLinkListHorizontalClasses, anchorLinkListVerticalClasses, animationDelayClasses, animationDelayStyles, applyFloatingStyles, autoResizeTextarea, autoUpdateFloating, avatarBaseClasses, avatarDefaultBgColor, avatarDefaultTextColor, avatarImageClasses, avatarShapeClasses, avatarSizeClasses, backTopBaseClasses, backTopButtonClasses, backTopContainerClasses, backTopHiddenClasses, backTopIconPath, backTopVisibleClasses, badgeBaseClasses, badgePositionClasses, badgeSizeClasses, badgeTypeClasses, badgeWrapperClasses, barsVariantConfig, breadcrumbContainerClasses, breadcrumbCurrentClasses, breadcrumbItemBaseClasses, breadcrumbLinkClasses, breadcrumbSeparatorBaseClasses, buildActivityGroups, buildCommentTree, buildNotificationGroups, buttonBaseClasses, buttonDisabledClasses, buttonSizeClasses, calculateCheckedState, calculateCirclePath, calculatePagination, calculateStepStatus, calendarSolidIcon20PathD, captureActiveElement, cardActionsClasses, cardBaseClasses, cardBodyClasses, cardCoverClasses, cardCoverWrapperClasses, cardFooterClasses, cardHeaderClasses, cardHoverClasses, cardSizeClasses, cardVariantClasses, carouselArrowBaseClasses, carouselArrowDisabledClasses, carouselBaseClasses, carouselDotActiveClasses, carouselDotClasses, carouselDotsBaseClasses, carouselDotsPositionClasses, carouselNextArrowClasses, carouselNextArrowPath, carouselPrevArrowClasses, carouselPrevArrowPath, carouselSlideBaseClasses, carouselSlideFadeClasses, carouselTrackFadeClasses, carouselTrackScrollClasses, chartAxisLabelClasses, chartAxisLineClasses, chartAxisTickLineClasses, chartAxisTickTextClasses, chartCanvasBaseClasses, chartGridLineClasses, chartInteractiveClasses, checkSolidIcon20PathD, checkboxLabelSizeClasses, checkboxSizeClasses, chevronDownSolidIcon20PathD, chevronLeftSolidIcon20PathD, chevronRightSolidIcon20PathD, clampPercentage, clampSlideIndex, classNames, clearFieldErrors, clipCommentTreeDepth, clockSolidIcon20PathD, closeIconPathD, closeIconPathStrokeLinecap, closeIconPathStrokeLinejoin, closeIconPathStrokeWidth, closeIconViewBox, closeSolidIcon20PathD, codeBlockContainerClasses, codeBlockCopyButtonBaseClasses, codeBlockCopyButtonCopiedClasses, codeBlockPreClasses, coerceClassValue, coerceStyleValue, collapseBaseClasses, collapseBorderlessClasses, collapseExtraClasses, collapseGhostClasses, collapseHeaderTextClasses, collapseIconBaseClasses, collapseIconExpandedClasses, collapseIconPositionClasses, collapsePanelBaseClasses, collapsePanelContentBaseClasses, collapsePanelContentWrapperClasses, collapsePanelHeaderActiveClasses, collapsePanelHeaderBaseClasses, collapsePanelHeaderDisabledClasses, collapseRightArrowIcon, computeFloatingPosition, containerBaseClasses, containerCenteredClasses, containerMaxWidthClasses, containerPaddingClasses, copyTextToClipboard, createAreaPath, createAriaId, createBandScale, createChartInteractionHandlers, createLinePath, createLinearScale, createPieArcPath, createPointScale, createPolygonPath, datePickerBaseClasses, datePickerCalendarClasses, datePickerCalendarGridClasses, datePickerCalendarHeaderClasses, datePickerClearButtonClasses, datePickerDayNameClasses, datePickerFooterButtonClasses, datePickerFooterClasses, datePickerInputWrapperClasses, datePickerMonthYearClasses, datePickerNavButtonClasses, defaultAlertThemeColors, defaultBadgeThemeColors, defaultChatMessageStatusInfo, defaultExpandIcon, defaultIndeterminateIcon, defaultLinkThemeColors, defaultMessageThemeColors, defaultNotificationThemeColors, defaultProgressThemeColors, defaultRadioColors, defaultSortFn, defaultTagThemeColors, defaultThemeColors, defaultTooltipFormatter, defaultTotalText, descriptionsBaseClasses, descriptionsCellSizeClasses, descriptionsContentBorderedClasses, descriptionsContentClasses, descriptionsExtraClasses, descriptionsHeaderClasses, descriptionsLabelBorderedClasses, descriptionsLabelClasses, descriptionsRowClasses, descriptionsSizeClasses, descriptionsTableBorderedClasses, descriptionsTableClasses, descriptionsTitleClasses, descriptionsVerticalContentClasses, descriptionsVerticalItemClasses, descriptionsVerticalLabelClasses, descriptionsVerticalWrapperClasses, descriptionsWrapperClasses, dotSizeClasses, dotsVariantConfig, errorCircleSolidIcon20PathD, fileToUploadFile, filterData, filterOptions, filterTreeNodes, findActiveAnchor, findNode, flattenTree, focusElement, focusFirst, focusRingClasses, focusRingInsetClasses, formatActivityTime, formatBadgeContent, formatChatTime, formatCommentTime, formatDate, formatFileSize, formatMonthYear, formatPageAriaLabel, formatPaginationTotal, formatProgressText, formatTime, formatTimeDisplay, formatTimeDisplayWithLocale, generateAvatarColor, generateFileId, generateHours, generateMinutes, generateSeconds, getActiveElement, getActiveIndex, getAlertIconPath, getAlertTypeClasses, getAlignClasses, getAllKeys, getAnchorInkActiveClasses, getAnchorInkContainerClasses, getAnchorLinkClasses, getAnchorLinkListClasses, getAnchorTargetElement, getAnchorWrapperClasses, getArrowStyles, getAutoExpandKeys, getBadgeVariantClasses, getBarGrowAnimationStyle, getBreadcrumbItemClasses, getBreadcrumbLinkClasses, getBreadcrumbSeparatorClasses, getButtonVariantClasses, getCalendarDays, getCardClasses, getCarouselArrowClasses, getCarouselContainerClasses, getCarouselDotClasses, getCarouselDotsClasses, getChartAnimationStyle, getChartAxisTicks, getChartElementOpacity, getChartEntranceTransform, getChartGridLineDasharray, getChartInnerRect, getChatMessageStatusInfo, getCheckboxCellClasses, getCheckboxClasses, getCheckboxLabelClasses, getCheckedKeysByStrategy, getCircleSize, getColOrderStyleVars, getColStyleVars, getCollapseContainerClasses, getCollapseIconClasses, getCollapsePanelClasses, getCollapsePanelHeaderClasses, getContainerClasses, getContainerHeight, getContainerScrollTop, getCurrentTime, getDatePickerDayCellClasses, getDatePickerIconButtonClasses, getDatePickerInputClasses, getDatePickerLabels, getDayNames, getDaysInMonth, getDescendantKeys, getDescriptionsClasses, getDescriptionsContentClasses, getDescriptionsLabelClasses, getDescriptionsTableClasses, getDescriptionsVerticalItemClasses, getDividerLineStyleClasses, getDividerOrientationClasses, getDividerSpacingClasses, getDragAreaClasses, getDrawerBodyClasses, getDrawerCloseButtonClasses, getDrawerContainerClasses, getDrawerFooterClasses, getDrawerHeaderClasses, getDrawerMaskClasses, getDrawerPanelClasses, getDrawerTitleClasses, getDropdownContainerClasses, getDropdownItemClasses, getDropdownMenuClasses, getDropdownMenuWrapperClasses, getDropdownTriggerClasses, getElementOffsetTop, getErrorFields, getFieldError, getFileListItemClasses, getFirstDayOfMonth, getFixedColumnOffsets, getFlexClasses, getFocusTrapNavigation, getFocusableElements, getFormItemAsteriskClasses, getFormItemAsteriskStyle, getFormItemClasses, getFormItemContentClasses, getFormItemErrorClasses, getFormItemFieldClasses, getFormItemLabelClasses, getGridColumnClasses, getGutterStyles, getInitials, getInputAffixClasses, getInputClasses, getInputErrorClasses, getInputWrapperClasses, getJustifyClasses, getLeafKeys, getLinkVariantClasses, getListClasses, getListHeaderFooterClasses, getListItemClasses, getLoadingBarClasses, getLoadingBarsWrapperClasses, getLoadingClasses, getLoadingDotClasses, getLoadingDotsWrapperClasses, getLoadingOverlaySpinnerClasses, getLoadingTextClasses, getMenuClasses, getMenuItemClasses, getMenuItemIndent, getMessageIconPath, getMessageTypeClasses, getModalContainerClasses, getModalContentClasses, getMonthNames, getNextActiveKey, getNextSlideIndex, getNotificationIconPath, getNotificationTypeClasses, getNumberExtent, getOffsetClasses, getOrderClasses, getPageNumbers, getPageRange, getPageSizeSelectorClasses, getPaginationButtonActiveClasses, getPaginationButtonBaseClasses, getPaginationContainerClasses, getPaginationEllipsisClasses, getPaginationLabels, getParagraphRowWidth, getParentKeys, getPathDrawAnimationStyle, getPathDrawStyles, getPathLength, getPendingDotClasses, getPictureCardClasses, getPieArcs, getPieDrawAnimationStyle, getPlacementSide, getPopconfirmArrowClasses, getPopconfirmButtonBaseClasses, getPopconfirmButtonsClasses, getPopconfirmCancelButtonClasses, getPopconfirmContainerClasses, getPopconfirmContentClasses, getPopconfirmDescriptionClasses, getPopconfirmIconClasses, getPopconfirmIconPath, getPopconfirmOkButtonClasses, getPopconfirmTitleClasses, getPopconfirmTriggerClasses, getPopoverContainerClasses, getPopoverContentClasses, getPopoverContentTextClasses, getPopoverTitleClasses, getPopoverTriggerClasses, getPrevSlideIndex, getProgressTextColorClasses, getProgressVariantClasses, getQuickJumperInputClasses, getRadarAngles, getRadarPoints, getRadioColorClasses, getRadioDotClasses, getRadioGroupClasses, getRadioLabelClasses, getRadioVisualClasses, getRowKey, getScrollTop, getScrollTransform, getSecureRel, getSelectOptionClasses, getSelectSizeClasses, getSelectTriggerClasses, getSeparatorContent, getShortDayNames, getShortMonthNames, getSimplePaginationButtonClasses, getSimplePaginationButtonsWrapperClasses, getSimplePaginationContainerClasses, getSimplePaginationControlsClasses, getSimplePaginationPageIndicatorClasses, getSimplePaginationSelectClasses, getSimplePaginationTotalClasses, getSkeletonClasses, getSkeletonDimensions, getSliderThumbClasses, getSliderTooltipClasses, getSliderTrackClasses, getSortIconClasses, getSpaceAlignClass, getSpaceDirectionClass, getSpaceGapSize, getSpanClasses, getSpinnerSVG, getStatusVariant, getStepContentClasses, getStepDescriptionClasses, getStepIconClasses, getStepItemClasses, getStepTailClasses, getStepTitleClasses, getStepsContainerClasses, getSubMenuExpandIconClasses, getSubMenuTitleClasses, getSvgDefaultAttrs, getSwitchClasses, getSwitchThumbClasses, getTabItemClasses, getTabNavClasses, getTabNavListClasses, getTabPaneClasses, getTableCellClasses, getTableHeaderCellClasses, getTableHeaderClasses, getTableRowClasses, getTableWrapperClasses, getTabsContainerClasses, getTagVariantClasses, getThemeColor, getTimePeriodLabels, getTimePickerIconButtonClasses, getTimePickerInputClasses, getTimePickerItemClasses, getTimePickerLabels, getTimePickerOptionAriaLabel, getTimePickerPeriodButtonClasses, getTimePickerRangeTabButtonClasses, getTimelineContainerClasses, getTimelineContentClasses, getTimelineDotClasses, getTimelineHeadClasses, getTimelineItemClasses, getTimelineTailClasses, getTooltipContainerClasses, getTooltipContentClasses, getTooltipTriggerClasses, getTotalPages, getTotalTextClasses, getTransformOrigin, getTreeNodeClasses, getTreeNodeExpandIconClasses, getUploadButtonClasses, getUploadLabels, getUploadStatusIconClasses, getValueByPath, getVisibleTreeItems, groupItemsIntoRows, handleNodeCheck, hasErrors, icon16ViewBox, icon20ViewBox, icon24PathStrokeLinecap, icon24PathStrokeLinejoin, icon24StrokeWidth, icon24ViewBox, iconSizeClasses, iconSvgBaseClasses, iconWrapperClasses, injectLoadingAnimationStyles, injectShakeStyle, injectSvgAnimationStyles, inputFocusClasses, interactiveClasses, interpolateUploadLabel, isActivationKey, isBrowser, isDateInRange, isEnterKey, isEscapeKey, isEventOutside, isHTMLElement, isKeyActive, isKeyOpen, isKeySelected, isNextDisabled, isOptionGroup, isPanelActive, isPrevDisabled, isSameDay, isSpaceKey, isTabKey, isTimeInRange, isToday, layoutContentClasses, layoutFooterClasses, layoutHeaderClasses, layoutRootClasses, layoutSidebarClasses, linkBaseClasses, linkDisabledClasses, linkSizeClasses, listBaseClasses, listBorderClasses, listEmptyStateClasses, listFooterClasses, listGridContainerClasses, listHeaderFooterBaseClasses, listItemAvatarClasses, listItemBaseClasses, listItemContentClasses, listItemDescriptionClasses, listItemDividedClasses, listItemExtraClasses, listItemHoverClasses, listItemLayoutClasses, listItemMetaClasses, listItemSizeClasses, listItemTitleClasses, listLoadingOverlayClasses, listPaginationContainerClasses, listSizeClasses, listWrapperClasses, loadingBarBaseClasses, loadingBarsWrapperBaseClasses, loadingColorClasses, loadingContainerBaseClasses, loadingDotBaseClasses, loadingDotsWrapperBaseClasses, loadingFullscreenBaseClasses, loadingOverlaySpinnerBaseClasses, loadingSizeClasses, loadingSpinnerBaseClasses, loadingTextSizeClasses, lockClosedIcon24PathD, lockOpenIcon24PathD, menuBaseClasses, menuCollapsedClasses, menuCollapsedItemClasses, menuDarkThemeClasses, menuItemBaseClasses, menuItemDisabledClasses, menuItemFocusClasses, menuItemGroupTitleClasses, menuItemHoverDarkClasses, menuItemHoverLightClasses, menuItemIconClasses, menuItemSelectedDarkClasses, menuItemSelectedLightClasses, menuLightThemeClasses, menuModeClasses, mergeStyleValues, mergeTigerLocale, messageBaseClasses, messageCloseButtonClasses, messageCloseIconPath, messageContainerBaseClasses, messageContentClasses, messageEnterActiveClasses, messageEnterClasses, messageIconClasses, messageIconPaths, messageLeaveActiveClasses, messageLeaveClasses, messageLoadingSpinnerClasses, messagePositionClasses, modalBodyClasses, modalCloseButtonClasses, modalContentWrapperClasses, modalFooterClasses, modalHeaderClasses, modalMaskClasses, modalSizeClasses, modalTitleClasses, modalWrapperClasses, normalizeActiveKeys, normalizeChartPadding, normalizeDate, normalizeSvgAttrs, notificationBaseClasses, notificationCloseButtonClasses, notificationCloseIconClasses, notificationCloseIconPath, notificationContainerBaseClasses, notificationContentClasses, notificationDescriptionClasses, notificationIconClasses, notificationIconPaths, notificationPositionClasses, notificationTitleClasses, paginateData, parseDate, parseTime, parseWidthToPx, polarToCartesian, popconfirmErrorIconPath, popconfirmIconPathStrokeLinecap, popconfirmIconPathStrokeLinejoin, popconfirmIconStrokeWidth, popconfirmIconViewBox, popconfirmInfoIconPath, popconfirmQuestionIconPath, popconfirmSuccessIconPath, popconfirmWarningIconPath, prepareUploadFiles, progressCircleBaseClasses, progressCircleSizeClasses, progressCircleTextClasses, progressCircleTrackStrokeClasses, progressLineBaseClasses, progressLineInnerClasses, progressLineSizeClasses, progressStripedAnimationClasses, progressStripedClasses, progressTextBaseClasses, progressTextSizeClasses, progressTrackBgClasses, radioDisabledCursorClasses, radioDotBaseClasses, radioFocusVisibleClasses, radioGroupDefaultClasses, radioHoverBorderClasses, radioLabelBaseClasses, radioRootBaseClasses, radioSizeClasses, radioVisualBaseClasses, replaceKeys, resolveLocaleText, restoreFocus, scrollToAnchor, scrollToTop, selectBaseClasses, selectDropdownBaseClasses, selectEmptyStateClasses, selectGroupLabelClasses, selectOptionBaseClasses, selectOptionDisabledClasses, selectOptionSelectedClasses, selectSearchInputClasses, setThemeColors, shouldHideBadge, skeletonAnimationClasses, skeletonBaseClasses, skeletonShapeClasses, skeletonVariantDefaults, sliderBaseClasses, sliderDisabledClasses, sliderGetKeyboardValue, sliderGetPercentage, sliderGetValueFromPosition, sliderNormalizeValue, sliderRangeClasses, sliderSizeClasses, sliderThumbClasses, sliderTooltipClasses, sliderTrackClasses, sortActivityGroups, sortAscIcon16PathD, sortBothIcon16PathD, sortData, sortDescIcon16PathD, sortNotificationGroups, stackSeriesData, statusErrorIconPath, statusIconPaths, statusInfoIconPath, statusSuccessIconPath, statusWarningIconPath, stepFinishIconPathD, stepFinishIconPathStrokeLinecap, stepFinishIconPathStrokeLinejoin, stepFinishIconPathStrokeWidth, stepFinishIconSvgClasses, stepFinishIconViewBox, submenuContentHorizontalClasses, submenuContentInlineClasses, submenuContentPopupClasses, submenuContentVerticalClasses, submenuExpandIconClasses, submenuExpandIconExpandedClasses, submenuTitleClasses, successCircleSolidIcon20PathD, switchBaseClasses, switchSizeClasses, switchThumbSizeClasses, switchThumbTranslateClasses, tabAddButtonClasses, tabCloseButtonClasses, tabContentBaseClasses, tabFocusClasses, tabItemBaseClasses, tabItemCardActiveClasses, tabItemCardClasses, tabItemDisabledClasses, tabItemEditableCardActiveClasses, tabItemEditableCardClasses, tabItemLineActiveClasses, tabItemLineClasses, tabItemSizeClasses, tabNavBaseClasses, tabNavListBaseClasses, tabNavListCenteredClasses, tabNavListPositionClasses, tabNavPositionClasses, tabPaneBaseClasses, tabPaneHiddenClasses, tableBaseClasses, tableContainerClasses, tableEmptyStateClasses, tableLoadingOverlayClasses, tablePaginationContainerClasses, tabsBaseClasses, tagBaseClasses, tagCloseButtonBaseClasses, tagCloseIconPath, tagSizeClasses, textAlignClasses, textColorClasses, textDecorationClasses, textSizeClasses, textWeightClasses, tigercatPlugin, tigercatTheme, timePickerBaseClasses, timePickerClearButtonClasses, timePickerColumnClasses, timePickerColumnHeaderClasses, timePickerColumnListClasses, timePickerFooterButtonClasses, timePickerFooterClasses, timePickerInputWrapperClasses, timePickerPanelClasses, timePickerPanelContentClasses, timePickerRangeHeaderClasses, timelineContainerClasses, timelineContentClasses, timelineCustomDotClasses, timelineDescriptionClasses, timelineDotClasses, timelineHeadClasses, timelineItemClasses, timelineLabelClasses, timelineListClasses, timelineTailClasses, to12HourFormat, to24HourFormat, toActivityTimelineItems, toggleKey, togglePanelKey, treeBaseClasses, treeEmptyStateClasses, treeLineClasses, treeLoadingClasses, treeNodeCheckboxClasses, treeNodeChildrenClasses, treeNodeContentClasses, treeNodeDisabledClasses, treeNodeExpandIconClasses, treeNodeExpandIconExpandedClasses, treeNodeHoverClasses, treeNodeIconClasses, treeNodeIndentClasses, treeNodeLabelClasses, treeNodeSelectedClasses, treeNodeWrapperClasses, uploadStatusIconColorClasses, uploadStatusIconSizeClasses, validateCurrentPage, validateField, validateFileSize, validateFileType, validateForm, validateRule, version };
11404
+ export { ANIMATION_DURATION_FAST_MS, ANIMATION_DURATION_MS, ANIMATION_DURATION_SLOW_MS, type ActivityAction, type ActivityFeedProps, type ActivityGroup, type ActivityItem, type ActivityStatusTag, type ActivityUser, type AlertColorScheme, type AlertProps, type AlertSize, type AlertThemeColors, type AlertType, type Align, type AnchorChangeInfo, type AnchorClickInfo, type AnchorDirection, type AnchorLinkProps, type AnchorProps, type AreaChartDatum, type AreaChartProps, type AreaChartSeries, type AutoResizeTextareaOptions, type AvatarProps, type AvatarShape, type AvatarSize, type BackTopProps, type BadgeColorScheme, type BadgePosition, type BadgeProps, type BadgeSize, type BadgeThemeColors, type BadgeType, type BadgeVariant, type BandScaleOptions, type BarChartDatum, type BarChartProps, type BarValueLabelPosition, type BaseChartProps, type BaseFloatingPopupProps, type BeforeUploadHandler, type BreadcrumbItemProps, type BreadcrumbProps, type BreadcrumbSeparator, type Breakpoint, type BuildLegendItemsOptions, type ButtonColorScheme, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIconPath, type CardProps, type CardSize, type CardVariant, type CarouselBeforeChangeInfo, type CarouselChangeInfo, type CarouselDotPosition, type CarouselEffect, type CarouselMethods, type CarouselProps, type ChartAnimationConfig, type ChartAxisOrientation, type ChartAxisProps, type ChartAxisTick, type ChartCanvasProps, type ChartCurveType, type ChartGridLine, type ChartGridLineStyle, type ChartGridProps, type ChartInteractionHandlers, type ChartInteractionOptions, type ChartInteractionProps, type ChartInteractionState, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, type ChartPadding, type ChartScale, type ChartScaleType, type ChartScaleValue, type ChartSeriesPoint, type ChartSeriesProps, type ChartSeriesType, type ChartTooltipProps, type ChartWithAxesProps, type ChatMessage, type ChatMessageDirection, type ChatMessageStatus, type ChatMessageStatusInfo, type ChatUser, type ChatWindowProps, type CheckboxGroupProps, type CheckboxGroupValue, type CheckboxProps, type CheckboxSize, type CheckboxValue, ChevronLeftIconPath, ChevronRightIconPath, type ClassValue, ClockIconPath, CloseIconPath, type CodeProps, type ColProps, type ColSpan, type CollapsePanelProps, type CollapseProps, type ColumnAlign, type ColumnFilter, type CommentAction, type CommentNode, type CommentTag, type CommentThreadProps, type CommentUser, type ContainerMaxWidth, type ContainerProps, type ContentProps, type CreateAriaIdOptions, DEFAULT_CHART_COLORS, DEFAULT_FORM_WIZARD_LABELS, DEFAULT_PAGINATION_LABELS, DONUT_BASE_SHADOW, DONUT_EMPHASIS_SHADOW, DROPDOWN_CHEVRON_PATH, DROPDOWN_ENTER_CLASS, DURATION_CLASS, DURATION_FAST_CLASS, DURATION_SLOW_CLASS, type DataTableWithToolbarProps, type DateFormat, type DatePickerInputDate, type DatePickerLabels, type DatePickerModelValue, type DatePickerProps, type DatePickerRangeModelValue, type DatePickerRangeValue, type DatePickerSingleModelValue, type DatePickerSingleValue, type DatePickerSize, type DescriptionsItem, type DescriptionsLayout, type DescriptionsProps, type DescriptionsSize, type DividerLineStyle, type DividerOrientation, type DividerProps, type DividerSpacing, type DonutChartDatum, type DonutChartProps, type DrawerPlacement, type DrawerProps, type DrawerSize, type DropdownItemProps, type DropdownMenuProps, type DropdownPlacement, type DropdownProps, type DropdownTrigger, EASING_DEFAULT, EASING_ENTER, EASING_LEAVE, type ElementLike, type ExpandIconPosition, type FilterOption, type FilterType, type FloatingCleanup, type FloatingOptions, type FloatingPlacement, type FloatingResult, type FloatingTrigger, type FocusElementOptions, type FocusTrapNavigation, type FooterProps, type FormError, type FormItemClassOptions, type FormItemLabelClassOptions, type FormItemProps, type FormLabelAlign, type FormLabelPosition, type FormProps, type FormRule, type FormRuleTrigger, type FormRuleType, type FormRules, type FormSize, type FormValidationResult, type FormValues, type FormWizardProps, type FormWizardValidateResult, type FormWizardValidator, type GetContainerClassesOptions, type GetInputClassesOptions, type GetRadioDotClassesOptions, type GetRadioGroupClassesOptions, type GetRadioLabelClassesOptions, type GetRadioVisualClassesOptions, type GutterSize, type HeaderProps, type IconProps, type IconSize, type InputProps, type InputSize, type InputStatus, type InputType, type IsEventOutsideOptions, type Justify, type KeyLikeEvent, type LayoutProps, type LineChartDatum, type LineChartProps, type LineChartSeries, type LinkColorScheme, type LinkProps, type LinkSize, type LinkThemeColors, type LinkVariant, type ListBorderStyle, type ListItem, type ListItemLayout, type ListPaginationConfig, type ListProps, type ListSize, type LoadingAnimationIndex, type LoadingColor, type LoadingProps, type LoadingSize, type LoadingVariant, type MenuItem, type MenuItemGroupProps, type MenuItemProps, type MenuKey, type MenuMode, type MenuProps, type MenuTheme, type MessageColorScheme, type MessageConfig, type MessageInstance, type MessageOptions, type MessagePosition, type MessageProps, type MessageType, type ModalProps, type ModalSize, type NotificationCenterProps, type NotificationColorScheme, type NotificationConfig, type NotificationGroup, type NotificationInstance, type NotificationItem, type NotificationOptions, type NotificationPosition, type NotificationProps, type NotificationReadFilter, type NotificationType, PIE_BASE_SHADOW, PIE_EMPHASIS_SHADOW, POPOVER_TEXT_CLASSES, POPOVER_TITLE_CLASSES, type PageChangeInfo, type PageSizeChangeInfo, type PaginationAlign, type PaginationConfig, type PaginationPageSizeOption, type PaginationPageSizeOptionItem, type PaginationProps, type PaginationSize, type PieArcDatum, type PieChartDatum, type PieChartProps, type PointScaleOptions, type PopconfirmIconType, type PopconfirmProps, type PopoverProps, type PopoverTrigger, type PrepareUploadFilesOptions, type PrepareUploadFilesResult, type ProgressColorScheme, type ProgressProps, type ProgressSize, type ProgressStatus, type ProgressThemeColors, type ProgressType, type ProgressVariant, RADAR_SPLIT_AREA_COLORS, type RadarChartDatum, type RadarChartProps, type RadarChartSeries, type RadarPoint, type RadioColorScheme, type RadioGroupProps, type RadioProps, type RadioSize, type RowProps, type RowSelectionConfig, SCATTER_ENTRANCE_CLASS, SCATTER_ENTRANCE_KEYFRAMES, SHAKE_CLASS, SVG_ANIMATION_CLASSES, SVG_ANIMATION_VARS, SVG_DEFAULT_FILL, SVG_DEFAULT_STROKE, SVG_DEFAULT_VIEWBOX_20, SVG_DEFAULT_VIEWBOX_24, SVG_DEFAULT_XMLNS, SVG_PATH_ANIMATION_CSS, type ScatterChartDatum, type ScatterChartProps, type SelectModelValue, type SelectOption, type SelectOptionGroup, type SelectOptions, type SelectProps, type SelectSize, type SelectValue, type SelectValues, type SidebarProps, type SkeletonAnimation, type SkeletonProps, type SkeletonShape, type SkeletonVariant, type SliderProps, type SliderSize, type SortDirection, type SortState, type SpaceAlign, type SpaceDirection, type SpaceProps, type SpaceSize, type StatusIconType, type StepItem, type StepSize, type StepStatus, type StepsDirection, type StepsProps, type StyleAtom, type StyleObject, type StyleValue, type SubMenuProps, type SwitchProps, type SwitchSize, THEME_CSS_VARS, TRANSITION_BASE, TRANSITION_OPACITY, TRANSITION_TRANSFORM, type TabChangeInfo, type TabEditInfo, type TabPaneProps, type TabPosition, type TabSize, type TabType, type TableColumn, type TableProps, type TableSize, type TableToolbarAction, type TableToolbarFilter, type TableToolbarFilterValue, type TableToolbarProps, type TabsProps, type TagColorScheme, type TagProps, type TagSize, type TagThemeColors, type TagVariant, type TextAlign, type TextColor, type TextProps, type TextSize, type TextTag, type TextWeight, type TextareaProps, type TextareaSize, type ThemeColors, type TigerLocale, type TigerLocaleCommon, type TigerLocaleDrawer, type TigerLocaleFormWizard, type TigerLocaleModal, type TigerLocalePagination, type TigerLocaleUpload, type TimeFormat, TimePickerCloseIconPath, type TimePickerLabels, type TimePickerModelValue, type TimePickerOptionUnit, type TimePickerProps, type TimePickerRangeValue, type TimePickerSingleValue, type TimePickerSize, type TimelineItem, type TimelineItemPosition, type TimelineMode, type TimelineProps, type TooltipProps, type TooltipTrigger, type TreeCheckStrategy, type TreeCheckedState, type TreeExpandedState, type TreeFilterFn, type TreeLoadDataFn, type TreeNode, type TreeProps, type TreeSelectionMode, type TriggerHandlerMap, type UploadFile, type UploadFileStatus, type UploadLabelOverrides, type UploadLabels, type UploadListType, type UploadProps, type UploadRejectReason, type UploadRejectedFile, type UploadRequestOptions, type UploadStatusIconSize, type VisibleTreeItem, type WizardStep, ZH_CN_FORM_WIZARD_LABELS, ZH_CN_PAGINATION_LABELS, activeOpacityClasses, activePressClasses, alertBaseClasses, alertCloseButtonBaseClasses, alertCloseIconPath, alertContentClasses, alertDescriptionSizeClasses, alertIconContainerClasses, alertIconSizeClasses, alertSizeClasses, alertTitleSizeClasses, anchorAffixClasses, anchorBaseClasses, anchorInkActiveHorizontalClasses, anchorInkActiveVerticalClasses, anchorInkContainerHorizontalClasses, anchorInkContainerVerticalClasses, anchorLinkActiveClasses, anchorLinkBaseClasses, anchorLinkListHorizontalClasses, anchorLinkListVerticalClasses, animationDelayClasses, animationDelayStyles, applyFloatingStyles, autoResizeTextarea, autoUpdateFloating, avatarBaseClasses, avatarDefaultBgColor, avatarDefaultTextColor, avatarImageClasses, avatarShapeClasses, avatarSizeClasses, backTopButtonClasses, backTopContainerClasses, backTopHiddenClasses, backTopIconPath, backTopVisibleClasses, badgeBaseClasses, badgePositionClasses, badgeSizeClasses, badgeTypeClasses, badgeWrapperClasses, barAnimatedTransition, barValueLabelClasses, barValueLabelInsideClasses, barsVariantConfig, breadcrumbContainerClasses, breadcrumbCurrentClasses, breadcrumbItemBaseClasses, breadcrumbLinkClasses, breadcrumbSeparatorBaseClasses, buildActivityGroups, buildChartLegendItems, buildCommentTree, buildNotificationGroups, buildTriggerHandlerMap, buttonBaseClasses, buttonDisabledClasses, buttonSizeClasses, calculateCheckedState, calculateCirclePath, calculatePagination, calculateStepStatus, calendarSolidIcon20PathD, captureActiveElement, cardActionsClasses, cardBaseClasses, cardCoverClasses, cardCoverWrapperClasses, cardFooterClasses, cardHeaderClasses, cardHoverClasses, cardSizeClasses, cardVariantClasses, carouselArrowBaseClasses, carouselArrowDisabledClasses, carouselBaseClasses, carouselDotActiveClasses, carouselDotClasses, carouselDotsBaseClasses, carouselDotsPositionClasses, carouselNextArrowClasses, carouselNextArrowPath, carouselPrevArrowClasses, carouselPrevArrowPath, carouselSlideBaseClasses, carouselTrackFadeClasses, carouselTrackScrollClasses, chartAxisLabelClasses, chartAxisLineClasses, chartAxisTickLineClasses, chartAxisTickTextClasses, chartCanvasBaseClasses, chartGridLineClasses, chartInteractiveClasses, checkSolidIcon20PathD, checkboxLabelSizeClasses, checkboxSizeClasses, checkedSetsFromState, chevronDownSolidIcon20PathD, chevronLeftSolidIcon20PathD, chevronRightSolidIcon20PathD, clampBarWidth, clampPercentage, clampSlideIndex, classNames, clearFieldErrors, clipCommentTreeDepth, clockSolidIcon20PathD, closeIconPathD, closeIconPathStrokeLinecap, closeIconPathStrokeLinejoin, closeIconPathStrokeWidth, closeIconViewBox, closeSolidIcon20PathD, codeBlockContainerClasses, codeBlockCopyButtonBaseClasses, codeBlockCopyButtonCopiedClasses, codeBlockPreClasses, coerceClassValue, coerceStyleValue, collapseBaseClasses, collapseBorderlessClasses, collapseGhostClasses, collapseHeaderTextClasses, collapseIconBaseClasses, collapseIconExpandedClasses, collapseIconPositionClasses, collapsePanelBaseClasses, collapsePanelContentBaseClasses, collapsePanelContentWrapperClasses, collapsePanelHeaderActiveClasses, collapsePanelHeaderBaseClasses, collapsePanelHeaderDisabledClasses, computeFloatingPosition, computePieHoverOffset, computePieLabelLine, containerBaseClasses, containerCenteredClasses, containerMaxWidthClasses, containerPaddingClasses, copyTextToClipboard, createAreaPath, createAriaId, createBandScale, createChartInteractionHandlers, createFloatingIdFactory, createLinePath, createLinearScale, createPieArcPath, createPointScale, createPolygonPath, datePickerBaseClasses, datePickerCalendarClasses, datePickerCalendarGridClasses, datePickerCalendarHeaderClasses, datePickerClearButtonClasses, datePickerDayNameClasses, datePickerFooterButtonClasses, datePickerFooterClasses, datePickerInputWrapperClasses, datePickerMonthYearClasses, datePickerNavButtonClasses, defaultAlertThemeColors, defaultBadgeThemeColors, defaultChatMessageStatusInfo, defaultLinkThemeColors, defaultMessageThemeColors, defaultNotificationThemeColors, defaultProgressThemeColors, defaultRadarTooltipFormatter, defaultRadioColors, defaultSeriesXYTooltipFormatter, defaultSortFn, defaultTagThemeColors, defaultThemeColors, defaultTooltipFormatter, defaultTotalText, defaultXYTooltipFormatter, descriptionsBaseClasses, descriptionsCellSizeClasses, descriptionsContentBorderedClasses, descriptionsContentClasses, descriptionsExtraClasses, descriptionsHeaderClasses, descriptionsLabelBorderedClasses, descriptionsLabelClasses, descriptionsSizeClasses, descriptionsTableBorderedClasses, descriptionsTableClasses, descriptionsTitleClasses, descriptionsVerticalContentClasses, descriptionsVerticalItemClasses, descriptionsVerticalLabelClasses, descriptionsVerticalWrapperClasses, descriptionsWrapperClasses, dotSizeClasses, dotsVariantConfig, ensureBarMinHeight, errorCircleSolidIcon20PathD, fileToUploadFile, filterData, filterOptions, filterTreeNodes, findActiveAnchor, findNode, flattenSelectOptions, focusElement, focusFirst, focusFirstChildItem, focusMenuEdge, focusRingClasses, focusRingInsetClasses, formatActivityTime, formatBadgeContent, formatChatTime, formatCommentTime, formatDate, formatFileSize, formatMonthYear, formatPageAriaLabel, formatPaginationTotal, formatProgressText, formatTime, formatTimeDisplay, formatTimeDisplayWithLocale, generateAvatarColor, generateFileId, generateHours, generateMinutes, generateSeconds, getActiveElement, getActiveIndex, getAlertIconPath, getAlertTypeClasses, getAlignClasses, getAllKeys, getAnchorInkActiveClasses, getAnchorInkContainerClasses, getAnchorLinkClasses, getAnchorLinkListClasses, getAnchorTargetElement, getAnchorWrapperClasses, getAreaGradientPrefix, getArrowStyles, getAutoExpandKeys, getBadgeVariantClasses, getBarGradientPrefix, getBarGrowAnimationStyle, getBarValueLabelY, getBreadcrumbItemClasses, getBreadcrumbLinkClasses, getBreadcrumbSeparatorClasses, getButtonVariantClasses, getCalendarDays, getCardClasses, getCarouselArrowClasses, getCarouselContainerClasses, getCarouselDotClasses, getCarouselDotsClasses, getChartAnimationStyle, getChartAxisTicks, getChartElementOpacity, getChartEntranceTransform, getChartGridLineDasharray, getChartInnerRect, getChatMessageStatusInfo, getCheckboxCellClasses, getCheckboxClasses, getCheckboxLabelClasses, getCheckedKeysByStrategy, getCircleSize, getColMergedStyleVars, getColOrderStyleVars, getColStyleVars, getCollapseContainerClasses, getCollapseIconClasses, getCollapsePanelClasses, getCollapsePanelHeaderClasses, getContainerClasses, getContainerHeight, getContainerScrollTop, getCurrentTime, getDatePickerDayCellClasses, getDatePickerIconButtonClasses, getDatePickerInputClasses, getDatePickerLabels, getDayNames, getDaysInMonth, getDescendantKeys, getDescriptionsClasses, getDescriptionsContentClasses, getDescriptionsLabelClasses, getDescriptionsTableClasses, getDescriptionsVerticalItemClasses, getDividerClasses, getDividerStyle, getDragAreaClasses, getDrawerBodyClasses, getDrawerCloseButtonClasses, getDrawerContainerClasses, getDrawerFooterClasses, getDrawerHeaderClasses, getDrawerMaskClasses, getDrawerPanelClasses, getDrawerTitleClasses, getDropdownChevronClasses, getDropdownContainerClasses, getDropdownItemClasses, getDropdownMenuClasses, getDropdownTriggerClasses, getElementOffsetTop, getErrorFields, getFieldError, getFileListItemClasses, getFirstDayOfMonth, getFixedColumnOffsets, getFlexClasses, getFocusTrapNavigation, getFocusableElements, getFormItemAsteriskClasses, getFormItemClasses, getFormItemContentClasses, getFormItemErrorClasses, getFormItemFieldClasses, getFormItemLabelClasses, getFormWizardLabels, getGridColumnClasses, getGutterStyles, getInitials, getInputAffixClasses, getInputClasses, getInputErrorClasses, getInputWrapperClasses, getJustifyClasses, getLeafKeys, getLineGradientPrefix, getLinkVariantClasses, getListClasses, getListHeaderFooterClasses, getListItemClasses, getLoadingBarClasses, getLoadingBarsWrapperClasses, getLoadingClasses, getLoadingDotClasses, getLoadingDotsWrapperClasses, getLoadingOverlaySpinnerClasses, getLoadingTextClasses, getMenuButtons, getMenuClasses, getMenuItemClasses, getMenuItemIndent, getMessageIconPath, getMessageTypeClasses, getModalContainerClasses, getModalContentClasses, getMonthNames, getNextActiveKey, getNextSlideIndex, getNotificationIconPath, getNotificationTypeClasses, getNumberExtent, getOffsetClasses, getOrderClasses, getPageNumbers, getPageRange, getPageSizeSelectorClasses, getPaginationButtonActiveClasses, getPaginationButtonBaseClasses, getPaginationContainerClasses, getPaginationEllipsisClasses, getPaginationLabels, getParagraphRowWidth, getParentKeys, getPathDrawAnimationStyle, getPathDrawStyles, getPathLength, getPendingDotClasses, getPictureCardClasses, getPieArcs, getPieDrawAnimationStyle, getPlacementSide, getPopconfirmArrowClasses, getPopconfirmButtonBaseClasses, getPopconfirmButtonsClasses, getPopconfirmCancelButtonClasses, getPopconfirmContainerClasses, getPopconfirmContentClasses, getPopconfirmDescriptionClasses, getPopconfirmIconClasses, getPopconfirmIconPath, getPopconfirmOkButtonClasses, getPopconfirmTitleClasses, getPopconfirmTriggerClasses, getPopoverContainerClasses, getPopoverContentClasses, getPopoverContentTextClasses, getPopoverTitleClasses, getPopoverTriggerClasses, getPrevSlideIndex, getProgressTextColorClasses, getProgressVariantClasses, getQuickJumperInputClasses, getRadarAngles, getRadarLabelAlign, getRadarPoints, getRadioColorClasses, getRadioDotClasses, getRadioGroupClasses, getRadioLabelClasses, getRadioVisualClasses, getRowKey, getScatterGradientPrefix, getScatterHoverShadow, getScatterHoverSize, getScatterPointPath, getScrollTop, getScrollTransform, getSecureRel, getSelectOptionClasses, getSelectSizeClasses, getSelectTriggerClasses, getSeparatorContent, getShortDayNames, getShortMonthNames, getSimplePaginationButtonClasses, getSimplePaginationButtonsWrapperClasses, getSimplePaginationContainerClasses, getSimplePaginationControlsClasses, getSimplePaginationPageIndicatorClasses, getSimplePaginationSelectClasses, getSimplePaginationTotalClasses, getSizeTextClasses, getSkeletonClasses, getSkeletonDimensions, getSliderThumbClasses, getSliderTooltipClasses, getSliderTrackClasses, getSortIconClasses, getSpaceClasses, getSpaceStyle, getSpanClasses, getSpinnerSVG, getStatusVariant, getStepContentClasses, getStepDescriptionClasses, getStepIconClasses, getStepItemClasses, getStepTailClasses, getStepTitleClasses, getStepsContainerClasses, getSubMenuExpandIconClasses, getSubMenuTitleClasses, getSvgDefaultAttrs, getSwitchClasses, getSwitchThumbClasses, getTabItemClasses, getTabNavClasses, getTabNavListClasses, getTabPaneClasses, getTableCellClasses, getTableHeaderCellClasses, getTableHeaderClasses, getTableRowClasses, getTableWrapperClasses, getTabsContainerClasses, getTagVariantClasses, getTextClasses, getThemeColor, getTimePeriodLabels, getTimePickerIconButtonClasses, getTimePickerInputClasses, getTimePickerItemClasses, getTimePickerLabels, getTimePickerOptionAriaLabel, getTimePickerPeriodButtonClasses, getTimePickerRangeTabButtonClasses, getTimelineContainerClasses, getTimelineContentClasses, getTimelineDotClasses, getTimelineHeadClasses, getTimelineItemClasses, getTimelineTailClasses, getTooltipContainerClasses, getTooltipContentClasses, getTooltipTriggerClasses, getTotalPages, getTotalTextClasses, getTransformOrigin, getTreeNodeClasses, getTreeNodeExpandIconClasses, getUploadButtonClasses, getUploadLabels, getUploadStatusIconClasses, getValueByPath, getVisibleTreeItems, groupItemsIntoRows, handleNodeCheck, hasErrors, icon16ViewBox, icon20ViewBox, icon24PathStrokeLinecap, icon24PathStrokeLinejoin, icon24StrokeWidth, icon24ViewBox, iconSizeClasses, iconSvgBaseClasses, iconSvgDefaultStrokeLinecap, iconSvgDefaultStrokeLinejoin, iconSvgDefaultStrokeWidth, iconWrapperClasses, initRovingTabIndex, injectDropdownStyles, injectLoadingAnimationStyles, injectShakeStyle, injectSvgAnimationStyles, inputFocusClasses, interactiveClasses, interpolateUploadLabel, isActivationKey, isBrowser, isDateInRange, isEnterKey, isEscapeKey, isEventOutside, isHTMLElement, isKeyActive, isKeyOpen, isKeySelected, isNextDisabled, isOptionGroup, isPanelActive, isPrevDisabled, isSameDay, isSpaceKey, isTabKey, isTimeInRange, isToday, layoutContentClasses, layoutFooterClasses, layoutHeaderClasses, layoutRootClasses, layoutSidebarClasses, linePointTransitionClasses, linkBaseClasses, linkDisabledClasses, linkSizeClasses, listBaseClasses, listBorderClasses, listEmptyStateClasses, listFooterClasses, listGridContainerClasses, listHeaderFooterBaseClasses, listItemAvatarClasses, listItemBaseClasses, listItemContentClasses, listItemDescriptionClasses, listItemDividedClasses, listItemExtraClasses, listItemHoverClasses, listItemLayoutClasses, listItemMetaClasses, listItemSizeClasses, listItemTitleClasses, listLoadingOverlayClasses, listSizeClasses, listWrapperClasses, loadingBarBaseClasses, loadingBarsWrapperBaseClasses, loadingColorClasses, loadingContainerBaseClasses, loadingDotBaseClasses, loadingDotsWrapperBaseClasses, loadingFullscreenBaseClasses, loadingOverlaySpinnerBaseClasses, loadingSizeClasses, loadingSpinnerBaseClasses, loadingTextSizeClasses, lockClosedIcon24PathD, lockOpenIcon24PathD, menuBaseClasses, menuCollapsedClasses, menuCollapsedItemClasses, menuDarkThemeClasses, menuItemBaseClasses, menuItemDisabledClasses, menuItemFocusClasses, menuItemGroupTitleClasses, menuItemHoverDarkClasses, menuItemHoverLightClasses, menuItemIconClasses, menuItemSelectedDarkClasses, menuItemSelectedLightClasses, menuLightThemeClasses, menuModeClasses, mergeStyleValues, mergeTigerLocale, messageBaseClasses, messageCloseButtonClasses, messageCloseIconPath, messageContainerBaseClasses, messageContentClasses, messageIconClasses, messageIconPaths, messageLoadingSpinnerClasses, messagePositionClasses, modalBodyClasses, modalCloseButtonClasses, modalContentWrapperClasses, modalFooterClasses, modalHeaderClasses, modalMaskClasses, modalSizeClasses, modalTitleClasses, modalWrapperClasses, moveFocusInMenu, normalizeActiveKeys, normalizeChartPadding, normalizeDate, normalizeStringOption, normalizeSvgAttrs, notificationBaseClasses, notificationCloseButtonClasses, notificationCloseIconClasses, notificationCloseIconPath, notificationContainerBaseClasses, notificationContentClasses, notificationDescriptionClasses, notificationIconClasses, notificationIconPaths, notificationPositionClasses, notificationTitleClasses, paginateData, parseDate, parseInputValue, parseTime, parseWidthToPx, polarToCartesian, popconfirmErrorIconPath, popconfirmIconPathStrokeLinecap, popconfirmIconPathStrokeLinejoin, popconfirmIconStrokeWidth, popconfirmIconViewBox, popconfirmInfoIconPath, popconfirmQuestionIconPath, popconfirmSuccessIconPath, popconfirmWarningIconPath, prepareUploadFiles, progressCircleBaseClasses, progressCircleSizeClasses, progressCircleTextClasses, progressCircleTrackStrokeClasses, progressLineBaseClasses, progressLineInnerClasses, progressLineSizeClasses, progressStripedAnimationClasses, progressStripedClasses, progressTextBaseClasses, progressTextSizeClasses, progressTrackBgClasses, radioDisabledCursorClasses, radioDotBaseClasses, radioFocusVisibleClasses, radioGroupDefaultClasses, radioHoverBorderClasses, radioLabelBaseClasses, radioRootBaseClasses, radioSizeClasses, radioVisualBaseClasses, replaceKeys, resetAreaGradientCounter, resetBarGradientCounter, resetLineGradientCounter, resetScatterGradientCounter, resolveChartPalette, resolveChartTooltipContent, resolveLocaleText, resolveMultiSeriesTooltipContent, resolveSeriesData, restoreFocus, scatterPointTransitionClasses, scrollToAnchor, scrollToTop, selectBaseClasses, selectDropdownBaseClasses, selectEmptyStateClasses, selectGroupLabelClasses, selectOptionBaseClasses, selectOptionDisabledClasses, selectOptionSelectedClasses, selectSearchInputClasses, setThemeColors, shouldHideBadge, skeletonAnimationClasses, skeletonBaseClasses, skeletonShapeClasses, skeletonVariantDefaults, sliderBaseClasses, sliderDisabledClasses, sliderGetKeyboardValue, sliderGetPercentage, sliderGetValueFromPosition, sliderNormalizeValue, sliderRangeClasses, sliderSizeClasses, sliderThumbClasses, sliderTooltipClasses, sliderTrackClasses, sortActivityGroups, sortAscIcon16PathD, sortBothIcon16PathD, sortData, sortDescIcon16PathD, sortNotificationGroups, stackSeriesData, statusErrorIconPath, statusIconPaths, statusInfoIconPath, statusSuccessIconPath, statusWarningIconPath, stepFinishChar, submenuContentHorizontalClasses, submenuContentInlineClasses, submenuContentPopupClasses, submenuContentVerticalClasses, submenuExpandIconClasses, submenuExpandIconExpandedClasses, submenuTitleClasses, successCircleSolidIcon20PathD, switchBaseClasses, switchSizeClasses, switchThumbSizeClasses, switchThumbTranslateClasses, tabAddButtonClasses, tabCloseButtonClasses, tabContentBaseClasses, tabFocusClasses, tabItemBaseClasses, tabItemCardActiveClasses, tabItemCardClasses, tabItemDisabledClasses, tabItemEditableCardActiveClasses, tabItemEditableCardClasses, tabItemLineActiveClasses, tabItemLineClasses, tabItemSizeClasses, tabNavBaseClasses, tabNavLineBorderClasses, tabNavListBaseClasses, tabNavListCenteredClasses, tabNavListPositionClasses, tabNavPositionClasses, tabPaneBaseClasses, tabPaneHiddenClasses, tableBaseClasses, tableContainerClasses, tableEmptyStateClasses, tableLoadingOverlayClasses, tablePaginationContainerClasses, tabsBaseClasses, tagBaseClasses, tagCloseButtonBaseClasses, tagCloseIconPath, tagSizeClasses, textAlignClasses, textColorClasses, textDecorationClasses, textSizeClasses, textWeightClasses, tigercatPlugin, tigercatTheme, timePickerBaseClasses, timePickerClearButtonClasses, timePickerColumnClasses, timePickerColumnHeaderClasses, timePickerColumnListClasses, timePickerFooterButtonClasses, timePickerFooterClasses, timePickerInputWrapperClasses, timePickerPanelClasses, timePickerPanelContentClasses, timePickerRangeHeaderClasses, timelineContainerClasses, timelineContentClasses, timelineCustomDotClasses, timelineDescriptionClasses, timelineDotClasses, timelineHeadClasses, timelineItemClasses, timelineLabelClasses, timelineListClasses, timelineTailClasses, to12HourFormat, to24HourFormat, toActivityTimelineItems, toggleKey, togglePanelKey, treeBaseClasses, treeEmptyStateClasses, treeLineClasses, treeLoadingClasses, treeNodeCheckboxClasses, treeNodeChildrenClasses, treeNodeContentClasses, treeNodeDisabledClasses, treeNodeExpandIconClasses, treeNodeExpandIconExpandedClasses, treeNodeHoverClasses, treeNodeIconClasses, treeNodeIndentClasses, treeNodeLabelClasses, treeNodeSelectedClasses, treeNodeWrapperClasses, uploadStatusIconColorClasses, uploadStatusIconSizeClasses, validateCurrentPage, validateField, validateFileSize, validateFileType, validateForm, validateRule, version };