gi-component 0.0.30 → 0.0.32
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/dist/gi.css +1 -1
- package/dist/index.d.ts +14729 -177
- package/dist/index.es.js +6319 -313
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -1
- package/packages/components/dialog/src/dialog.ts +3 -0
- package/packages/components.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gi-component",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.32",
|
|
5
5
|
"description": "Vue3中基于Element Plus二次封装基础组件库",
|
|
6
6
|
"author": "lin",
|
|
7
7
|
"license": "MIT",
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"二次封装组件",
|
|
18
18
|
"封装组件"
|
|
19
19
|
],
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"packages/components/dialog/src/dialog.ts"
|
|
22
|
+
],
|
|
20
23
|
"main": "dist/index.umd.js",
|
|
21
24
|
"module": "dist/index.es.js",
|
|
22
25
|
"types": "dist/index.d.ts",
|
package/packages/components.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Generated by unplugin-vue-components
|
|
4
4
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
5
5
|
// biome-ignore lint: disable
|
|
6
|
-
export {
|
|
6
|
+
export {}
|
|
7
7
|
|
|
8
8
|
/* prettier-ignore */
|
|
9
9
|
declare module 'vue' {
|
|
@@ -11,8 +11,9 @@ declare module 'vue' {
|
|
|
11
11
|
GiButton: typeof import('./components/button/src/button.vue')['default']
|
|
12
12
|
GiCard: typeof import('./components/card/src/card.vue')['default']
|
|
13
13
|
GiDialog: typeof import('./components/dialog/src/dialog.vue')['default']
|
|
14
|
-
|
|
14
|
+
GiDialogContent: typeof import('./components/dialog/src/dialog-content.vue')['default']
|
|
15
15
|
GiDot: typeof import('./components/dot/src/dot.vue')['default']
|
|
16
|
+
GiDrawer: typeof import('./components/drawer/src/drawer.vue')['default']
|
|
16
17
|
GiEditTable: typeof import('./components/edit-table/src/edit-table.vue')['default']
|
|
17
18
|
GiForm: typeof import('./components/form/src/form.vue')['default']
|
|
18
19
|
GiGrid: typeof import('./components/grid/src/grid.vue')['default']
|