@threekit-tools/treble 0.0.15 → 0.0.16
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.
|
@@ -45,7 +45,7 @@ interface IPrepAttributeConfig {
|
|
|
45
45
|
sort?: string;
|
|
46
46
|
}
|
|
47
47
|
export declare const prepAttributeForComponent: (attribute: IThreekitDisplayAttribute, config: IPrepAttributeConfig) => {
|
|
48
|
-
selected: string | number | import("../../threekit").
|
|
48
|
+
selected: string | number | import("../../threekit").IConfigurationColor | import("../../threekit").IConfigurationAsset;
|
|
49
49
|
options: IDisplayAttributeAssetValue[] | {
|
|
50
50
|
name: string;
|
|
51
51
|
label: string;
|
package/dist/store/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { TypedUseSelectorHook } from 'react-redux';
|
|
2
2
|
declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
3
3
|
threekit: import("./threekit").ThreekitState;
|
|
4
|
-
}, import("redux").AnyAction, import("@reduxjs/toolkit").MiddlewareArray<import("redux-thunk").ThunkMiddleware<{
|
|
4
|
+
}, import("redux").AnyAction, import("@reduxjs/toolkit").MiddlewareArray<import("redux").Middleware<{}, any, import("redux").Dispatch<import("redux").AnyAction>> | import("redux-thunk").ThunkMiddleware<{
|
|
5
5
|
threekit: import("./threekit").ThreekitState;
|
|
6
6
|
}, import("redux").AnyAction, null> | import("redux-thunk").ThunkMiddleware<{
|
|
7
7
|
threekit: import("./threekit").ThreekitState;
|
|
8
8
|
}, import("redux").AnyAction, undefined> | import("redux").Middleware<{}, {
|
|
9
9
|
threekit: import("./threekit").ThreekitState;
|
|
10
|
-
}, import("redux").Dispatch<import("redux").AnyAction
|
|
10
|
+
}, import("redux").Dispatch<import("redux").AnyAction>>>>;
|
|
11
11
|
export declare type RootState = ReturnType<typeof store.getState>;
|
|
12
12
|
export declare type ThreekitDispatch = typeof store.dispatch;
|
|
13
13
|
export declare const useThreekitDispatch: () => import("@reduxjs/toolkit").ThunkDispatch<{
|