@jctrans-materials/comps-vue2 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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -21,6 +21,10 @@ declare const _default: import('../../../vue-demi').DefineComponent<{
|
|
|
21
21
|
type: () => "air" | "shipping";
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
24
|
+
reportType: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
24
28
|
placeholder: {
|
|
25
29
|
type: StringConstructor;
|
|
26
30
|
default: string;
|
|
@@ -42,6 +46,7 @@ declare const _default: import('../../../vue-demi').DefineComponent<{
|
|
|
42
46
|
innerValue: import('../../../vue-demi').WritableComputedRef<string | number | unknown[]>;
|
|
43
47
|
loading: import('../../../vue-demi').Ref<boolean>;
|
|
44
48
|
options: import('../../../vue-demi').Ref<{
|
|
49
|
+
[x: string]: unknown;
|
|
45
50
|
id: number | string;
|
|
46
51
|
type: LocationType;
|
|
47
52
|
nameCn?: string | undefined;
|
|
@@ -93,6 +98,10 @@ declare const _default: import('../../../vue-demi').DefineComponent<{
|
|
|
93
98
|
type: () => "air" | "shipping";
|
|
94
99
|
default: string;
|
|
95
100
|
};
|
|
101
|
+
reportType: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
96
105
|
placeholder: {
|
|
97
106
|
type: StringConstructor;
|
|
98
107
|
default: string;
|
|
@@ -114,6 +123,7 @@ declare const _default: import('../../../vue-demi').DefineComponent<{
|
|
|
114
123
|
modelValue: string | number | unknown[];
|
|
115
124
|
lang: string;
|
|
116
125
|
lineType: "air" | "shipping";
|
|
126
|
+
reportType: string;
|
|
117
127
|
placeholder: string;
|
|
118
128
|
multiple: boolean;
|
|
119
129
|
showApplyData: boolean;
|
package/dist/gio.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VueConstructor } from '../vue-demi';
|
|
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;
|