@cloudtower/eagle 0.27.5 → 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.
- package/dist/components/Calendar/index.d.ts +3 -0
- package/dist/components.css +926 -823
- package/dist/coreX/CronCalendar/CronCalendar.stories.d.ts +7 -0
- package/dist/coreX/CronCalendar/index.d.ts +4 -0
- package/dist/coreX/GoBackButton/GoBackButton.stories.d.ts +9 -0
- package/dist/coreX/GoBackButton/index.d.ts +4 -0
- package/dist/coreX/common/getCalendarTitle.d.ts +2 -0
- package/dist/esm/index.js +681 -516
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +19 -1
- package/dist/style.css +1142 -1039
- package/dist/umd/index.js +679 -514
- package/dist/umd/stats1.html +1 -1
- package/package.json +7 -5
|
@@ -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,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
|
+
};
|