@fox-js/foxui-pc 4.1.0 → 4.1.1-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/dist/index.cjs.js +4 -4
- package/dist/index.esm.js +3270 -3312
- package/dist/index.umd.js +5 -5
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +10 -1
- package/package.json +5 -4
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -61,6 +61,9 @@ import { ElMain as FoxMain } from './base';
|
|
|
61
61
|
import { ElMenu as FoxMenu } from './base';
|
|
62
62
|
import { ElMenuItem as FoxMenuItem } from './base';
|
|
63
63
|
import { ElMenuItemGroup as FoxMenuItemGroup } from './base';
|
|
64
|
+
import { ElMessage as FoxMessage } from './base';
|
|
65
|
+
import { ElMessageBox as FoxMessageBox } from './base';
|
|
66
|
+
import { ElNotification as FoxNotification } from './base';
|
|
64
67
|
import { ElOption as FoxOption } from './base';
|
|
65
68
|
import { ElOptionGroup as FoxOptionGroup } from './base';
|
|
66
69
|
import { ElPageHeader as FoxPageHeader } from './base';
|
|
@@ -911,6 +914,12 @@ export { FoxMenuItem }
|
|
|
911
914
|
|
|
912
915
|
export { FoxMenuItemGroup }
|
|
913
916
|
|
|
917
|
+
export { FoxMessage }
|
|
918
|
+
|
|
919
|
+
export { FoxMessageBox }
|
|
920
|
+
|
|
921
|
+
export { FoxNotification }
|
|
922
|
+
|
|
914
923
|
export { FoxOption }
|
|
915
924
|
|
|
916
925
|
export { FoxOptionGroup }
|
|
@@ -1195,7 +1204,7 @@ export declare const isDate: (val: unknown) => val is Date;
|
|
|
1195
1204
|
* @param v
|
|
1196
1205
|
* @returns
|
|
1197
1206
|
*/
|
|
1198
|
-
export declare const isEmptyString: (v: unknown) => v is "";
|
|
1207
|
+
export declare const isEmptyString: (v: unknown) => v is null | undefined | "";
|
|
1199
1208
|
|
|
1200
1209
|
/**
|
|
1201
1210
|
* 判断两个对象是否一致
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fox-js/foxui-pc",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.1-1",
|
|
5
5
|
"description": "FoxUI PC端组件库",
|
|
6
6
|
"author": "jiangcheng",
|
|
7
7
|
"main": "./dist/index.umd.js",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"style": "./dist/style.css",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
+
"types": "./dist/types/index.d.ts",
|
|
13
14
|
"import": "./dist/index.esm.js",
|
|
14
15
|
"require": "./dist/index.umd.js"
|
|
15
16
|
},
|
|
@@ -37,8 +38,8 @@
|
|
|
37
38
|
"license": "",
|
|
38
39
|
"repository": "",
|
|
39
40
|
"peerDependencies": {
|
|
40
|
-
"@element-plus/icons-vue": ">=2.
|
|
41
|
+
"@element-plus/icons-vue": ">=2.3.1",
|
|
41
42
|
"dayjs": ">=1.0.0",
|
|
42
|
-
"element-plus": ">=2.
|
|
43
|
+
"element-plus": ">=2.7.6"
|
|
43
44
|
}
|
|
44
|
-
}
|
|
45
|
+
}
|