@veltra/desktop 1.0.4 → 1.0.6
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/action/action.vue.d.ts +1 -1
- package/dist/components/auto-complete/auto-complete.vue.d.ts +2 -2
- package/dist/components/cascade/cascade.vue.d.ts +6 -6
- package/dist/components/checkbox/checkbox-button.vue.d.ts +1 -1
- package/dist/components/checkbox/checkbox.vue.d.ts +1 -1
- package/dist/components/checkbox-group/checkbox-group.vue.d.ts +1 -1
- package/dist/components/code-editor/code-editor.vue.d.ts +1 -1
- package/dist/components/date-picker/date-picker.vue.d.ts +3 -3
- package/dist/components/date-range-picker/date-range-picker.vue.d.ts +3 -3
- package/dist/components/input/input.vue.d.ts +4 -4
- package/dist/components/multi-select/multi-select.vue.d.ts +2 -2
- package/dist/components/multi-tree-select/multi-tree-select.vue.d.ts +4 -4
- package/dist/components/notification/notification.vue.d.ts +1 -1
- package/dist/components/number-input/number-input.vue.d.ts +2 -2
- package/dist/components/number-range-input/number-range-input.vue.d.ts +2 -2
- package/dist/components/palette/palette.vue.d.ts +1 -1
- package/dist/components/password-input/password-input.vue.d.ts +2 -2
- package/dist/components/progress/progress.vue.d.ts +1 -1
- package/dist/components/progress-nodes/progress-nodes.vue.d.ts +1 -1
- package/dist/components/radio-group/radio-group.vue.d.ts +1 -1
- package/dist/components/rich-text-editor/rich-text-editor.vue.d.ts +2 -2
- package/dist/components/select/select.vue.d.ts +2 -2
- package/dist/components/switch/switch.vue.d.ts +1 -1
- package/dist/components/tabs/tabs.vue.d.ts +4 -4
- package/dist/components/textarea/textarea.vue.d.ts +4 -4
- package/dist/components/tip/tip.vue.d.ts +1 -1
- package/dist/components/tree/tree.vue.d.ts +1 -1
- package/dist/components/tree-select/tree-select.vue.d.ts +3 -3
- package/package.json +11 -11
|
@@ -16,9 +16,9 @@ declare const __VLS_base: _$vue.DefineComponent<ActionProps, {}, {}, {}, {}, _$v
|
|
|
16
16
|
onRun?: (() => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
size: _$_veltra_utils0.ComponentSize;
|
|
19
|
-
type: ButtonType;
|
|
20
19
|
loading: boolean;
|
|
21
20
|
circle: boolean;
|
|
21
|
+
type: ButtonType;
|
|
22
22
|
inDropdown: boolean;
|
|
23
23
|
text: boolean;
|
|
24
24
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -24,10 +24,10 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
25
25
|
onSelect?: ((value: string) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
|
+
readonly: boolean;
|
|
28
|
+
disabled: boolean;
|
|
27
29
|
placeholder: string;
|
|
28
30
|
clearable: boolean;
|
|
29
|
-
disabled: boolean;
|
|
30
|
-
readonly: boolean;
|
|
31
31
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
32
32
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
@@ -3,22 +3,22 @@ import * as _$vue from "vue";
|
|
|
3
3
|
|
|
4
4
|
//#region src/components/cascade/cascade.vue.d.ts
|
|
5
5
|
declare const __VLS_export: _$vue.DefineComponent<CascadeProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {} & {
|
|
6
|
-
"update:modelValue": (value?: string | string[] | undefined) => any;
|
|
7
6
|
clear: () => any;
|
|
7
|
+
"update:modelValue": (value?: string | string[] | undefined) => any;
|
|
8
8
|
change: (...args: [value?: string | undefined, label?: string | undefined, item?: Record<string, any> | undefined] | [value: string[], label: string[], data: Record<string, any>[]]) => any;
|
|
9
9
|
}, string, _$vue.PublicProps, Readonly<CascadeProps> & Readonly<{
|
|
10
|
-
"onUpdate:modelValue"?: ((value?: string | string[] | undefined) => any) | undefined;
|
|
11
10
|
onClear?: (() => any) | undefined;
|
|
11
|
+
"onUpdate:modelValue"?: ((value?: string | string[] | undefined) => any) | undefined;
|
|
12
12
|
onChange?: ((...args: [value?: string | undefined, label?: string | undefined, item?: Record<string, any> | undefined] | [value: string[], label: string[], data: Record<string, any>[]]) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
|
+
readonly: boolean;
|
|
15
|
+
disabled: boolean;
|
|
14
16
|
placeholder: string;
|
|
15
17
|
clearable: boolean;
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
readonly: boolean;
|
|
18
|
-
labelKey: string;
|
|
19
|
-
valueKey: string;
|
|
20
18
|
data: Record<string, any>[];
|
|
21
19
|
separator: string;
|
|
20
|
+
labelKey: string;
|
|
21
|
+
valueKey: string;
|
|
22
22
|
childrenKey: string;
|
|
23
23
|
filterable: boolean;
|
|
24
24
|
visibilityLimit: number;
|
|
@@ -20,8 +20,8 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
20
20
|
"onUpdate:modelValue"?: ((checked: boolean) => any) | undefined;
|
|
21
21
|
onChange?: ((checked: boolean) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
-
disabled: boolean;
|
|
24
23
|
readonly: boolean;
|
|
24
|
+
disabled: boolean;
|
|
25
25
|
type: _$_veltra_utils0.ColorType;
|
|
26
26
|
round: boolean;
|
|
27
27
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -20,8 +20,8 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
20
20
|
"onUpdate:modelValue"?: ((checked: boolean) => any) | undefined;
|
|
21
21
|
onChange?: ((checked: boolean, e: MouseEvent) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
-
disabled: boolean;
|
|
24
23
|
readonly: boolean;
|
|
24
|
+
disabled: boolean;
|
|
25
25
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
26
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -14,8 +14,8 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
14
14
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
15
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
|
-
disabled: boolean;
|
|
18
17
|
readonly: boolean;
|
|
18
|
+
disabled: boolean;
|
|
19
19
|
labelKey: string;
|
|
20
20
|
valueKey: string;
|
|
21
21
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -12,8 +12,8 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
12
12
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
disabled: boolean;
|
|
16
15
|
readonly: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
17
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
//#endregion
|
|
@@ -7,11 +7,11 @@ declare const __VLS_export: _$vue.DefineComponent<DatePickerProps, {}, {}, {}, {
|
|
|
7
7
|
}, string, _$vue.PublicProps, Readonly<DatePickerProps> & Readonly<{
|
|
8
8
|
"onUpdate:modelValue"?: ((value?: string | undefined) => any) | undefined;
|
|
9
9
|
}>, {
|
|
10
|
-
placeholder: string;
|
|
11
|
-
clearable: boolean;
|
|
12
|
-
disabled: boolean;
|
|
13
10
|
readonly: boolean;
|
|
11
|
+
disabled: boolean;
|
|
14
12
|
type: "date" | "month" | "year";
|
|
13
|
+
placeholder: string;
|
|
14
|
+
clearable: boolean;
|
|
15
15
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
17
17
|
//#endregion
|
|
@@ -7,11 +7,11 @@ declare const __VLS_export: _$vue.DefineComponent<DateRangePickerProps, {}, {},
|
|
|
7
7
|
}, string, _$vue.PublicProps, Readonly<DateRangePickerProps> & Readonly<{
|
|
8
8
|
"onUpdate:modelValue"?: ((value?: [string, string] | undefined) => any) | undefined;
|
|
9
9
|
}>, {
|
|
10
|
-
placeholder: [string, string];
|
|
11
|
-
clearable: boolean;
|
|
12
|
-
disabled: boolean;
|
|
13
10
|
readonly: boolean;
|
|
11
|
+
disabled: boolean;
|
|
14
12
|
type: "date" | "month" | "year";
|
|
13
|
+
placeholder: [string, string];
|
|
14
|
+
clearable: boolean;
|
|
15
15
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
17
17
|
//#endregion
|
|
@@ -16,8 +16,8 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, _InputExposed, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
|
17
17
|
"update:modelValue": (value: string | undefined) => any;
|
|
18
18
|
} & {
|
|
19
|
-
"update:modelValue": (value: string) => any;
|
|
20
19
|
clear: () => any;
|
|
20
|
+
"update:modelValue": (value: string) => any;
|
|
21
21
|
change: (value: string) => any;
|
|
22
22
|
"suffix:click": (value?: string | undefined) => any;
|
|
23
23
|
"prefix:click": (value?: string | undefined) => any;
|
|
@@ -25,8 +25,8 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, _InputExposed
|
|
|
25
25
|
blur: (value?: string | undefined) => any;
|
|
26
26
|
"native:input": (ev: Event) => any;
|
|
27
27
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
29
28
|
onClear?: (() => any) | undefined;
|
|
29
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
30
30
|
onChange?: ((value: string) => any) | undefined;
|
|
31
31
|
"onSuffix:click"?: ((value?: string | undefined) => any) | undefined;
|
|
32
32
|
"onPrefix:click"?: ((value?: string | undefined) => any) | undefined;
|
|
@@ -34,10 +34,10 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, _InputExposed
|
|
|
34
34
|
onBlur?: ((value?: string | undefined) => any) | undefined;
|
|
35
35
|
"onNative:input"?: ((ev: Event) => any) | undefined;
|
|
36
36
|
}>, {
|
|
37
|
+
readonly: boolean;
|
|
38
|
+
disabled: boolean;
|
|
37
39
|
placeholder: string;
|
|
38
40
|
clearable: boolean;
|
|
39
|
-
disabled: boolean;
|
|
40
|
-
readonly: boolean;
|
|
41
41
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
42
42
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
43
43
|
declare const _default: typeof __VLS_export;
|
|
@@ -28,10 +28,10 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
28
28
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
29
29
|
onChange?: ((options: Record<string, any>[]) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
|
+
readonly: boolean;
|
|
32
|
+
disabled: boolean;
|
|
31
33
|
placeholder: string;
|
|
32
34
|
clearable: boolean;
|
|
33
|
-
disabled: boolean;
|
|
34
|
-
readonly: boolean;
|
|
35
35
|
labelKey: string;
|
|
36
36
|
valueKey: string;
|
|
37
37
|
visibilityLimit: number;
|
|
@@ -14,18 +14,18 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
14
14
|
declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
|
15
15
|
"update:modelValue": (value: (string | number)[]) => any;
|
|
16
16
|
} & {
|
|
17
|
-
"update:modelValue": (value: any[]) => any;
|
|
18
17
|
clear: () => any;
|
|
18
|
+
"update:modelValue": (value: any[]) => any;
|
|
19
19
|
change: (checked: Record<string, any>[]) => any;
|
|
20
20
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22
21
|
onClear?: (() => any) | undefined;
|
|
22
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
23
23
|
onChange?: ((checked: Record<string, any>[]) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
+
readonly: boolean;
|
|
26
|
+
disabled: boolean;
|
|
25
27
|
placeholder: string;
|
|
26
28
|
clearable: boolean;
|
|
27
|
-
disabled: boolean;
|
|
28
|
-
readonly: boolean;
|
|
29
29
|
labelKey: string;
|
|
30
30
|
valueKey: string;
|
|
31
31
|
filterable: boolean;
|
|
@@ -5,10 +5,10 @@ import * as _$_veltra_utils0 from "@veltra/utils";
|
|
|
5
5
|
//#region src/components/notification/notification.vue.d.ts
|
|
6
6
|
declare const __VLS_export: _$vue.DefineComponent<NotificationProps, _$_veltra_utils0.DeconstructValue<_NotificationExposed>, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<NotificationProps> & Readonly<{}>, {
|
|
7
7
|
closable: boolean;
|
|
8
|
+
position: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
8
9
|
duration: number;
|
|
9
10
|
offset: number;
|
|
10
11
|
buttonText: string;
|
|
11
|
-
position: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
12
12
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
13
13
|
declare const _default: typeof __VLS_export;
|
|
14
14
|
//#endregion
|
|
@@ -20,10 +20,10 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
20
20
|
"onUpdate:modelValue"?: ((value?: number | undefined) => any) | undefined;
|
|
21
21
|
onChange?: ((value?: number | undefined) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
|
+
readonly: boolean;
|
|
24
|
+
disabled: boolean;
|
|
23
25
|
placeholder: string;
|
|
24
26
|
clearable: boolean;
|
|
25
|
-
disabled: boolean;
|
|
26
|
-
readonly: boolean;
|
|
27
27
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
29
|
declare const _default: typeof __VLS_export;
|
|
@@ -24,9 +24,9 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
24
24
|
"onUpdate:start"?: ((value: number | undefined) => any) | undefined;
|
|
25
25
|
"onUpdate:end"?: ((value: number | undefined) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
|
-
clearable: boolean;
|
|
28
|
-
disabled: boolean;
|
|
29
27
|
readonly: boolean;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
clearable: boolean;
|
|
30
30
|
separator: string;
|
|
31
31
|
startPlaceholder: string;
|
|
32
32
|
endPlaceholder: string;
|
|
@@ -12,8 +12,8 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
12
12
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
disabled: boolean;
|
|
16
15
|
readonly: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
17
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
19
19
|
//#endregion
|
|
@@ -15,9 +15,9 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
15
15
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
16
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
clearable: boolean;
|
|
19
|
-
disabled: boolean;
|
|
20
18
|
readonly: boolean;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
clearable: boolean;
|
|
21
21
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
23
|
declare const _default: typeof __VLS_export;
|
|
@@ -10,8 +10,8 @@ type __VLS_Slots = {
|
|
|
10
10
|
}) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: _$vue.DefineComponent<ProgressProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<ProgressProps> & Readonly<{}>, {
|
|
13
|
-
type: index_d_exports.ColorType | ((percentage: number) => index_d_exports.ColorType);
|
|
14
13
|
circle: boolean;
|
|
14
|
+
type: index_d_exports.ColorType | ((percentage: number) => index_d_exports.ColorType);
|
|
15
15
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
17
|
declare const _default: typeof __VLS_export;
|
|
@@ -22,9 +22,9 @@ declare const __VLS_base: _$vue.DefineComponent<ProgressNodesProps, {}, {}, {},
|
|
|
22
22
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
23
23
|
onClick?: ((node: Record<string, any>, index: number) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
-
colorType: _$_veltra_utils0.ColorType;
|
|
26
25
|
labelKey: string;
|
|
27
26
|
valueKey: string;
|
|
27
|
+
colorType: _$_veltra_utils0.ColorType;
|
|
28
28
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -16,8 +16,8 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
16
16
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
17
17
|
onChange?: ((item: Record<string, any>) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
|
-
disabled: boolean;
|
|
20
19
|
readonly: boolean;
|
|
20
|
+
disabled: boolean;
|
|
21
21
|
labelKey: string;
|
|
22
22
|
valueKey: string;
|
|
23
23
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_export: _$vue.DefineComponent<RichTextEditorProps & {
|
|
|
12
12
|
}> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
placeholder: string;
|
|
16
|
-
disabled: boolean;
|
|
17
15
|
readonly: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
placeholder: string;
|
|
18
18
|
format: RichTextFormat;
|
|
19
19
|
toolbar: ToolbarItem[];
|
|
20
20
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -26,10 +26,10 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
26
26
|
"onUpdate:text"?: ((value: any) => any) | undefined;
|
|
27
27
|
"onUpdate:label"?: ((label?: string | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
+
readonly: boolean;
|
|
30
|
+
disabled: boolean;
|
|
29
31
|
placeholder: string;
|
|
30
32
|
clearable: boolean;
|
|
31
|
-
disabled: boolean;
|
|
32
|
-
readonly: boolean;
|
|
33
33
|
labelKey: string;
|
|
34
34
|
valueKey: string;
|
|
35
35
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -16,8 +16,8 @@ declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
16
16
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
17
|
onChange?: ((value: boolean) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
|
-
disabled: boolean;
|
|
20
19
|
readonly: boolean;
|
|
20
|
+
disabled: boolean;
|
|
21
21
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const _default: typeof __VLS_export;
|
|
23
23
|
//#endregion
|
|
@@ -16,17 +16,17 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
16
16
|
declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
|
17
17
|
"update:modelValue": (value: string | undefined) => any;
|
|
18
18
|
} & {
|
|
19
|
-
"update:modelValue": (value: string | number) => any;
|
|
20
19
|
delete: (item: TabItem, index: number) => any;
|
|
21
|
-
|
|
20
|
+
"update:modelValue": (value: string | number) => any;
|
|
22
21
|
create: () => any;
|
|
22
|
+
click: (item: TabItem, index: number) => any;
|
|
23
23
|
"update:items": (items: TabItem[]) => any;
|
|
24
24
|
"update:active": (active: string | number) => any;
|
|
25
25
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
26
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
27
26
|
onDelete?: ((item: TabItem, index: number) => any) | undefined;
|
|
28
|
-
|
|
27
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
29
28
|
onCreate?: (() => any) | undefined;
|
|
29
|
+
onClick?: ((item: TabItem, index: number) => any) | undefined;
|
|
30
30
|
"onUpdate:items"?: ((items: TabItem[]) => any) | undefined;
|
|
31
31
|
"onUpdate:active"?: ((active: string | number) => any) | undefined;
|
|
32
32
|
}>, {
|
|
@@ -10,22 +10,22 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
10
10
|
declare const __VLS_export: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (value: string | undefined) => any;
|
|
12
12
|
} & {
|
|
13
|
-
"update:modelValue": (value: string) => any;
|
|
14
13
|
clear: () => any;
|
|
14
|
+
"update:modelValue": (value: string) => any;
|
|
15
15
|
change: (value: string) => any;
|
|
16
16
|
focus: () => any;
|
|
17
17
|
blur: () => any;
|
|
18
18
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
20
19
|
onClear?: (() => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
21
|
onChange?: ((value: string) => any) | undefined;
|
|
22
22
|
onFocus?: (() => any) | undefined;
|
|
23
23
|
onBlur?: (() => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
+
readonly: boolean;
|
|
26
|
+
disabled: boolean;
|
|
25
27
|
placeholder: string;
|
|
26
28
|
clearable: boolean;
|
|
27
|
-
disabled: boolean;
|
|
28
|
-
readonly: boolean;
|
|
29
29
|
resize: boolean;
|
|
30
30
|
autosize: boolean;
|
|
31
31
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_base: _$vue.DefineComponent<TipProps, {}, {}, {}, {}, _$vue.
|
|
|
15
15
|
trigger: "hover" | "click";
|
|
16
16
|
contentTag: string;
|
|
17
17
|
visible: boolean;
|
|
18
|
-
content: string;
|
|
19
18
|
alignment: TipAlign;
|
|
19
|
+
content: string;
|
|
20
20
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
22
|
declare const _default: typeof __VLS_export;
|
|
@@ -21,9 +21,9 @@ declare const __VLS_base: _$vue.DefineComponent<TreeProps, _TreeExposed, {}, {},
|
|
|
21
21
|
"onNode-contextmenu"?: ((event: MouseEvent, node: TreeNode<Record<string, any>>) => any) | undefined;
|
|
22
22
|
"onSelected-synced"?: ((selected?: Record<string, any> | undefined) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
+
data: Record<string, any>[];
|
|
24
25
|
labelKey: string;
|
|
25
26
|
valueKey: string;
|
|
26
|
-
data: Record<string, any>[];
|
|
27
27
|
childrenKey: string;
|
|
28
28
|
expandOnClickNode: boolean;
|
|
29
29
|
checkStrictly: boolean;
|
|
@@ -19,15 +19,15 @@ declare const __VLS_base: _$vue.DefineComponent<__VLS_PublicProps, {}, {}, {}, {
|
|
|
19
19
|
change: (value?: string | number | undefined, selectedData?: Record<string, any> | undefined) => any;
|
|
20
20
|
"update:text": (text?: string | undefined) => any;
|
|
21
21
|
}, string, _$vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
23
22
|
onClear?: (() => any) | undefined;
|
|
23
|
+
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
24
24
|
onChange?: ((value?: string | number | undefined, selectedData?: Record<string, any> | undefined) => any) | undefined;
|
|
25
25
|
"onUpdate:text"?: ((text?: string | undefined) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
|
+
readonly: boolean;
|
|
28
|
+
disabled: boolean;
|
|
27
29
|
placeholder: string;
|
|
28
30
|
clearable: boolean;
|
|
29
|
-
disabled: boolean;
|
|
30
|
-
readonly: boolean;
|
|
31
31
|
labelKey: string;
|
|
32
32
|
valueKey: string;
|
|
33
33
|
filterable: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltra/desktop",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"src"
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"@lexical/rich-text": "^0.42.0",
|
|
41
41
|
"@lexical/selection": "^0.42.0",
|
|
42
42
|
"@lexical/utils": "^0.42.0",
|
|
43
|
-
"@veltra/compositions": "1.0.
|
|
44
|
-
"@veltra/directives": "1.0.
|
|
45
|
-
"@veltra/icons": "1.0.
|
|
46
|
-
"@veltra/styles": "1.0.
|
|
47
|
-
"@veltra/utils": "1.0.
|
|
43
|
+
"@veltra/compositions": "1.0.6",
|
|
44
|
+
"@veltra/directives": "1.0.6",
|
|
45
|
+
"@veltra/icons": "1.0.6",
|
|
46
|
+
"@veltra/styles": "1.0.6",
|
|
47
|
+
"@veltra/utils": "1.0.6",
|
|
48
48
|
"codemirror": "^6.0.2",
|
|
49
49
|
"lexical": "^0.42.0"
|
|
50
50
|
},
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"vue-tsc": "^3.2.6"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@veltra/compositions": "1.0.
|
|
61
|
-
"@veltra/directives": "1.0.
|
|
62
|
-
"@veltra/icons": "1.0.
|
|
63
|
-
"@veltra/styles": "1.0.
|
|
64
|
-
"@veltra/utils": "1.0.
|
|
60
|
+
"@veltra/compositions": "1.0.6",
|
|
61
|
+
"@veltra/directives": "1.0.6",
|
|
62
|
+
"@veltra/icons": "1.0.6",
|
|
63
|
+
"@veltra/styles": "1.0.6",
|
|
64
|
+
"@veltra/utils": "1.0.6",
|
|
65
65
|
"vue": "^3.5.0"
|
|
66
66
|
}
|
|
67
67
|
}
|