@jctrans-materials/comps-vue2 1.0.40-beta.8 → 1.0.40
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/JcLoginDialog/cmps/ForgetPassword.d.ts +80 -0
- package/dist/components/JcLoginDialog/cmps/ThirdBindLogin.d.ts +64 -0
- package/dist/components/JcLoginDialog/cmps/WechatBindLogin.d.ts +68 -0
- package/dist/components/JcLoginDialog/cmps/WechatLogin.d.ts +37 -0
- package/dist/components/JcLoginDialog/composables/useAuthLogin.d.ts +36 -0
- package/dist/components/JcLoginDialog/composables/useForgetPassword.d.ts +35 -0
- package/dist/components/JcLoginDialog/composables/useThirdPartyLogin.d.ts +81 -0
- package/dist/components/JcLoginDialog/constant.d.ts +77 -0
- package/dist/components/JcMSearch/common.d.ts +6 -0
- package/dist/components/JcMSearch/hooks/useSearchHistory.d.ts +19 -0
- package/dist/components/JcMSearch/hooks/useSearchLogic.d.ts +19 -0
- package/dist/components/JcMSearch/index.d.ts +107 -0
- package/dist/components/JcSearch/common.d.ts +4 -14
- package/dist/components/JcSearch/index.d.ts +1 -1
- package/dist/components/LineCascader/data.d.ts +129 -0
- package/dist/components/LineCascader/index.d.ts +81 -0
- package/dist/components/hooks/useModelValueHydration.d.ts +18 -0
- package/dist/gio.d.ts +7 -0
- package/dist/index.cjs.js +37 -14
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +10381 -7001
- package/package.json +8 -2
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export declare const lineList: ({
|
|
2
|
+
id: number;
|
|
3
|
+
type: string;
|
|
4
|
+
nameCn: string;
|
|
5
|
+
nameEn: string;
|
|
6
|
+
display: string;
|
|
7
|
+
displayEn: string;
|
|
8
|
+
displayCn: string;
|
|
9
|
+
raw: {
|
|
10
|
+
id: number;
|
|
11
|
+
lineType: string;
|
|
12
|
+
lineNameCn: string;
|
|
13
|
+
lineNameEn: string;
|
|
14
|
+
countryId: null;
|
|
15
|
+
countryNameCn: null;
|
|
16
|
+
countryNameEn: null;
|
|
17
|
+
countryList: ({
|
|
18
|
+
id: number;
|
|
19
|
+
continentId: number;
|
|
20
|
+
fileId: string;
|
|
21
|
+
fullnameCn: string;
|
|
22
|
+
fullnameEn: string;
|
|
23
|
+
nameCn: string;
|
|
24
|
+
nameEn: string;
|
|
25
|
+
nameEnShow: string;
|
|
26
|
+
sanctionFlag: string;
|
|
27
|
+
shortCode: string;
|
|
28
|
+
telCode: string;
|
|
29
|
+
pinyin: string;
|
|
30
|
+
capitalId: number;
|
|
31
|
+
threeCharCode: string;
|
|
32
|
+
developedType: string;
|
|
33
|
+
postCode: string;
|
|
34
|
+
isoShortCode: string;
|
|
35
|
+
} | {
|
|
36
|
+
id: number;
|
|
37
|
+
continentId: number;
|
|
38
|
+
fileId: string;
|
|
39
|
+
fullnameCn: string;
|
|
40
|
+
fullnameEn: string;
|
|
41
|
+
nameCn: string;
|
|
42
|
+
nameEn: string;
|
|
43
|
+
nameEnShow: string;
|
|
44
|
+
sanctionFlag: string;
|
|
45
|
+
shortCode: string;
|
|
46
|
+
telCode: string;
|
|
47
|
+
pinyin: string;
|
|
48
|
+
capitalId: number;
|
|
49
|
+
threeCharCode: string;
|
|
50
|
+
developedType: string;
|
|
51
|
+
isoShortCode: string;
|
|
52
|
+
postCode?: undefined;
|
|
53
|
+
} | {
|
|
54
|
+
id: number;
|
|
55
|
+
continentId: number;
|
|
56
|
+
fileId: string;
|
|
57
|
+
fullnameCn: string;
|
|
58
|
+
fullnameEn: string;
|
|
59
|
+
nameCn: string;
|
|
60
|
+
nameEn: string;
|
|
61
|
+
nameEnShow: string;
|
|
62
|
+
sanctionFlag: string;
|
|
63
|
+
shortCode: string;
|
|
64
|
+
telCode: string;
|
|
65
|
+
pinyin: string;
|
|
66
|
+
threeCharCode: string;
|
|
67
|
+
isoShortCode: string;
|
|
68
|
+
capitalId?: undefined;
|
|
69
|
+
developedType?: undefined;
|
|
70
|
+
postCode?: undefined;
|
|
71
|
+
})[];
|
|
72
|
+
};
|
|
73
|
+
lineType: string;
|
|
74
|
+
} | {
|
|
75
|
+
id: number;
|
|
76
|
+
type: string;
|
|
77
|
+
nameCn: string;
|
|
78
|
+
nameEn: string;
|
|
79
|
+
display: string;
|
|
80
|
+
displayEn: string;
|
|
81
|
+
displayCn: string;
|
|
82
|
+
raw: {
|
|
83
|
+
id: number;
|
|
84
|
+
lineType: string;
|
|
85
|
+
lineNameCn: string;
|
|
86
|
+
lineNameEn: string;
|
|
87
|
+
countryId: null;
|
|
88
|
+
countryNameCn: null;
|
|
89
|
+
countryNameEn: null;
|
|
90
|
+
countryList: ({
|
|
91
|
+
id: number;
|
|
92
|
+
continentId: number;
|
|
93
|
+
fileId: string;
|
|
94
|
+
fullnameCn: string;
|
|
95
|
+
fullnameEn: string;
|
|
96
|
+
nameCn: string;
|
|
97
|
+
nameEn: string;
|
|
98
|
+
nameEnShow: string;
|
|
99
|
+
sanctionFlag: string;
|
|
100
|
+
shortCode: string;
|
|
101
|
+
telCode: string;
|
|
102
|
+
pinyin: string;
|
|
103
|
+
capitalId: number;
|
|
104
|
+
threeCharCode: string;
|
|
105
|
+
developedType: string;
|
|
106
|
+
postCode: string;
|
|
107
|
+
isoShortCode: string;
|
|
108
|
+
} | {
|
|
109
|
+
id: number;
|
|
110
|
+
continentId: number;
|
|
111
|
+
fileId: string;
|
|
112
|
+
fullnameCn: string;
|
|
113
|
+
fullnameEn: string;
|
|
114
|
+
nameCn: string;
|
|
115
|
+
nameEn: string;
|
|
116
|
+
nameEnShow: string;
|
|
117
|
+
sanctionFlag: string;
|
|
118
|
+
shortCode: string;
|
|
119
|
+
telCode: string;
|
|
120
|
+
pinyin: string;
|
|
121
|
+
threeCharCode: string;
|
|
122
|
+
developedType: string;
|
|
123
|
+
isoShortCode: string;
|
|
124
|
+
capitalId?: undefined;
|
|
125
|
+
postCode?: undefined;
|
|
126
|
+
})[];
|
|
127
|
+
};
|
|
128
|
+
lineType: string;
|
|
129
|
+
})[];
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
declare const _default: import('../../../vue-demi').DefineComponent<{
|
|
2
|
+
value: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
default: () => never[];
|
|
5
|
+
};
|
|
6
|
+
lineId: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: null;
|
|
9
|
+
};
|
|
10
|
+
placeholder: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
lang: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
lineType: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
multiple: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}, {
|
|
27
|
+
selectRef: import('../../../vue-demi').Ref<any>;
|
|
28
|
+
selectedValues: import('../../../vue-demi').Ref<any[]>;
|
|
29
|
+
options: import('../../../vue-demi').Ref<any[]>;
|
|
30
|
+
loading: import('../../../vue-demi').Ref<boolean>;
|
|
31
|
+
cascaderProps: import('../../../vue-demi').ComputedRef<{
|
|
32
|
+
multiple: boolean;
|
|
33
|
+
expandTrigger: string;
|
|
34
|
+
emitPath: boolean;
|
|
35
|
+
checkStrictly: boolean;
|
|
36
|
+
}>;
|
|
37
|
+
transformedOptions: import('../../../vue-demi').ComputedRef<{
|
|
38
|
+
label: any;
|
|
39
|
+
value: string;
|
|
40
|
+
children: any;
|
|
41
|
+
}[]>;
|
|
42
|
+
currentPlaceholder: import('../../../vue-demi').ComputedRef<string>;
|
|
43
|
+
noDataText: import('../../../vue-demi').ComputedRef<"Searching..." | "正在搜索中..." | "暂无结果" | "No results found">;
|
|
44
|
+
handleExpand: () => void;
|
|
45
|
+
handleChange: (selected: any) => void;
|
|
46
|
+
handleApply: () => Promise<void>;
|
|
47
|
+
ICON_MORE: string;
|
|
48
|
+
}, {}, {}, {}, import('../../../vue-demi').ComponentOptionsMixin, import('../../../vue-demi').ComponentOptionsMixin, ("input" | "change" | "apply" | "update:lineId")[], string, Readonly<import('../../../vue-demi').ExtractPropTypes<{
|
|
49
|
+
value: {
|
|
50
|
+
type: ArrayConstructor;
|
|
51
|
+
default: () => never[];
|
|
52
|
+
};
|
|
53
|
+
lineId: {
|
|
54
|
+
type: NumberConstructor;
|
|
55
|
+
default: null;
|
|
56
|
+
};
|
|
57
|
+
placeholder: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
lang: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
lineType: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
multiple: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
}>>, {
|
|
74
|
+
value: unknown[];
|
|
75
|
+
lang: string;
|
|
76
|
+
lineType: string;
|
|
77
|
+
placeholder: string;
|
|
78
|
+
multiple: boolean;
|
|
79
|
+
lineId: number;
|
|
80
|
+
}>;
|
|
81
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface HydrationBaseItem<TType extends string = string> {
|
|
2
|
+
id?: string | number | null;
|
|
3
|
+
type?: TType | null;
|
|
4
|
+
display?: string;
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}
|
|
7
|
+
interface FetchResponse<T> {
|
|
8
|
+
records?: T[];
|
|
9
|
+
}
|
|
10
|
+
type FetchByTypeFn<T extends HydrationBaseItem<TType>, TType extends string> = (ids: Array<string | number> | string | number, type: TType) => Promise<FetchResponse<T>>;
|
|
11
|
+
export declare function useModelValueHydration<TType extends string, T extends HydrationBaseItem<TType>>(fetchByType: FetchByTypeFn<T, TType>): {
|
|
12
|
+
hydrateMultiple: (list: T[]) => Promise<{
|
|
13
|
+
updatedList: T[];
|
|
14
|
+
hasChanged: boolean;
|
|
15
|
+
}>;
|
|
16
|
+
hydrateSingle: (item: T | null | undefined) => Promise<T | null | undefined>;
|
|
17
|
+
};
|
|
18
|
+
export {};
|
package/dist/gio.d.ts
CHANGED
|
@@ -39,6 +39,13 @@ export type TrackConfig = {
|
|
|
39
39
|
idMapping?: boolean;
|
|
40
40
|
hashtag?: boolean;
|
|
41
41
|
serverUrl?: string;
|
|
42
|
+
performance?: {
|
|
43
|
+
monitor?: boolean;
|
|
44
|
+
exception?: boolean;
|
|
45
|
+
network?: boolean | {
|
|
46
|
+
exclude?: string | RegExp | Array<string | RegExp>;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
42
49
|
};
|
|
43
50
|
};
|
|
44
51
|
export type GioPublicApi = {
|