@cloudtower/eagle 0.27.17 → 0.27.21

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,6 @@
1
+ import type { StoryObj, Meta } from "@storybook/react";
2
+ import UIKitProvider from "../../UIKitProvider";
3
+ declare const meta: Meta<typeof UIKitProvider>;
4
+ type Story = StoryObj<typeof UIKitProvider>;
5
+ export declare const Chinese: Story;
6
+ export default meta;
@@ -0,0 +1,4 @@
1
+ import { CascaderProps } from "antd5";
2
+ import React from "react";
3
+ declare const Cascader: React.FC<CascaderProps>;
4
+ export default Cascader;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from "@storybook/react";
2
+ import { LinkComponentType } from "../../spec";
3
+ declare const story: Meta<LinkComponentType>;
4
+ export declare const Default: StoryObj<{
5
+ type?: "default" | "subtle";
6
+ disabled?: boolean;
7
+ href?: string;
8
+ content?: string;
9
+ target?: string;
10
+ showIcon?: boolean;
11
+ }>;
12
+ export declare const StyleAndBehavior: StoryObj<LinkComponentType>;
13
+ export declare const Variants: StoryObj<LinkComponentType>;
14
+ export default story;
@@ -0,0 +1,3 @@
1
+ import { LinkComponentType } from "../../spec";
2
+ declare const Link: LinkComponentType;
3
+ export default Link;