@eclass/ui-kit 1.1.0 → 1.4.1

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/atoms/Icons/ArrowRight.d.ts +6 -0
  2. package/dist/atoms/Icons/Certificate.d.ts +6 -0
  3. package/dist/atoms/Icons/CircularCheck.d.ts +6 -0
  4. package/dist/atoms/Icons/CircularInformation.d.ts +6 -0
  5. package/dist/atoms/Icons/Icon.d.ts +12 -0
  6. package/dist/atoms/Icons/Schedule.d.ts +6 -0
  7. package/dist/atoms/Icons/index.d.ts +5 -0
  8. package/dist/atoms/Label/Label.d.ts +12 -0
  9. package/dist/atoms/Progress/Progress.d.ts +5 -0
  10. package/dist/atoms/Ripples/Ripples.d.ts +5 -0
  11. package/dist/atoms/index.d.ts +3 -0
  12. package/dist/eclass-ui-kit.es.js +10563 -1
  13. package/dist/eclass-ui-kit.es.js.map +1 -1
  14. package/dist/eclass-ui-kit.umd.js +33 -1
  15. package/dist/eclass-ui-kit.umd.js.map +1 -1
  16. package/dist/index.d.ts +3 -2
  17. package/dist/organisms/CourseList/CourseBox.d.ts +11 -0
  18. package/dist/organisms/CourseList/CourseList.d.ts +13 -0
  19. package/dist/organisms/CourseList/components/DateStatus.d.ts +9 -0
  20. package/dist/organisms/CourseList/components/Footer.d.ts +5 -0
  21. package/dist/organisms/CourseList/components/Header.d.ts +5 -0
  22. package/dist/organisms/CourseList/components/IconSelection.d.ts +8 -0
  23. package/dist/organisms/CourseList/components/Section.d.ts +5 -0
  24. package/dist/organisms/CourseList/components/index.d.ts +3 -0
  25. package/dist/organisms/CourseList/dataFake.d.ts +132 -0
  26. package/dist/organisms/CourseList/index.d.ts +1 -0
  27. package/dist/organisms/index.d.ts +1 -0
  28. package/dist/style.css +1 -0
  29. package/dist/theme/colors.d.ts +35 -0
  30. package/dist/theme/index.d.ts +6 -0
  31. package/dist/theme/styles.d.ts +8 -0
  32. package/package.json +36 -26
  33. package/dist/components/HelloWord/HelloWorld.d.ts +0 -9
  34. package/dist/components/HelloWord/index.d.ts +0 -1
  35. package/dist/components/Link/Link.d.ts +0 -12
  36. package/dist/components/Link/index.d.ts +0 -1
  37. package/dist/components/index.d.ts +0 -2
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Icon';
3
+ export declare function ArrowRight(props: BaseProps): JSX.Element;
4
+ export declare namespace ArrowRight {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Icon';
3
+ export declare function Certificate(props: BaseProps): JSX.Element;
4
+ export declare namespace Certificate {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Icon';
3
+ export declare function CircularCheck(props: BaseProps): JSX.Element;
4
+ export declare namespace CircularCheck {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Icon';
3
+ export declare function CircularInformation(props: BaseProps): JSX.Element;
4
+ export declare namespace CircularInformation {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export interface BaseProps {
3
+ w?: string;
4
+ h?: string;
5
+ color?: string;
6
+ }
7
+ interface IconProps extends BaseProps {
8
+ viewBox?: string;
9
+ children: React.ReactChild | React.ReactChild[];
10
+ }
11
+ export declare function Icon({ w, h, color, viewBox, children, }: IconProps): JSX.Element;
12
+ export {};
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { BaseProps } from './Icon';
3
+ export declare function Schedule(props: BaseProps): JSX.Element;
4
+ export declare namespace Schedule {
5
+ var displayName: string;
6
+ }
@@ -0,0 +1,5 @@
1
+ export * from './ArrowRight';
2
+ export * from './Certificate';
3
+ export * from './CircularCheck';
4
+ export * from './CircularInformation';
5
+ export * from './Schedule';
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ export interface LabelProps {
3
+ children: React.ReactChild;
4
+ bg?: string;
5
+ color?: string;
6
+ size?: 'md' | 'sm';
7
+ m?: string;
8
+ }
9
+ export declare function Label({ children, bg, color, size, m, }: LabelProps): JSX.Element;
10
+ export declare namespace Label {
11
+ var displayName: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export declare function Progress({ value }: any): JSX.Element;
3
+ export declare namespace Progress {
4
+ var displayName: string;
5
+ }
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export declare function Ripples({ children, color }: any): JSX.Element;
3
+ export declare namespace Ripples {
4
+ var displayName: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ export * from './Label/Label';
2
+ export * from './Progress/Progress';
3
+ export * from './Ripples/Ripples';