mautourco-components 0.2.40 → 0.2.41
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.
|
@@ -6,6 +6,6 @@ export interface QuoteHeaderProps {
|
|
|
6
6
|
onNavigate: (tab: 'quotation' | 'booking') => void;
|
|
7
7
|
/** Callback to create a new quote */
|
|
8
8
|
onNewQuote: () => void;
|
|
9
|
-
onFilterChange
|
|
9
|
+
onFilterChange?: (filter: 'date' | 'clientType' | 'fileStatus', value: string) => void;
|
|
10
10
|
}
|
|
11
11
|
export declare function QuoteHeader(props: QuoteHeaderProps): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ export interface QuoteHeaderProps {
|
|
|
20
20
|
/** Callback to create a new quote */
|
|
21
21
|
onNewQuote: () => void;
|
|
22
22
|
|
|
23
|
-
onFilterChange
|
|
23
|
+
onFilterChange?: (filter: 'date' | 'clientType' | 'fileStatus', value: string) => void;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
const filterConfig = {
|