halov 0.25.1219 → 0.26.126
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/README.md +8 -8
- package/dist/components/DefaultPropertyForm.vue.d.ts +16 -187
- package/dist/components/FormInput.vue.d.ts +11 -186
- package/dist/components/HaloDatePicker.vue.d.ts +2 -2
- package/dist/components/HaloForm.vue.d.ts +0 -2
- package/dist/components/ImportModal.vue.d.ts +1 -1
- package/dist/components/ListInputModal.vue.d.ts +14 -30
- package/dist/halov.es.js +4157 -4160
- package/dist/halov.umd.cjs +6 -6
- package/dist/plugins/Utility.d.ts +1 -1
- package/dist/plugins/i18n.d.ts +1 -0
- package/dist/types/HaloTypes.d.ts +22 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# halov library document
|
|
2
|
-
|
|
3
|
-
## Prerequisites
|
|
4
|
-
|
|
5
|
-
- Install `naive-ui`:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install naive-ui
|
|
1
|
+
# halov library document
|
|
2
|
+
|
|
3
|
+
## Prerequisites
|
|
4
|
+
|
|
5
|
+
- Install `naive-ui`:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install naive-ui
|
|
9
9
|
|
|
@@ -605,7 +605,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
605
605
|
label: string;
|
|
606
606
|
value: string;
|
|
607
607
|
}>) | undefined;
|
|
608
|
-
multiple?: boolean | undefined;
|
|
609
608
|
} | undefined;
|
|
610
609
|
validationStatus?: "error" | "success" | "warning" | undefined;
|
|
611
610
|
errorMessage?: string | undefined;
|
|
@@ -654,7 +653,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
654
653
|
label: string;
|
|
655
654
|
value: string;
|
|
656
655
|
}>) | undefined;
|
|
657
|
-
multiple?: boolean | undefined;
|
|
658
656
|
} | undefined;
|
|
659
657
|
validationStatus?: "error" | "success" | "warning" | undefined;
|
|
660
658
|
errorMessage?: string | undefined;
|
|
@@ -681,192 +679,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
681
679
|
}>, {
|
|
682
680
|
readOnly: boolean;
|
|
683
681
|
}, {}, {
|
|
684
|
-
FormInput: import('vue').DefineComponent<
|
|
685
|
-
value
|
|
686
|
-
readonly
|
|
687
|
-
formItem:
|
|
688
|
-
label
|
|
689
|
-
placeholder
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
hasList: import('vue').Ref<boolean, boolean>;
|
|
700
|
-
showListModal: import('vue').Ref<boolean, boolean>;
|
|
701
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
702
|
-
value: any;
|
|
703
|
-
readonly: BooleanConstructor;
|
|
704
|
-
formItem: PropType<FormItem>;
|
|
705
|
-
label: StringConstructor;
|
|
706
|
-
placeholder: {
|
|
707
|
-
type: StringConstructor;
|
|
708
|
-
default: string;
|
|
709
|
-
};
|
|
710
|
-
}>> & Readonly<{
|
|
682
|
+
FormInput: import('vue').DefineComponent<{
|
|
683
|
+
value?: any;
|
|
684
|
+
readonly?: boolean;
|
|
685
|
+
formItem: FormItem;
|
|
686
|
+
label?: string;
|
|
687
|
+
placeholder?: string;
|
|
688
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
689
|
+
"update:value": (...args: any[]) => void;
|
|
690
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
691
|
+
value?: any;
|
|
692
|
+
readonly?: boolean;
|
|
693
|
+
formItem: FormItem;
|
|
694
|
+
label?: string;
|
|
695
|
+
placeholder?: string;
|
|
696
|
+
}> & Readonly<{
|
|
711
697
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
712
|
-
}>, {
|
|
713
|
-
readonly: boolean;
|
|
714
|
-
value: any;
|
|
715
|
-
placeholder: string;
|
|
716
|
-
}, {}, {
|
|
717
|
-
HaloDatePicker: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
718
|
-
value: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
719
|
-
type: StringConstructor;
|
|
720
|
-
readonly: BooleanConstructor;
|
|
721
|
-
clearable: BooleanConstructor;
|
|
722
|
-
}>, {
|
|
723
|
-
numberValue: import('vue').Ref<number | null, number | null>;
|
|
724
|
-
updateValue: (value: number | null) => void;
|
|
725
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
726
|
-
value: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
727
|
-
type: StringConstructor;
|
|
728
|
-
readonly: BooleanConstructor;
|
|
729
|
-
clearable: BooleanConstructor;
|
|
730
|
-
}>> & Readonly<{
|
|
731
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
732
|
-
}>, {
|
|
733
|
-
readonly: boolean;
|
|
734
|
-
clearable: boolean;
|
|
735
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
736
|
-
HaloTimePicker: import('vue').DefineComponent<{
|
|
737
|
-
value: string | Date | number;
|
|
738
|
-
type?: string;
|
|
739
|
-
readonly?: boolean;
|
|
740
|
-
clearable?: boolean;
|
|
741
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
742
|
-
"update:value": (...args: any[]) => void;
|
|
743
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
744
|
-
value: string | Date | number;
|
|
745
|
-
type?: string;
|
|
746
|
-
readonly?: boolean;
|
|
747
|
-
clearable?: boolean;
|
|
748
|
-
}> & Readonly<{
|
|
749
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
750
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
751
|
-
NullableBooleanInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
752
|
-
value: BooleanConstructor;
|
|
753
|
-
readonly: BooleanConstructor;
|
|
754
|
-
}>, {
|
|
755
|
-
valueRef: import('vue').Ref<string, string>;
|
|
756
|
-
updateValue: (value: any) => void;
|
|
757
|
-
nullableBooleanValues: ({
|
|
758
|
-
value: null;
|
|
759
|
-
label: string;
|
|
760
|
-
} | {
|
|
761
|
-
value: string;
|
|
762
|
-
label: string;
|
|
763
|
-
})[];
|
|
764
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
765
|
-
value: BooleanConstructor;
|
|
766
|
-
readonly: BooleanConstructor;
|
|
767
|
-
}>> & Readonly<{
|
|
768
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
769
|
-
}>, {
|
|
770
|
-
readonly: boolean;
|
|
771
|
-
value: boolean;
|
|
772
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
773
|
-
HaloTagsInput: import('vue').DefineComponent<{
|
|
774
|
-
value?: string;
|
|
775
|
-
disabled?: boolean;
|
|
776
|
-
tagSource?: string;
|
|
777
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
778
|
-
"update:value": (...args: any[]) => void;
|
|
779
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
780
|
-
value?: string;
|
|
781
|
-
disabled?: boolean;
|
|
782
|
-
tagSource?: string;
|
|
783
|
-
}> & Readonly<{
|
|
784
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
785
|
-
}>, {
|
|
786
|
-
disabled: boolean;
|
|
787
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
788
|
-
ListIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
789
|
-
ListInputModal: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
790
|
-
title: StringConstructor;
|
|
791
|
-
message: StringConstructor;
|
|
792
|
-
value: StringConstructor;
|
|
793
|
-
placeholder: {
|
|
794
|
-
type: StringConstructor;
|
|
795
|
-
default: string;
|
|
796
|
-
};
|
|
797
|
-
maxLength: NumberConstructor;
|
|
798
|
-
show: BooleanConstructor;
|
|
799
|
-
readonly: BooleanConstructor;
|
|
800
|
-
}>, {
|
|
801
|
-
t: (key: string) => string;
|
|
802
|
-
currentValue: import('vue').Ref<string | undefined, string | undefined>;
|
|
803
|
-
updateValue: () => void;
|
|
804
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:value" | "update:show")[], "update:value" | "update:show", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
805
|
-
title: StringConstructor;
|
|
806
|
-
message: StringConstructor;
|
|
807
|
-
value: StringConstructor;
|
|
808
|
-
placeholder: {
|
|
809
|
-
type: StringConstructor;
|
|
810
|
-
default: string;
|
|
811
|
-
};
|
|
812
|
-
maxLength: NumberConstructor;
|
|
813
|
-
show: BooleanConstructor;
|
|
814
|
-
readonly: BooleanConstructor;
|
|
815
|
-
}>> & Readonly<{
|
|
816
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
817
|
-
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
818
|
-
}>, {
|
|
819
|
-
readonly: boolean;
|
|
820
|
-
placeholder: string;
|
|
821
|
-
show: boolean;
|
|
822
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
823
|
-
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
824
|
-
value: StringConstructor;
|
|
825
|
-
label: StringConstructor;
|
|
826
|
-
inputReadOnly: BooleanConstructor;
|
|
827
|
-
placeholder: StringConstructor;
|
|
828
|
-
config: ObjectConstructor;
|
|
829
|
-
}>, {
|
|
830
|
-
t: (key: string) => string;
|
|
831
|
-
showModal: import('vue').Ref<boolean, boolean>;
|
|
832
|
-
config: import('./HaloModalInput.vue').ModalInputConfig;
|
|
833
|
-
btnMoreClick: () => void;
|
|
834
|
-
pickValue: (value: any) => void;
|
|
835
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
836
|
-
value: StringConstructor;
|
|
837
|
-
label: StringConstructor;
|
|
838
|
-
inputReadOnly: BooleanConstructor;
|
|
839
|
-
placeholder: StringConstructor;
|
|
840
|
-
config: ObjectConstructor;
|
|
841
|
-
}>> & Readonly<{
|
|
842
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
843
|
-
}>, {
|
|
844
|
-
inputReadOnly: boolean;
|
|
845
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
846
|
-
ColorInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
847
|
-
value: StringConstructor;
|
|
848
|
-
label: StringConstructor;
|
|
849
|
-
readonly: BooleanConstructor;
|
|
850
|
-
placeholder: StringConstructor;
|
|
851
|
-
clearable: BooleanConstructor;
|
|
852
|
-
}>, {
|
|
853
|
-
t: (key: string) => string;
|
|
854
|
-
swatches: string[];
|
|
855
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
856
|
-
value: StringConstructor;
|
|
857
|
-
label: StringConstructor;
|
|
858
|
-
readonly: BooleanConstructor;
|
|
859
|
-
placeholder: StringConstructor;
|
|
860
|
-
clearable: BooleanConstructor;
|
|
861
|
-
}>> & Readonly<{
|
|
862
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
863
|
-
}>, {
|
|
864
|
-
readonly: boolean;
|
|
865
|
-
clearable: boolean;
|
|
866
|
-
}, {}, {
|
|
867
|
-
ColorIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
868
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
869
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
698
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
870
699
|
NForm: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
871
700
|
readonly inline: BooleanConstructor;
|
|
872
701
|
readonly labelWidth: PropType<number | string>;
|
|
@@ -1,189 +1,14 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
1
|
import { FormItem } from '../types/HaloTypes';
|
|
3
|
-
|
|
4
|
-
value
|
|
5
|
-
readonly
|
|
6
|
-
formItem:
|
|
7
|
-
label
|
|
8
|
-
placeholder
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
t: (key: string) => string;
|
|
14
|
-
valueRef: import('vue').Ref<any, any>;
|
|
15
|
-
onFileChange: (e: Event) => void;
|
|
16
|
-
onSelectSearch: (query: string) => Promise<void>;
|
|
17
|
-
className: import('vue').Ref<any, any>;
|
|
18
|
-
hasList: import('vue').Ref<boolean, boolean>;
|
|
19
|
-
showListModal: import('vue').Ref<boolean, boolean>;
|
|
20
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
-
value: any;
|
|
22
|
-
readonly: BooleanConstructor;
|
|
23
|
-
formItem: PropType<FormItem>;
|
|
24
|
-
label: StringConstructor;
|
|
25
|
-
placeholder: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
}>> & Readonly<{
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
value?: any;
|
|
4
|
+
readonly?: boolean;
|
|
5
|
+
formItem: FormItem;
|
|
6
|
+
label?: string;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
"update:value": (...args: any[]) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
30
12
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
31
|
-
}>, {
|
|
32
|
-
readonly: boolean;
|
|
33
|
-
value: any;
|
|
34
|
-
placeholder: string;
|
|
35
|
-
}, {}, {
|
|
36
|
-
HaloDatePicker: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
37
|
-
value: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
readonly: BooleanConstructor;
|
|
40
|
-
clearable: BooleanConstructor;
|
|
41
|
-
}>, {
|
|
42
|
-
numberValue: import('vue').Ref<number | null, number | null>;
|
|
43
|
-
updateValue: (value: number | null) => void;
|
|
44
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
45
|
-
value: (StringConstructor | DateConstructor | NumberConstructor)[];
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
readonly: BooleanConstructor;
|
|
48
|
-
clearable: BooleanConstructor;
|
|
49
|
-
}>> & Readonly<{
|
|
50
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
}>, {
|
|
52
|
-
readonly: boolean;
|
|
53
|
-
clearable: boolean;
|
|
54
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
55
|
-
HaloTimePicker: import('vue').DefineComponent<{
|
|
56
|
-
value: string | Date | number;
|
|
57
|
-
type?: string;
|
|
58
|
-
readonly?: boolean;
|
|
59
|
-
clearable?: boolean;
|
|
60
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
61
|
-
"update:value": (...args: any[]) => void;
|
|
62
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
63
|
-
value: string | Date | number;
|
|
64
|
-
type?: string;
|
|
65
|
-
readonly?: boolean;
|
|
66
|
-
clearable?: boolean;
|
|
67
|
-
}> & Readonly<{
|
|
68
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
69
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
70
|
-
NullableBooleanInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
71
|
-
value: BooleanConstructor;
|
|
72
|
-
readonly: BooleanConstructor;
|
|
73
|
-
}>, {
|
|
74
|
-
valueRef: import('vue').Ref<string, string>;
|
|
75
|
-
updateValue: (value: any) => void;
|
|
76
|
-
nullableBooleanValues: ({
|
|
77
|
-
value: null;
|
|
78
|
-
label: string;
|
|
79
|
-
} | {
|
|
80
|
-
value: string;
|
|
81
|
-
label: string;
|
|
82
|
-
})[];
|
|
83
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
84
|
-
value: BooleanConstructor;
|
|
85
|
-
readonly: BooleanConstructor;
|
|
86
|
-
}>> & Readonly<{
|
|
87
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
}>, {
|
|
89
|
-
readonly: boolean;
|
|
90
|
-
value: boolean;
|
|
91
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
92
|
-
HaloTagsInput: import('vue').DefineComponent<{
|
|
93
|
-
value?: string;
|
|
94
|
-
disabled?: boolean;
|
|
95
|
-
tagSource?: string;
|
|
96
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
97
|
-
"update:value": (...args: any[]) => void;
|
|
98
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
99
|
-
value?: string;
|
|
100
|
-
disabled?: boolean;
|
|
101
|
-
tagSource?: string;
|
|
102
|
-
}> & Readonly<{
|
|
103
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
104
|
-
}>, {
|
|
105
|
-
disabled: boolean;
|
|
106
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
107
|
-
ListIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
108
|
-
ListInputModal: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
109
|
-
title: StringConstructor;
|
|
110
|
-
message: StringConstructor;
|
|
111
|
-
value: StringConstructor;
|
|
112
|
-
placeholder: {
|
|
113
|
-
type: StringConstructor;
|
|
114
|
-
default: string;
|
|
115
|
-
};
|
|
116
|
-
maxLength: NumberConstructor;
|
|
117
|
-
show: BooleanConstructor;
|
|
118
|
-
readonly: BooleanConstructor;
|
|
119
|
-
}>, {
|
|
120
|
-
t: (key: string) => string;
|
|
121
|
-
currentValue: import('vue').Ref<string | undefined, string | undefined>;
|
|
122
|
-
updateValue: () => void;
|
|
123
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:value" | "update:show")[], "update:value" | "update:show", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
124
|
-
title: StringConstructor;
|
|
125
|
-
message: StringConstructor;
|
|
126
|
-
value: StringConstructor;
|
|
127
|
-
placeholder: {
|
|
128
|
-
type: StringConstructor;
|
|
129
|
-
default: string;
|
|
130
|
-
};
|
|
131
|
-
maxLength: NumberConstructor;
|
|
132
|
-
show: BooleanConstructor;
|
|
133
|
-
readonly: BooleanConstructor;
|
|
134
|
-
}>> & Readonly<{
|
|
135
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
136
|
-
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
137
|
-
}>, {
|
|
138
|
-
readonly: boolean;
|
|
139
|
-
placeholder: string;
|
|
140
|
-
show: boolean;
|
|
141
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
142
|
-
HaloModalInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
143
|
-
value: StringConstructor;
|
|
144
|
-
label: StringConstructor;
|
|
145
|
-
inputReadOnly: BooleanConstructor;
|
|
146
|
-
placeholder: StringConstructor;
|
|
147
|
-
config: ObjectConstructor;
|
|
148
|
-
}>, {
|
|
149
|
-
t: (key: string) => string;
|
|
150
|
-
showModal: import('vue').Ref<boolean, boolean>;
|
|
151
|
-
config: import('./HaloModalInput.vue').ModalInputConfig;
|
|
152
|
-
btnMoreClick: () => void;
|
|
153
|
-
pickValue: (value: any) => void;
|
|
154
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
155
|
-
value: StringConstructor;
|
|
156
|
-
label: StringConstructor;
|
|
157
|
-
inputReadOnly: BooleanConstructor;
|
|
158
|
-
placeholder: StringConstructor;
|
|
159
|
-
config: ObjectConstructor;
|
|
160
|
-
}>> & Readonly<{
|
|
161
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
162
|
-
}>, {
|
|
163
|
-
inputReadOnly: boolean;
|
|
164
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
165
|
-
ColorInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
166
|
-
value: StringConstructor;
|
|
167
|
-
label: StringConstructor;
|
|
168
|
-
readonly: BooleanConstructor;
|
|
169
|
-
placeholder: StringConstructor;
|
|
170
|
-
clearable: BooleanConstructor;
|
|
171
|
-
}>, {
|
|
172
|
-
t: (key: string) => string;
|
|
173
|
-
swatches: string[];
|
|
174
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
175
|
-
value: StringConstructor;
|
|
176
|
-
label: StringConstructor;
|
|
177
|
-
readonly: BooleanConstructor;
|
|
178
|
-
placeholder: StringConstructor;
|
|
179
|
-
clearable: BooleanConstructor;
|
|
180
|
-
}>> & Readonly<{
|
|
181
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
182
|
-
}>, {
|
|
183
|
-
readonly: boolean;
|
|
184
|
-
clearable: boolean;
|
|
185
|
-
}, {}, {
|
|
186
|
-
ColorIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
187
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
188
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
189
14
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
-
value: (
|
|
2
|
+
value: (DateConstructor | StringConstructor | NumberConstructor)[];
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
readonly: BooleanConstructor;
|
|
5
5
|
clearable: BooleanConstructor;
|
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
numberValue: import('vue').Ref<number | null, number | null>;
|
|
8
8
|
updateValue: (value: number | null) => void;
|
|
9
9
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
10
|
-
value: (
|
|
10
|
+
value: (DateConstructor | StringConstructor | NumberConstructor)[];
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
readonly: BooleanConstructor;
|
|
13
13
|
clearable: BooleanConstructor;
|
|
@@ -155,7 +155,6 @@ declare function __VLS_template(): {
|
|
|
155
155
|
label: string;
|
|
156
156
|
value: string;
|
|
157
157
|
}>) | undefined;
|
|
158
|
-
multiple?: boolean | undefined;
|
|
159
158
|
} | undefined;
|
|
160
159
|
validationStatus?: "error" | "success" | "warning" | undefined;
|
|
161
160
|
errorMessage?: string | undefined;
|
|
@@ -212,7 +211,6 @@ declare function __VLS_template(): {
|
|
|
212
211
|
label: string;
|
|
213
212
|
value: string;
|
|
214
213
|
}>) | undefined;
|
|
215
|
-
multiple?: boolean | undefined;
|
|
216
214
|
} | undefined;
|
|
217
215
|
validationStatus?: "error" | "success" | "warning" | undefined;
|
|
218
216
|
errorMessage?: string | undefined;
|
|
@@ -1,35 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
title
|
|
3
|
-
message
|
|
4
|
-
value
|
|
5
|
-
placeholder
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
currentValue: import('vue').Ref<string | undefined, string | undefined>;
|
|
15
|
-
updateValue: () => void;
|
|
16
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:value" | "update:show")[], "update:value" | "update:show", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
-
title: StringConstructor;
|
|
18
|
-
message: StringConstructor;
|
|
19
|
-
value: StringConstructor;
|
|
20
|
-
placeholder: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
maxLength: NumberConstructor;
|
|
25
|
-
show: BooleanConstructor;
|
|
26
|
-
readonly: BooleanConstructor;
|
|
27
|
-
}>> & Readonly<{
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
message?: string;
|
|
4
|
+
value?: string;
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
maxLength?: number;
|
|
7
|
+
show?: boolean;
|
|
8
|
+
readonly?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
"update:value": (...args: any[]) => void;
|
|
12
|
+
"update:show": (...args: any[]) => void;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
14
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
29
15
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
30
16
|
}>, {
|
|
31
|
-
readonly: boolean;
|
|
32
17
|
placeholder: string;
|
|
33
|
-
|
|
34
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
19
|
export default _default;
|