bee-front-components 1.0.0 → 1.0.1
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/lib/index.d.ts +19 -0
- package/lib/index.js +19 -0
- package/package.json +4 -1
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export { default as BaseModal } from "./components/BaseModal";
|
|
2
|
+
export { Button, ButtonPermission } from "./components/Buttons";
|
|
3
|
+
export { default as ContentHeader } from "./components/ContentHeader";
|
|
4
|
+
export { default as Empty } from "./components/Empty";
|
|
5
|
+
export { default as ExcelExport } from "./components/ExcelExport";
|
|
6
|
+
export { Modal } from "./components/Modal";
|
|
7
|
+
export { default as PageHeader } from "./components/PageHeader";
|
|
8
|
+
export { default as PdfViewer } from "./components/PdfViewer";
|
|
9
|
+
export { default as QueryBar } from "./components/QueryBar/TableQueryBar";
|
|
10
|
+
export { default as RemainDay } from "./components/RemainDay";
|
|
11
|
+
export { default as Scanner } from "./components/Scanner";
|
|
12
|
+
export { default as StatusTab } from "./components/StatusTab";
|
|
13
|
+
export { default as StatusTag } from "./components/StatusTag";
|
|
14
|
+
export { default as StepProgress } from "./components/StepProgress";
|
|
15
|
+
export { default as Table } from "./components/Table";
|
|
16
|
+
export { default as TableOperationColumn } from "./components/TableOperationColumn";
|
|
17
|
+
export { Tabs, TabPane } from "./components/Tabs";
|
|
18
|
+
export { FileUpload, BatchUpload, DraggerUpload } from "./components/Upload";
|
|
19
|
+
export { default as VipFlag } from "./components/VipFlag";
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export { default as BaseModal } from "./components/BaseModal";
|
|
2
|
+
export { Button, ButtonPermission } from "./components/Buttons";
|
|
3
|
+
export { default as ContentHeader } from "./components/ContentHeader";
|
|
4
|
+
export { default as Empty } from "./components/Empty";
|
|
5
|
+
export { default as ExcelExport } from "./components/ExcelExport";
|
|
6
|
+
export { Modal } from "./components/Modal";
|
|
7
|
+
export { default as PageHeader } from "./components/PageHeader";
|
|
8
|
+
export { default as PdfViewer } from "./components/PdfViewer";
|
|
9
|
+
export { default as QueryBar } from "./components/QueryBar/TableQueryBar";
|
|
10
|
+
export { default as RemainDay } from "./components/RemainDay";
|
|
11
|
+
export { default as Scanner } from "./components/Scanner";
|
|
12
|
+
export { default as StatusTab } from "./components/StatusTab";
|
|
13
|
+
export { default as StatusTag } from "./components/StatusTag";
|
|
14
|
+
export { default as StepProgress } from "./components/StepProgress";
|
|
15
|
+
export { default as Table } from "./components/Table";
|
|
16
|
+
export { default as TableOperationColumn } from "./components/TableOperationColumn";
|
|
17
|
+
export { Tabs, TabPane } from "./components/Tabs";
|
|
18
|
+
export { FileUpload, BatchUpload, DraggerUpload } from "./components/Upload";
|
|
19
|
+
export { default as VipFlag } from "./components/VipFlag";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bee-front-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "cross-env UMI_ENV=dev node ../../node_modules/umi/bin/umi.js dev",
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"!lib/config/babel-config.js",
|
|
26
26
|
"!.umi-production"
|
|
27
27
|
],
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
28
31
|
"peerDependencies": {
|
|
29
32
|
"@hzero-front-ui/cfg": "*",
|
|
30
33
|
"axios": "*",
|