gzhr-ui 1.0.0
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/es/button-BSV1RhB8.mjs +18 -0
- package/dist/es/icon-PcypvbAz.mjs +55 -0
- package/dist/es/index.mjs +12 -0
- package/dist/es/table-C2TjmQTe.mjs +2433 -0
- package/dist/es/utils-CRsNpc-W.mjs +108 -0
- package/dist/es/vendor-JYnb-2AB.mjs +51031 -0
- package/dist/index.css +1 -0
- package/dist/types/components/button/Button.vue.d.ts +2 -0
- package/dist/types/components/button/demo.d.ts +12 -0
- package/dist/types/components/button/index.d.ts +13 -0
- package/dist/types/components/icon/icon.vue.d.ts +21 -0
- package/dist/types/components/icon/index.d.ts +28 -0
- package/dist/types/components/index.d.ts +3 -0
- package/dist/types/components/table/index.d.ts +8332 -0
- package/dist/types/components/table/src/FilterRows.vue.d.ts +29 -0
- package/dist/types/components/table/src/cell-render/index.d.ts +2 -0
- package/dist/types/components/table/src/edit-render/index.d.ts +2 -0
- package/dist/types/components/table/src/index.vue.d.ts +2791 -0
- package/dist/types/components/table/src/paging.vue.d.ts +39 -0
- package/dist/types/core/index.d.ts +3 -0
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/hooks/useElementClientSize.d.ts +10 -0
- package/dist/types/utils/index.d.ts +3 -0
- package/dist/types/utils/install.d.ts +8 -0
- package/dist/types/utils/tool.d.ts +47 -0
- package/dist/types/utils/useElementClientSize.d.ts +18 -0
- package/dist/umd/index.css +1 -0
- package/dist/umd/index.umd.js +26 -0
- package/package.json +38 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const HrButton: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
3
|
+
P: {};
|
|
4
|
+
B: {};
|
|
5
|
+
D: {};
|
|
6
|
+
C: {};
|
|
7
|
+
M: {};
|
|
8
|
+
Defaults: {};
|
|
9
|
+
}, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
10
|
+
__isFragment?: never;
|
|
11
|
+
__isTeleport?: never;
|
|
12
|
+
__isSuspense?: never;
|
|
13
|
+
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IconifyIcon } from '@iconify/vue';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
|
3
|
+
/** 图标 */
|
|
4
|
+
icon: string | IconifyIcon;
|
|
5
|
+
/** 颜色 */
|
|
6
|
+
color?: string;
|
|
7
|
+
/** 图标大小 */
|
|
8
|
+
size?: string | number;
|
|
9
|
+
/** svg图标样式 */
|
|
10
|
+
svgClass?: string;
|
|
11
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
+
/** 图标 */
|
|
13
|
+
icon: string | IconifyIcon;
|
|
14
|
+
/** 颜色 */
|
|
15
|
+
color?: string;
|
|
16
|
+
/** 图标大小 */
|
|
17
|
+
size?: string | number;
|
|
18
|
+
/** svg图标样式 */
|
|
19
|
+
svgClass?: string;
|
|
20
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const HrIcon: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
icon: string | import('@iconify/vue/dist/iconify.js').IconifyIcon;
|
|
4
|
+
color?: string;
|
|
5
|
+
size?: string | number;
|
|
6
|
+
svgClass?: string;
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
8
|
+
P: {};
|
|
9
|
+
B: {};
|
|
10
|
+
D: {};
|
|
11
|
+
C: {};
|
|
12
|
+
M: {};
|
|
13
|
+
Defaults: {};
|
|
14
|
+
}, Readonly<{
|
|
15
|
+
icon: string | import('@iconify/vue/dist/iconify.js').IconifyIcon;
|
|
16
|
+
color?: string;
|
|
17
|
+
size?: string | number;
|
|
18
|
+
svgClass?: string;
|
|
19
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
20
|
+
__isFragment?: never;
|
|
21
|
+
__isTeleport?: never;
|
|
22
|
+
__isSuspense?: never;
|
|
23
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
24
|
+
icon: string | import('@iconify/vue/dist/iconify.js').IconifyIcon;
|
|
25
|
+
color?: string;
|
|
26
|
+
size?: string | number;
|
|
27
|
+
svgClass?: string;
|
|
28
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
|