@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 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({
@@ -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-alpha.1676477419346'
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-alpha.1676477419346'
155
+ const version = '2.8.0'
156
156
 
157
157
  function install(app) {
158
158
  ActionSheet.install && app.use(ActionSheet)
@@ -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);
@@ -0,0 +1,3 @@
1
+ export default {
2
+ '--paper-background': '#303030'
3
+ };