@cloudtower/eagle 0.27.4 → 0.27.6

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,7 @@
1
+ import "moment/locale/zh-cn";
2
+ import type { Meta } from "@storybook/react";
3
+ import React from "react";
4
+ import { CronCalendarProps } from "../../spec";
5
+ declare const story: Meta<React.FC<CronCalendarProps>>;
6
+ export default story;
7
+ export declare const Basic: () => JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { CronCalendarProps } from "../../spec";
3
+ declare const CronCalendar: React.FC<CronCalendarProps>;
4
+ export default CronCalendar;
@@ -0,0 +1,9 @@
1
+ import type { Meta } from "@storybook/react";
2
+ import React from "react";
3
+ import { GoBackButtonType } from "../../spec";
4
+ declare const meta: Meta<React.FC<GoBackButtonType>>;
5
+ export default meta;
6
+ export declare const Basic: {
7
+ (): JSX.Element;
8
+ args: {};
9
+ };
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { GoBackButtonType } from "../../spec";
3
+ declare const GobackButton: React.FC<GoBackButtonType>;
4
+ export default GobackButton;
@@ -0,0 +1,2 @@
1
+ import { i18n, TFunction } from "i18next";
2
+ export declare function getCalendarTitle(month: string, t: TFunction, i18n: i18n): string;