@tealca/core-components 1.0.18 → 1.0.19
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.ts +7 -0
- package/dist/tealca-core-components.cjs.js +26 -24
- package/dist/tealca-core-components.es.js +3506 -3424
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { InputHTMLAttributes } from 'react';
|
|
|
14
14
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
15
15
|
import { ReactNode } from 'react';
|
|
16
16
|
import { RefAttributes } from 'react';
|
|
17
|
+
import { TypedUseSelectorHook } from 'react-redux';
|
|
17
18
|
|
|
18
19
|
export declare interface Account {
|
|
19
20
|
id: string;
|
|
@@ -1575,6 +1576,12 @@ declare interface TrackingTableProps {
|
|
|
1575
1576
|
|
|
1576
1577
|
export declare const useApi: (apiUri: string, basicApi: AxiosInstance) => AxiosInstance;
|
|
1577
1578
|
|
|
1579
|
+
export declare const useAppDispatch: () => AppDispatch;
|
|
1580
|
+
|
|
1581
|
+
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
|
|
1582
|
+
|
|
1583
|
+
export declare const useAppStore: () => AppStore;
|
|
1584
|
+
|
|
1578
1585
|
/**
|
|
1579
1586
|
* `basicApi` is an instance of `axios` configured with a base URL and a response interceptor.
|
|
1580
1587
|
*
|