@apia/store 0.1.0 → 0.2.4
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 +1 -3
- package/dist/index.js +0 -1
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import { Action, AnyAction, ReducersMapObject, Store, CombinedState } from '@red
|
|
|
9
9
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
10
10
|
export { _reduxjs_toolkit as reduxjsToolkit };
|
|
11
11
|
export { AnyAction, CaseReducer, PayloadAction, Slice, SliceCaseReducers, createSlice } from '@reduxjs/toolkit';
|
|
12
|
-
import * as theme_ui_jsx_runtime from 'theme-ui/jsx-runtime';
|
|
13
12
|
|
|
14
13
|
type TypedUseSelectorHook<TState> = <TSelected>(selector: (state: TState) => TSelected, equalityFn?: EqualityFn<TSelected>) => TSelected;
|
|
15
14
|
/**
|
|
@@ -45,7 +44,7 @@ declare function injectReducers<S, A extends Action = AnyAction>(reducers: Reduc
|
|
|
45
44
|
};
|
|
46
45
|
declare const StoreProvider: ({ children }: {
|
|
47
46
|
children: ReactNode;
|
|
48
|
-
}) =>
|
|
47
|
+
}) => react.JSX.Element;
|
|
49
48
|
|
|
50
49
|
declare const reactRedux: {
|
|
51
50
|
batch: typeof store.batch;
|
|
@@ -61,4 +60,3 @@ declare const reactRedux: {
|
|
|
61
60
|
};
|
|
62
61
|
|
|
63
62
|
export { StoreProvider, injectReducers, reactRedux };
|
|
64
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.2.4",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "rollup -c rollup.config.esb.mjs",
|
|
12
12
|
"buildDev": "rollup -c rollup.config.esb.mjs --dev",
|
|
@@ -35,8 +35,7 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@emotion/react": "^11.10.6",
|
|
37
37
|
"react": "^18.2.0",
|
|
38
|
-
"react-dom": "^18.2.0"
|
|
39
|
-
"theme-ui": "^0.15.5"
|
|
38
|
+
"react-dom": "^18.2.0"
|
|
40
39
|
},
|
|
41
40
|
"publishConfig": {
|
|
42
41
|
"access": "public",
|
|
@@ -47,5 +46,5 @@
|
|
|
47
46
|
"url": "http://corp-gitlab-01.domst.st.net/products/apia/ApiaNPMPackages.git",
|
|
48
47
|
"directory": "packages/store"
|
|
49
48
|
},
|
|
50
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "f14ade3161fb978c89e9f0949e46aca54d2e1db3"
|
|
51
50
|
}
|