@mx-cartographer/experiences 6.1.0-alpha.bb6 → 6.1.0

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.
@@ -0,0 +1,9 @@
1
+ import { RepeatingTransaction } from '../../common';
2
+ interface RecurringTransactionDetailsProps {
3
+ onDeleted: () => void;
4
+ recurringTransaction: RepeatingTransaction;
5
+ }
6
+ export declare const RecurringTransactionDetails: (({ onDeleted, recurringTransaction }: RecurringTransactionDetailsProps) => import("react/jsx-runtime").JSX.Element) & {
7
+ displayName: string;
8
+ };
9
+ export {};
@@ -1,8 +1,8 @@
1
- import { Recurrence } from '../../../common';
1
+ import { RepeatingTransaction } from '../../../common';
2
2
  interface FrequencyActionProps {
3
- recurrence: Recurrence;
3
+ repeatingTransaction: RepeatingTransaction;
4
4
  }
5
- export declare const FrequencyAction: (({ recurrence }: FrequencyActionProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ export declare const FrequencyAction: (({ repeatingTransaction }: FrequencyActionProps) => import("react/jsx-runtime").JSX.Element) & {
6
6
  displayName: string;
7
7
  };
8
8
  export {};
@@ -1,8 +1,8 @@
1
- import { Recurrence } from '../../../common';
1
+ import { RepeatingTransaction } from '../../../common';
2
2
  interface PaymentDateActionProps {
3
- recurrence: Recurrence;
3
+ repeatingTransaction: RepeatingTransaction;
4
4
  }
5
- export declare const PaymentDateAction: (({ recurrence }: PaymentDateActionProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ export declare const PaymentDateAction: (({ repeatingTransaction }: PaymentDateActionProps) => import("react/jsx-runtime").JSX.Element) & {
6
6
  displayName: string;
7
7
  };
8
8
  export {};
@@ -3,5 +3,7 @@ interface RecurringRowProps {
3
3
  onClick?: (repeatingTransaction: RepeatingTransaction) => void;
4
4
  repeatingTransaction: RepeatingTransaction;
5
5
  }
6
- export declare const RecurringRow: ({ onClick, repeatingTransaction }: RecurringRowProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const RecurringRow: (({ onClick, repeatingTransaction }: RecurringRowProps) => import("react/jsx-runtime").JSX.Element) & {
7
+ displayName: string;
8
+ };
7
9
  export {};
@@ -1,2 +1,3 @@
1
1
  export { RecurringTransactionsWidget } from './RecurringTransactionsWidget';
2
2
  export { RecurringTransactionsMiniWidget } from './RecurringTransactionsMiniWidget';
3
+ export { RecurringTransactionsStore } from './stores/RecurringTransactionsStore';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.1.0-alpha.bb6",
3
+ "version": "6.1.0",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,9 +0,0 @@
1
- import { Recurrence } from '../../common';
2
- interface RecurrenceDetailsProps {
3
- recurrence: Recurrence;
4
- onDeleted: () => void;
5
- }
6
- export declare const RecurrenceDetails: (({ recurrence, onDeleted }: RecurrenceDetailsProps) => import("react/jsx-runtime").JSX.Element) & {
7
- displayName: string;
8
- };
9
- export {};