@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.
- package/README.md +2 -2
- package/dist/components.css +2430 -2641
- package/dist/esm/index.js +1256 -1361
- package/dist/esm/stats1.html +1 -1
- package/dist/src/components/Cascader/cascader.stories.d.ts +6 -0
- package/dist/src/components/Cascader/index.d.ts +1 -1
- package/dist/{stories → src/components/OverflowTooltip}/OverflowTooltip.stories.d.ts +3 -3
- package/dist/src/spec/base.d.ts +1 -1
- package/dist/src/utils/constants.d.ts +0 -1
- package/dist/style.css +2909 -3120
- package/dist/umd/index.js +1253 -1358
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +0 -1
- package/package.json +6 -8
- package/dist/src/components/Cascader/cascader.style.d.ts +0 -10
- package/dist/src/components/Cascader/cascader.type.d.ts +0 -32
- package/dist/src/components/Cascader/cascader.widget.d.ts +0 -21
- package/dist/src/components/Checkbox/checkbox.style.d.ts +0 -2
- package/dist/stories/docs/cascader/cascader.stories.d.ts +0 -62
- package/dist/stories/types.d.ts +0 -10
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Meta, StoryObj } from "@storybook/react";
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { OverflowTooltipProps } from "
|
|
4
|
-
declare const
|
|
5
|
-
export default
|
|
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;
|
package/dist/src/spec/base.d.ts
CHANGED
|
@@ -297,7 +297,7 @@ export type ModalProps = Omit<AntdModalProps, "okType"> & {
|
|
|
297
297
|
disablePrevStep?: boolean;
|
|
298
298
|
} | boolean;
|
|
299
299
|
};
|
|
300
|
-
|
|
300
|
+
type SearchInputProps = Omit<InputProps, "onChange"> & {
|
|
301
301
|
onChange: (value: string) => void;
|
|
302
302
|
debounceWait?: number;
|
|
303
303
|
};
|