mario-education 2.4.592-feedback → 2.4.593-feedback

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.
Files changed (36) hide show
  1. package/dist/components/Loading/LoadLanguage.d.ts +3 -0
  2. package/dist/components/icons/EmailIcon.d.ts +0 -0
  3. package/dist/components/layouts/icons/DeleteIcon.d.ts +0 -5
  4. package/dist/components/layouts/icons/FrequencyAndSetupIcon.d.ts +0 -2
  5. package/dist/components/layouts/icons/TeacherWellBeingIcon.d.ts +0 -2
  6. package/dist/components/layouts/icons/WellBeingDashboardIcon.d.ts +0 -2
  7. package/dist/containers/FrequencyAndSetup/components/ContactFlowInformation.d.ts +0 -12
  8. package/dist/containers/FrequencyAndSetup/components/FrequencyModeDetail.d.ts +0 -3
  9. package/dist/containers/FrequencyAndSetup/components/SortableItem.d.ts +0 -7
  10. package/dist/containers/FrequencyAndSetup/components/WrapperWellBeing.d.ts +0 -8
  11. package/dist/containers/FrequencyAndSetup/configs/constants.d.ts +0 -12
  12. package/dist/containers/FrequencyAndSetup/configs/type.d.ts +0 -36
  13. package/dist/containers/FrequencyAndSetup/hooks/useFrequencyAndSetup.d.ts +0 -16
  14. package/dist/containers/FrequencyAndSetup/views/FrequencyAndSetup.d.ts +0 -5
  15. package/dist/containers/WellBeingDashboard/components/DashboardToPDF.d.ts +0 -0
  16. package/dist/containers/WellBeingDashboard/components/EducatorWithoutCheckInsModal.d.ts +0 -0
  17. package/dist/containers/WellBeingDashboard/components/EmptyChart.d.ts +0 -0
  18. package/dist/containers/WellBeingDashboard/components/ExportChartPdfModal.d.ts +0 -0
  19. package/dist/containers/WellBeingDashboard/components/Filter.d.ts +0 -0
  20. package/dist/containers/WellBeingDashboard/components/OpenFieldQuestionTable.d.ts +0 -0
  21. package/dist/containers/WellBeingDashboard/components/OpenFieldTab.d.ts +0 -0
  22. package/dist/containers/WellBeingDashboard/components/RatingQuestionChart.d.ts +0 -0
  23. package/dist/containers/WellBeingDashboard/configs/constants.d.ts +0 -0
  24. package/dist/containers/WellBeingDashboard/configs/type.d.ts +0 -0
  25. package/dist/containers/WellBeingDashboard/configs/utils.d.ts +0 -0
  26. package/dist/containers/WellBeingDashboard/hooks/useOpenFieldWellbeingQuestion.d.ts +0 -0
  27. package/dist/containers/WellBeingDashboard/hooks/useWellbeingDashboard.d.ts +0 -0
  28. package/dist/containers/WellBeingDashboard/views/OpenFieldWellbeingQuestion.d.ts +0 -0
  29. package/dist/containers/WellBeingDashboard/views/WellBeingDashboard.d.ts +0 -5
  30. package/dist/index.css +15053 -15053
  31. package/dist/index.js +19 -8
  32. package/dist/index.js.map +1 -1
  33. package/dist/index.modern.js +19 -8
  34. package/dist/index.modern.js.map +1 -1
  35. package/dist/services/wellbeingService.d.ts +0 -4
  36. package/package.json +110 -110
