@datatechsolutions/ui 2.7.128 → 2.7.130

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as Headless from '@headlessui/react';
3
- import { ButtonProps as ButtonProps$2 } from '@headlessui/react';
3
+ import { ButtonProps as ButtonProps$1 } from '@headlessui/react';
4
4
  import * as React$1 from 'react';
5
5
  import React__default, { HTMLAttributes, ReactNode, InputHTMLAttributes, SelectHTMLAttributes, ComponentType, FormEvent, TextareaHTMLAttributes, SVGProps } from 'react';
6
6
  import * as next_link from 'next/link';
@@ -8,11 +8,11 @@ import { LinkProps } from 'next/link';
8
8
  export { D as DynamicIslandConfirm, a as EntityDrawer, E as EntityDrawerMaxWidth, b as EntityDrawerProps } from './entity-drawer-D2H7ugi9.mjs';
9
9
  import { Variants, Transition } from 'framer-motion';
10
10
  export { LOCALE_FLAGS } from '@datatechsolutions/shared-domain/i18n';
11
- import * as ProgressPrimitive from '@radix-ui/react-progress';
12
11
  import * as TabsPrimitive from '@radix-ui/react-tabs';
12
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
13
13
  import * as zustand from 'zustand';
14
14
 
15
- declare const Link$1: React__default.ForwardRefExoticComponent<LinkProps<any> & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
15
+ declare const Link: React__default.ForwardRefExoticComponent<LinkProps<any> & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
16
16
 
17
17
  /**
18
18
  * Button Styles Module
@@ -39,7 +39,7 @@ declare const sizeStyles: {
39
39
  lg: string;
40
40
  xl: string;
41
41
  };
42
- declare const styles$1: {
42
+ declare const styles: {
43
43
  base: string[];
44
44
  solid: string[];
45
45
  outline: string[];
@@ -93,14 +93,14 @@ declare const iconButtonSizes: {
93
93
  md: string;
94
94
  lg: string;
95
95
  };
96
- type ColorType = keyof typeof styles$1.colors | keyof typeof iosColors$1;
96
+ type ColorType = keyof typeof styles.colors | keyof typeof iosColors$1;
97
97
  type SizeType = keyof typeof sizeStyles;
98
98
  type FABColorType = keyof typeof fabColors;
99
99
  type FABPositionType = keyof typeof fabPositions;
100
100
  type FABSizeType = keyof typeof fabSizes;
101
101
  type IconButtonSizeType = keyof typeof iconButtonSizes;
102
102
 
103
- type ButtonProps$1 = ({
103
+ type ButtonProps = ({
104
104
  color?: ColorType;
105
105
  outline?: never;
106
106
  plain?: never;
@@ -137,10 +137,10 @@ type ButtonProps$1 = ({
137
137
  destructive?: boolean;
138
138
  } & (({
139
139
  href?: never;
140
- } & Omit<ButtonProps$2, 'as' | 'className'>) | ({
140
+ } & Omit<ButtonProps$1, 'as' | 'className'>) | ({
141
141
  href: string;
142
- } & Omit<React__default.ComponentPropsWithoutRef<typeof Link$1>, 'className'>));
143
- declare const Button$1: React__default.ForwardRefExoticComponent<(ButtonProps$1 & {
142
+ } & Omit<React__default.ComponentPropsWithoutRef<typeof Link>, 'className'>));
143
+ declare const Button: React__default.ForwardRefExoticComponent<(ButtonProps & {
144
144
  disabled?: boolean;
145
145
  }) & React__default.RefAttributes<HTMLElement>>;
146
146
  /**
@@ -191,7 +191,7 @@ type IconButtonProps = {
191
191
  };
192
192
  declare function IconButton({ icon, label, color, size, variant, onClick, disabled, loading, className, destructive, }: IconButtonProps): react_jsx_runtime.JSX.Element;
193
193
 
194
- type CardProps$1 = HTMLAttributes<HTMLDivElement> & {
194
+ type CardProps = HTMLAttributes<HTMLDivElement> & {
195
195
  /** Card style variant */
196
196
  variant?: "default" | "gradient" | "glass" | "elevated";
197
197
  /** Enable hover lift animation */
@@ -201,12 +201,12 @@ type CardProps$1 = HTMLAttributes<HTMLDivElement> & {
201
201
  /** Click handler (enables pressable automatically) */
202
202
  onPress?: () => void;
203
203
  };
