@varlet/ui 3.3.8 → 3.3.9
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/es/fab/Fab.mjs +1 -1
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/overlay/Overlay.mjs +2 -1
- package/es/popup/Popup.mjs +2 -1
- package/es/snackbar/index.mjs +1 -1
- package/es/space/Space.mjs +1 -0
- package/es/varlet.esm.js +659 -659
- package/highlight/web-types.en-US.json +1 -1
- package/highlight/web-types.zh-CN.json +1 -1
- package/lib/varlet.cjs.js +11 -11
- package/package.json +7 -7
- package/umd/varlet.js +4 -4
package/es/fab/Fab.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { mergeProps as _mergeProps, withDirectives as _withDirectives, vShow as _vShow, createVNode as _createVNode } from "vue";
|
|
2
2
|
import Button from "../button/index.mjs";
|
|
3
3
|
import Icon from "../icon/index.mjs";
|
|
4
4
|
import Drag from "../drag/index.mjs";
|
package/es/index.bundle.mjs
CHANGED
|
@@ -265,7 +265,7 @@ import './tooltip/style/index.mjs'
|
|
|
265
265
|
import './uploader/style/index.mjs'
|
|
266
266
|
import './watermark/style/index.mjs'
|
|
267
267
|
|
|
268
|
-
const version = '3.3.
|
|
268
|
+
const version = '3.3.9'
|
|
269
269
|
|
|
270
270
|
function install(app) {
|
|
271
271
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/index.mjs
CHANGED
|
@@ -176,7 +176,7 @@ export * from './tooltip/index.mjs'
|
|
|
176
176
|
export * from './uploader/index.mjs'
|
|
177
177
|
export * from './watermark/index.mjs'
|
|
178
178
|
|
|
179
|
-
const version = '3.3.
|
|
179
|
+
const version = '3.3.9'
|
|
180
180
|
|
|
181
181
|
function install(app) {
|
|
182
182
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/overlay/Overlay.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createVNode as _createVNode, mergeProps as _mergeProps } from "vue";
|
|
2
|
+
import { defineComponent, Teleport, Transition } from "vue";
|
|
2
3
|
import { props } from "./props.mjs";
|
|
3
4
|
import { useLock } from "../context/lock.mjs";
|
|
4
5
|
import { useZIndex } from "../context/zIndex.mjs";
|
package/es/popup/Popup.mjs
CHANGED
|
@@ -14,7 +14,8 @@ var __spreadValues = (a, b) => {
|
|
|
14
14
|
}
|
|
15
15
|
return a;
|
|
16
16
|
};
|
|
17
|
-
import {
|
|
17
|
+
import { withDirectives as _withDirectives, mergeProps as _mergeProps, vShow as _vShow, createVNode as _createVNode } from "vue";
|
|
18
|
+
import { defineComponent, watch, Transition, Teleport, computed } from "vue";
|
|
18
19
|
import { props } from "./props.mjs";
|
|
19
20
|
import { useLock } from "../context/lock.mjs";
|
|
20
21
|
import { useZIndex } from "../context/zIndex.mjs";
|
package/es/snackbar/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var __spreadValues = (a, b) => {
|
|
|
14
14
|
}
|
|
15
15
|
return a;
|
|
16
16
|
};
|
|
17
|
-
import {
|
|
17
|
+
import { createVNode as _createVNode, mergeProps as _mergeProps } from "vue";
|
|
18
18
|
import VarSnackbarCore from "./core.mjs";
|
|
19
19
|
import VarSnackbar from "./Snackbar.mjs";
|
|
20
20
|
import context from "../context/index.mjs";
|
package/es/space/Space.mjs
CHANGED