@cloudtower/eagle 0.32.10 → 0.32.12
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 +6 -0
- package/dist/cjs/core/Alert/index.js +10 -4
- package/dist/cjs/core/TableForm/TableFormBodyCell.js +2 -1
- package/dist/cjs/core/TableForm/TableFormHeaderCell.js +4 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2930 -2907
- package/dist/esm/core/Alert/index.js +10 -4
- package/dist/esm/core/TableForm/TableFormBodyCell.js +2 -1
- package/dist/esm/core/TableForm/TableFormHeaderCell.js +4 -2
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/TableForm/types.d.ts +1 -0
- package/dist/stories/docs/core/SearchInput.stories.d.ts +20 -20
- package/dist/style.css +2775 -2757
- package/package.json +7 -7
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
import SearchInput from "../../../src/core/SearchInput";
|
|
2
|
+
import type { StoryObj } from "@storybook/react";
|
|
3
|
+
/**
|
|
4
|
+
* * tower legacy 组件, 带 debounce 的搜索框
|
|
5
|
+
* * MR: http://gitlab.smartx.com/frontend/tower/-/merge_requests/930
|
|
6
|
+
*/
|
|
7
|
+
declare const meta: {
|
|
8
|
+
component: import("../../../src/core/SearchInput").SearchInputComponentType;
|
|
9
|
+
title: "Core/SearchInput | 搜索框";
|
|
10
|
+
args: {
|
|
11
|
+
debounceWait: number;
|
|
12
|
+
onSearchPrev: undefined;
|
|
13
|
+
onSearchNext: undefined;
|
|
14
|
+
total: undefined;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export default meta;
|
|
18
|
+
type Story = StoryObj<typeof SearchInput>;
|
|
19
|
+
export declare const Basic: Story;
|
|
20
|
+
export declare const withTotal: Story;
|