@varlet/ui 2.13.6 → 2.14.0
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/index.bundle.mjs +9 -3
- package/es/index.mjs +8 -3
- package/es/style.css +1 -1
- package/es/style.mjs +1 -0
- package/es/themes/dark/index.mjs +2 -1
- package/es/themes/dark/watermark.mjs +3 -0
- package/es/utils/jest.mjs +16 -0
- package/es/varlet.esm.js +4717 -4480
- package/es/watermark/Watermark.mjs +163 -0
- package/es/watermark/WatermarkSfc.css +0 -0
- package/es/watermark/index.mjs +5 -0
- package/es/watermark/props.mjs +57 -0
- package/es/watermark/style/index.mjs +2 -0
- package/es/watermark/watermark.css +1 -0
- package/highlight/web-types.en-US.json +144 -2
- package/highlight/web-types.zh-CN.json +130 -1
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +1517 -1225
- package/package.json +6 -6
- package/types/index.d.ts +2 -0
- package/types/watermark.d.ts +40 -0
- package/umd/varlet.js +5 -5
package/es/index.bundle.mjs
CHANGED
|
@@ -79,6 +79,7 @@ import Themes from './themes/index.mjs'
|
|
|
79
79
|
import TimePicker from './time-picker/index.mjs'
|
|
80
80
|
import Tooltip from './tooltip/index.mjs'
|
|
81
81
|
import Uploader from './uploader/index.mjs'
|
|
82
|
+
import Watermark from './watermark/index.mjs'
|
|
82
83
|
|
|
83
84
|
export * from './action-sheet/index.mjs'
|
|
84
85
|
export * from './app-bar/index.mjs'
|
|
@@ -161,6 +162,7 @@ export * from './themes/index.mjs'
|
|
|
161
162
|
export * from './time-picker/index.mjs'
|
|
162
163
|
export * from './tooltip/index.mjs'
|
|
163
164
|
export * from './uploader/index.mjs'
|
|
165
|
+
export * from './watermark/index.mjs'
|
|
164
166
|
|
|
165
167
|
import './action-sheet/style/index.mjs'
|
|
166
168
|
import './app-bar/style/index.mjs'
|
|
@@ -243,8 +245,9 @@ import './themes/style/index.mjs'
|
|
|
243
245
|
import './time-picker/style/index.mjs'
|
|
244
246
|
import './tooltip/style/index.mjs'
|
|
245
247
|
import './uploader/style/index.mjs'
|
|
248
|
+
import './watermark/style/index.mjs'
|
|
246
249
|
|
|
247
|
-
const version = '2.
|
|
250
|
+
const version = '2.14.0'
|
|
248
251
|
|
|
249
252
|
function install(app) {
|
|
250
253
|
ActionSheet.install && app.use(ActionSheet)
|
|
@@ -328,6 +331,7 @@ function install(app) {
|
|
|
328
331
|
TimePicker.install && app.use(TimePicker)
|
|
329
332
|
Tooltip.install && app.use(Tooltip)
|
|
330
333
|
Uploader.install && app.use(Uploader)
|
|
334
|
+
Watermark.install && app.use(Watermark)
|
|
331
335
|
}
|
|
332
336
|
|
|
333
337
|
export {
|
|
@@ -413,7 +417,8 @@ export {
|
|
|
413
417
|
Themes,
|
|
414
418
|
TimePicker,
|
|
415
419
|
Tooltip,
|
|
416
|
-
Uploader
|
|
420
|
+
Uploader,
|
|
421
|
+
Watermark
|
|
417
422
|
}
|
|
418
423
|
|
|
419
424
|
export default {
|
|
@@ -499,5 +504,6 @@ export default {
|
|
|
499
504
|
Themes,
|
|
500
505
|
TimePicker,
|
|
501
506
|
Tooltip,
|
|
502
|
-
Uploader
|
|
507
|
+
Uploader,
|
|
508
|
+
Watermark
|
|
503
509
|
}
|
package/es/index.mjs
CHANGED
|
@@ -79,6 +79,7 @@ import Themes from './themes/index.mjs'
|
|
|
79
79
|
import TimePicker from './time-picker/index.mjs'
|
|
80
80
|
import Tooltip from './tooltip/index.mjs'
|
|
81
81
|
import Uploader from './uploader/index.mjs'
|
|
82
|
+
import Watermark from './watermark/index.mjs'
|
|
82
83
|
|
|
83
84
|
export * from './action-sheet/index.mjs'
|
|
84
85
|
export * from './app-bar/index.mjs'
|
|
@@ -161,8 +162,9 @@ export * from './themes/index.mjs'
|
|
|
161
162
|
export * from './time-picker/index.mjs'
|
|
162
163
|
export * from './tooltip/index.mjs'
|
|
163
164
|
export * from './uploader/index.mjs'
|
|
165
|
+
export * from './watermark/index.mjs'
|
|
164
166
|
|
|
165
|
-
const version = '2.
|
|
167
|
+
const version = '2.14.0'
|
|
166
168
|
|
|
167
169
|
function install(app) {
|
|
168
170
|
ActionSheet.install && app.use(ActionSheet)
|
|
@@ -246,6 +248,7 @@ function install(app) {
|
|
|
246
248
|
TimePicker.install && app.use(TimePicker)
|
|
247
249
|
Tooltip.install && app.use(Tooltip)
|
|
248
250
|
Uploader.install && app.use(Uploader)
|
|
251
|
+
Watermark.install && app.use(Watermark)
|
|
249
252
|
}
|
|
250
253
|
|
|
251
254
|
export {
|
|
@@ -331,7 +334,8 @@ export {
|
|
|
331
334
|
Themes,
|
|
332
335
|
TimePicker,
|
|
333
336
|
Tooltip,
|
|
334
|
-
Uploader
|
|
337
|
+
Uploader,
|
|
338
|
+
Watermark
|
|
335
339
|
}
|
|
336
340
|
|
|
337
341
|
export default {
|
|
@@ -417,5 +421,6 @@ export default {
|
|
|
417
421
|
Themes,
|
|
418
422
|
TimePicker,
|
|
419
423
|
Tooltip,
|
|
420
|
-
Uploader
|
|
424
|
+
Uploader,
|
|
425
|
+
Watermark
|
|
421
426
|
}
|