acsi-core 0.1.2 → 0.1.3
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/components/CoreButton/index.d.ts +3 -1
- package/dist/components/CoreInput/index.d.ts +6 -0
- package/dist/components/CoreModal/index.d.ts +1 -0
- package/dist/components/CoreRange/index.d.ts +14 -0
- package/dist/components/CoreSelect/index.d.ts +1 -0
- package/dist/components/CoreTextArea/index.d.ts +13 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/index.css +82 -43
- package/dist/index.d.ts +3 -3
- package/dist/index.js +133 -34
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +131 -35
- package/dist/index.modern.js.map +1 -1
- package/dist/redux/commons/action.d.ts +1 -0
- package/package.json +2 -1
|
@@ -3,3 +3,4 @@ export declare const setAlert: import("@reduxjs/toolkit").ActionCreatorWithPaylo
|
|
|
3
3
|
export declare const setUser: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
|
|
4
4
|
export declare const setLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>;
|
|
5
5
|
export declare const reset: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<undefined, string>;
|
|
6
|
+
export declare const setMenuCollapse: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "acsi-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Contains core components && functions for acsi-core project",
|
|
5
5
|
"author": "brss",
|
|
6
6
|
"license": "MIT",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"node": ">=10"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
+
"@emotion/styled": "^11.14.0",
|
|
15
16
|
"@leecheuk/react-google-login": "^5.4.1",
|
|
16
17
|
"@mui/material": "^5.14.12",
|
|
17
18
|
"@reduxjs/toolkit": "^2.0.1",
|