@huntflow/ui 0.1.2 → 0.1.3
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/components/{ui-button → base-button}/button.vue.d.ts +5 -5
- package/dist/components/base-button/index.d.ts +3 -0
- package/dist/components/base-button/types.d.ts +16 -0
- package/dist/components/base-checkbox/checkbox.vue.d.ts +33 -0
- package/dist/components/base-checkbox/index.d.ts +3 -0
- package/dist/components/base-checkbox/types.d.ts +10 -0
- package/dist/components/base-icon/icon.vue.d.ts +3 -0
- package/dist/components/base-icon/index.d.ts +4 -0
- package/dist/components/base-icon/types.d.ts +7 -0
- package/dist/components/base-input/index.d.ts +3 -0
- package/dist/components/{ui-input → base-input}/input.vue.d.ts +3 -7
- package/dist/components/{ui-input → base-input}/types.d.ts +3 -6
- package/dist/components/base-label/index.d.ts +2 -0
- package/dist/components/{ui-label → base-label}/label.vue.d.ts +2 -2
- package/dist/components/base-loader/index.d.ts +3 -0
- package/dist/components/base-loader/loader.vue.d.ts +6 -0
- package/dist/components/base-loader/types.d.ts +6 -0
- package/dist/components/{ui-plank/plank.vue.d.ts → base-plank/base-plank.vue.d.ts} +4 -4
- package/dist/components/base-plank/index.d.ts +3 -0
- package/dist/components/base-plank/types.d.ts +7 -0
- package/dist/components/base-select/index.d.ts +3 -0
- package/dist/components/base-select/select.vue.d.ts +38 -0
- package/dist/components/base-select/types.d.ts +20 -0
- package/dist/components/base-text/index.d.ts +3 -0
- package/dist/components/{ui-text → base-text}/text.vue.d.ts +2 -2
- package/dist/components/{ui-text → base-text}/types.d.ts +1 -1
- package/dist/components/base-title/index.d.ts +3 -0
- package/dist/components/{ui-title → base-title}/title.vue.d.ts +2 -2
- package/dist/components/{ui-title → base-title}/types.d.ts +1 -1
- package/dist/components/button-icon/button-icon.vue.d.ts +15 -0
- package/dist/components/button-icon/index.d.ts +2 -0
- package/dist/components/button-icon/types.d.ts +14 -0
- package/dist/components/button-link/index.d.ts +2 -0
- package/dist/components/index.d.ts +19 -17
- package/dist/global.css +1 -1
- package/dist/sprite-CRtOoHbV.js +4 -0
- package/dist/sprite-CTNw4BII.cjs +1 -0
- package/dist/sprite.svg +1 -1
- package/dist/ui.cjs.js +6 -0
- package/dist/ui.es.js +429 -500
- package/package.json +1 -1
- package/dist/components/ui-button/index.d.ts +0 -3
- package/dist/components/ui-button/types.d.ts +0 -16
- package/dist/components/ui-button-icon/button-icon.vue.d.ts +0 -15
- package/dist/components/ui-button-icon/index.d.ts +0 -2
- package/dist/components/ui-button-icon/types.d.ts +0 -14
- package/dist/components/ui-button-link/index.d.ts +0 -2
- package/dist/components/ui-icon/icon-list.d.ts +0 -1
- package/dist/components/ui-icon/icon.vue.d.ts +0 -3
- package/dist/components/ui-icon/index.d.ts +0 -4
- package/dist/components/ui-icon/types.d.ts +0 -7
- package/dist/components/ui-input/index.d.ts +0 -3
- package/dist/components/ui-label/index.d.ts +0 -2
- package/dist/components/ui-loader/index.d.ts +0 -3
- package/dist/components/ui-loader/loader.vue.d.ts +0 -6
- package/dist/components/ui-loader/types.d.ts +0 -6
- package/dist/components/ui-plank/index.d.ts +0 -3
- package/dist/components/ui-plank/types.d.ts +0 -7
- package/dist/components/ui-text/index.d.ts +0 -3
- package/dist/components/ui-title/index.d.ts +0 -3
- package/dist/sprite-DZhFK9-p.js +0 -4
- /package/dist/components/{ui-button-link → button-link}/button-link.vue.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export type UiButtonProps = {
|
|
2
|
-
size?: UiButtonSize;
|
|
3
|
-
className?: string;
|
|
4
|
-
type?: UiButtonType;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
loading?: boolean;
|
|
7
|
-
dropdown?: boolean;
|
|
8
|
-
active?: boolean;
|
|
9
|
-
name?: string;
|
|
10
|
-
circle?: boolean;
|
|
11
|
-
bordered?: boolean;
|
|
12
|
-
htmlType?: UiButtonHTMLType;
|
|
13
|
-
};
|
|
14
|
-
export type UiButtonSize = 's' | 'xs' | 'm' | 'l';
|
|
15
|
-
export type UiButtonType = 'primary' | 'secondary' | 'accent' | 'jobsites' | 'ghost' | 'ghost-danger' | 'danger';
|
|
16
|
-
export type UiButtonHTMLType = 'button' | 'submit' | 'reset';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UiButtonIconProps } from './types';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<UiButtonIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
-
click: () => any;
|
|
4
|
-
}, string, import('vue').PublicProps, Readonly<UiButtonIconProps> & Readonly<{
|
|
5
|
-
onClick?: (() => any) | undefined;
|
|
6
|
-
}>, {
|
|
7
|
-
size: import('./types').UiButtonIconSize;
|
|
8
|
-
circle: boolean;
|
|
9
|
-
type: import('./types').UiButtonIconType;
|
|
10
|
-
disabled: boolean;
|
|
11
|
-
loading: boolean;
|
|
12
|
-
active: boolean;
|
|
13
|
-
bordered: boolean;
|
|
14
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
15
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export type UiButtonIconProps = {
|
|
2
|
-
icon: string;
|
|
3
|
-
size?: UiButtonIconSize;
|
|
4
|
-
className?: string;
|
|
5
|
-
type?: UiButtonIconType;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
loading?: boolean;
|
|
8
|
-
active?: boolean;
|
|
9
|
-
name?: string;
|
|
10
|
-
circle?: boolean;
|
|
11
|
-
bordered?: boolean;
|
|
12
|
-
};
|
|
13
|
-
export type UiButtonIconSize = 's' | 'xs' | 'm' | 'l';
|
|
14
|
-
export type UiButtonIconType = 'primary' | 'secondary' | 'accent' | 'danger';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const icons: readonly ["ai-20", "alert-20", "alert-24", "alert-fill-20", "alert-fill-24", "archive-16", "archive-18", "archive-20", "archive-24", "archive-28", "arrow-down-20", "arrow-left-18", "arrow-left-20", "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", "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-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-18", "drag-16", "drag-20", "drag-24", "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", "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-color-16", "lock-color-18", "lock-color-20", "lock-color-24", "lock-color-28", "message-16", "message-18", "message-20", "message-24", "message-28", "mute-20", "mute-fill-20", "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-20", "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-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", "team-24", "telegram-16", "telegram-18", "telegram-20", "telegram-24", "telegram-28", "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-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-20", "viber-contour-24", "viber-contour-28", "whatsapp-16", "whatsapp-18", "whatsapp-20", "whatsapp-24", "whatsapp-28", "x-circle-20", "zoom-16", "zoom-18", "zoom-20", "zoom-24", "zoom-28"];
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { UiIconProps } from './types.ts';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<UiIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<UiIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
3
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { UiLoaderProps } from './types.ts';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<UiLoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<UiLoaderProps> & Readonly<{}>, {
|
|
3
|
-
size: import('./types.ts').UiLoaderSize;
|
|
4
|
-
color: "white" | "black";
|
|
5
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
6
|
-
export default _default;
|