@commercelayer/app-elements 7.1.0 → 7.2.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.
- package/dist/{CodeEditorComponent-CEHHl0E0.js → CodeEditorComponent-BKK6JTv2.js} +2 -2
- package/dist/{InputDateComponent-Dn2bat0T.js → InputDateComponent-CRQC4H-u.js} +2 -2
- package/dist/{RuleEngineComponent-CKKwzAzL.js → RuleEngineComponent-fsxIH2K2.js} +3 -3
- package/dist/{fetchCoreResourcesSuggestions-uX0pFjE7.js → fetchCoreResourcesSuggestions-5NTlinRi.js} +1 -1
- package/dist/helpers/errors.d.ts +7 -0
- package/dist/helpers/errors.test.d.ts +1 -0
- package/dist/hooks/useConfirmDialog.d.ts +61 -0
- package/dist/{main-DgrjVlV3.js → main-BhIzgOdi.js} +12793 -12710
- package/dist/main.d.ts +2 -0
- package/dist/main.js +50 -48
- package/dist/mocks/data/core_resources.d.ts +1 -1
- package/dist/mocks/data/countries.d.ts +1 -1
- package/dist/mocks/data/customers.d.ts +1 -1
- package/dist/mocks/data/markets.d.ts +1 -1
- package/dist/mocks/handlers.d.ts +1 -1
- package/dist/mocks/server.d.ts +1 -1
- package/dist/{parseISO-DGGtp4Hn.js → parseISO-DArOeVXC.js} +1 -1
- package/dist/providers/TokenProvider/TokenProvider.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/tailwind.global.css +1 -0
- package/dist/ui/atoms/Card.d.ts +354 -354
- package/dist/ui/atoms/Tooltip.d.ts +1 -1
- package/dist/ui/composite/CardDialog.d.ts +3 -3
- package/dist/ui/composite/Dropdown/Dropdown.d.ts +1 -1
- package/dist/ui/composite/Dropdown/DropdownItem.d.ts +352 -352
- package/dist/ui/composite/Dropdown/DropdownSearch.d.ts +1 -1
- package/dist/ui/composite/SearchBar.d.ts +1 -1
- package/dist/ui/forms/CodeEditor/CodeEditor.d.ts +1 -1
- package/dist/ui/forms/CodeEditor/CodeEditorComponent.d.ts +1 -1
- package/dist/ui/forms/Input/Input.d.ts +1 -1
- package/dist/ui/forms/InputCheckbox/InputCheckbox.d.ts +1 -1
- package/dist/ui/forms/InputCheckboxGroup/InputCheckboxGroupItem.d.ts +2 -2
- package/dist/ui/forms/InputCurrency/InputCurrency.d.ts +1 -1
- package/dist/ui/forms/InputDate/InputDate.d.ts +1 -1
- package/dist/ui/forms/InputDate/InputDateComponent.d.ts +1 -1
- package/dist/ui/forms/InputDateRange/InputDateRange.d.ts +1 -1
- package/dist/ui/forms/InputFile.d.ts +1 -1
- package/dist/ui/forms/InputResourceGroup/FullList.d.ts +1 -1
- package/dist/ui/forms/InputSelect/AsyncComponent.d.ts +1 -1
- package/dist/ui/forms/InputSelect/AsyncCreatableComponent.d.ts +1 -1
- package/dist/ui/forms/InputSelect/CreatableComponent.d.ts +1 -1
- package/dist/ui/forms/InputSelect/InputSelect.d.ts +1 -1
- package/dist/ui/forms/InputSelect/SelectComponent.d.ts +1 -1
- package/dist/ui/forms/InputSimpleSelect/InputSimpleSelect.d.ts +1 -1
- package/dist/ui/forms/InputSpinner/InputSpinner.d.ts +1 -1
- package/dist/ui/forms/InputSwitch/InputSwitch.d.ts +1 -1
- package/dist/ui/forms/InputTextArea/InputTextArea.d.ts +1 -1
- package/dist/ui/forms/RuleEngine/Options/ActionOptions.d.ts +1 -1
- package/dist/ui/forms/RuleEngine/Options/ConditionOptions.d.ts +1 -1
- package/dist/ui/forms/RuleEngine/Options/common.d.ts +1 -1
- package/dist/ui/resources/ResourceAddress/ResourceAddressForm.d.ts +3 -3
- package/dist/ui/resources/ResourceAddress/useResourceAddressOverlay.d.ts +1 -1
- package/dist/ui/resources/ResourceListItem/ResourceListItem.d.ts +1 -1
- package/dist/ui/resources/ResourceShipmentParcels.mocks.d.ts +16 -16
- package/dist/ui/resources/useTrackingDetails.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,4 +21,4 @@ export interface DropdownSearchProps {
|
|
|
21
21
|
/**
|
|
22
22
|
* This component renders an input as dropdown menu item with debounced `onSearch` callback.
|
|
23
23
|
*/
|
|
24
|
-
export declare const DropdownSearch: import('
|
|
24
|
+
export declare const DropdownSearch: import('react').ForwardRefExoticComponent<DropdownSearchProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -40,4 +40,4 @@ export interface SearchBarProps extends Pick<SkeletonTemplateProps, "isLoading"
|
|
|
40
40
|
* <span type='info'>In this way the `onSearch` callback will be triggered only when the user stops typing
|
|
41
41
|
* for the specified value of `debounceMs` (default 500ms).</span>
|
|
42
42
|
*/
|
|
43
|
-
export declare const SearchBar: import('
|
|
43
|
+
export declare const SearchBar: import('react').ForwardRefExoticComponent<SearchBarProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { editor } from 'monaco-editor';
|
|
2
2
|
import { CodeEditorProps } from './CodeEditorComponent';
|
|
3
|
-
export declare const CodeEditor: import('
|
|
3
|
+
export declare const CodeEditor: import('react').ForwardRefExoticComponent<CodeEditorProps & import('react').RefAttributes<editor.IStandaloneCodeEditor>>;
|
|
@@ -51,4 +51,4 @@ export interface CodeEditorProps extends InputWrapperBaseProps, SetOptional<Pick
|
|
|
51
51
|
*/
|
|
52
52
|
noRounding?: boolean;
|
|
53
53
|
}
|
|
54
|
-
export declare const CodeEditor: import('
|
|
54
|
+
export declare const CodeEditor: import('react').ForwardRefExoticComponent<CodeEditorProps & import('react').RefAttributes<editor.IStandaloneCodeEditor>>;
|
|
@@ -13,4 +13,4 @@ export interface InputProps extends InputWrapperBaseProps, Omit<React.InputHTMLA
|
|
|
13
13
|
*/
|
|
14
14
|
suffix?: React.ReactNode;
|
|
15
15
|
}
|
|
16
|
-
export declare const Input: import('
|
|
16
|
+
export declare const Input: import('react').ForwardRefExoticComponent<InputProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -13,4 +13,4 @@ export interface InputCheckboxProps extends Omit<InputWrapperBaseProps, "label"
|
|
|
13
13
|
checkedElement?: JSX.Element;
|
|
14
14
|
children?: React.ReactNode;
|
|
15
15
|
}
|
|
16
|
-
export declare const InputCheckbox: import('
|
|
16
|
+
export declare const InputCheckbox: import('react').ForwardRefExoticComponent<InputCheckboxProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -51,10 +51,10 @@ export declare const InputCheckboxGroupItem: import('../../atoms/SkeletonTemplat
|
|
|
51
51
|
min: number;
|
|
52
52
|
max: number;
|
|
53
53
|
} | undefined;
|
|
54
|
-
icon?: import("
|
|
54
|
+
icon?: import("react").JSX.Element | undefined;
|
|
55
55
|
checked?: boolean | undefined | undefined;
|
|
56
56
|
hideIconOnDesktop?: boolean | undefined;
|
|
57
|
-
checkedElement?: import("
|
|
57
|
+
checkedElement?: import("react").JSX.Element | undefined;
|
|
58
58
|
delayMs?: number | undefined;
|
|
59
59
|
isLoading?: boolean | undefined;
|
|
60
60
|
}>;
|
|
@@ -48,4 +48,4 @@ export interface InputCurrencyProps extends InputWrapperBaseProps, Pick<ReactCur
|
|
|
48
48
|
*/
|
|
49
49
|
isClearable?: boolean;
|
|
50
50
|
}
|
|
51
|
-
export declare const InputCurrency: import('
|
|
51
|
+
export declare const InputCurrency: import('react').ForwardRefExoticComponent<InputCurrencyProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as DatePicker } from 'react-datepicker';
|
|
2
2
|
import { InputDateProps } from './InputDateComponent';
|
|
3
|
-
export declare const InputDate: import('
|
|
3
|
+
export declare const InputDate: import('react').ForwardRefExoticComponent<InputDateProps & import('react').RefAttributes<DatePicker>>;
|
|
@@ -62,4 +62,4 @@ export interface InputDateProps extends InputWrapperBaseProps {
|
|
|
62
62
|
*/
|
|
63
63
|
fixedPopper?: boolean;
|
|
64
64
|
}
|
|
65
|
-
export declare const InputDateComponent: import('
|
|
65
|
+
export declare const InputDateComponent: import('react').ForwardRefExoticComponent<InputDateProps & import('react').RefAttributes<DatePicker>>;
|
|
@@ -24,4 +24,4 @@ export interface InputDateRangeProps extends Pick<InputDateProps, "isClearable"
|
|
|
24
24
|
/** when true, the two date inputs will be stacked vertically instead of inline */
|
|
25
25
|
stacked?: boolean;
|
|
26
26
|
}
|
|
27
|
-
export declare const InputDateRange: import('
|
|
27
|
+
export declare const InputDateRange: import('react').ForwardRefExoticComponent<InputDateRangeProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -9,4 +9,4 @@ export interface InputFileProps extends InputWrapperBaseProps, Omit<React.InputH
|
|
|
9
9
|
*/
|
|
10
10
|
progress?: number;
|
|
11
11
|
}
|
|
12
|
-
export declare const InputFile: import('
|
|
12
|
+
export declare const InputFile: import('react').ForwardRefExoticComponent<InputFileProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -67,7 +67,7 @@ export interface FullListProps {
|
|
|
67
67
|
}
|
|
68
68
|
export declare function FullList({ defaultValues, fieldForLabel, fieldForValue, onCancel, onChange, resource, searchBy, sortBy, title, showCheckboxIcon, hideSelected, }: FullListProps): JSX.Element;
|
|
69
69
|
export declare const useInputResourceGroupOverlay: () => {
|
|
70
|
-
InputResourceGroupOverlay: ({ footer, backgroundColor, ...props }: FullListProps & Omit<OverlayProps, "children">) => import("
|
|
70
|
+
InputResourceGroupOverlay: ({ footer, backgroundColor, ...props }: FullListProps & Omit<OverlayProps, "children">) => import("react/jsx-runtime").JSX.Element;
|
|
71
71
|
openInputResourceGroupOverlay: () => void;
|
|
72
72
|
closeInputResourceGroupOverlay: () => void;
|
|
73
73
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { GroupBase, SelectInstance } from 'react-select';
|
|
2
2
|
import { GenericAsyncSelectComponentProps } from './GenericAsyncComponent';
|
|
3
3
|
import { InputSelectValue } from './InputSelect';
|
|
4
|
-
export declare const AsyncSelectComponent: import('
|
|
4
|
+
export declare const AsyncSelectComponent: import('react').ForwardRefExoticComponent<GenericAsyncSelectComponentProps & import('react').RefAttributes<SelectInstance<InputSelectValue, boolean, GroupBase<InputSelectValue>>>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { GroupBase, SelectInstance } from 'react-select';
|
|
2
2
|
import { GenericAsyncSelectComponentProps } from './GenericAsyncComponent';
|
|
3
3
|
import { InputSelectValue } from './InputSelect';
|
|
4
|
-
export declare const AsyncCreatableSelectComponent: import('
|
|
4
|
+
export declare const AsyncCreatableSelectComponent: import('react').ForwardRefExoticComponent<GenericAsyncSelectComponentProps & import('react').RefAttributes<SelectInstance<InputSelectValue, boolean, GroupBase<InputSelectValue>>>>;
|
|
@@ -3,4 +3,4 @@ import { InputSelectProps, InputSelectValue } from './InputSelect';
|
|
|
3
3
|
export interface CreatableComponentProps extends Omit<InputSelectProps, "loadAsyncValues" | "label" | "hint"> {
|
|
4
4
|
styles: StylesConfig<InputSelectValue>;
|
|
5
5
|
}
|
|
6
|
-
export declare const CreatableComponent: import('
|
|
6
|
+
export declare const CreatableComponent: import('react').ForwardRefExoticComponent<CreatableComponentProps & import('react').RefAttributes<SelectInstance<InputSelectValue, boolean, GroupBase<InputSelectValue>>>>;
|
|
@@ -126,4 +126,4 @@ export interface InputSelectProps extends InputWrapperBaseProps {
|
|
|
126
126
|
* On both standard and async mode it can be set to select a single single value or multiple values.
|
|
127
127
|
*
|
|
128
128
|
*/
|
|
129
|
-
export declare const InputSelect: import('
|
|
129
|
+
export declare const InputSelect: import('react').ForwardRefExoticComponent<InputSelectProps & import('react').RefAttributes<SelectInstance<InputSelectValue, boolean, GroupBase<InputSelectValue>>>>;
|
|
@@ -3,4 +3,4 @@ import { InputSelectProps, InputSelectValue } from './InputSelect';
|
|
|
3
3
|
export interface SelectComponentProps extends Omit<InputSelectProps, "loadAsyncValues" | "label" | "hint"> {
|
|
4
4
|
styles: StylesConfig<InputSelectValue>;
|
|
5
5
|
}
|
|
6
|
-
export declare const SelectComponent: import('
|
|
6
|
+
export declare const SelectComponent: import('react').ForwardRefExoticComponent<SelectComponentProps & import('react').RefAttributes<SelectInstance<InputSelectValue, boolean, GroupBase<InputSelectValue>>>>;
|
|
@@ -8,5 +8,5 @@ export interface InputSimpleSelectProps extends InputWrapperBaseProps, Omit<Reac
|
|
|
8
8
|
options: InputSimpleSelectOption[];
|
|
9
9
|
className?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare const InputSimpleSelect: import('
|
|
11
|
+
export declare const InputSimpleSelect: import('react').ForwardRefExoticComponent<InputSimpleSelectProps & import('react').RefAttributes<HTMLSelectElement>>;
|
|
12
12
|
export {};
|
|
@@ -14,4 +14,4 @@ export interface InputSpinnerProps extends InputWrapperBaseProps, Omit<React.Inp
|
|
|
14
14
|
*/
|
|
15
15
|
disabled?: boolean;
|
|
16
16
|
}
|
|
17
|
-
export declare const InputSpinner: import('
|
|
17
|
+
export declare const InputSpinner: import('react').ForwardRefExoticComponent<InputSpinnerProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InputWrapperBaseProps } from '../../internals/InputWrapper';
|
|
2
2
|
export interface InputSwitchProps extends InputWrapperBaseProps, Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "value"> {
|
|
3
3
|
}
|
|
4
|
-
export declare const InputSwitch: import('
|
|
4
|
+
export declare const InputSwitch: import('react').ForwardRefExoticComponent<InputSwitchProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InputWrapperBaseProps } from '../../internals/InputWrapper';
|
|
2
2
|
export interface InputTextAreaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement>, InputWrapperBaseProps {
|
|
3
3
|
}
|
|
4
|
-
export declare const InputTextArea: import('
|
|
4
|
+
export declare const InputTextArea: import('react').ForwardRefExoticComponent<InputTextAreaProps & import('react').RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -2,4 +2,4 @@ import { SchemaActionItem } from '../utils';
|
|
|
2
2
|
export declare function ActionOptions({ item, pathPrefix, }: {
|
|
3
3
|
item: SchemaActionItem | null;
|
|
4
4
|
pathPrefix: string;
|
|
5
|
-
}): import("
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -2,4 +2,4 @@ import { SchemaConditionItem } from '../utils';
|
|
|
2
2
|
export declare function ConditionOptions({ item, pathPrefix, }: {
|
|
3
3
|
item: SchemaConditionItem | null;
|
|
4
4
|
pathPrefix: string;
|
|
5
|
-
}): import("
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -17,4 +17,4 @@ export declare function AggregationRow({ aggregation, pathPrefix, optionConfig,
|
|
|
17
17
|
}>["aggregation"]> | NonNullable<SchemaConditionItem["aggregations"]>[number];
|
|
18
18
|
pathPrefix: string;
|
|
19
19
|
optionConfig?: OptionConfig;
|
|
20
|
-
}): import("
|
|
20
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,10 +3,10 @@ export declare const ResourceAddressForm: import('../../atoms/SkeletonTemplate')
|
|
|
3
3
|
showNotes?: boolean | undefined;
|
|
4
4
|
showNameOrCompany?: boolean | undefined;
|
|
5
5
|
showEmail?: boolean | undefined;
|
|
6
|
-
address?: (import('
|
|
6
|
+
address?: (import('@commercelayer/sdk').Address | null) | undefined;
|
|
7
7
|
requiresBillingInfo?: boolean | undefined;
|
|
8
|
-
onCreate?: ((createdAddress: import('
|
|
9
|
-
onUpdate?: ((updatedAddress: import('
|
|
8
|
+
onCreate?: ((createdAddress: import('@commercelayer/sdk').Address) => void) | undefined;
|
|
9
|
+
onUpdate?: ((updatedAddress: import('@commercelayer/sdk').Address) => void) | undefined;
|
|
10
10
|
delayMs?: number | undefined;
|
|
11
11
|
isLoading?: boolean | undefined;
|
|
12
12
|
}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ResourceAddressProps } from './ResourceAddress';
|
|
2
2
|
type Props = Omit<ResourceAddressProps, "editable">;
|
|
3
3
|
export declare const useResourceAddressOverlay: ({ title, address, showBillingInfo, requiresBillingInfo, showNotes, onUpdate, onCreate, }: Props) => {
|
|
4
|
-
ResourceAddressOverlay: () => false | import("
|
|
4
|
+
ResourceAddressOverlay: () => false | import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
openAddressOverlay: () => void;
|
|
6
6
|
};
|
|
7
7
|
export {};
|
|
@@ -29,7 +29,7 @@ export interface ResourceListItemProps {
|
|
|
29
29
|
export declare const ResourceListItem: import('../../atoms/SkeletonTemplate').SkeletonTemplateComponent<{
|
|
30
30
|
resource: ResourceListItemType;
|
|
31
31
|
href?: string | undefined;
|
|
32
|
-
onClick?: (import('
|
|
32
|
+
onClick?: (import('react').MouseEventHandler<HTMLElement> & import('react').MouseEventHandler<HTMLAnchorElement>) | undefined;
|
|
33
33
|
showRightContent?: boolean
|
|
34
34
|
/**
|
|
35
35
|
* Optional override for the right slot. When provided, it replaces any computed right content.
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { ResourceShipmentParcels } from './ResourceShipmentParcels';
|
|
2
2
|
type Shipment = Parameters<typeof ResourceShipmentParcels>[0]["shipment"];
|
|
3
3
|
type Parcel = NonNullable<Shipment["parcels"]>[number];
|
|
4
|
-
export declare const parcelWithoutTracking1: import('
|
|
5
|
-
export declare const parcelWithoutTracking2: import('
|
|
6
|
-
export declare const parcelWithTracking1: import('
|
|
7
|
-
export declare const parcelWithTracking2: import('
|
|
8
|
-
export declare const parcelWithTracking3: import('
|
|
9
|
-
export declare const parcelWithoutTrackingDetails1: import('
|
|
4
|
+
export declare const parcelWithoutTracking1: import('@commercelayer/sdk').Parcel;
|
|
5
|
+
export declare const parcelWithoutTracking2: import('@commercelayer/sdk').Parcel;
|
|
6
|
+
export declare const parcelWithTracking1: import('@commercelayer/sdk').Parcel;
|
|
7
|
+
export declare const parcelWithTracking2: import('@commercelayer/sdk').Parcel;
|
|
8
|
+
export declare const parcelWithTracking3: import('@commercelayer/sdk').Parcel;
|
|
9
|
+
export declare const parcelWithoutTrackingDetails1: import('@commercelayer/sdk').Parcel;
|
|
10
10
|
export declare const parcelWithCustomsInfo: Parcel;
|
|
11
|
-
export declare const shipmentWithoutTracking: import('
|
|
12
|
-
export declare const shipmentWithStatusDifferentFromPacking: import('
|
|
13
|
-
export declare const shipmentHasBeenPurchased: import('
|
|
14
|
-
export declare const shipmentWithSingleParcelSingleTracking: import('
|
|
15
|
-
export declare const shipmentWithSingleParcelSingleTrackingNoCarrier: import('
|
|
16
|
-
export declare const shipmentWithMultipleParcelsSingleTracking: import('
|
|
17
|
-
export declare const shipmentWithMultipleParcelsMultipleTrackings: import('
|
|
18
|
-
export declare const shipmentWithoutTrackingDetails: import('
|
|
19
|
-
export declare const shipmentWithoutParcels: import('
|
|
20
|
-
export declare const shipmentWithCustomsInfo: import('
|
|
11
|
+
export declare const shipmentWithoutTracking: import('@commercelayer/sdk').Shipment;
|
|
12
|
+
export declare const shipmentWithStatusDifferentFromPacking: import('@commercelayer/sdk').Shipment;
|
|
13
|
+
export declare const shipmentHasBeenPurchased: import('@commercelayer/sdk').Shipment;
|
|
14
|
+
export declare const shipmentWithSingleParcelSingleTracking: import('@commercelayer/sdk').Shipment;
|
|
15
|
+
export declare const shipmentWithSingleParcelSingleTrackingNoCarrier: import('@commercelayer/sdk').Shipment;
|
|
16
|
+
export declare const shipmentWithMultipleParcelsSingleTracking: import('@commercelayer/sdk').Shipment;
|
|
17
|
+
export declare const shipmentWithMultipleParcelsMultipleTrackings: import('@commercelayer/sdk').Shipment;
|
|
18
|
+
export declare const shipmentWithoutTrackingDetails: import('@commercelayer/sdk').Shipment;
|
|
19
|
+
export declare const shipmentWithoutParcels: import('@commercelayer/sdk').Shipment;
|
|
20
|
+
export declare const shipmentWithCustomsInfo: import('@commercelayer/sdk').Shipment;
|
|
21
21
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Parcel as ParcelResource } from '@commercelayer/sdk';
|
|
2
2
|
import { Rate } from '../../helpers/tracking';
|
|
3
3
|
export declare const useTrackingDetails: (parcel: ParcelResource, rate?: Rate) => {
|
|
4
|
-
TrackingDetailsModal: () => false | import("
|
|
4
|
+
TrackingDetailsModal: () => false | import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
openTrackingDetails: () => void;
|
|
6
6
|
};
|