204
- declare function Card$1({ className, variant, interactive, pressable, onPress, ...props }: CardProps$1): react_jsx_runtime.JSX.Element;
205
- declare function CardHeader$1({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
206
- declare function CardTitle$1({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
207
- declare function CardDescription$1({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
208
- declare function CardContent$1({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
209
- declare function CardFooter$1({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
204
+ declare function Card({ className, variant, interactive, pressable, onPress, ...props }: CardProps): react_jsx_runtime.JSX.Element;
205
+ declare function CardHeader({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
206
+ declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
207
+ declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
208
+ declare function CardContent({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
209
+ declare function CardFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
210
210
  declare function CardDivider({ className }: {
211
211
  className?: string;
212
212
  }): react_jsx_runtime.JSX.Element;
@@ -309,7 +309,7 @@ declare const Input: React$1.ForwardRefExoticComponent<InputHTMLAttributes<HTMLI
309
309
  /**
310
310
  * Password Input - Pre-configured input for passwords
311
311
  */
312
- declare const PasswordInput$1: React$1.ForwardRefExoticComponent<Omit<InputProps, "type" | "showPasswordToggle"> & React$1.RefAttributes<HTMLInputElement>>;
312
+ declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<InputProps, "type" | "showPasswordToggle"> & React$1.RefAttributes<HTMLInputElement>>;
313
313
  /**
314
314
  * Search Input - Pre-configured input for search
315
315
  */
@@ -361,7 +361,7 @@ type MetricCardTrend = {
361
361
  label?: string;
362
362
  formatValue?: (value: number) => string;
363
363
  };
364
- type MetricCardProps$1 = {
364
+ type MetricCardProps = {
365
365
  title: string;
366
366
  value: string | number;
367
367
  subtitle?: string;
@@ -369,7 +369,7 @@ type MetricCardProps$1 = {
369
369
  trend?: MetricCardTrend;
370
370
  variant?: "default" | "success" | "warning" | "danger";
371
371
  };
372
- declare function MetricCard$1({ title, value, subtitle, icon, trend, variant, }: MetricCardProps$1): react_jsx_runtime.JSX.Element;
372
+ declare function MetricCard({ title, value, subtitle, icon, trend, variant, }: MetricCardProps): react_jsx_runtime.JSX.Element;
373
373
 
374
374
  type HeroSectionProps = {
375
375
  icon: ReactNode;
@@ -475,7 +475,7 @@ type StatCardProps = {
475
475
  * Reusable stat card for displaying metrics
476
476
  * Used in stats grids across dashboard pages
477
477
  */
478
- declare function StatCard$1({ icon, value, label, badge, info, color, isFiltered, isUrgent, isActive, onClick, className, }: StatCardProps): react_jsx_runtime.JSX.Element;
478
+ declare function StatCard({ icon, value, label, badge, info, color, isFiltered, isUrgent, isActive, onClick, className, }: StatCardProps): react_jsx_runtime.JSX.Element;
479
479
 
480
480
  type SectionHeaderProps = {
481
481
  icon: ReactNode;
@@ -1236,7 +1236,7 @@ type GlassModalProps = {
1236
1236
  declare function GlassModal({ open, onClose, children, panelClassName, contentClassName, }: GlassModalProps): react_jsx_runtime.JSX.Element;
1237
1237
 
1238
1238
  declare function Text({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): react_jsx_runtime.JSX.Element;
1239
- declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link$1>): react_jsx_runtime.JSX.Element;
1239
+ declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link>): react_jsx_runtime.JSX.Element;
1240
1240
  declare function Strong({ className, ...props }: React.ComponentPropsWithoutRef<'strong'>): react_jsx_runtime.JSX.Element;
1241
1241
  declare function Code({ className, ...props }: React.ComponentPropsWithoutRef<'code'>): react_jsx_runtime.JSX.Element;
1242
1242
 
@@ -3244,82 +3244,6 @@ declare const getUsColors: (state: string) => {
3244
3244
  declare const getUsAccent: (state: string) => string | null;
3245
3245
  declare const isValidUsState: (state: string) => boolean;
3246
3246
 
3247
- declare const Link: React$1.ForwardRefExoticComponent<Omit<Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, keyof next_link.LinkProps<any>> & next_link.LinkProps<any> & {
3248
- children?: React.ReactNode | undefined;
3249
- } & React$1.RefAttributes<HTMLAnchorElement>, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
3250
-
3251
- declare const styles: {
3252
- base: string[];
3253
- solid: string[];
3254
- outline: string[];
3255
- plain: string[];
3256
- colors: {
3257
- "dark/zinc": string[];
3258
- light: string[];
3259
- "dark/white": string[];
3260
- dark: string[];
3261
- white: string[];
3262
- zinc: string[];
3263
- indigo: string[];
3264
- cyan: string[];
3265
- red: string[];
3266
- orange: string[];
3267
- amber: string[];
3268
- yellow: string[];
3269
- lime: string[];
3270
- green: string[];
3271
- emerald: string[];
3272
- teal: string[];
3273
- sky: string[];
3274
- blue: string[];
3275
- brand: string[];
3276
- accent: string[];
3277
- violet: string[];
3278
- purple: string[];
3279
- fuchsia: string[];
3280
- pink: string[];
3281
- rose: string[];
3282
- };
3283
- };
3284
- type ButtonProps = ({
3285
- color?: keyof typeof styles.colors;
3286
- outline?: never;
3287
- plain?: never;
3288
- } | {
3289
- color?: never;
3290
- outline: true;
3291
- plain?: never;
3292
- } | {
3293
- color?: never;
3294
- outline?: never;
3295
- plain: true;
3296
- }) & {
3297
- className?: string;
3298
- children: React__default.ReactNode;
3299
- "aria-label"?: string;
3300
- "aria-describedby"?: string;
3301
- "aria-busy"?: boolean;
3302
- loading?: boolean;
3303
- } & (Omit<Headless.ButtonProps, "as" | "className"> | Omit<React__default.ComponentPropsWithoutRef<typeof Link>, "className">);
3304
- declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLElement>>;
3305
-
3306
- declare function InputGroup({ children, }: React__default.ComponentPropsWithoutRef<"span">): react_jsx_runtime.JSX.Element;
3307
-
3308
- declare const SelectContent: ({ children }: {
3309
- children: React__default.ReactNode;
3310
- }) => react_jsx_runtime.JSX.Element;
3311
- declare const SelectItem: ({ children, value, }: {
3312
- children: React__default.ReactNode;
3313
- value: string;
3314
- }) => react_jsx_runtime.JSX.Element;
3315
- declare const SelectTrigger: ({ children, className, }: {
3316
- children: React__default.ReactNode;
3317
- className?: string;
3318
- }) => react_jsx_runtime.JSX.Element;
3319
- declare const SelectValue: ({ placeholder }: {
3320
- placeholder?: string;
3321
- }) => react_jsx_runtime.JSX.Element;
3322
-
3323
3247
  declare function Fieldset({ className, ...props }: {
3324
3248
  className?: string;
3325
3249
  } & Omit<Headless.FieldsetProps, "as" | "className">): react_jsx_runtime.JSX.Element;
@@ -3330,7 +3254,7 @@ declare function FieldGroup({ className, ...props }: React__default.ComponentPro
3330
3254
  declare function Field({ className, ...props }: {
3331
3255
  className?: string;
3332
3256
  } & Omit<Headless.FieldProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3333
- declare function Label$1({ className, ...props }: {
3257
+ declare function Label({ className, ...props }: {
3334
3258
  className?: string;
3335
3259
  } & Omit<Headless.LabelProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3336
3260
  declare function Description({ className, ...props }: {
@@ -3340,181 +3264,8 @@ declare function ErrorMessage({ className, ...props }: {
3340
3264
  className?: string;
3341
3265
  } & Omit<Headless.DescriptionProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3342
3266
 
3343
- interface LabelProps extends React__default.LabelHTMLAttributes<HTMLLabelElement> {
3344
- children: React__default.ReactNode;
3345
- className?: string;
3346
- required?: boolean;
3347
- }
3348
- declare const Label: React__default.ForwardRefExoticComponent<LabelProps & React__default.RefAttributes<HTMLLabelElement>>;
3349
-
3350
3267
  declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
3351
3268
 
3352
- declare function SwitchGroup({ className, ...props }: React__default.ComponentPropsWithoutRef<"div">): react_jsx_runtime.JSX.Element;
3353
- declare function SwitchField({ className, ...props }: {
3354
- className?: string;
3355
- } & Omit<Headless.FieldProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3356
- declare const colors: {
3357
- "dark/zinc": string[];
3358
- "dark/white": string[];
3359
- dark: string[];
3360
- zinc: string[];
3361
- white: string[];
3362
- red: string[];
3363
- orange: string[];
3364
- amber: string[];
3365
- yellow: string[];
3366
- lime: string[];
3367
- green: string[];
3368
- emerald: string[];
3369
- teal: string[];
3370
- cyan: string[];
3371
- sky: string[];
3372
- blue: string[];
3373
- indigo: string[];
3374
- violet: string[];
3375
- purple: string[];
3376
- fuchsia: string[];
3377
- pink: string[];
3378
- rose: string[];
3379
- };
3380
- type Color = keyof typeof colors;
3381
- declare function Switch({ color, className, ...props }: {
3382
- color?: Color;
3383
- className?: string;
3384
- } & Omit<Headless.SwitchProps, "as" | "className" | "children">): react_jsx_runtime.JSX.Element;
3385
-
3386
- declare function DropdownButton<T extends React__default.ElementType = typeof Button>({ as, ...props }: {
3387
- className?: string;
3388
- } & Omit<Headless.MenuButtonProps<T>, "className">): react_jsx_runtime.JSX.Element;
3389
- declare function DropdownMenu({ anchor, className, ...props }: {
3390
- className?: string;
3391
- } & Omit<Headless.MenuItemsProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3392
- declare function DropdownItem({ className, ...props }: {
3393
- className?: string;
3394
- } & (Omit<Headless.MenuItemProps<"button">, "as" | "className"> | Omit<Headless.MenuItemProps<typeof Link>, "as" | "className">)): react_jsx_runtime.JSX.Element;
3395
- declare function DropdownHeader({ className, ...props }: React__default.ComponentPropsWithoutRef<"div">): react_jsx_runtime.JSX.Element;
3396
- declare function DropdownSection({ className, ...props }: {
3397
- className?: string;
3398
- } & Omit<Headless.MenuSectionProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3399
- declare function DropdownHeading({ className, ...props }: {
3400
- className?: string;
3401
- } & Omit<Headless.MenuHeadingProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3402
- declare function DropdownDivider({ className, ...props }: {
3403
- className?: string;
3404
- } & Omit<Headless.MenuSeparatorProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3405
- declare function DropdownLabel({ className, ...props }: React__default.ComponentPropsWithoutRef<"div">): react_jsx_runtime.JSX.Element;
3406
- declare function DropdownDescription({ className, ...props }: {
3407
- className?: string;
3408
- } & Omit<Headless.DescriptionProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3409
- declare function DropdownShortcut({ keys, className, ...props }: {
3410
- keys: string | string[];
3411
- className?: string;
3412
- } & Omit<Headless.DescriptionProps<"kbd">, "as" | "className">): react_jsx_runtime.JSX.Element;
3413
-
3414
- interface CardProps {
3415
- children: React__default.ReactNode;
3416
- className?: string;
3417
- padding?: "none" | "sm" | "md" | "lg";
3418
- variant?: "default" | "elevated" | "outlined" | "flat";
3419
- hover?: boolean;
3420
- loading?: boolean;
3421
- onClick?: () => void;
3422
- }
3423
- /**
3424
- * Unified Card Component
3425
- *
3426
- * Glass-styled card with liquid-surface treatment:
3427
- * - Translucent glass surfaces with backdrop blur
3428
- * - Soft white/10 borders for depth
3429
- * - Hover glow via liquid-surface built-in transitions
3430
- * - Mobile-responsive padding
3431
- */
3432
- declare const Card: React__default.NamedExoticComponent<CardProps>;
3433
- /**
3434
- * Card Header - Glass-styled card header with gradient accent bar
3435
- */
3436
- declare const CardHeader: React__default.NamedExoticComponent<{
3437
- title: string;
3438
- subtitle?: string;
3439
- actions?: React__default.ReactNode;
3440
- className?: string;
3441
- children?: React__default.ReactNode;
3442
- }>;
3443
- /**
3444
- * Card Title - Standardized card title component
3445
- */
3446
- declare const CardTitle: React__default.NamedExoticComponent<{
3447
- children: React__default.ReactNode;
3448
- className?: string;
3449
- }>;
3450
- /**
3451
- * Card Description - Supporting text below card title
3452
- */
3453
- declare const CardDescription: React__default.NamedExoticComponent<{
3454
- children: React__default.ReactNode;
3455
- className?: string;
3456
- }>;
3457
- /**
3458
- * Card Content - Standardized card content area
3459
- */
3460
- declare const CardContent: React__default.NamedExoticComponent<{
3461
- children: React__default.ReactNode;
3462
- className?: string;
3463
- }>;
3464
- /**
3465
- * Card Footer - Glass-styled card footer with translucent border
3466
- */
3467
- declare const CardFooter: React__default.NamedExoticComponent<{
3468
- children: React__default.ReactNode;
3469
- className?: string;
3470
- justify?: "start" | "center" | "end" | "between";
3471
- }>;
3472
- /**
3473
- * Stat Card - Glass-styled card for displaying statistics
3474
- */
3475
- declare const StatCard: React__default.NamedExoticComponent<{
3476
- title: string;
3477
- value: string | number;
3478
- subtitle?: string;
3479
- icon?: React__default.ReactNode;
3480
- trend?: {
3481
- value: number;
3482
- label: string;
3483
- direction: "up" | "down" | "neutral";
3484
- };
3485
- loading?: boolean;
3486
- className?: string;
3487
- }>;
3488
-
3489
- declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3490
-
3491
- interface PasswordInputProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> {
3492
- variant?: "default" | "apple";
3493
- /** When true, shows password strength indicator and requirements checklist */
3494
- showStrength?: boolean;
3495
- }
3496
- declare const PasswordInput: React__default.ForwardRefExoticComponent<PasswordInputProps & React__default.RefAttributes<HTMLInputElement>>;
3497
-
3498
- declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
3499
- declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3500
- declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
3501
- declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3502
-
3503
- interface SliderInputProps {
3504
- id: string;
3505
- label: string;
3506
- value: number;
3507
- onChange: (value: number) => void;
3508
- min: number;
3509
- max: number;
3510
- step: number;
3511
- suffix?: string;
3512
- tooltip?: string;
3513
- formatDisplay?: (value: number) => string;
3514
- showValue?: boolean;
3515
- }
3516
- declare const SliderInput: React.FC<SliderInputProps>;
3517
-
3518
3269
  interface PaginationMeta {
3519
3270
  page: number;
3520
3271
  limit?: number;
@@ -3542,25 +3293,6 @@ interface DataPaginationProps {
3542
3293
  }
3543
3294
  declare function DataPagination({ pagination, onUpdate, loading, showPageSize, pageSizeOptions, params, }: DataPaginationProps): react_jsx_runtime.JSX.Element | null;
3544
3295
 
3545
- interface ContactCardProps {
3546
- type: "partnerships" | "press" | "careers" | "general";
3547
- email: string;
3548
- phone: string;
3549
- }
3550
- declare const ContactCard: React__default.NamedExoticComponent<ContactCardProps>;
3551
- interface OfficeCardProps {
3552
- city: string;
3553
- address: string;
3554
- postalCode: string;
3555
- }
3556
- declare const OfficeCard: React__default.NamedExoticComponent<OfficeCardProps>;
3557
- interface ContactSectionProps {
3558
- title: string;
3559
- subtitle: string;
3560
- children: React__default.ReactNode;
3561
- }
3562
- declare const ContactSection: React__default.NamedExoticComponent<ContactSectionProps>;
3563
-
3564
3296
  interface PageHeaderProps {
3565
3297
  title: string;
3566
3298
  subtitle?: string;
@@ -3587,20 +3319,75 @@ declare const PageSectionHeader: React__default.NamedExoticComponent<Omit<PageHe
3587
3319
  */
3588
3320
  declare const CardSectionHeader: React__default.NamedExoticComponent<Omit<PageHeaderProps, "size">>;
3589
3321
 
3590
- interface MetricCardProps {
3322
+ declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
3323
+ declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3324
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
3325
+ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3326
+
3327
+ interface ContactCardProps {
3328
+ type: "partnerships" | "press" | "careers" | "general";
3329
+ email: string;
3330
+ phone: string;
3331
+ }
3332
+ declare const ContactCard: React__default.NamedExoticComponent<ContactCardProps>;
3333
+ interface OfficeCardProps {
3334
+ city: string;
3335
+ address: string;
3336
+ postalCode: string;
3337
+ }
3338
+ declare const OfficeCard: React__default.NamedExoticComponent<OfficeCardProps>;
3339
+ interface ContactSectionProps {
3591
3340
  title: string;
3592
- value: string | ReactNode;
3593
- subtitle?: string;
3594
- tooltip?: string;
3595
- className?: string;
3596
- children?: ReactNode;
3341
+ subtitle: string;
3342
+ children: React__default.ReactNode;
3597
3343
  }
3598
- declare const MetricCard: React.FC<MetricCardProps>;
3344
+ declare const ContactSection: React__default.NamedExoticComponent<ContactSectionProps>;
3599
3345
 
3600
- interface MetricTooltipProps {
3601
- text: string;
3602
- }
3603
- declare const MetricTooltip: React.FC<MetricTooltipProps>;
3346
+ declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
3347
+
3348
+ declare function DropdownButton<T extends React__default.ElementType = typeof Button>({ as, ...props }: {
3349
+ className?: string;
3350
+ } & Omit<Headless.MenuButtonProps<T>, "className">): react_jsx_runtime.JSX.Element;
3351
+ declare function DropdownMenu({ anchor, className, ...props }: {
3352
+ className?: string;
3353
+ } & Omit<Headless.MenuItemsProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3354
+ declare function DropdownItem({ className, ...props }: {
3355
+ className?: string;
3356
+ } & (Omit<Headless.MenuItemProps<"button">, "as" | "className"> | Omit<Headless.MenuItemProps<typeof Link>, "as" | "className">)): react_jsx_runtime.JSX.Element;
3357
+ declare function DropdownDivider({ className, ...props }: {
3358
+ className?: string;
3359
+ } & Omit<Headless.MenuSeparatorProps, "as" | "className">): react_jsx_runtime.JSX.Element;
3360
+ declare function DropdownLabel({ className, ...props }: React__default.ComponentPropsWithoutRef<"div">): react_jsx_runtime.JSX.Element;
3361
+
3362
+ declare const colors: {
3363
+ "dark/zinc": string[];
3364
+ "dark/white": string[];
3365
+ dark: string[];
3366
+ zinc: string[];
3367
+ white: string[];
3368
+ red: string[];
3369
+ orange: string[];
3370
+ amber: string[];
3371
+ yellow: string[];
3372
+ lime: string[];
3373
+ green: string[];
3374
+ emerald: string[];
3375
+ teal: string[];
3376
+ cyan: string[];
3377
+ sky: string[];
3378
+ blue: string[];
3379
+ indigo: string[];
3380
+ violet: string[];
3381
+ purple: string[];
3382
+ fuchsia: string[];
3383
+ pink: string[];
3384
+ rose: string[];
3385
+ };
3386
+ type Color = keyof typeof colors;
3387
+ declare function Switch({ color, className, ...props }: {
3388
+ color?: Color;
3389
+ className?: string;
3390
+ } & Omit<Headless.SwitchProps, "as" | "className" | "children">): react_jsx_runtime.JSX.Element;
3604
3391
 
3605
3392
  /**
3606
3393
  * Shared navigation item type used across all platform apps.
@@ -3939,4 +3726,4 @@ declare const selectUserInitial: (state: PlatformShellState) => string;
3939
3726
  declare const selectIsAuthenticated: (state: PlatformShellState) => boolean;
3940
3727
  declare const selectShowShellChrome: (state: PlatformShellState) => boolean;
3941
3728
 
3942
- export { type AccentColor, ActionMenu, ActionSheet, type ActiveFilter, type ActiveFilterChip, type ActiveFilterChipStyleConfig, ActiveFilterChips, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, type AppNavigationProps, AppShell, type AppShellProps, ArchiveSwipeAction, AuthLayout, type AuthLayoutProps, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, type BackupCodeGridProps, BadRequestPage, Badge, BaseForm, type BaseFormIconColor, type BaseFormProps, BentoCard, BooleanFlagsPicker, type BooleanFlagsPickerProps, type BooleanFlagsPreset, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, type BreadcrumbItem, type BreadcrumbPage, Button$1 as Button, Card$1 as Card, CardActionMenu, type CardActionMenuItem, CardContent$1 as CardContent, CardDescription$1 as CardDescription, CardDivider, CardFooter$1 as CardFooter, CardGridSkeleton, CardHeader$1 as CardHeader, CardSectionHeader, CardTitle$1 as CardTitle, Card as CatalystCard, CardContent as CatalystCardContent, CardDescription as CatalystCardDescription, CardFooter as CatalystCardFooter, CardHeader as CatalystCardHeader, CardTitle as CatalystCardTitle, MetricCard as CatalystMetricCard, PasswordInput as CatalystPasswordInput, type PasswordInputProps as CatalystPasswordInputProps, StatCard as CatalystStatCard, CategoryBadge, type CategoryBadgeProps, CategoryTab, type CategoryTabConfig, type CategoryTabProps, CategoryTabs, type CategoryTabsProps, type ChipItem, type ChipItemStyle, ChipPicker, CircularRefreshIndicator, Code, type CollapsibleGroup, CollapsibleGroupedList, type CollapsibleGroupedListProps, CompactSegmentedControl, ContactCard, ContactSection, Container, type ContainerProps, type ContainerVariant, ContextMenu, type ContextMenuDivider, type ContextMenuEntry, type ContextMenuItem, CookieConsent, CopyableId, CountPill, CreateActionButton, DashboardProgressShell, DataPagination, DatePicker, DeleteSwipeAction, Description, DetailsPopover, type DetailsPopoverActor, type DetailsPopoverComparison, type DetailsPopoverNote, type DetailsPopoverProps, DevModeBanner, Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle, Divider, Dock, type DockAction, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDescription, DropdownDivider, DropdownHeader, DropdownHeading, DropdownItem, DropdownLabel, DropdownMenu, DropdownSection, DropdownSelect, DropdownShortcut, DynamicIsland, DynamicIslandNotification, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, type EntityCardProps, ErrorMessage, ErrorState, type ExpandableHistoryItem, ExpandableHistoryList, type ExpandableHistoryListProps, ExpandingPageIndicator, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field, FieldGroup, Label$1 as FieldLabel, Fieldset, FilterBadge, FilterPill, type FilterPillProps, type FilterPillVariant, FilterSectionHeader, type FilterSectionHeaderProps, FilterTileButton, type FilterTileButtonProps, type FilterTileColor, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, type FlyoutNavItem, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, type FormActionsProps, FormActionsRow, type FormActionsRowProps, FormCheckbox, type FormCheckboxProps, FormField, type FormFieldProps, FormGrid, type FormGridProps, FormInput, type FormInputProps, FormModal, FormPriceInput, type FormPriceInputProps, type FormProps, FormSection, type FormSectionProps, FormSelect, type FormSelectProps, type FormStep, FormTextarea, type FormTextareaProps, FormToggle, type FormToggleProps, type FuelColors, GeoMapCanvas, type GeoMapCanvasProps, GeoMapLegend, type GeoMapLegendProps, type GeoMapRegionData, GlassModal, Gradient, GradientBackground, GrowthIndicator, Heading, HeroPanel, type HeroPanelProps, type HeroPanelStat, HeroSection, IconButton, InfoPopover, type InfoPopoverProps, InlineForm, type InlineFormProps, InlineSpinner, Input, InputGroup, InteractiveGeoMap, type InteractiveGeoMapProps, ItemSummary, type ItemSummaryMetadata, KORI_ERP_LOADER, Label, LabeledToggle, type LanguageOption$1 as LanguageOption, LanguageSwitcher, LaunchpadGrid, type LaunchpadGridProps, type LaunchpadItem, type LaunchpadMenuItem, type LaunchpadUserProfile, Lead, Legend, Link, LiquidFilterInput, ListCard, ListCardItem, ListItem, type ListItemAction, type ListItemMetadata, type ListItemProps, type ListItemVariant, LoadingOverlay, ManagementPageLayout, type ManagementPageLayoutProps, ManagementSurface, MapZoomControls, type MapZoomControlsProps, type MetaItem, MetricCard$1 as MetricCard, MetricTooltip, MonthPicker, MultiColumnPicker, type NavigationItem, type NavigationMenuItem, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, type Notification, NotificationBadge, type NotificationBadgeProps, NotificationBellButton, NotificationProvider, type NotificationType, OfficeCard, OfflineState, type OffsetPaginationParams, OptionGrid, type OptionGridItem, type OptionGridProps, OtpInput, type OtpInputProps, PageEmptyState, PageHeader, PageHeading, type PageHeadingProps, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, type PaginationMeta, PasswordInput$1 as PasswordInput, type PasswordPolicy, PasswordStrengthMeter, type PasswordStrengthMeterProps, Pill, PlatformShell, type PlatformShellLabels, type PlatformShellProps, type PlatformShellState, type PlatformShellUser, PlusGrid, PlusGridItem, PlusGridRow, type PreferenceGroupConfig, PreferenceSection, type PreferenceSectionProps, type PreferencesSectionConfig, PriceChangeBadge, ProfileIdentityCard, type ProfileSectionConfig, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, type RadioGroupConfig, RegionFilterSkeleton, RoleBadge, SafeArea, SafeAreaSpacer, SafeAreaView, type SaveStatus, SearchBar, SearchFilterToolbar, type SearchFilterToolbarProps, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, type SelectableChipItem, SelectableChipPicker, type SelectableChipPickerLabels, type SelectableListItem, SelectableListPicker, type SelectableListPickerLabels, SelectableOptionsGrid, type SelectableOptionsGridOption, type SelectableOptionsGridProps, SelectableTableRow, SelectionCard, type SelectionCardProps, type SelectionOption, ServerErrorPage, SettingsDialog, type SettingsDialogIdentity, type SettingsDialogProps, type SettingsDialogSection, type SettingsFieldConfig, type LanguageOption as SettingsLanguageOption, SettingsModal, type SettingsModalProps, type SettingsSection, Sheet, type ShellLabels, type ShellPreferences, type ShellUser, SliderInput, SocialLoginButtons, type SocialLoginButtonsProps, type SocialProvider, SortableTableHeader, Spinner, Stat, StatCard$1 as StatCard, StatCardSkeleton, StatusBadge, type StatusBadgeProps, StatusToggle, type StatusType, StepFormPage, type StepFormPageProps, StepNavigationButtons, type StepNavigationButtonsProps, StepTimeline, type StepTimelineItem, type StepTimelineProps, type StepTimelineStatus, Strong, type SubdivisionColorPalette, type SubdivisionThemeConfig, Subheading, SwipeableRow, Switch, SwitchField, SwitchGroup, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, type TagBadgeStyle, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, type ToggleConfig, ToggleSwitch, TouchTarget, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, type UseGeoMapStateOptions, UserAvatar, type UserAvatarLabels, type UserAvatarMenuItem, type UserAvatarProps, type UserAvatarUser, UserMobileInfo, type UserMobileInfoProps, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, type WorkspaceSectionConfig, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, createMotionProps, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, formatCurrency, formatDate, formatPercentage, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getTransition, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, iosColors, isValidBrazilState, isValidSubdivision, isValidUsState, listItem, listItemReduced, notificationBanner, notificationBannerReduced, pageControlDot, prefersReducedMotion, registerSubdivisionTheme, resolveGlassAccentRgb, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, swipeActionThreshold, swipeConstraints, triggerHaptic, useGeoMapState, useHaptic, useNotifications, usePlatformShellStore, usePullToRefresh };
3729
+ export { type AccentColor, ActionMenu, ActionSheet, type ActiveFilter, type ActiveFilterChip, type ActiveFilterChipStyleConfig, ActiveFilterChips, AnalysisSkeleton, AnimatedNumber, AnimatedTableRow, AppLogo, AppNavigation, type AppNavigationProps, AppShell, type AppShellProps, ArchiveSwipeAction, AuthLayout, type AuthLayoutProps, Avatar, AvatarButton, BRAZIL_ACCENT_MAP, BRAZIL_MACRO_REGIONS, BRAZIL_MAP_CENTER, BRAZIL_STATE_COORDINATES, BRAZIL_STATE_PALETTES, BR_THEME_CONFIG, BackupCodeGrid, type BackupCodeGridProps, BadRequestPage, Badge, BaseForm, type BaseFormIconColor, type BaseFormProps, BentoCard, BooleanFlagsPicker, type BooleanFlagsPickerProps, type BooleanFlagsPreset, BottomSafeArea, BrandFilterSkeleton, BrandedLoader, Breadcrumb, type BreadcrumbItem, type BreadcrumbPage, Button, Card, CardActionMenu, type CardActionMenuItem, CardContent, CardDescription, CardDivider, CardFooter, CardGridSkeleton, CardHeader, CardSectionHeader, CardTitle, CategoryBadge, type CategoryBadgeProps, CategoryTab, type CategoryTabConfig, type CategoryTabProps, CategoryTabs, type CategoryTabsProps, type ChipItem, type ChipItemStyle, ChipPicker, CircularRefreshIndicator, Code, type CollapsibleGroup, CollapsibleGroupedList, type CollapsibleGroupedListProps, CompactSegmentedControl, ContactCard, ContactSection, Container, type ContainerProps, type ContainerVariant, ContextMenu, type ContextMenuDivider, type ContextMenuEntry, type ContextMenuItem, CookieConsent, CopyableId, CountPill, CreateActionButton, DashboardProgressShell, DataPagination, DatePicker, DeleteSwipeAction, Description, DetailsPopover, type DetailsPopoverActor, type DetailsPopoverComparison, type DetailsPopoverNote, type DetailsPopoverProps, DevModeBanner, Dialog, DialogActions, DialogBody, DialogDescription, DialogTitle, Divider, Dock, type DockAction, DockContainer, DockSkeleton, DotRefreshIndicator, Dropdown, DropdownButton, DropdownDivider, DropdownItem, DropdownLabel, DropdownMenu, DropdownSelect, DynamicIsland, DynamicIslandNotification, EdgeSwipeIndicator, EdgeSwipeProvider, EditSwipeAction, EmptyState, EntityCard, type EntityCardProps, ErrorMessage, ErrorState, type ExpandableHistoryItem, ExpandableHistoryList, type ExpandableHistoryListProps, ExpandingPageIndicator, FUEL_PRICE_LOADER, FavoriteSwipeAction, FeatureCard, FeedItemCard, Field, FieldGroup, Label as FieldLabel, Fieldset, FilterBadge, FilterPill, type FilterPillProps, type FilterPillVariant, FilterSectionHeader, type FilterSectionHeaderProps, FilterTileButton, type FilterTileButtonProps, type FilterTileColor, FloatingActionButton, FlyoutMenu, FlyoutNavGrid, type FlyoutNavItem, FlyoutQuickActions, ForceTouchMenu, Form, FormActions, type FormActionsProps, FormActionsRow, type FormActionsRowProps, FormCheckbox, type FormCheckboxProps, FormField, type FormFieldProps, FormGrid, type FormGridProps, FormInput, type FormInputProps, FormModal, FormPriceInput, type FormPriceInputProps, type FormProps, FormSection, type FormSectionProps, FormSelect, type FormSelectProps, type FormStep, FormTextarea, type FormTextareaProps, FormToggle, type FormToggleProps, type FuelColors, GeoMapCanvas, type GeoMapCanvasProps, GeoMapLegend, type GeoMapLegendProps, type GeoMapRegionData, GlassModal, Gradient, GradientBackground, GrowthIndicator, Heading, HeroPanel, type HeroPanelProps, type HeroPanelStat, HeroSection, IconButton, InfoPopover, type InfoPopoverProps, InlineForm, type InlineFormProps, InlineSpinner, Input, InteractiveGeoMap, type InteractiveGeoMapProps, ItemSummary, type ItemSummaryMetadata, KORI_ERP_LOADER, LabeledToggle, type LanguageOption$1 as LanguageOption, LanguageSwitcher, LaunchpadGrid, type LaunchpadGridProps, type LaunchpadItem, type LaunchpadMenuItem, type LaunchpadUserProfile, Lead, Legend, LiquidFilterInput, ListCard, ListCardItem, ListItem, type ListItemAction, type ListItemMetadata, type ListItemProps, type ListItemVariant, LoadingOverlay, ManagementPageLayout, type ManagementPageLayoutProps, ManagementSurface, MapZoomControls, type MapZoomControlsProps, type MetaItem, MetricCard, MonthPicker, MultiColumnPicker, type NavigationItem, type NavigationMenuItem, NavigationProgress, NoDataState, NoResultsState, NotFoundPage, type Notification, NotificationBadge, type NotificationBadgeProps, NotificationBellButton, NotificationProvider, type NotificationType, OfficeCard, OfflineState, type OffsetPaginationParams, OptionGrid, type OptionGridItem, type OptionGridProps, OtpInput, type OtpInputProps, PageEmptyState, PageHeader, PageHeading, type PageHeadingProps, PageIndicator, PageLoadingState, PageSectionHeader, Pagination, type PaginationMeta, PasswordInput, type PasswordPolicy, PasswordStrengthMeter, type PasswordStrengthMeterProps, Pill, PlatformShell, type PlatformShellLabels, type PlatformShellProps, type PlatformShellState, type PlatformShellUser, PlusGrid, PlusGridItem, PlusGridRow, type PreferenceGroupConfig, PreferenceSection, type PreferenceSectionProps, type PreferencesSectionConfig, PriceChangeBadge, ProfileIdentityCard, type ProfileSectionConfig, Progress, ProgressIndicator, PullToRefreshContainer, PullToRefreshIndicator, RadiantHeading, RadiantStatCard, RadiantSubheading, type RadioGroupConfig, RegionFilterSkeleton, RoleBadge, SafeArea, SafeAreaSpacer, SafeAreaView, type SaveStatus, SearchBar, SearchFilterToolbar, type SearchFilterToolbarProps, SearchInput, SectionCard, SectionHeader, SectionHeaderSkeleton, SegmentedControl, Select, type SelectableChipItem, SelectableChipPicker, type SelectableChipPickerLabels, type SelectableListItem, SelectableListPicker, type SelectableListPickerLabels, SelectableOptionsGrid, type SelectableOptionsGridOption, type SelectableOptionsGridProps, SelectableTableRow, SelectionCard, type SelectionCardProps, type SelectionOption, ServerErrorPage, SettingsDialog, type SettingsDialogIdentity, type SettingsDialogProps, type SettingsDialogSection, type SettingsFieldConfig, type LanguageOption as SettingsLanguageOption, SettingsModal, type SettingsModalProps, type SettingsSection, Sheet, type ShellLabels, type ShellPreferences, type ShellUser, SocialLoginButtons, type SocialLoginButtonsProps, type SocialProvider, SortableTableHeader, Spinner, Stat, StatCard, StatCardSkeleton, StatusBadge, type StatusBadgeProps, StatusToggle, type StatusType, StepFormPage, type StepFormPageProps, StepNavigationButtons, type StepNavigationButtonsProps, StepTimeline, type StepTimelineItem, type StepTimelineProps, type StepTimelineStatus, Strong, type SubdivisionColorPalette, type SubdivisionThemeConfig, Subheading, SwipeableRow, Switch, Table, TableBody, TableCell, TableEmptyState, TableHead, TableHeader, TableRow, TableSkeleton, TableSkeletonRow, Tabs, TabsContent, TabsList, TabsTrigger, TagBadge, type TagBadgeStyle, Text, TextLink, Textarea, ThemeSwitch, ThemeToggle, ThemeToggleCompact, TimePicker, type ToggleConfig, ToggleSwitch, TouchTarget, US_ACCENT_MAP, US_MACRO_REGIONS, US_MAP_CENTER, US_STATE_COORDINATES, US_STATE_PALETTES, US_THEME_CONFIG, type UseGeoMapStateOptions, UserAvatar, type UserAvatarLabels, type UserAvatarMenuItem, type UserAvatarProps, type UserAvatarUser, UserMobileInfo, type UserMobileInfoProps, WINDSOCK_LOADER, WIRE_LOADER, WheelPicker, WindsockIcon, type WorkspaceSectionConfig, buildDockActions, buildFlyoutNavItems, buildLaunchpadItems, buttonPress, buttonPressReduced, buttonTap, cardHover, cardHoverReduced, cardPress, createMotionProps, durations, durationsReduced, easings, fadeOnly, fadeScale, filterByPermission, formatCurrency, formatDate, formatPercentage, getBrazilAccent, getBrazilColors, getBrazilFlagUrl, getBrazilGradient, getBrazilHexColor, getBrazilPalette, getStatusColor, getSubdivisionAccent, getSubdivisionColors, getSubdivisionFlagUrl, getSubdivisionGradient, getSubdivisionHexColor, getSubdivisionPalette, getTransition, getUsAccent, getUsColors, getUsFlagUrl, getUsGradient, getUsHexColor, getUsPalette, getVariants, iosColors, isValidBrazilState, isValidSubdivision, isValidUsState, listItem, listItemReduced, notificationBanner, notificationBannerReduced, pageControlDot, prefersReducedMotion, registerSubdivisionTheme, resolveGlassAccentRgb, selectIsAuthenticated, selectShowShellChrome, selectUserInitial, selectUserName, shimmerClass, shimmerWhiteClass, slideDown, slideRight, slideUp, springPresets, springPresetsReduced, staggerContainer, swipeActionThreshold, swipeConstraints, triggerHaptic, useGeoMapState, useHaptic, useNotifications, usePlatformShellStore, usePullToRefresh };