@simpoobusiness/sdk 2.0.73 → 2.0.75
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/.tsbuildinfo +1 -1
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/components/ui/sheet.d.ts +1 -1
- package/dist/simpoo-sdk.js +36 -36
- package/dist/simpoo-sdk.js.map +1 -1
- package/dist/store/index.d.ts +4 -4
- package/dist/store/reducers/appSlice.d.ts +1 -1
- package/package.json +14 -13
package/dist/store/index.d.ts
CHANGED
|
@@ -4,15 +4,15 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
4
4
|
perview: number;
|
|
5
5
|
inline_update: number;
|
|
6
6
|
};
|
|
7
|
-
}, import("
|
|
8
|
-
dispatch: import("
|
|
7
|
+
}, import("@reduxjs/toolkit").UnknownAction, import("@reduxjs/toolkit").Tuple<[import("@reduxjs/toolkit").StoreEnhancer<{
|
|
8
|
+
dispatch: import("@reduxjs/toolkit").ThunkDispatch<{
|
|
9
9
|
app: {
|
|
10
10
|
currentPage: number;
|
|
11
11
|
perview: number;
|
|
12
12
|
inline_update: number;
|
|
13
13
|
};
|
|
14
|
-
}, undefined, import("
|
|
15
|
-
}>, import("
|
|
14
|
+
}, undefined, import("@reduxjs/toolkit").UnknownAction>;
|
|
15
|
+
}>, import("@reduxjs/toolkit").StoreEnhancer]>>;
|
|
16
16
|
export type AppStore = typeof store;
|
|
17
17
|
export type RootState = ReturnType<typeof store.getState>;
|
|
18
18
|
export type AppDispatch = typeof store.dispatch;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const setCurrentPage: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "app/setCurrentPage">, setPerview: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "app/setPerview">, triggerUpdate: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"app/triggerUpdate">;
|
|
2
|
-
declare const _default: import("
|
|
2
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<{
|
|
3
3
|
currentPage: number;
|
|
4
4
|
perview: number;
|
|
5
5
|
inline_update: number;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.75",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"unpkg": "dist/simpoo-sdk.js",
|
|
9
9
|
"jsdelivr": "dist/simpoo-sdk.js",
|
|
@@ -19,17 +19,6 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"description": "Simpoo SDK for embedding simpooBusiness inventory widgets into any web app",
|
|
22
|
-
"scripts": {
|
|
23
|
-
"clean": "rimraf dist",
|
|
24
|
-
"typecheck": "tsc --noEmit",
|
|
25
|
-
"build": "npm run clean && npm run build:types && npm run build:bundle",
|
|
26
|
-
"build:bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
27
|
-
"docs": "typedoc --out docs src/embed.tsx",
|
|
28
|
-
"build:watch": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs -w ",
|
|
29
|
-
"dev": "npm run build:watch",
|
|
30
|
-
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --incremental --project tsconfig.build.json",
|
|
31
|
-
"publish:npm": "npm publish --access public"
|
|
32
|
-
},
|
|
33
22
|
"devDependencies": {
|
|
34
23
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
35
24
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
@@ -71,6 +60,7 @@
|
|
|
71
60
|
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
72
61
|
"@radix-ui/react-select": "^2.2.5",
|
|
73
62
|
"@radix-ui/react-separator": "^1.1.7",
|
|
63
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
74
64
|
"@reduxjs/toolkit": "^2.8.2",
|
|
75
65
|
"@tanstack/react-query": "^5.84.1",
|
|
76
66
|
"@tanstack/react-table": "^8.21.3",
|
|
@@ -91,5 +81,16 @@
|
|
|
91
81
|
"tslib": "^2.8.1",
|
|
92
82
|
"tw-animate-css": "^1.3.6",
|
|
93
83
|
"use-debounce": "^10.0.5"
|
|
84
|
+
},
|
|
85
|
+
"scripts": {
|
|
86
|
+
"clean": "rimraf dist",
|
|
87
|
+
"typecheck": "tsc --noEmit",
|
|
88
|
+
"build": "npm run clean && npm run build:types && npm run build:bundle",
|
|
89
|
+
"build:bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
90
|
+
"docs": "typedoc --out docs src/embed.tsx",
|
|
91
|
+
"build:watch": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs -w ",
|
|
92
|
+
"dev": "npm run build:watch",
|
|
93
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --incremental --project tsconfig.build.json",
|
|
94
|
+
"publish:npm": "npm publish --access public"
|
|
94
95
|
}
|
|
95
|
-
}
|
|
96
|
+
}
|