@datatechsolutions/ui 2.7.127 → 2.7.128
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-S4MECSAK.js → chunk-IMLJ5FAZ.js} +202 -278
- package/dist/chunk-IMLJ5FAZ.js.map +1 -0
- package/dist/{chunk-TGE53WHS.mjs → chunk-RLFPACTM.mjs} +3 -3
- package/dist/{chunk-TGE53WHS.mjs.map → chunk-RLFPACTM.mjs.map} +1 -1
- package/dist/{chunk-3VSRFFI6.mjs → chunk-RWNHZ7FV.mjs} +202 -278
- package/dist/chunk-RWNHZ7FV.mjs.map +1 -0
- package/dist/{chunk-4RB4JPCM.js → chunk-ZRFEZ3RD.js} +52 -52
- package/dist/{chunk-4RB4JPCM.js.map → chunk-ZRFEZ3RD.js.map} +1 -1
- package/dist/index.d.mts +11 -10
- package/dist/index.d.ts +11 -10
- package/dist/index.js +360 -360
- 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.mts
CHANGED
|
@@ -3423,15 +3423,15 @@ interface CardProps {
|
|
|
3423
3423
|
/**
|
|
3424
3424
|
* Unified Card Component
|
|
3425
3425
|
*
|
|
3426
|
-
*
|
|
3427
|
-
* -
|
|
3428
|
-
* -
|
|
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
|
|
3429
3430
|
* - Mobile-responsive padding
|
|
3430
|
-
* - Hover states and loading states
|
|
3431
3431
|
*/
|
|
3432
3432
|
declare const Card: React__default.NamedExoticComponent<CardProps>;
|
|
3433
3433
|
/**
|
|
3434
|
-
* Card Header -
|
|
3434
|
+
* Card Header - Glass-styled card header with gradient accent bar
|
|
3435
3435
|
*/
|
|
3436
3436
|
declare const CardHeader: React__default.NamedExoticComponent<{
|
|
3437
3437
|
title: string;
|
|
@@ -3462,7 +3462,7 @@ declare const CardContent: React__default.NamedExoticComponent<{
|
|
|
3462
3462
|
className?: string;
|
|
3463
3463
|
}>;
|
|
3464
3464
|
/**
|
|
3465
|
-
* Card Footer -
|
|
3465
|
+
* Card Footer - Glass-styled card footer with translucent border
|
|
3466
3466
|
*/
|
|
3467
3467
|
declare const CardFooter: React__default.NamedExoticComponent<{
|
|
3468
3468
|
children: React__default.ReactNode;
|
|
@@ -3470,7 +3470,7 @@ declare const CardFooter: React__default.NamedExoticComponent<{
|
|
|
3470
3470
|
justify?: "start" | "center" | "end" | "between";
|
|
3471
3471
|
}>;
|
|
3472
3472
|
/**
|
|
3473
|
-
* Stat Card -
|
|
3473
|
+
* Stat Card - Glass-styled card for displaying statistics
|
|
3474
3474
|
*/
|
|
3475
3475
|
declare const StatCard: React__default.NamedExoticComponent<{
|
|
3476
3476
|
title: string;
|
|
@@ -3531,15 +3531,16 @@ interface OffsetPaginationParams {
|
|
|
3531
3531
|
}
|
|
3532
3532
|
interface DataPaginationProps {
|
|
3533
3533
|
pagination: PaginationMeta;
|
|
3534
|
-
params
|
|
3534
|
+
params?: OffsetPaginationParams;
|
|
3535
3535
|
onUpdate: (params: Partial<OffsetPaginationParams>) => void;
|
|
3536
3536
|
loading?: boolean;
|
|
3537
|
+
/** @deprecated Search is handled by SearchFilterToolbar — use showSearch={false} */
|
|
3537
3538
|
showSearch?: boolean;
|
|
3538
3539
|
searchPlaceholder?: string;
|
|
3539
3540
|
showPageSize?: boolean;
|
|
3540
3541
|
pageSizeOptions?: number[];
|
|
3541
3542
|
}
|
|
3542
|
-
declare function DataPagination({ pagination,
|
|
3543
|
+
declare function DataPagination({ pagination, onUpdate, loading, showPageSize, pageSizeOptions, params, }: DataPaginationProps): react_jsx_runtime.JSX.Element | null;
|
|
3543
3544
|
|
|
3544
3545
|
interface ContactCardProps {
|
|
3545
3546
|
type: "partnerships" | "press" | "careers" | "general";
|
|
@@ -3573,7 +3574,7 @@ interface PageHeaderProps {
|
|
|
3573
3574
|
*
|
|
3574
3575
|
* Standardizes page header patterns across the application:
|
|
3575
3576
|
* - Consistent typography sizing (text-2xl default, text-3xl large)
|
|
3576
|
-
* - Unified
|
|
3577
|
+
* - Unified slate color palette with glass styling
|
|
3577
3578
|
* - Mobile-responsive layout
|
|
3578
3579
|
*/
|
|
3579
3580
|
declare const PageHeader: React__default.NamedExoticComponent<PageHeaderProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3423,15 +3423,15 @@ interface CardProps {
|
|
|
3423
3423
|
/**
|
|
3424
3424
|
* Unified Card Component
|
|
3425
3425
|
*
|
|
3426
|
-
*
|
|
3427
|
-
* -
|
|
3428
|
-
* -
|
|
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
|
|
3429
3430
|
* - Mobile-responsive padding
|
|
3430
|
-
* - Hover states and loading states
|
|
3431
3431
|
*/
|
|
3432
3432
|
declare const Card: React__default.NamedExoticComponent<CardProps>;
|
|
3433
3433
|
/**
|
|
3434
|
-
* Card Header -
|
|
3434
|
+
* Card Header - Glass-styled card header with gradient accent bar
|
|
3435
3435
|
*/
|
|
3436
3436
|
declare const CardHeader: React__default.NamedExoticComponent<{
|
|
3437
3437
|
title: string;
|
|
@@ -3462,7 +3462,7 @@ declare const CardContent: React__default.NamedExoticComponent<{
|
|
|
3462
3462
|
className?: string;
|
|
3463
3463
|
}>;
|
|
3464
3464
|
/**
|
|
3465
|
-
* Card Footer -
|
|
3465
|
+
* Card Footer - Glass-styled card footer with translucent border
|
|
3466
3466
|
*/
|
|
3467
3467
|
declare const CardFooter: React__default.NamedExoticComponent<{
|
|
3468
3468
|
children: React__default.ReactNode;
|
|
@@ -3470,7 +3470,7 @@ declare const CardFooter: React__default.NamedExoticComponent<{
|
|
|
3470
3470
|
justify?: "start" | "center" | "end" | "between";
|
|
3471
3471
|
}>;
|
|
3472
3472
|
/**
|
|
3473
|
-
* Stat Card -
|
|
3473
|
+
* Stat Card - Glass-styled card for displaying statistics
|
|
3474
3474
|
*/
|
|
3475
3475
|
declare const StatCard: React__default.NamedExoticComponent<{
|
|
3476
3476
|
title: string;
|
|
@@ -3531,15 +3531,16 @@ interface OffsetPaginationParams {
|
|
|
3531
3531
|
}
|
|
3532
3532
|
interface DataPaginationProps {
|
|
3533
3533
|
pagination: PaginationMeta;
|
|
3534
|
-
params
|
|
3534
|
+
params?: OffsetPaginationParams;
|
|
3535
3535
|
onUpdate: (params: Partial<OffsetPaginationParams>) => void;
|
|
3536
3536
|
loading?: boolean;
|
|
3537
|
+
/** @deprecated Search is handled by SearchFilterToolbar — use showSearch={false} */
|
|
3537
3538
|
showSearch?: boolean;
|
|
3538
3539
|
searchPlaceholder?: string;
|
|
3539
3540
|
showPageSize?: boolean;
|
|
3540
3541
|
pageSizeOptions?: number[];
|
|
3541
3542
|
}
|
|
3542
|
-
declare function DataPagination({ pagination,
|
|
3543
|
+
declare function DataPagination({ pagination, onUpdate, loading, showPageSize, pageSizeOptions, params, }: DataPaginationProps): react_jsx_runtime.JSX.Element | null;
|
|
3543
3544
|
|
|
3544
3545
|
interface ContactCardProps {
|
|
3545
3546
|
type: "partnerships" | "press" | "careers" | "general";
|
|
@@ -3573,7 +3574,7 @@ interface PageHeaderProps {
|
|
|
3573
3574
|
*
|
|
3574
3575
|
* Standardizes page header patterns across the application:
|
|
3575
3576
|
* - Consistent typography sizing (text-2xl default, text-3xl large)
|
|
3576
|
-
* - Unified
|
|
3577
|
+
* - Unified slate color palette with glass styling
|
|
3577
3578
|
* - Mobile-responsive layout
|
|
3578
3579
|
*/
|
|
3579
3580
|
declare const PageHeader: React__default.NamedExoticComponent<PageHeaderProps>;
|