@huntflow/ui 0.1.1 → 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 (60) 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/{ui-icon → base-icon}/types.d.ts +1 -1
  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 -5
  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 +425 -496
  41. package/package.json +2 -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.vue.d.ts +0 -3
  49. package/dist/components/ui-icon/index.d.ts +0 -4
  50. package/dist/components/ui-input/index.d.ts +0 -3
  51. package/dist/components/ui-label/index.d.ts +0 -2
  52. package/dist/components/ui-loader/index.d.ts +0 -3
  53. package/dist/components/ui-loader/loader.vue.d.ts +0 -6
  54. package/dist/components/ui-loader/types.d.ts +0 -6
  55. package/dist/components/ui-plank/index.d.ts +0 -3
  56. package/dist/components/ui-plank/types.d.ts +0 -7
  57. package/dist/components/ui-text/index.d.ts +0 -3
  58. package/dist/components/ui-title/index.d.ts +0 -3
  59. package/dist/sprite-DZhFK9-p.js +0 -4
  60. /package/dist/components/{ui-button-link → button-link}/button-link.vue.d.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { UiButtonProps } from './types';
1
+ import { BaseButtonProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -10,14 +10,14 @@ declare function __VLS_template(): {
10
10
  rootEl: HTMLButtonElement;
11
11
  };
12
12
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
- declare const __VLS_component: import('vue').DefineComponent<UiButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ declare const __VLS_component: import('vue').DefineComponent<BaseButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
14
  click: () => any;
15
- }, string, import('vue').PublicProps, Readonly<UiButtonProps> & Readonly<{
15
+ }, string, import('vue').PublicProps, Readonly<BaseButtonProps> & Readonly<{
16
16
  onClick?: (() => any) | undefined;
17
17
  }>, {
18
- size: import('./types').UiButtonSize;
18
+ size: import('./types').BaseButtonSize;
19
19
  circle: boolean;
20
- type: import('./types').UiButtonType;
20
+ type: import('./types').BaseButtonType;
21
21
  disabled: boolean;
22
22
  loading: boolean;
23
23
  dropdown: boolean;
@@ -0,0 +1,3 @@
1
+ import { default as BaseButton } from './button.vue';
2
+ export type { BaseButtonProps } from './types';
3
+ export { BaseButton };
@@ -0,0 +1,16 @@
1
+ export type BaseButtonProps = {
2
+ size?: BaseButtonSize;
3
+ className?: string;
4
+ type?: BaseButtonType;
5
+ disabled?: boolean;
6
+ loading?: boolean;
7
+ dropdown?: boolean;
8
+ active?: boolean;
9
+ name?: string;
10
+ circle?: boolean;
11
+ bordered?: boolean;
12
+ htmlType?: BaseButtonHTMLType;
13
+ };
14
+ export type BaseButtonSize = 's' | 'xs' | 'm' | 'l';
15
+ export type BaseButtonType = 'primary' | 'secondary' | 'accent' | 'danger' | 'jobsites' | 'ghost' | 'ghost-danger';
16
+ export type BaseButtonHTMLType = 'button' | 'submit' | 'reset';
@@ -0,0 +1,33 @@
1
+ type Props = {
2
+ id?: string;
3
+ name?: string;
4
+ disabled?: boolean;
5
+ label?: string;
6
+ error?: string | null | void;
7
+ className?: string;
8
+ };
9
+ type __VLS_Props = Props;
10
+ type __VLS_PublicProps = {
11
+ 'checked'?: boolean;
12
+ } & __VLS_Props;
13
+ declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
15
+ slots: {
16
+ default?(_: {}): any;
17
+ };
18
+ refs: {};
19
+ rootEl: HTMLDivElement;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
+ "update:checked": (value: boolean) => any;
24
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
+ "onUpdate:checked"?: ((value: boolean) => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
28
+ export default _default;
29
+ type __VLS_WithTemplateSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,3 @@
1
+ import { default as BaseCheckbox } from './checkbox.vue';
2
+ export type { BaseCheckboxProps } from './types';
3
+ export { BaseCheckbox };
@@ -0,0 +1,10 @@
1
+ export type BaseCheckboxProps = {
2
+ className?: string;
3
+ type?: BaseCheckboxType;
4
+ block?: boolean;
5
+ disabled?: boolean;
6
+ loading?: boolean;
7
+ name?: string;
8
+ bordered?: boolean;
9
+ };
10
+ export type BaseCheckboxType = 'primary' | 'danger' | 'default';
@@ -0,0 +1,3 @@
1
+ import { BaseIconProps } from './types.ts';
2
+ declare const _default: import('vue').DefineComponent<BaseIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, SVGSVGElement>;
3
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as BaseIcon } from './icon.vue';
2
+ export type { BaseIconProps, IconType } from './types';
3
+ declare const injectSvgSprite: () => Promise<void>;
4
+ export { BaseIcon, injectSvgSprite };
@@ -1,6 +1,6 @@
1
1
  import { default as icons } from '../../assets/icon-list.json';
2
2
  export type IconType = (typeof icons)[number];
3
- export type UiIconProps = {
3
+ export type BaseIconProps = {
4
4
  type: IconType;
5
5
  color?: string;
6
6
  block?: boolean;
@@ -0,0 +1,3 @@
1
+ import { default as BaseInput } from './input.vue';
2
+ export type { BaseInputProps } from './types';
3
+ export { BaseInput };
@@ -1,27 +1,23 @@
1
- import { UiInputProps } from './types';
2
- type __VLS_Props = UiInputProps;
1
+ import { BaseInputProps } from './types';
2
+ type __VLS_Props = BaseInputProps;
3
3
  type __VLS_PublicProps = {
4
4
  'value'?: string;
5
5
  } & __VLS_Props;
6
6
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
7
  "update:value": (value: string) => any;
8
8
  } & {
9
- click: () => any;
10
9
  "update:value": (value: string) => any;
11
10
  enter: () => any;
12
11
  "click-link": () => any;
13
- "click-icon": () => any;
14
12
  focus: () => any;
15
13
  blur: () => any;
16
14
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
- onClick?: (() => any) | undefined;
18
15
  "onUpdate:value"?: ((value: string) => any) | undefined;
19
16
  onEnter?: (() => any) | undefined;
20
17
  "onClick-link"?: (() => any) | undefined;
21
- "onClick-icon"?: (() => any) | undefined;
22
18
  onFocus?: (() => any) | undefined;
23
19
  onBlur?: (() => any) | undefined;
24
20
  }>, {
25
- type: import('./types').UiInputType;
21
+ type: import('./types').BaseInputType;
26
22
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
27
23
  export default _default;
@@ -1,6 +1,6 @@
1
- export type UiInputProps = {
1
+ export type BaseInputProps = {
2
2
  value: string;
3
- type?: UiInputType;
3
+ type?: BaseInputType;
4
4
  id?: string;
5
5
  name?: string;
6
6
  disabled?: boolean;
@@ -13,7 +13,5 @@ export type UiInputProps = {
13
13
  error?: string | null | void;
14
14
  description?: string | null | void;
15
15
  className?: string;
16
- leftIcon?: string;
17
- rightIcon?: string;
18
16
  };
19
- export type UiInputType = 'text' | 'password' | 'email' | 'tel' | 'search';
17
+ export type BaseInputType = 'text' | 'password' | 'email' | 'tel' | 'search';
@@ -0,0 +1,2 @@
1
+ import { default as BaseLabel } from './label.vue';
2
+ export { BaseLabel };
@@ -7,14 +7,14 @@ declare function __VLS_template(): {
7
7
  link?(_: {}): any;
8
8
  };
9
9
  refs: {};
10
- rootEl: any;
10
+ rootEl: HTMLLabelElement;
11
11
  };
12
12
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
13
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
14
  click: () => any;
15
15
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
16
16
  onClick?: (() => any) | undefined;
17
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLabelElement>;
18
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
19
  export default _default;
20
20
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -0,0 +1,3 @@
1
+ import { default as BaseLoader } from './loader.vue';
2
+ export type { BaseLoaderSize } from './types';
3
+ export { BaseLoader };
@@ -0,0 +1,6 @@
1
+ import { BaseLoaderProps } from './types.ts';
2
+ declare const _default: import('vue').DefineComponent<BaseLoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseLoaderProps> & Readonly<{}>, {
3
+ size: import('./types.ts').BaseLoaderSize;
4
+ color: "white" | "black";
5
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ export type BaseLoaderProps = {
2
+ className?: string;
3
+ size: BaseLoaderSize;
4
+ color?: 'white' | 'black';
5
+ };
6
+ export type BaseLoaderSize = 's' | 'm' | 'l';
@@ -1,4 +1,4 @@
1
- import { UiPlankProps } from './types.ts';
1
+ import { BasePlankProps } from './types.ts';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -8,12 +8,12 @@ declare function __VLS_template(): {
8
8
  rootEl: HTMLDivElement;
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: import('vue').DefineComponent<UiPlankProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ declare const __VLS_component: import('vue').DefineComponent<BasePlankProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
12
  click: () => any;
13
- }, string, import('vue').PublicProps, Readonly<UiPlankProps> & Readonly<{
13
+ }, string, import('vue').PublicProps, Readonly<BasePlankProps> & Readonly<{
14
14
  onClick?: (() => any) | undefined;
15
15
  }>, {
16
- type: import('./types.ts').UiPlankType;
16
+ type: import('./types.ts').BasePlankType;
17
17
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
19
  export default _default;
@@ -0,0 +1,3 @@
1
+ import { default as BasePlank } from './base-plank.vue';
2
+ export type { BasePlankProps } from './types.ts';
3
+ export { BasePlank };
@@ -0,0 +1,7 @@
1
+ import { IconType } from '../index';
2
+ export type BasePlankProps = {
3
+ type?: BasePlankType;
4
+ icon?: IconType;
5
+ label?: string;
6
+ };
7
+ export type BasePlankType = 'default' | 'accent' | 'danger';
@@ -0,0 +1,3 @@
1
+ import { default as BaseSelect } from './select.vue';
2
+ export type { BaseSelectProps } from './types';
3
+ export { BaseSelect };
@@ -0,0 +1,38 @@
1
+ import { BaseSelectProps } from './types.ts';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ icon?(_: {
6
+ icon: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
7
+ [key: string]: any;
8
+ }>;
9
+ }): any;
10
+ icon?(_: {
11
+ icon: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
12
+ [key: string]: any;
13
+ }>;
14
+ }): any;
15
+ };
16
+ refs: {
17
+ 'base-select': HTMLDivElement;
18
+ };
19
+ rootEl: HTMLDivElement;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: import('vue').DefineComponent<BaseSelectProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
23
+ "update:value": (value: string | number) => any;
24
+ }, string, import('vue').PublicProps, Readonly<BaseSelectProps> & Readonly<{
25
+ "onUpdate:value"?: ((value: string | number) => any) | undefined;
26
+ }>, {
27
+ size: import('./types.ts').BaseSelectSize;
28
+ placeholder: string;
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
30
+ 'base-select': HTMLDivElement;
31
+ }, HTMLDivElement>;
32
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
+ export default _default;
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -0,0 +1,20 @@
1
+ import { VNode } from 'vue';
2
+ export type BaseSelectProps = {
3
+ value?: number | string | null;
4
+ name?: string;
5
+ placeholder?: string;
6
+ label?: string;
7
+ size?: BaseSelectSize;
8
+ className?: string;
9
+ disabled?: boolean;
10
+ loading?: boolean;
11
+ options?: BaseSelectOption[];
12
+ };
13
+ export type BaseSelectOption = {
14
+ id: number;
15
+ title: VNode;
16
+ icon?: VNode;
17
+ disabled?: boolean;
18
+ value: number | string;
19
+ };
20
+ export type BaseSelectSize = 'xs' | 's' | 'm' | 'l' | 'xl';
@@ -0,0 +1,3 @@
1
+ import { default as BaseText } from './text.vue';
2
+ export type { BaseTextProps } from './types';
3
+ export { BaseText };
@@ -1,4 +1,4 @@
1
- import { UiTextProps } from './types';
1
+ import { BaseTextProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -8,7 +8,7 @@ declare function __VLS_template(): {
8
8
  rootEl: any;
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: import('vue').DefineComponent<UiTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<UiTextProps> & Readonly<{}>, {
11
+ declare const __VLS_component: import('vue').DefineComponent<BaseTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseTextProps> & Readonly<{}>, {
12
12
  tagName: string;
13
13
  kind: "primary" | "secondary" | "accent" | "subtitle";
14
14
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,4 +1,4 @@
1
- export type UiTextProps = {
1
+ export type BaseTextProps = {
2
2
  tagName?: string;
3
3
  kind?: 'primary' | 'secondary' | 'accent' | 'subtitle';
4
4
  weight?: 'medium';
@@ -0,0 +1,3 @@
1
+ import { default as BaseTitle } from './title.vue';
2
+ export type { BaseTitleProps } from './types';
3
+ export { BaseTitle };
@@ -1,4 +1,4 @@
1
- import { UiTitleProps } from './types';
1
+ import { BaseTitleProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -8,7 +8,7 @@ declare function __VLS_template(): {
8
8
  rootEl: any;
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: import('vue').DefineComponent<UiTitleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<UiTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_component: import('vue').DefineComponent<BaseTitleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
12
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
13
  export default _default;
14
14
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,4 +1,4 @@
1
- export type UiTitleProps = {
1
+ export type BaseTitleProps = {
2
2
  level: 1 | 2 | 3 | 4;
3
3
  className?: string;
4
4
  weight?: 'medium';
@@ -0,0 +1,15 @@
1
+ import { ButtonIconProps } from './types';
2
+ declare const _default: import('vue').DefineComponent<ButtonIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
3
+ click: () => any;
4
+ }, string, import('vue').PublicProps, Readonly<ButtonIconProps> & Readonly<{
5
+ onClick?: (() => any) | undefined;
6
+ }>, {
7
+ size: import('./types').ButtonIconSize;
8
+ circle: boolean;
9
+ type: import('./types').ButtonIconType;
10
+ disabled: boolean;
11
+ loading: boolean;
12
+ active: boolean;
13
+ bordered: boolean;
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
15
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { default as ButtonIcon } from './button-icon.vue';
2
+ export { ButtonIcon };
@@ -0,0 +1,14 @@
1
+ export type ButtonIconProps = {
2
+ icon: string;
3
+ size?: ButtonIconSize;
4
+ className?: string;
5
+ type?: ButtonIconType;
6
+ disabled?: boolean;
7
+ loading?: boolean;
8
+ active?: boolean;
9
+ name?: string;
10
+ circle?: boolean;
11
+ bordered?: boolean;
12
+ };
13
+ export type ButtonIconSize = 's' | 'xs' | 'm' | 'l';
14
+ export type ButtonIconType = 'primary' | 'secondary' | 'accent' | 'danger';
@@ -0,0 +1,2 @@
1
+ import { default as ButtonLink } from './button-link.vue';
2
+ export { ButtonLink };
@@ -1,17 +1,19 @@
1
- export { UiButton } from './ui-button';
2
- export type { UiButtonProps } from './ui-button';
3
- export { UiButtonIcon } from './ui-button-icon';
4
- export { UiButtonLink } from './ui-button-link';
5
- export { UiIcon, injectSvgSprite } from './ui-icon';
6
- export type { UiIconProps, IconType } from './ui-icon';
7
- export { UiInput } from './ui-input';
8
- export type { UiInputProps } from './ui-input';
9
- export { UiLabel } from './ui-label';
10
- export { UiLoader } from './ui-loader';
11
- export type { UiLoaderSize } from './ui-loader';
12
- export { UiPlank } from './ui-plank';
13
- export type { UiPlankProps } from './ui-plank';
14
- export { UiText } from './ui-text';
15
- export type { UiTextProps } from './ui-text';
16
- export { UiTitle } from './ui-title';
17
- export type { UiTitleProps } from './ui-title';
1
+ export { BaseButton } from './base-button';
2
+ export type { BaseButtonProps } from './base-button';
3
+ export { BaseInput } from './base-input';
4
+ export type { BaseInputProps } from './base-input';
5
+ export { BaseCheckbox } from './base-checkbox';
6
+ export type { BaseCheckboxProps } from './base-checkbox';
7
+ export { BaseIcon, injectSvgSprite } from './base-icon';
8
+ export type { BaseIconProps, IconType } from './base-icon';
9
+ export { BaseLoader } from './base-loader';
10
+ export type { BaseLoaderSize } from './base-loader';
11
+ export { BaseLabel } from './base-label';
12
+ export { BaseTitle } from './base-title';
13
+ export type { BaseTitleProps } from './base-title';
14
+ export { BaseText } from './base-text';
15
+ export type { BaseTextProps } from './base-text';
16
+ export { ButtonIcon } from './button-icon';
17
+ export { ButtonLink } from './button-link';
18
+ export { BasePlank } from './base-plank';
19
+ export type { BasePlankProps } from './base-plank';