mario-core 2.9.44-beta → 2.9.45-beta

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.
@@ -0,0 +1,4 @@
1
+ declare const de: {
2
+ hello: string;
3
+ };
4
+ export default de;
@@ -0,0 +1,4 @@
1
+ declare const en: {
2
+ hello: string;
3
+ };
4
+ export default en;
@@ -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,2 @@
1
+ export declare const changeLanguageApp: (language: string) => void;
2
+ export declare const translation: (text: string) => string;
@@ -0,0 +1,3 @@
1
+ import "../i18n.js";
2
+ export declare const changeLanguageApp: (language: string) => void;
3
+ export declare const translation: (text: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.9.44-beta",
3
+ "version": "2.9.45-beta",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1,5 +0,0 @@
1
- export interface IModelSelectRoles {
2
- isOpenModel: boolean;
3
- userRoles: string[];
4
- onSelectUserRoles: Function;
5
- }
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { IModelSelectRoles } from "../constant/type";
3
- declare const ModelSelectRole: ({ isOpenModel, userRoles, onSelectUserRoles }: IModelSelectRoles) => JSX.Element;
4
- export default ModelSelectRole;
@@ -1 +0,0 @@
1
- export declare const initAmplitude: () => void;