@tight-embedded/react 6.4.0 → 6.6.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.
package/dist/index.css.gz CHANGED
Binary file
package/dist/index.d.ts CHANGED
@@ -75,13 +75,6 @@ declare type BankTransactionType = "EXPENSE" | "REVENUE" | "TRANSFER_IN" | "TRAN
75
75
  */
76
76
  export declare type BasePage = "FinancialOverviewDashboard";
77
77
 
78
- export declare function BusinessOwnerDashboard(props: BusinessOwnerDashboardProps): JSX.Element;
79
-
80
- declare type BusinessOwnerDashboardProps = {
81
- period?: Period;
82
- onChangePeriod?: (period: Period) => void;
83
- };
84
-
85
78
  /**
86
79
  * A standalone drawer for rendering a conversation that is not attached to an entity.
87
80
  * @param conversationId
@@ -113,6 +106,7 @@ declare type DrawerProps = {
113
106
  TransactionsFilterList: EmptyObject;
114
107
  RevenueFilterList: EmptyObject;
115
108
  ExpensesFilterList: EmptyObject;
109
+ TransactionSettingsDrawer: EmptyObject;
116
110
  };
117
111
 
118
112
  declare type DrawerRouteNames = keyof DrawerProps;
@@ -141,6 +135,13 @@ declare type ExternalOptions = {
141
135
  banksAndIntegrations?: BanksAndIntegrationsOptions;
142
136
  };
143
137
 
138
+ export declare function FinancialOverview(props: FinancialOverviewDashboardProps): JSX.Element;
139
+
140
+ declare type FinancialOverviewDashboardProps = {
141
+ period?: Period;
142
+ onChangePeriod?: (period: Period) => void;
143
+ };
144
+
144
145
  declare function FinancialSummaryDrawer({ summaryId, conversationId }: FinancialSummaryDrawerProps): JSX.Element;
145
146
 
146
147
  declare type FinancialSummaryDrawerProps = {