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.
@@ -0,0 +1,3 @@
1
+ import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
2
+ import type { JSX } from 'g-ui-core';
3
+ export declare const GButton: StencilVueComponent<JSX.GButton>;
@@ -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
+ ]);
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export { GButtonPlugin } from './plugin';
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './components';
2
+ export { GButtonPlugin } from './plugin';
@@ -0,0 +1,2 @@
1
+ import { Plugin } from 'vue';
2
+ export declare const GButtonPlugin: Plugin;
package/dist/plugin.js ADDED
@@ -0,0 +1,6 @@
1
+ import { defineCustomElements } from 'g-ui-core/loader';
2
+ export const GButtonPlugin = {
3
+ async install() {
4
+ defineCustomElements();
5
+ }
6
+ };
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
+ }