sep-yui 0.1.3 → 0.1.5
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/common/dataTestidProps.d.ts +3 -0
- package/dist/components/Accordion/Accordion.vue.d.ts +26 -1
- package/dist/components/Accordion/interfaces/interfaces.d.ts +4 -0
- package/dist/components/Badges/Badges.vue.d.ts +3 -0
- package/dist/components/Badges/interface/interface.d.ts +2 -1
- package/dist/components/BreadCrumbs/BreadCrumbs.vue.d.ts +9 -3
- package/dist/components/BreadCrumbs/interface/interface.d.ts +3 -1
- package/dist/components/Button/Button.vue.d.ts +3 -0
- package/dist/components/Button/interface/interface.d.ts +2 -1
- package/dist/components/Card/Card.vue.d.ts +26 -1
- package/dist/components/Card/interface/interface.d.ts +4 -0
- package/dist/components/Checkbox/Checkbox.vue.d.ts +3 -0
- package/dist/components/Checkbox/interface/interface.d.ts +2 -1
- package/dist/components/CircularProgress/CircularProgress.vue.d.ts +7 -1
- package/dist/components/CircularProgress/interface/interface.d.ts +3 -1
- package/dist/components/CopyIcon/CopyIcon.vue.d.ts +3 -0
- package/dist/components/CopyIcon/interface/interface.d.ts +3 -1
- package/dist/components/Dialog/Dialog.vue.d.ts +17 -3
- package/dist/components/Dialog/interface/interface.d.ts +3 -1
- package/dist/components/DragAndDrop/DragAndDrop.vue.d.ts +3 -0
- package/dist/components/DragAndDrop/interface/interface.d.ts +3 -1
- package/dist/components/Filter/Filter.vue.d.ts +3 -0
- package/dist/components/Filter/interface/interface.d.ts +2 -1
- package/dist/components/FilterTag/FilterTag.vue.d.ts +4 -1
- package/dist/components/FilterTag/interface/interface.d.ts +3 -2
- package/dist/components/Icon/Icon.vue.d.ts +3 -0
- package/dist/components/Icon/interface/interface.d.ts +2 -1
- package/dist/components/Input/Input.vue.d.ts +3 -0
- package/dist/components/Input/interface/interface.d.ts +2 -1
- package/dist/components/InputNumber/InputNumber.vue.d.ts +3 -0
- package/dist/components/InputNumber/interface/interface.d.ts +2 -1
- package/dist/components/Loader/Loader.vue.d.ts +3 -0
- package/dist/components/Loader/interfaces/interfaces.d.ts +3 -1
- package/dist/components/Modal/ModalAnimated.vue.d.ts +17 -3
- package/dist/components/Modal/interface/interface.d.ts +3 -1
- package/dist/components/Notification/Notification.vue.d.ts +3 -0
- package/dist/components/Notification/interface/interface.d.ts +2 -1
- package/dist/components/Picture/Picture.vue.d.ts +7 -1
- package/dist/components/Picture/interface/interface.d.ts +2 -1
- package/dist/components/Popover/Popover.vue.d.ts +7 -1
- package/dist/components/Popover/PopoverHover.vue.d.ts +3 -0
- package/dist/components/Popover/interface/interface.d.ts +5 -2
- package/dist/components/Range/Range.vue.d.ts +9 -0
- package/dist/components/Range/interface/interface.d.ts +3 -1
- package/dist/components/Scrollbar/Scrollbar.vue.d.ts +9 -3
- package/dist/components/Scrollbar/interface/scroll.d.ts +3 -1
- package/dist/components/Search/History.vue.d.ts +17 -3
- package/dist/components/Search/Search.vue.d.ts +3 -0
- package/dist/components/Search/SearchResult.vue.d.ts +17 -3
- package/dist/components/Search/interface/interface.d.ts +2 -1
- package/dist/components/Select/BaseFilter.vue.d.ts +9 -0
- package/dist/components/Select/ChoosenMiniOptions.vue.d.ts +17 -3
- package/dist/components/Select/Combobox.vue.d.ts +2 -0
- package/dist/components/Select/Dropdown.vue.d.ts +3 -0
- package/dist/components/Select/Filter.vue.d.ts +3 -0
- package/dist/components/Select/Options.vue.d.ts +9 -3
- package/dist/components/Select/SelectList.vue.d.ts +3 -0
- package/dist/components/Select/interface/interface.d.ts +5 -3
- package/dist/components/Slider/Slider.vue.d.ts +8 -2
- package/dist/components/Slider/interface/interface.d.ts +3 -1
- package/dist/components/Switch/Switch.vue.d.ts +9 -3
- package/dist/components/Switch/interface/interface.d.ts +3 -1
- package/dist/components/Table/HeadTableRow.vue.d.ts +26 -1
- package/dist/components/Table/SectionTableRow.vue.d.ts +15 -1
- package/dist/components/Table/Table.vue.d.ts +3 -0
- package/dist/components/Table/TableRow.vue.d.ts +3 -0
- package/dist/components/Table/TableTd.vue.d.ts +3 -0
- package/dist/components/Table/TableTh.vue.d.ts +3 -0
- package/dist/components/Table/interface/interface.d.ts +8 -4
- package/dist/components/Textarea/Textarea.vue.d.ts +3 -0
- package/dist/components/Textarea/interface/interface.d.ts +2 -1
- package/dist/components/Tooltip/Tooltip.vue.d.ts +3 -0
- package/dist/components/Tooltip/interface/interface.d.ts +3 -1
- package/dist/components/UserMenu/UserMenu.vue.d.ts +9 -3
- package/dist/components/UserMenu/interface/interface.d.ts +2 -1
- package/dist/helpers/vue-plugin-remove-testid.d.ts +8 -0
- package/dist/sep-yui.es.ts +6912 -6492
- package/dist/sep-yui.umd.ts +22 -22
- package/dist/style.css +1 -1
- package/package.json +2 -2
@@ -1,10 +1,35 @@
|
|
1
|
+
import { IAccordionProps } from './interfaces/interfaces';
|
2
|
+
|
1
3
|
declare function __VLS_template(): {
|
2
4
|
summary?(_: {}): any;
|
3
5
|
default?(_: {}): any;
|
4
6
|
};
|
5
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IAccordionProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IAccordionProps>, {
|
10
|
+
dataTestid: string;
|
11
|
+
}>>>, {
|
12
|
+
dataTestid: string;
|
13
|
+
}, {}>;
|
6
14
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
7
15
|
export default _default;
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
20
|
+
} : {
|
21
|
+
type: import('vue').PropType<T[K]>;
|
22
|
+
required: true;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
27
|
+
default: D[K];
|
28
|
+
}> : P[K];
|
29
|
+
};
|
30
|
+
type __VLS_Prettify<T> = {
|
31
|
+
[K in keyof T]: T[K];
|
32
|
+
} & {};
|
8
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
9
34
|
new (): {
|
10
35
|
$slots: S;
|
@@ -5,6 +5,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
5
5
|
type: BadgesTypeEnum;
|
6
6
|
choosed: boolean;
|
7
7
|
disabled: boolean;
|
8
|
+
dataTestid: string;
|
8
9
|
}>, {
|
9
10
|
isSpanOverflow: import('vue').Ref<boolean>;
|
10
11
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -13,9 +14,11 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
13
14
|
type: BadgesTypeEnum;
|
14
15
|
choosed: boolean;
|
15
16
|
disabled: boolean;
|
17
|
+
dataTestid: string;
|
16
18
|
}>>> & {
|
17
19
|
onChoose?: ((state: boolean, value?: string | undefined) => any) | undefined;
|
18
20
|
}, {
|
21
|
+
dataTestid: string;
|
19
22
|
type: BadgesTypeEnum;
|
20
23
|
choosed: boolean;
|
21
24
|
disabled: boolean;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { BadgesTypeEnum } from './../enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
|
-
export interface IBadgesProps {
|
4
|
+
export interface IBadgesProps extends IDataTestIdProp {
|
4
5
|
text: string;
|
5
6
|
type: BadgesTypeEnum;
|
6
7
|
choosed: boolean;
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { IBreadCrumbsEmit, IBreadCrumbsProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
click: (item: IBreadCrumbsEmit) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBreadCrumbsProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>> & {
|
6
10
|
onClick?: ((item: IBreadCrumbsEmit) => any) | undefined;
|
7
|
-
}, {
|
11
|
+
}, {
|
12
|
+
dataTestid: string;
|
13
|
+
}, {}>;
|
8
14
|
export default _default;
|
9
15
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
10
16
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -1,3 +1,5 @@
|
|
1
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
|
+
|
1
3
|
export type IBreadCrumbItems = {
|
2
4
|
path: string;
|
3
5
|
title: string;
|
@@ -10,6 +12,6 @@ export interface IBreadCrumbsItem {
|
|
10
12
|
export interface IBreadCrumbsEmit extends IBreadCrumbsItem {
|
11
13
|
inx: number;
|
12
14
|
}
|
13
|
-
export interface IBreadCrumbsProps {
|
15
|
+
export interface IBreadCrumbsProps extends IDataTestIdProp {
|
14
16
|
items: IBreadCrumbsItem[];
|
15
17
|
}
|
@@ -13,6 +13,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
13
13
|
type: ButtonTypeEnum;
|
14
14
|
pill: boolean;
|
15
15
|
color: string;
|
16
|
+
dataTestid: string;
|
16
17
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
17
18
|
click: (event: MouseEvent | KeyboardEvent) => void;
|
18
19
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IButtonProps>, {
|
@@ -21,10 +22,12 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
21
22
|
type: ButtonTypeEnum;
|
22
23
|
pill: boolean;
|
23
24
|
color: string;
|
25
|
+
dataTestid: string;
|
24
26
|
}>>> & {
|
25
27
|
onClick?: ((event: MouseEvent | KeyboardEvent) => any) | undefined;
|
26
28
|
}, {
|
27
29
|
color: string;
|
30
|
+
dataTestid: string;
|
28
31
|
type: ButtonTypeEnum;
|
29
32
|
disabled: boolean;
|
30
33
|
size: SizesEnum.small | SizesEnum.medium | SizesEnum.large;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { SizesEnum } from '../../../common/sizes';
|
2
2
|
import { ButtonTypeEnum } from '../enum/enum';
|
3
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
3
4
|
|
4
|
-
export interface IButtonProps {
|
5
|
+
export interface IButtonProps extends IDataTestIdProp {
|
5
6
|
disabled?: boolean;
|
6
7
|
size?: SizesEnum.small | SizesEnum.medium | SizesEnum.large;
|
7
8
|
type?: ButtonTypeEnum;
|
@@ -1,10 +1,35 @@
|
|
1
|
+
import { ICardProps } from './interface/interface';
|
2
|
+
|
1
3
|
declare function __VLS_template(): {
|
2
4
|
left?(_: {}): any;
|
3
5
|
default?(_: {}): any;
|
4
6
|
};
|
5
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICardProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICardProps>, {
|
10
|
+
dataTestid: string;
|
11
|
+
}>>>, {
|
12
|
+
dataTestid: string;
|
13
|
+
}, {}>;
|
6
14
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
7
15
|
export default _default;
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
20
|
+
} : {
|
21
|
+
type: import('vue').PropType<T[K]>;
|
22
|
+
required: true;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
27
|
+
default: D[K];
|
28
|
+
}> : P[K];
|
29
|
+
};
|
30
|
+
type __VLS_Prettify<T> = {
|
31
|
+
[K in keyof T]: T[K];
|
32
|
+
} & {};
|
8
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
9
34
|
new (): {
|
10
35
|
$slots: S;
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
6
6
|
circular: CheckboxCircularEnum;
|
7
7
|
modelValue: boolean;
|
8
8
|
disabled: boolean;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
10
11
|
change: (isChecked: boolean) => void;
|
11
12
|
"update:modelValue": (value: boolean) => void;
|
@@ -14,10 +15,12 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
14
15
|
circular: CheckboxCircularEnum;
|
15
16
|
modelValue: boolean;
|
16
17
|
disabled: boolean;
|
18
|
+
dataTestid: string;
|
17
19
|
}>>> & {
|
18
20
|
onChange?: ((isChecked: boolean) => any) | undefined;
|
19
21
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20
22
|
}, {
|
23
|
+
dataTestid: string;
|
21
24
|
disabled: boolean;
|
22
25
|
size: CheckboxSizeEnum;
|
23
26
|
modelValue: boolean;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { CheckboxSizeEnum, CheckboxCircularEnum } from '../enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
|
-
export interface ICheckboxProps {
|
4
|
+
export interface ICheckboxProps extends IDataTestIdProp {
|
4
5
|
size?: CheckboxSizeEnum;
|
5
6
|
circular?: CheckboxCircularEnum;
|
6
7
|
checked?: boolean;
|
@@ -1,6 +1,12 @@
|
|
1
1
|
import { ICircularProgressProps } from './interface/interface.ts';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICircularProgressProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICircularProgressProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICircularProgressProps>, {
|
6
|
+
dataTestid: string;
|
7
|
+
}>>>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}, {}>;
|
4
10
|
export default _default;
|
5
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
6
12
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -2,9 +2,12 @@ import { ICopyIconProps } from './interface/interface';
|
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICopyIconProps>, {
|
4
4
|
content: string;
|
5
|
+
dataTestid: string;
|
5
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICopyIconProps>, {
|
6
7
|
content: string;
|
8
|
+
dataTestid: string;
|
7
9
|
}>>>, {
|
10
|
+
dataTestid: string;
|
8
11
|
content: string;
|
9
12
|
}, {}>;
|
10
13
|
export default _default;
|
@@ -3,11 +3,17 @@ import { IDialogProps } from './interface/interface';
|
|
3
3
|
declare function __VLS_template(): {
|
4
4
|
default?(_: {}): any;
|
5
5
|
};
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
9
|
close: (...args: any[]) => void;
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
11
|
+
dataTestid: string;
|
12
|
+
}>>> & {
|
9
13
|
onClose?: ((...args: any[]) => any) | undefined;
|
10
|
-
}, {
|
14
|
+
}, {
|
15
|
+
dataTestid: string;
|
16
|
+
}, {}>;
|
11
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
12
18
|
export default _default;
|
13
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -19,6 +25,14 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
25
|
required: true;
|
20
26
|
};
|
21
27
|
};
|
28
|
+
type __VLS_WithDefaults<P, D> = {
|
29
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
30
|
+
default: D[K];
|
31
|
+
}> : P[K];
|
32
|
+
};
|
33
|
+
type __VLS_Prettify<T> = {
|
34
|
+
[K in keyof T]: T[K];
|
35
|
+
} & {};
|
22
36
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
23
37
|
new (): {
|
24
38
|
$slots: S;
|
@@ -3,14 +3,17 @@ import { IDragAndDropProps } from './interface/interface.ts';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDragAndDropProps>, {
|
4
4
|
singleFileMode: boolean;
|
5
5
|
title: string;
|
6
|
+
dataTestid: string;
|
6
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
8
|
fileDropped: (fileList: FileList | null) => void;
|
8
9
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDragAndDropProps>, {
|
9
10
|
singleFileMode: boolean;
|
10
11
|
title: string;
|
12
|
+
dataTestid: string;
|
11
13
|
}>>> & {
|
12
14
|
onFileDropped?: ((fileList: FileList | null) => any) | undefined;
|
13
15
|
}, {
|
16
|
+
dataTestid: string;
|
14
17
|
title: string;
|
15
18
|
singleFileMode: boolean;
|
16
19
|
}, {}>;
|
@@ -4,14 +4,17 @@ import { IconNameEnum } from '../Icon/enum/enum';
|
|
4
4
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
5
5
|
iconName: IconNameEnum;
|
6
6
|
multiselect: boolean;
|
7
|
+
dataTestid: string;
|
7
8
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
8
9
|
scroll: (value: boolean) => void;
|
9
10
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
10
11
|
iconName: IconNameEnum;
|
11
12
|
multiselect: boolean;
|
13
|
+
dataTestid: string;
|
12
14
|
}>>> & {
|
13
15
|
onScroll?: ((value: boolean) => any) | undefined;
|
14
16
|
}, {
|
17
|
+
dataTestid: string;
|
15
18
|
iconName: IconNameEnum;
|
16
19
|
multiselect: boolean;
|
17
20
|
}, {}>;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { IconNameEnum } from '../../Icon/enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
4
|
export interface IFilterOption {
|
4
5
|
value: string;
|
@@ -7,7 +8,7 @@ export interface IFilterOption {
|
|
7
8
|
export interface IStateItem extends IFilterOption {
|
8
9
|
choose: boolean;
|
9
10
|
}
|
10
|
-
export interface IFilterProps {
|
11
|
+
export interface IFilterProps extends IDataTestIdProp {
|
11
12
|
title: string;
|
12
13
|
iconName?: IconNameEnum;
|
13
14
|
multiselect?: boolean;
|
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
7
7
|
selectedValues: () => never[];
|
8
8
|
maxShowCount: number;
|
9
9
|
showClearButton: boolean;
|
10
|
+
dataTestid: string;
|
10
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
11
12
|
change: (value: string[]) => void;
|
12
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterTagProps>, {
|
@@ -15,11 +16,13 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
15
16
|
selectedValues: () => never[];
|
16
17
|
maxShowCount: number;
|
17
18
|
showClearButton: boolean;
|
19
|
+
dataTestid: string;
|
18
20
|
}>>> & {
|
19
21
|
onChange?: ((value: string[]) => any) | undefined;
|
20
22
|
}, {
|
21
|
-
|
23
|
+
dataTestid: string;
|
22
24
|
iconName: IconNameEnum;
|
25
|
+
options: IFilterTagOption[];
|
23
26
|
selectedValues: string[];
|
24
27
|
maxShowCount: number;
|
25
28
|
showClearButton: boolean;
|
@@ -1,12 +1,13 @@
|
|
1
1
|
import { IconNameEnum } from '../../Icon/enum/enum';
|
2
2
|
import { BadgesTypeEnum } from '../../Badges/enum/enum.ts';
|
3
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
3
4
|
|
4
|
-
export interface IFilterTagOption {
|
5
|
+
export interface IFilterTagOption extends IDataTestIdProp {
|
5
6
|
value: string;
|
6
7
|
type: BadgesTypeEnum;
|
7
8
|
label: string;
|
8
9
|
}
|
9
|
-
export interface IFilterTagProps {
|
10
|
+
export interface IFilterTagProps extends IDataTestIdProp {
|
10
11
|
title?: string;
|
11
12
|
iconName?: IconNameEnum;
|
12
13
|
options: IFilterTagOption[];
|
@@ -3,12 +3,15 @@ import { IIconPorps } from './interface/interface';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
|
4
4
|
width: number;
|
5
5
|
height: number;
|
6
|
+
dataTestid: string;
|
6
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IIconPorps>, {
|
7
8
|
width: number;
|
8
9
|
height: number;
|
10
|
+
dataTestid: string;
|
9
11
|
}>>>, {
|
10
12
|
height: number;
|
11
13
|
width: number;
|
14
|
+
dataTestid: string;
|
12
15
|
}, {}>;
|
13
16
|
export default _default;
|
14
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { IconNameEnum } from './../enum/enum';
|
2
2
|
import { ColorsEnum } from '../../../common/colors';
|
3
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
3
4
|
|
4
|
-
export interface IIconPorps {
|
5
|
+
export interface IIconPorps extends IDataTestIdProp {
|
5
6
|
height?: number;
|
6
7
|
width?: number;
|
7
8
|
name: IconNameEnum;
|
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
7
7
|
inputMessage: string;
|
8
8
|
modelValue: string;
|
9
9
|
hideClearButton: boolean;
|
10
|
+
dataTestid: string;
|
10
11
|
modelModifiers: () => {};
|
11
12
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
12
13
|
"update:modelValue": (value: string) => void;
|
@@ -16,10 +17,12 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
16
17
|
inputMessage: string;
|
17
18
|
modelValue: string;
|
18
19
|
hideClearButton: boolean;
|
20
|
+
dataTestid: string;
|
19
21
|
modelModifiers: () => {};
|
20
22
|
}>>> & {
|
21
23
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
22
24
|
}, {
|
25
|
+
dataTestid: string;
|
23
26
|
type: TextFieldEnum;
|
24
27
|
required: boolean;
|
25
28
|
modelValue: string;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { TextFieldEnum } from '../enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
|
-
export interface IInputProps {
|
4
|
+
export interface IInputProps extends IDataTestIdProp {
|
4
5
|
placeholder?: string;
|
5
6
|
inputMessage: string;
|
6
7
|
type?: TextFieldEnum;
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
6
6
|
min: number;
|
7
7
|
max: number;
|
8
8
|
size: SizesEnum;
|
9
|
+
dataTestid: string;
|
9
10
|
modelModifiers: () => {};
|
10
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
11
12
|
"update:modelValue": (value: number) => void;
|
@@ -14,10 +15,12 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
14
15
|
min: number;
|
15
16
|
max: number;
|
16
17
|
size: SizesEnum;
|
18
|
+
dataTestid: string;
|
17
19
|
modelModifiers: () => {};
|
18
20
|
}>>> & {
|
19
21
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
20
22
|
}, {
|
23
|
+
dataTestid: string;
|
21
24
|
size: SizesEnum.small | SizesEnum.medium;
|
22
25
|
modelValue: number;
|
23
26
|
modelModifiers: object;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { SizesEnum } from '../../../common/sizes.ts';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
|
-
export interface IInputNumberProps {
|
4
|
+
export interface IInputNumberProps extends IDataTestIdProp {
|
4
5
|
inputMessage: string;
|
5
6
|
modelValue?: number;
|
6
7
|
required?: boolean;
|
@@ -2,9 +2,12 @@ import { ILoaderProps } from './interfaces/interfaces';
|
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ILoaderProps>, {
|
4
4
|
title: string;
|
5
|
+
dataTestid: string;
|
5
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ILoaderProps>, {
|
6
7
|
title: string;
|
8
|
+
dataTestid: string;
|
7
9
|
}>>>, {
|
10
|
+
dataTestid: string;
|
8
11
|
title: string;
|
9
12
|
}, {}>;
|
10
13
|
export default _default;
|
@@ -3,11 +3,17 @@ import { IDialogProps } from './interface/interface';
|
|
3
3
|
declare function __VLS_template(): {
|
4
4
|
default?(_: {}): any;
|
5
5
|
};
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
9
|
close: () => void;
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDialogProps
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDialogProps>, {
|
11
|
+
dataTestid: string;
|
12
|
+
}>>> & {
|
9
13
|
onClose?: (() => any) | undefined;
|
10
|
-
}, {
|
14
|
+
}, {
|
15
|
+
dataTestid: string;
|
16
|
+
}, {}>;
|
11
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
12
18
|
export default _default;
|
13
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -19,6 +25,14 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
25
|
required: true;
|
20
26
|
};
|
21
27
|
};
|
28
|
+
type __VLS_WithDefaults<P, D> = {
|
29
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
30
|
+
default: D[K];
|
31
|
+
}> : P[K];
|
32
|
+
};
|
33
|
+
type __VLS_Prettify<T> = {
|
34
|
+
[K in keyof T]: T[K];
|
35
|
+
} & {};
|
22
36
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
23
37
|
new (): {
|
24
38
|
$slots: S;
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
6
6
|
description: string;
|
7
7
|
timeout: number;
|
8
8
|
showPopover: boolean;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {
|
10
11
|
showPopover: () => void;
|
11
12
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -15,9 +16,11 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
15
16
|
description: string;
|
16
17
|
timeout: number;
|
17
18
|
showPopover: boolean;
|
19
|
+
dataTestid: string;
|
18
20
|
}>>> & {
|
19
21
|
onClose?: (() => any) | undefined;
|
20
22
|
}, {
|
23
|
+
dataTestid: string;
|
21
24
|
type: MessageTypeEnum;
|
22
25
|
showPopover: boolean;
|
23
26
|
description: string;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { MessageTypeEnum } from '../enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
|
-
export interface IPushNotificationProps {
|
4
|
+
export interface IPushNotificationProps extends IDataTestIdProp {
|
4
5
|
type: MessageTypeEnum;
|
5
6
|
title?: string;
|
6
7
|
pushKey: number;
|
@@ -1,6 +1,12 @@
|
|
1
1
|
import { IPictureProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPictureProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPictureProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPictureProps>, {
|
6
|
+
dataTestid: string;
|
7
|
+
}>>>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}, {}>;
|
4
10
|
export default _default;
|
5
11
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
6
12
|
type __VLS_TypePropsToRuntimeProps<T> = {
|