@varlet/ui 2.8.0-alpha.1676477419346 → 2.8.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/README.md +2 -0
- package/README.zh-CN.md +2 -0
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/themes/dark/index.mjs +2 -1
- package/es/themes/dark/paper.mjs +3 -0
- package/es/varlet.esm.js +205 -203
- package/highlight/web-types.en-US.json +1 -1
- package/highlight/web-types.zh-CN.json +1 -1
- package/lib/varlet.cjs.js +5 -2
- package/package.json +5 -5
- package/umd/varlet.js +2 -2
package/README.md
CHANGED
|
@@ -50,6 +50,8 @@ Varlet is a Material design mobile component library developed based on `Vue3`,
|
|
|
50
50
|
```html
|
|
51
51
|
<div id="app"></div>
|
|
52
52
|
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
|
|
53
|
+
<!-- Desktop Adaptation -->
|
|
54
|
+
<script src="https://cdn.jsdelivr.net/npm/@varlet/touch-emulator/iife.js"></script>
|
|
53
55
|
<script src="https://cdn.jsdelivr.net/npm/@varlet/ui/umd/varlet.js"></script>
|
|
54
56
|
<script>
|
|
55
57
|
const app = Vue.createApp({
|
package/README.zh-CN.md
CHANGED
|
@@ -50,6 +50,8 @@ Varlet 是一个基于 `Vue3` 开发的 Material 风格移动端组件库,全
|
|
|
50
50
|
```html
|
|
51
51
|
<div id="app"></div>
|
|
52
52
|
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
|
|
53
|
+
<!-- 桌面端兼容 -->
|
|
54
|
+
<script src="https://cdn.jsdelivr.net/npm/@varlet/touch-emulator/iife.js"></script>
|
|
53
55
|
<script src="https://cdn.jsdelivr.net/npm/@varlet/ui/umd/varlet.js"></script>
|
|
54
56
|
<script>
|
|
55
57
|
const app = Vue.createApp({
|
package/es/index.bundle.mjs
CHANGED
|
@@ -229,7 +229,7 @@ import './time-picker/style/index.mjs'
|
|
|
229
229
|
import './tooltip/style/index.mjs'
|
|
230
230
|
import './uploader/style/index.mjs'
|
|
231
231
|
|
|
232
|
-
const version = '2.8.0
|
|
232
|
+
const version = '2.8.0'
|
|
233
233
|
|
|
234
234
|
function install(app) {
|
|
235
235
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/index.mjs
CHANGED
|
@@ -152,7 +152,7 @@ export * from './time-picker/index.mjs'
|
|
|
152
152
|
export * from './tooltip/index.mjs'
|
|
153
153
|
export * from './uploader/index.mjs'
|
|
154
154
|
|
|
155
|
-
const version = '2.8.0
|
|
155
|
+
const version = '2.8.0'
|
|
156
156
|
|
|
157
157
|
function install(app) {
|
|
158
158
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/themes/dark/index.mjs
CHANGED
|
@@ -32,6 +32,7 @@ import bottomNavigation from './bottomNavigation.mjs';
|
|
|
32
32
|
import bottomNavigationItem from './bottomNavigationItem.mjs';
|
|
33
33
|
import menu from './menu.mjs';
|
|
34
34
|
import breadcrumb from './breadcrumb.mjs';
|
|
35
|
+
import paper from './paper.mjs';
|
|
35
36
|
import avatar from './avatar.mjs';
|
|
36
37
|
export default _extends({
|
|
37
38
|
// common
|
|
@@ -44,4 +45,4 @@ export default _extends({
|
|
|
44
45
|
'--color-danger': '#ef5350',
|
|
45
46
|
'--color-disabled': '#404040',
|
|
46
47
|
'--color-text-disabled': '#757575'
|
|
47
|
-
}, button, cell, card, timePicker, datePicker, skeleton, tabs, tab, popup, dialog, actionSheet, chip, badge, uploader, collapse, pullRefresh, switchThemes, steps, pagination, table, input, select, radio, checkbox, divider, picker, appBar, bottomNavigation, bottomNavigationItem, menu, result, breadcrumb, avatar);
|
|
48
|
+
}, button, cell, card, timePicker, datePicker, skeleton, tabs, tab, popup, dialog, actionSheet, chip, badge, uploader, collapse, pullRefresh, switchThemes, steps, pagination, table, input, select, radio, checkbox, divider, picker, appBar, bottomNavigation, bottomNavigationItem, menu, result, breadcrumb, paper, avatar);
|