@zyzgroup/core-vue 0.0.6 → 0.0.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/README.md +8 -1
- package/ce/style.css +1 -0
- package/ce/yz_custom_element.iife.js +48 -45
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +13053 -11496
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +48 -45
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +24 -24
- package/dist/zyzgroup_core_vue.js +10549 -9158
- package/dist/zyzgroup_core_vue.umd.cjs +24 -24
- package/package.json +10 -4
- package/types/App.vue.d.ts +3 -0
- package/types/components/Button.ce.vue.d.ts +86 -0
- package/types/components/Button.vue.d.ts +86 -0
- package/types/components/Dialog.ce.vue.d.ts +82 -0
- package/types/components/Dialog.vue.d.ts +82 -0
- package/types/components/DialogHeadlessUI.ce.vue.d.ts +62 -0
- package/types/components/DialogHeadlessUI.vue.d.ts +54 -0
- package/types/components/Icon.ce.vue.d.ts +0 -2
- package/types/components/Icon.vue.d.ts +0 -2
- package/types/components/Loading.ce.vue.d.ts +23 -0
- package/types/components/Loading.vue.d.ts +23 -0
- package/types/components/MobileLayout.ce.vue.d.ts +76 -0
- package/types/components/MobileLayout.vue.d.ts +76 -0
- package/types/lib.d.ts +4 -1
- package/dist/Icon.ce.vue +0 -57
- package/dist/Icon.vue +0 -57
package/README.md
CHANGED
|
@@ -5,4 +5,11 @@ import { Icon } from '@zyzgroup/core-vue'
|
|
|
5
5
|
// 组件中使用的库需要另外安装
|
|
6
6
|
import Icon from '@zyzgroup/core-vue/Icon.vue'
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
`npm run ce`
|
|
9
|
+
/src/webcomponent.js
|
|
10
|
+
/apps/webcomponent.html
|
|
11
|
+
https://cdn.jsdelivr.net/npm/@zyzgroup/core-vue@latest/ce/yz_custom_element.iife.js
|
|
12
|
+
|
|
13
|
+
/src/lib.ts
|
|
14
|
+
|
|
15
|
+
```
|
package/ce/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.icon[data-v-8789b4ce]{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;font-size:1em}@media only screen and (max-width: 300px){html{font-size:40px}}@media only screen and (min-width: 301px) and (max-width: 330px){html{font-size:44px}}@media only screen and (min-width: 331px) and (max-width: 375px){html{font-size:50px}}@media only screen and (min-width: 376px) and (max-width: 405px){html{font-size:54px}}@media only screen and (min-width: 406px) and (max-width: 450px){html{font-size:60px}}@media only screen and (min-width: 451px) and (max-width: 480px){html{font-size:64px}}@media only screen and (min-width: 481px) and (max-width: 525px){html{font-size:70px}}@media only screen and (min-width: 526px) and (max-width: 555px){html{font-size:74px}}@media only screen and (min-width: 556px) and (max-width: 600px){html{font-size:80px}}@media only screen and (min-width: 601px) and (max-width: 640px){html{font-size:84px}}@media only screen and (min-width: 641px) and (max-width: 675px){html{font-size:90px}}@media only screen and (min-width: 676px) and (max-width: 705px){html{font-size:94px}}@media only screen and (min-width: 706px) and (max-width: 750px){html{font-size:100px}}@media only screen and (min-width: 751px){html{font-size:100px}}.button[data-v-2ca78297]{box-sizing:border-box;display:inline-flex;justify-content:center;align-items:center;z-index:0}.label[data-v-2ca78297]{display:inline-flex;justify-content:center;align-items:center}
|