@das-fed/ui 6.4.0-hot.9.1 → 6.4.0-test.2

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.
Files changed (23) hide show
  1. package/package.json +5 -5
  2. package/packages/business-components/device-panel/index.js +4580 -4484
  3. package/packages/business-components/device-panel/index.js.gz +0 -0
  4. package/packages/business-components/device-panel/style.css +1 -1
  5. package/packages/business-components/device-panel/style.css.gz +0 -0
  6. package/packages/business-components/process-form/App.vue.d.ts +1 -0
  7. package/packages/business-components/process-form/index.d.ts +1 -0
  8. package/packages/business-components/process-form/index.js +926 -912
  9. package/packages/business-components/process-form/index.js.gz +0 -0
  10. package/packages/business-components/process-form/src/widgets/store.d.ts +1 -0
  11. package/packages/business-components/process-form/style.css +1 -1
  12. package/packages/business-components/process-form/type.d.ts +2 -0
  13. package/packages/business-components/process-search-form/hooks/useSearchOptions.d.ts +1 -0
  14. package/packages/business-components/process-search-form/index.js +394 -379
  15. package/packages/business-components/process-search-form/index.js.gz +0 -0
  16. package/packages/business-components/process-table/index.d.ts +11 -2
  17. package/packages/business-components/process-table/index.js +132 -128
  18. package/packages/business-components/process-table/index.js.gz +0 -0
  19. package/packages/business-components/process-table/src/App.vue.d.ts +1 -0
  20. package/packages/business-components/process-table/src/type.d.ts +2 -0
  21. package/packages/business-components/process-table/style.css +1 -1
  22. package/packages/business-components/video-dialog/index.js +202 -202
  23. package/packages/business-components/video-dialog/index.js.gz +0 -0
@@ -24,6 +24,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
24
24
  needDisplayFileds: boolean;
25
25
  clientType: "pc" | "mobile";
26
26
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
27
+ extraParams: Record<string, any>;
27
28
  permissionQuery: number[];
28
29
  apiUrl: string;
29
30
  reqMethod: string;
@@ -49,6 +50,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
49
50
  needDisplayFileds: boolean;
50
51
  clientType: "pc" | "mobile";
51
52
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
53
+ extraParams: Record<string, any>;
52
54
  permissionQuery: number[];
53
55
  apiUrl: string;
54
56
  reqMethod: string;
@@ -76,6 +78,7 @@ declare const DasProcessTable: import("@das-fed/utils").SFCWithInstall<{
76
78
  needDisplayFileds: boolean;
77
79
  clientType: "pc" | "mobile";
78
80
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
81
+ extraParams: Record<string, any>;
79
82
  permissionQuery: number[];
80
83
  apiUrl: string;
81
84
  reqMethod: string;
@@ -97,6 +100,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
97
100
  readonly needDisplayFileds?: boolean | undefined;
98
101
  readonly customOperation?: (operationType[] | ((row: any, column: any, index: number) => operationType[])) | undefined;
99
102
  readonly searchQuerys?: (import("./src/type.js").SearchQuerys[] | []) | undefined;
103
+ readonly extraParams?: Record<string, any> | undefined;
100
104
  readonly permissionQuery: number[];
101
105
  readonly apiUrl?: string | undefined;
102
106
  readonly reqMethod?: string | undefined;
@@ -155,6 +159,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
155
159
  needDisplayFileds: boolean;
156
160
  clientType: "pc" | "mobile";
157
161
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
162
+ extraParams: Record<string, any>;
158
163
  permissionQuery: number[];
159
164
  apiUrl: string;
160
165
  reqMethod: string;
@@ -184,6 +189,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
184
189
  needDisplayFileds: boolean;
185
190
  clientType: "pc" | "mobile";
186
191
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
192
+ extraParams: Record<string, any>;
187
193
  permissionQuery: number[];
188
194
  apiUrl: string;
189
195
  reqMethod: string;
@@ -194,7 +200,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
194
200
  "onUpdate:loading"?: ((loading: boolean) => any) | undefined;
195
201
  onGetSearchQuery?: ((val: any) => any) | undefined;
196
202
  onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
197
- }>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
203
+ }>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
198
204
  reqTableList: () => Promise<void>;
199
205
  handleCurrentPageChange: (val: any) => void;
200
206
  }> & {} & import("vue").ComponentCustomProperties & {} & {
@@ -212,6 +218,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
212
218
  readonly needDisplayFileds?: boolean | undefined;
213
219
  readonly customOperation?: (operationType[] | ((row: any, column: any, index: number) => operationType[])) | undefined;
214
220
  readonly searchQuerys?: (import("./src/type.js").SearchQuerys[] | []) | undefined;
221
+ readonly extraParams?: Record<string, any> | undefined;
215
222
  readonly permissionQuery: number[];
216
223
  readonly apiUrl?: string | undefined;
217
224
  readonly reqMethod?: string | undefined;
@@ -270,6 +277,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
270
277
  needDisplayFileds: boolean;
271
278
  clientType: "pc" | "mobile";
272
279
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
280
+ extraParams: Record<string, any>;
273
281
  permissionQuery: number[];
274
282
  apiUrl: string;
275
283
  reqMethod: string;
@@ -299,6 +307,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
299
307
  needDisplayFileds: boolean;
300
308
  clientType: "pc" | "mobile";
301
309
  searchQuerys: import("./src/type.js").SearchQuerys[] | [];
310
+ extraParams: Record<string, any>;
302
311
  permissionQuery: number[];
303
312
  apiUrl: string;
304
313
  reqMethod: string;
@@ -309,7 +318,7 @@ declare const DasProcessTableRef: () => import("vue").Ref<({
309
318
  "onUpdate:loading"?: ((loading: boolean) => any) | undefined;
310
319
  onGetSearchQuery?: ((val: any) => any) | undefined;
311
320
  onChangeSlotShow?: ((val: import("./src/type.js").ITableShowColumn[]) => any) | undefined;
312
- }>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
321
+ }>, "reqTableList" | "handleCurrentPageChange" | ("flowKey" | "needDisplayFileds" | "clientType" | "searchQuerys" | "extraParams" | "permissionQuery" | "apiUrl" | "reqMethod" | "columnSettingName")> & import("vue").ShallowUnwrapRef<{
313
322
  reqTableList: () => Promise<void>;
314
323
  handleCurrentPageChange: (val: any) => void;
315
324
  }> & {} & import("vue").ComponentCustomProperties & {} & {