@cloudtower/eagle 0.27.64-alpha.0 → 0.27.65
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 +1866 -1877
- package/dist/esm/stats1.html +1 -1
- package/dist/src/spec/type.d.ts +0 -9
- package/dist/style.css +1714 -1723
- package/package.json +5 -5
- package/dist/stories/docs/core/InputInteger.stories.d.ts +0 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.65",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"sync:color": "node tools/fetch-figma-color.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cloudtower/icons-react": "0.27.
|
|
32
|
-
"@cloudtower/parrot": "0.27.
|
|
31
|
+
"@cloudtower/icons-react": "0.27.65",
|
|
32
|
+
"@cloudtower/parrot": "0.27.65",
|
|
33
33
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
34
34
|
"@linaria/core": "^4.2.2",
|
|
35
35
|
"@linaria/react": "^4.3.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@babel/preset-env": "^7.22.15",
|
|
53
53
|
"@babel/preset-react": "^7.22.15",
|
|
54
54
|
"@babel/preset-typescript": "^7.22.15",
|
|
55
|
-
"@cloudtower/icons": "0.27.
|
|
55
|
+
"@cloudtower/icons": "0.27.65",
|
|
56
56
|
"@linaria/babel-preset": "4.4.3",
|
|
57
57
|
"@linaria/rollup": "^4.1.5",
|
|
58
58
|
"@linaria/vite": "^4.2.5",
|
|
@@ -119,5 +119,5 @@
|
|
|
119
119
|
"vite": "^3.1.7",
|
|
120
120
|
"vitest": "^0.24.1"
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "9fdd1c45a7f0d18769a4a6a0ec0d1ed6a16bc5a6"
|
|
123
123
|
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import InputInteger from "../../../src/core/InputInteger";
|
|
3
|
-
import { StoryObj } from "@storybook/react";
|
|
4
|
-
declare const meta: {
|
|
5
|
-
component: import("react").FC<import("antd/lib/input-number").InputNumberProps & import("../../../src").AdditionOptions>;
|
|
6
|
-
title: "Core/InputInteger | 整数输入";
|
|
7
|
-
parameters: {
|
|
8
|
-
design: {
|
|
9
|
-
type: string;
|
|
10
|
-
url: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
export default meta;
|
|
15
|
-
type Story = StoryObj<typeof InputInteger>;
|
|
16
|
-
export declare const MiddleSize: Story;
|
|
17
|
-
export declare const SmallSize: Story;
|
|
18
|
-
export declare const LargeSize: Story;
|
|
19
|
-
/**
|
|
20
|
-
* Control 默认值为 false。
|
|
21
|
-
* 默认不使用箭头按钮。
|
|
22
|
-
*/
|
|
23
|
-
export declare const ShowControl: Story;
|
|
24
|
-
/**
|
|
25
|
-
* 在输入框的末尾显示文字。
|
|
26
|
-
* 如果开启 control,则不会显示
|
|
27
|
-
*/
|
|
28
|
-
export declare const Suffix: Story;
|