tool_ui1 0.1.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/affix/Affix.vue.d.ts +29 -0
- package/dist/affix/Affix.vue.d.ts.map +1 -0
- package/dist/affix/index.d.ts +49 -0
- package/dist/affix/index.d.ts.map +1 -0
- package/dist/avatar/Avatar.vue.d.ts +29 -0
- package/dist/avatar/Avatar.vue.d.ts.map +1 -0
- package/dist/avatar/index.d.ts +49 -0
- package/dist/avatar/index.d.ts.map +1 -0
- package/dist/button/Button.vue.d.ts +56 -0
- package/dist/button/Button.vue.d.ts.map +1 -0
- package/dist/button/index.d.ts +126 -0
- package/dist/button/index.d.ts.map +1 -0
- package/dist/card/Card.vue.d.ts +24 -0
- package/dist/card/Card.vue.d.ts.map +1 -0
- package/dist/card/index.d.ts +32 -0
- package/dist/card/index.d.ts.map +1 -0
- package/dist/checkbox/Checkbox.vue.d.ts +44 -0
- package/dist/checkbox/Checkbox.vue.d.ts.map +1 -0
- package/dist/checkbox/CheckboxGroup.vue.d.ts +31 -0
- package/dist/checkbox/CheckboxGroup.vue.d.ts.map +1 -0
- package/dist/checkbox/context.d.ts +9 -0
- package/dist/checkbox/context.d.ts.map +1 -0
- package/dist/checkbox/index.d.ts +125 -0
- package/dist/checkbox/index.d.ts.map +1 -0
- package/dist/dialog/Dialog.vue.d.ts +42 -0
- package/dist/dialog/Dialog.vue.d.ts.map +1 -0
- package/dist/dialog/index.d.ts +83 -0
- package/dist/dialog/index.d.ts.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/input/Input.vue.d.ts +24 -0
- package/dist/input/Input.vue.d.ts.map +1 -0
- package/dist/input/index.d.ts +29 -0
- package/dist/input/index.d.ts.map +1 -0
- package/dist/input-label/InputLabel.vue.d.ts +35 -0
- package/dist/input-label/InputLabel.vue.d.ts.map +1 -0
- package/dist/input-label/index.d.ts +42 -0
- package/dist/input-label/index.d.ts.map +1 -0
- package/dist/menu/Menu.vue.d.ts +22 -0
- package/dist/menu/Menu.vue.d.ts.map +1 -0
- package/dist/menu/index.d.ts +20 -0
- package/dist/menu/index.d.ts.map +1 -0
- package/dist/message/Message.vue.d.ts +25 -0
- package/dist/message/Message.vue.d.ts.map +1 -0
- package/dist/message/index.d.ts +64 -0
- package/dist/message/index.d.ts.map +1 -0
- package/dist/radio/Radio.vue.d.ts +32 -0
- package/dist/radio/Radio.vue.d.ts.map +1 -0
- package/dist/radio/RadioGroup.vue.d.ts +30 -0
- package/dist/radio/RadioGroup.vue.d.ts.map +1 -0
- package/dist/radio/context.d.ts +8 -0
- package/dist/radio/context.d.ts.map +1 -0
- package/dist/radio/index.d.ts +102 -0
- package/dist/radio/index.d.ts.map +1 -0
- package/dist/select/Select.vue.d.ts +19 -0
- package/dist/select/Select.vue.d.ts.map +1 -0
- package/dist/select/index.d.ts +25 -0
- package/dist/select/index.d.ts.map +1 -0
- package/dist/style.css +1 -0
- package/dist/switch/Switch.vue.d.ts +20 -0
- package/dist/switch/Switch.vue.d.ts.map +1 -0
- package/dist/switch/index.d.ts +24 -0
- package/dist/switch/index.d.ts.map +1 -0
- package/dist/table/Table.vue.d.ts +81 -0
- package/dist/table/Table.vue.d.ts.map +1 -0
- package/dist/table/index.d.ts +105 -0
- package/dist/table/index.d.ts.map +1 -0
- package/dist/tag/Tag.vue.d.ts +31 -0
- package/dist/tag/Tag.vue.d.ts.map +1 -0
- package/dist/tag/index.d.ts +53 -0
- package/dist/tag/index.d.ts.map +1 -0
- package/dist/theme/applyTheme.d.ts +5 -0
- package/dist/theme/applyTheme.d.ts.map +1 -0
- package/dist/theme/createThemeCode.d.ts +3 -0
- package/dist/theme/createThemeCode.d.ts.map +1 -0
- package/dist/theme/index.cjs +3 -0
- package/dist/theme/index.d.ts +4 -0
- package/dist/theme/index.d.ts.map +1 -0
- package/dist/theme/index.js +45 -0
- package/dist/theme/tokens.d.ts +23 -0
- package/dist/theme/tokens.d.ts.map +1 -0
- package/dist/theme-editor/ThemeEditor.vue.d.ts +8 -0
- package/dist/theme-editor/ThemeEditor.vue.d.ts.map +1 -0
- package/dist/theme-editor/ThemeEditorDialog.vue.d.ts +16 -0
- package/dist/theme-editor/ThemeEditorDialog.vue.d.ts.map +1 -0
- package/dist/theme-editor/index.d.ts +3 -0
- package/dist/theme-editor/index.d.ts.map +1 -0
- package/dist/u1design.cjs +1 -0
- package/dist/u1design.js +1252 -0
- package/package.json +54 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
offset?: number | string;
|
|
3
|
+
position?: 'top' | 'bottom';
|
|
4
|
+
zIndex?: number;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
17
|
+
offset: number | string;
|
|
18
|
+
position: "top" | "bottom";
|
|
19
|
+
zIndex: number;
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=Affix.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Affix.vue.d.ts","sourceRoot":"","sources":["../../src/affix/Affix.vue"],"names":[],"mappings":"AAKA;AAqDA,KAAK,WAAW,GAAG;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAA;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AA0CJ,iBAAS,cAAc;WA0BT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YAxFR,MAAM,GAAG,MAAM;cACb,KAAK,GAAG,QAAQ;YAClB,MAAM;cACJ,OAAO;wFA6FpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const U1Affix: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
offset?: number | string;
|
|
4
|
+
position?: "top" | "bottom";
|
|
5
|
+
zIndex?: number;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
8
|
+
offset: number | string;
|
|
9
|
+
position: "top" | "bottom";
|
|
10
|
+
zIndex: number;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
13
|
+
P: {};
|
|
14
|
+
B: {};
|
|
15
|
+
D: {};
|
|
16
|
+
C: {};
|
|
17
|
+
M: {};
|
|
18
|
+
Defaults: {};
|
|
19
|
+
}, Readonly<{
|
|
20
|
+
offset?: number | string;
|
|
21
|
+
position?: "top" | "bottom";
|
|
22
|
+
zIndex?: number;
|
|
23
|
+
disabled?: boolean;
|
|
24
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
25
|
+
offset: number | string;
|
|
26
|
+
position: "top" | "bottom";
|
|
27
|
+
zIndex: number;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
}>;
|
|
30
|
+
__isFragment?: never;
|
|
31
|
+
__isTeleport?: never;
|
|
32
|
+
__isSuspense?: never;
|
|
33
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
34
|
+
offset?: number | string;
|
|
35
|
+
position?: "top" | "bottom";
|
|
36
|
+
zIndex?: number;
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
39
|
+
offset: number | string;
|
|
40
|
+
position: "top" | "bottom";
|
|
41
|
+
zIndex: number;
|
|
42
|
+
disabled: boolean;
|
|
43
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
44
|
+
$slots: {
|
|
45
|
+
default?(_: {}): any;
|
|
46
|
+
};
|
|
47
|
+
});
|
|
48
|
+
export default U1Affix;
|
|
49
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/affix/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAQ,CAAA;AAC5B,eAAe,OAAO,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
src?: string;
|
|
3
|
+
alt?: string;
|
|
4
|
+
size?: 'small' | 'default' | 'large';
|
|
5
|
+
shape?: 'circle' | 'square';
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: HTMLSpanElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
17
|
+
size: "small" | "default" | "large";
|
|
18
|
+
src: string;
|
|
19
|
+
alt: string;
|
|
20
|
+
shape: "circle" | "square";
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=Avatar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../src/avatar/Avatar.vue"],"names":[],"mappings":"AAQA;AAiDA,KAAK,WAAW,GAAG;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;IACpC,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAA;CAC5B,CAAC;AA6BJ,iBAAS,cAAc;WAyCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UAzFV,OAAO,GAAG,SAAS,GAAG,OAAO;SAF9B,MAAM;SACN,MAAM;WAEJ,QAAQ,GAAG,QAAQ;yFAgG7B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const U1Avatar: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
src?: string;
|
|
4
|
+
alt?: string;
|
|
5
|
+
size?: "small" | "default" | "large";
|
|
6
|
+
shape?: "circle" | "square";
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
8
|
+
size: "small" | "default" | "large";
|
|
9
|
+
src: string;
|
|
10
|
+
alt: string;
|
|
11
|
+
shape: "circle" | "square";
|
|
12
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLSpanElement, import('vue').ComponentProvideOptions, {
|
|
13
|
+
P: {};
|
|
14
|
+
B: {};
|
|
15
|
+
D: {};
|
|
16
|
+
C: {};
|
|
17
|
+
M: {};
|
|
18
|
+
Defaults: {};
|
|
19
|
+
}, Readonly<{
|
|
20
|
+
src?: string;
|
|
21
|
+
alt?: string;
|
|
22
|
+
size?: "small" | "default" | "large";
|
|
23
|
+
shape?: "circle" | "square";
|
|
24
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
25
|
+
size: "small" | "default" | "large";
|
|
26
|
+
src: string;
|
|
27
|
+
alt: string;
|
|
28
|
+
shape: "circle" | "square";
|
|
29
|
+
}>;
|
|
30
|
+
__isFragment?: never;
|
|
31
|
+
__isTeleport?: never;
|
|
32
|
+
__isSuspense?: never;
|
|
33
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
34
|
+
src?: string;
|
|
35
|
+
alt?: string;
|
|
36
|
+
size?: "small" | "default" | "large";
|
|
37
|
+
shape?: "circle" | "square";
|
|
38
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
39
|
+
size: "small" | "default" | "large";
|
|
40
|
+
src: string;
|
|
41
|
+
alt: string;
|
|
42
|
+
shape: "circle" | "square";
|
|
43
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
44
|
+
$slots: {
|
|
45
|
+
default?(_: {}): any;
|
|
46
|
+
};
|
|
47
|
+
});
|
|
48
|
+
export default U1Avatar;
|
|
49
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/avatar/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAS,CAAA;AAC9B,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
type?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
3
|
+
size?: 'large' | 'default' | 'small';
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
iconLeft?: string;
|
|
9
|
+
iconRight?: string;
|
|
10
|
+
plain?: boolean;
|
|
11
|
+
round?: boolean;
|
|
12
|
+
circle?: boolean;
|
|
13
|
+
text?: boolean;
|
|
14
|
+
link?: boolean;
|
|
15
|
+
bg?: boolean;
|
|
16
|
+
nativeType?: 'button' | 'submit' | 'reset';
|
|
17
|
+
};
|
|
18
|
+
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
20
|
+
slots: {
|
|
21
|
+
icon?(_: {}): any;
|
|
22
|
+
default?(_: {}): any;
|
|
23
|
+
};
|
|
24
|
+
refs: {};
|
|
25
|
+
rootEl: any;
|
|
26
|
+
};
|
|
27
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
click: (event: MouseEvent) => any;
|
|
30
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
31
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
disabled: boolean;
|
|
34
|
+
link: boolean;
|
|
35
|
+
text: boolean;
|
|
36
|
+
round: boolean;
|
|
37
|
+
size: "large" | "default" | "small";
|
|
38
|
+
circle: boolean;
|
|
39
|
+
icon: string;
|
|
40
|
+
type: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
41
|
+
label: string;
|
|
42
|
+
loading: boolean;
|
|
43
|
+
iconLeft: string;
|
|
44
|
+
iconRight: string;
|
|
45
|
+
plain: boolean;
|
|
46
|
+
bg: boolean;
|
|
47
|
+
nativeType: "button" | "submit" | "reset";
|
|
48
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
|
+
export default _default;
|
|
51
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=Button.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../src/button/Button.vue"],"names":[],"mappings":"AAwBA;AA6KA,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAA;IACxE,IAAI,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,UAAU,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAA;CAC3C,CAAC;AAwIJ,iBAAS,cAAc;WAmET,OAAO,IAA6B;;sBAXxB,GAAG;yBACA,GAAG;;;;EAe/B;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;cA9ON,OAAO;UAUX,OAAO;UADP,OAAO;WAFN,OAAO;UARR,OAAO,GAAG,SAAS,GAAG,OAAO;YAS3B,OAAO;UALT,MAAM;UALN,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM;WAIhE,MAAM;aADJ,OAAO;cAGN,MAAM;eACL,MAAM;WACV,OAAO;QAKV,OAAO;gBACC,QAAQ,GAAG,QAAQ,GAAG,OAAO;6EA0O5C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
export declare const U1Button: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
type?: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
4
|
+
size?: "large" | "default" | "small";
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
loading?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
icon?: string;
|
|
9
|
+
iconLeft?: string;
|
|
10
|
+
iconRight?: string;
|
|
11
|
+
plain?: boolean;
|
|
12
|
+
round?: boolean;
|
|
13
|
+
circle?: boolean;
|
|
14
|
+
text?: boolean;
|
|
15
|
+
link?: boolean;
|
|
16
|
+
bg?: boolean;
|
|
17
|
+
nativeType?: "button" | "submit" | "reset";
|
|
18
|
+
}> & Readonly<{
|
|
19
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
click: (event: MouseEvent) => any;
|
|
22
|
+
}, import('vue').PublicProps, {
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
link: boolean;
|
|
25
|
+
text: boolean;
|
|
26
|
+
round: boolean;
|
|
27
|
+
size: "large" | "default" | "small";
|
|
28
|
+
circle: boolean;
|
|
29
|
+
icon: string;
|
|
30
|
+
type: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
31
|
+
label: string;
|
|
32
|
+
loading: boolean;
|
|
33
|
+
iconLeft: string;
|
|
34
|
+
iconRight: string;
|
|
35
|
+
plain: boolean;
|
|
36
|
+
bg: boolean;
|
|
37
|
+
nativeType: "button" | "submit" | "reset";
|
|
38
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
39
|
+
P: {};
|
|
40
|
+
B: {};
|
|
41
|
+
D: {};
|
|
42
|
+
C: {};
|
|
43
|
+
M: {};
|
|
44
|
+
Defaults: {};
|
|
45
|
+
}, Readonly<{
|
|
46
|
+
type?: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
47
|
+
size?: "large" | "default" | "small";
|
|
48
|
+
disabled?: boolean;
|
|
49
|
+
loading?: boolean;
|
|
50
|
+
label?: string;
|
|
51
|
+
icon?: string;
|
|
52
|
+
iconLeft?: string;
|
|
53
|
+
iconRight?: string;
|
|
54
|
+
plain?: boolean;
|
|
55
|
+
round?: boolean;
|
|
56
|
+
circle?: boolean;
|
|
57
|
+
text?: boolean;
|
|
58
|
+
link?: boolean;
|
|
59
|
+
bg?: boolean;
|
|
60
|
+
nativeType?: "button" | "submit" | "reset";
|
|
61
|
+
}> & Readonly<{
|
|
62
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
63
|
+
}>, {}, {}, {}, {}, {
|
|
64
|
+
disabled: boolean;
|
|
65
|
+
link: boolean;
|
|
66
|
+
text: boolean;
|
|
67
|
+
round: boolean;
|
|
68
|
+
size: "large" | "default" | "small";
|
|
69
|
+
circle: boolean;
|
|
70
|
+
icon: string;
|
|
71
|
+
type: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
72
|
+
label: string;
|
|
73
|
+
loading: boolean;
|
|
74
|
+
iconLeft: string;
|
|
75
|
+
iconRight: string;
|
|
76
|
+
plain: boolean;
|
|
77
|
+
bg: boolean;
|
|
78
|
+
nativeType: "button" | "submit" | "reset";
|
|
79
|
+
}>;
|
|
80
|
+
__isFragment?: never;
|
|
81
|
+
__isTeleport?: never;
|
|
82
|
+
__isSuspense?: never;
|
|
83
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
84
|
+
type?: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
85
|
+
size?: "large" | "default" | "small";
|
|
86
|
+
disabled?: boolean;
|
|
87
|
+
loading?: boolean;
|
|
88
|
+
label?: string;
|
|
89
|
+
icon?: string;
|
|
90
|
+
iconLeft?: string;
|
|
91
|
+
iconRight?: string;
|
|
92
|
+
plain?: boolean;
|
|
93
|
+
round?: boolean;
|
|
94
|
+
circle?: boolean;
|
|
95
|
+
text?: boolean;
|
|
96
|
+
link?: boolean;
|
|
97
|
+
bg?: boolean;
|
|
98
|
+
nativeType?: "button" | "submit" | "reset";
|
|
99
|
+
}> & Readonly<{
|
|
100
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
101
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
102
|
+
click: (event: MouseEvent) => any;
|
|
103
|
+
}, string, {
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
link: boolean;
|
|
106
|
+
text: boolean;
|
|
107
|
+
round: boolean;
|
|
108
|
+
size: "large" | "default" | "small";
|
|
109
|
+
circle: boolean;
|
|
110
|
+
icon: string;
|
|
111
|
+
type: "default" | "primary" | "success" | "warning" | "danger" | "info";
|
|
112
|
+
label: string;
|
|
113
|
+
loading: boolean;
|
|
114
|
+
iconLeft: string;
|
|
115
|
+
iconRight: string;
|
|
116
|
+
plain: boolean;
|
|
117
|
+
bg: boolean;
|
|
118
|
+
nativeType: "button" | "submit" | "reset";
|
|
119
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
120
|
+
$slots: {
|
|
121
|
+
icon?(_: {}): any;
|
|
122
|
+
default?(_: {}): any;
|
|
123
|
+
};
|
|
124
|
+
});
|
|
125
|
+
export default U1Button;
|
|
126
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/button/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAS,CAAA;AAC9B,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
shadow?: 'always' | 'hover' | 'never';
|
|
3
|
+
};
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
header?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
|
+
shadow: "always" | "hover" | "never";
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=Card.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../src/card/Card.vue"],"names":[],"mappings":"AAUA;AA+BA,KAAK,WAAW,GAAG;IACf,MAAM,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,OAAO,CAAA;CACtC,CAAC;AAaJ,iBAAS,cAAc;WAoCT,OAAO,IAA6B;;wBAXtB,GAAG;yBACF,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YAjER,QAAQ,GAAG,OAAO,GAAG,OAAO;qFAyEvC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const U1Card: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
shadow?: "always" | "hover" | "never";
|
|
4
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
5
|
+
shadow: "always" | "hover" | "never";
|
|
6
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<{
|
|
14
|
+
shadow?: "always" | "hover" | "never";
|
|
15
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
16
|
+
shadow: "always" | "hover" | "never";
|
|
17
|
+
}>;
|
|
18
|
+
__isFragment?: never;
|
|
19
|
+
__isTeleport?: never;
|
|
20
|
+
__isSuspense?: never;
|
|
21
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
22
|
+
shadow?: "always" | "hover" | "never";
|
|
23
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
24
|
+
shadow: "always" | "hover" | "never";
|
|
25
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
26
|
+
$slots: {
|
|
27
|
+
header?(_: {}): any;
|
|
28
|
+
default?(_: {}): any;
|
|
29
|
+
};
|
|
30
|
+
});
|
|
31
|
+
export default U1Card;
|
|
32
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/card/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAO,CAAA;AAC1B,eAAe,MAAM,CAAA"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { U1CheckboxValue } from './context';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue?: U1CheckboxValue;
|
|
4
|
+
label?: U1CheckboxValue;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
indeterminate?: boolean;
|
|
7
|
+
trueValue?: U1CheckboxValue;
|
|
8
|
+
falseValue?: U1CheckboxValue;
|
|
9
|
+
};
|
|
10
|
+
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
12
|
+
slots: {
|
|
13
|
+
default?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {
|
|
16
|
+
inputRef: HTMLInputElement;
|
|
17
|
+
};
|
|
18
|
+
rootEl: HTMLLabelElement;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: U1CheckboxValue) => any;
|
|
23
|
+
change: (value: U1CheckboxValue) => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((value: U1CheckboxValue) => any) | undefined;
|
|
26
|
+
onChange?: ((value: U1CheckboxValue) => any) | undefined;
|
|
27
|
+
}>, {
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
label: U1CheckboxValue;
|
|
30
|
+
modelValue: U1CheckboxValue;
|
|
31
|
+
indeterminate: boolean;
|
|
32
|
+
trueValue: U1CheckboxValue;
|
|
33
|
+
falseValue: U1CheckboxValue;
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
35
|
+
inputRef: HTMLInputElement;
|
|
36
|
+
}, HTMLLabelElement>;
|
|
37
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
|
+
export default _default;
|
|
39
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
+
new (): {
|
|
41
|
+
$slots: S;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=Checkbox.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Checkbox.vue.d.ts","sourceRoot":"","sources":["../../src/checkbox/Checkbox.vue"],"names":[],"mappings":"AA0BA;AAuGA,OAAO,EAAoB,KAAK,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAM3E,KAAK,WAAW,GAAG;IACf,UAAU,CAAC,EAAE,eAAe,CAAA;IAC5B,KAAK,CAAC,EAAE,eAAe,CAAA;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,SAAS,CAAC,EAAE,eAAe,CAAA;IAC3B,UAAU,CAAC,EAAE,eAAe,CAAA;CAC7B,CAAC;AAsEJ,iBAAS,cAAc;WAmDT,OAAO,IAA6B;;yBAXrB,GAAG;;;;;;EAgB/B;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;cAlJN,OAAO;WADV,eAAe;gBADV,eAAe;mBAGZ,OAAO;eACX,eAAe;gBACd,eAAe;;;oBAyJ9B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { U1CheckboxValue } from './context';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue: U1CheckboxValue[];
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: U1CheckboxValue[]) => any;
|
|
17
|
+
change: (value: U1CheckboxValue[]) => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
"onUpdate:modelValue"?: ((value: U1CheckboxValue[]) => any) | undefined;
|
|
20
|
+
onChange?: ((value: U1CheckboxValue[]) => any) | undefined;
|
|
21
|
+
}>, {
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=CheckboxGroup.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../src/checkbox/CheckboxGroup.vue"],"names":[],"mappings":"AAKA;AA+CA,OAAO,EAAoB,KAAK,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAM3E,KAAK,WAAW,GAAG;IACf,UAAU,EAAE,eAAe,EAAE,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AAkCJ,iBAAS,cAAc;WAyBT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;cA5EN,OAAO;wFAqFpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InjectionKey, Ref } from 'vue';
|
|
2
|
+
export type U1CheckboxValue = string | number | boolean;
|
|
3
|
+
export interface U1CheckboxGroupContext {
|
|
4
|
+
modelValue: Ref<U1CheckboxValue[]>;
|
|
5
|
+
disabled: Ref<boolean>;
|
|
6
|
+
change: (value: U1CheckboxValue, checked: boolean) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const checkboxGroupKey: InjectionKey<U1CheckboxGroupContext>;
|
|
9
|
+
//# sourceMappingURL=context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/checkbox/context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAE5C,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;AAEvD,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,GAAG,CAAC,eAAe,EAAE,CAAC,CAAA;IAClC,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IACtB,MAAM,EAAE,CAAC,KAAK,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,KAAK,IAAI,CAAA;CAC3D;AAED,eAAO,MAAM,gBAAgB,EAAE,YAAY,CAAC,sBAAsB,CAA6B,CAAA"}
|