@mi-avalon/libs 0.0.3 → 0.0.5
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/components/MyButton/index.js +185 -8500
- package/dist/components/index.js +4 -2
- package/dist/index.js +7 -5
- package/package.json +2 -3
package/dist/components/index.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { MyButton as
|
|
2
|
-
import { formatCurrency as
|
|
1
|
+
import { MyButton as e } from "./components/MyButton/index.js";
|
|
2
|
+
import { formatCurrency as p, formatDate as a } from "./utils/format.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "antd";
|
|
3
5
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
e as MyButton,
|
|
7
|
+
p as formatCurrency,
|
|
8
|
+
a as formatDate
|
|
7
9
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mi-avalon/libs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "A React component and utils library",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "vite build && tsc --emitDeclarationOnly"
|
|
18
|
-
"publish": "npm publish"
|
|
17
|
+
"build": "vite build && tsc --emitDeclarationOnly"
|
|
19
18
|
},
|
|
20
19
|
"peerDependencies": {
|
|
21
20
|
"antd": "^5.0.0",
|