@huntflow/ui 0.2.39 → 0.2.43

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.
@@ -19,6 +19,8 @@ export { UiError } from './ui-error';
19
19
  export type { UiErrorProps } from './ui-error';
20
20
  export { UiAvatar } from './ui-avatar';
21
21
  export type { UiAvatarProps } from './ui-avatar';
22
+ export { UiTextarea } from './ui-textarea';
23
+ export type { UiTextareaProps } from './ui-textarea';
22
24
  export { UiStack } from './ui-stack';
23
25
  export type { UiStackProps } from './ui-stack';
24
26
  export { UiRadioGroup } from './ui-radio-group';
@@ -27,5 +29,9 @@ export { UiCheckbox } from './ui-checkbox';
27
29
  export type { UiCheckboxProps } from './ui-checkbox';
28
30
  export { UiCheckboxGroup } from './ui-checkbox-group';
29
31
  export type { UiCheckboxGroupProps } from './ui-checkbox-group';
32
+ export { UiSwitch } from './ui-switch';
33
+ export type { UiSwitchProps } from './ui-switch';
30
34
  export { UiDropzone } from './ui-dropzone';
31
35
  export type { UiDropzoneProps } from './ui-dropzone';
36
+ export { UiDropdown } from './ui-dropdown';
37
+ export type { UiDropdownProps, UiDropdownSide, UiDropdownAlign } from './ui-dropdown';
@@ -1,6 +1,7 @@
1
1
  import { IconBySize } from '../ui-icon';
