acsi-core 0.1.2 → 0.1.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.
@@ -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>;
@@ -19,3 +19,22 @@ export declare const DefaultErrorMessage = "an_unexpected_error_has_occurred";
19
19
  export declare const getAccessToken: () => string | null;
20
20
  export declare const getAcademyDomain: () => string | null;
21
21
  export declare const encodeParams: (params: any) => string;
22
+ export declare const COLORS: {
23
+ brandBlack: string;
24
+ grayText: string;
25
+ blackText: string;
26
+ lightGray: string;
27
+ lightGray2: string;
28
+ lightGray2Text: string;
29
+ grayLines: string;
30
+ lightGrayBg: string;
31
+ white: string;
32
+ brandBlue: string;
33
+ lightBlue: string;
34
+ lightBlueHover: string;
35
+ brandBlueHover: string;
36
+ darkBrandBlue: string;
37
+ darkBrandBlueHover: string;
38
+ brandAccent: string;
39
+ red: string;
40
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
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",