@eclass/ui-kit 1.42.1 → 1.43.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 (30) hide show
  1. package/dist/eclass-ui-kit.es.js +1030 -1
  2. package/dist/eclass-ui-kit.es.js.map +1 -1
  3. package/dist/eclass-ui-kit.umd.js +50 -50
  4. package/dist/eclass-ui-kit.umd.js.map +1 -1
  5. package/dist/organisms/Events/Events.d.ts +2 -0
  6. package/dist/organisms/Events/index.d.ts +1 -0
  7. package/dist/organisms/Resources/Icons/Avi.d.ts +2 -0
  8. package/dist/organisms/Resources/Icons/Csv.d.ts +2 -0
  9. package/dist/organisms/Resources/Icons/Doc.d.ts +2 -0
  10. package/dist/organisms/Resources/Icons/Docx.d.ts +2 -0
  11. package/dist/organisms/Resources/Icons/Gif.d.ts +2 -0
  12. package/dist/organisms/Resources/Icons/Icons.d.ts +6 -0
  13. package/dist/organisms/Resources/Icons/Jpeg.d.ts +2 -0
  14. package/dist/organisms/Resources/Icons/Jpg.d.ts +2 -0
  15. package/dist/organisms/Resources/Icons/Mkv.d.ts +2 -0
  16. package/dist/organisms/Resources/Icons/Mp3.d.ts +2 -0
  17. package/dist/organisms/Resources/Icons/Mp4.d.ts +2 -0
  18. package/dist/organisms/Resources/Icons/Pdf.d.ts +2 -0
  19. package/dist/organisms/Resources/Icons/Png.d.ts +2 -0
  20. package/dist/organisms/Resources/Icons/Ppt.d.ts +2 -0
  21. package/dist/organisms/Resources/Icons/Pptx.d.ts +2 -0
  22. package/dist/organisms/Resources/Icons/Wav.d.ts +2 -0
  23. package/dist/organisms/Resources/Icons/Xls.d.ts +2 -0
  24. package/dist/organisms/Resources/Icons/Xlsx.d.ts +2 -0
  25. package/dist/organisms/Resources/Icons/index.d.ts +18 -0
  26. package/dist/organisms/Resources/Resources.d.ts +12 -0
  27. package/dist/organisms/Resources/index.d.ts +1 -0
  28. package/dist/organisms/index.d.ts +2 -0
  29. package/dist/tsconfig.types.tsbuildinfo +1 -1
  30. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const Events: FC;
@@ -0,0 +1 @@
1
+ export * from './Events';
@@ -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
+ resourceNameFile: string;
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';