hs-admin-ui 15.6.9 → 15.7.1
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/bcIcon--NAs915Q.mjs +4 -0
- package/dist/{bcIcon-BRY13iXr.js → bcIcon-DTFrWf_Q.js} +1 -1
- package/dist/{index-BBJSamYv.mjs → index-DZEhUamE.mjs} +13661 -13640
- package/dist/{index-DNwSnxJY.js → index-DmRhXIzM.js} +78 -78
- package/dist/index.js +1 -1
- package/dist/index.mjs +22 -22
- package/dist/types/element-plus.d.ts +556 -1
- package/dist/types/index.d.ts +1 -4
- package/dist/types/src/components/base/Radio/src/Radio.vue.d.ts +1 -15
- package/dist/types/src/components/base/index.d.ts +1 -15
- package/dist/types/src/components/business/bcButton/bcButton.vue.d.ts +26 -1
- package/package.json +1 -1
- package/dist/bcIcon-BQbuS3xc.mjs +0 -4
|
@@ -79,21 +79,7 @@ export declare const baseComponents: {
|
|
|
79
79
|
Popover: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
80
80
|
Progress: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
81
|
Qr: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
82
|
-
Radio: import("vue").DefineComponent<import("vue").
|
|
83
|
-
value: {
|
|
84
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
85
|
-
};
|
|
86
|
-
label: {
|
|
87
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
88
|
-
};
|
|
89
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
value: {
|
|
91
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
92
|
-
};
|
|
93
|
-
label: {
|
|
94
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
95
|
-
};
|
|
96
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
82
|
+
Radio: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
97
83
|
RadioButton: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
84
|
RadioGroup: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
99
85
|
Rate: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,8 +1,33 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
interface ButtonProps {
|
|
3
|
+
type?: "primary" | "success" | "warning" | "danger" | "info" | "text" | "default";
|
|
4
|
+
size?: "large" | "default" | "small";
|
|
5
|
+
loading?: boolean;
|
|
6
|
+
loadingIcon?: string | Component;
|
|
7
|
+
plain?: boolean;
|
|
8
|
+
round?: boolean;
|
|
9
|
+
circle?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
autofocus?: boolean;
|
|
12
|
+
link?: boolean;
|
|
13
|
+
text?: boolean;
|
|
14
|
+
bg?: boolean;
|
|
15
|
+
autoInsertSpace?: boolean;
|
|
16
|
+
color?: string;
|
|
17
|
+
dark?: boolean;
|
|
18
|
+
icon?: string | Component;
|
|
19
|
+
nativeType?: "button" | "submit" | "reset";
|
|
20
|
+
tag?: string;
|
|
21
|
+
}
|
|
22
|
+
interface ExtednButtonProps {
|
|
23
|
+
shortcut?: string[];
|
|
24
|
+
}
|
|
25
|
+
type __VLS_Props = Partial<Omit<ButtonProps, "loading">> & ExtednButtonProps;
|
|
1
26
|
declare var __VLS_20: {};
|
|
2
27
|
type __VLS_Slots = {} & {
|
|
3
28
|
default?: (props: typeof __VLS_20) => any;
|
|
4
29
|
};
|
|
5
|
-
declare const __VLS_base: import("vue").DefineComponent<
|
|
30
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
31
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
32
|
declare const _default: typeof __VLS_export;
|
|
8
33
|
export default _default;
|
package/package.json
CHANGED
package/dist/bcIcon-BQbuS3xc.mjs
DELETED