@expcat/tigercat-core 2.0.0-rc.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -7
- package/dist/index.d.ts +32 -32
- package/dist/index.js +161 -125
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,15 +26,14 @@ npm install @expcat/tigercat-core
|
|
|
26
26
|
|
|
27
27
|
## Tailwind Plugin
|
|
28
28
|
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
export default {
|
|
34
|
-
plugins: [tigercatPlugin]
|
|
35
|
-
}
|
|
29
|
+
```css
|
|
30
|
+
@import 'tailwindcss';
|
|
31
|
+
@plugin '@expcat/tigercat-core/tailwind/modern';
|
|
36
32
|
```
|
|
37
33
|
|
|
34
|
+
The modern preset only changes component styling when a consumer sets
|
|
35
|
+
`data-tiger-style="modern"`; the default visual style remains unchanged.
|
|
36
|
+
|
|
38
37
|
## License
|
|
39
38
|
|
|
40
39
|
[MIT](https://opensource.org/licenses/MIT)
|
package/dist/index.d.ts
CHANGED
|
@@ -1014,8 +1014,8 @@ declare const timePickerPanelClasses: string;
|
|
|
1014
1014
|
/**
|
|
1015
1015
|
* Dropdown panel content classes
|
|
1016
1016
|
*/
|
|
1017
|
-
declare const timePickerPanelContentClasses = "flex divide-x divide-
|
|
1018
|
-
declare const timePickerDesktopPanelContentClasses = "max-sm:hidden flex divide-x divide-
|
|
1017
|
+
declare const timePickerPanelContentClasses = "flex divide-x divide-[var(--tiger-border,#e5e7eb)]";
|
|
1018
|
+
declare const timePickerDesktopPanelContentClasses = "max-sm:hidden flex divide-x divide-[var(--tiger-border,#e5e7eb)]";
|
|
1019
1019
|
declare const timePickerMobileWheelClasses = "sm:hidden grid grid-cols-3 gap-2";
|
|
1020
1020
|
declare const timePickerMobileWheelSelectClasses: string;
|
|
1021
1021
|
/**
|
|
@@ -1243,7 +1243,7 @@ interface ButtonGroupProps {
|
|
|
1243
1243
|
* `rounded-lg` + `transition-all duration-200 ease-out` exactly.
|
|
1244
1244
|
* @since 0.2.0 - Improved interaction effects
|
|
1245
1245
|
*/
|
|
1246
|
-
declare const buttonBaseClasses = "inline-flex items-center justify-center font-medium rounded-[var(--tiger-radius-md,0.5rem)] [transition:var(--tiger-transition-base,all_200ms_cubic-bezier(0.4,0,0.2,1))] focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]/40 active:scale-[0.98]";
|
|
1246
|
+
declare const buttonBaseClasses = "inline-flex items-center justify-center whitespace-nowrap font-medium rounded-[var(--tiger-radius-md,0.5rem)] [transition:var(--tiger-transition-base,all_200ms_cubic-bezier(0.4,0,0.2,1))] focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]/40 active:scale-[0.98]";
|
|
1247
1247
|
declare const buttonSizeClasses: Record<ButtonSize, string>;
|
|
1248
1248
|
declare const buttonDisabledClasses = "cursor-not-allowed opacity-60";
|
|
1249
1249
|
/**
|
|
@@ -13787,7 +13787,7 @@ declare const progressCircleTrackStrokeClasses = "text-[color:var(--tiger-border
|
|
|
13787
13787
|
/**
|
|
13788
13788
|
* Base collapse container classes
|
|
13789
13789
|
*/
|
|
13790
|
-
declare const collapseBaseClasses = "w-full bg-
|
|
13790
|
+
declare const collapseBaseClasses = "w-full bg-[var(--tiger-surface,#fff)] border border-[var(--tiger-border,#e5e7eb)] rounded overflow-hidden";
|
|
13791
13791
|
/**
|
|
13792
13792
|
* Collapse ghost mode classes (transparent without border)
|
|
13793
13793
|
*/
|
|
@@ -13799,15 +13799,15 @@ declare const collapseBorderlessClasses = "border-0";
|
|
|
13799
13799
|
/**
|
|
13800
13800
|
* Collapse panel base classes
|
|
13801
13801
|
*/
|
|
13802
|
-
declare const collapsePanelBaseClasses = "border-b border-
|
|
13802
|
+
declare const collapsePanelBaseClasses = "border-b border-[var(--tiger-border,#e5e7eb)] last:border-b-0";
|
|
13803
13803
|
/**
|
|
13804
13804
|
* Collapse panel header base classes
|
|
13805
13805
|
*/
|
|
13806
|
-
declare const collapsePanelHeaderBaseClasses = "flex items-center px-4 py-3 cursor-pointer transition-colors duration-200 hover:bg-
|
|
13806
|
+
declare const collapsePanelHeaderBaseClasses = "flex items-center px-4 py-3 cursor-pointer transition-colors duration-200 motion-reduce:transition-none hover:bg-[var(--tiger-surface-muted,#f9fafb)] focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]";
|
|
13807
13807
|
/**
|
|
13808
13808
|
* Collapse panel header active classes
|
|
13809
13809
|
*/
|
|
13810
|
-
declare const collapsePanelHeaderActiveClasses = "bg-
|
|
13810
|
+
declare const collapsePanelHeaderActiveClasses = "bg-[var(--tiger-surface-muted,#f9fafb)]";
|
|
13811
13811
|
/**
|
|
13812
13812
|
* Collapse panel header disabled classes
|
|
13813
13813
|
*/
|
|
@@ -13815,15 +13815,15 @@ declare const collapsePanelHeaderDisabledClasses = "cursor-not-allowed opacity-5
|
|
|
13815
13815
|
/**
|
|
13816
13816
|
* Collapse panel content wrapper classes
|
|
13817
13817
|
*/
|
|
13818
|
-
declare const collapsePanelContentWrapperClasses = "overflow-hidden transition-[max-height,opacity] duration-300 ease-in-out";
|
|
13818
|
+
declare const collapsePanelContentWrapperClasses = "overflow-hidden transition-[max-height,opacity] duration-300 ease-in-out motion-reduce:transition-none";
|
|
13819
13819
|
/**
|
|
13820
13820
|
* Collapse panel content base classes
|
|
13821
13821
|
*/
|
|
13822
|
-
declare const collapsePanelContentBaseClasses = "px-4 py-3 bg-
|
|
13822
|
+
declare const collapsePanelContentBaseClasses = "px-4 py-3 bg-[var(--tiger-surface,#fff)] text-[var(--tiger-text,#374151)]";
|
|
13823
13823
|
/**
|
|
13824
13824
|
* Collapse icon base classes
|
|
13825
13825
|
*/
|
|
13826
|
-
declare const collapseIconBaseClasses = "transition-transform duration-300 ease-in-out text-
|
|
13826
|
+
declare const collapseIconBaseClasses = "transition-transform duration-300 ease-in-out motion-reduce:transition-none text-[var(--tiger-text-muted,#6b7280)]";
|
|
13827
13827
|
/**
|
|
13828
13828
|
* Collapse icon expanded classes
|
|
13829
13829
|
*/
|
|
@@ -13838,7 +13838,7 @@ declare const collapseIconPositionClasses: {
|
|
|
13838
13838
|
/**
|
|
13839
13839
|
* Collapse header text classes
|
|
13840
13840
|
*/
|
|
13841
|
-
declare const collapseHeaderTextClasses = "flex-1 font-medium text-
|
|
13841
|
+
declare const collapseHeaderTextClasses = "flex-1 font-medium text-[var(--tiger-text,#111827)]";
|
|
13842
13842
|
/**
|
|
13843
13843
|
* Get collapse container classes
|
|
13844
13844
|
*/
|
|
@@ -14177,7 +14177,7 @@ declare const tabNavListCenteredClasses = "justify-center";
|
|
|
14177
14177
|
* Tab item base classes
|
|
14178
14178
|
* @since 0.2.0 - Added focus-visible ring for keyboard navigation
|
|
14179
14179
|
*/
|
|
14180
|
-
declare const tabItemBaseClasses = "relative z-10 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))]/40 focus-visible:ring-offset-2 active:opacity-90";
|
|
14180
|
+
declare const tabItemBaseClasses = "relative z-10 cursor-pointer transition-all duration-200 motion-reduce:transition-none 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))]/40 focus-visible:ring-offset-2 active:opacity-90";
|
|
14181
14181
|
/**
|
|
14182
14182
|
* Tab item size classes
|
|
14183
14183
|
*/
|
|
@@ -14189,29 +14189,29 @@ declare const tabItemSizeClasses: {
|
|
|
14189
14189
|
/**
|
|
14190
14190
|
* Tab item type classes - line
|
|
14191
14191
|
*/
|
|
14192
|
-
declare const tabItemLineClasses = "border-b-2 border-transparent hover:text-[var(--tiger-primary,#2563eb)] text-
|
|
14192
|
+
declare const tabItemLineClasses = "border-b-2 border-transparent hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)]";
|
|
14193
14193
|
/**
|
|
14194
14194
|
* Tab item type classes - line active
|
|
14195
14195
|
*/
|
|
14196
14196
|
declare const tabItemLineActiveClasses = "text-[var(--tiger-primary,#2563eb)] font-medium";
|
|
14197
|
-
declare const tabIndicatorBaseClasses = "pointer-events-none absolute z-0 rounded-full bg-[var(--tiger-primary,#2563eb)] transition-transform duration-200 ease-out will-change-transform";
|
|
14197
|
+
declare const tabIndicatorBaseClasses = "pointer-events-none absolute z-0 rounded-full bg-[var(--tiger-primary,#2563eb)] transition-transform duration-200 ease-out will-change-transform motion-reduce:transition-none";
|
|
14198
14198
|
declare const tabIndicatorPositionClasses: Record<TabPosition, string>;
|
|
14199
14199
|
/**
|
|
14200
14200
|
* Tab item type classes - card
|
|
14201
14201
|
*/
|
|
14202
|
-
declare const tabItemCardClasses = "border border-
|
|
14202
|
+
declare const tabItemCardClasses = "border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] -mb-px";
|
|
14203
14203
|
/**
|
|
14204
14204
|
* Tab item type classes - card active
|
|
14205
14205
|
*/
|
|
14206
|
-
declare const tabItemCardActiveClasses = "bg-
|
|
14206
|
+
declare const tabItemCardActiveClasses = "bg-[var(--tiger-surface,#fff)] border-[var(--tiger-primary,#2563eb)] border-b-[var(--tiger-surface,#fff)] text-[var(--tiger-primary,#2563eb)] font-medium z-10";
|
|
14207
14207
|
/**
|
|
14208
14208
|
* Tab item type classes - editable-card
|
|
14209
14209
|
*/
|
|
14210
|
-
declare const tabItemEditableCardClasses = "border border-
|
|
14210
|
+
declare const tabItemEditableCardClasses = "border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface-muted,#f9fafb)] hover:bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] -mb-px";
|
|
14211
14211
|
/**
|
|
14212
14212
|
* Tab item type classes - editable-card active
|
|
14213
14213
|
*/
|
|
14214
|
-
declare const tabItemEditableCardActiveClasses = "bg-
|
|
14214
|
+
declare const tabItemEditableCardActiveClasses = "bg-[var(--tiger-surface,#fff)] border-[var(--tiger-primary,#2563eb)] border-b-[var(--tiger-surface,#fff)] text-[var(--tiger-primary,#2563eb)] font-medium z-10";
|
|
14215
14215
|
/**
|
|
14216
14216
|
* Tab item type classes - pills
|
|
14217
14217
|
*/
|
|
@@ -14227,7 +14227,7 @@ declare const tabItemDisabledClasses = "opacity-50 cursor-not-allowed pointer-ev
|
|
|
14227
14227
|
/**
|
|
14228
14228
|
* Tab close button classes
|
|
14229
14229
|
*/
|
|
14230
|
-
declare const tabCloseButtonClasses = "ml-2 p-0.5 rounded-[var(--tiger-radius-sm,0.375rem)] hover:bg-
|
|
14230
|
+
declare const tabCloseButtonClasses = "ml-2 p-0.5 rounded-[var(--tiger-radius-sm,0.375rem)] hover:bg-[var(--tiger-surface-muted,#e5e7eb)] transition-colors duration-150 motion-reduce:transition-none";
|
|
14231
14231
|
/**
|
|
14232
14232
|
* Tab content container classes
|
|
14233
14233
|
*/
|
|
@@ -14243,7 +14243,7 @@ declare const tabPaneHiddenClasses = "hidden";
|
|
|
14243
14243
|
/**
|
|
14244
14244
|
* Tab add button classes (for editable-card)
|
|
14245
14245
|
*/
|
|
14246
|
-
declare const tabAddButtonClasses = "px-3 py-2 border border-
|
|
14246
|
+
declare const tabAddButtonClasses = "px-3 py-2 border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface-muted,#f9fafb)] hover:bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] cursor-pointer transition-colors duration-200 motion-reduce:transition-none";
|
|
14247
14247
|
/**
|
|
14248
14248
|
* Get tabs container classes
|
|
14249
14249
|
*/
|
|
@@ -14299,7 +14299,7 @@ declare const breadcrumbCurrentClasses: string;
|
|
|
14299
14299
|
/**
|
|
14300
14300
|
* Breadcrumb separator base classes
|
|
14301
14301
|
*/
|
|
14302
|
-
declare const breadcrumbSeparatorBaseClasses = "text-
|
|
14302
|
+
declare const breadcrumbSeparatorBaseClasses = "text-[var(--tiger-text-muted,#9ca3af)] select-none";
|
|
14303
14303
|
/**
|
|
14304
14304
|
* Get breadcrumb item classes
|
|
14305
14305
|
*/
|
|
@@ -15150,9 +15150,9 @@ declare const iconSvgDefaultStrokeWidth = 2;
|
|
|
15150
15150
|
declare const iconSvgDefaultStrokeLinecap = "round";
|
|
15151
15151
|
declare const iconSvgDefaultStrokeLinejoin = "round";
|
|
15152
15152
|
|
|
15153
|
-
declare const codeBlockContainerClasses = "relative rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
15153
|
+
declare const codeBlockContainerClasses = "relative rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#e5e7eb)] bg-[var(--tiger-surface-muted,#f9fafb)] text-[var(--tiger-text,#1f2937)]";
|
|
15154
15154
|
declare const codeBlockPreClasses = "m-0 overflow-auto p-4 text-sm leading-relaxed font-mono whitespace-pre";
|
|
15155
|
-
declare const codeBlockCopyButtonBaseClasses = "absolute right-3 top-0 -translate-y-1/2 inline-flex items-center rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
15155
|
+
declare const codeBlockCopyButtonBaseClasses = "absolute right-3 top-0 -translate-y-1/2 inline-flex items-center rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#e5e7eb)] bg-[var(--tiger-surface,#fff)] px-1.5 py-0.5 text-[10px] text-[var(--tiger-text-muted,#6b7280)] shadow-sm transition-colors hover:text-[var(--tiger-text,#111827)] motion-reduce:transition-none";
|
|
15156
15156
|
declare const codeBlockCopyButtonCopiedClasses = "border-[var(--tiger-primary,#2563eb)] text-[var(--tiger-primary,#2563eb)]";
|
|
15157
15157
|
declare function getCodeBlockContainerClasses(...classes: ClassValue[]): string;
|
|
15158
15158
|
declare function getCodeBlockCopyButtonClasses(isCopied: boolean, ...classes: ClassValue[]): string;
|
|
@@ -15487,19 +15487,19 @@ declare const anchorAffixClasses = "fixed";
|
|
|
15487
15487
|
/**
|
|
15488
15488
|
* Anchor ink container classes (vertical)
|
|
15489
15489
|
*/
|
|
15490
|
-
declare const anchorInkContainerVerticalClasses = "absolute left-0 top-0 bottom-0 w-0.5 bg-
|
|
15490
|
+
declare const anchorInkContainerVerticalClasses = "absolute left-0 top-0 bottom-0 w-0.5 bg-[var(--tiger-border,#e5e7eb)] rounded-full";
|
|
15491
15491
|
/**
|
|
15492
15492
|
* Anchor ink container classes (horizontal)
|
|
15493
15493
|
*/
|
|
15494
|
-
declare const anchorInkContainerHorizontalClasses = "absolute left-0 right-0 bottom-0 h-0.5 bg-
|
|
15494
|
+
declare const anchorInkContainerHorizontalClasses = "absolute left-0 right-0 bottom-0 h-0.5 bg-[var(--tiger-border,#e5e7eb)] rounded-full";
|
|
15495
15495
|
/**
|
|
15496
15496
|
* Active ink indicator classes (vertical)
|
|
15497
15497
|
*/
|
|
15498
|
-
declare const anchorInkActiveVerticalClasses = "absolute w-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[top,height] duration-200 ease-in-out";
|
|
15498
|
+
declare const anchorInkActiveVerticalClasses = "absolute w-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[top,height] duration-200 ease-in-out motion-reduce:transition-none";
|
|
15499
15499
|
/**
|
|
15500
15500
|
* Active ink indicator classes (horizontal)
|
|
15501
15501
|
*/
|
|
15502
|
-
declare const anchorInkActiveHorizontalClasses = "absolute h-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[left,width] duration-200 ease-in-out";
|
|
15502
|
+
declare const anchorInkActiveHorizontalClasses = "absolute h-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[left,width] duration-200 ease-in-out motion-reduce:transition-none";
|
|
15503
15503
|
/**
|
|
15504
15504
|
* Anchor link list classes (vertical)
|
|
15505
15505
|
*/
|
|
@@ -15511,7 +15511,7 @@ declare const anchorLinkListHorizontalClasses = "flex items-center space-x-4 pb-
|
|
|
15511
15511
|
/**
|
|
15512
15512
|
* Anchor link base classes
|
|
15513
15513
|
*/
|
|
15514
|
-
declare const anchorLinkBaseClasses = "block text-sm text-
|
|
15514
|
+
declare const anchorLinkBaseClasses = "block text-sm text-[var(--tiger-text-muted,#6b7280)] hover:text-[var(--tiger-primary,#2563eb)] transition-colors duration-200 motion-reduce:transition-none whitespace-nowrap";
|
|
15515
15515
|
/**
|
|
15516
15516
|
* Anchor link active classes
|
|
15517
15517
|
*/
|
|
@@ -17327,12 +17327,12 @@ interface ScrollSpyObserverOptions {
|
|
|
17327
17327
|
bounds?: number;
|
|
17328
17328
|
onChange: (item: ScrollSpyItem) => void;
|
|
17329
17329
|
}
|
|
17330
|
-
declare const scrollSpyRootClasses = "relative text-sm text-
|
|
17330
|
+
declare const scrollSpyRootClasses = "relative text-sm text-[var(--tiger-text-muted,#6b7280)]";
|
|
17331
17331
|
declare const scrollSpyStickyClasses = "sticky top-0";
|
|
17332
17332
|
declare const scrollSpyListVerticalClasses = "flex flex-col gap-1";
|
|
17333
17333
|
declare const scrollSpyListHorizontalClasses = "flex flex-wrap items-center gap-2";
|
|
17334
|
-
declare const scrollSpyNestedListClasses = "mt-1 ml-3 flex flex-col gap-1 border-l border-
|
|
17335
|
-
declare const scrollSpyItemBaseClasses = "block rounded-md px-3 py-1.5 text-left transition-colors duration-200 hover:bg-
|
|
17334
|
+
declare const scrollSpyNestedListClasses = "mt-1 ml-3 flex flex-col gap-1 border-l border-[var(--tiger-border,#e5e7eb)] pl-3";
|
|
17335
|
+
declare const scrollSpyItemBaseClasses = "block rounded-md px-3 py-1.5 text-left transition-colors duration-200 motion-reduce:transition-none hover:bg-[var(--tiger-surface-muted,#f3f4f6)] hover:text-[var(--tiger-primary,#2563eb)] focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-primary,#2563eb)] focus-visible:ring-offset-2 focus-visible:ring-offset-[var(--tiger-surface,#fff)]";
|
|
17336
17336
|
declare const scrollSpyItemActiveClasses = "bg-[var(--tiger-primary,#2563eb)]/10 font-medium text-[var(--tiger-primary,#2563eb)]";
|
|
17337
17337
|
declare const scrollSpyItemDisabledClasses = "cursor-not-allowed opacity-50 hover:bg-transparent";
|
|
17338
17338
|
declare function getScrollSpyKeyString(key: ScrollSpyKey): string;
|
|
@@ -20338,6 +20338,6 @@ type ComponentTokenName = keyof typeof componentTokens;
|
|
|
20338
20338
|
* - i18n/ : locale-utils, datepicker-i18n, timepicker-utils (labels), upload-labels
|
|
20339
20339
|
* - styles/ : component-specific style utilities (button, input, select, timepicker-utils, etc.)
|
|
20340
20340
|
*/
|
|
20341
|
-
declare const version = "2.0.0
|
|
20341
|
+
declare const version = "2.0.0";
|
|
20342
20342
|
|
|
20343
20343
|
export { ANIMATION_DURATION_FAST_MS, ANIMATION_DURATION_MS, ANIMATION_DURATION_SLOW_MS, type ActiveTourStep, type ActivityAction, type ActivityFeedProps, type ActivityGroup, type ActivityItem, type ActivityStatusTag, type ActivityTimelineItem, type ActivityUser, type AffixObserverOptions, type AffixProps, type AffixState, type AlertColorScheme, type AlertProps, type AlertSize, type AlertThemeColors, type AlertType, type Align, type AnchorChangeInfo, type AnchorClickInfo, type AnchorDirection, type AnchorLinkProps, type AnchorObserverOptions, type AnchorProps, type AreaChartProps, type AreaChartSeries, type AriaLiveLevel, type AutoCompleteOption, type AutoCompleteProps, type AutoResizeTextareaOptions, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackTopFrameCallback, type BackTopFrameCancel, type BackTopFrameRequest, type BackTopPosition, type BackTopProps, type BackTopVisibilityController, type BackTopVisibilityControllerOptions, 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, BaseLayoutProps, type BeforeUploadHandler, type BooleanChangeHandler, type BreadcrumbItemProps, type BreadcrumbProps, type BreadcrumbSeparator, type Breakpoint, type BuildChartSeriesKeysOptions, type BuildLegendItemsOptions, type ButtonColorScheme, type ButtonGroupProps, type ButtonHtmlType, type ButtonIconPosition, type ButtonProps, type ButtonSize, type ButtonVariant, COMPONENT_MOTION_VARS, COUNTDOWN_DEFAULT_FORMAT, COUNTDOWN_DEFAULT_INTERVAL_MS, CROP_HANDLES, type CalendarMode, type CalendarProps, type CancelHandler, type CardColumnLayout, type CardDragData, type CardGridInfo, type CardProps, type CardSize, type CardVariant, type CarouselAutoplayController, type CarouselAutoplayControllerOptions, type CarouselBeforeChangeInfo, type CarouselChangeInfo, type CarouselDotPosition, type CarouselEffect, type CarouselFrameCallback, type CarouselFrameCancel, type CarouselFrameRequest, type CarouselMethods, type CarouselProps, type CarouselSwipeDirection, type CarouselSwipeOptions, type CarouselTouchPoint, type CarouselVisibilityDocument, type CascaderExpandTrigger, type CascaderFilterFn, type CascaderFlattenedOption, type CascaderOption, type CascaderProps, type CascaderSearchConfig, type CascaderValue, type ChartAnimationConfig, type ChartAxisOrientation, type ChartAxisProps, type ChartAxisTick, type ChartBrushRange, type ChartBuiltInTooltipProps, type ChartCanvasProps, type ChartCanvasSize, type ChartCurveType, type ChartDownloadOptions, type ChartExportFormat, type ChartFrameCallback, type ChartFrameCancel, type ChartFrameRequest, type ChartGradientKind, type ChartGridLine, type ChartGridLineStyle, type ChartGridProps, type ChartInteractionHandlers, type ChartInteractionOptions, type ChartInteractionProps, type ChartInteractionState, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, type ChartLinkListener, type ChartPadding, type ChartPointerMoveScheduler, type ChartPointerMoveSchedulerOptions, type ChartResizeFrameCallback, type ChartResizeFrameCancel, type ChartResizeFrameRequest, type ChartResizeObserverController, type ChartResizeObserverControllerOptions, type ChartResizeObserverFactory, type ChartResizeObserverLike, type ChartScale, type ChartScaleType, type ChartScaleValue, type ChartSeriesPoint, type ChartSeriesProps, type ChartSeriesType, type ChartTooltipPosition, type ChartTooltipPositionInput, type ChartTooltipProps, type ChartWithAxesProps, type ChatMessage, type ChatMessageDirection, type ChatMessageStatus, type ChatMessageStatusInfo, type ChatUser, type ChatWindowProps, type CheckboxGroupProps, type CheckboxGroupValue, type CheckboxProps, type CheckboxValue, type ClassValue, type CloseHandler, type CodeEditorProps, type CodeEditorTheme, type CodeHighlighter, type CodeLanguage, type CodeProps, type ColProps, type ColSpan, type CollapsePanelProps, type CollapseProps, type CollapseTransitionController, type CollapseTransitionControllerOptions, type CollapseTransitionElement, type ColorFormat, type ColorPickerProps, ColorScheme, type ColorSwatchGroup, type ColorSwatchNormalizedGroup, type ColorSwatchNormalizedOption, type ColorSwatchOption, type ColorSwatchOptionInput, type ColorSwatchProps, ColumnAlign, type ColumnDragData, type CommentAction, type CommentNode, type CommentTag, type CommentThreadProps, type CommentUser, type ComponentMotionConfig, ComponentSize, type ComponentTokenName, type ComposableClassInput, type ConfirmHandler, type ContainerMaxWidth, type ContainerProps, type ContentProps, type CountdownChangePayload, type CountdownDurationParts, type CountdownProps, type CountdownSize, type CountdownValue, type CreateAriaIdOptions, type CronEditorProps, type CronEditorSize, type CronEditorValidationLabels, type CronFieldControl, type CronFieldKey, type CronFieldMeta, type CronFieldMode, type CronPreset, type CronValidationIssue, type CronValidationResult, type CropHandle, type CropRect, type CropResult, type CropUploadProps, DEFAULT_AVATAR_GROUP_LABELS, DEFAULT_CALENDAR_LABELS, DEFAULT_CAROUSEL_LABELS, DEFAULT_CHART_COLORS, DEFAULT_CHART_LABELS, DEFAULT_CRON_EDITOR_LABELS, DEFAULT_DATA_EXPORT_LABELS, DEFAULT_FILE_MANAGER_LABELS, DEFAULT_FORM_VALIDATION_LABELS, DEFAULT_FORM_WIZARD_LABELS, DEFAULT_HEATMAP_CANVAS_THRESHOLD, DEFAULT_IMAGE_EDITOR_LABELS, DEFAULT_IMAGE_VIEWER_LABELS, DEFAULT_MARKDOWN_EDITOR_LABELS, DEFAULT_PAGINATION_LABELS, DEFAULT_RATE_LABELS, DEFAULT_RICH_TEXT_EDITOR_LABELS, DEFAULT_SELECT_LABELS, DEFAULT_STATUS_LABELS, DEFAULT_TABLE_LABELS, DEFAULT_TABS_LABELS, DEFAULT_TASK_BOARD_LABELS, DEFAULT_TIME_PICKER_LABELS, DEFAULT_TOUR_LABELS, DEFAULT_TRANSFER_LABELS, DEFAULT_UPLOAD_CHUNK_SIZE, DEFAULT_UPLOAD_LABELS, DONUT_BASE_SHADOW, DONUT_EMPHASIS_SHADOW, DONUT_ENTRANCE_CLASS, DONUT_ENTRANCE_KEYFRAMES, DROPDOWN_CHEVRON_PATH, DROPDOWN_ENTER_CLASS, DURATION_CLASS, DURATION_FAST_CLASS, DURATION_SLOW_CLASS, type DataTableWithToolbarProps, DateFormat, type DatePickerCalendarCellState, type DatePickerCalendarCellStateInput, DatePickerLabels, DatePickerLocaleInput, DatePickerLocalePreset, type DescriptionsItem, type DescriptionsLayout, type DescriptionsProps, type DividerLineStyle, type DividerOrientation, type DividerProps, type DividerSpacing, type DocumentDragSession, type DocumentDragSessionEvent, type DocumentDragSessionOptions, type DonutChartProps, type DownsampledPoint, type DragAxis, type DragCallbacks, type DragConfig, type DragDirection, type DragDropEvent, type DragEndEvent, type DragItem, type DragMoveResult, type DragOverEvent, type DragReorderResult, type DragStartEvent, type DragState, type DrawerPlacement, type DrawerProps, type DrawerSize, type DropdownItemProps, type DropdownMenuProps, type DropdownProps, type DropdownTrigger, EASING_DEFAULT, EASING_ENTER, EASING_LEAVE, EASING_SMOOTH, EASING_SPRING, EN_US_DATEPICKER_LOCALE, type ElementLike, type EmptyIllustrationPath, type EmptyPreset, type EmptyProps, type EmptySlotContext, type ExecCommandResult, type ExpandIconPosition, FLOATING_OVERLAY_Z_INDEX, FORM_VALIDATION_PRESETS, type FileItem, type FileManagerModelDerived, type FileManagerModelInput, type FileManagerProps, type FileOpenResult, type FileSortField, type FileSortOrder, type FileType, type FileViewMode, FilterOption, FilterRule, type FlatScrollSpyItem, type FlatTreeSelectNode, type FloatButtonGroupProps, type FloatButtonProps, type FloatButtonShape, type FloatButtonSize, type FloatingCleanup, type FloatingMiddlewareOptions, type FloatingOptions, type FloatingPlacement, type FloatingResult, type FloatingTrigger, type FocusElementOptions, type FocusTrap, type FocusTrapNavigation, type FocusTrapOptions, type FooterProps, type FormCondition, type FormConditionInput, type FormConditionLogic, type FormConditionOperator, type FormConditionState, type FormConditions, type FormController, type FormControllerOptions, type FormError, type FormErrorDisplayMode, type FormFieldChangeHandler, type FormFieldCondition, type FormHistoryState, type FormItemClassOptions, type FormItemLabelClassOptions, type FormItemProps, type FormItemSlotContext, type FormLabelAlign, type FormLabelPosition, type FormProps, type FormRule, type FormRuleTrigger, type FormRuleType, type FormRules, type FormSubmitHandler, type FormValidateHandler, type FormValidationDebouncer, type FormValidationDebouncerOptions, type FormValidationMessages, type FormValidationPreset, type FormValidationResult, type FormValues, type FormWizardProps, type FormWizardValidateResult, type FormWizardValidator, type FormatFileSizeOptions, type FunnelChartDatum, type FunnelChartProps, type FunnelSegment, GAUGE_ANIMATION_DURATION_MS, type GanttDateValue, type GanttLayoutDependency, type GanttLayoutOptions, type GanttLayoutResult, type GanttLayoutTask, type GanttProps, type GanttScale, type GanttTask, type GanttTimelineTick, type GaugeAnimationController, type GaugeAnimationOptions, type GaugeArc, type GaugeChartProps, type GenericFormFieldProps, type GenericFormRule, type GenericSelectOption, type GenericSelectOptionGroup, type GenericSelectProps, type GesturePoint, type GestureTransform, type GetContainerClassesOptions, type GetInputClassesOptions, type GetRadioDotClassesOptions, type GetRadioGroupClassesOptions, type GetRadioLabelClassesOptions, type GetRadioVisualClassesOptions, type GutterSize, type HeaderProps, type HeaderVariant, type HeatmapCell, type HeatmapChartDatum, type HeatmapChartProps, type HeatmapColorSpace, type HeatmapRenderMode, type HsvColor, IconDefinition, IconName, type IconProps, type IconSize, type ImageAnnotation, type ImageAnnotationBase, type ImageAnnotationBox, type ImageAnnotationChangeMeta, type ImageAnnotationPath, type ImageAnnotationPoint, type ImageAnnotationProps, type ImageAnnotationShape, type ImageAnnotationTool, type ImageCropperProps, type ImageFit, type ImageGroupProps, type ImageGroupRegistrationResult, type ImagePreviewProps, type ImagePreviewToolbarAction, type ImagePreviewTrigger, type ImageProps, type ImageViewerBaseProps, type ImageViewerProps, type InfiniteScrollObserverOptions, type InfiniteScrollProps, type InputGroupAddonProps, type InputGroupProps, type InputNumberProps, type InputProps, type InputStatus, type InputType, type IsEventOutsideOptions, type IsItemDisabled, type ItemClickHandler, type Justify, type KanbanProps, type KanbanSwimlane, 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 ListItemSlotContext, type ListPaginationConfig, type ListProps, type LiveRegion, type LoadingAnimationIndex, type LoadingColor, type LoadingProps, type LoadingSize, type LoadingVariant, type LongPressController, type LongPressControllerOptions, type LongPressGestureOptions, MODERN_BASE_TOKENS_DARK, MODERN_BASE_TOKENS_LIGHT, MODERN_OVERRIDE_TOKENS_DARK, MODERN_OVERRIDE_TOKENS_LIGHT, MODERN_REDUCED_MOTION_TOKENS, MONTHS, MOTION_DURATION_TOKEN_FALLBACKS, MOTION_DURATION_TOKEN_VARS, MOTION_EASING_TOKEN_FALLBACKS, MOTION_EASING_TOKEN_VARS, type MarkdownEditorMode, type MarkdownEditorProps, type MarkdownInsertResult, type MarkdownRenderer, type MarkdownSelection, type MarkdownToolbarAction, type MarkdownToolbarButton, type MarkdownToolbarItem, type MarkdownToolbarSeparator, type MaskClickLikeEvent, type MentionOption, type MentionsProps, type MentionsSize, type MenuItem, type MenuItemGroupProps, type MenuItemProps, type MenuItemSlotContext, type MenuKey, type MenuMode, type MenuProps, type MenuSelectHandler, type MenuTheme, type MessageColorScheme, type MessageConfig, type MessageInstance, type MessageOptions, type MessagePosition, type MessageProps, type MessageType, type ModalProps, type ModalSize, type MotionDirection, type MotionDuration, type MotionDurationToken, type MotionEasing, type MotionEasingToken, type MotionSequenceOptions, type MotionSequenceStep, type MotionStaggerOptions, type MoveCardOptions, type MultiSelectChangeHandler, type NotificationAction, type NotificationActionContext, type NotificationCenterProps, type NotificationColorScheme, type NotificationConfig, type NotificationGroup, type NotificationInstance, type NotificationItem, type NotificationOptions, type NotificationPosition, type NotificationProps, type NotificationReadFilter, type NotificationStackFrameCallback, type NotificationStackFrameCancel, type NotificationStackFrameRequest, type NotificationStackUpdateCallback, type NotificationStackUpdateScheduler, type NotificationStackUpdateSchedulerOptions, type NotificationType, type NumberChangeHandler, type NumberKeyboardAction, type NumberKeyboardChangePayload, type NumberKeyboardInputOptions, type NumberKeyboardKey, type NumberKeyboardKeyType, type NumberKeyboardLayoutOptions, type NumberKeyboardMode, type NumberKeyboardProps, type OpenChangeHandler, type OrgChartDirection, type OrgChartLayoutLink, type OrgChartLayoutNode, type OrgChartLayoutOptions, type OrgChartLayoutResult, type OrgChartNode, type OrgChartProps, type OverlayFooterSlotContext, type OverlayHeaderSlotContext, PAGINATION_FULL_MODE_PAGE_THRESHOLD, PIE_BASE_SHADOW, PIE_EMPHASIS_SHADOW, POPOVER_TEXT_CLASSES, POPOVER_TITLE_CLASSES, PaginationAlign, type PaginationChangeHandler, PaginationConfig, type PaginationDisplayMode, type PaginationIdleValidationScheduler, type PaginationIdleValidationSchedulerOptions, PaginationQuickJumperValidationOptions, PaginationSize, type PanGesture, type PanGestureOptions, type PanResult, type PanState, type ParsedHotkey, type PickerComboboxAriaOptions, type PickerListboxAriaOptions, type PickerOptionAriaOptions, type PickerTriggerKeyAction, type PieArcDatum, type PieChartDatum, type PieChartProps, type PinchGesture, type PinchState, type PointScaleOptions, type PopconfirmIconType, type PopconfirmProps, type PopoverProps, type PopoverTrigger, type PositionMentionsDropdownOptions, type PrepareUploadFilesOptions, type PrepareUploadFilesResult, type PreviewNavState, type PrimitiveColorHue, type PrimitiveColorLevel, type PrimitiveDurationKey, type PrimitiveEasingKey, type PrimitiveRadiusKey, type PrimitiveShadowKey, type PrimitiveSpaceKey, type PrintLayoutProps, type PrintOrientation, type PrintPageSize, type ProgressColorScheme, type ProgressProps, type ProgressSize, type ProgressStatus, type ProgressThemeColors, type ProgressType, type ProgressVariant, type QRCodeLevel, type QRCodeProps, type QRCodeStatus, RADAR_SPLIT_AREA_COLORS, RESIZE_KEYBOARD_STEP, type RadarChartDatum, type RadarChartProps, type RadarChartSeries, type RadarPoint, type RadioColorScheme, type RadioGroupProps, type RadioProps, type RafRepeatActionController, type RafRepeatActionOptions, type RateProps, type RateSize, type RepeatAction, type RepeatFrameCallback, type RepeatFrameCancel, type RepeatFrameRequest, type ResizableProps, type ResizeAxis, type ResizeEvent, type ResizeHandlePosition, type ResolveCreatableSelectOptionOptions, type ResolveSelectOptionsOptions, type ResolvedMotionSequenceStep, type ResponsiveBreakpoint, type ResultColorScheme, type ResultProps, type ResultStatus, type RgbColor, type RichTextEditorMode, type RichTextEditorProps, type RichTextEngine, type RichTextEngineInstance, type RichTextEngineMountContext, type RowProps, RowSelectionConfig, type RunUploadQueueOptions, SCATTER_ENTRANCE_CLASS, SCATTER_ENTRANCE_KEYFRAMES, SHAKE_CLASS, STATISTIC_ANIMATION_DURATION_MS, 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 ScrollSpyChangePayload, type ScrollSpyDirection, type ScrollSpyItem, type ScrollSpyKey, type ScrollSpyObserverOptions, type ScrollSpyProps, type SearchHandler, type SegmentedContainerStyle, type SegmentedIndicatorStyle, type SegmentedOption, type SegmentedProps, type SelectChangeHandler, type SelectModelValue, type SelectOption, type SelectOptionGroup, type SelectOptionSlotContext, type SelectOptions, type SelectProps, type SelectSearchDebouncer, type SelectSearchDebouncerOptions, type SelectValue, type SelectValues, type SemanticTokenCategory, type SidebarProps, type SignatureCanvasRect, type SignatureChangePayload, type SignatureExportOptions, type SignatureExportType, type SignaturePoint, type SignatureProps, type SignatureStroke, type SkeletonAnimation, type SkeletonProps, type SkeletonShape, type SkeletonVariant, type SliderProps, SortDirection, type SpaceProps, type SpaceSize, type SplitDirection, type SplitterPaneConfig, type SplitterProps, type SpotlightItem, type SpotlightItemFilter, type SpotlightItemKey, type SpotlightProps, type SpotlightSearchGroup, type SpotlightSearchOptions, type SpotlightSearchResult, type SpotlightSearchState, type StatisticNumberAnimationController, type StatisticNumberAnimationOptions, type StatisticProps, type StepChangeHandler, type StepItem, type StepSize, type StepStatus, type StepperProps, type StepsDirection, type StepsProps, type StringChangeHandler, type StyleAtom, type StyleObject, type StyleValue, type SubMenuProps, type SubmenuHeightTransitionController, type SubmenuHeightTransitionControllerOptions, type SubmenuHeightTransitionElement, type SunburstArc, type SunburstChartDatum, type SunburstChartProps, type SwimlaneGroup, type SwipeDirection, type SwipeGesture, type SwipeGestureOptions, type SwitchProps, TABLE_VIRTUAL_RECOMMENDATION_THRESHOLD, THEME_CONFIG_CSS_VARS, THEME_CSS_VARS, TIGER_BREAKPOINT_CSS_VALUES, TIGER_VIEWPORT_BREAKPOINTS, TRANSITION_BASE, TRANSITION_DURATIONS, TRANSITION_OPACITY, TRANSITION_TRANSFORM, type TabChangeHandler, type TabChangeInfo, type TabEditInfo, type TabIndicatorStyle, type TabNavListStyle, type TabPaneProps, type TabPosition, type TabSize, type TabType, TableCardBreakpoint, TableCardLayoutItem, type TableCellSlotContext, type TableColgroupEntry, type TableColgroupOptions, TableColumn, type TableEmptySlotContext, type TableExpandChangeHandler, type TableExpandSlotContext, type TableFilterChangeHandler, type TableFixedCellClassOptions, type TableFixedColumnOffsetInfo, type TableFixedColumnStyle, type TableFixedHeaderClassOptions, TableFixedPosition, TableProps, type TableResizeFrameCallback, type TableResizeFrameCancel, type TableResizeFrameRequest, type TableResizeObserverController, type TableResizeObserverControllerOptions, type TableResizeObserverFactory, type TableResizeObserverLike, type TableResizeSnapshot, TableResponsiveMode, type TableRowClickHandler, type TableRowKeyCache, type TableSelectionChangeHandler, type TableSelectionState, type TableSelectionStateInput, TableSize, type TableSortChangeHandler, type TableToolbarAction, type TableToolbarColumnSettings, type TableToolbarFilter, type TableToolbarFilterObjectValue, type TableToolbarFilterRenderContext, type TableToolbarFilterValue, type TableToolbarFiltersExtraContext, type TableToolbarProps, type TableToolbarRenderContext, type TableVirtualRecommendation, type TableVirtualRecommendationOptions, type TableVirtualWindow, type TabsProps, type TagColorScheme, type TagProps, type TagSize, type TagThemeColors, type TagVariant, type TaskBoardCard, type TaskBoardCardMoveEvent, type TaskBoardColumn, type TaskBoardColumnMoveEvent, type TaskBoardDragCallbacks, type TaskBoardDragController, type TaskBoardDragData, type TaskBoardDragOptions, type TaskBoardDragSnapshot, type TaskBoardDragState, type TaskBoardMoveValidator, type TaskBoardProps, type TextAlign, type TextColor, type TextProps, type TextSize, type TextTag, type TextWeight, type TextareaProps, type ThemeChangeEvent, type ThemeChangeListener, type ThemeColors, ThemeConfig, ThemeManager, ThemePreset, TigerLocale, TigerLocaleAvatarGroup, TigerLocaleCalendar, TigerLocaleCarousel, TigerLocaleChart, TigerLocaleCronEditor, TigerLocaleDataExport, TigerLocaleDirection, TigerLocaleDrawer, TigerLocaleFileManager, TigerLocaleFormValidation, TigerLocaleFormWizard, TigerLocaleImageEditor, TigerLocaleImageViewer, TigerLocaleInput, TigerLocaleLazyModule, TigerLocaleLoader, TigerLocaleMarkdownEditor, TigerLocaleModal, TigerLocalePagination, TigerLocaleRate, TigerLocaleRichTextEditor, TigerLocaleSelect, TigerLocaleStatus, TigerLocaleTable, TigerLocaleTabs, TigerLocaleTaskBoard, TigerLocaleTour, TigerLocaleTransfer, TigerText, TimeFormat, type TimePickerFocusAction, type TimePickerFocusUnit, TimePickerLabels, type TimePickerOptionUnit, type TimelineItem, type TimelineItemPosition, type TimelineMode, type TimelineProps, type Token, type TokenType, type ToolbarAction, type ToolbarButton, type ToolbarItem, type ToolbarSeparator, type TooltipProps, type TooltipTrigger, type TouchDragState, type TouchDragTracker, type TouchPoint, type TourPlacement, type TourProps, type TourRect, type TourStep, type TourStepLoader, type TourStepSkipPredicate, type TransferDirection, type TransferItem, type TransferMoveResult, type TransferProps, type TransferSearchValue, type TransitionClasses, type TransitionConfig, type TransitionType, type TreeCheckStrategy, type TreeCheckedState, type TreeExpandedState, type TreeFilterFn, type TreeKeyboardAction, type TreeKeyboardContext, type TreeLoadDataFn, type TreeMapChartDatum, type TreeMapChartProps, type TreeMapNode, type TreeNode, type TreeNodeKey, type TreeProps, type TreeSelectProps, type TreeSelectValue, type TreeSelectionMode, type TriggerHandlerMap, type UploadChunk, type UploadDataTransferLike, type UploadDragEventLike, type UploadDragResult, type UploadFile, type UploadFileStatus, type UploadLabelOverrides, type UploadLabels, type UploadListType, type UploadProps, type UploadQueueItem, type UploadQueueStatus, type UploadRejectReason, type UploadRejectedFile, type UploadRequestOptions, type UploadStatusIconSize, VIEW_TRANSITION_CSS, type ViewTransitionLike, type ViewTransitionOptions, type ViewportOffset, type ViewportPlacement, type ViewportQueryOptions, type VirtualColumnRange, type VirtualListItemSize, type VirtualListProps, type VirtualListSizeStrategy, type VirtualRange, type VirtualTableFixedCellClassOptions, type VirtualTableFixedInfo, type VirtualTableProps, type VirtualTableRange, type VisibleGroupItems, type VisibleTreeItem, WEEKDAYS, type WatermarkFont, type WatermarkFrameCallback, type WatermarkFrameCancel, type WatermarkFrameRequest, type WatermarkProps, type WatermarkRenderController, type WatermarkRenderControllerOptions, type WatermarkRenderOptions, type WatermarkResizeObserverFactory, type WatermarkResizeObserverLike, type WheelZoomOptions, type WizardStep, ZH_CN_AVATAR_GROUP_LABELS, ZH_CN_CALENDAR_LABELS, ZH_CN_CAROUSEL_LABELS, ZH_CN_CHART_LABELS, ZH_CN_CRON_EDITOR_LABELS, ZH_CN_DATA_EXPORT_LABELS, ZH_CN_FILE_MANAGER_LABELS, ZH_CN_FORM_VALIDATION_LABELS, ZH_CN_FORM_WIZARD_LABELS, ZH_CN_IMAGE_EDITOR_LABELS, ZH_CN_IMAGE_VIEWER_LABELS, ZH_CN_MARKDOWN_EDITOR_LABELS, ZH_CN_PAGINATION_LABELS, ZH_CN_RATE_LABELS, ZH_CN_RICH_TEXT_EDITOR_LABELS, ZH_CN_SELECT_LABELS, ZH_CN_STATUS_LABELS, ZH_CN_TABLE_LABELS, ZH_CN_TABS_LABELS, ZH_CN_TASK_BOARD_LABELS, ZH_CN_TIME_PICKER_LABELS, ZH_CN_TOUR_LABELS, ZH_CN_TRANSFER_LABELS, ZH_CN_UPLOAD_LABELS, activeOpacityClasses, activePressClasses, activityItemActionsClasses, activityItemBodyClasses, activityItemClasses, activityItemDescriptionClasses, activityItemHeaderClasses, activityItemLayoutClasses, activityItemTitleGroupClasses, addDays, addMonths, addYears, affixWrapperClasses, alertBannerClasses, alertBaseClasses, alertCloseButtonBaseClasses, alertCloseIconPath, alertContentClasses, alertCountdownBarClasses, alertCountdownColorClasses, alertCountdownContainerClasses, alertDescriptionSizeClasses, alertIconContainerClasses, alertIconSizeClasses, alertSizeClasses, alertTitleSizeClasses, anchorAffixClasses, anchorBaseClasses, anchorInkActiveHorizontalClasses, anchorInkActiveVerticalClasses, anchorInkContainerHorizontalClasses, anchorInkContainerVerticalClasses, anchorLinkActiveClasses, anchorLinkBaseClasses, anchorLinkListHorizontalClasses, anchorLinkListVerticalClasses, animationDelayClasses, animationDelayStyles, announceToScreenReader, applyAspectRatio, applyChartBrush, applyFileDragReorder, applyFloatingStyles, applyMarkdownToolbarAction, applyNumberKeyboardInput, applyWheelZoom, autoCompleteBaseClasses, autoCompleteDropdownClasses, autoCompleteEmptyStateClasses, autoCompleteOptionBaseClasses, autoResizeTextarea, autoUpdateFloating, avatarBaseClasses, avatarDefaultBgColor, avatarDefaultTextColor, avatarGroupBaseClasses, avatarGroupItemClasses, avatarGroupOverflowClasses, avatarImageClasses, avatarShapeClasses, avatarSizeClasses, backTopBaseClasses, backTopButtonClasses, backTopContainerClasses, backTopHiddenClasses, backTopIconPath, backTopVisibleClasses, badgeBaseClasses, badgePositionClasses, badgeSizeClasses, badgeTypeClasses, badgeWrapperClasses, barAnimatedTransition, barValueLabelClasses, barValueLabelInsideClasses, barsVariantConfig, breadcrumbContainerClasses, breadcrumbCurrentClasses, breadcrumbEllipsisClasses, breadcrumbItemBaseClasses, breadcrumbLinkClasses, breadcrumbSeparatorBaseClasses, buildActivityGroups, buildChartLegendItems, buildChartSeriesKeys, buildCommentTree, buildCronFieldValue, buildNotificationGroups, buildTriggerHandlerMap, builtinCodeHighlighter, builtinRichTextEngine, buttonBaseClasses, buttonDangerClasses, buttonDisabledClasses, buttonGroupBaseClasses, buttonGroupHorizontalClasses, buttonGroupItemClasses, buttonGroupItemVerticalClasses, buttonGroupVerticalClasses, buttonSizeClasses, calculateAffixState, calculateCheckedState, calculateCirclePath, calculateInitialSizes, calculatePagination, calculateResizeDelta, calculateStepStatus, calculateTransform, calculateVirtualColumnRange, calculateVirtualRange, calendarHeaderClasses, calendarNavButtonClasses, calendarTitleClasses, calendarWeekdayClasses, canAnimateStatisticValue, canRedo, canUndo, captureActiveElement, cardActionsClasses, cardBaseClasses, cardCoverClasses, cardCoverWrapperClasses, cardDirectionClasses, cardFooterClasses, cardHeaderClasses, cardHorizontalBodyClasses, cardHoverClasses, cardSizeClasses, cardVariantClasses, carouselArrowBaseClasses, carouselArrowDisabledClasses, carouselBaseClasses, carouselDotActiveClasses, carouselDotClasses, carouselDotsBaseClasses, carouselDotsPositionClasses, carouselNextArrowClasses, carouselNextArrowPath, carouselPrevArrowClasses, carouselPrevArrowPath, carouselSlideBaseClasses, carouselTrackFadeClasses, carouselTrackScrollClasses, cascaderBaseClasses, cascaderColumnClasses, cascaderDropdownClasses, cascaderEmptyStateClasses, cascaderOptionBaseClasses, cascaderOptionDisabledClasses, cascaderOptionSelectedClasses, cascaderSearchInputClasses, cascaderSearchResultClasses, chartAxisLabelClasses, chartAxisLineClasses, chartAxisTickLineClasses, chartAxisTickTextClasses, chartCanvasBaseClasses, chartGridLineClasses, chartInteractiveClasses, chatStatusBarBaseClasses, checkboxLabelSizeClasses, checkboxSizeClasses, checkedSetsFromState, clampBarWidth, clampDimensions, clampImageAnnotationPoint, clampImageAnnotationUnit, clampPaneSize, clampPercentage, clampScale, clampSignatureLineWidth, clampSlideIndex, clampStepIndex, clampStepperValue, clampValue, clampZoom, classNames, clearCalendarMonthDaysCache, clearChartAxisTickCache, clearFieldErrors, clearPieArcCache, clipCommentTreeDepth, cloneSignatureStrokes, codeBlockContainerClasses, codeBlockCopyButtonBaseClasses, codeBlockCopyButtonCopiedClasses, codeBlockPreClasses, codeEditorActiveLineDarkClasses, codeEditorActiveLineLightClasses, codeEditorBaseClasses, codeEditorDarkClasses, codeEditorDisabledClasses, codeEditorHighlightClasses, codeEditorLightClasses, codeEditorLineNumberClasses, codeEditorLineNumberDarkClasses, codeEditorLineNumberLightClasses, codeEditorTextareaClasses, coerceClassValue, coerceStyleValue, colGutterClasses, collapseBaseClasses, collapseBorderlessClasses, collapseGhostClasses, collapseHeaderTextClasses, collapseIconBaseClasses, collapseIconExpandedClasses, collapseIconPositionClasses, collapsePanelBaseClasses, collapsePanelContentBaseClasses, collapsePanelContentWrapperClasses, collapsePanelHeaderActiveClasses, collapsePanelHeaderBaseClasses, collapsePanelHeaderDisabledClasses, colorPickerBaseClasses, colorPickerInputClasses, colorPickerPanelClasses, colorPickerPresetClasses, colorPickerSliderTrackClasses, colorSwatchBaseClasses, colorSwatchGridClasses, colorSwatchGroupClasses, colorSwatchGroupLabelClasses, columnDragHandleClasses, columnDragOverClasses, componentTokens, componentTransitionMap, composeComponentClasses, computeFloatingPosition, computeFunnelSegments, computeGanttLayout, computeGaugeTicks, computeHeatmapCells, computeOrgChartLayout, computePieHoverOffset, computePieLabelLine, computeSunburstArcs, computeTreeMapNodes, constrainCropRect, containerBaseClasses, containerCenteredClasses, containerMaxWidthClasses, containerPaddingClasses, copyTextToClipboard, countLines, countdownBaseClasses, countdownPrefixClasses, countdownSuffixClasses, countdownValueWrapperClasses, createAffixObserver, createAnchorObserver, createAreaPath, createAriaId, createBackTopVisibilityController, createBandScale, createBuiltinRichTextEngine, createCardDragData, createCarouselAutoplayController, createChartInteractionHandlers, createChartLinkController, createChartPointerMoveScheduler, createChartResizeObserverController, createCollapseTransitionController, createColumnDragData, createCountdownPayload, createDefaultDragSnapshot, createDefaultTransform, createDocumentDragSession, createDragState, createFloatingIdFactory, createFocusTrap, createFormConditionDependencies, createFormErrorMap, createFormHistory, createFormValidationDebouncer, createFormValidationRule, createGanttTimelineTicks, createGaugeAnimation, createGaugeArcPath, createGaugeNeedlePath, createImageAnnotationBox, createImageAnnotationPath, createInfiniteScrollObserver, createInstanceCounter, createLinePath, createLinearScale, createLongPressController, createMotionSequence, createNotificationStackUpdateScheduler, createPaginationIdleValidationScheduler, createPanState, createPieArcPath, createPinchState, createPointScale, createPolygonPath, createRafRepeatActionController, createScrollSpyObserver, createScrollSpyPayload, createSelectOptionFromQuery, createSelectSearchDebouncer, createStatisticNumberAnimation, createSubmenuHeightTransitionController, createTableResizeObserverController, createTableRowKeyCache, createTaskBoardDragController, createTouchDragTracker, createUploadChunks, createUploadQueueItem, createWatermarkRenderController, cronEditorBaseClasses, cronEditorErrorClasses, cronEditorFieldClasses, cronEditorFieldsClasses, cronEditorLabelClasses, cronFieldMetas, cropCanvas, cropUploadTriggerClasses, cropUploadTriggerDisabledClasses, datePickerBaseClasses, datePickerCalendarClasses, datePickerCalendarGridClasses, datePickerCalendarHeaderClasses, datePickerClearButtonClasses, datePickerDayNameClasses, datePickerFooterButtonClasses, datePickerFooterClasses, datePickerInputWrapperClasses, datePickerMobileWheelClasses, datePickerMobileWheelGridClasses, datePickerMobileWheelSelectClasses, datePickerMonthYearClasses, datePickerNavButtonClasses, defaultAlertThemeColors, defaultAutoCompleteFilter, defaultBadgeThemeColors, defaultCascaderFilter, defaultChartLinkController, defaultChatMessageStatusInfo, defaultColorSwatchGroups, defaultCronExpression, defaultCronPresets, defaultImageAnnotationTools, defaultLinkThemeColors, defaultMarkdownToolbar, defaultMessageThemeColors, defaultNotificationThemeColors, defaultProgressThemeColors, defaultRadarTooltipFormatter, defaultRadioColors, defaultRepeatInitialDelay, defaultRepeatInterval, defaultResizeHandles, defaultSeriesXYTooltipFormatter, defaultSortFn, defaultTagThemeColors, defaultTheme, defaultThemeColors, defaultToolbar, defaultTooltipFormatter, defaultTotalText, defaultTransferFilter, defaultXYTooltipFormatter, defineLocale, defineText, deleteNumberKeyboardValue, deriveFileManagerModel, descriptionsBaseClasses, descriptionsCellSizeClasses, descriptionsContentBorderedClasses, descriptionsContentClasses, descriptionsExtraClasses, descriptionsHeaderClasses, descriptionsLabelBorderedClasses, descriptionsLabelClasses, descriptionsSizeClasses, descriptionsTableBorderedClasses, descriptionsTableClasses, descriptionsTitleClasses, descriptionsVerticalContentClasses, descriptionsVerticalItemClasses, descriptionsVerticalLabelClasses, descriptionsVerticalWrapperClasses, descriptionsWrapperClasses, designTokens, devWarn, dotSizeClasses, dotsVariantConfig, downloadChartBlob, downloadChartPng, downloadChartSvg, downsampleSeriesData, drawSignatureStrokes, dynamicSizeStrategy, easeOutCubic, editableCellInputClasses, emptyActionsClasses, emptyBaseClasses, emptyDescriptionClasses, emptyIllustrationPaths, emptyIllustrationViewBox, emptyImageClasses, ensureBarMinHeight, escapeHighlightHtml, escapeMarkdownHtml, evaluateFormCondition, evaluateFormConditions, exportChartPng, extractMentionQuery, fileManagerBreadcrumbClasses, fileManagerBreadcrumbItemClasses, fileManagerBreadcrumbSeparatorClasses, fileManagerContainerClasses, fileManagerContentClasses, fileManagerEmptyClasses, fileManagerGridItemClasses, fileManagerGridItemSelectedClasses, fileManagerItemIconClasses, fileManagerItemMetaClasses, fileManagerItemNameClasses, fileManagerListItemClasses, fileManagerListItemSelectedClasses, fileManagerLoadingClasses, fileManagerSearchClasses, fileManagerToolbarClasses, fileToUploadFile, filterAutoCompleteOptions, filterCards, filterCascaderOptions, filterColumns, filterData, filterDataAdvanced, filterFileItems, filterHiddenColumns, filterHiddenFiles, filterMenuItems, filterOptions, filterTableData, filterTransferItems, filterTreeNodes, filterTreeSelectNodes, findActiveAnchor, findCascaderOption, findColumnFromPoint, findFirstEnabledIndex, findHotkeyMatch, findLastEnabledIndex, findMarkdownHotkeyMatch, findNextEnabledIndex, findNextUnskippedStep, findNode, findTreeSelectNode, fixedSizeStrategy, flattenCascaderOptions, flattenColorSwatchGroups, flattenScrollSpyItems, flattenSelectOptions, flattenTreeSelectNodes, floatButtonBaseClasses, floatButtonDisabledClasses, floatButtonGroupClasses, floatButtonGroupExpandClasses, floatButtonIconSizeClasses, floatButtonShapeClasses, floatButtonSizeClasses, floatButtonTypeClasses, focusElement, focusFirst, focusFirstChildItem, focusFirstMenuItem, focusMenuEdge, focusRingClasses, focusRingInsetClasses, focusTimePickerOption, formatActivityTime, formatBadgeContent, formatBytes, formatChatTime, formatColorString, formatCommentTime, formatCountdown, formatDate, formatDateWithLocale, formatFileSize, formatFileSizeLabel, formatGanttDate, formatInputNumberDisplay, formatIntlNumber, formatMonthYear, formatPageAriaLabel, formatPaginationPageIndicator, formatPaginationTotal, formatPrecision, formatProgressText, formatStatisticValue, formatTableSelectRowAriaLabel, formatTableSortByText, formatTime, formatTimeDisplay, formatTimeDisplayWithLocale, freezeTableColumnWidths, ganttAxisTextClasses, ganttBarClasses, ganttDependencyClasses, ganttLabelClasses, ganttProgressClasses, ganttRowClasses, ganttTodayLineClasses, generateAvatarColor, generateFileId, generateHours, generateLineNumbers, generateMinutes, generateQRMatrix, generateSeconds, getAccessibleTransitionClasses, getActiveElement, getActiveIndex, getActiveLineIndex, getActiveTourStepPosition, getActiveTourSteps, getAlertIconPath, getAlertTypeClasses, getAlignClasses, getAllKeys, getAllTreeSelectKeys, getAnchorInkActiveClasses, getAnchorInkContainerClasses, getAnchorLinkClasses, getAnchorLinkListClasses, getAnchorTargetElement, getAnchorWrapperClasses, getAreaGradientPrefix, getArrowStyles, getAutoCompleteInputClasses, getAutoCompleteOptionClasses, getAutoExpandKeys, getAvatarGroupClasses, getAvatarGroupItemClasses, getAvatarGroupLabels, getAvatarGroupOverflowClasses, getAvatarGroupOverflowLabel, getAvatarGroupOverflowText, getBadgeVariantClasses, getBarGradientPrefix, getBarGrowAnimationStyle, getBarValueLabelY, getBodyScrollLockCount, getBreadcrumbCollapsedItems, getBreadcrumbItemClasses, getBreadcrumbLinkClasses, getBreadcrumbSeparatorClasses, getBuiltInPaginationContainerClasses, getButtonGroupClasses, getButtonVariantClasses, getCalendarContainerClasses, getCalendarDayClasses, getCalendarDays, getCalendarLabels, getCalendarMonthClasses, getCalendarMonthDaysCacheSize, getCardClasses, getCardColumns, getCardGridInfo, getCarouselArrowClasses, getCarouselContainerClasses, getCarouselDotClasses, getCarouselDotsClasses, getCarouselLabels, getCarouselTouchPoint, getCascaderColumns, getCascaderDisplayLabel, getCascaderOptionClasses, getCascaderOptionPath, getCascaderOptionsAtLevel, getCascaderTriggerClasses, getChartAnimationStyle, getChartAxisTickCacheSize, getChartAxisTicks, getChartElementOpacity, getChartEntranceTransform, getChartGridLineDasharray, getChartInnerRect, getChartLabels, getChartSvgDataUrl, getChartTooltipTransform, getChatMessageStatusInfo, getChatStatusBarClasses, getCheckboxCellClasses, getCheckboxClasses, getCheckboxLabelClasses, getCheckedKeysByStrategy, getCircleSize, getCodeBlockContainerClasses, getCodeBlockCopyButtonClasses, getCodeEditorActiveLineClasses, getCodeEditorContainerClasses, getColGutterClasses, getColMergedStyleVars, getColOrderStyleVars, getColStyleVars, getCollapseContainerClasses, getCollapseIconClasses, getCollapsePanelClasses, getCollapsePanelHeaderClasses, getColorPickerTriggerClasses, getColorSwatchButtonClasses, getColorSwatchCheckClasses, getColorSwatchOptionKey, getColumnCardCount, getColumnDropIndex, getComponentMotionStyle, getComponentMotionTransition, getComponentTransition, getContainerClasses, getContainerHeight, getContainerScrollTop, getCountdownParts, getCountdownRemaining, getCountdownTitleClasses, getCountdownValueClasses, getCreateSelectOptionLabel, getCronEditorControlClasses, getCronEditorLabels, getCronExpressionParts, getCronFieldIssue, getCronFieldValue, getCropperHandleClasses, getCropperResult, getCurrentActiveTourStep, getCurrentTime, getCyclicIndex, getDataExportLabels, getDatePickerCalendarCellState, getDatePickerDayCellClasses, getDatePickerIconButtonClasses, getDatePickerInputClasses, getDatePickerLabels, getDatePickerLocaleCode, getDayNames, getDaysInMonth, getDefaultDragConfig, getDependentFields, getDescendantKeys, getDescriptionsClasses, getDescriptionsContentClasses, getDescriptionsLabelClasses, getDescriptionsTableClasses, getDescriptionsVerticalItemClasses, getDisclosureStateAttr, getDividerClasses, getDividerStyle, getDragAreaClasses, getDrawerBodyClasses, getDrawerCloseButtonClasses, getDrawerContainerClasses, getDrawerFooterClasses, getDrawerHeaderClasses, getDrawerMaskClasses, getDrawerPanelClasses, getDrawerSwipeCloseDirection, getDrawerTitleClasses, getDropIndex, getDropdownChevronClasses, getDropdownContainerClasses, getDropdownItemClasses, getDropdownMenuClasses, getDropdownTriggerClasses, getEditableCellClasses, getEditorAreaClasses, getElementOffsetTop, getEmptyDescription, getEnabledScrollSpyItems, getErrorFields, getExpandIconCellClasses, getExpandIconClasses, getExpandedRowClasses, getExpandedRowContentClasses, getFieldDependencies, getFieldError, getFileExtension, getFileExtensionName, getFileItemClasses, getFileListItemClasses, getFileManagerContainerClasses, getFileManagerLabels, getFirstDayOfMonth, getFirstVisibleChildKey, getFixedColumnOffsets, getFixedColumnPosition, getFixedColumnStyle, getFixedVirtualRange, getFlexClasses, getFloatingMiddleware, getFocusTrapNavigation, getFocusableElements, getFormConditionDependencies, getFormItemAsteriskClasses, getFormItemClasses, getFormItemContentClasses, getFormItemErrorClasses, getFormItemFieldClasses, getFormItemLabelClasses, getFormValidationLabels, getFormWizardLabels, getFunnelGradientPrefix, getGanttDependencyPath, getGanttTaskAriaLabel, getGanttTaskClasses, getGaugeGradientPrefix, getGestureTouchDistance, getGestureTouchPoint, getGridColumnClasses, getGroupHeaderCellClasses, getGutterStyles, getHeatmapCellIndexAtPoint, getImageAnnotationCenter, getImageAnnotationPathData, getImageAnnotationPointFromClient, getImageAnnotationShapeAriaLabel, getImageAnnotationStrokeColor, getImageAnnotationToolButtonClasses, getImageAnnotationToolLabel, getImageEditorLabels, getImageGroupClasses, getImageImgClasses, getImageTransformStyle, getImageViewerLabels, getImmediateTigerLocale, getInfiniteScrollContainerClasses, getInitialCollapseContentStyle, getInitialCropRect, getInitialPickerActiveIndex, getInitialScrollSpyActiveKey, getInitialSubmenuHeightTransitionStyle, getInitials, getInputAffixClasses, getInputClasses, getInputClearButtonClasses, getInputCountClasses, getInputErrorClasses, getInputGroupAddonClasses, getInputGroupClasses, getInputNumberFocusRingColor, getInputNumberInputClasses, getInputNumberSideButtonClasses, getInputNumberSizeClasses, getInputNumberStatusClasses, getInputNumberStepButtonClasses, getInputNumberWrapperClasses, getInputPasswordToggleClasses, getInputWrapperClasses, getIntlPluralCategory, getJustifyClasses, getKanbanContainerClasses, getLayoutContentClasses, getLayoutHeaderClasses, getLeafKeys, getLineGradientPrefix, getLineNumberClasses, getLinearChartTickValues, getLinkVariantClasses, getListClasses, getListHeaderFooterClasses, getListItemClasses, getLoadingBarClasses, getLoadingBarsWrapperClasses, getLoadingClasses, getLoadingDotClasses, getLoadingDotsWrapperClasses, getLoadingOverlaySpinnerClasses, getLoadingTextClasses, getLocaleDirection, getMarkdownBodyClasses, getMarkdownContainerClasses, getMarkdownEditorLabels, getMarkdownToolbarButtonClasses, getMarkdownToolbarButtons, getMentionsInputClasses, getMentionsOptionClasses, getMenuButtons, getMenuClasses, getMenuItemClasses, getMenuItemIndent, getMenuItems, getMenuNavigationKeys, getMessageIconPath, getMessageTypeClasses, getModalContainerClasses, getModalContentClasses, getMonthDays, getMonthNames, getNextActiveKey, getNextColorSwatchIndex, getNextImageAnnotationTool, getNextSlideIndex, getNextTableSelectAllKeys, getNotificationIconPath, getNotificationTypeClasses, getNumberExtent, getNumberKeyboardAction, getNumberKeyboardKeyClasses, getNumberKeyboardKeys, getNumberKeyboardMaxLength, getNumberKeyboardPrecision, getOffsetClasses, getOrderClasses, getOrgChartLinkPath, getOrgChartNodeAriaLabel, getOrgChartNodeClasses, getPageNumbers, getPageRange, getPageSizeSelectorClasses, getPaginationButtonActiveClasses, getPaginationButtonBaseClasses, getPaginationContainerClasses, getPaginationEllipsisClasses, getPaginationJumperPage, getPaginationLabels, getPaneStyle, getParagraphRowWidth, getParentKeys, getPathDrawAnimationStyle, getPathDrawStyles, getPathLength, getPendingDotClasses, getPickerComboboxAria, getPickerListboxAria, getPickerNavigationIndex, getPickerOptionAria, getPickerOptionId, getPickerTriggerKeyAction, getPictureCardClasses, getPieArcCacheSize, getPieArcs, getPieDrawAnimationStyle, getPieGradientPrefix, getPlacementSide, getPopconfirmArrowClasses, getPopconfirmButtonBaseClasses, getPopconfirmButtonsClasses, getPopconfirmCancelButtonClasses, getPopconfirmContainerClasses, getPopconfirmContentClasses, getPopconfirmDescriptionClasses, getPopconfirmIconClasses, getPopconfirmIconPath, getPopconfirmOkButtonClasses, getPopconfirmTitleClasses, getPopconfirmTriggerClasses, getPopoverContainerClasses, getPopoverContentClasses, getPopoverTriggerClasses, getPrevSlideIndex, getPreviewNavState, getPrintLayoutClasses, getProgressTextColorClasses, getProgressVariantClasses, getQuickJumperInputClasses, getRadarAngles, getRadarGradientPrefix, getRadarLabelAlign, getRadarPoints, getRadioDotClasses, getRadioGroupClasses, getRadioLabelClasses, getRadioVisualClasses, getRateLabels, getRateStarClasses, getResizableHandleClasses, getResizeHandleOrientation, getResizeKeyboardDelta, getResultColorScheme, getResultIconPath, getRichTextContainerClasses, getRichTextEditorLabels, getRowGutterClasses, getRowGutterStyleVars, getRowKey, getScatterGradientPrefix, getScatterHoverShadow, getScatterHoverSize, getScatterPointPath, getScrollSpyItemByHref, getScrollSpyItemByKey, getScrollSpyItemClasses, getScrollSpyKeyString, getScrollSpyListClasses, getScrollSpyRootClasses, getScrollSpyTargetHrefs, getScrollTop, getScrollTransform, getSecureRel, getSegmentedContainerClasses, getSegmentedContainerStyle, getSegmentedIndicatorClasses, getSegmentedIndicatorStyle, getSegmentedOptionClasses, getSelectLabels, getSelectOptionClasses, getSelectSizeClasses, getSelectTriggerClasses, getSelectVirtualItemHeight, getSeparatorContent, getShortDayNames, getShortMonthNames, getSidebarStyle, getSignatureCanvasDataUrl, getSignatureCanvasWrapClasses, getSignaturePoint, getSizeTextClasses, getSkeletonClasses, getSkeletonDimensions, getSliderThumbClasses, getSliderTooltipClasses, getSliderTrackClasses, getSortIconClasses, getSpaceClasses, getSpaceStyle, getSpanClasses, getSpinnerSVG, getSplitterContainerClasses, getSplitterGutterClasses, getSplitterGutterHandleClasses, getSpotlightFuzzyScore, getSpotlightOptionClasses, getSpotlightSearchState, getSpotlightSearchText, getSpotlightShortcutLabel, getStableChartGradientPrefix, getStaggerDelay, getStaggeredMotionStyle, getStatisticTitleClasses, getStatisticValueClasses, getStatusLabels, getStatusVariant, getStepContentClasses, getStepDescriptionClasses, getStepIconClasses, getStepItemClasses, getStepTailClasses, getStepTitleClasses, getStepperButtonClasses, getStepperInputClasses, getStepsContainerClasses, getSubMenuExpandIconClasses, getSubMenuTitleClasses, getSubmenuPopupZIndex, getSunburstGradientPrefix, getSvgDefaultAttrs, getSwitchClasses, getSwitchThumbClasses, getTabIndicatorClasses, getTabIndicatorStyle, getTabItemClasses, getTabNavClasses, getTabNavListClasses, getTabNavListStyle, getTabPaneClasses, getTableCellClasses, getTableColgroup, getTableFixedCellClasses, getTableFixedHeaderCellClasses, getTableHeaderCellClasses, getTableHeaderClasses, getTableLabels, getTableResponsiveCardClasses, getTableResponsiveCardListClasses, getTableResponsiveTableClasses, getTableRowClasses, getTableSelectionState, getTableVirtualRecommendation, getTableVirtualWindow, getTableWrapperClasses, getTabsContainerClasses, getTabsLabels, getTagVariantClasses, getTaskBoardLabels, getTextClasses, getThemeColor, getTimePeriodLabels, getTimePickerIconButtonClasses, getTimePickerInputClasses, getTimePickerItemClasses, getTimePickerLabels, getTimePickerOptionAriaLabel, getTimePickerPeriodButtonClasses, getTimePickerRangeTabButtonClasses, getTimelineContainerClasses, getTimelineContentClasses, getTimelineDotClasses, getTimelineHeadClasses, getTimelineItemClasses, getTimelineTailClasses, getTokenClasses, getToolbarButtonClasses, getToolbarButtons, getTooltipContainerClasses, getTooltipContentClasses, getTooltipTriggerClasses, getTotalPages, getTotalTextClasses, getTouchDistance, getTourLabels, getTourPopoverPosition, getTourSpotlightStyle, getTourTargetRect, getTransferButtonClasses, getTransferCheckboxClasses, getTransferItemClasses, getTransferLabels, getTransformOrigin, getTransitionClasses, getTreeKeyboardAction, getTreeMapGradientPrefix, getTreeNodeClasses, getTreeNodeExpandIconClasses, getTreeSelectDisplayLabel, getTreeSelectNodeClasses, getTreeSelectTriggerClasses, getUploadButtonClasses, getUploadDataTransferFiles, getUploadLabels, getUploadResumeKey, getUploadStatusIconClasses, getValidatedPaginationJumperValue, getValidationOrder, getValueByPath, getViewTransitionNameStyle, getViewportOffsetStyle, getViewportWidth, getVirtualRowKey, getVirtualTableContainerClasses, getVirtualTableFixedCellClasses, getVirtualTableFixedCellStyle, getVirtualTableFixedColumnPosition, getVirtualTableFixedHeaderCellClasses, getVirtualTableFixedInfo, getVirtualTableRowClasses, getVisibleGroupItems, getVisibleTreeItems, getWatermarkOverlayStyle, groupBySwimlane, groupDataByColumn, groupItemsIntoRows, handleDragEnd, handleDragOver, handleDragStart, handleDrop, handleMenuNavigation, handleNodeCheck, handleTabKey, handleUploadDragLeave, handleUploadDragOver, handleUploadDrop, hasErrors, hasGutter, hasTableSelectionColumn, hexToRgb, highContrastTheme, hsvToRgb, iconSizeClasses, iconSvgBaseClasses, iconSvgDefaultStrokeLinecap, iconSvgDefaultStrokeLinejoin, iconSvgDefaultStrokeWidth, iconWrapperClasses, imageAnnotationContainerClasses, imageAnnotationDeleteButtonClasses, imageAnnotationImageClasses, imageAnnotationLabelClasses, imageAnnotationOverlayClasses, imageAnnotationReadonlyOverlayClasses, imageAnnotationStageClasses, imageAnnotationToolButtonClasses, imageAnnotationToolbarClasses, imageBaseClasses, imageCropperContainerClasses, imageCropperDragAreaClasses, imageCropperGuideClasses, imageCropperImgClasses, imageCropperMaskClasses, imageCropperSelectionClasses, imageErrorClasses, imageErrorIconPath, imageGroupBaseClasses, imageLoadingClasses, imagePreviewCloseBtnClasses, imagePreviewCounterClasses, imagePreviewCursorClass, imagePreviewImgClasses, imagePreviewMaskClasses, imagePreviewNavBtnClasses, imagePreviewToolbarBtnClasses, imagePreviewToolbarClasses, imagePreviewWrapperClasses, imageViewerBackdropClasses, imageViewerCloseBtnClasses, imageViewerCounterClasses, imageViewerIcons, imageViewerImgClasses, imageViewerNavBtnClasses, imageViewerToolbarBtnClasses, imageViewerToolbarClasses, infiniteScrollContainerClasses, infiniteScrollEndClasses, infiniteScrollLoaderClasses, infiniteScrollSentinelClasses, initRovingTabIndex, injectDropdownStyles, injectLoadingAnimationStyles, injectShakeStyle, injectSvgAnimationStyles, injectViewTransitionStyles, inputFocusClasses, inputGroupAddonBaseClasses, inputGroupAddonSizeClasses, inputGroupBaseClasses, inputGroupCompactClasses, inputGroupSpacedClasses, inputNumberControlsRightClasses, inputNumberDownIconPathD, inputNumberMinusIconPathD, inputNumberPlusIconPathD, inputNumberUpIconPathD, interactiveClasses, interpolateColor, interpolateColorOklch, interpolateStatisticValue, interpolateUploadLabel, isActivationKey, isAtMax, isAtMin, isBrowser, isCascaderOptionExpandable, isColorSwatchSelected, isContentEmpty, isCrossContainerDrag, isDateInRange, isDragEnabled, isDrawerSwipeCloseGesture, isEnterKey, isEscapeKey, isEventOutside, isHTMLElement, isHttpResultStatus, isImageAnnotationPathClosed, isImageAnnotationShapeTool, isInlineFormat, isKeyActive, isKeyOpen, isKeySelected, isLazyTigerLocale, isLongPress, isMarkdownToolbarSeparator, isMobile, isModalSheetSwipeCloseGesture, isNextDisabled, isOptionGroup, isPanelActive, isPrevDisabled, isRtlLocale, isSameContainerDrag, isSameDay, isSignatureEmpty, isSpaceKey, isTabKey, isTablet, isTimeInRange, isToday, isToolbarSeparator, isTourStepSkipped, isValidDragHandle, isValidHex, isValidUrl, isWipExceeded, kanbanAddColumnClasses, kanbanCardCountClasses, kanbanFilterHighlightClasses, kanbanSwimlaneClasses, kanbanSwimlaneCollapsedClasses, kanbanSwimlaneDotClasses, kanbanSwimlaneHeaderClasses, layoutContentClasses, layoutFooterClasses, layoutHeaderClasses, layoutRootClasses, layoutSidebarClasses, layoutSidebarCollapsedClasses, 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, lockBodyScroll, manageLiveRegion, mapToolbarAction, markdownEditorBodyClasses, markdownEditorContainerBase, markdownEditorContainerDisabled, markdownEditorEmptyPreviewClasses, markdownEditorPreviewClasses, markdownEditorSplitDividerClasses, markdownEditorTextareaClasses, markdownEditorToolbarButtonActive, markdownEditorToolbarButtonBase, markdownEditorToolbarClasses, markdownEditorToolbarGroupClasses, markdownEditorToolbarSeparatorClasses, markdownHotkeyMatches, markdownModeLabels, matchesHotkey, matchesMenuSearch, measureTableResizeSnapshot, mentionsDropdownClasses, menuBaseClasses, menuCollapsedClasses, menuCollapsedIconClasses, menuCollapsedItemClasses, menuCollapsedModeClasses, menuDarkThemeClasses, menuItemBaseClasses, menuItemDisabledClasses, menuItemFocusClasses, menuItemGroupTitleClasses, menuItemHoverDarkClasses, menuItemHoverLightClasses, menuItemIconClasses, menuItemSelectedDarkClasses, menuItemSelectedLightClasses, menuLightThemeClasses, menuModeClasses, menuSearchEmptyClasses, menuSearchFieldClasses, menuSearchInputClasses, mergeStyleValues, mergeTigerLocale, messageBaseClasses, messageCloseButtonClasses, messageCloseIconPath, messageContainerBaseClasses, messageContentClasses, messageIconClasses, messageIconPaths, messageLoadingSpinnerClasses, messagePositionClasses, minimalTheme, minusPathD, modalBodyClasses, modalCloseButtonClasses, modalContentWrapperClasses, modalFooterClasses, modalHeaderClasses, modalMaskClasses, modalMobileSheetClasses, modalSizeClasses, modalTitleClasses, modalWrapperClasses, modernTheme, moveCard, moveCropRect, moveFocusInMenu, moveItemBetweenContainers, movePan, movePinch, moveTransferItems, naturalTheme, navigateToFolder, nextIconPath, normalizeActiveKeys, normalizeChartBrushRange, normalizeChartPadding, normalizeColorSwatchGroups, normalizeColorSwatchValue, normalizeCronExpression, normalizeDate, normalizeGanttDate, normalizeImageAnnotationBox, normalizeMenuSearchQuery, normalizeNumberKeyboardValue, normalizeOrgChartData, normalizeRotation, normalizeSpotlightText, normalizeStringOption, normalizeSvgAttrs, notificationActionButtonClasses, notificationActionButtonTypeClasses, notificationActionsClasses, notificationBaseClasses, notificationCloseButtonClasses, notificationCloseIconClasses, notificationCloseIconPath, notificationContainerBaseClasses, notificationContentClasses, notificationDescriptionClasses, notificationIconClasses, notificationIconPaths, notificationPositionClasses, notificationTitleClasses, numberKeyboardConfirmKeyClasses, numberKeyboardEmptyKeyClasses, numberKeyboardGridClasses, numberKeyboardKeyClasses, numberKeyboardRootClasses, orderTableFixedColumns, orgChartLinkClasses, orgChartNodeClasses, orgChartNodeLabelClasses, orgChartNodeRectClasses, orgChartNodeSubtitleClasses, orgChartNodeTitleClasses, padCountdownNumber, padTwo, paginateData, parseColorInput, parseCountdownTimestamp, parseCronFieldControl, parseDate, parseDragData, parseHeight, parseHotkey, parseInputNumberValue, parseInputValue, parseHeight as parseMarkdownHeight, parsePaneSize, parseTime, parseWidthToPx, plusPathD, polarToCartesian, popconfirmErrorIconPath, popconfirmIconPathStrokeLinecap, popconfirmIconPathStrokeLinejoin, popconfirmIconStrokeWidth, popconfirmIconViewBox, popconfirmInfoIconPath, popconfirmQuestionIconPath, popconfirmSuccessIconPath, popconfirmWarningIconPath, positionMentionsDropdown, prefersReducedMotion, prepareUploadFiles, prevIconPath, previewCloseIconPath, primitiveColors, primitiveDuration, primitiveEasing, primitiveFont, primitiveRadius, primitiveShadow, primitiveSpace, printLayoutBaseClasses, printLayoutFooterClasses, printLayoutHeaderClasses, printLayoutPaddingClasses, printLayoutPageBreakClasses, printLayoutPrintStyles, printPageSizeDimensions, professionalTheme, progressCircleBaseClasses, progressCircleSizeClasses, progressCircleTextClasses, progressCircleTrackStrokeClasses, progressLineBaseClasses, progressLineInnerClasses, progressLineSizeClasses, progressStripedAnimationClasses, progressStripedClasses, progressTextBaseClasses, progressTextSizeClasses, progressTrackBgClasses, pushFormHistory, qrcodeContainerClasses, qrcodeExpiredTextClasses, qrcodeOverlayClasses, qrcodeRefreshClasses, radioDisabledCursorClasses, radioDotBaseClasses, radioFocusVisibleClasses, radioGroupDefaultClasses, radioHoverBorderClasses, radioLabelBaseClasses, radioRootBaseClasses, radioSizeClasses, radioVisualBaseClasses, rateActiveColor, rateBaseClasses, rateHoverColor, rateInactiveColor, readFileAsDataUrl, redoFormHistory, registerImageGroupItem, removeCssVarsCached, renderMarkdownInline, renderMarkdownToHtml, renderTokenHtml, renderTokensHtml, renderWatermarkCanvas, renderWatermarkDataUrl, reorderColumns, reorderItems, replaceKeys, resetAreaGradientCounter, resetBarGradientCounter, resetDevWarnCache, resetFunnelGradientCounter, resetGaugeGradientCounter, resetIconPath, resetLineGradientCounter, resetPieGradientCounter, resetRadarGradientCounter, resetScatterGradientCounter, resetSunburstGradientCounter, resetTreeMapGradientCounter, resizableBaseClasses, resizableHandleBaseClasses, resizableHandleDisabledClasses, resizableHandleDraggingClasses, resizableHandlePositionStyles, resizeCropRect, resizePanes, resolveAffixTarget, resolveCardPadding, resolveCarouselSwipeDirection, resolveChartPalette, resolveChartTooltipContent, resolveChartTooltipPosition, resolveConditionalFormRules, resolveCreatableSelectOption, resolveDragConfig, resolveFileOpen, resolveFormConditionState, resolveFormFieldConditionState, resolveHeatmapRenderMode, resolveLocaleText, resolveMotionDuration, resolveMotionEasing, resolveMultiSeriesTooltipContent, resolvePaginationDisplayMode, resolvePanGesture, resolvePinchScale, resolveResponsiveChartSize, resolveResponsiveValue, resolveSelectFilteredOptions, resolveSeriesData, resolveSwipeGesture, resolveTableColumnWidth, resolveTigerLocale, resolveWatermarkFont, restoreFocus, resultBaseClasses, resultExtraClasses, resultIconClasses, resultIconContainerBaseClasses, resultSubTitleClasses, resultTitleClasses, rgbToHex, rgbToHsv, richTextContainerBase, richTextContainerDisabled, richTextEditorAreaBase, richTextEditorAreaReadOnly, richTextHtmlToMode, richTextModeToHtml, richTextPlaceholderClasses, richTextToolbarButtonActive, richTextToolbarButtonBase, richTextToolbarClasses, richTextToolbarSeparatorClasses, rowGutterClasses, runStepValidation, runUploadQueue, sanitizeHtml, scatterPointTransitionClasses, scrollSpyItemActiveClasses, scrollSpyItemBaseClasses, scrollSpyItemDisabledClasses, scrollSpyListHorizontalClasses, scrollSpyListVerticalClasses, scrollSpyNestedListClasses, scrollSpyRootClasses, scrollSpyStickyClasses, scrollToAnchor, scrollToScrollSpyItem, scrollToTop, selectBaseClasses, selectDoneActionClasses, selectDoneButtonClasses, selectDropdownBaseClasses, selectEmptyStateClasses, selectGroupLabelClasses, selectOptionBaseClasses, selectOptionDisabledClasses, selectOptionSelectedClasses, selectSearchInputClasses, semanticTokens, serializeChartSvg, setCssVarsCached, setDragData, setThemeColors, shouldCloseOnMaskClick, shouldCommitImageAnnotationBox, shouldHideBadge, shouldLoadMore, shouldReduceMotion, shouldShowBackTop, signatureCanvasClasses, signatureCanvasWrapClasses, signatureClearButtonClasses, signatureRootClasses, signatureStrokeToPath, signatureStrokesToSvg, signatureSvgToDataUrl, signatureToolbarClasses, sizesToPercentages, skeletonAnimationClasses, skeletonBaseClasses, skeletonShapeClasses, skeletonVariantDefaults, sliceBreadcrumbPath, sliderBaseClasses, sliderDisabledClasses, sliderGetKeyboardValue, sliderGetPercentage, sliderGetValueFromPosition, sliderNormalizeValue, sliderRangeClasses, sliderResolveMarks, sliderSizeClasses, sliderThumbClasses, sliderTooltipClasses, sliderTrackClasses, sortActivityGroups, sortData, sortFileItems, sortNotificationGroups, splitTransferData, splitterBaseClasses, splitterGutterBaseClasses, splitterGutterDisabledClasses, splitterGutterDraggingClasses, splitterGutterHandleClasses, splitterGutterHandleHorizontalClasses, splitterGutterHandleVerticalClasses, splitterGutterHorizontalClasses, splitterGutterVerticalClasses, splitterHorizontalClasses, splitterPaneBaseClasses, splitterVerticalClasses, spotlightEmptyClasses, spotlightGroupClasses, spotlightGroupLabelClasses, spotlightHeaderClasses, spotlightInputClasses, spotlightListClasses, spotlightMaskClasses, spotlightPanelClasses, spotlightRootClasses, spotlightTitleClasses, stackSeriesData, starPathD, starViewBox, startPan, startPinch, startTigercatViewTransition, statisticBaseClasses, statisticPrefixClasses, statisticSuffixClasses, stepFinishChar, stepFinishIconPathD, stepFinishIconStrokeWidth, stepFinishIconViewBox, stepValue, stepperBaseClasses, stepperIconViewBox, submenuContentHorizontalClasses, submenuContentHorizontalNestedClasses, submenuContentInlineClasses, submenuContentPopupClasses, submenuContentVerticalClasses, submenuExpandIconClasses, submenuExpandIconExpandedClasses, submenuHeightTransitionClasses, submenuTitleClasses, supportsViewTransitions, switchBaseClasses, switchSizeClasses, switchThumbSizeClasses, switchThumbTranslateClasses, tabAddButtonClasses, tabCloseButtonClasses, tabContentBaseClasses, tabFocusClasses, tabIndicatorBaseClasses, tabIndicatorPositionClasses, tabItemBaseClasses, tabItemCardActiveClasses, tabItemCardClasses, tabItemDisabledClasses, tabItemEditableCardActiveClasses, tabItemEditableCardClasses, tabItemLineActiveClasses, tabItemLineClasses, tabItemPillsActiveClasses, tabItemPillsClasses, tabItemSizeClasses, tabNavBaseClasses, tabNavLineBorderClasses, tabNavListBaseClasses, tabNavListCenteredClasses, tabNavListPositionClasses, tabNavPositionClasses, tabPaneBaseClasses, tabPaneHiddenClasses, tableBackgroundClasses, tableBaseClasses, tableContainerClasses, tableEmptyStateClasses, tableFixedCellStripedClasses, tableGroupHeaderClasses, tableHeaderBackgroundClasses, tableLoadingOverlayClasses, tableResponsiveCardClasses, tableResponsiveCardLabelClasses, tableResponsiveCardListClasses, tableResponsiveCardRowClasses, tableResponsiveCardTitleClasses, tableResponsiveCardValueClasses, tableResponsiveTableClasses, tableRowGroupHoverClasses, tableRowHoverClasses, tableRowStripedClasses, tableSummaryRowClasses, tabsBaseClasses, tagBaseClasses, tagCloseButtonBaseClasses, tagCloseIconPath, tagPillClasses, tagSizeClasses, taskBoardAddCardClasses, taskBoardBaseClasses, taskBoardCardClasses, taskBoardCardDraggingClasses, taskBoardColumnBodyClasses, taskBoardColumnClasses, taskBoardColumnDraggingClasses, taskBoardColumnDropTargetClasses, taskBoardColumnHeaderClasses, taskBoardDropIndicatorClasses, taskBoardEmptyClasses, taskBoardWipExceededClasses, textAlignClasses, textColorClasses, textDecorationClasses, textSizeClasses, textWeightClasses, themeConfigToCssVars, timePickerBaseClasses, timePickerClearButtonClasses, timePickerColumnClasses, timePickerColumnHeaderClasses, timePickerColumnListClasses, timePickerDesktopPanelContentClasses, timePickerFooterButtonClasses, timePickerFooterClasses, timePickerInputWrapperClasses, timePickerMobileWheelClasses, timePickerMobileWheelSelectClasses, timePickerPanelClasses, timePickerPanelContentClasses, timePickerRangeHeaderClasses, timelineContainerClasses, timelineContentClasses, timelineCustomDotClasses, timelineDescriptionClasses, timelineDotClasses, timelineHeadClasses, timelineItemClasses, timelineLabelClasses, timelineListClasses, timelineTailClasses, to12HourFormat, to24HourFormat, toActivityTimelineItems, toCSSSize, toDragItems, toFileDragItem, toggleFileSelection, toggleKey, togglePanelKey, tokenClassesDark, tokenClassesLight, tokenizeLine, tourCloseButtonClasses, tourDescriptionClasses, tourFooterClasses, tourIndicatorClasses, tourMaskClasses, tourPopoverClasses, tourTitleClasses, transferBaseClasses, transferEmptyClasses, transferOperationClasses, transferPanelBodyClasses, transferPanelClasses, transferPanelHeaderClasses, transferSearchClasses, transitionPresets, treeBaseClasses, treeEmptyStateClasses, treeLineClasses, treeLoadingClasses, treeNodeCheckboxClasses, treeNodeChildrenClasses, treeNodeContentClasses, treeNodeDisabledClasses, treeNodeExpandIconClasses, treeNodeExpandIconExpandedClasses, treeNodeHoverClasses, treeNodeIconClasses, treeNodeIndentClasses, treeNodeLabelClasses, treeNodeSelectedClasses, treeNodeWrapperClasses, treeSelectBaseClasses, treeSelectDropdownClasses, treeSelectEmptyClasses, treeSelectNodeBaseClasses, treeSelectSearchClasses, undoFormHistory, unregisterImageGroupItem, updateCronExpressionField, updateDragOffset, uploadPlusIconPath, uploadStatusIconColorClasses, uploadStatusIconSizeClasses, validateCronExpression, validateCronExpressionWithLabels, validateCronField, validateCurrentPage, validateField, validateFileSize, validateFileType, validateForm, validateFormFields, validateRule, validateUploadFile, valueToGaugeAngle, variableSizeStrategy, version, vibrantTheme, viewportFloatingBaseClasses, viewportPlacementClasses, virtualListContainerClasses, virtualListInnerClasses, virtualTableBorderedClasses, virtualTableCellClasses, virtualTableContainerClasses, virtualTableEmptyClasses, virtualTableFixedCellSelectedClasses, virtualTableHeaderCellClasses, virtualTableHeaderClasses, virtualTableLoadingClasses, virtualTableRowClasses, virtualTableRowHoverClasses, virtualTableRowSelectedClasses, virtualTableRowStripedClasses, warnUnsupportedColorProp, watermarkDefaults, watermarkFontDefaults, watermarkWrapperClasses, zoomInIconPath, zoomOutIconPath };
|
package/dist/index.js
CHANGED
|
@@ -2617,7 +2617,7 @@ var timePickerBaseClasses = "relative inline-block w-full max-w-xs";
|
|
|
2617
2617
|
var timePickerInputWrapperClasses = "relative flex items-center";
|
|
2618
2618
|
function getTimePickerInputClasses(size, disabled, showClear = false) {
|
|
2619
2619
|
const baseClasses = [
|
|
2620
|
-
"w-full rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
2620
|
+
"w-full rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#d1d5db)]",
|
|
2621
2621
|
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:border-transparent",
|
|
2622
2622
|
"transition-colors duration-200",
|
|
2623
2623
|
// Reserve space for the clock button (right-1 + w-6/8/10 per size),
|
|
@@ -2629,14 +2629,14 @@ function getTimePickerInputClasses(size, disabled, showClear = false) {
|
|
|
2629
2629
|
md: "px-3 py-2 text-base",
|
|
2630
2630
|
lg: "px-4 py-3 text-lg"
|
|
2631
2631
|
};
|
|
2632
|
-
const stateClasses = disabled ? "bg-
|
|
2632
|
+
const stateClasses = disabled ? "bg-[var(--tiger-surface-muted,#f3f4f6)] text-[var(--tiger-text-muted,#9ca3af)] cursor-not-allowed" : "bg-[var(--tiger-surface,#ffffff)] text-[var(--tiger-text,#111827)] cursor-pointer hover:border-[var(--tiger-text-muted,#9ca3af)]";
|
|
2633
2633
|
return [...baseClasses, sizeClasses3[size], stateClasses].join(" ");
|
|
2634
2634
|
}
|
|
2635
2635
|
function getTimePickerIconButtonClasses(size) {
|
|
2636
2636
|
const baseClasses = [
|
|
2637
2637
|
"absolute right-1 flex items-center justify-center",
|
|
2638
|
-
"text-
|
|
2639
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1",
|
|
2638
|
+
"text-[var(--tiger-text-muted,#9ca3af)] hover:text-[var(--tiger-text,#111827)]",
|
|
2639
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#ffffff)]",
|
|
2640
2640
|
"rounded transition-colors duration-200",
|
|
2641
2641
|
"disabled:cursor-not-allowed disabled:opacity-50"
|
|
2642
2642
|
];
|
|
@@ -2649,30 +2649,30 @@ function getTimePickerIconButtonClasses(size) {
|
|
|
2649
2649
|
}
|
|
2650
2650
|
var timePickerClearButtonClasses = [
|
|
2651
2651
|
"absolute right-10 flex items-center justify-center",
|
|
2652
|
-
"w-6 h-6 text-
|
|
2653
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1",
|
|
2652
|
+
"w-6 h-6 text-[var(--tiger-text-muted,#9ca3af)] hover:text-[var(--tiger-text,#111827)]",
|
|
2653
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#ffffff)]",
|
|
2654
2654
|
"rounded transition-colors duration-200"
|
|
2655
2655
|
].join(" ");
|
|
2656
2656
|
var timePickerPanelClasses = [
|
|
2657
|
-
"absolute z-10 mt-1 bg-
|
|
2657
|
+
"absolute z-10 mt-1 bg-[var(--tiger-surface,#ffffff)] text-[var(--tiger-text,#111827)] border border-[var(--tiger-border,#e5e7eb)] rounded-[var(--tiger-radius-md,0.5rem)] shadow-lg",
|
|
2658
2658
|
"w-max max-sm:fixed max-sm:inset-x-0 max-sm:bottom-0 max-sm:z-50 max-sm:mt-0 max-sm:w-auto max-sm:rounded-t-[var(--tiger-radius-lg,0.75rem)] max-sm:rounded-b-none max-sm:p-4 max-sm:shadow-2xl max-sm:pb-[calc(1rem+env(safe-area-inset-bottom))]"
|
|
2659
2659
|
].join(" ");
|
|
2660
|
-
var timePickerPanelContentClasses = "flex divide-x divide-
|
|
2661
|
-
var timePickerDesktopPanelContentClasses = "max-sm:hidden flex divide-x divide-
|
|
2660
|
+
var timePickerPanelContentClasses = "flex divide-x divide-[var(--tiger-border,#e5e7eb)]";
|
|
2661
|
+
var timePickerDesktopPanelContentClasses = "max-sm:hidden flex divide-x divide-[var(--tiger-border,#e5e7eb)]";
|
|
2662
2662
|
var timePickerMobileWheelClasses = "sm:hidden grid grid-cols-3 gap-2";
|
|
2663
2663
|
var timePickerMobileWheelSelectClasses = [
|
|
2664
|
-
"w-full rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
2665
|
-
"text-center text-base text-
|
|
2664
|
+
"w-full rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#d1d5db)] bg-[var(--tiger-surface,#ffffff)] px-3 py-3",
|
|
2665
|
+
"text-center text-base text-[var(--tiger-text,#111827)] focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)]"
|
|
2666
2666
|
].join(" ");
|
|
2667
2667
|
var timePickerRangeHeaderClasses = [
|
|
2668
|
-
"px-3 py-2 border-b border-
|
|
2668
|
+
"px-3 py-2 border-b border-[var(--tiger-border,#e5e7eb)] bg-[var(--tiger-surface-muted,#f9fafb)]",
|
|
2669
2669
|
"flex items-center gap-2"
|
|
2670
2670
|
].join(" ");
|
|
2671
2671
|
function getTimePickerRangeTabButtonClasses(isActive) {
|
|
2672
2672
|
const baseClasses = [
|
|
2673
2673
|
"px-3 py-1 text-xs font-medium rounded",
|
|
2674
|
-
"border border-
|
|
2675
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1",
|
|
2674
|
+
"border border-[var(--tiger-border,#d1d5db)]",
|
|
2675
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#ffffff)]",
|
|
2676
2676
|
"transition-colors duration-150"
|
|
2677
2677
|
];
|
|
2678
2678
|
if (isActive) {
|
|
@@ -2680,25 +2680,31 @@ function getTimePickerRangeTabButtonClasses(isActive) {
|
|
|
2680
2680
|
" "
|
|
2681
2681
|
);
|
|
2682
2682
|
}
|
|
2683
|
-
return [
|
|
2683
|
+
return [
|
|
2684
|
+
...baseClasses,
|
|
2685
|
+
"bg-[var(--tiger-surface,#ffffff)] hover:bg-[var(--tiger-surface-muted,#f9fafb)] text-[var(--tiger-text,#374151)]"
|
|
2686
|
+
].join(" ");
|
|
2684
2687
|
}
|
|
2685
2688
|
var timePickerColumnClasses = "flex flex-col overflow-hidden shrink-0 w-16";
|
|
2686
2689
|
var timePickerColumnHeaderClasses = [
|
|
2687
|
-
"px-2 py-1 text-xs font-semibold text-
|
|
2688
|
-
"bg-
|
|
2690
|
+
"px-2 py-1 text-xs font-semibold text-[var(--tiger-text-muted,#6b7280)] text-center",
|
|
2691
|
+
"bg-[var(--tiger-surface-muted,#f9fafb)] border-b border-[var(--tiger-border,#e5e7eb)]"
|
|
2689
2692
|
].join(" ");
|
|
2690
2693
|
var timePickerColumnListClasses = [
|
|
2691
|
-
"overflow-y-auto max-h-48 scrollbar-thin scrollbar-thumb-
|
|
2694
|
+
"overflow-y-auto max-h-48 scrollbar-thin scrollbar-thumb-[var(--tiger-border,#d1d5db)] scrollbar-track-[var(--tiger-surface-muted,#f3f4f6)]"
|
|
2692
2695
|
].join(" ");
|
|
2693
2696
|
function getTimePickerItemClasses(isSelected, isDisabled) {
|
|
2694
2697
|
const baseClasses = [
|
|
2695
2698
|
"w-full px-3 py-1.5 text-sm text-center",
|
|
2696
|
-
"hover:bg-
|
|
2699
|
+
"hover:bg-[var(--tiger-surface-muted,#f3f4f6)] focus:outline-none focus:bg-[var(--tiger-surface-muted,#f3f4f6)]",
|
|
2697
2700
|
"transition-colors duration-150",
|
|
2698
2701
|
"cursor-pointer"
|
|
2699
2702
|
];
|
|
2700
2703
|
if (isDisabled) {
|
|
2701
|
-
return [
|
|
2704
|
+
return [
|
|
2705
|
+
...baseClasses,
|
|
2706
|
+
"text-[var(--tiger-text-muted,#9ca3af)] opacity-50 cursor-not-allowed hover:bg-transparent"
|
|
2707
|
+
].join(" ");
|
|
2702
2708
|
}
|
|
2703
2709
|
if (isSelected) {
|
|
2704
2710
|
return [
|
|
@@ -2708,12 +2714,12 @@ function getTimePickerItemClasses(isSelected, isDisabled) {
|
|
|
2708
2714
|
"font-medium"
|
|
2709
2715
|
].join(" ");
|
|
2710
2716
|
}
|
|
2711
|
-
return [...baseClasses, "text-
|
|
2717
|
+
return [...baseClasses, "text-[var(--tiger-text,#374151)]"].join(" ");
|
|
2712
2718
|
}
|
|
2713
2719
|
function getTimePickerPeriodButtonClasses(isSelected) {
|
|
2714
2720
|
const baseClasses = [
|
|
2715
2721
|
"w-full px-3 py-2 text-sm font-medium text-center",
|
|
2716
|
-
"hover:bg-
|
|
2722
|
+
"hover:bg-[var(--tiger-surface-muted,#f3f4f6)] focus:outline-none focus:bg-[var(--tiger-surface-muted,#f3f4f6)]",
|
|
2717
2723
|
"transition-colors duration-150",
|
|
2718
2724
|
"cursor-pointer"
|
|
2719
2725
|
];
|
|
@@ -2724,18 +2730,18 @@ function getTimePickerPeriodButtonClasses(isSelected) {
|
|
|
2724
2730
|
"hover:bg-[var(--tiger-primary-hover,#1d4ed8)]"
|
|
2725
2731
|
].join(" ");
|
|
2726
2732
|
}
|
|
2727
|
-
return [...baseClasses, "text-
|
|
2733
|
+
return [...baseClasses, "text-[var(--tiger-text,#374151)]"].join(" ");
|
|
2728
2734
|
}
|
|
2729
2735
|
var timePickerFooterClasses = [
|
|
2730
|
-
"px-3 py-2 border-t border-
|
|
2736
|
+
"px-3 py-2 border-t border-[var(--tiger-border,#e5e7eb)]",
|
|
2731
2737
|
"flex items-center justify-between gap-2"
|
|
2732
2738
|
].join(" ");
|
|
2733
2739
|
var timePickerFooterButtonClasses = [
|
|
2734
2740
|
"px-3 py-1 text-xs font-medium rounded",
|
|
2735
|
-
"border border-
|
|
2736
|
-
"bg-
|
|
2737
|
-
"text-
|
|
2738
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1",
|
|
2741
|
+
"border border-[var(--tiger-border,#d1d5db)] hover:border-[var(--tiger-text-muted,#9ca3af)]",
|
|
2742
|
+
"bg-[var(--tiger-surface,#ffffff)] hover:bg-[var(--tiger-surface-muted,#f9fafb)]",
|
|
2743
|
+
"text-[var(--tiger-text,#374151)]",
|
|
2744
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#ffffff)]",
|
|
2739
2745
|
"transition-colors duration-150"
|
|
2740
2746
|
].join(" ");
|
|
2741
2747
|
|
|
@@ -3131,7 +3137,7 @@ var tabFocusClasses = "focus:outline-none focus-visible:ring-2 focus-visible:rin
|
|
|
3131
3137
|
var menuItemFocusClasses = "focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))] focus-visible:ring-inset";
|
|
3132
3138
|
|
|
3133
3139
|
// src/utils/button-utils.ts
|
|
3134
|
-
var buttonBaseClasses = "inline-flex items-center justify-center font-medium rounded-[var(--tiger-radius-md,0.5rem)] [transition:var(--tiger-transition-base,all_200ms_cubic-bezier(0.4,0,0.2,1))] focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]/40 active:scale-[0.98]";
|
|
3140
|
+
var buttonBaseClasses = "inline-flex items-center justify-center whitespace-nowrap font-medium rounded-[var(--tiger-radius-md,0.5rem)] [transition:var(--tiger-transition-base,all_200ms_cubic-bezier(0.4,0,0.2,1))] focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]/40 active:scale-[0.98]";
|
|
3135
3141
|
var buttonSizeClasses = {
|
|
3136
3142
|
xs: "px-2 py-1 text-xs",
|
|
3137
3143
|
sm: "px-3 py-1.5 text-sm",
|
|
@@ -4320,10 +4326,10 @@ function getDatePickerInputClasses(size = "md", disabled = false, showClear = fa
|
|
|
4320
4326
|
"w-full",
|
|
4321
4327
|
"rounded-[var(--tiger-radius-md,0.5rem)]",
|
|
4322
4328
|
"border",
|
|
4323
|
-
"border-
|
|
4324
|
-
"bg-
|
|
4325
|
-
"text-
|
|
4326
|
-
"placeholder-
|
|
4329
|
+
"border-[var(--tiger-border,#d1d5db)]",
|
|
4330
|
+
"bg-[var(--tiger-surface,#ffffff)]",
|
|
4331
|
+
"text-[var(--tiger-text,#111827)]",
|
|
4332
|
+
"placeholder:text-[var(--tiger-text-muted,#9ca3af)]",
|
|
4327
4333
|
"focus:outline-none",
|
|
4328
4334
|
"focus:ring-2",
|
|
4329
4335
|
"focus:ring-[var(--tiger-primary,#2563eb)]",
|
|
@@ -4336,7 +4342,11 @@ function getDatePickerInputClasses(size = "md", disabled = false, showClear = fa
|
|
|
4336
4342
|
lg: "px-4 py-3 text-lg"
|
|
4337
4343
|
};
|
|
4338
4344
|
const rightPaddingClasses = showClear ? "pr-16" : { sm: "pr-10", md: "pr-12", lg: "pr-14" }[size];
|
|
4339
|
-
const disabledClasses = disabled ? [
|
|
4345
|
+
const disabledClasses = disabled ? [
|
|
4346
|
+
"bg-[var(--tiger-surface-muted,#f3f4f6)]",
|
|
4347
|
+
"cursor-not-allowed",
|
|
4348
|
+
"text-[var(--tiger-text-muted,#6b7280)]"
|
|
4349
|
+
] : ["cursor-pointer"];
|
|
4340
4350
|
return classNames(...baseClasses, sizeClasses3[size], rightPaddingClasses, ...disabledClasses);
|
|
4341
4351
|
}
|
|
4342
4352
|
function getDatePickerIconButtonClasses(size = "md") {
|
|
@@ -4348,8 +4358,8 @@ function getDatePickerIconButtonClasses(size = "md") {
|
|
|
4348
4358
|
"flex",
|
|
4349
4359
|
"items-center",
|
|
4350
4360
|
"justify-center",
|
|
4351
|
-
"text-
|
|
4352
|
-
"hover:text-
|
|
4361
|
+
"text-[var(--tiger-text-muted,#9ca3af)]",
|
|
4362
|
+
"hover:text-[var(--tiger-text,#111827)]",
|
|
4353
4363
|
"transition-colors"
|
|
4354
4364
|
];
|
|
4355
4365
|
const sizeClasses3 = {
|
|
@@ -4363,9 +4373,9 @@ var datePickerCalendarClasses = classNames(
|
|
|
4363
4373
|
"absolute",
|
|
4364
4374
|
"z-50",
|
|
4365
4375
|
"mt-1",
|
|
4366
|
-
"bg-
|
|
4376
|
+
"bg-[var(--tiger-surface,#ffffff)]",
|
|
4367
4377
|
"border",
|
|
4368
|
-
"border-
|
|
4378
|
+
"border-[var(--tiger-border,#d1d5db)]",
|
|
4369
4379
|
"rounded-[var(--tiger-radius-md,0.5rem)]",
|
|
4370
4380
|
"shadow-lg",
|
|
4371
4381
|
"p-4",
|
|
@@ -4380,8 +4390,8 @@ var datePickerMobileWheelClasses = classNames(
|
|
|
4380
4390
|
"z-50",
|
|
4381
4391
|
"rounded-t-[var(--tiger-radius-lg,0.75rem)]",
|
|
4382
4392
|
"border",
|
|
4383
|
-
"border-
|
|
4384
|
-
"bg-
|
|
4393
|
+
"border-[var(--tiger-border,#e5e7eb)]",
|
|
4394
|
+
"bg-[var(--tiger-surface,#ffffff)]",
|
|
4385
4395
|
"p-4",
|
|
4386
4396
|
"shadow-2xl",
|
|
4387
4397
|
"pb-[calc(1rem+env(safe-area-inset-bottom))]"
|
|
@@ -4391,13 +4401,13 @@ var datePickerMobileWheelSelectClasses = classNames(
|
|
|
4391
4401
|
"w-full",
|
|
4392
4402
|
"rounded-[var(--tiger-radius-md,0.5rem)]",
|
|
4393
4403
|
"border",
|
|
4394
|
-
"border-
|
|
4395
|
-
"bg-
|
|
4404
|
+
"border-[var(--tiger-border,#d1d5db)]",
|
|
4405
|
+
"bg-[var(--tiger-surface,#ffffff)]",
|
|
4396
4406
|
"px-3",
|
|
4397
4407
|
"py-3",
|
|
4398
4408
|
"text-center",
|
|
4399
4409
|
"text-base",
|
|
4400
|
-
"text-
|
|
4410
|
+
"text-[var(--tiger-text,#111827)]",
|
|
4401
4411
|
"focus:outline-none",
|
|
4402
4412
|
"focus:ring-2",
|
|
4403
4413
|
"focus:ring-[var(--tiger-primary,#2563eb)]"
|
|
@@ -4411,27 +4421,34 @@ var datePickerCalendarHeaderClasses = classNames(
|
|
|
4411
4421
|
var datePickerNavButtonClasses = classNames(
|
|
4412
4422
|
"p-2",
|
|
4413
4423
|
"rounded-[var(--tiger-radius-md,0.5rem)]",
|
|
4414
|
-
"hover:bg-
|
|
4424
|
+
"hover:bg-[var(--tiger-surface-muted,#f3f4f6)]",
|
|
4415
4425
|
"transition-colors",
|
|
4416
|
-
"text-
|
|
4417
|
-
"hover:text-
|
|
4426
|
+
"text-[var(--tiger-text-muted,#4b5563)]",
|
|
4427
|
+
"hover:text-[var(--tiger-text,#111827)]",
|
|
4418
4428
|
"focus:outline-none",
|
|
4419
4429
|
"focus:ring-2",
|
|
4420
4430
|
"focus:ring-[var(--tiger-primary,#2563eb)]"
|
|
4421
4431
|
);
|
|
4422
|
-
var datePickerMonthYearClasses = classNames(
|
|
4432
|
+
var datePickerMonthYearClasses = classNames(
|
|
4433
|
+
"text-base",
|
|
4434
|
+
"font-semibold",
|
|
4435
|
+
"text-[var(--tiger-text,#111827)]"
|
|
4436
|
+
);
|
|
4423
4437
|
var datePickerCalendarGridClasses = classNames("grid", "grid-cols-7", "gap-1");
|
|
4424
4438
|
var datePickerDayNameClasses = classNames(
|
|
4425
4439
|
"text-center",
|
|
4426
4440
|
"text-xs",
|
|
4427
4441
|
"font-medium",
|
|
4428
|
-
"text-
|
|
4442
|
+
"text-[var(--tiger-text-muted,#6b7280)]",
|
|
4429
4443
|
"py-2"
|
|
4430
4444
|
);
|
|
4431
4445
|
function getDatePickerDayCellClasses(isCurrentMonth, isSelected, isToday2, isDisabled, isInRange = false, isRangeStart = false, isRangeEnd = false) {
|
|
4432
4446
|
const base = "w-10 h-10 flex items-center justify-center rounded-[var(--tiger-radius-md,0.5rem)] text-sm transition-colors";
|
|
4433
4447
|
if (isDisabled) {
|
|
4434
|
-
return classNames(
|
|
4448
|
+
return classNames(
|
|
4449
|
+
base,
|
|
4450
|
+
"cursor-not-allowed text-[var(--tiger-text-muted,#9ca3af)] opacity-50"
|
|
4451
|
+
);
|
|
4435
4452
|
}
|
|
4436
4453
|
if (isSelected || isRangeStart || isRangeEnd) {
|
|
4437
4454
|
return classNames(
|
|
@@ -4441,18 +4458,24 @@ function getDatePickerDayCellClasses(isCurrentMonth, isSelected, isToday2, isDis
|
|
|
4441
4458
|
"hover:bg-[var(--tiger-primary-hover,#1d4ed8)] font-semibold"
|
|
4442
4459
|
);
|
|
4443
4460
|
}
|
|
4444
|
-
const color = isCurrentMonth ? "text-
|
|
4461
|
+
const color = isCurrentMonth ? "text-[var(--tiger-text,#111827)]" : "text-[var(--tiger-text-muted,#9ca3af)]";
|
|
4445
4462
|
const range = isInRange ? "bg-[var(--tiger-outline-bg-hover,#eff6ff)]" : "";
|
|
4446
4463
|
const today = isToday2 ? "border border-[var(--tiger-primary,#2563eb)] font-semibold" : "";
|
|
4447
|
-
return classNames(
|
|
4464
|
+
return classNames(
|
|
4465
|
+
base,
|
|
4466
|
+
"cursor-pointer hover:bg-[var(--tiger-surface-muted,#f3f4f6)]",
|
|
4467
|
+
color,
|
|
4468
|
+
range,
|
|
4469
|
+
today
|
|
4470
|
+
);
|
|
4448
4471
|
}
|
|
4449
4472
|
var datePickerClearButtonClasses = classNames(
|
|
4450
4473
|
"absolute",
|
|
4451
4474
|
"right-10",
|
|
4452
4475
|
"top-1/2",
|
|
4453
4476
|
"-translate-y-1/2",
|
|
4454
|
-
"text-
|
|
4455
|
-
"hover:text-
|
|
4477
|
+
"text-[var(--tiger-text-muted,#9ca3af)]",
|
|
4478
|
+
"hover:text-[var(--tiger-text,#111827)]",
|
|
4456
4479
|
"transition-colors",
|
|
4457
4480
|
"p-1"
|
|
4458
4481
|
);
|
|
@@ -4460,7 +4483,7 @@ var datePickerFooterClasses = classNames(
|
|
|
4460
4483
|
"mt-3",
|
|
4461
4484
|
"pt-3",
|
|
4462
4485
|
"border-t",
|
|
4463
|
-
"border-
|
|
4486
|
+
"border-[var(--tiger-border,#e5e7eb)]",
|
|
4464
4487
|
"flex",
|
|
4465
4488
|
"items-center",
|
|
4466
4489
|
"justify-between",
|
|
@@ -4473,15 +4496,16 @@ var datePickerFooterButtonClasses = classNames(
|
|
|
4473
4496
|
"font-medium",
|
|
4474
4497
|
"rounded",
|
|
4475
4498
|
"border",
|
|
4476
|
-
"border-
|
|
4477
|
-
"hover:border-
|
|
4478
|
-
"bg-
|
|
4479
|
-
"hover:bg-
|
|
4480
|
-
"text-
|
|
4499
|
+
"border-[var(--tiger-border,#d1d5db)]",
|
|
4500
|
+
"hover:border-[var(--tiger-text-muted,#9ca3af)]",
|
|
4501
|
+
"bg-[var(--tiger-surface,#ffffff)]",
|
|
4502
|
+
"hover:bg-[var(--tiger-surface-muted,#f9fafb)]",
|
|
4503
|
+
"text-[var(--tiger-text,#374151)]",
|
|
4481
4504
|
"focus:outline-none",
|
|
4482
4505
|
"focus:ring-2",
|
|
4483
4506
|
"focus:ring-[var(--tiger-primary,#2563eb)]",
|
|
4484
4507
|
"focus:ring-offset-1",
|
|
4508
|
+
"focus:ring-offset-[var(--tiger-surface,#ffffff)]",
|
|
4485
4509
|
"transition-colors",
|
|
4486
4510
|
"duration-150"
|
|
4487
4511
|
);
|
|
@@ -6679,22 +6703,22 @@ var progressCircleTextClasses = "absolute inset-0 flex items-center justify-cent
|
|
|
6679
6703
|
var progressCircleTrackStrokeClasses = "text-[color:var(--tiger-border,#e5e7eb)]";
|
|
6680
6704
|
|
|
6681
6705
|
// src/utils/collapse-utils.ts
|
|
6682
|
-
var collapseBaseClasses = "w-full bg-
|
|
6706
|
+
var collapseBaseClasses = "w-full bg-[var(--tiger-surface,#fff)] border border-[var(--tiger-border,#e5e7eb)] rounded overflow-hidden";
|
|
6683
6707
|
var collapseGhostClasses = "border-0 bg-transparent";
|
|
6684
6708
|
var collapseBorderlessClasses = "border-0";
|
|
6685
|
-
var collapsePanelBaseClasses = "border-b border-
|
|
6686
|
-
var collapsePanelHeaderBaseClasses = "flex items-center px-4 py-3 cursor-pointer transition-colors duration-200 hover:bg-
|
|
6687
|
-
var collapsePanelHeaderActiveClasses = "bg-
|
|
6709
|
+
var collapsePanelBaseClasses = "border-b border-[var(--tiger-border,#e5e7eb)] last:border-b-0";
|
|
6710
|
+
var collapsePanelHeaderBaseClasses = "flex items-center px-4 py-3 cursor-pointer transition-colors duration-200 motion-reduce:transition-none hover:bg-[var(--tiger-surface-muted,#f9fafb)] focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--tiger-focus-ring,var(--tiger-primary,#2563eb))]";
|
|
6711
|
+
var collapsePanelHeaderActiveClasses = "bg-[var(--tiger-surface-muted,#f9fafb)]";
|
|
6688
6712
|
var collapsePanelHeaderDisabledClasses = "cursor-not-allowed opacity-50 hover:bg-transparent";
|
|
6689
|
-
var collapsePanelContentWrapperClasses = "overflow-hidden transition-[max-height,opacity] duration-300 ease-in-out";
|
|
6690
|
-
var collapsePanelContentBaseClasses = "px-4 py-3 bg-
|
|
6691
|
-
var collapseIconBaseClasses = "transition-transform duration-300 ease-in-out text-
|
|
6713
|
+
var collapsePanelContentWrapperClasses = "overflow-hidden transition-[max-height,opacity] duration-300 ease-in-out motion-reduce:transition-none";
|
|
6714
|
+
var collapsePanelContentBaseClasses = "px-4 py-3 bg-[var(--tiger-surface,#fff)] text-[var(--tiger-text,#374151)]";
|
|
6715
|
+
var collapseIconBaseClasses = "transition-transform duration-300 ease-in-out motion-reduce:transition-none text-[var(--tiger-text-muted,#6b7280)]";
|
|
6692
6716
|
var collapseIconExpandedClasses = "rotate-90";
|
|
6693
6717
|
var collapseIconPositionClasses = {
|
|
6694
6718
|
start: "mr-2",
|
|
6695
6719
|
end: "ml-auto"
|
|
6696
6720
|
};
|
|
6697
|
-
var collapseHeaderTextClasses = "flex-1 font-medium text-
|
|
6721
|
+
var collapseHeaderTextClasses = "flex-1 font-medium text-[var(--tiger-text,#111827)]";
|
|
6698
6722
|
function getCollapseContainerClasses(bordered, ghost, className) {
|
|
6699
6723
|
const classes = [collapseBaseClasses];
|
|
6700
6724
|
if (ghost) {
|
|
@@ -7126,10 +7150,10 @@ var tabNavPositionClasses = {
|
|
|
7126
7150
|
right: "flex-col"
|
|
7127
7151
|
};
|
|
7128
7152
|
var tabNavLineBorderClasses = {
|
|
7129
|
-
top: "border-b border-
|
|
7130
|
-
bottom: "border-t border-
|
|
7131
|
-
left: "border-r border-
|
|
7132
|
-
right: "border-l border-
|
|
7153
|
+
top: "border-b border-[var(--tiger-border,#e5e7eb)]",
|
|
7154
|
+
bottom: "border-t border-[var(--tiger-border,#e5e7eb)]",
|
|
7155
|
+
left: "border-r border-[var(--tiger-border,#e5e7eb)]",
|
|
7156
|
+
right: "border-l border-[var(--tiger-border,#e5e7eb)]"
|
|
7133
7157
|
};
|
|
7134
7158
|
var tabNavListBaseClasses = "flex gap-1";
|
|
7135
7159
|
var tabNavListPositionClasses = {
|
|
@@ -7139,33 +7163,33 @@ var tabNavListPositionClasses = {
|
|
|
7139
7163
|
right: "flex-col"
|
|
7140
7164
|
};
|
|
7141
7165
|
var tabNavListCenteredClasses = "justify-center";
|
|
7142
|
-
var tabItemBaseClasses = "relative z-10 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))]/40 focus-visible:ring-offset-2 active:opacity-90";
|
|
7166
|
+
var tabItemBaseClasses = "relative z-10 cursor-pointer transition-all duration-200 motion-reduce:transition-none 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))]/40 focus-visible:ring-offset-2 active:opacity-90";
|
|
7143
7167
|
var tabItemSizeClasses = {
|
|
7144
7168
|
small: "text-sm px-3 py-1.5",
|
|
7145
7169
|
medium: "text-base px-4 py-2",
|
|
7146
7170
|
large: "text-lg px-5 py-2.5"
|
|
7147
7171
|
};
|
|
7148
|
-
var tabItemLineClasses = "border-b-2 border-transparent hover:text-[var(--tiger-primary,#2563eb)] text-
|
|
7172
|
+
var tabItemLineClasses = "border-b-2 border-transparent hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)]";
|
|
7149
7173
|
var tabItemLineActiveClasses = "text-[var(--tiger-primary,#2563eb)] font-medium";
|
|
7150
|
-
var tabIndicatorBaseClasses = "pointer-events-none absolute z-0 rounded-full bg-[var(--tiger-primary,#2563eb)] transition-transform duration-200 ease-out will-change-transform";
|
|
7174
|
+
var tabIndicatorBaseClasses = "pointer-events-none absolute z-0 rounded-full bg-[var(--tiger-primary,#2563eb)] transition-transform duration-200 ease-out will-change-transform motion-reduce:transition-none";
|
|
7151
7175
|
var tabIndicatorPositionClasses = {
|
|
7152
7176
|
top: "bottom-0 left-0 h-0.5",
|
|
7153
7177
|
bottom: "top-0 left-0 h-0.5",
|
|
7154
7178
|
left: "right-0 top-0 w-0.5",
|
|
7155
7179
|
right: "left-0 top-0 w-0.5"
|
|
7156
7180
|
};
|
|
7157
|
-
var tabItemCardClasses = "border border-
|
|
7158
|
-
var tabItemCardActiveClasses = "bg-
|
|
7159
|
-
var tabItemEditableCardClasses = "border border-
|
|
7160
|
-
var tabItemEditableCardActiveClasses = "bg-
|
|
7181
|
+
var tabItemCardClasses = "border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] -mb-px";
|
|
7182
|
+
var tabItemCardActiveClasses = "bg-[var(--tiger-surface,#fff)] border-[var(--tiger-primary,#2563eb)] border-b-[var(--tiger-surface,#fff)] text-[var(--tiger-primary,#2563eb)] font-medium z-10";
|
|
7183
|
+
var tabItemEditableCardClasses = "border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface-muted,#f9fafb)] hover:bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] -mb-px";
|
|
7184
|
+
var tabItemEditableCardActiveClasses = "bg-[var(--tiger-surface,#fff)] border-[var(--tiger-primary,#2563eb)] border-b-[var(--tiger-surface,#fff)] text-[var(--tiger-primary,#2563eb)] font-medium z-10";
|
|
7161
7185
|
var tabItemPillsClasses = "rounded-full bg-transparent hover:bg-[var(--tiger-primary-subtle,#eff6ff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)]";
|
|
7162
7186
|
var tabItemPillsActiveClasses = "bg-[var(--tiger-primary,#2563eb)] text-white font-medium shadow-sm";
|
|
7163
7187
|
var tabItemDisabledClasses = "opacity-50 cursor-not-allowed pointer-events-none";
|
|
7164
|
-
var tabCloseButtonClasses = "ml-2 p-0.5 rounded-[var(--tiger-radius-sm,0.375rem)] hover:bg-
|
|
7188
|
+
var tabCloseButtonClasses = "ml-2 p-0.5 rounded-[var(--tiger-radius-sm,0.375rem)] hover:bg-[var(--tiger-surface-muted,#e5e7eb)] transition-colors duration-150 motion-reduce:transition-none";
|
|
7165
7189
|
var tabContentBaseClasses = "w-full";
|
|
7166
7190
|
var tabPaneBaseClasses = "w-full";
|
|
7167
7191
|
var tabPaneHiddenClasses = "hidden";
|
|
7168
|
-
var tabAddButtonClasses = "px-3 py-2 border border-
|
|
7192
|
+
var tabAddButtonClasses = "px-3 py-2 border border-[var(--tiger-border,#e5e7eb)] rounded-t bg-[var(--tiger-surface-muted,#f9fafb)] hover:bg-[var(--tiger-surface,#fff)] hover:text-[var(--tiger-primary,#2563eb)] text-[var(--tiger-text-muted,#6b7280)] cursor-pointer transition-colors duration-200 motion-reduce:transition-none";
|
|
7169
7193
|
function getTabsContainerClasses(position) {
|
|
7170
7194
|
if (position === "right") return `${tabsBaseClasses} flex flex-row-reverse`;
|
|
7171
7195
|
if (position === "left") return `${tabsBaseClasses} flex`;
|
|
@@ -7270,13 +7294,16 @@ function getNextActiveKey(removedKey, currentActiveKey, allKeys) {
|
|
|
7270
7294
|
var breadcrumbContainerClasses = "flex items-center flex-wrap gap-2 text-sm";
|
|
7271
7295
|
var breadcrumbItemBaseClasses = "inline-flex items-center gap-2";
|
|
7272
7296
|
var breadcrumbLinkClasses = classNames(
|
|
7273
|
-
"text-
|
|
7274
|
-
"transition-colors duration-200",
|
|
7275
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 rounded",
|
|
7297
|
+
"text-[var(--tiger-text-muted,#6b7280)] hover:text-[var(--tiger-primary,#2563eb)]",
|
|
7298
|
+
"transition-colors duration-200 motion-reduce:transition-none",
|
|
7299
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#fff)] rounded",
|
|
7276
7300
|
"cursor-pointer"
|
|
7277
7301
|
);
|
|
7278
|
-
var breadcrumbCurrentClasses = classNames(
|
|
7279
|
-
|
|
7302
|
+
var breadcrumbCurrentClasses = classNames(
|
|
7303
|
+
"text-[var(--tiger-text,#111827)] font-medium",
|
|
7304
|
+
"cursor-default"
|
|
7305
|
+
);
|
|
7306
|
+
var breadcrumbSeparatorBaseClasses = "text-[var(--tiger-text-muted,#9ca3af)] select-none";
|
|
7280
7307
|
function getBreadcrumbItemClasses(className) {
|
|
7281
7308
|
return classNames(breadcrumbItemBaseClasses, className);
|
|
7282
7309
|
}
|
|
@@ -7300,9 +7327,9 @@ function getBreadcrumbSeparatorClasses(className) {
|
|
|
7300
7327
|
return classNames(breadcrumbSeparatorBaseClasses, className);
|
|
7301
7328
|
}
|
|
7302
7329
|
var breadcrumbEllipsisClasses = classNames(
|
|
7303
|
-
"text-
|
|
7304
|
-
"transition-colors duration-200 cursor-pointer",
|
|
7305
|
-
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 rounded",
|
|
7330
|
+
"text-[var(--tiger-text-muted,#6b7280)] hover:text-[var(--tiger-primary,#2563eb)]",
|
|
7331
|
+
"transition-colors duration-200 motion-reduce:transition-none cursor-pointer",
|
|
7332
|
+
"focus:outline-none focus:ring-2 focus:ring-[var(--tiger-primary,#2563eb)] focus:ring-offset-1 focus:ring-offset-[var(--tiger-surface,#fff)] rounded",
|
|
7306
7333
|
"px-1"
|
|
7307
7334
|
);
|
|
7308
7335
|
function getBreadcrumbCollapsedItems(totalItems, maxItems) {
|
|
@@ -8559,9 +8586,9 @@ var iconSvgDefaultStrokeLinecap = "round";
|
|
|
8559
8586
|
var iconSvgDefaultStrokeLinejoin = "round";
|
|
8560
8587
|
|
|
8561
8588
|
// src/utils/code-utils.ts
|
|
8562
|
-
var codeBlockContainerClasses = "relative rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
8589
|
+
var codeBlockContainerClasses = "relative rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#e5e7eb)] bg-[var(--tiger-surface-muted,#f9fafb)] text-[var(--tiger-text,#1f2937)]";
|
|
8563
8590
|
var codeBlockPreClasses = "m-0 overflow-auto p-4 text-sm leading-relaxed font-mono whitespace-pre";
|
|
8564
|
-
var codeBlockCopyButtonBaseClasses = "absolute right-3 top-0 -translate-y-1/2 inline-flex items-center rounded-[var(--tiger-radius-md,0.5rem)] border border-
|
|
8591
|
+
var codeBlockCopyButtonBaseClasses = "absolute right-3 top-0 -translate-y-1/2 inline-flex items-center rounded-[var(--tiger-radius-md,0.5rem)] border border-[var(--tiger-border,#e5e7eb)] bg-[var(--tiger-surface,#fff)] px-1.5 py-0.5 text-[10px] text-[var(--tiger-text-muted,#6b7280)] shadow-sm transition-colors hover:text-[var(--tiger-text,#111827)] motion-reduce:transition-none";
|
|
8565
8592
|
var codeBlockCopyButtonCopiedClasses = "border-[var(--tiger-primary,#2563eb)] text-[var(--tiger-primary,#2563eb)]";
|
|
8566
8593
|
function getCodeBlockContainerClasses(...classes) {
|
|
8567
8594
|
return classNames(codeBlockContainerClasses, ...classes);
|
|
@@ -9371,13 +9398,13 @@ var carouselNextArrowPath = "M8.25 4.5l7.5 7.5-7.5 7.5";
|
|
|
9371
9398
|
// src/utils/anchor-utils.ts
|
|
9372
9399
|
var anchorBaseClasses = "relative";
|
|
9373
9400
|
var anchorAffixClasses = "fixed";
|
|
9374
|
-
var anchorInkContainerVerticalClasses = "absolute left-0 top-0 bottom-0 w-0.5 bg-
|
|
9375
|
-
var anchorInkContainerHorizontalClasses = "absolute left-0 right-0 bottom-0 h-0.5 bg-
|
|
9376
|
-
var anchorInkActiveVerticalClasses = "absolute w-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[top,height] duration-200 ease-in-out";
|
|
9377
|
-
var anchorInkActiveHorizontalClasses = "absolute h-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[left,width] duration-200 ease-in-out";
|
|
9401
|
+
var anchorInkContainerVerticalClasses = "absolute left-0 top-0 bottom-0 w-0.5 bg-[var(--tiger-border,#e5e7eb)] rounded-full";
|
|
9402
|
+
var anchorInkContainerHorizontalClasses = "absolute left-0 right-0 bottom-0 h-0.5 bg-[var(--tiger-border,#e5e7eb)] rounded-full";
|
|
9403
|
+
var anchorInkActiveVerticalClasses = "absolute w-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[top,height] duration-200 ease-in-out motion-reduce:transition-none";
|
|
9404
|
+
var anchorInkActiveHorizontalClasses = "absolute h-0.5 bg-[var(--tiger-primary,#2563eb)] rounded-full transition-[left,width] duration-200 ease-in-out motion-reduce:transition-none";
|
|
9378
9405
|
var anchorLinkListVerticalClasses = "pl-4 space-y-2";
|
|
9379
9406
|
var anchorLinkListHorizontalClasses = "flex items-center space-x-4 pb-2";
|
|
9380
|
-
var anchorLinkBaseClasses = "block text-sm text-
|
|
9407
|
+
var anchorLinkBaseClasses = "block text-sm text-[var(--tiger-text-muted,#6b7280)] hover:text-[var(--tiger-primary,#2563eb)] transition-colors duration-200 motion-reduce:transition-none whitespace-nowrap";
|
|
9381
9408
|
var anchorLinkActiveClasses = "text-[var(--tiger-primary,#2563eb)] font-medium";
|
|
9382
9409
|
function getAnchorWrapperClasses(affix, className) {
|
|
9383
9410
|
return [anchorBaseClasses, affix && anchorAffixClasses, className].filter(Boolean).join(" ");
|
|
@@ -13129,12 +13156,12 @@ function getSpotlightShortcutLabel(shortcut) {
|
|
|
13129
13156
|
}
|
|
13130
13157
|
|
|
13131
13158
|
// src/utils/scroll-spy-utils.ts
|
|
13132
|
-
var scrollSpyRootClasses = "relative text-sm text-
|
|
13159
|
+
var scrollSpyRootClasses = "relative text-sm text-[var(--tiger-text-muted,#6b7280)]";
|
|
13133
13160
|
var scrollSpyStickyClasses = "sticky top-0";
|
|
13134
13161
|
var scrollSpyListVerticalClasses = "flex flex-col gap-1";
|
|
13135
13162
|
var scrollSpyListHorizontalClasses = "flex flex-wrap items-center gap-2";
|
|
13136
|
-
var scrollSpyNestedListClasses = "mt-1 ml-3 flex flex-col gap-1 border-l border-
|
|
13137
|
-
var scrollSpyItemBaseClasses = "block rounded-md px-3 py-1.5 text-left transition-colors duration-200 hover:bg-
|
|
13163
|
+
var scrollSpyNestedListClasses = "mt-1 ml-3 flex flex-col gap-1 border-l border-[var(--tiger-border,#e5e7eb)] pl-3";
|
|
13164
|
+
var scrollSpyItemBaseClasses = "block rounded-md px-3 py-1.5 text-left transition-colors duration-200 motion-reduce:transition-none hover:bg-[var(--tiger-surface-muted,#f3f4f6)] hover:text-[var(--tiger-primary,#2563eb)] focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--tiger-primary,#2563eb)] focus-visible:ring-offset-2 focus-visible:ring-offset-[var(--tiger-surface,#fff)]";
|
|
13138
13165
|
var scrollSpyItemActiveClasses = "bg-[var(--tiger-primary,#2563eb)]/10 font-medium text-[var(--tiger-primary,#2563eb)]";
|
|
13139
13166
|
var scrollSpyItemDisabledClasses = "cursor-not-allowed opacity-50 hover:bg-transparent";
|
|
13140
13167
|
function getScrollSpyKeyString(key) {
|
|
@@ -13848,50 +13875,55 @@ function variableSizeStrategy(getHeight, itemCount) {
|
|
|
13848
13875
|
}
|
|
13849
13876
|
function dynamicSizeStrategy(estimatedHeight, itemCount) {
|
|
13850
13877
|
const measuredHeights = /* @__PURE__ */ new Map();
|
|
13878
|
+
const offsets = new Float64Array(itemCount + 1);
|
|
13879
|
+
for (let i = 0; i < itemCount; i++) {
|
|
13880
|
+
offsets[i + 1] = offsets[i] + estimatedHeight;
|
|
13881
|
+
}
|
|
13882
|
+
let dirtyFrom = itemCount;
|
|
13851
13883
|
function getHeight(index) {
|
|
13852
13884
|
return measuredHeights.get(index) ?? estimatedHeight;
|
|
13853
13885
|
}
|
|
13854
|
-
function
|
|
13855
|
-
|
|
13856
|
-
for (let i =
|
|
13857
|
-
|
|
13886
|
+
function rebuildOffsets() {
|
|
13887
|
+
if (dirtyFrom >= itemCount) return;
|
|
13888
|
+
for (let i = dirtyFrom; i < itemCount; i++) {
|
|
13889
|
+
offsets[i + 1] = offsets[i] + getHeight(i);
|
|
13858
13890
|
}
|
|
13859
|
-
|
|
13891
|
+
dirtyFrom = itemCount;
|
|
13860
13892
|
}
|
|
13861
|
-
function
|
|
13862
|
-
|
|
13863
|
-
|
|
13864
|
-
|
|
13893
|
+
function getOffset(index) {
|
|
13894
|
+
rebuildOffsets();
|
|
13895
|
+
const safeIndex = Math.min(itemCount, Math.max(0, index));
|
|
13896
|
+
return offsets[safeIndex] ?? 0;
|
|
13897
|
+
}
|
|
13898
|
+
function binarySearchStart(scrollTop) {
|
|
13899
|
+
let lo = 0;
|
|
13900
|
+
let hi = itemCount - 1;
|
|
13901
|
+
while (lo <= hi) {
|
|
13902
|
+
const mid = lo + hi >>> 1;
|
|
13903
|
+
if (offsets[mid + 1] <= scrollTop) {
|
|
13904
|
+
lo = mid + 1;
|
|
13905
|
+
} else {
|
|
13906
|
+
hi = mid - 1;
|
|
13907
|
+
}
|
|
13865
13908
|
}
|
|
13866
|
-
return
|
|
13909
|
+
return Math.min(lo, itemCount - 1);
|
|
13867
13910
|
}
|
|
13868
13911
|
return {
|
|
13869
13912
|
getRange(scrollTop, containerHeight, _itemCount, overscan) {
|
|
13870
13913
|
if (itemCount === 0) {
|
|
13871
13914
|
return { startIndex: 0, endIndex: -1, offsetTop: 0, totalHeight: 0 };
|
|
13872
13915
|
}
|
|
13873
|
-
|
|
13874
|
-
|
|
13875
|
-
for (let i = 0; i < itemCount; i++) {
|
|
13876
|
-
const h = getHeight(i);
|
|
13877
|
-
if (accum + h > scrollTop) {
|
|
13878
|
-
rawStart = i;
|
|
13879
|
-
break;
|
|
13880
|
-
}
|
|
13881
|
-
accum += h;
|
|
13882
|
-
if (i === itemCount - 1) rawStart = itemCount - 1;
|
|
13883
|
-
}
|
|
13916
|
+
rebuildOffsets();
|
|
13917
|
+
const rawStart = binarySearchStart(scrollTop);
|
|
13884
13918
|
const startIndex = Math.max(0, rawStart - overscan);
|
|
13885
13919
|
const viewEnd = scrollTop + containerHeight;
|
|
13886
13920
|
let endIndex = rawStart;
|
|
13887
|
-
|
|
13888
|
-
while (endIndex < itemCount - 1 && endAccum < viewEnd) {
|
|
13889
|
-
endAccum += getHeight(endIndex);
|
|
13921
|
+
while (endIndex < itemCount - 1 && offsets[endIndex] < viewEnd) {
|
|
13890
13922
|
endIndex++;
|
|
13891
13923
|
}
|
|
13892
13924
|
endIndex = Math.min(itemCount - 1, endIndex + overscan);
|
|
13893
|
-
const offsetTop =
|
|
13894
|
-
const totalHeight =
|
|
13925
|
+
const offsetTop = offsets[startIndex] ?? 0;
|
|
13926
|
+
const totalHeight = offsets[itemCount] ?? 0;
|
|
13895
13927
|
return { startIndex, endIndex, offsetTop, totalHeight };
|
|
13896
13928
|
},
|
|
13897
13929
|
getItemHeight(index) {
|
|
@@ -13901,7 +13933,11 @@ function dynamicSizeStrategy(estimatedHeight, itemCount) {
|
|
|
13901
13933
|
return getOffset(index);
|
|
13902
13934
|
},
|
|
13903
13935
|
updateItemHeight(index, measuredHeight) {
|
|
13936
|
+
if (index < 0 || index >= itemCount || !Number.isFinite(measuredHeight) || measuredHeight <= 0 || getHeight(index) === measuredHeight) {
|
|
13937
|
+
return;
|
|
13938
|
+
}
|
|
13904
13939
|
measuredHeights.set(index, measuredHeight);
|
|
13940
|
+
dirtyFrom = Math.min(dirtyFrom, index);
|
|
13905
13941
|
}
|
|
13906
13942
|
};
|
|
13907
13943
|
}
|
|
@@ -18928,7 +18964,7 @@ var designTokens = {
|
|
|
18928
18964
|
};
|
|
18929
18965
|
|
|
18930
18966
|
// src/index.ts
|
|
18931
|
-
var version = "2.0.0
|
|
18967
|
+
var version = "2.0.0";
|
|
18932
18968
|
export {
|
|
18933
18969
|
ANIMATION_DURATION_FAST_MS,
|
|
18934
18970
|
ANIMATION_DURATION_MS,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expcat/tigercat-core",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core utilities for Tigercat UI library",
|
|
6
6
|
"license": "MIT",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
196
|
"devDependencies": {
|
|
197
|
-
"tailwindcss": "^4.3.
|
|
197
|
+
"tailwindcss": "^4.3.2",
|
|
198
198
|
"tsup": "^8.5.1",
|
|
199
199
|
"typescript": "^6.0.3"
|
|
200
200
|
},
|