@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/index.d.mts CHANGED
@@ -3423,15 +3423,15 @@ interface CardProps {
3423
3423
  /**
3424
3424
  * Unified Card Component
3425
3425
  *
3426
- * Standardizes card patterns across the application:
3427
- * - Consistent zinc color palette
3428
- * - Unified shadows and borders
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 - Standardized card header with title and optional actions
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 - Standardized card footer with actions
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 - Specialized card for displaying statistics
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: OffsetPaginationParams;
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, params, onUpdate, loading, showSearch, searchPlaceholder, showPageSize, pageSizeOptions, }: DataPaginationProps): react_jsx_runtime.JSX.Element;
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 zinc color palette
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
- * Standardizes card patterns across the application:
3427
- * - Consistent zinc color palette
3428
- * - Unified shadows and borders
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 - Standardized card header with title and optional actions
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 - Standardized card footer with actions
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 - Specialized card for displaying statistics
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: OffsetPaginationParams;
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, params, onUpdate, loading, showSearch, searchPlaceholder, showPageSize, pageSizeOptions, }: DataPaginationProps): react_jsx_runtime.JSX.Element;
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 zinc color palette
3577
+ * - Unified slate color palette with glass styling
3577
3578
  * - Mobile-responsive layout
3578
3579
  */
3579
3580
  declare const PageHeader: React__default.NamedExoticComponent<PageHeaderProps>;