@retinalabsllc/zairusjs 14.0.10 → 14.0.15

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
@@ -329,11 +329,11 @@ interface CardData {
329
329
  }
330
330
  interface UniversalCardPageProps {
331
331
  cards: CardData[];
332
+ actionPath?: string;
332
333
  onReveal?: (cardId: string) => void | Promise<void>;
333
334
  onFreeze?: (cardId: string) => void | Promise<void>;
334
335
  onSetLimits?: (cardId: string) => void;
335
336
  onDelete?: (cardId: string) => void | Promise<void>;
336
- onCardAction?: (cardId: string, action: 'ACTIVATE' | 'CREATE') => void;
337
337
  }
338
338
  declare const UniversalCardPage: React.FC<UniversalCardPageProps>;
339
339
 
package/dist/index.d.ts CHANGED
@@ -329,11 +329,11 @@ interface CardData {
329
329
  }
330
330
  interface UniversalCardPageProps {
331
331
  cards: CardData[];
332
+ actionPath?: string;
332
333
  onReveal?: (cardId: string) => void | Promise<void>;
333
334
  onFreeze?: (cardId: string) => void | Promise<void>;
334
335
  onSetLimits?: (cardId: string) => void;
335
336
  onDelete?: (cardId: string) => void | Promise<void>;
336
- onCardAction?: (cardId: string, action: 'ACTIVATE' | 'CREATE') => void;
337
337
  }
338
338
  declare const UniversalCardPage: React.FC<UniversalCardPageProps>;
339
339