@ecan-bi/datav 1.4.79 → 1.4.81

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.
@@ -3,6 +3,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3
3
  type: StringConstructor;
4
4
  default: string;
5
5
  };
6
+ customId: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
6
10
  contextRequestUrl: {
7
11
  type?: import("vue").PropType<string>;
8
12
  default?: string;
@@ -75,6 +79,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
75
79
  type?: import("vue").PropType<import("../../utils/props").Events>;
76
80
  default?: import("../../utils/props").Events;
77
81
  };
82
+ isCompatible: {
83
+ type?: import("vue").PropType<boolean>;
84
+ default?: boolean;
85
+ };
78
86
  }, {
79
87
  providerConfig: import("vue").Ref<HTMLElement>;
80
88
  configStyle: any;
@@ -99,6 +107,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
99
107
  type: StringConstructor;
100
108
  default: string;
101
109
  };
110
+ customId: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
102
114
  contextRequestUrl: {
103
115
  type?: import("vue").PropType<string>;
104
116
  default?: string;
@@ -171,7 +183,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
171
183
  type?: import("vue").PropType<import("../../utils/props").Events>;
172
184
  default?: import("../../utils/props").Events;
173
185
  };
186
+ isCompatible: {
187
+ type?: import("vue").PropType<boolean>;
188
+ default?: boolean;
189
+ };
174
190
  }>>, {
175
191
  pageId: string;
192
+ customId: string;
176
193
  }>;
177
194
  export default _sfc_main;
@@ -3,6 +3,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
3
3
  type: StringConstructor;
4
4
  default: string;
5
5
  };
6
+ customId: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
6
10
  contextRequestUrl: {
7
11
  type?: import("vue").PropType<string>;
8
12
  default?: string;
@@ -75,6 +79,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
75
79
  type?: import("vue").PropType<import("../../utils/props").Events>;
76
80
  default?: import("../../utils/props").Events;
77
81
  };
82
+ isCompatible: {
83
+ type?: import("vue").PropType<boolean>;
84
+ default?: boolean;
85
+ };
78
86
  }, {
79
87
  providerConfig: import("vue").Ref<HTMLElement>;
80
88
  configStyle: any;
@@ -99,6 +107,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
99
107
  type: StringConstructor;
100
108
  default: string;
101
109
  };
110
+ customId: {
111
+ type: StringConstructor;
112
+ default: string;
113
+ };
102
114
  contextRequestUrl: {
103
115
  type?: import("vue").PropType<string>;
104
116
  default?: string;
@@ -171,8 +183,13 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
171
183
  type?: import("vue").PropType<import("../../utils/props").Events>;
172
184
  default?: import("../../utils/props").Events;
173
185
  };
186
+ isCompatible: {
187
+ type?: import("vue").PropType<boolean>;
188
+ default?: boolean;
189
+ };
174
190
  }>>, {
175
191
  pageId: string;
192
+ customId: string;
176
193
  }>> & Record<string, any>;
177
194
  export default EcanProviderConfig;
178
195
  export * from './props';
@@ -22,6 +22,7 @@ export interface ProviderConfig {
22
22
  [key: string]: any;
23
23
  }[];
24
24
  events: Events;
25
+ isCompatible: boolean;
25
26
  }
26
27
  export declare const providerConfig: ProviderConfig;
27
28
  export declare const providerConfigComponentProps: {
@@ -97,4 +98,8 @@ export declare const providerConfigComponentProps: {
97
98
  type?: import("vue").PropType<Events>;
98
99
  default?: Events;
99
100
  };
101
+ isCompatible: {
102
+ type?: import("vue").PropType<boolean>;
103
+ default?: boolean;
104
+ };
100
105
  };