@ddwl/ddwl-ui 1.1.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ddwl/ddwl-ui",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "private": false,
5
5
  "main": "src/main.js",
6
6
  "style": "lib/theme/index.css",
@@ -201,7 +201,7 @@ export default {
201
201
  position: fixed;
202
202
  top: 0;
203
203
  left: 0;
204
- z-index: 1000;
204
+ z-index: 99999;
205
205
 
206
206
  .box {
207
207
  position: fixed;
@@ -1,14 +0,0 @@
1
- import previewVue from './index.vue'
2
-
3
- export default {
4
- install (Vue) {
5
- Vue.prototype.$preview = ({ defaultIndex = 0, list = [] }) => {
6
- const Preview = Vue.extend(previewVue)
7
- const instance = new Preview()
8
- document.body.appendChild(instance.$mount().$el)
9
- instance.value = true
10
- instance.defaultIndex = defaultIndex
11
- instance.list = list
12
- }
13
- }
14
- }