@hunter-industries/hunter-components 0.0.49 → 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,16 +1,16 @@
1
1
  import type { HunterIconName } from "../../types/assets";
2
2
  interface Props {
3
- variant?: "light" | "default" | "dark";
4
- disabled?: boolean;
5
- className?: string;
6
- id?: string;
7
- text?: string;
8
- icon?: HunterIconName;
9
- iconClass?: string;
3
+ variant: "light" | "default" | "dark";
4
+ disabled: boolean;
5
+ className: string;
6
+ id: string;
7
+ text: string;
8
+ icon: HunterIconName;
9
+ iconClass: string;
10
10
  }
11
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {
11
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<Partial<Props>>, {
12
12
  buttonEl: import("vue").Ref<any>;
13
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}, {}>, {
13
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Partial<Props>>>>, {}, {}>, {
14
14
  default?(_: {}): any;
15
15
  }>;
16
16
  export default _default;
@@ -1,7 +1,8 @@
1
1
  interface Props {
2
2
  color: string;
3
3
  hasBorder?: boolean;
4
- size?: "small" | "medium" | "large";
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;