@hunter-industries/hunter-components 0.0.50 → 0.0.51
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.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
color: string;
|
|
3
3
|
hasBorder?: boolean;
|
|
4
|
-
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
size?: "small" | "medium" | "large" | "sm" | "md" | "lg";
|
|
5
6
|
}
|
|
6
7
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}, {}>;
|
|
7
8
|
export default _default;
|
|
@@ -107,6 +107,9 @@ declare const meta: Meta<import("vue").DefineComponent<{
|
|
|
107
107
|
dropdownClassName: {
|
|
108
108
|
type: import("vue").PropType<string>;
|
|
109
109
|
};
|
|
110
|
+
disabled: {
|
|
111
|
+
type: import("vue").PropType<boolean>;
|
|
112
|
+
};
|
|
110
113
|
colors: {
|
|
111
114
|
type: import("vue").PropType<string[]>;
|
|
112
115
|
required: true;
|
|
@@ -142,6 +145,9 @@ declare const meta: Meta<import("vue").DefineComponent<{
|
|
|
142
145
|
dropdownClassName: {
|
|
143
146
|
type: import("vue").PropType<string>;
|
|
144
147
|
};
|
|
148
|
+
disabled: {
|
|
149
|
+
type: import("vue").PropType<boolean>;
|
|
150
|
+
};
|
|
145
151
|
colors: {
|
|
146
152
|
type: import("vue").PropType<string[]>;
|
|
147
153
|
required: true;
|