@trionesdev/antd-mobile-react 0.0.2-beta.15 → 0.0.2-beta.16
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/Stepper/demo/base.d.ts +3 -0
- package/dist/Stepper/demo/base.js +23 -0
- package/dist/Stepper/index.d.ts +3 -0
- package/dist/Stepper/index.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Stepper from "../index";
|
|
3
|
+
import { DemoBlock } from "../../DemoBlock";
|
|
4
|
+
export default (function () {
|
|
5
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(DemoBlock, {
|
|
6
|
+
title: "\u57FA\u672C\u4F7F\u7528"
|
|
7
|
+
}, /*#__PURE__*/React.createElement(Stepper, null)), /*#__PURE__*/React.createElement(DemoBlock, {
|
|
8
|
+
title: "\u6700\u5927\u503C\u6700\u5C0F\u503C"
|
|
9
|
+
}, /*#__PURE__*/React.createElement(Stepper, {
|
|
10
|
+
min: 0,
|
|
11
|
+
max: 10
|
|
12
|
+
})), /*#__PURE__*/React.createElement(DemoBlock, {
|
|
13
|
+
title: "\u57FA\u672C\u4F7F\u7528"
|
|
14
|
+
}, /*#__PURE__*/React.createElement(Stepper, {
|
|
15
|
+
max: 10
|
|
16
|
+
})), /*#__PURE__*/React.createElement(DemoBlock, {
|
|
17
|
+
title: "\u5360\u6EE1"
|
|
18
|
+
}, /*#__PURE__*/React.createElement(Stepper, {
|
|
19
|
+
block: true,
|
|
20
|
+
min: 0,
|
|
21
|
+
max: 10
|
|
22
|
+
})));
|
|
23
|
+
});
|
package/dist/index.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ export { default as Space } from './Space';
|
|
|
96
96
|
export type { SpaceProps } from './Space';
|
|
97
97
|
export { default as SpinLoading } from './SpinLoading';
|
|
98
98
|
export type { SpinLoadingProps } from './SpinLoading';
|
|
99
|
+
export { default as Stepper } from './Stepper';
|
|
100
|
+
export type { StepperProps } from './Stepper';
|
|
99
101
|
export { default as Swiper } from "./Swiper";
|
|
100
102
|
export type { SwiperProps } from './Swiper';
|
|
101
103
|
export { default as Steps } from "./Steps";
|
package/dist/index.js
CHANGED
|
@@ -47,6 +47,7 @@ export { default as Segmented } from "./Segmented";
|
|
|
47
47
|
export { default as SideBar } from "./SideBar";
|
|
48
48
|
export { default as Space } from "./Space";
|
|
49
49
|
export { default as SpinLoading } from "./SpinLoading";
|
|
50
|
+
export { default as Stepper } from "./Stepper";
|
|
50
51
|
export { default as Swiper } from "./Swiper";
|
|
51
52
|
export { default as Steps } from "./Steps";
|
|
52
53
|
export { default as Switch } from "./Switch";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trionesdev/antd-mobile-react",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.16",
|
|
4
4
|
"description": "antd mobile react ",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"stylelint": "^16.12.0"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@trionesdev/antd-mobile-base-react": "^0.0.2-beta.
|
|
92
|
+
"@trionesdev/antd-mobile-base-react": "^0.0.2-beta.16",
|
|
93
93
|
"ahooks": "^3.8.4",
|
|
94
94
|
"crypto-js": "^4.2.0",
|
|
95
95
|
"dayjs": "^1.11.19",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
},
|
|
98
98
|
"optionalDependencies": {
|
|
99
99
|
"@trionesdev/antd-mobile-base-react": "workspace:*",
|
|
100
|
-
"@trionesdev/antd-mobile-icons-react": "0.0.2-beta.
|
|
100
|
+
"@trionesdev/antd-mobile-icons-react": "0.0.2-beta.16"
|
|
101
101
|
},
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "c43752ae341cc478de96784586fbf3b36251f4a0"
|
|
103
103
|
}
|