@eclass/ui-kit 1.51.8 → 1.51.9
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.
- package/dist/eclass-ui-kit.es.js +25 -16
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +16 -16
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/organisms/Alerts/Alert.d.ts +1 -1
- package/dist/organisms/Calendar/Dropdown/CalendarDropdown/CalendarDropdownContainer.d.ts +1 -1
- package/dist/organisms/Calendar/Dropdown/CalendarDropdown/Components/Events.d.ts +1 -1
- package/dist/organisms/Calendar/Dropdown/CalendarDropdown/Components/GoToCalendar.d.ts +3 -1
- package/dist/organisms/Calendar/Dropdown/CalendarDropdown.d.ts +1 -1
- package/dist/organisms/Calendar/Dropdown/types.d.ts +2 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ICalendarDropdown } from '../types';
|
|
3
|
-
export declare const CalendarDropdownContainer: ({ events, loading, text, now, redirectToCalendar, courseColors: colors, m, }: ICalendarDropdown) => JSX.Element;
|
|
3
|
+
export declare const CalendarDropdownContainer: ({ events, loading, text, now, redirectToCalendar, courseColors: colors, onlyToCalendar, m, }: ICalendarDropdown) => JSX.Element;
|
|
@@ -3,6 +3,8 @@ interface IGoToCalendar {
|
|
|
3
3
|
hasNew: boolean;
|
|
4
4
|
text: string;
|
|
5
5
|
tooltipDisabled: boolean;
|
|
6
|
+
onlyToCalendar?: boolean;
|
|
7
|
+
onClick?: () => void;
|
|
6
8
|
}
|
|
7
|
-
export declare const GoToCalendar: ({ hasNew, text, tooltipDisabled }: IGoToCalendar) => JSX.Element;
|
|
9
|
+
export declare const GoToCalendar: ({ hasNew, text, tooltipDisabled, onlyToCalendar, onClick, }: IGoToCalendar) => JSX.Element;
|
|
8
10
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ICalendarDropdown } from './types';
|
|
3
|
-
export declare const CalendarDropdown: ({ redirectToCalendar, text, courseColors, now, events, loading, m, }: ICalendarDropdown) => JSX.Element;
|
|
3
|
+
export declare const CalendarDropdown: ({ redirectToCalendar, text, courseColors, now, events, loading, onlyToCalendar, m, }: ICalendarDropdown) => JSX.Element;
|