@pksep/yui 0.1.180 → 0.1.181
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 +22 -1
- package/dist/components/Select/SelectList.vue.d.ts +6 -0
- package/dist/components/Select/interface/interface.d.ts +2 -0
- package/dist/sep-yui.es.ts +9119 -9085
- package/dist/sep-yui.umd.ts +19 -19
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { OptionsObject } from './interface/interface';
|
|
2
2
|
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
body?(_: {
|
|
5
|
+
closeOpenList: () => void;
|
|
6
|
+
}): any;
|
|
7
|
+
header?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
10
|
modelValue: import('vue').PropType<string | string[]>;
|
|
5
11
|
dataTestid: {
|
|
6
12
|
type: import('vue').PropType<string>;
|
|
@@ -32,6 +38,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
32
38
|
type: import('vue').PropType<boolean>;
|
|
33
39
|
default: boolean;
|
|
34
40
|
};
|
|
41
|
+
isUseAnchor: {
|
|
42
|
+
type: import('vue').PropType<boolean>;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
35
45
|
isSearch: {
|
|
36
46
|
type: import('vue').PropType<boolean>;
|
|
37
47
|
default: boolean;
|
|
@@ -85,6 +95,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
85
95
|
type: import('vue').PropType<boolean>;
|
|
86
96
|
default: boolean;
|
|
87
97
|
};
|
|
98
|
+
isUseAnchor: {
|
|
99
|
+
type: import('vue').PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
88
102
|
isSearch: {
|
|
89
103
|
type: import('vue').PropType<boolean>;
|
|
90
104
|
default: boolean;
|
|
@@ -111,8 +125,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
111
125
|
tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
|
|
112
126
|
defaultOption: string;
|
|
113
127
|
isOpened: boolean;
|
|
128
|
+
isUseAnchor: boolean;
|
|
114
129
|
isSearch: boolean;
|
|
115
130
|
isPosibleToClear: boolean;
|
|
116
131
|
isShowMiniOptions: boolean;
|
|
117
132
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
133
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
118
134
|
export default _default;
|
|
135
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
136
|
+
new (): {
|
|
137
|
+
$slots: S;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
@@ -1,24 +1,30 @@
|
|
|
1
1
|
import { ISelectListProps } from './interface/interface';
|
|
2
2
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
+
body?(_: {
|
|
5
|
+
closeOpenList: () => void;
|
|
6
|
+
}): any;
|
|
4
7
|
header?(_: {}): any;
|
|
5
8
|
options?(_: {}): any;
|
|
6
9
|
};
|
|
7
10
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectListProps>, {
|
|
8
11
|
isOpened: boolean;
|
|
9
12
|
dataTestid: string;
|
|
13
|
+
isUseAnchor: boolean;
|
|
10
14
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
15
|
change: (val: boolean) => void;
|
|
12
16
|
"focusout-options": () => void;
|
|
13
17
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectListProps>, {
|
|
14
18
|
isOpened: boolean;
|
|
15
19
|
dataTestid: string;
|
|
20
|
+
isUseAnchor: boolean;
|
|
16
21
|
}>>> & Readonly<{
|
|
17
22
|
onChange?: ((val: boolean) => any) | undefined;
|
|
18
23
|
"onFocusout-options"?: (() => any) | undefined;
|
|
19
24
|
}>, {
|
|
20
25
|
dataTestid: string;
|
|
21
26
|
isOpened: boolean;
|
|
27
|
+
isUseAnchor: boolean;
|
|
22
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
24
30
|
export default _default;
|
|
@@ -23,6 +23,7 @@ export interface IOptionsProps extends IDataTestIdProp {
|
|
|
23
23
|
}
|
|
24
24
|
export interface ISelectListProps extends IDataTestIdProp {
|
|
25
25
|
isOpened: boolean;
|
|
26
|
+
isUseAnchor?: boolean;
|
|
26
27
|
disableOpen?: boolean;
|
|
27
28
|
headerClasses?: VueClasses;
|
|
28
29
|
optionsClasses?: VueClasses;
|
|
@@ -45,6 +46,7 @@ export interface IBaseFilterProps extends Omit<IOptionsProps, 'options'> {
|
|
|
45
46
|
isSearch?: boolean;
|
|
46
47
|
isPosibleToClear?: boolean;
|
|
47
48
|
isShowMiniOptions?: boolean;
|
|
49
|
+
isUseAnchor?: boolean;
|
|
48
50
|
isOpened?: boolean;
|
|
49
51
|
tooltipPosition?: TTooltipPosition;
|
|
50
52
|
onUnmountPagination?: () => void;
|