2
2
  export type UiButtonProps = {
3
3
  size?: UiButtonSize;
4
+ weight?: UiButtonWeight;
4
5
  type?: UiButtonType;
5
6
  disabled?: boolean;
6
7
  loading?: boolean;
@@ -15,6 +16,7 @@ export type UiButtonProps = {
15
16
  iconAfter?: IconBySize<18> | IconBySize<20>;
16
17
  fill?: boolean;
17
18
  };
19
+ export type UiButtonWeight = 'regular' | 'medium';
18
20
  export type UiButtonSize = 's' | 'xs' | 'm' | 'l' | 'xl';
19
21
  export type UiButtonType = 'primary' | 'secondary' | 'accent' | 'jobsites' | 'ghost' | 'ghost-danger' | 'danger' | 'transparent-dark' | 'transparent-secondary' | 'text-primary' | 'text-secondary';
20
22
  export type UiButtonHTMLType = 'button' | 'submit' | 'reset';
@@ -10,9 +10,9 @@ declare function __VLS_template(): {
10
10
  };
11
11
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
12
  declare const __VLS_component: import('vue').DefineComponent<UiCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
- "update:modelValue": (value: boolean | "indeterminate") => any;
13
+ "update:modelValue": (value: string | number | boolean) => any;
14
14
  }, string, import('vue').PublicProps, Readonly<UiCheckboxProps> & Readonly<{
15
- "onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
15
+ "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
16
16
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
18
  export default _default;
@@ -1,5 +1,7 @@
1
1
  export type UiCheckboxProps = {
2
- modelValue?: boolean | 'indeterminate';
2
+ modelValue?: boolean | string | number | 'indeterminate';
3
+ trueValue?: boolean | string | number;
4
+ falseValue?: boolean | string | number;
3
5
  disabled?: boolean;
4
6
  label?: string;
5
7
  subtitle?: string;
@@ -7,7 +9,8 @@ export type UiCheckboxProps = {
7
9
  value?: string;
8
10
  name?: string;
9
11
  lock?: boolean;
12
+ ellipsis?: boolean;
10
13
  };
11
14
  export type UiCheckboxEmits = {
12
- 'update:modelValue': [value: boolean | 'indeterminate'];
15
+ 'update:modelValue': [value: boolean | string | number | 'indeterminate'];
13
16
  };
@@ -8,4 +8,5 @@ export type UiCheckboxGroupProps = {
8
8
  error?: string;
9
9
  stackGap?: 's' | 'l';
10
10
  direction?: 'column' | 'row';
11
+ ellipsis?: boolean;
11
12
  };
@@ -0,0 +1,19 @@
1
+ import { UiDropdownProps } from './types';
2
+ type __VLS_Props = UiDropdownProps;
3
+ type __VLS_PublicProps = {
4
+ 'open'?: boolean;
5
+ } & __VLS_Props;
6
+ declare function __VLS_template(): any;
7
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
8
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:open": (value: boolean) => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
11
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
14
+ export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,3 @@
1
+ import { default as UiDropdown } from './dropdown.vue';
2
+ export type { UiDropdownProps, UiDropdownSide, UiDropdownAlign } from './types';
3
+ export { UiDropdown };
@@ -0,0 +1,14 @@
1
+ export type UiDropdownSide = 'top' | 'right' | 'bottom' | 'left';
2
+ export type UiDropdownAlign = 'start' | 'center' | 'end';
3
+ export type UiDropdownProps = {
4
+ open?: boolean;
5
+ side?: UiDropdownSide;
6
+ align?: UiDropdownAlign;
7
+ sideOffset?: number;
8
+ alignOffset?: number;
9
+ size: 's';
10
+ title?: string;
11
+ subtitle?: string;
12
+ disabled?: boolean;
13
+ modal?: boolean;
14
+ };
@@ -1 +1 @@
1
- export declare const icons: readonly ["2-users-20", "Vector", "add-reaction-16", "ai-20", "alert-20", "alert-24", "alert-fill-20", "alert-fill-24", "alert-fill-28", "archive-16", "archive-18", "archive-20", "archive-24", "archive-28", "arrow-down-20", "arrow-left-18", "arrow-left-20", "arrow-narrow-left-24", "arrow-narrow-left-bold-24", "arrow-narrow-right-24", "arrow-narrow-right-bold-20", "arrow-narrow-right-bold-24", "arrow-right-18", "arrow-right-20", "arrow-up-20", "attention-16", "attention-18", "attention-20", "attention-24", "attention-28", "calendar-16", "calendar-18", "calendar-20", "calendar-24", "calendar-28", "casper-20", "check-16", "check-18", "check-20", "check-24", "check-28", "check-color-16", "check-color-18", "check-color-20", "check-color-24", "check-color-28", "chevron-down-16", "chevron-down-18", "chevron-down-20", "chevron-down-24", "chevron-down-28", "chevron-left-16", "chevron-left-18", "chevron-left-20", "chevron-left-24", "chevron-left-28", "chevron-right-16", "chevron-right-18", "chevron-right-20", "chevron-right-24", "chevron-right-28", "chevron-up-16", "chevron-up-18", "chevron-up-20", "chevron-up-24", "chevron-up-28", "circle-download-20", "clip-16", "clip-18", "clip-20", "clip-24", "clip-28", "clipboard-16", "clipboard-18", "clipboard-20", "clipboard-24", "clipboard-28", "clock-16", "clock-18", "clock-20", "clock-24", "clock-28", "clock-fill-16", "clock-fill-18", "clock-fill-20", "clock-fill-24", "clock-fill-28", "close-16", "close-18", "close-20", "close-28", "copy-20", "crown-16", "crown-18", "crown-20", "crown-24", "crown-28", "dots-horizontal-20", "dots-vertical-20", "download-16", "download-18", "download-20", "download-24", "download-28", "download-circle-16", "download-circle-18", "drag-16", "drag-20", "drag-24", "drop-down", "edit-16", "edit-18", "edit-20", "edit-24", "edit-28", "feedback-16", "feedback-18", "feedback-20", "feedback-24", "feedback-28", "folder-16", "folder-18", "folder-20", "folder-24", "folder-28", "graph-16", "graph-18", "graph-20", "graph-24", "graph-28", "home-16", "home-18", "home-20", "home-24", "home-28", "incognito-24", "info-16", "info-18", "info-20", "info-24", "info-28", "link-16", "link-18", "link-20", "link-24", "link-28", "lock-16", "lock-18", "lock-20", "lock-24", "lock-28", "lock-black-18", "lock-color-16", "lock-color-18", "lock-color-20", "lock-color-24", "lock-color-28", "max-16", "max-18", "max-20", "max-24", "max-28", "max-contour-18", "max-contour-20", "max-contour-24", "message-16", "message-18", "message-20", "message-24", "message-28", "message-open-18", "message-replied-18", "mute-20", "mute-fill-20", "next-20", "notches-16", "options-16", "options-18", "options-20", "options-24", "options-28", "options-lock-20", "phone-16", "phone-18", "phone-20", "phone-24", "phone-28", "phone-error-16", "phone-error-18", "phone-error-20", "phone-error-24", "phone-error-28", "phone-fill-16", "phone-fill-18", "phone-fill-20", "phone-fill-24", "phone-fill-28", "plus-16", "plus-18", "plus-20", "plus-circle-16", "plus-circle-18", "plus-circle-20", "plus-circle-24", "plus-circle-28", "print-16", "print-18", "print-20", "print-24", "print-28", "priority-20", "question-16", "question-18", "question-20", "question-24", "question-28", "refresh-18", "refresh-20", "refresh-24", "rocket-16", "rocket-18", "rocket-20", "rocket-24", "rocket-28", "search-16", "search-18", "search-20", "search-24", "search-28", "semiselected-16", "semiselected-18", "semiselected-20", "semiselected-24", "semiselected-28", "settings-16", "settings-18", "settings-20", "settings-24", "settings-28", "share-16", "share-18", "share-20", "share-24", "share-28", "shield-attention-20", "shield-attention-lock-20", "shield-fill-16", "shield-fill-20", "shield-tick-20", "shuffle-20", "sms-16", "sms-18", "sms-20", "sms-24", "sms-28", "star-16", "star-18", "star-20", "star-24", "star-28", "stop-color-16", "stop-color-18", "stop-color-20", "stop-color-24", "stop-color-28", "tag-18", "tag-20", "team-24", "telegram-16", "telegram-18", "telegram-20", "telegram-24", "telegram-28", "telegram-contour-18", "telegram-contour-20", "telegram-contour-24", "text-16", "text-18", "text-20", "text-24", "text-28", "thumbs-28", "thumbsup-16", "thumbsup-18", "thumbsup-20", "thumbsup-24", "trash-16", "trash-18", "trash-20", "trash-24", "trash-28", "unmute-18", "unmute-20", "upload-16", "upload-18", "upload-20", "url-16", "url-18", "url-20", "url-24", "url-28", "verification-fill-20", "viber-16", "viber-18", "viber-20", "viber-24", "viber-28", "viber-contour-16", "viber-contour-18", "viber-contour-20", "viber-contour-24", "viber-contour-28", "whatsapp-16", "whatsapp-18", "whatsapp-20", "whatsapp-24", "whatsapp-28", "whatsapp-contour-18", "whatsapp-contour-20", "whatsapp-contour-24", "x-circle-20", "zoom-16", "zoom-18", "zoom-20", "zoom-24", "zoom-28"];
1
+ export declare const icons: readonly ["2-users-20", "Vector", "add-reaction-16", "ai-20", "alert-20", "alert-24", "alert-fill-20", "alert-fill-24", "alert-fill-28", "archive-16", "archive-18", "archive-20", "archive-24", "archive-28", "arrow-down-20", "arrow-left-18", "arrow-left-20", "arrow-narrow-left-24", "arrow-narrow-left-bold-24", "arrow-narrow-right-24", "arrow-narrow-right-bold-20", "arrow-narrow-right-bold-24", "arrow-right-18", "arrow-right-20", "arrow-up-20", "attention-16", "attention-18", "attention-20", "attention-24", "attention-28", "calendar-16", "calendar-18", "calendar-20", "calendar-24", "calendar-28", "casper-20", "check-16", "check-18", "check-20", "check-24", "check-28", "check-color-16", "check-color-18", "check-color-20", "check-color-24", "check-color-28", "chevron-down-16", "chevron-down-18", "chevron-down-20", "chevron-down-24", "chevron-down-28", "chevron-left-16", "chevron-left-18", "chevron-left-20", "chevron-left-24", "chevron-left-28", "chevron-right-16", "chevron-right-18", "chevron-right-20", "chevron-right-24", "chevron-right-28", "chevron-up-16", "chevron-up-18", "chevron-up-20", "chevron-up-24", "chevron-up-28", "circle-download-20", "clip-16", "clip-18", "clip-20", "clip-24", "clip-28", "clipboard-16", "clipboard-18", "clipboard-20", "clipboard-24", "clipboard-28", "clock-16", "clock-18", "clock-20", "clock-24", "clock-28", "clock-fill-16", "clock-fill-18", "clock-fill-20", "clock-fill-24", "clock-fill-28", "close-16", "close-18", "close-20", "close-28", "copy-20", "crown-16", "crown-18", "crown-20", "crown-24", "crown-28", "dots-horizontal-20", "dots-vertical-20", "download-16", "download-18", "download-20", "download-24", "download-28", "download-circle-16", "download-circle-18", "drag-16", "drag-20", "drag-24", "drop-down", "edit-16", "edit-18", "edit-20", "edit-24", "edit-28", "eye-open-20", "eye-slash-20", "feedback-16", "feedback-18", "feedback-20", "feedback-24", "feedback-28", "folder-16", "folder-18", "folder-20", "folder-24", "folder-28", "funnel-20", "graph-16", "graph-18", "graph-20", "graph-24", "graph-28", "home-16", "home-18", "home-20", "home-24", "home-28", "incognito-20", "incognito-24", "info-16", "info-18", "info-20", "info-24", "info-28", "link-16", "link-18", "link-20", "link-24", "link-28", "lock-16", "lock-18", "lock-20", "lock-24", "lock-28", "lock-black-18", "lock-color-16", "lock-color-18", "lock-color-20", "lock-color-24", "lock-color-28", "max-16", "max-18", "max-20", "max-24", "max-28", "max-contour-18", "max-contour-20", "max-contour-24", "max-disable-16", "max-disable-18", "max-disable-20", "max-disable-24", "max-disable-28", "message-16", "message-18", "message-20", "message-24", "message-28", "message-open-18", "message-replied-18", "mute-20", "mute-fill-20", "next-20", "notches-16", "options-16", "options-18", "options-20", "options-24", "options-28", "options-lock-20", "phone-16", "phone-18", "phone-20", "phone-24", "phone-28", "phone-error-16", "phone-error-18", "phone-error-20", "phone-error-24", "phone-error-28", "phone-fill-16", "phone-fill-18", "phone-fill-20", "phone-fill-24", "phone-fill-28", "plus-16", "plus-18", "plus-20", "plus-circle-16", "plus-circle-18", "plus-circle-20", "plus-circle-24", "plus-circle-28", "point-chart-20", "print-16", "print-18", "print-20", "print-24", "print-28", "priority-20", "question-16", "question-18", "question-20", "question-24", "question-28", "refresh-18", "refresh-20", "refresh-24", "rocket-16", "rocket-18", "rocket-20", "rocket-24", "rocket-28", "search-16", "search-18", "search-20", "search-24", "search-28", "semiselected-16", "semiselected-18", "semiselected-20", "semiselected-24", "semiselected-28", "settings-16", "settings-18", "settings-20", "settings-24", "settings-28", "share-16", "share-18", "share-20", "share-24", "share-28", "shield-attention-20", "shield-attention-lock-20", "shield-fill-16", "shield-fill-20", "shield-tick-20", "shuffle-20", "sms-16", "sms-18", "sms-20", "sms-24", "sms-28", "star-16", "star-18", "star-20", "star-24", "star-28", "stop-color-16", "stop-color-18", "stop-color-20", "stop-color-24", "stop-color-28", "tag-18", "tag-20", "team-24", "telegram-16", "telegram-18", "telegram-20", "telegram-24", "telegram-28", "telegram-contour-18", "telegram-contour-20", "telegram-contour-24", "text-16", "text-18", "text-20", "text-24", "text-28", "thumbs-28", "thumbsup-16", "thumbsup-18", "thumbsup-20", "thumbsup-24", "trash-16", "trash-18", "trash-20", "trash-24", "trash-28", "unmute-18", "unmute-20", "upload-16", "upload-18", "upload-20", "url-16", "url-18", "url-20", "url-24", "url-28", "verification-fill-20", "viber-16", "viber-18", "viber-20", "viber-24", "viber-28", "viber-contour-16", "viber-contour-18", "viber-contour-20", "viber-contour-24", "viber-contour-28", "whatsapp-16", "whatsapp-18", "whatsapp-20", "whatsapp-24", "whatsapp-28", "whatsapp-contour-18", "whatsapp-contour-20", "whatsapp-contour-24", "x-circle-20", "zoom-16", "zoom-18", "zoom-20", "zoom-24", "zoom-28"];
@@ -10,6 +10,6 @@ export type UiRadioGroupProps = {
10
10
  direction?: 'column' | 'row';
11
11
  loop?: boolean;
12
12
  dir?: 'ltr' | 'rtl';
13
- stackGap?: 's' | 'l';
13
+ stackGap?: 's' | 'm' | 'l';
14
14
  labelPosition?: 'right' | 'bottom';
15
15
  };
@@ -6,4 +6,5 @@ export type UiStackProps = {
6
6
  gap?: '' | 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | '3xl' | '4xl' | '5xl';
7
7
  reverse?: boolean;
8
8
  size?: 'full' | 'auto';
9
+ wrap?: boolean;
9
10
  };
@@ -0,0 +1,3 @@
1
+ import { default as UiSwitch } from './switch.vue';
2
+ export type { UiSwitchProps, UiSwitchEmits } from './types';
3
+ export { UiSwitch };
@@ -0,0 +1,27 @@
1
+ import { UiSwitchProps } from './types';
2
+ type __VLS_Props = UiSwitchProps;
3
+ type __VLS_PublicProps = {
4
+ modelValue?: boolean;
5
+ } & __VLS_Props;
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ label?(_: {}): any;
10
+ subtitle?(_: {}): any;
11
+ };
12
+ refs: {};
13
+ rootEl: any;
14
+ };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ "update:modelValue": (value: boolean) => any;
18
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
20
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
+ export default _default;
23
+ type __VLS_WithTemplateSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -0,0 +1,12 @@
1
+ export type UiSwitchProps = {
2
+ modelValue?: boolean;
3
+ disabled?: boolean;
4
+ label?: string;
5
+ subtitle?: string;
6
+ required?: boolean;
7
+ name?: string;
8
+ stackGap?: 's' | 'm' | 'l';
9
+ };
10
+ export type UiSwitchEmits = {
11
+ 'update:modelValue': [value: boolean];
12
+ };