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
@@ -5,18 +5,24 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
5
5
|
iconName: IconNameEnum;
|
6
6
|
options: () => never[];
|
7
7
|
tooltip: string;
|
8
|
+
dataTestid: string;
|
9
|
+
tooltipPosition: string;
|
8
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
9
11
|
close: () => void;
|
10
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
|
11
13
|
iconName: IconNameEnum;
|
12
14
|
options: () => never[];
|
13
15
|
tooltip: string;
|
16
|
+
dataTestid: string;
|
17
|
+
tooltipPosition: string;
|
14
18
|
}>>> & {
|
15
19
|
onClose?: (() => any) | undefined;
|
16
20
|
}, {
|
21
|
+
dataTestid: string;
|
22
|
+
iconName: IconNameEnum;
|
17
23
|
options: IPopoverOption[];
|
18
24
|
tooltip: string;
|
19
|
-
|
25
|
+
tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
|
20
26
|
}, {}>;
|
21
27
|
export default _default;
|
22
28
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -6,9 +6,12 @@ declare function __VLS_template(): {
|
|
6
6
|
};
|
7
7
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
|
8
8
|
position: PopoverHoverEnum;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverHoverProps>, {
|
10
11
|
position: PopoverHoverEnum;
|
12
|
+
dataTestid: string;
|
11
13
|
}>>>, {
|
14
|
+
dataTestid: string;
|
12
15
|
position: PopoverHoverEnum;
|
13
16
|
}, {}>;
|
14
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
@@ -1,16 +1,19 @@
|
|
1
1
|
import { IconNameEnum } from '../../Icon/enum/enum';
|
2
2
|
import { PopoverHoverEnum } from '../enums/enums';
|
3
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
4
|
+
import { TTooltipPosition } from '../../Tooltip/interface/interface.ts';
|
3
5
|
|
4
6
|
export interface IPopoverOption {
|
5
7
|
value: string;
|
6
8
|
function: () => void;
|
7
9
|
}
|
8
|
-
export interface IPopoverProps {
|
10
|
+
export interface IPopoverProps extends IDataTestIdProp {
|
9
11
|
isShow?: boolean;
|
10
12
|
iconName?: IconNameEnum;
|
11
13
|
options: IPopoverOption[];
|
12
14
|
tooltip?: string;
|
15
|
+
tooltipPosition?: TTooltipPosition;
|
13
16
|
}
|
14
|
-
export interface IPopoverHoverProps {
|
17
|
+
export interface IPopoverHoverProps extends IDataTestIdProp {
|
15
18
|
position: PopoverHoverEnum;
|
16
19
|
}
|
@@ -1,5 +1,9 @@
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
2
2
|
modelValue: import('vue').PropType<number>;
|
3
|
+
dataTestid: {
|
4
|
+
type: import('vue').PropType<string>;
|
5
|
+
default: string;
|
6
|
+
};
|
3
7
|
disabled: {
|
4
8
|
type: import('vue').PropType<boolean>;
|
5
9
|
default: boolean;
|
@@ -21,6 +25,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
21
25
|
"unmount-input": (value: number) => void;
|
22
26
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
27
|
modelValue: import('vue').PropType<number>;
|
28
|
+
dataTestid: {
|
29
|
+
type: import('vue').PropType<string>;
|
30
|
+
default: string;
|
31
|
+
};
|
24
32
|
disabled: {
|
25
33
|
type: import('vue').PropType<boolean>;
|
26
34
|
default: boolean;
|
@@ -41,6 +49,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
41
49
|
"onUnmount-change"?: ((value: number) => any) | undefined;
|
42
50
|
"onUnmount-input"?: ((value: number) => any) | undefined;
|
43
51
|
}, {
|
52
|
+
dataTestid: string;
|
44
53
|
disabled: boolean;
|
45
54
|
min: number;
|
46
55
|
max: number;
|
@@ -3,7 +3,9 @@ import { IScrollbarProps } from './interface/scroll';
|
|
3
3
|
declare function __VLS_template(): {
|
4
4
|
default?(_: {}): any;
|
5
5
|
};
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {
|
7
9
|
scrollToTop: () => void;
|
8
10
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
9
11
|
scroll: (value: Event) => void;
|
@@ -17,7 +19,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
17
19
|
"ps-y-reach-end": (value: Event) => void;
|
18
20
|
"ps-x-reach-start": (value: Event) => void;
|
19
21
|
"ps-x-reach-end": (value: Event) => void;
|
20
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {
|
22
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollbarProps>, {
|
23
|
+
dataTestid: string;
|
24
|
+
}>>> & {
|
21
25
|
onScroll?: ((value: Event) => any) | undefined;
|
22
26
|
"onPs-scroll-y"?: ((value: Event) => any) | undefined;
|
23
27
|
"onPs-scroll-x"?: ((value: Event) => any) | undefined;
|
@@ -29,7 +33,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
29
33
|
"onPs-y-reach-end"?: ((value: Event) => any) | undefined;
|
30
34
|
"onPs-x-reach-start"?: ((value: Event) => any) | undefined;
|
31
35
|
"onPs-x-reach-end"?: ((value: Event) => any) | undefined;
|
32
|
-
}, {
|
36
|
+
}, {
|
37
|
+
dataTestid: string;
|
38
|
+
}, {}>;
|
33
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
34
40
|
export default _default;
|
35
41
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { ISearchProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
choosePost: (value: string) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>> & {
|
6
10
|
onChoosePost?: ((value: string) => 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> = {
|
@@ -15,3 +21,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
21
|
required: true;
|
16
22
|
};
|
17
23
|
};
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
+
default: D[K];
|
27
|
+
}> : P[K];
|
28
|
+
};
|
29
|
+
type __VLS_Prettify<T> = {
|
30
|
+
[K in keyof T]: T[K];
|
31
|
+
} & {};
|
@@ -4,6 +4,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
4
4
|
placeholder: string;
|
5
5
|
height: string;
|
6
6
|
modelValue: string;
|
7
|
+
dataTestid: string;
|
7
8
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
8
9
|
enter: (value: string) => void;
|
9
10
|
input: (value: string) => void;
|
@@ -12,12 +13,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
12
13
|
placeholder: string;
|
13
14
|
height: string;
|
14
15
|
modelValue: string;
|
16
|
+
dataTestid: string;
|
15
17
|
}>>> & {
|
16
18
|
onInput?: ((value: string) => any) | undefined;
|
17
19
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
18
20
|
onEnter?: ((value: string) => any) | undefined;
|
19
21
|
}, {
|
20
22
|
height: string;
|
23
|
+
dataTestid: string;
|
21
24
|
modelValue: string;
|
22
25
|
placeholder: string;
|
23
26
|
}, {}>;
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { ISearchProps, ResultSearchType } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
choosePost: (post: ResultSearchType) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Partial<ISearchProps>>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>> & {
|
6
10
|
onChoosePost?: ((post: ResultSearchType) => 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> = {
|
@@ -15,3 +21,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
21
|
required: true;
|
16
22
|
};
|
17
23
|
};
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
+
default: D[K];
|
27
|
+
}> : P[K];
|
28
|
+
};
|
29
|
+
type __VLS_Prettify<T> = {
|
30
|
+
[K in keyof T]: T[K];
|
31
|
+
} & {};
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { IconNameEnum } from '../../Icon/enum/enum';
|
2
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
3
|
|
3
4
|
export type ResultSearchType = {
|
4
5
|
icon: IconNameEnum;
|
5
6
|
nameArea: string;
|
6
7
|
searchResult: string;
|
7
8
|
};
|
8
|
-
export interface ISearchProps {
|
9
|
+
export interface ISearchProps extends IDataTestIdProp {
|
9
10
|
defaultValue?: string;
|
10
11
|
placeholder?: string;
|
11
12
|
showHistory?: boolean;
|
@@ -2,6 +2,10 @@ import { OptionsObject } from './interface/interface';
|
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<{
|
4
4
|
modelValue: import('vue').PropType<string | string[]>;
|
5
|
+
dataTestid: {
|
6
|
+
type: import('vue').PropType<string>;
|
7
|
+
default: string;
|
8
|
+
};
|
5
9
|
title: {
|
6
10
|
type: import('vue').PropType<string>;
|
7
11
|
required: true;
|
@@ -36,6 +40,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
36
40
|
change: (value: string | string[]) => void;
|
37
41
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
38
42
|
modelValue: import('vue').PropType<string | string[]>;
|
43
|
+
dataTestid: {
|
44
|
+
type: import('vue').PropType<string>;
|
45
|
+
default: string;
|
46
|
+
};
|
39
47
|
title: {
|
40
48
|
type: import('vue').PropType<string>;
|
41
49
|
required: true;
|
@@ -69,6 +77,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
69
77
|
}>> & {
|
70
78
|
onChange?: ((value: string | string[]) => any) | undefined;
|
71
79
|
}, {
|
80
|
+
dataTestid: string;
|
72
81
|
defaultOption: string;
|
73
82
|
isSearch: boolean;
|
74
83
|
isPosibleToClear: boolean;
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { IChoosenMiniOptionsProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IChoosenMiniOptionsProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IChoosenMiniOptionsProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
remove: (key: string) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IChoosenMiniOptionsProps
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IChoosenMiniOptionsProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>> & {
|
6
10
|
onRemove?: ((key: string) => 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> = {
|
@@ -15,3 +21,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
21
|
required: true;
|
16
22
|
};
|
17
23
|
};
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
+
default: D[K];
|
27
|
+
}> : P[K];
|
28
|
+
};
|
29
|
+
type __VLS_Prettify<T> = {
|
30
|
+
[K in keyof T]: T[K];
|
31
|
+
} & {};
|
@@ -1,8 +1,10 @@
|
|
1
1
|
import { IComboboxProps } from './interface/interface';
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IComboboxProps>, {
|
4
|
+
dataTestid: string;
|
4
5
|
disabled: boolean;
|
5
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
|
7
|
+
dataTestid: string;
|
6
8
|
disabled: boolean;
|
7
9
|
}, {}>;
|
8
10
|
export default _default;
|
@@ -2,13 +2,16 @@ import { IOptionsProps } from './interface/interface';
|
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
4
4
|
disabled: boolean;
|
5
|
+
dataTestid: string;
|
5
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
6
7
|
change: (value: string) => void;
|
7
8
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
8
9
|
disabled: boolean;
|
10
|
+
dataTestid: string;
|
9
11
|
}>>> & {
|
10
12
|
onChange?: ((value: string) => any) | undefined;
|
11
13
|
}, {
|
14
|
+
dataTestid: string;
|
12
15
|
disabled: boolean;
|
13
16
|
}, {}>;
|
14
17
|
export default _default;
|
@@ -3,16 +3,19 @@ import { IFilterProps } from './interface/interface';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
4
4
|
noOptionText: string;
|
5
5
|
enableClearAll: boolean;
|
6
|
+
dataTestid: string;
|
6
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
8
|
change: (value: string) => void;
|
8
9
|
search: (value: string) => void;
|
9
10
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IFilterProps>, {
|
10
11
|
noOptionText: string;
|
11
12
|
enableClearAll: boolean;
|
13
|
+
dataTestid: string;
|
12
14
|
}>>> & {
|
13
15
|
onChange?: ((value: string) => any) | undefined;
|
14
16
|
onSearch?: ((value: string) => any) | undefined;
|
15
17
|
}, {
|
18
|
+
dataTestid: string;
|
16
19
|
noOptionText: string;
|
17
20
|
enableClearAll: boolean;
|
18
21
|
}, {}>;
|
@@ -3,11 +3,17 @@ import { IOptionsProps } from './interface/interface';
|
|
3
3
|
declare function __VLS_template(): {
|
4
4
|
default?(_: {}): any;
|
5
5
|
};
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
7
9
|
change: (value: string) => void;
|
8
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IOptionsProps>, {
|
11
|
+
dataTestid: string;
|
12
|
+
}>>> & {
|
9
13
|
onChange?: ((value: string) => 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;
|
@@ -6,15 +6,18 @@ declare function __VLS_template(): {
|
|
6
6
|
};
|
7
7
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectListProps>, {
|
8
8
|
isOpened: boolean;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
10
11
|
change: (val: boolean) => void;
|
11
12
|
"focusout-options": () => void;
|
12
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectListProps>, {
|
13
14
|
isOpened: boolean;
|
15
|
+
dataTestid: string;
|
14
16
|
}>>> & {
|
15
17
|
onChange?: ((val: boolean) => any) | undefined;
|
16
18
|
"onFocusout-options"?: (() => any) | undefined;
|
17
19
|
}, {
|
20
|
+
dataTestid: string;
|
18
21
|
isOpened: boolean;
|
19
22
|
}, {}>;
|
20
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
@@ -1,3 +1,5 @@
|
|
1
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
|
+
|
1
3
|
interface ClassObject {
|
2
4
|
[key: string]: boolean;
|
3
5
|
}
|
@@ -11,13 +13,13 @@ export interface OptionsObject {
|
|
11
13
|
export interface IOptionsObjectWithHint extends OptionsObject {
|
12
14
|
hint: string;
|
13
15
|
}
|
14
|
-
export interface IOptionsProps {
|
16
|
+
export interface IOptionsProps extends IDataTestIdProp {
|
15
17
|
options: string[] | OptionsObject[] | IOptionsObjectWithHint[];
|
16
18
|
defaultOption?: string;
|
17
19
|
class?: string;
|
18
20
|
disabled?: boolean;
|
19
21
|
}
|
20
|
-
export interface ISelectListProps {
|
22
|
+
export interface ISelectListProps extends IDataTestIdProp {
|
21
23
|
isOpened: boolean;
|
22
24
|
disableOpen?: boolean;
|
23
25
|
headerClasses?: VueClasses;
|
@@ -42,7 +44,7 @@ export interface IBaseFilterProps extends Omit<IOptionsProps, 'options'> {
|
|
42
44
|
isPosibleToClear?: boolean;
|
43
45
|
isShowMiniOptions?: boolean;
|
44
46
|
}
|
45
|
-
export interface IChoosenMiniOptionsProps {
|
47
|
+
export interface IChoosenMiniOptionsProps extends IDataTestIdProp {
|
46
48
|
options: OptionsObject[] | IOptionsObjectWithHint[];
|
47
49
|
}
|
48
50
|
export interface IChoosenMiniOptionsEmits {
|
@@ -1,8 +1,14 @@
|
|
1
1
|
import { ISliderProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {
|
4
6
|
setSlide: (index: number) => void;
|
5
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {
|
7
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>>, {
|
10
|
+
dataTestid: string;
|
11
|
+
}, {}>;
|
6
12
|
export default _default;
|
7
13
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
8
14
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -1,10 +1,12 @@
|
|
1
|
+
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
|
+
|
1
3
|
type SliderItem = {
|
2
4
|
path: string;
|
3
5
|
};
|
4
6
|
type IFile = {
|
5
7
|
path: string;
|
6
8
|
};
|
7
|
-
export interface ISliderProps {
|
9
|
+
export interface ISliderProps extends IDataTestIdProp {
|
8
10
|
items: SliderItem[];
|
9
11
|
defaultIndex?: number;
|
10
12
|
}
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { ISwitchProps, IChangeSwitchEmit } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
change: (event: IChangeSwitchEmit) => void;
|
5
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {
|
7
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISwitchProps>, {
|
8
|
+
dataTestid: string;
|
9
|
+
}>>> & {
|
6
10
|
onChange?: ((event: IChangeSwitchEmit) => 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,9 +1,34 @@
|
|
1
|
+
import { IHeadTableRowProps } from './interface/interface';
|
2
|
+
|
1
3
|
declare function __VLS_template(): {
|
2
4
|
default?(_: {}): any;
|
3
5
|
};
|
4
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IHeadTableRowProps>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IHeadTableRowProps>, {
|
9
|
+
dataTestid: string;
|
10
|
+
}>>>, {
|
11
|
+
dataTestid: string;
|
12
|
+
}, {}>;
|
5
13
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
6
14
|
export default _default;
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
19
|
+
} : {
|
20
|
+
type: import('vue').PropType<T[K]>;
|
21
|
+
required: true;
|
22
|
+
};
|
23
|
+
};
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
+
default: D[K];
|
27
|
+
}> : P[K];
|
28
|
+
};
|
29
|
+
type __VLS_Prettify<T> = {
|
30
|
+
[K in keyof T]: T[K];
|
31
|
+
} & {};
|
7
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
8
33
|
new (): {
|
9
34
|
$slots: S;
|
@@ -3,7 +3,13 @@ import { ISectionTableRow } 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<ISectionTableRow>, {
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISectionTableRow>, {
|
7
|
+
dataTestid: string;
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISectionTableRow>, {
|
9
|
+
dataTestid: string;
|
10
|
+
}>>>, {
|
11
|
+
dataTestid: string;
|
12
|
+
}, {}>;
|
7
13
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
8
14
|
export default _default;
|
9
15
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -15,6 +21,14 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
21
|
required: true;
|
16
22
|
};
|
17
23
|
};
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
26
|
+
default: D[K];
|
27
|
+
}> : P[K];
|
28
|
+
};
|
29
|
+
type __VLS_Prettify<T> = {
|
30
|
+
[K in keyof T]: T[K];
|
31
|
+
} & {};
|
18
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
19
33
|
new (): {
|
20
34
|
$slots: S;
|
@@ -12,6 +12,7 @@ declare function __VLS_template(): {
|
|
12
12
|
};
|
13
13
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
|
14
14
|
isShowVerticalScroll: boolean;
|
15
|
+
dataTestid: string;
|
15
16
|
}>, {
|
16
17
|
scrollToTop: () => void;
|
17
18
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -19,10 +20,12 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
19
20
|
"unmount-intersection": () => void;
|
20
21
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
|
21
22
|
isShowVerticalScroll: boolean;
|
23
|
+
dataTestid: string;
|
22
24
|
}>>> & {
|
23
25
|
onUnmountScroll?: ((event: Event) => any) | undefined;
|
24
26
|
"onUnmount-intersection"?: (() => any) | undefined;
|
25
27
|
}, {
|
28
|
+
dataTestid: string;
|
26
29
|
isShowVerticalScroll: boolean;
|
27
30
|
}, {}>;
|
28
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
@@ -6,10 +6,13 @@ declare function __VLS_template(): {
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableRow>, {
|
7
7
|
type: string;
|
8
8
|
colspan: number;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableRow>, {
|
10
11
|
type: string;
|
11
12
|
colspan: number;
|
13
|
+
dataTestid: string;
|
12
14
|
}>>>, {
|
15
|
+
dataTestid: string;
|
13
16
|
type: import('./interface/interface').TTableRow;
|
14
17
|
}, {}>;
|
15
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
@@ -6,10 +6,13 @@ declare function __VLS_template(): {
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableTd>, {
|
7
7
|
colspan: number;
|
8
8
|
rowspan: number;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableTd>, {
|
10
11
|
colspan: number;
|
11
12
|
rowspan: number;
|
13
|
+
dataTestid: string;
|
12
14
|
}>>>, {
|
15
|
+
dataTestid: string;
|
13
16
|
colspan: number | string;
|
14
17
|
rowspan: number | string;
|
15
18
|
}, {}>;
|
@@ -6,10 +6,13 @@ declare function __VLS_template(): {
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableTd>, {
|
7
7
|
colspan: number;
|
8
8
|
rowspan: number;
|
9
|
+
dataTestid: string;
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableTd>, {
|
10
11
|
colspan: number;
|
11
12
|
rowspan: number;
|
13
|
+
dataTestid: string;
|
12
14
|
}>>>, {
|
15
|
+
dataTestid: string;
|
13
16
|
colspan: number | string;
|
14
17
|
rowspan: number | string;
|
15
18
|
}, {}>;
|