@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.
Files changed (62) hide show
  1. package/dist/components/{ui-button → base-button}/button.vue.d.ts +5 -5
  2. package/dist/components/base-button/index.d.ts +3 -0
  3. package/dist/components/base-button/types.d.ts +16 -0
  4. package/dist/components/base-checkbox/checkbox.vue.d.ts +33 -0
  5. package/dist/components/base-checkbox/index.d.ts +3 -0
  6. package/dist/components/base-checkbox/types.d.ts +10 -0
  7. package/dist/components/base-icon/icon.vue.d.ts +3 -0
  8. package/dist/components/base-icon/index.d.ts +4 -0
  9. package/dist/components/base-icon/types.d.ts +7 -0
  10. package/dist/components/base-input/index.d.ts +3 -0
  11. package/dist/components/{ui-input → base-input}/input.vue.d.ts +3 -7
  12. package/dist/components/{ui-input → base-input}/types.d.ts +3 -6
  13. package/dist/components/base-label/index.d.ts +2 -0
  14. package/dist/components/{ui-label → base-label}/label.vue.d.ts +2 -2
  15. package/dist/components/base-loader/index.d.ts +3 -0
  16. package/dist/components/base-loader/loader.vue.d.ts +6 -0
  17. package/dist/components/base-loader/types.d.ts +6 -0
  18. package/dist/components/{ui-plank/plank.vue.d.ts → base-plank/base-plank.vue.d.ts} +4 -4
  19. package/dist/components/base-plank/index.d.ts +3 -0
  20. package/dist/components/base-plank/types.d.ts +7 -0
  21. package/dist/components/base-select/index.d.ts +3 -0
  22. package/dist/components/base-select/select.vue.d.ts +38 -0
  23. package/dist/components/base-select/types.d.ts +20 -0
  24. package/dist/components/base-text/index.d.ts +3 -0
  25. package/dist/components/{ui-text → base-text}/text.vue.d.ts +2 -2
  26. package/dist/components/{ui-text → base-text}/types.d.ts +1 -1
  27. package/dist/components/base-title/index.d.ts +3 -0
  28. package/dist/components/{ui-title → base-title}/title.vue.d.ts +2 -2
  29. package/dist/components/{ui-title → base-title}/types.d.ts +1 -1
  30. package/dist/components/button-icon/button-icon.vue.d.ts +15 -0
  31. package/dist/components/button-icon/index.d.ts +2 -0
  32. package/dist/components/button-icon/types.d.ts +14 -0
  33. package/dist/components/button-link/index.d.ts +2 -0
  34. package/dist/components/index.d.ts +19 -17
  35. package/dist/global.css +1 -1
  36. package/dist/sprite-CRtOoHbV.js +4 -0
  37. package/dist/sprite-CTNw4BII.cjs +1 -0
  38. package/dist/sprite.svg +1 -1
  39. package/dist/ui.cjs.js +6 -0
  40. package/dist/ui.es.js +429 -500
  41. package/package.json +1 -1
  42. package/dist/components/ui-button/index.d.ts +0 -3
  43. package/dist/components/ui-button/types.d.ts +0 -16
  44. package/dist/components/ui-button-icon/button-icon.vue.d.ts +0 -15
  45. package/dist/components/ui-button-icon/index.d.ts +0 -2
  46. package/dist/components/ui-button-icon/types.d.ts +0 -14
  47. package/dist/components/ui-button-link/index.d.ts +0 -2
  48. package/dist/components/ui-icon/icon-list.d.ts +0 -1
  49. package/dist/components/ui-icon/icon.vue.d.ts +0 -3
  50. package/dist/components/ui-icon/index.d.ts +0 -4
  51. package/dist/components/ui-icon/types.d.ts +0 -7
  52. package/dist/components/ui-input/index.d.ts +0 -3
  53. package/dist/components/ui-label/index.d.ts +0 -2
  54. package/dist/components/ui-loader/index.d.ts +0 -3
  55. package/dist/components/ui-loader/loader.vue.d.ts +0 -6
  56. package/dist/components/ui-loader/types.d.ts +0 -6
  57. package/dist/components/ui-plank/index.d.ts +0 -3
  58. package/dist/components/ui-plank/types.d.ts +0 -7
  59. package/dist/components/ui-text/index.d.ts +0 -3
  60. package/dist/components/ui-title/index.d.ts +0 -3
  61. package/dist/sprite-DZhFK9-p.js +0 -4
  62. /package/dist/components/{ui-button-link → button-link}/button-link.vue.d.ts +0 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@huntflow/ui",
3
3
  "description": "HuntFlow UiKit, icons, utils library",
4
4
  "private": false,
5
- "version": "0.1.2",
5
+ "version": "0.1.3",
6
6
  "author": {
7
7
  "name": "HuntFlow Developer",
8
8
  "nickname": "developer",
@@ -1,3 +0,0 @@
1
- import { default as UiButton } from './button.vue';
2
- export type { UiButtonProps } from './types';
3
- export { UiButton };
@@ -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,2 +0,0 @@
1
- import { default as UiButtonIcon } from './button-icon.vue';
2
- export { UiButtonIcon };
@@ -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,2 +0,0 @@
1
- import { default as UiButtonLink } from './button-link.vue';
2
- export { UiButtonLink };
@@ -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,4 +0,0 @@
1
- import { default as UiIcon } from './icon.vue';
2
- export type { UiIconProps, IconType } from './types';
3
- declare const injectSvgSprite: () => Promise<void>;
4
- export { UiIcon, injectSvgSprite };
@@ -1,7 +0,0 @@
1
- import { icons } from './icon-list.ts';
2
- export type IconType = typeof icons[number];
3
- export type UiIconProps = {
4
- name: IconType;
5
- color?: string;
6
- block?: boolean;
7
- };
@@ -1,3 +0,0 @@
1
- import { default as UiInput } from './input.vue';
2
- export type { UiInputProps } from './types';
3
- export { UiInput };
@@ -1,2 +0,0 @@
1
- import { default as UiLabel } from './label.vue';
2
- export { UiLabel };
@@ -1,3 +0,0 @@
1
- import { default as UiLoader } from './loader.vue';
2
- export type { UiLoaderSize } from './types';
3
- export { UiLoader };
@@ -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;
@@ -1,6 +0,0 @@
1
- export type UiLoaderProps = {
2
- className?: string;
3
- size: UiLoaderSize;
4
- color?: 'white' | 'black';
5
- };
6
- export type UiLoaderSize = 's' | 'm' | 'l';
@@ -1,3 +0,0 @@
1
- import { default as UiPlank } from './plank.vue';
2
- export type { UiPlankProps } from './types.ts';
3
- export { UiPlank };
@@ -1,7 +0,0 @@
1
- import { IconType } from '../index';
2
- export type UiPlankProps = {
3
- type?: UiPlankType;
4
- icon?: IconType;
5
- label?: string;
6
- };
7
- export type UiPlankType = 'default' | 'accent' | 'danger';
@@ -1,3 +0,0 @@
1
- import { default as UiText } from './text.vue';
2
- export type { UiTextProps } from './types';
3
- export { UiText };
@@ -1,3 +0,0 @@
1
- import { default as UiTitle } from './title.vue';
2
- export type { UiTitleProps } from './types';
3
- export { UiTitle };