@almadar/ui 2.8.1 → 2.9.1

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.
@@ -4339,9 +4339,9 @@ interface DataGridItemAction {
4339
4339
  }
4340
4340
  interface DataGridProps {
4341
4341
  /** Entity data array */
4342
- entity?: unknown | readonly unknown[];
4342
+ entity: unknown | readonly unknown[];
4343
4343
  /** Field definitions for rendering each card */
4344
- fields?: readonly DataGridField[];
4344
+ fields: readonly DataGridField[];
4345
4345
  /** Alias for fields (compiler generates `columns` for field definitions) */
4346
4346
  columns?: readonly DataGridField[];
4347
4347
  /** Per-item action buttons */
@@ -4415,9 +4415,9 @@ interface DataListItemAction {
4415
4415
  }
4416
4416
  interface DataListProps {
4417
4417
  /** Entity data array */
4418
- entity?: unknown | readonly unknown[];
4418
+ entity: unknown | readonly unknown[];
4419
4419
  /** Field definitions for rendering each row */
4420
- fields?: readonly DataListField[];
4420
+ fields: readonly DataListField[];
4421
4421
  /** Alias for fields (compiler may generate `columns` for field definitions) */
4422
4422
  columns?: readonly DataListField[];
4423
4423
  /** Per-item action buttons */
@@ -4485,7 +4485,7 @@ interface StatDisplayProps {
4485
4485
  /** Display label (e.g., "Total", "Remaining") */
4486
4486
  label: string;
4487
4487
  /** Primary value (number or formatted string) */
4488
- value?: number | string;
4488
+ value: number | string;
4489
4489
  /** Maximum value (renders as "value / max") */
4490
4490
  max?: number;
4491
4491
  /** Lucide icon name or React node */