@eclass/ui-kit 1.43.0 → 1.45.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.
@@ -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';
@@ -1 +1 @@
1
- export * from './Events';
1
+ export * from './Eventos';
@@ -6,7 +6,7 @@ interface ResourcesProps {
6
6
  resourceDetail: string;
7
7
  resourceTextDownload: string;
8
8
  resourceLink: string;
9
- resourceNameFile: string;
9
+ targetBlank?: boolean;
10
10
  }
11
11
  export declare const Resources: FC<ResourcesProps>;
12
12
  export {};