mario-core 2.9.41-beta → 2.9.42-admin

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,4 +1,3 @@
1
1
  /// <reference types="react" />
2
- import "../i18n";
3
2
  declare const TheLayout: ({ routes, navigation }: any) => JSX.Element;
4
3
  export default TheLayout;
@@ -8,9 +8,7 @@ export declare const reset: import("@reduxjs/toolkit").ActionCreatorWithOptional
8
8
  export declare const showMenuBar: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
9
9
  export declare const showFontSize: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
10
10
  export declare const setEnableIEP: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
11
- export declare const setEnableSurvey: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
12
11
  export declare const setConversationOneToOne: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
13
- export declare const setLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>;
14
12
  export declare const setCurrentStudentId: import("@reduxjs/toolkit").ActionCreatorWithPayload<number, string>;
15
13
  export declare const setCurrentStudentUserId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>;
16
14
  export declare const setCurrentStudentName: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>;
@@ -11,4 +11,5 @@ export interface IinitAmplitude {
11
11
  first_login?: string;
12
12
  last_page?: string;
13
13
  duration_since?: number;
14
+ answer?: string;
14
15
  }
@@ -0,0 +1 @@
1
+ export declare const initAmplitude: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.9.41-beta",
3
+ "version": "2.9.42-admin",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -81,7 +81,6 @@
81
81
  "bootstrap": "^4.6.0",
82
82
  "date-fns": "^2.19.0",
83
83
  "formik": "^2.2.6",
84
- "i18next": "^19.8.7",
85
84
  "link": "^1.5.1",
86
85
  "moment": "^2.29.1",
87
86
  "node-sass": "^5.0.0",
@@ -89,7 +88,6 @@
89
88
  "react-datepicker": "^3.6.0",
90
89
  "react-google-login": "^5.2.2",
91
90
  "react-google-recaptcha-v3": "^1.9.3",
92
- "react-i18next": "^11.8.5",
93
91
  "react-icons": "^4.2.0",
94
92
  "react-notifications-component": "3.0.4",
95
93
  "react-select": "^4.1.0",
@@ -1,3 +0,0 @@
1
- import { FC } from "react";
2
- declare const LoadLanguage: FC;
3
- export default LoadLanguage;
package/dist/lang/de.d.ts DELETED
@@ -1,4 +0,0 @@
1
- declare const de: {
2
- hello: string;
3
- };
4
- export default de;
package/dist/lang/en.d.ts DELETED
@@ -1,4 +0,0 @@
1
- declare const en: {
2
- hello: string;
3
- };
4
- export default en;
@@ -1,2 +0,0 @@
1
- export declare const changeLanguageApp: (language: string) => void;
2
- export declare const translation: (text: string) => string;
@@ -1,3 +0,0 @@
1
- import "../i18n.js";
2
- export declare const changeLanguageApp: (language: string) => void;
3
- export declare const translation: (text: string) => string;