@varlet/ui 2.18.3 → 2.18.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.
- package/es/date-picker/src/year-picker-panel.mjs +2 -0
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/snackbar/style/index.mjs +1 -1
- package/es/varlet.esm.js +729 -728
- package/highlight/web-types.en-US.json +1 -1
- package/highlight/web-types.zh-CN.json +1 -1
- package/lib/varlet.cjs.js +480 -479
- package/package.json +7 -7
- package/umd/varlet.js +5 -5
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
} from "vue";
|
|
25
25
|
import { toNumber } from "@varlet/shared";
|
|
26
26
|
import VarButton from "../../button/index.mjs";
|
|
27
|
+
import VarSticky from "../../sticky/index.mjs";
|
|
27
28
|
import PanelHeader from "./panel-header.mjs";
|
|
28
29
|
import { createNamespace } from "../../utils/components.mjs";
|
|
29
30
|
import { onSmartMounted } from "@varlet/use";
|
|
@@ -104,6 +105,7 @@ const __sfc__ = defineComponent({
|
|
|
104
105
|
name: "YearPickerPanel",
|
|
105
106
|
components: {
|
|
106
107
|
VarButton,
|
|
108
|
+
VarSticky,
|
|
107
109
|
PanelHeader
|
|
108
110
|
},
|
|
109
111
|
props: {
|
package/es/index.bundle.mjs
CHANGED
|
@@ -259,7 +259,7 @@ import './tooltip/style/index.mjs'
|
|
|
259
259
|
import './uploader/style/index.mjs'
|
|
260
260
|
import './watermark/style/index.mjs'
|
|
261
261
|
|
|
262
|
-
const version = '2.18.
|
|
262
|
+
const version = '2.18.4'
|
|
263
263
|
|
|
264
264
|
function install(app) {
|
|
265
265
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/index.mjs
CHANGED
|
@@ -172,7 +172,7 @@ export * from './tooltip/index.mjs'
|
|
|
172
172
|
export * from './uploader/index.mjs'
|
|
173
173
|
export * from './watermark/index.mjs'
|
|
174
174
|
|
|
175
|
-
const version = '2.18.
|
|
175
|
+
const version = '2.18.4'
|
|
176
176
|
|
|
177
177
|
function install(app) {
|
|
178
178
|
ActionSheet.install && app.use(ActionSheet)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '../../styles/common.css'
|
|
2
|
-
import '../SnackbarSfc.css'
|
|
3
2
|
import '../../styles/elevation.css'
|
|
4
3
|
import '../../loading/loading.css'
|
|
5
4
|
import '../../button/button.css'
|
|
6
5
|
import '../../icon/icon.css'
|
|
7
6
|
import '../snackbar.css'
|
|
8
7
|
import '../coreSfc.css'
|
|
8
|
+
import '../SnackbarSfc.css'
|