g-ui-core-vue 0.0.2
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/components.d.ts +3 -0
- package/dist/components.js +26 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/plugin.d.ts +2 -0
- package/dist/plugin.js +6 -0
- package/package.json +23 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated vue proxies */
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
export const GButton = /*@__PURE__*/ defineContainer('g-button', undefined, [
|
|
6
|
+
'type',
|
|
7
|
+
'size',
|
|
8
|
+
'plain',
|
|
9
|
+
'text',
|
|
10
|
+
'bg',
|
|
11
|
+
'link',
|
|
12
|
+
'round',
|
|
13
|
+
'circle',
|
|
14
|
+
'dashed',
|
|
15
|
+
'loading',
|
|
16
|
+
'loadingIcon',
|
|
17
|
+
'disabled',
|
|
18
|
+
'icon',
|
|
19
|
+
'autofocus',
|
|
20
|
+
'nativeType',
|
|
21
|
+
'autoInsertSpace',
|
|
22
|
+
'color',
|
|
23
|
+
'dark',
|
|
24
|
+
'tag',
|
|
25
|
+
'label'
|
|
26
|
+
]);
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/dist/plugin.d.ts
ADDED
package/dist/plugin.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "g-ui-core-vue",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "G-UI Vue 3 组件封装",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"dev": "tsc --watch"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@stencil/vue-output-target": "^0.14.0",
|
|
17
|
+
"g-ui-core": "workspace:*",
|
|
18
|
+
"vue": "^3.4.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"typescript": "^6.0.3"
|
|
22
|
+
}
|
|
23
|
+
}
|