@ipa-community/element-plus 0.0.2 → 0.0.3
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 +7 -4
- package/components.d.ts +1 -0
- package/lib/HelloWorld-Aj-MDO0D.js +872 -0
- package/lib/HelloWorld-CQxaM9pS.cjs +1 -0
- package/lib/HelloWorld.css +1 -0
- package/lib/_plugin-vue_export-helper-BHFhmbuH.cjs +1 -0
- package/lib/_plugin-vue_export-helper-CHgC5LLL.js +9 -0
- package/lib/base-8KXu3iRZ.js +1648 -0
- package/lib/base-DRB0p7jn.cjs +8 -0
- package/lib/base.css +1 -0
- package/lib/components/ElAuthCode/index.vue.d.ts +53 -0
- package/lib/components/ElTablePlus/index.vue.d.ts +3 -3
- package/lib/components/ElTablePlus/types.d.ts +1 -1
- package/lib/components/index.d.ts +61 -6
- package/lib/{index-Dqu6455K.js → index-8crKazUF.js} +1 -1
- package/lib/{index-CUQIwkb8.cjs → index-Bl8VR7w8.cjs} +1 -1
- package/lib/index-Bmh-3jKH.cjs +13 -0
- package/lib/{index-DD0ylEu2.js → index-C9rxMCZ2.js} +1580 -1580
- package/lib/index-C_s6bFgm.cjs +6 -0
- package/lib/index-DaeDazhE.js +84 -0
- package/lib/index-FUqkHp7t.js +3784 -0
- package/lib/index-u8W1XFVy.cjs +1 -0
- package/lib/index.cjs +1 -1
- package/lib/index.css +1 -1
- package/lib/index.es.js +11 -10
- package/lib/index.umd.js +14 -42
- package/lib/index2.css +1 -1
- package/lib/index3.css +1 -0
- package/lib/{table-Dw-Nh_fr.js → table-LdapiE0J.js} +1 -1
- package/lib/{table-pPX_scdG.cjs → table-forQfWBb.cjs} +1 -1
- package/package.json +1 -1
- package/lib/index-B64Elx8V.cjs +0 -41
- package/lib/index-CMrOepdZ.js +0 -11923
- package/lib/index-DpfpHOHg.cjs +0 -13
- package/lib/types/page.d.ts +0 -25
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @ipa-community/element-plus
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
3
|
+
based on [vue-component-library](https://github.com/ipa-community/vue-component-library)
|
|
6
4
|
|
|
7
5
|
1. [unplugin-vue-component](https://github.com/unplugin/unplugin-vue-components#readme)
|
|
8
6
|
2. [unplugin-auto-import](https://github.com/unplugin/unplugin-auto-import)
|
|
@@ -85,3 +83,8 @@ or test release
|
|
|
85
83
|
```bash
|
|
86
84
|
bun run release --dry-run
|
|
87
85
|
```
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## TODO
|
|
89
|
+
|
|
90
|
+
- [ ] decrease package size
|
package/components.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export {}
|
|
|
11
11
|
/* prettier-ignore */
|
|
12
12
|
declare module 'vue' {
|
|
13
13
|
export interface GlobalComponents {
|
|
14
|
+
ElAuthCode: typeof import('./src/components/ElAuthCode/index.vue')['default']
|
|
14
15
|
ElAutoResizer: typeof import('element-plus/es')['ElAutoResizer']
|
|
15
16
|
ElButton: typeof import('element-plus/es')['ElButton']
|
|
16
17
|
ElEmpty: typeof import('element-plus/es')['ElEmpty']
|