@brighterly/ui-kit 0.0.10 → 0.1.1
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/Buttons/ButtonCheckbox.vue.d.ts +13 -0
- package/dist/components/UI/Buttons/ButtonClose.vue.d.ts +18 -0
- package/dist/components/UI/Buttons/ButtonIcon.vue.d.ts +23 -0
- package/dist/components/UI/Buttons/ButtonKebab.vue.d.ts +14 -0
- package/dist/components/{Buttons → UI/Buttons}/ButtonPrimary.vue.d.ts +5 -3
- package/dist/components/UI/Buttons/ButtonRadio.vue.d.ts +13 -0
- package/dist/components/UI/Buttons/ButtonSecondary.vue.d.ts +38 -0
- package/dist/components/UI/Buttons/ButtonSecondaryIcon.vue.d.ts +15 -0
- package/dist/components/UI/Buttons/ButtonSimple.vue.d.ts +28 -0
- package/dist/components/UI/Buttons/ButtonSwitcher.vue.d.ts +20 -0
- package/dist/components/UI/Buttons/ButtonText.vue.d.ts +35 -0
- package/dist/components/UI/Buttons/ButtonToggle.vue.d.ts +13 -0
- package/dist/components/UI/Buttons/ButtonTransparentIcon.vue.d.ts +19 -0
- package/dist/components/UI/Other/IconContainer.vue.d.ts +22 -0
- package/dist/components/UI/Tooltips/TooltipDefault.vue.d.ts +26 -0
- package/dist/components/UI/Typography/ButtonTextQuaternary.vue.d.ts +30 -0
- package/dist/components/UI/Typography/ButtonTextSecondary.vue.d.ts +26 -0
- package/dist/components/UI/Typography/ButtonTextTertiary.vue.d.ts +30 -0
- package/dist/components/UI/Typography/ButtonTextTertiaryMedium.vue.d.ts +30 -0
- package/dist/index.d.ts +19 -1
- package/dist/ui-kit.css +1 -1
- package/dist/ui-kit.es.js +567 -829
- package/package.json +21 -13
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface BtnCheckboxProps {
|
|
2
|
+
checked?: boolean;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<BtnCheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
click: () => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<BtnCheckboxProps> & Readonly<{
|
|
8
|
+
onClick?: () => any;
|
|
9
|
+
}>, {
|
|
10
|
+
checked: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IconDefinition } from '@fortawesome/pro-solid-svg-icons';
|
|
2
|
+
interface BtnCloseProps {
|
|
3
|
+
icon?: IconDefinition;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
color?: 'gray';
|
|
6
|
+
size?: 'medium' | 'small';
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<BtnCloseProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
click: () => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<BtnCloseProps> & Readonly<{
|
|
11
|
+
onClick?: () => any;
|
|
12
|
+
}>, {
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
icon: IconDefinition;
|
|
15
|
+
size: "medium" | "small";
|
|
16
|
+
color: "gray";
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IconDefinition } from '@fortawesome/pro-solid-svg-icons';
|
|
2
|
+
interface BtnIconProps {
|
|
3
|
+
icon: IconDefinition;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
color?: 'blue' | 'gray' | 'transparent';
|
|
6
|
+
size?: 'big' | 'medium' | 'small';
|
|
7
|
+
tooltip?: string | null;
|
|
8
|
+
dataQa?: string | null;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<BtnIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
click: () => any;
|
|
12
|
+
"click:close": (args_0: Event) => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<BtnIconProps> & Readonly<{
|
|
14
|
+
onClick?: () => any;
|
|
15
|
+
"onClick:close"?: (args_0: Event) => any;
|
|
16
|
+
}>, {
|
|
17
|
+
disabled: boolean;
|
|
18
|
+
size: "big" | "medium" | "small";
|
|
19
|
+
color: "blue" | "gray" | "transparent";
|
|
20
|
+
tooltip: string | null;
|
|
21
|
+
dataQa: string | null;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
interface BtnKebabProps {
|
|
2
|
+
size?: 'big' | 'medium' | 'small';
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<BtnKebabProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
click: () => any;
|
|
7
|
+
"click:outside": () => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<BtnKebabProps> & Readonly<{
|
|
9
|
+
onClick?: () => any;
|
|
10
|
+
"onClick:outside"?: () => any;
|
|
11
|
+
}>, {
|
|
12
|
+
size: "big" | "medium" | "small";
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
14
|
+
export default _default;
|
|
@@ -10,7 +10,9 @@ interface BtnPrimaryProps {
|
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
11
|
attrs: Partial<{}>;
|
|
12
12
|
slots: {
|
|
13
|
+
iconLeft?(_: {}): any;
|
|
13
14
|
content?(_: {}): any;
|
|
15
|
+
iconRight?(_: {}): any;
|
|
14
16
|
};
|
|
15
17
|
refs: {};
|
|
16
18
|
rootEl: HTMLButtonElement;
|
|
@@ -21,13 +23,13 @@ declare const __VLS_component: import('vue').DefineComponent<BtnPrimaryProps, {}
|
|
|
21
23
|
}, string, import('vue').PublicProps, Readonly<BtnPrimaryProps> & Readonly<{
|
|
22
24
|
onClick?: () => any;
|
|
23
25
|
}>, {
|
|
24
|
-
text: string;
|
|
25
26
|
disabled: boolean;
|
|
26
|
-
color: "blue" | "orange" | "amber" | "red";
|
|
27
27
|
size: "big" | "medium" | "small";
|
|
28
|
-
|
|
28
|
+
text: string;
|
|
29
|
+
color: "blue" | "orange" | "amber" | "red";
|
|
29
30
|
tooltip: string | null;
|
|
30
31
|
dataQa: string | null;
|
|
32
|
+
elementWidth: "auto" | "full";
|
|
31
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
32
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
35
|
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface BtnRadioProps {
|
|
2
|
+
checked?: boolean;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<BtnRadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
click: () => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<BtnRadioProps> & Readonly<{
|
|
8
|
+
onClick?: () => any;
|
|
9
|
+
}>, {
|
|
10
|
+
checked: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
interface BtnSecondaryProps {
|
|
2
|
+
text?: string;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
size?: 'big' | 'medium' | 'small';
|
|
5
|
+
elementWidth?: 'auto' | 'full';
|
|
6
|
+
selected?: boolean;
|
|
7
|
+
color?: 'blue' | 'gray';
|
|
8
|
+
}
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
iconLeft?(_: {}): any;
|
|
13
|
+
iconRight?(_: {}): any;
|
|
14
|
+
tooltip?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: HTMLButtonElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnSecondaryProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
click: () => any;
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<BtnSecondaryProps> & Readonly<{
|
|
23
|
+
onClick?: () => any;
|
|
24
|
+
}>, {
|
|
25
|
+
disabled: boolean;
|
|
26
|
+
size: "big" | "medium" | "small";
|
|
27
|
+
text: string;
|
|
28
|
+
color: "blue" | "gray";
|
|
29
|
+
elementWidth: "auto" | "full";
|
|
30
|
+
selected: boolean;
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
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,15 @@
|
|
|
1
|
+
import { IconDefinition } from '@fortawesome/pro-solid-svg-icons';
|
|
2
|
+
interface BtnSecondaryIconProps {
|
|
3
|
+
icon: IconDefinition;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
color?: 'gray' | 'blue';
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<BtnSecondaryIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
click: () => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<BtnSecondaryIconProps> & Readonly<{
|
|
10
|
+
onClick?: () => any;
|
|
11
|
+
}>, {
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
color: "gray" | "blue";
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
interface BtnSimpleProps {
|
|
2
|
+
text: string;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
leftIcon?(_: {}): any;
|
|
9
|
+
rightIcon?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLButtonElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnSimpleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
click: () => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<BtnSimpleProps> & Readonly<{
|
|
18
|
+
onClick?: () => any;
|
|
19
|
+
}>, {
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
interface BtnSwitcherProps {
|
|
2
|
+
text: string;
|
|
3
|
+
emoji?: string | null;
|
|
4
|
+
label?: string | null;
|
|
5
|
+
tooltip?: string | null;
|
|
6
|
+
selected?: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import('vue').DefineComponent<BtnSwitcherProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
click: () => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<BtnSwitcherProps> & Readonly<{
|
|
12
|
+
onClick?: () => any;
|
|
13
|
+
}>, {
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
label: string | null;
|
|
16
|
+
tooltip: string | null;
|
|
17
|
+
selected: boolean;
|
|
18
|
+
emoji: string | null;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
interface BtnTextProps {
|
|
2
|
+
text?: string;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
color?: 'blue' | 'gray';
|
|
5
|
+
size?: 'medium' | 'small';
|
|
6
|
+
elementWidth?: 'auto' | 'full';
|
|
7
|
+
}
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
slots: {
|
|
11
|
+
iconLeft?(_: {}): any;
|
|
12
|
+
iconRight?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {};
|
|
15
|
+
rootEl: HTMLButtonElement;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
click: () => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<BtnTextProps> & Readonly<{
|
|
21
|
+
onClick?: () => any;
|
|
22
|
+
}>, {
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
size: "medium" | "small";
|
|
25
|
+
text: string;
|
|
26
|
+
color: "blue" | "gray";
|
|
27
|
+
elementWidth: "auto" | "full";
|
|
28
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface BtnToggleProps {
|
|
2
|
+
checked?: boolean;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<BtnToggleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
click: () => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<BtnToggleProps> & Readonly<{
|
|
8
|
+
onClick?: () => any;
|
|
9
|
+
}>, {
|
|
10
|
+
checked: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IconDefinition } from '@fortawesome/pro-solid-svg-icons';
|
|
2
|
+
interface BtnTransparentIconProps {
|
|
3
|
+
icon: IconDefinition;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
tooltip?: string | null;
|
|
6
|
+
dataQa?: string | null;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<BtnTransparentIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
click: () => any;
|
|
10
|
+
"click:close": (args_0: Event) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<BtnTransparentIconProps> & Readonly<{
|
|
12
|
+
onClick?: () => any;
|
|
13
|
+
"onClick:close"?: (args_0: Event) => any;
|
|
14
|
+
}>, {
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
tooltip: string | null;
|
|
17
|
+
dataQa: string | null;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface IconContainerProps {
|
|
2
|
+
is?: 'span' | 'div';
|
|
3
|
+
}
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<IconContainerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IconContainerProps> & Readonly<{}>, {
|
|
14
|
+
is: "span" | "div";
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
interface TooltipDefaultProps {
|
|
2
|
+
text?: string;
|
|
3
|
+
size?: 'default' | 'small';
|
|
4
|
+
placement?: 'left' | 'center' | 'right';
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<TooltipDefaultProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipDefaultProps> & Readonly<{}>, {
|
|
16
|
+
size: "default" | "small";
|
|
17
|
+
text: string;
|
|
18
|
+
placement: "left" | "center" | "right";
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface BtnTextQuaternaryProps {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
underline?: boolean;
|
|
4
|
+
color?: 'default' | 'indigo';
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLButtonElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnTextQuaternaryProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
click: () => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<BtnTextQuaternaryProps> & Readonly<{
|
|
18
|
+
onClick?: () => any;
|
|
19
|
+
}>, {
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
color: "default" | "indigo";
|
|
22
|
+
underline: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
interface TextQuaternaryProps {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: HTMLButtonElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<TextQuaternaryProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
click: () => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<TextQuaternaryProps> & Readonly<{
|
|
16
|
+
onClick?: () => any;
|
|
17
|
+
}>, {
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface BtnTextTertiaryProps {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
underline?: boolean;
|
|
4
|
+
color?: 'default' | 'indigo';
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLButtonElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnTextTertiaryProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
click: () => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<BtnTextTertiaryProps> & Readonly<{
|
|
18
|
+
onClick?: () => any;
|
|
19
|
+
}>, {
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
color: "default" | "indigo";
|
|
22
|
+
underline: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface BtnTextTertiaryMediumProps {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
underline?: boolean;
|
|
4
|
+
color?: 'default' | 'indigo';
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLButtonElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<BtnTextTertiaryMediumProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
click: () => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<BtnTextTertiaryMediumProps> & Readonly<{
|
|
18
|
+
onClick?: () => any;
|
|
19
|
+
}>, {
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
color: "default" | "indigo";
|
|
22
|
+
underline: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,19 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as ButtonCheckbox } from './components/UI/Buttons/ButtonCheckbox.vue';
|
|
2
|
+
export { default as ButtonClose } from './components/UI/Buttons/ButtonClose.vue';
|
|
3
|
+
export { default as ButtonIcon } from './components/UI/Buttons/ButtonIcon.vue';
|
|
4
|
+
export { default as ButtonKebab } from './components/UI/Buttons/ButtonKebab.vue';
|
|
5
|
+
export { default as ButtonPrimary } from './components/UI/Buttons/ButtonPrimary.vue';
|
|
6
|
+
export { default as ButtonRadio } from './components/UI/Buttons/ButtonRadio.vue';
|
|
7
|
+
export { default as ButtonSecondary } from './components/UI/Buttons/ButtonSecondary.vue';
|
|
8
|
+
export { default as ButtonSecondaryIcon } from './components/UI/Buttons/ButtonSecondaryIcon.vue';
|
|
9
|
+
export { default as ButtonSimple } from './components/UI/Buttons/ButtonSimple.vue';
|
|
10
|
+
export { default as ButtonSwitcher } from './components/UI/Buttons/ButtonSwitcher.vue';
|
|
11
|
+
export { default as ButtonText } from './components/UI/Buttons/ButtonText.vue';
|
|
12
|
+
export { default as ButtonToggle } from './components/UI/Buttons/ButtonToggle.vue';
|
|
13
|
+
export { default as ButtonTransparentIcon } from './components/UI/Buttons/ButtonTransparentIcon.vue';
|
|
14
|
+
export { default as IconContainer } from './components/UI/Other/IconContainer.vue';
|
|
15
|
+
export { default as TooltipDefault } from './components/UI/Tooltips/TooltipDefault.vue';
|
|
16
|
+
export { default as ButtonTextQuaternary } from './components/UI/Typography/ButtonTextQuaternary.vue';
|
|
17
|
+
export { default as ButtonTextSecondary } from './components/UI/Typography/ButtonTextSecondary.vue';
|
|
18
|
+
export { default as ButtonTextTertiary } from './components/UI/Typography/ButtonTextTertiary.vue';
|
|
19
|
+
export { default as ButtonTextTertiaryMedium } from './components/UI/Typography/ButtonTextTertiaryMedium.vue';
|