bonuspluscomponents 0.0.38 → 0.0.39
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.
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
export { selectCabinetState } from "../Reducers/CabinetSlice";
|
|
2
|
-
export { selectCabinetSettings } from "../Reducers/CabinetSlice";
|
|
3
|
-
export { setInitialParameters } from "../Reducers/CabinetSlice";
|
|
4
1
|
export { default as TestComponent } from "./testComponent/TestComponent";
|
|
5
|
-
export {
|
|
2
|
+
export { default as popupsReducer } from "../Reducers/PopupsSlice";
|
|
3
|
+
export { default as cabinetReducer } from "../Reducers/CabinetSlice";
|
|
6
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAK,aAAa,EAAC,MAAM,+BAA+B,CAAC;AAExE,OAAO,EAAC,OAAO,IAAK,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAC,OAAO,IAAK,cAAc,EAAC,MAAM,0BAA0B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bonuspluscomponents",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.39",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
8
8
|
"build": "vite build --mode production",
|
|
9
9
|
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
|
10
10
|
"preview": "vite preview",
|
|
11
|
-
"publish_with_new_version": "npm --no-git-tag-version version patch && npm publish"
|
|
11
|
+
"publish_with_new_version": "vite build --mode production && npm --no-git-tag-version version patch && npm publish"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@emotion/react": "^11.11.1",
|