@@ -0,0 +1,3 @@
1
+ import { FC } from "react";
2
+ declare const LoadLanguage: FC;
3
+ export default LoadLanguage;
File without changes
@@ -1,5 +0,0 @@
1
- declare const DeleteIcon: ({ color, opacity }: {
2
- color?: string | undefined;
3
- opacity?: number | undefined;
4
- }) => JSX.Element;
5
- export default DeleteIcon;
@@ -1,2 +0,0 @@
1
- declare const FrequencyAndSetupIcon: () => JSX.Element;
2
- export default FrequencyAndSetupIcon;
@@ -1,2 +0,0 @@
1
- declare const TeacherWellBeingIcon: () => JSX.Element;
2
- export default TeacherWellBeingIcon;
@@ -1,2 +0,0 @@
1
- declare const WellBeingDashboardIcon: () => JSX.Element;
2
- export default WellBeingDashboardIcon;
@@ -1,12 +0,0 @@
1
- import { IWellBeingFlowContact } from '../configs/type';
2
- interface IProps {
3
- contacts: IWellBeingFlowContact[];
4
- handleAddContactFlow: Function;
5
- handleDeleteContactFlow: any;
6
- handleChangeValueContact: Function;
7
- contactIdToDeleteRef: any;
8
- openModalDelete: boolean;
9
- setOpenModalDelete: Function;
10
- }
11
- declare const ContactFlowInformation: ({ contacts, handleAddContactFlow, handleDeleteContactFlow, handleChangeValueContact, contactIdToDeleteRef, openModalDelete, setOpenModalDelete }: IProps) => JSX.Element;
12
- export default ContactFlowInformation;
@@ -1,3 +0,0 @@
1
- import { IFrequencyModeDetail } from '../configs/type';
2
- declare const FrequencyModeDetail: ({ sections, onChange }: IFrequencyModeDetail) => JSX.Element;
3
- export default FrequencyModeDetail;
@@ -1,7 +0,0 @@
1
- interface IProps {
2
- id: number;
3
- data: any;
4
- index?: number;
5
- }
6
- declare const SortableItem: ({ id, data, index }: IProps) => JSX.Element;
7
- export default SortableItem;
@@ -1,8 +0,0 @@
1
- interface IProps {
2
- title: string;
3
- description: string;
4
- children: any;
5
- classChild?: string;
6
- }
7
- declare const WrapperWellBeing: ({ title, description, children, classChild }: IProps) => JSX.Element;
8
- export default WrapperWellBeing;
@@ -1,12 +0,0 @@
1
- import { IWellBeingFlowContact, Frequency_Mode, Frequency_Setting, IWellBeingSetup } from "./type";
2
- export declare const FrequencyMode: {
3
- value: Frequency_Mode;
4
- title: string;
5
- description: string;
6
- }[];
7
- export declare const FrequencySetting: {
8
- value: Frequency_Setting;
9
- title: string;
10
- }[];
11
- export declare const InitialContactFlow: IWellBeingFlowContact;
12
- export declare const initSetup: IWellBeingSetup;
@@ -1,36 +0,0 @@
1
- export declare enum Frequency_Mode {
2
- Bulk = "Bulk",
3
- Detailed = "Detailed"
4
- }
5
- export declare enum Frequency_Setting {
6
- Weekly = "Weekly",
7
- Monthly = "Monthly",
8
- Custom = "Custom"
9
- }
10
- export interface IWellBeingSetup {
11
- id: number;
12
- frequencyMode: Frequency_Mode;
13
- frequencyType: Frequency_Setting;
14
- customFrequencyDays: number | null;
15
- isContactFlowEnabled: boolean;
16
- sections: IWellBeingSection[];
17
- contacts: IWellBeingFlowContact[];
18
- }
19
- export interface IWellBeingSection {
20
- id: number;
21
- name: string;
22
- description: string;
23
- iconUrl: string;
24
- order: number;
25
- defaultOrder: number;
26
- }
27
- export interface IWellBeingFlowContact {
28
- id: number;
29
- name: string;
30
- role: string;
31
- email: string;
32
- }
33
- export interface IFrequencyModeDetail {
34
- sections: IWellBeingSection[];
35
- onChange: Function;
36
- }
@@ -1,16 +0,0 @@
1
- /// <reference types="react" />
2
- import { IWellBeingFlowContact, IWellBeingSection, IWellBeingSetup } from "../configs/type";
3
- declare const useFrequencyAndSetup: () => {
4
- handleAddContactFlow: () => void;
5
- handleDeleteContactFlow: (id: number) => void;
6
- handleChangeValueContact: (id: number, key: string, value: string) => void;
7
- contactIdToDeleteRef: import("react").MutableRefObject<number>;
8
- openModalDelete: boolean;
9
- setOpenModalDelete: import("react").Dispatch<import("react").SetStateAction<boolean>>;
10
- setup: IWellBeingSetup;
11
- onChangeSetup: <K extends "id" | "contacts" | "sections" | "frequencyMode" | "frequencyType" | "customFrequencyDays" | "isContactFlowEnabled">(key: K, value: IWellBeingSetup[K]) => void;
12
- contacts: IWellBeingFlowContact[];
13
- sections: IWellBeingSection[];
14
- onChangeSections: (orderSections: IWellBeingSection[]) => void;
15
- };
16
- export default useFrequencyAndSetup;
@@ -1,5 +0,0 @@
1
- import { FC } from 'react';
2
- interface Props {
3
- }
4
- declare const FrequencyAndSetup: FC<Props>;
5
- export default FrequencyAndSetup;
@@ -1,5 +0,0 @@
1
- import { FC } from 'react';
2
- interface IProps {
3
- }
4
- declare const WellBeingDashboard: FC<IProps>;
5
- export default WellBeingDashboard;