mario-core 2.9.370-prod → 2.9.370-release

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.css CHANGED
@@ -949,9 +949,10 @@
949
949
  z-index: 1000;
950
950
  bottom: 0;
951
951
  right: 0;
952
- background: #ffffff;
952
+ background: transparent;
953
953
  padding: 0 7px;
954
- letter-spacing: 2px; }
954
+ letter-spacing: 2px;
955
+ color: #fff; }
955
956
 
956
957
  ._297lu {
957
958
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.9.370-prod",
3
+ "version": "2.9.370-release",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1 +0,0 @@
1
- export declare const getWeeklyQuestsApi: () => Promise<import("axios").AxiosResponse<any>>;
@@ -1,37 +0,0 @@
1
- export interface IWeeklyQuest {
2
- id: number;
3
- isActive: boolean;
4
- challenge: IChallenge;
5
- title: string;
6
- source: SourceWeeklyQuests;
7
- request: IRequest;
8
- status: StatusWeeklyQuest;
9
- order: number;
10
- }
11
- export declare enum IChallenge {
12
- Challenge1 = 0,
13
- Challenge2 = 1,
14
- Challenge3 = 2,
15
- Challenge4 = 3,
16
- Challenge5 = 4
17
- }
18
- export declare enum SourceWeeklyQuests {
19
- CheckIn = 0,
20
- ClassReflection = 1,
21
- Conference = 2,
22
- Goal = 3,
23
- Interests = 4,
24
- ChallengesSection = 5,
25
- LearningStrategies = 6,
26
- SupportNetwork = 7
27
- }
28
- export declare enum IRequest {
29
- View = 0,
30
- Complete = 1,
31
- Update = 2
32
- }
33
- export declare enum StatusWeeklyQuest {
34
- Pending = 0,
35
- Completed = 1,
36
- NotCompleted = 2
37
- }