@eclass/ui-kit 1.42.1 → 1.44.0

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 (37) hide show
  1. package/dist/eclass-ui-kit.es.js +1275 -1
  2. package/dist/eclass-ui-kit.es.js.map +1 -1
  3. package/dist/eclass-ui-kit.umd.js +49 -49
  4. package/dist/eclass-ui-kit.umd.js.map +1 -1
  5. package/dist/organisms/Events/Eventos.d.ts +3 -0
  6. package/dist/organisms/Events/EventsTypes.d.ts +17 -0
  7. package/dist/organisms/Events/Icons/Calendar.d.ts +6 -0
  8. package/dist/organisms/Events/Icons/Clock.d.ts +6 -0
  9. package/dist/organisms/Events/Icons/index.d.ts +2 -0
  10. package/dist/organisms/Events/TypeBox/LargeBox.d.ts +3 -0
  11. package/dist/organisms/Events/TypeBox/SmallBox.d.ts +3 -0
  12. package/dist/organisms/Events/TypeBox/index.d.ts +2 -0
  13. package/dist/organisms/Events/index.d.ts +1 -0
  14. package/dist/organisms/Resources/Icons/Avi.d.ts +2 -0
  15. package/dist/organisms/Resources/Icons/Csv.d.ts +2 -0
  16. package/dist/organisms/Resources/Icons/Doc.d.ts +2 -0
  17. package/dist/organisms/Resources/Icons/Docx.d.ts +2 -0
  18. package/dist/organisms/Resources/Icons/Gif.d.ts +2 -0
  19. package/dist/organisms/Resources/Icons/Icons.d.ts +6 -0
  20. package/dist/organisms/Resources/Icons/Jpeg.d.ts +2 -0
  21. package/dist/organisms/Resources/Icons/Jpg.d.ts +2 -0
  22. package/dist/organisms/Resources/Icons/Mkv.d.ts +2 -0
  23. package/dist/organisms/Resources/Icons/Mp3.d.ts +2 -0
  24. package/dist/organisms/Resources/Icons/Mp4.d.ts +2 -0
  25. package/dist/organisms/Resources/Icons/Pdf.d.ts +2 -0
  26. package/dist/organisms/Resources/Icons/Png.d.ts +2 -0
  27. package/dist/organisms/Resources/Icons/Ppt.d.ts +2 -0
  28. package/dist/organisms/Resources/Icons/Pptx.d.ts +2 -0
  29. package/dist/organisms/Resources/Icons/Wav.d.ts +2 -0
  30. package/dist/organisms/Resources/Icons/Xls.d.ts +2 -0
  31. package/dist/organisms/Resources/Icons/Xlsx.d.ts +2 -0
  32. package/dist/organisms/Resources/Icons/index.d.ts +18 -0
  33. package/dist/organisms/Resources/Resources.d.ts +12 -0
  34. package/dist/organisms/Resources/index.d.ts +1 -0
  35. package/dist/organisms/index.d.ts +2 -0
  36. package/dist/tsconfig.types.tsbuildinfo +1 -1
  37. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { EventosProps } from './EventsTypes';
3
+ export declare const Eventos: FC<EventosProps>;
@@ -0,0 +1,17 @@
1
+ export interface EventosProps {
2
+ typeEvent: 'SMALL_EVENTS' | 'LARGE_EVENTS' | string
3
+ isMobile?: boolean
4
+ itemsEvent: ItemsEventsProps
5
+ }
6
+
7
+ export interface ItemsEventsProps {
8
+ id: string
9
+ eventTitle: string
10
+ startDate: string
11
+ startTime: string
12
+ buttonInfo: string
13
+ redirect: string
14
+ eventImage: string
15
+ targetBlank?: boolean
16
+ isMobile?: boolean
17
+ }
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface CalendarProps {
3
+ color?: string;
4
+ }
5
+ export declare const Calendar: FC<CalendarProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface ClockProps {
3
+ color?: string;
4
+ }
5
+ export declare const Clock: FC<ClockProps>;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './Calendar';
2
+ export * from './Clock';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { ItemsEventsProps } from '../EventsTypes';
3
+ export declare const LargeBox: FC<ItemsEventsProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { ItemsEventsProps } from '../EventsTypes';
3
+ export declare const SmallBox: FC<ItemsEventsProps>;
@@ -0,0 +1,2 @@
1
+ export * from './LargeBox';
2
+ export * from './SmallBox';
@@ -0,0 +1 @@
1
+ export * from './Eventos';
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Avi: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Csv: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Doc: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Docx: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Gif: FC;
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface IconsProps {
3
+ type: string | 'avi' | 'csv' | 'doc' | 'docx' | 'gif' | 'jpeg' | 'jpg' | 'mkv' | 'mp3' | 'mp4' | 'pdf' | 'png' | 'ppt' | 'pptx' | 'wav' | 'xls' | 'xlsx';
4
+ }
5
+ export declare const Icons: FC<IconsProps>;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Jpeg: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Jpg: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Mkv: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Mp3: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Mp4: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Pdf: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Png: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Ppt: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Pptx: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Wav: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Xls: FC;
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Xlsx: FC;
@@ -0,0 +1,18 @@
1
+ export * from './Avi';
2
+ export * from './Csv';
3
+ export * from './Doc';
4
+ export * from './Docx';
5
+ export * from './Gif';
6
+ export * from './Icons';
7
+ export * from './Jpeg';
8
+ export * from './Jpg';
9
+ export * from './Mkv';
10
+ export * from './Mp3';
11
+ export * from './Mp4';
12
+ export * from './Pdf';
13
+ export * from './Png';
14
+ export * from './Ppt';
15
+ export * from './Pptx';
16
+ export * from './Wav';
17
+ export * from './Xls';
18
+ export * from './Xlsx';
@@ -0,0 +1,12 @@
1
+ import { FC } from 'react';
2
+ interface ResourcesProps {
3
+ id: string | number;
4
+ resourceType: string;
5
+ resourceTitle: string;
6
+ resourceDetail: string;
7
+ resourceTextDownload: string;
8
+ resourceLink: string;
9
+ targetBlank?: boolean;
10
+ }
11
+ export declare const Resources: FC<ResourcesProps>;
12
+ export {};
@@ -0,0 +1 @@
1
+ export * from './Resources';
@@ -1,3 +1,5 @@
1
1
  export * from './CourseList';
2
2
  export * from './Alerts';
3
3
  export * from './ModalAlert';
4
+ export * from './Events';
5
+ export * from './Resources';