@cloudtower/eagle 0.27.69 → 0.27.70
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/cjs/stats1.html +1 -1
- package/dist/components.css +2825 -2825
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/SidebarMenu/SidebarMenu.d.ts +3 -0
- package/dist/src/core/SidebarMenu/SidebarMenu.type.d.ts +4 -0
- package/dist/src/core/SidebarMenu/index.d.ts +2 -0
- package/dist/src/core/index.d.ts +1 -0
- package/dist/stories/docs/core/SidebarMenu.stories.d.ts +12 -0
- package/dist/style.css +2729 -2729
- package/package.json +5 -5
package/dist/src/core/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export { default as ModalStack } from "./ModalStack";
|
|
|
21
21
|
export * from "./Overflow";
|
|
22
22
|
export * from "./Pagination";
|
|
23
23
|
export * from "./Radio";
|
|
24
|
+
export * from "./SidebarMenu";
|
|
24
25
|
export * from "./Steps";
|
|
25
26
|
export * from "./Styled";
|
|
26
27
|
export * from "./Switch";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ProgressProps } from "../../../src/core/Progress/progress.type";
|
|
2
|
+
import { Meta, StoryObj } from "@storybook/react";
|
|
3
|
+
import React from "react";
|
|
4
|
+
type Story = StoryObj<React.FC<ProgressProps>>;
|
|
5
|
+
/**
|
|
6
|
+
* 本侧边栏是 antd5 的 Menu 组件,主要用途的是侧边栏导航菜单。
|
|
7
|
+
*
|
|
8
|
+
* 详细用法参考:https://ant.design/components/menu-cn
|
|
9
|
+
*/
|
|
10
|
+
declare const meta: Meta<React.FC<ProgressProps>>;
|
|
11
|
+
export default meta;
|
|
12
|
+
export declare const Basic: Story;
|