@cloudtower/eagle 0.27.38 → 0.28.0-dry

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;
@@ -1,4 +1,4 @@
1
+ import { CascaderProps } from "antd5";
1
2
  import React from "react";
2
- import { CascaderProps } from "./cascader.type";
3
3
  declare const Cascader: React.FC<CascaderProps>;
4
4
  export default Cascader;
@@ -1,8 +1,8 @@
1
1
  import { Meta, StoryObj } from "@storybook/react";
2
2
  import React from "react";
3
- import { OverflowTooltipProps } from "../src/spec";
4
- declare const meta: Meta<React.FC<OverflowTooltipProps>>;
5
- export default meta;
3
+ import { OverflowTooltipProps } from "../../spec";
4
+ declare const story: Meta<React.FC<OverflowTooltipProps>>;
5
+ export default story;
6
6
  export declare const Default: StoryObj<{
7
7
  width: string;
8
8
  multiLines: number;
@@ -297,7 +297,7 @@ export type ModalProps = Omit<AntdModalProps, "okType"> & {
297
297
  disablePrevStep?: boolean;
298
298
  } | boolean;
299
299
  };
300
- export type SearchInputProps = Omit<InputProps, "onChange"> & {
300
+ type SearchInputProps = Omit<InputProps, "onChange"> & {
301
301
  onChange: (value: string) => void;
302
302
  debounceWait?: number;
303
303
  };
@@ -3,4 +3,3 @@ export declare const EMPTY_ARRAY: never[];
3
3
  export declare const EMPTY_OBJECT: {};
4
4
  export declare const EMPTY_COMPONENT: () => null;
5
5
  export declare const DAYJS_I18N_MAP: Record<string, string>;
6
- export declare const Antd5PrefixCls = "antd5";