@varlet/ui 3.3.7 → 3.3.8
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 +1 -2
- package/es/popup/Popup.mjs +1 -2
- package/es/snackbar/index.mjs +1 -1
- package/es/space/Space.mjs +0 -1
- package/es/style.css +1 -1
- package/es/table/table.css +1 -1
- 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/style.css +1 -1
- package/lib/varlet.cjs.js +11 -11
- package/package.json +7 -7
- package/umd/varlet.js +5 -5
package/es/fab/Fab.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createVNode as _createVNode, vShow as _vShow, withDirectives as _withDirectives, mergeProps as _mergeProps } 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.8'
|
|
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.8'
|
|
180
180
|
|
|
181
181
|
function install(app) {
|
|
182
182
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/overlay/Overlay.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { defineComponent, Teleport, Transition } from "vue";
|
|
1
|
+
import { mergeProps as _mergeProps, createVNode as _createVNode } from "vue";
|
|
3
2
|
import { props } from "./props.mjs";
|
|
4
3
|
import { useLock } from "../context/lock.mjs";
|
|
5
4
|
import { useZIndex } from "../context/zIndex.mjs";
|
package/es/popup/Popup.mjs
CHANGED
|
@@ -14,8 +14,7 @@ var __spreadValues = (a, b) => {
|
|
|
14
14
|
}
|
|
15
15
|
return a;
|
|
16
16
|
};
|
|
17
|
-
import {
|
|
18
|
-
import { defineComponent, watch, Transition, Teleport, computed } from "vue";
|
|
17
|
+
import { createVNode as _createVNode, vShow as _vShow, mergeProps as _mergeProps, withDirectives as _withDirectives } from "vue";
|
|
19
18
|
import { props } from "./props.mjs";
|
|
20
19
|
import { useLock } from "../context/lock.mjs";
|
|
21
20
|
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 { mergeProps as _mergeProps, createVNode as _createVNode } 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