sep-yui 0.1.94 → 0.1.96
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/Select/BaseFilter.vue.d.ts +21 -2
- package/dist/components/Select/interface/interface.d.ts +11 -1
- package/dist/sep-yui.es.ts +8762 -8730
- package/dist/sep-yui.umd.ts +47 -47
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -20,13 +20,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
20
20
|
type: import('vue').PropType<OptionsObject[] | import('./interface/interface').IOptionsObjectWithHint[]>;
|
21
21
|
required: true;
|
22
22
|
};
|
23
|
+
tooltipPosition: {
|
24
|
+
type: import('vue').PropType<import('../Tooltip/interface/interface').TTooltipPosition>;
|
25
|
+
default: string;
|
26
|
+
};
|
23
27
|
defaultOption: {
|
24
28
|
type: import('vue').PropType<string>;
|
25
29
|
default: string;
|
26
30
|
};
|
27
31
|
isOpened: {
|
28
32
|
type: import('vue').PropType<boolean>;
|
29
|
-
required: true;
|
30
33
|
default: boolean;
|
31
34
|
};
|
32
35
|
isSearch: {
|
@@ -41,9 +44,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
41
44
|
type: import('vue').PropType<boolean>;
|
42
45
|
default: boolean;
|
43
46
|
};
|
47
|
+
onUnmountPagination: {
|
48
|
+
type: import('vue').PropType<() => void>;
|
49
|
+
};
|
44
50
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
45
51
|
change: (value: string | string[]) => void;
|
46
52
|
"unmount-open": (value: boolean) => void;
|
53
|
+
"unmount-search": (value: string) => void;
|
54
|
+
"unmount-search-enter": (value: string) => void;
|
55
|
+
"unmount-pagination": () => void;
|
47
56
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
48
57
|
modelValue: import('vue').PropType<string | string[]>;
|
49
58
|
dataTestid: {
|
@@ -64,13 +73,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
64
73
|
type: import('vue').PropType<OptionsObject[] | import('./interface/interface').IOptionsObjectWithHint[]>;
|
65
74
|
required: true;
|
66
75
|
};
|
76
|
+
tooltipPosition: {
|
77
|
+
type: import('vue').PropType<import('../Tooltip/interface/interface').TTooltipPosition>;
|
78
|
+
default: string;
|
79
|
+
};
|
67
80
|
defaultOption: {
|
68
81
|
type: import('vue').PropType<string>;
|
69
82
|
default: string;
|
70
83
|
};
|
71
84
|
isOpened: {
|
72
85
|
type: import('vue').PropType<boolean>;
|
73
|
-
required: true;
|
74
86
|
default: boolean;
|
75
87
|
};
|
76
88
|
isSearch: {
|
@@ -85,11 +97,18 @@ declare const _default: import('vue').DefineComponent<{
|
|
85
97
|
type: import('vue').PropType<boolean>;
|
86
98
|
default: boolean;
|
87
99
|
};
|
100
|
+
onUnmountPagination: {
|
101
|
+
type: import('vue').PropType<() => void>;
|
102
|
+
};
|
88
103
|
}>> & {
|
89
104
|
onChange?: ((value: string | string[]) => any) | undefined;
|
90
105
|
"onUnmount-open"?: ((value: boolean) => any) | undefined;
|
106
|
+
"onUnmount-search"?: ((value: string) => any) | undefined;
|
107
|
+
"onUnmount-search-enter"?: ((value: string) => any) | undefined;
|
108
|
+
"onUnmount-pagination"?: (() => any) | undefined;
|
91
109
|
}, {
|
92
110
|
dataTestid: string;
|
111
|
+
tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
|
93
112
|
defaultOption: string;
|
94
113
|
isOpened: boolean;
|
95
114
|
isSearch: boolean;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
|
+
import { TTooltipPosition } from '../../Tooltip/interface/interface';
|
2
3
|
|
3
4
|
interface ClassObject {
|
4
5
|
[key: string]: boolean;
|
@@ -44,7 +45,16 @@ export interface IBaseFilterProps extends Omit<IOptionsProps, 'options'> {
|
|
44
45
|
isSearch?: boolean;
|
45
46
|
isPosibleToClear?: boolean;
|
46
47
|
isShowMiniOptions?: boolean;
|
47
|
-
isOpened
|
48
|
+
isOpened?: boolean;
|
49
|
+
tooltipPosition?: TTooltipPosition;
|
50
|
+
onUnmountPagination?: () => void;
|
51
|
+
}
|
52
|
+
export interface IBaseFilterEmit {
|
53
|
+
(e: 'change', value: string | string[]): void;
|
54
|
+
(e: 'unmount-open', value: boolean): void;
|
55
|
+
(e: 'unmount-search', value: string): void;
|
56
|
+
(e: 'unmount-search-enter', value: string): void;
|
57
|
+
(e: 'unmount-pagination'): void;
|
48
58
|
}
|
49
59
|
export interface IChoosenMiniOptionsProps extends IDataTestIdProp {
|
50
60
|
options: OptionsObject[] | IOptionsObjectWithHint[];
|