@datatechsolutions/ui 2.7.127 → 2.7.129
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/{chunk-TGE53WHS.mjs → chunk-B42HOCUU.mjs} +3 -3
- package/dist/{chunk-TGE53WHS.mjs.map → chunk-B42HOCUU.mjs.map} +1 -1
- package/dist/{chunk-4RB4JPCM.js → chunk-JLH7CRDF.js} +52 -52
- package/dist/{chunk-4RB4JPCM.js.map → chunk-JLH7CRDF.js.map} +1 -1
- package/dist/{chunk-S4MECSAK.js → chunk-ORFU4L3V.js} +186 -1611
- package/dist/chunk-ORFU4L3V.js.map +1 -0
- package/dist/{chunk-3VSRFFI6.mjs → chunk-XAXP6HE6.mjs} +158 -1547
- package/dist/chunk-XAXP6HE6.mjs.map +1 -0
- package/dist/index.d.mts +32 -310
- package/dist/index.d.ts +32 -310
- package/dist/index.js +325 -465
- package/dist/index.mjs +1 -1
- package/dist/workflow/index.js +119 -119
- package/dist/workflow/index.mjs +3 -3
- package/dist/workflow/workflow-canvas.js +3 -3
- package/dist/workflow/workflow-canvas.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-3VSRFFI6.mjs.map +0 -1
- package/dist/chunk-S4MECSAK.js.map +0 -1
package/dist/index.d.ts
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$
|
|
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,10 @@ import { LinkProps } from 'next/link';
|
|
|
8
8
|
export { D as DynamicIslandConfirm, a as EntityDrawer, E as EntityDrawerMaxWidth, b as EntityDrawerProps } from './entity-drawer-D2H7ugi9.js';
|
|
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';
|
|
13
12
|
import * as zustand from 'zustand';
|
|
14
13
|
|
|
15
|
-
declare const Link
|
|
14
|
+
declare const Link: React__default.ForwardRefExoticComponent<LinkProps<any> & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>>;
|
|
16
15
|
|
|
17
16
|
/**
|
|
18
17
|
* Button Styles Module
|
|
@@ -39,7 +38,7 @@ declare const sizeStyles: {
|
|
|
39
38
|
lg: string;
|
|
40
39
|
xl: string;
|
|
41
40
|
};
|
|
42
|
-
declare const styles
|
|
41
|
+
declare const styles: {
|
|
43
42
|
base: string[];
|
|
44
43
|
solid: string[];
|
|
45
44
|
outline: string[];
|
|
@@ -93,14 +92,14 @@ declare const iconButtonSizes: {
|
|
|
93
92
|
md: string;
|
|
94
93
|
lg: string;
|
|
95
94
|
};
|
|
96
|
-
type ColorType = keyof typeof styles
|
|
95
|
+
type ColorType = keyof typeof styles.colors | keyof typeof iosColors$1;
|
|
97
96
|
type SizeType = keyof typeof sizeStyles;
|
|
98
97
|
type FABColorType = keyof typeof fabColors;
|
|
99
98
|
type FABPositionType = keyof typeof fabPositions;
|
|
100
99
|
type FABSizeType = keyof typeof fabSizes;
|
|
101
100
|
type IconButtonSizeType = keyof typeof iconButtonSizes;
|
|
102
101
|
|
|
103
|
-
type ButtonProps
|
|
102
|
+
type ButtonProps = ({
|
|
104
103
|
color?: ColorType;
|
|
105
104
|
outline?: never;
|
|
106
105
|
plain?: never;
|
|
@@ -137,10 +136,10 @@ type ButtonProps$1 = ({
|
|
|
137
136
|
destructive?: boolean;
|
|
138
137
|
} & (({
|
|
139
138
|
href?: never;
|
|
140
|
-
} & Omit<ButtonProps$
|
|
139
|
+
} & Omit<ButtonProps$1, 'as' | 'className'>) | ({
|
|
141
140
|
href: string;
|
|
142
|
-
} & Omit<React__default.ComponentPropsWithoutRef<typeof Link
|
|
143
|
-
declare const Button
|
|
141
|
+
} & Omit<React__default.ComponentPropsWithoutRef<typeof Link>, 'className'>));
|
|
142
|
+
declare const Button: React__default.ForwardRefExoticComponent<(ButtonProps & {
|
|
144
143
|
disabled?: boolean;
|
|
145
144
|
}) & React__default.RefAttributes<HTMLElement>>;
|
|
146
145
|
/**
|
|
@@ -191,7 +190,7 @@ type IconButtonProps = {
|
|
|
191
190
|
};
|
|
192
191
|
declare function IconButton({ icon, label, color, size, variant, onClick, disabled, loading, className, destructive, }: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
193
192
|
|
|
194
|
-
type CardProps
|
|
193
|
+
type CardProps = HTMLAttributes<HTMLDivElement> & {
|
|
195
194
|
/** Card style variant */
|
|
196
195
|
variant?: "default" | "gradient" | "glass" | "elevated";
|
|
197
196
|
/** Enable hover lift animation */
|
|
@@ -201,12 +200,12 @@ type CardProps$1 = HTMLAttributes<HTMLDivElement> & {
|
|
|
201
200
|
/** Click handler (enables pressable automatically) */
|
|
202
201
|
onPress?: () => void;
|
|
203
202
|
};
|
|
204
|
-
declare function Card
|
|
205
|
-
declare function CardHeader
|
|
206
|
-
declare function CardTitle
|
|
207
|
-
declare function CardDescription
|
|
208
|
-
declare function CardContent
|
|
209
|
-
declare function CardFooter
|
|
203
|
+
declare function Card({ className, variant, interactive, pressable, onPress, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
declare function CardHeader({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
205
|
+
declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
|
|
206
|
+
declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
207
|
+
declare function CardContent({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
208
|
+
declare function CardFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
210
209
|
declare function CardDivider({ className }: {
|
|
211
210
|
className?: string;
|
|
212
211
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -309,7 +308,7 @@ declare const Input: React$1.ForwardRefExoticComponent<InputHTMLAttributes<HTMLI
|
|
|
309
308
|
/**
|
|
310
309
|
* Password Input - Pre-configured input for passwords
|
|
311
310
|
*/
|
|
312
|
-
declare const PasswordInput
|
|
311
|
+
declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<InputProps, "type" | "showPasswordToggle"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
313
312
|
/**
|
|
314
313
|
* Search Input - Pre-configured input for search
|
|
315
314
|
*/
|
|
@@ -361,7 +360,7 @@ type MetricCardTrend = {
|
|
|
361
360
|
label?: string;
|
|
362
361
|
formatValue?: (value: number) => string;
|
|
363
362
|
};
|
|
364
|
-
type MetricCardProps
|
|
363
|
+
type MetricCardProps = {
|
|
365
364
|
title: string;
|
|
366
365
|
value: string | number;
|
|
367
366
|
subtitle?: string;
|
|
@@ -369,7 +368,7 @@ type MetricCardProps$1 = {
|
|
|
369
368
|
trend?: MetricCardTrend;
|
|
370
369
|
variant?: "default" | "success" | "warning" | "danger";
|
|
371
370
|
};
|
|
372
|
-
declare function MetricCard
|
|
371
|
+
declare function MetricCard({ title, value, subtitle, icon, trend, variant, }: MetricCardProps): react_jsx_runtime.JSX.Element;
|
|
373
372
|
|
|
374
373
|
type HeroSectionProps = {
|
|
375
374
|
icon: ReactNode;
|
|
@@ -475,7 +474,7 @@ type StatCardProps = {
|
|
|
475
474
|
* Reusable stat card for displaying metrics
|
|
476
475
|
* Used in stats grids across dashboard pages
|
|
477
476
|
*/
|
|
478
|
-
declare function StatCard
|
|
477
|
+
declare function StatCard({ icon, value, label, badge, info, color, isFiltered, isUrgent, isActive, onClick, className, }: StatCardProps): react_jsx_runtime.JSX.Element;
|
|
479
478
|
|
|
480
479
|
type SectionHeaderProps = {
|
|
481
480
|
icon: ReactNode;
|
|
@@ -1236,7 +1235,7 @@ type GlassModalProps = {
|
|
|
1236
1235
|
declare function GlassModal({ open, onClose, children, panelClassName, contentClassName, }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
1237
1236
|
|
|
1238
1237
|
declare function Text({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): react_jsx_runtime.JSX.Element;
|
|
1239
|
-
declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link
|
|
1238
|
+
declare function TextLink({ className, ...props }: React.ComponentPropsWithoutRef<typeof Link>): react_jsx_runtime.JSX.Element;
|
|
1240
1239
|
declare function Strong({ className, ...props }: React.ComponentPropsWithoutRef<'strong'>): react_jsx_runtime.JSX.Element;
|
|
1241
1240
|
declare function Code({ className, ...props }: React.ComponentPropsWithoutRef<'code'>): react_jsx_runtime.JSX.Element;
|
|
1242
1241
|
|
|
@@ -1958,7 +1957,7 @@ declare const AvatarButton: React__default.ForwardRefExoticComponent<(AvatarProp
|
|
|
1958
1957
|
href: string;
|
|
1959
1958
|
} & Omit<Omit<next_link.LinkProps<any> & Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & React__default.RefAttributes<HTMLAnchorElement>, "ref">, "className">))) & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
1960
1959
|
|
|
1961
|
-
declare const colors
|
|
1960
|
+
declare const colors: {
|
|
1962
1961
|
red: string;
|
|
1963
1962
|
orange: string;
|
|
1964
1963
|
amber: string;
|
|
@@ -1979,7 +1978,7 @@ declare const colors$1: {
|
|
|
1979
1978
|
zinc: string;
|
|
1980
1979
|
};
|
|
1981
1980
|
type BadgeProps = {
|
|
1982
|
-
color?: keyof typeof colors
|
|
1981
|
+
color?: keyof typeof colors;
|
|
1983
1982
|
};
|
|
1984
1983
|
declare function Badge({ color, className, ...props }: BadgeProps & React__default.ComponentPropsWithoutRef<'span'>): react_jsx_runtime.JSX.Element;
|
|
1985
1984
|
|
|
@@ -3244,82 +3243,6 @@ declare const getUsColors: (state: string) => {
|
|
|
3244
3243
|
declare const getUsAccent: (state: string) => string | null;
|
|
3245
3244
|
declare const isValidUsState: (state: string) => boolean;
|
|
3246
3245
|
|
|
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
3246
|
declare function Fieldset({ className, ...props }: {
|
|
3324
3247
|
className?: string;
|
|
3325
3248
|
} & Omit<Headless.FieldsetProps, "as" | "className">): react_jsx_runtime.JSX.Element;
|
|
@@ -3330,7 +3253,7 @@ declare function FieldGroup({ className, ...props }: React__default.ComponentPro
|
|
|
3330
3253
|
declare function Field({ className, ...props }: {
|
|
3331
3254
|
className?: string;
|
|
3332
3255
|
} & Omit<Headless.FieldProps, "as" | "className">): react_jsx_runtime.JSX.Element;
|
|
3333
|
-
declare function Label
|
|
3256
|
+
declare function Label({ className, ...props }: {
|
|
3334
3257
|
className?: string;
|
|
3335
3258
|
} & Omit<Headless.LabelProps, "as" | "className">): react_jsx_runtime.JSX.Element;
|
|
3336
3259
|
declare function Description({ className, ...props }: {
|
|
@@ -3340,181 +3263,8 @@ declare function ErrorMessage({ className, ...props }: {
|
|
|
3340
3263
|
className?: string;
|
|
3341
3264
|
} & Omit<Headless.DescriptionProps, "as" | "className">): react_jsx_runtime.JSX.Element;
|
|
3342
3265
|
|
|
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
3266
|
declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
3351
3267
|
|
|
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
|
-
* Standardizes card patterns across the application:
|
|
3427
|
-
* - Consistent zinc color palette
|
|
3428
|
-
* - Unified shadows and borders
|
|
3429
|
-
* - Mobile-responsive padding
|
|
3430
|
-
* - Hover states and loading states
|
|
3431
|
-
*/
|
|
3432
|
-
declare const Card: React__default.NamedExoticComponent<CardProps>;
|
|
3433
|
-
/**
|
|
3434
|
-
* Card Header - Standardized card header with title and optional actions
|
|
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 - Standardized card footer with actions
|
|
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 - Specialized 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
3268
|
interface PaginationMeta {
|
|
3519
3269
|
page: number;
|
|
3520
3270
|
limit?: number;
|
|
@@ -3531,34 +3281,16 @@ interface OffsetPaginationParams {
|
|
|
3531
3281
|
}
|
|
3532
3282
|
interface DataPaginationProps {
|
|
3533
3283
|
pagination: PaginationMeta;
|
|
3534
|
-
params
|
|
3284
|
+
params?: OffsetPaginationParams;
|
|
3535
3285
|
onUpdate: (params: Partial<OffsetPaginationParams>) => void;
|
|
3536
3286
|
loading?: boolean;
|
|
3287
|
+
/** @deprecated Search is handled by SearchFilterToolbar — use showSearch={false} */
|
|
3537
3288
|
showSearch?: boolean;
|
|
3538
3289
|
searchPlaceholder?: string;
|
|
3539
3290
|
showPageSize?: boolean;
|
|
3540
3291
|
pageSizeOptions?: number[];
|
|
3541
3292
|
}
|
|
3542
|
-
declare function DataPagination({ pagination,
|
|
3543
|
-
|
|
3544
|
-
interface ContactCardProps {
|
|
3545
|
-
type: "partnerships" | "press" | "careers" | "general";
|
|
3546
|
-
email: string;
|
|
3547
|
-
phone: string;
|
|
3548
|
-
}
|
|
3549
|
-
declare const ContactCard: React__default.NamedExoticComponent<ContactCardProps>;
|
|
3550
|
-
interface OfficeCardProps {
|
|
3551
|
-
city: string;
|
|
3552
|
-
address: string;
|
|
3553
|
-
postalCode: string;
|
|
3554
|
-
}
|
|
3555
|
-
declare const OfficeCard: React__default.NamedExoticComponent<OfficeCardProps>;
|
|
3556
|
-
interface ContactSectionProps {
|
|
3557
|
-
title: string;
|
|
3558
|
-
subtitle: string;
|
|
3559
|
-
children: React__default.ReactNode;
|
|
3560
|
-
}
|
|
3561
|
-
declare const ContactSection: React__default.NamedExoticComponent<ContactSectionProps>;
|
|
3293
|
+
declare function DataPagination({ pagination, onUpdate, loading, showPageSize, pageSizeOptions, params, }: DataPaginationProps): react_jsx_runtime.JSX.Element | null;
|
|
3562
3294
|
|
|
3563
3295
|
interface PageHeaderProps {
|
|
3564
3296
|
title: string;
|
|
@@ -3573,7 +3305,7 @@ interface PageHeaderProps {
|
|
|
3573
3305
|
*
|
|
3574
3306
|
* Standardizes page header patterns across the application:
|
|
3575
3307
|
* - Consistent typography sizing (text-2xl default, text-3xl large)
|
|
3576
|
-
* - Unified
|
|
3308
|
+
* - Unified slate color palette with glass styling
|
|
3577
3309
|
* - Mobile-responsive layout
|
|
3578
3310
|
*/
|
|
3579
3311
|
declare const PageHeader: React__default.NamedExoticComponent<PageHeaderProps>;
|
|
@@ -3586,20 +3318,10 @@ declare const PageSectionHeader: React__default.NamedExoticComponent<Omit<PageHe
|
|
|
3586
3318
|
*/
|
|
3587
3319
|
declare const CardSectionHeader: React__default.NamedExoticComponent<Omit<PageHeaderProps, "size">>;
|
|
3588
3320
|
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
tooltip?: string;
|
|
3594
|
-
className?: string;
|
|
3595
|
-
children?: ReactNode;
|
|
3596
|
-
}
|
|
3597
|
-
declare const MetricCard: React.FC<MetricCardProps>;
|
|
3598
|
-
|
|
3599
|
-
interface MetricTooltipProps {
|
|
3600
|
-
text: string;
|
|
3601
|
-
}
|
|
3602
|
-
declare const MetricTooltip: React.FC<MetricTooltipProps>;
|
|
3321
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3322
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3323
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3324
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3603
3325
|
|
|
3604
3326
|
/**
|
|
3605
3327
|
* Shared navigation item type used across all platform apps.
|
|
@@ -3938,4 +3660,4 @@ declare const selectUserInitial: (state: PlatformShellState) => string;
|
|
|
3938
3660
|
declare const selectIsAuthenticated: (state: PlatformShellState) => boolean;
|
|
3939
3661
|
declare const selectShowShellChrome: (state: PlatformShellState) => boolean;
|
|
3940
3662
|
|
|
3941
|
-
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
|
|
3663
|
+
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, 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, 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, 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, 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, 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 };
|