@jctrans-materials/comps-vue3 1.0.40-beta.6 → 1.0.40-beta.8
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/JcCarrierSearch/JcCarrierSearch.test.d.ts +1 -0
- package/dist/components/JcCarrierSearch/index.d.ts +10 -0
- package/dist/components/JcMSearch/index.d.ts +1 -1
- package/dist/gio.d.ts +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.css +1 -1
- package/dist/index.esm.js +30 -23
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,6 +5,7 @@ declare function __VLS_template(): {
|
|
|
5
5
|
prefix?(_: {}): any;
|
|
6
6
|
option?(_: {
|
|
7
7
|
item: {
|
|
8
|
+
[x: string]: unknown;
|
|
8
9
|
id: number | string;
|
|
9
10
|
type: LocationType;
|
|
10
11
|
nameCn?: string | undefined;
|
|
@@ -42,6 +43,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
42
43
|
type: () => "air" | "shipping";
|
|
43
44
|
default: string;
|
|
44
45
|
};
|
|
46
|
+
reportType: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
45
50
|
placeholder: {
|
|
46
51
|
type: StringConstructor;
|
|
47
52
|
default: string;
|
|
@@ -82,6 +87,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
82
87
|
type: () => "air" | "shipping";
|
|
83
88
|
default: string;
|
|
84
89
|
};
|
|
90
|
+
reportType: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
85
94
|
placeholder: {
|
|
86
95
|
type: StringConstructor;
|
|
87
96
|
default: string;
|
|
@@ -111,6 +120,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
111
120
|
lang: string;
|
|
112
121
|
showApplyData: boolean;
|
|
113
122
|
lineType: "air" | "shipping";
|
|
123
|
+
reportType: string;
|
|
114
124
|
multiple: boolean;
|
|
115
125
|
defaultOptions: LocationUnifiedItem[];
|
|
116
126
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -26,8 +26,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
onApply?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
lang: string;
|
|
29
|
-
multiple: boolean;
|
|
30
29
|
reportType: ReportType;
|
|
30
|
+
multiple: boolean;
|
|
31
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
32
|
export default _default;
|
|
33
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/gio.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
|
|
3
|
-
export type TrackAttrs = Record<string, string | number | Array<string | number
|
|
3
|
+
export type TrackAttrs = Record<string, string | number | Array<string | number> | null | undefined>;
|
|
4
4
|
export type TrackDirectiveValue = string | {
|
|
5
5
|
event?: string;
|
|
6
6
|
name?: string;
|