@newview/base-vue 0.0.2 → 0.0.4

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/types/prop.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/base-vue",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "author": "newview",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,8 +32,8 @@
32
32
  "p": "npm publish --access public"
33
33
  },
34
34
  "dependencies": {
35
- "@newview/infrastructure": "^0.0.0",
36
- "@newview/tools": "^0.0.0",
35
+ "@newview/infrastructure": "^0.0.3",
36
+ "@newview/tools": "^0.0.1",
37
37
  "axios": "^1.2.1",
38
38
  "mitt": "^3.0.0",
39
39
  "sass": "^1.56.2",
package/types/prop.d.ts CHANGED
@@ -19,7 +19,8 @@ export interface ModalProp {
19
19
  /**
20
20
  * 层级
21
21
  */
22
- 'z-index'?: number
22
+ 'z-index'?: number,
23
+ closable?: boolean
23
24
  }
24
25
 
25
26
  export interface MessageProp {