bt-core-app 1.2.0 → 1.2.2

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.
@@ -0,0 +1,56 @@
1
+ import { BladeDensity } from '../types';
2
+
3
+ interface FieldProps {
4
+ cols?: string | boolean;
5
+ density?: BladeDensity;
6
+ horizontal?: boolean;
7
+ isEditing?: boolean;
8
+ isMobile?: boolean;
9
+ label: any;
10
+ lg?: string | boolean;
11
+ md?: string | boolean;
12
+ modelValue: any;
13
+ rules?: any;
14
+ sm?: string | boolean;
15
+ }
16
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
17
+ isEditing: undefined;
18
+ cols: string;
19
+ lg: boolean;
20
+ md: boolean;
21
+ sm: string;
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ "update:modelValue": (...args: any[]) => void;
24
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
25
+ isEditing: undefined;
26
+ cols: string;
27
+ lg: boolean;
28
+ md: boolean;
29
+ sm: string;
30
+ }>>> & {
31
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
32
+ }, {
33
+ isEditing: boolean;
34
+ cols: string | boolean;
35
+ lg: string | boolean;
36
+ md: string | boolean;
37
+ sm: string | boolean;
38
+ }, {}>;
39
+ export default _default;
40
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
41
+ type __VLS_TypePropsToRuntimeProps<T> = {
42
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
43
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
44
+ } : {
45
+ type: import('vue').PropType<T[K]>;
46
+ required: true;
47
+ };
48
+ };
49
+ type __VLS_WithDefaults<P, D> = {
50
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
51
+ default: D[K];
52
+ }> : P[K];
53
+ };
54
+ type __VLS_Prettify<T> = {
55
+ [K in keyof T]: T[K];
56
+ } & {};
@@ -0,0 +1,64 @@
1
+
2
+ interface FieldProps {
3
+ cols?: string | boolean;
4
+ dateFrom?: string;
5
+ dateRules?: Function | unknown[];
6
+ format?: string;
7
+ fromNow?: boolean;
8
+ horizontal?: boolean;
9
+ isEditing?: boolean;
10
+ isMobile?: boolean;
11
+ label?: string;
12
+ lg?: string | boolean;
13
+ md?: string | boolean;
14
+ modelValue: any;
15
+ sm?: string | boolean;
16
+ useTime?: boolean;
17
+ }
18
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
19
+ isEditing: undefined;
20
+ cols: string;
21
+ lg: boolean;
22
+ md: boolean;
23
+ sm: string;
24
+ format: string;
25
+ fromNow: boolean;
26
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
+ "update:modelValue": (...args: any[]) => void;
28
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
29
+ isEditing: undefined;
30
+ cols: string;
31
+ lg: boolean;
32
+ md: boolean;
33
+ sm: string;
34
+ format: string;
35
+ fromNow: boolean;
36
+ }>>> & {
37
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
38
+ }, {
39
+ isEditing: boolean;
40
+ cols: string | boolean;
41
+ lg: string | boolean;
42
+ md: string | boolean;
43
+ sm: string | boolean;
44
+ format: string;
45
+ fromNow: boolean;
46
+ }, {}>;
47
+ export default _default;
48
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
49
+ type __VLS_TypePropsToRuntimeProps<T> = {
50
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
51
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
52
+ } : {
53
+ type: import('vue').PropType<T[K]>;
54
+ required: true;
55
+ };
56
+ };
57
+ type __VLS_WithDefaults<P, D> = {
58
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
59
+ default: D[K];
60
+ }> : P[K];
61
+ };
62
+ type __VLS_Prettify<T> = {
63
+ [K in keyof T]: T[K];
64
+ } & {};
@@ -0,0 +1,46 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ isMobile?: boolean;
4
+ label?: string;
5
+ lg?: string | boolean;
6
+ md?: string | boolean;
7
+ sm?: string | boolean;
8
+ }
9
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
10
+ cols: string;
11
+ lg: boolean;
12
+ md: boolean;
13
+ sm: string;
14
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (...args: any[]) => void;
16
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
17
+ cols: string;
18
+ lg: boolean;
19
+ md: boolean;
20
+ sm: string;
21
+ }>>> & {
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }, {
24
+ cols: string | boolean;
25
+ lg: string | boolean;
26
+ md: string | boolean;
27
+ sm: string | boolean;
28
+ }, {}>;
29
+ export default _default;
30
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
+ type __VLS_TypePropsToRuntimeProps<T> = {
32
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
33
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
34
+ } : {
35
+ type: import('vue').PropType<T[K]>;
36
+ required: true;
37
+ };
38
+ };
39
+ type __VLS_WithDefaults<P, D> = {
40
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
41
+ default: D[K];
42
+ }> : P[K];
43
+ };
44
+ type __VLS_Prettify<T> = {
45
+ [K in keyof T]: T[K];
46
+ } & {};
@@ -0,0 +1,54 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ horizontal?: boolean;
4
+ isEditing?: boolean;
5
+ isMobile?: boolean;
6
+ lg?: string | boolean;
7
+ md?: string | boolean;
8
+ modelValue?: any;
9
+ rules?: any;
10
+ sm?: string | boolean;
11
+ }
12
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
13
+ isEditing: undefined;
14
+ cols: string;
15
+ lg: boolean;
16
+ md: boolean;
17
+ sm: string;
18
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ "update:modelValue": (...args: any[]) => void;
20
+ select: (...args: any[]) => void;
21
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
22
+ isEditing: undefined;
23
+ cols: string;
24
+ lg: boolean;
25
+ md: boolean;
26
+ sm: string;
27
+ }>>> & {
28
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
+ onSelect?: ((...args: any[]) => any) | undefined;
30
+ }, {
31
+ isEditing: boolean;
32
+ cols: string | boolean;
33
+ lg: string | boolean;
34
+ md: string | boolean;
35
+ sm: string | boolean;
36
+ }, {}>;
37
+ export default _default;
38
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
39
+ type __VLS_TypePropsToRuntimeProps<T> = {
40
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
41
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
42
+ } : {
43
+ type: import('vue').PropType<T[K]>;
44
+ required: true;
45
+ };
46
+ };
47
+ type __VLS_WithDefaults<P, D> = {
48
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
49
+ default: D[K];
50
+ }> : P[K];
51
+ };
52
+ type __VLS_Prettify<T> = {
53
+ [K in keyof T]: T[K];
54
+ } & {};
@@ -0,0 +1,53 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ horizontal?: boolean;
4
+ isEditing?: boolean;
5
+ isMobile?: boolean;
6
+ lg?: string | boolean;
7
+ md?: string | boolean;
8
+ modelValue: any;
9
+ rules?: any;
10
+ sm?: string | boolean;
11
+ useCurrency?: boolean;
12
+ }
13
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
14
+ isEditing: undefined;
15
+ cols: string;
16
+ lg: boolean;
17
+ md: boolean;
18
+ sm: string;
19
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ "update:modelValue": (...args: any[]) => void;
21
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
22
+ isEditing: undefined;
23
+ cols: string;
24
+ lg: boolean;
25
+ md: boolean;
26
+ sm: string;
27
+ }>>> & {
28
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
+ }, {
30
+ isEditing: boolean;
31
+ cols: string | boolean;
32
+ lg: string | boolean;
33
+ md: string | boolean;
34
+ sm: string | boolean;
35
+ }, {}>;
36
+ export default _default;
37
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
38
+ type __VLS_TypePropsToRuntimeProps<T> = {
39
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
40
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
41
+ } : {
42
+ type: import('vue').PropType<T[K]>;
43
+ required: true;
44
+ };
45
+ };
46
+ type __VLS_WithDefaults<P, D> = {
47
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
48
+ default: D[K];
49
+ }> : P[K];
50
+ };
51
+ type __VLS_Prettify<T> = {
52
+ [K in keyof T]: T[K];
53
+ } & {};
@@ -0,0 +1,51 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ isEditing?: boolean;
4
+ isMobile?: boolean;
5
+ label?: string;
6
+ lg?: string | boolean;
7
+ md?: string | boolean;
8
+ modelValue: any;
9
+ sm?: string | boolean;
10
+ }
11
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
12
+ isEditing: undefined;
13
+ cols: string;
14
+ lg: boolean;
15
+ md: boolean;
16
+ sm: string;
17
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:modelValue": (...args: any[]) => void;
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
20
+ isEditing: undefined;
21
+ cols: string;
22
+ lg: boolean;
23
+ md: boolean;
24
+ sm: string;
25
+ }>>> & {
26
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ }, {
28
+ isEditing: boolean;
29
+ cols: string | boolean;
30
+ lg: string | boolean;
31
+ md: string | boolean;
32
+ sm: string | boolean;
33
+ }, {}>;
34
+ export default _default;
35
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
+ type __VLS_TypePropsToRuntimeProps<T> = {
37
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
38
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
+ } : {
40
+ type: import('vue').PropType<T[K]>;
41
+ required: true;
42
+ };
43
+ };
44
+ type __VLS_WithDefaults<P, D> = {
45
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
46
+ default: D[K];
47
+ }> : P[K];
48
+ };
49
+ type __VLS_Prettify<T> = {
50
+ [K in keyof T]: T[K];
51
+ } & {};
@@ -0,0 +1,51 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ isEditing?: boolean;
4
+ isMobile?: boolean;
5
+ lg?: string | boolean;
6
+ md?: string | boolean;
7
+ modelValue: string | undefined;
8
+ rules?: any;
9
+ sm?: string | boolean;
10
+ }
11
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
12
+ isEditing: undefined;
13
+ cols: string;
14
+ lg: boolean;
15
+ md: boolean;
16
+ sm: string;
17
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:modelValue": (...args: any[]) => void;
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
20
+ isEditing: undefined;
21
+ cols: string;
22
+ lg: boolean;
23
+ md: boolean;
24
+ sm: string;
25
+ }>>> & {
26
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ }, {
28
+ isEditing: boolean;
29
+ cols: string | boolean;
30
+ lg: string | boolean;
31
+ md: string | boolean;
32
+ sm: string | boolean;
33
+ }, {}>;
34
+ export default _default;
35
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
+ type __VLS_TypePropsToRuntimeProps<T> = {
37
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
38
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
+ } : {
40
+ type: import('vue').PropType<T[K]>;
41
+ required: true;
42
+ };
43
+ };
44
+ type __VLS_WithDefaults<P, D> = {
45
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
46
+ default: D[K];
47
+ }> : P[K];
48
+ };
49
+ type __VLS_Prettify<T> = {
50
+ [K in keyof T]: T[K];
51
+ } & {};
@@ -0,0 +1,52 @@
1
+ interface FieldProps {
2
+ cols?: string | boolean;
3
+ horizontal?: boolean;
4
+ isEditing?: boolean;
5
+ isMobile?: boolean;
6
+ lg?: string | boolean;
7
+ md?: string | boolean;
8
+ modelValue: any;
9
+ rules?: any;
10
+ sm?: string | boolean;
11
+ }
12
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
13
+ isEditing: undefined;
14
+ cols: string;
15
+ lg: boolean;
16
+ md: boolean;
17
+ sm: string;
18
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ "update:modelValue": (...args: any[]) => void;
20
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
21
+ isEditing: undefined;
22
+ cols: string;
23
+ lg: boolean;
24
+ md: boolean;
25
+ sm: string;
26
+ }>>> & {
27
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
28
+ }, {
29
+ isEditing: boolean;
30
+ cols: string | boolean;
31
+ lg: string | boolean;
32
+ md: string | boolean;
33
+ sm: string | boolean;
34
+ }, {}>;
35
+ export default _default;
36
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
37
+ type __VLS_TypePropsToRuntimeProps<T> = {
38
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
39
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
40
+ } : {
41
+ type: import('vue').PropType<T[K]>;
42
+ required: true;
43
+ };
44
+ };
45
+ type __VLS_WithDefaults<P, D> = {
46
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
47
+ default: D[K];
48
+ }> : P[K];
49
+ };
50
+ type __VLS_Prettify<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
@@ -0,0 +1,79 @@
1
+ import { BladeDensity } from '../types';
2
+
3
+ interface Option {
4
+ text?: string;
5
+ value?: string;
6
+ icon?: string;
7
+ }
8
+ interface FieldProps {
9
+ automation?: any;
10
+ cols?: string | boolean;
11
+ custom?: any;
12
+ density?: BladeDensity;
13
+ guide?: any;
14
+ isEditing?: boolean;
15
+ isMobile?: boolean;
16
+ label: any;
17
+ lg?: string | boolean;
18
+ md?: string | boolean;
19
+ sm?: string | boolean;
20
+ options?: Option[];
21
+ trigger?: any;
22
+ useAutomation?: boolean;
23
+ useAutomationDaily?: boolean;
24
+ useAutomationLarge?: boolean;
25
+ useCustom?: boolean;
26
+ useCustomList?: boolean;
27
+ useGuide?: boolean;
28
+ useGuideList?: boolean;
29
+ useScheduledTrigger?: boolean;
30
+ useTrigger?: boolean;
31
+ useTriggerList?: boolean;
32
+ }
33
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
34
+ isEditing: undefined;
35
+ cols: string;
36
+ lg: boolean;
37
+ md: boolean;
38
+ sm: string;
39
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
40
+ "update:automation": (...args: any[]) => void;
41
+ "update:custom": (...args: any[]) => void;
42
+ "update:guide": (...args: any[]) => void;
43
+ "update:trigger": (...args: any[]) => void;
44
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
45
+ isEditing: undefined;
46
+ cols: string;
47
+ lg: boolean;
48
+ md: boolean;
49
+ sm: string;
50
+ }>>> & {
51
+ "onUpdate:automation"?: ((...args: any[]) => any) | undefined;
52
+ "onUpdate:custom"?: ((...args: any[]) => any) | undefined;
53
+ "onUpdate:guide"?: ((...args: any[]) => any) | undefined;
54
+ "onUpdate:trigger"?: ((...args: any[]) => any) | undefined;
55
+ }, {
56
+ isEditing: boolean;
57
+ cols: string | boolean;
58
+ lg: string | boolean;
59
+ md: string | boolean;
60
+ sm: string | boolean;
61
+ }, {}>;
62
+ export default _default;
63
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
64
+ type __VLS_TypePropsToRuntimeProps<T> = {
65
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
66
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
67
+ } : {
68
+ type: import('vue').PropType<T[K]>;
69
+ required: true;
70
+ };
71
+ };
72
+ type __VLS_WithDefaults<P, D> = {
73
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
74
+ default: D[K];
75
+ }> : P[K];
76
+ };
77
+ type __VLS_Prettify<T> = {
78
+ [K in keyof T]: T[K];
79
+ } & {};
@@ -0,0 +1,18 @@
1
+ import { TableColumn } from '../composables/list';
2
+
3
+ interface Props {
4
+ data: any;
5
+ option: TableColumn;
6
+ size?: string | number;
7
+ }
8
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
9
+ export default _default;
10
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
+ type __VLS_TypePropsToRuntimeProps<T> = {
12
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
13
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14
+ } : {
15
+ type: import('vue').PropType<T[K]>;
16
+ required: true;
17
+ };
18
+ };
@@ -0,0 +1,8 @@
1
+ declare const _default: import('vue').DefineComponent<Readonly<{
2
+ value?: any;
3
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
4
+ value?: any;
5
+ }>>>, {
6
+ readonly value?: any;
7
+ }, {}>;
8
+ export default _default;
@@ -0,0 +1,108 @@
1
+ import { ListProps } from '../composables/list';
2
+
3
+ interface SelectProps extends ListProps {
4
+ alwaysOpen?: boolean;
5
+ canRefresh?: boolean;
6
+ canSearch?: boolean;
7
+ canSelectNone?: boolean;
8
+ colClass?: string;
9
+ cols?: string | boolean;
10
+ height?: string;
11
+ isMobile?: boolean;
12
+ isEditing?: boolean;
13
+ isSelecting?: boolean;
14
+ items?: [];
15
+ itemSubtext?: string;
16
+ itemText?: string;
17
+ itemValue?: string;
18
+ label?: string;
19
+ lg?: string | boolean;
20
+ modelValue?: any;
21
+ md?: string | boolean;
22
+ nav?: string;
23
+ placeholder?: string;
24
+ showSettings?: boolean;
25
+ sm?: string | boolean;
26
+ subtextFilter?: string;
27
+ subtextFunction?: Function;
28
+ textFilter?: string;
29
+ textFunction?: Function;
30
+ transparent?: boolean;
31
+ useVirtualScroller?: boolean;
32
+ }
33
+ declare function openList(): void;
34
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
35
+ canRefresh: boolean;
36
+ height: string;
37
+ isEditing: undefined;
38
+ sortOrder: string;
39
+ cols: string;
40
+ lg: boolean;
41
+ md: boolean;
42
+ sm: string;
43
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
44
+ "update:modelValue": (...args: any[]) => void;
45
+ change: (...args: any[]) => void;
46
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
47
+ canRefresh: boolean;
48
+ height: string;
49
+ isEditing: undefined;
50
+ sortOrder: string;
51
+ cols: string;
52
+ lg: boolean;
53
+ md: boolean;
54
+ sm: string;
55
+ }>>> & {
56
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
57
+ onChange?: ((...args: any[]) => any) | undefined;
58
+ }, {
59
+ isEditing: boolean;
60
+ height: string;
61
+ cols: string | boolean;
62
+ lg: string | boolean;
63
+ md: string | boolean;
64
+ sm: string | boolean;
65
+ sortOrder: "Ascending" | "Descending";
66
+ canRefresh: boolean;
67
+ }, {}>, {
68
+ actions?(_: {}): any;
69
+ actionsRight?(_: {}): any;
70
+ settings?(_: {}): any;
71
+ item?(_: {
72
+ items: any;
73
+ index: number;
74
+ size: string;
75
+ }): any;
76
+ default?(_: {
77
+ item: any;
78
+ index: number;
79
+ size: string;
80
+ }): any;
81
+ selected?(_: {
82
+ item: any;
83
+ open: typeof openList;
84
+ }): any;
85
+ }>;
86
+ export default _default;
87
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
88
+ type __VLS_TypePropsToRuntimeProps<T> = {
89
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
90
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
91
+ } : {
92
+ type: import('vue').PropType<T[K]>;
93
+ required: true;
94
+ };
95
+ };
96
+ type __VLS_WithDefaults<P, D> = {
97
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
98
+ default: D[K];
99
+ }> : P[K];
100
+ };
101
+ type __VLS_Prettify<T> = {
102
+ [K in keyof T]: T[K];
103
+ } & {};
104
+ type __VLS_WithTemplateSlots<T, S> = T & {
105
+ new (): {
106
+ $slots: S;
107
+ };
108
+ };