@privateaim/client-vue 0.8.4 → 0.8.5

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 (42) hide show
  1. package/dist/components/analysis/wizard/FAnalysisWizard.vue.d.ts +79 -53
  2. package/dist/components/analysis/wizard/FAnalysisWizard.vue.d.ts.map +1 -1
  3. package/dist/components/analysis/wizard/FAnalysisWizardStepFiles.vue.d.ts +78 -52
  4. package/dist/components/analysis/wizard/FAnalysisWizardStepFiles.vue.d.ts.map +1 -1
  5. package/dist/components/analysis/wizard/FAnalysisWizardStepFinal.vue.d.ts +1 -1
  6. package/dist/components/analysis/wizard/FAnalysisWizardStepFinal.vue.d.ts.map +1 -1
  7. package/dist/components/analysis-bucket-file/FAnalysisBucketFileManager.vue.d.ts +78 -52
  8. package/dist/components/analysis-bucket-file/FAnalysisBucketFileManager.vue.d.ts.map +1 -1
  9. package/dist/components/analysis-bucket-file/FAnalysisBucketFileUpload.vue.d.ts +76 -0
  10. package/dist/components/analysis-bucket-file/FAnalysisBucketFileUpload.vue.d.ts.map +1 -0
  11. package/dist/components/index.d.ts +1 -0
  12. package/dist/components/index.d.ts.map +1 -1
  13. package/dist/components/login/FLoginForm.vue.d.ts.map +1 -1
  14. package/dist/components/master-image/FMasterImagesSync.d.ts.map +1 -1
  15. package/dist/components/master-image-event-log/FMasterImageEventLog.d.ts +27 -0
  16. package/dist/components/master-image-event-log/FMasterImageEventLog.d.ts.map +1 -0
  17. package/dist/components/master-image-event-log/FMasterImageEventLogs.d.ts +5 -0
  18. package/dist/components/master-image-event-log/FMasterImageEventLogs.d.ts.map +1 -0
  19. package/dist/components/master-image-event-log/index.d.ts +3 -0
  20. package/dist/components/master-image-event-log/index.d.ts.map +1 -0
  21. package/dist/components/node/FNodeCrypto.vue.d.ts +30 -0
  22. package/dist/components/node/FNodeCrypto.vue.d.ts.map +1 -0
  23. package/dist/components/node/index.d.ts +1 -0
  24. package/dist/components/node/index.d.ts.map +1 -1
  25. package/dist/core/entity-manager/module.d.ts +2 -4
  26. package/dist/core/entity-manager/module.d.ts.map +1 -1
  27. package/dist/core/entity-manager/type.d.ts +2 -4
  28. package/dist/core/entity-manager/type.d.ts.map +1 -1
  29. package/dist/core/entity-socket/module.d.ts +2 -4
  30. package/dist/core/entity-socket/module.d.ts.map +1 -1
  31. package/dist/core/entity-socket/type.d.ts +6 -6
  32. package/dist/core/entity-socket/type.d.ts.map +1 -1
  33. package/dist/core/list/module.d.ts +2 -4
  34. package/dist/core/list/module.d.ts.map +1 -1
  35. package/dist/core/list/type.d.ts +9 -9
  36. package/dist/core/list/type.d.ts.map +1 -1
  37. package/dist/core/socket/install.d.ts.map +1 -1
  38. package/dist/index.cjs +1750 -559
  39. package/dist/index.cjs.map +1 -1
  40. package/dist/index.mjs +1759 -571
  41. package/dist/index.mjs.map +1 -1
  42. package/package.json +26 -25
@@ -143,44 +143,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
143
143
  type: PropType<AnalysisBucketFile>;
144
144
  };
145
145
  }>, {
146
- directoryMode: Ref<boolean, boolean>;
147
146
  busy: Ref<boolean, boolean>;
148
- checkTempFiles: ($event: any) => void;
149
- tempFiles: Ref<{
150
- readonly lastModified: number;
151
- readonly name: string;
152
- readonly webkitRelativePath: string;
153
- readonly size: number;
154
- readonly type: string;
155
- arrayBuffer: () => Promise<ArrayBuffer>;
156
- slice: (start?: number, end?: number, contentType?: string) => Blob;
157
- stream: () => ReadableStream<Uint8Array>;
158
- text: () => Promise<string>;
159
- }[], File[] | {
160
- readonly lastModified: number;
161
- readonly name: string;
162
- readonly webkitRelativePath: string;
163
- readonly size: number;
164
- readonly type: string;
165
- arrayBuffer: () => Promise<ArrayBuffer>;
166
- slice: (start?: number, end?: number, contentType?: string) => Blob;
167
- stream: () => ReadableStream<Uint8Array>;
168
- text: () => Promise<string>;
169
- }[]>;
170
147
  selected: Ref<string[], string[]>;
171
148
  selectAll: Ref<boolean, boolean>;
172
149
  dropSelected: () => Promise<void>;
173
150
  selectAllFiles: () => void;
174
- dropTempFile: ($event: any) => void;
175
- upload: () => Promise<void>;
176
151
  handleCreated: (entity: AnalysisBucketFile) => void;
177
152
  handleDeleted: (entity: AnalysisBucketFile) => void;
178
153
  handleUpdated: (entity: AnalysisBucketFile) => void;
154
+ handleFailed: (e: Error) => void;
155
+ handleUploaded: () => void;
156
+ handleFileUploaded: (entity: AnalysisBucketFile) => void;
179
157
  toggleFile: (file: AnalysisBucketFile) => void;
180
158
  entrypointFile: Ref<AnalysisBucketFile, AnalysisBucketFile>;
181
159
  entrypointFileId: import("vue").ComputedRef<string>;
182
160
  changeEntryPointFile: (file: AnalysisBucketFile) => Promise<void>;
183
- filesNode: Ref<string, string>;
184
161
  fileListNode: Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
185
162
  realmId: {
186
163
  type: StringConstructor;
@@ -335,6 +312,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
335
312
  loadOnSetup: boolean;
336
313
  }, import("vue").SlotsType<import("../../../core").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
337
314
  fileListQuery: import("vue").ComputedRef<import("rapiq").BuildInput<AnalysisBucketFile>>;
315
+ modal: Ref<boolean, boolean>;
316
+ toggleModal: () => void;
338
317
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile")[], "failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
339
318
  entity: {
340
319
  type: PropType<import("@privateaim/core-kit").AnalysisBucket>;
@@ -351,6 +330,79 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
351
330
  onUploaded?: (...args: any[]) => any;
352
331
  onSetEntrypointFile?: (...args: any[]) => any;
353
332
  }>, {}, {}, {
333
+ BModal: any;
334
+ FAnalysisBucketFileUpload: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
335
+ entity: {
336
+ type: PropType<import("@privateaim/core-kit").AnalysisBucket>;
337
+ required: true;
338
+ };
339
+ }>, {
340
+ directoryMode: Ref<boolean, boolean>;
341
+ busy: Ref<boolean, boolean>;
342
+ vNode: Ref<string, string>;
343
+ tempFiles: Ref<{
344
+ readonly lastModified: number;
345
+ readonly name: string;
346
+ readonly webkitRelativePath: string;
347
+ readonly size: number;
348
+ readonly type: string;
349
+ arrayBuffer: () => Promise<ArrayBuffer>;
350
+ bytes: () => Promise<Uint8Array>;
351
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
352
+ stream: () => ReadableStream<Uint8Array>;
353
+ text: () => Promise<string>;
354
+ }[], File[] | {
355
+ readonly lastModified: number;
356
+ readonly name: string;
357
+ readonly webkitRelativePath: string;
358
+ readonly size: number;
359
+ readonly type: string;
360
+ arrayBuffer: () => Promise<ArrayBuffer>;
361
+ bytes: () => Promise<Uint8Array>;
362
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
363
+ stream: () => ReadableStream<Uint8Array>;
364
+ text: () => Promise<string>;
365
+ }[]>;
366
+ checkTempFiles: ($event: any) => void;
367
+ dropTempFile: ($event: any) => void;
368
+ upload: () => Promise<void>;
369
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "fileUploaded" | "uploaded")[], "failed" | "fileUploaded" | "uploaded", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
370
+ entity: {
371
+ type: PropType<import("@privateaim/core-kit").AnalysisBucket>;
372
+ required: true;
373
+ };
374
+ }>> & Readonly<{
375
+ onFailed?: (...args: any[]) => any;
376
+ onFileUploaded?: (...args: any[]) => any;
377
+ onUploaded?: (...args: any[]) => any;
378
+ }>, {}, {}, {
379
+ FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
380
+ file: {
381
+ type: PropType<File>;
382
+ required: true;
383
+ };
384
+ pathSelected: {
385
+ type: BooleanConstructor;
386
+ default: boolean;
387
+ };
388
+ }>, {
389
+ path: import("vue").ComputedRef<string>;
390
+ drop: () => void;
391
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
392
+ file: {
393
+ type: PropType<File>;
394
+ required: true;
395
+ };
396
+ pathSelected: {
397
+ type: BooleanConstructor;
398
+ default: boolean;
399
+ };
400
+ }>> & Readonly<{
401
+ onDrop?: (...args: any[]) => any;
402
+ }>, {
403
+ pathSelected: boolean;
404
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
405
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
354
406
  FAnalysisBucketFiles: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
355
407
  realmId: {
356
408
  type: StringConstructor;
@@ -428,32 +480,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
428
480
  query: import("rapiq").BuildInput<AnalysisBucketFile>;
429
481
  loadOnSetup: boolean;
430
482
  }, import("vue").SlotsType<import("../../../core").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
431
- FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
432
- file: {
433
- type: PropType<File>;
434
- required: true;
435
- };
436
- pathSelected: {
437
- type: BooleanConstructor;
438
- default: boolean;
439
- };
440
- }>, {
441
- path: import("vue").ComputedRef<string>;
442
- drop: () => void;
443
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
444
- file: {
445
- type: PropType<File>;
446
- required: true;
447
- };
448
- pathSelected: {
449
- type: BooleanConstructor;
450
- default: boolean;
451
- };
452
- }>> & Readonly<{
453
- onDrop?: (...args: any[]) => any;
454
- }>, {
455
- pathSelected: boolean;
456
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
457
483
  FAnalysisFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
458
484
  entity: {
459
485
  type: PropType<AnalysisBucketFile>;
@@ -587,7 +613,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
587
613
  FormWizard: any;
588
614
  WizardButton: any;
589
615
  TabContent: any;
590
- FAnalysisWizardStepFinal: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
616
+ FAnalysisWizardStepFinal: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
591
617
  FAnalysisWizardStepBase: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
592
618
  entity: {
593
619
  type: PropType<Analysis>;
@@ -1 +1 @@
1
- {"version":3,"file":"FAnalysisWizard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizard.vue"],"names":[],"mappings":"AA4UA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AASzC,OAAO,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAA+B,MAAM,sBAAsB,CAAC;;;cAkB3D,QAAQ,CAAC,QAAQ,CAAC;;;;;uBAiFZ,KAAK,GAAG,IAAI;4BANP,QAAQ;0CAyGM,MAAM,aAAa,MAAM;;iCAKlC,KAAK;;;0BA9Eb,OAAO,CAAC,OAAO,CAAC;;+BAiEV,kBAAkB;;;;cA5KhC,QAAQ,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZ9C,wBAkOG"}
1
+ {"version":3,"file":"FAnalysisWizard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizard.vue"],"names":[],"mappings":"AA4UA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AASzC,OAAO,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAA+B,MAAM,sBAAsB,CAAC;;;cAkB3D,QAAQ,CAAC,QAAQ,CAAC;;;;;uBAiFZ,KAAK,GAAG,IAAI;4BANP,QAAQ;0CAyGM,MAAM,aAAa,MAAM;;iCAKlC,KAAK;;;0BA9Eb,OAAO,CAAC,OAAO,CAAC;;+BAiEV,kBAAkB;;;;cA5KhC,QAAQ,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZ9C,wBAkOG"}
@@ -116,44 +116,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
116
116
  type: PropType<AnalysisBucketFile>;
117
117
  };
118
118
  }>, {
119
- directoryMode: import("vue").Ref<boolean, boolean>;
120
119
  busy: import("vue").Ref<boolean, boolean>;
121
- checkTempFiles: ($event: any) => void;
122
- tempFiles: import("vue").Ref<{
123
- readonly lastModified: number;
124
- readonly name: string;
125
- readonly webkitRelativePath: string;
126
- readonly size: number;
127
- readonly type: string;
128
- arrayBuffer: () => Promise<ArrayBuffer>;
129
- slice: (start?: number, end?: number, contentType?: string) => Blob;
130
- stream: () => ReadableStream<Uint8Array>;
131
- text: () => Promise<string>;
132
- }[], File[] | {
133
- readonly lastModified: number;
134
- readonly name: string;
135
- readonly webkitRelativePath: string;
136
- readonly size: number;
137
- readonly type: string;
138
- arrayBuffer: () => Promise<ArrayBuffer>;
139
- slice: (start?: number, end?: number, contentType?: string) => Blob;
140
- stream: () => ReadableStream<Uint8Array>;
141
- text: () => Promise<string>;
142
- }[]>;
143
120
  selected: import("vue").Ref<string[], string[]>;
144
121
  selectAll: import("vue").Ref<boolean, boolean>;
145
122
  dropSelected: () => Promise<void>;
146
123
  selectAllFiles: () => void;
147
- dropTempFile: ($event: any) => void;
148
- upload: () => Promise<void>;
149
124
  handleCreated: (entity: AnalysisBucketFile) => void;
150
125
  handleDeleted: (entity: AnalysisBucketFile) => void;
151
126
  handleUpdated: (entity: AnalysisBucketFile) => void;
127
+ handleFailed: (e: Error) => void;
128
+ handleUploaded: () => void;
129
+ handleFileUploaded: (entity: AnalysisBucketFile) => void;
152
130
  toggleFile: (file: AnalysisBucketFile) => void;
153
131
  entrypointFile: import("vue").Ref<AnalysisBucketFile, AnalysisBucketFile>;
154
132
  entrypointFileId: import("vue").ComputedRef<string>;
155
133
  changeEntryPointFile: (file: AnalysisBucketFile) => Promise<void>;
156
- filesNode: import("vue").Ref<string, string>;
157
134
  fileListNode: import("vue").Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
158
135
  realmId: {
159
136
  type: StringConstructor;
@@ -308,6 +285,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
308
285
  loadOnSetup: boolean;
309
286
  }, import("vue").SlotsType<import("../../../index.js").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
310
287
  fileListQuery: import("vue").ComputedRef<import("rapiq").BuildInput<AnalysisBucketFile>>;
288
+ modal: import("vue").Ref<boolean, boolean>;
289
+ toggleModal: () => void;
311
290
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile")[], "failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
312
291
  entity: {
313
292
  type: PropType<AnalysisBucket>;
@@ -324,6 +303,79 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
324
303
  onUploaded?: (...args: any[]) => any;
325
304
  onSetEntrypointFile?: (...args: any[]) => any;
326
305
  }>, {}, {}, {
306
+ BModal: any;
307
+ FAnalysisBucketFileUpload: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
308
+ entity: {
309
+ type: PropType<AnalysisBucket>;
310
+ required: true;
311
+ };
312
+ }>, {
313
+ directoryMode: import("vue").Ref<boolean, boolean>;
314
+ busy: import("vue").Ref<boolean, boolean>;
315
+ vNode: import("vue").Ref<string, string>;
316
+ tempFiles: import("vue").Ref<{
317
+ readonly lastModified: number;
318
+ readonly name: string;
319
+ readonly webkitRelativePath: string;
320
+ readonly size: number;
321
+ readonly type: string;
322
+ arrayBuffer: () => Promise<ArrayBuffer>;
323
+ bytes: () => Promise<Uint8Array>;
324
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
325
+ stream: () => ReadableStream<Uint8Array>;
326
+ text: () => Promise<string>;
327
+ }[], File[] | {
328
+ readonly lastModified: number;
329
+ readonly name: string;
330
+ readonly webkitRelativePath: string;
331
+ readonly size: number;
332
+ readonly type: string;
333
+ arrayBuffer: () => Promise<ArrayBuffer>;
334
+ bytes: () => Promise<Uint8Array>;
335
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
336
+ stream: () => ReadableStream<Uint8Array>;
337
+ text: () => Promise<string>;
338
+ }[]>;
339
+ checkTempFiles: ($event: any) => void;
340
+ dropTempFile: ($event: any) => void;
341
+ upload: () => Promise<void>;
342
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "fileUploaded" | "uploaded")[], "failed" | "fileUploaded" | "uploaded", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
343
+ entity: {
344
+ type: PropType<AnalysisBucket>;
345
+ required: true;
346
+ };
347
+ }>> & Readonly<{
348
+ onFailed?: (...args: any[]) => any;
349
+ onFileUploaded?: (...args: any[]) => any;
350
+ onUploaded?: (...args: any[]) => any;
351
+ }>, {}, {}, {
352
+ FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
353
+ file: {
354
+ type: PropType<File>;
355
+ required: true;
356
+ };
357
+ pathSelected: {
358
+ type: BooleanConstructor;
359
+ default: boolean;
360
+ };
361
+ }>, {
362
+ path: import("vue").ComputedRef<string>;
363
+ drop: () => void;
364
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
365
+ file: {
366
+ type: PropType<File>;
367
+ required: true;
368
+ };
369
+ pathSelected: {
370
+ type: BooleanConstructor;
371
+ default: boolean;
372
+ };
373
+ }>> & Readonly<{
374
+ onDrop?: (...args: any[]) => any;
375
+ }>, {
376
+ pathSelected: boolean;
377
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
378
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
327
379
  FAnalysisBucketFiles: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
328
380
  realmId: {
329
381
  type: StringConstructor;
@@ -401,32 +453,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
401
453
  query: import("rapiq").BuildInput<AnalysisBucketFile>;
402
454
  loadOnSetup: boolean;
403
455
  }, import("vue").SlotsType<import("../../../index.js").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
404
- FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
405
- file: {
406
- type: PropType<File>;
407
- required: true;
408
- };
409
- pathSelected: {
410
- type: BooleanConstructor;
411
- default: boolean;
412
- };
413
- }>, {
414
- path: import("vue").ComputedRef<string>;
415
- drop: () => void;
416
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
417
- file: {
418
- type: PropType<File>;
419
- required: true;
420
- };
421
- pathSelected: {
422
- type: BooleanConstructor;
423
- default: boolean;
424
- };
425
- }>> & Readonly<{
426
- onDrop?: (...args: any[]) => any;
427
- }>, {
428
- pathSelected: boolean;
429
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
430
456
  FAnalysisFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
431
457
  entity: {
432
458
  type: PropType<AnalysisBucketFile>;
@@ -1 +1 @@
1
- {"version":3,"file":"FAnalysisWizardStepFiles.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizardStepFiles.vue"],"names":[],"mappings":"AAAA,OA4GO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC/C,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;;;cAae,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,kBAAkB,CAAC;;;sBAWvB,KAAK;iCAIM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAnBlC,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZxD,wBA8CG"}
1
+ {"version":3,"file":"FAnalysisWizardStepFiles.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizardStepFiles.vue"],"names":[],"mappings":"AAAA,OAmHO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAC/C,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;;;cAae,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,kBAAkB,CAAC;;;sBAWvB,KAAK;iCAIM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAnBlC,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZxD,wBA8CG"}
@@ -1,3 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
2
2
  export default _default;
3
3
  //# sourceMappingURL=FAnalysisWizardStepFinal.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FAnalysisWizardStepFinal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizardStepFinal.vue"],"names":[],"mappings":";AAqEA,wBAKG"}
1
+ {"version":3,"file":"FAnalysisWizardStepFinal.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/analysis/wizard/FAnalysisWizardStepFinal.vue"],"names":[],"mappings":";AAuDA,wBAMG"}
@@ -10,44 +10,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10
10
  type: PropType<AnalysisBucketFile>;
11
11
  };
12
12
  }>, {
13
- directoryMode: Ref<boolean, boolean>;
14
13
  busy: Ref<boolean, boolean>;
15
- checkTempFiles: ($event: any) => void;
16
- tempFiles: Ref<{
17
- readonly lastModified: number;
18
- readonly name: string;
19
- readonly webkitRelativePath: string;
20
- readonly size: number;
21
- readonly type: string;
22
- arrayBuffer: () => Promise<ArrayBuffer>;
23
- slice: (start?: number, end?: number, contentType?: string) => Blob;
24
- stream: () => ReadableStream<Uint8Array>;
25
- text: () => Promise<string>;
26
- }[], File[] | {
27
- readonly lastModified: number;
28
- readonly name: string;
29
- readonly webkitRelativePath: string;
30
- readonly size: number;
31
- readonly type: string;
32
- arrayBuffer: () => Promise<ArrayBuffer>;
33
- slice: (start?: number, end?: number, contentType?: string) => Blob;
34
- stream: () => ReadableStream<Uint8Array>;
35
- text: () => Promise<string>;
36
- }[]>;
37
14
  selected: Ref<string[], string[]>;
38
15
  selectAll: Ref<boolean, boolean>;
39
16
  dropSelected: () => Promise<void>;
40
17
  selectAllFiles: () => void;
41
- dropTempFile: ($event: any) => void;
42
- upload: () => Promise<void>;
43
18
  handleCreated: (entity: AnalysisBucketFile) => void;
44
19
  handleDeleted: (entity: AnalysisBucketFile) => void;
45
20
  handleUpdated: (entity: AnalysisBucketFile) => void;
21
+ handleFailed: (e: Error) => void;
22
+ handleUploaded: () => void;
23
+ handleFileUploaded: (entity: AnalysisBucketFile) => void;
46
24
  toggleFile: (file: AnalysisBucketFile) => void;
47
25
  entrypointFile: Ref<AnalysisBucketFile, AnalysisBucketFile>;
48
26
  entrypointFileId: import("vue").ComputedRef<string>;
49
27
  changeEntryPointFile: (file: AnalysisBucketFile) => Promise<void>;
50
- filesNode: Ref<string, string>;
51
28
  fileListNode: Ref<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
52
29
  realmId: {
53
30
  type: StringConstructor;
@@ -202,6 +179,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
202
179
  loadOnSetup: boolean;
203
180
  }, import("vue").SlotsType<import("../../core").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
204
181
  fileListQuery: import("vue").ComputedRef<BuildInput<AnalysisBucketFile>>;
182
+ modal: Ref<boolean, boolean>;
183
+ toggleModal: () => void;
205
184
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile")[], "failed" | "created" | "updated" | "deleted" | "uploaded" | "setEntrypointFile", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
206
185
  entity: {
207
186
  type: PropType<AnalysisBucket>;
@@ -218,6 +197,79 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
218
197
  onUploaded?: (...args: any[]) => any;
219
198
  onSetEntrypointFile?: (...args: any[]) => any;
220
199
  }>, {}, {}, {
200
+ BModal: any;
201
+ FAnalysisBucketFileUpload: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
202
+ entity: {
203
+ type: PropType<AnalysisBucket>;
204
+ required: true;
205
+ };
206
+ }>, {
207
+ directoryMode: Ref<boolean, boolean>;
208
+ busy: Ref<boolean, boolean>;
209
+ vNode: Ref<string, string>;
210
+ tempFiles: Ref<{
211
+ readonly lastModified: number;
212
+ readonly name: string;
213
+ readonly webkitRelativePath: string;
214
+ readonly size: number;
215
+ readonly type: string;
216
+ arrayBuffer: () => Promise<ArrayBuffer>;
217
+ bytes: () => Promise<Uint8Array>;
218
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
219
+ stream: () => ReadableStream<Uint8Array>;
220
+ text: () => Promise<string>;
221
+ }[], File[] | {
222
+ readonly lastModified: number;
223
+ readonly name: string;
224
+ readonly webkitRelativePath: string;
225
+ readonly size: number;
226
+ readonly type: string;
227
+ arrayBuffer: () => Promise<ArrayBuffer>;
228
+ bytes: () => Promise<Uint8Array>;
229
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
230
+ stream: () => ReadableStream<Uint8Array>;
231
+ text: () => Promise<string>;
232
+ }[]>;
233
+ checkTempFiles: ($event: any) => void;
234
+ dropTempFile: ($event: any) => void;
235
+ upload: () => Promise<void>;
236
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "fileUploaded" | "uploaded")[], "failed" | "fileUploaded" | "uploaded", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
237
+ entity: {
238
+ type: PropType<AnalysisBucket>;
239
+ required: true;
240
+ };
241
+ }>> & Readonly<{
242
+ onFailed?: (...args: any[]) => any;
243
+ onFileUploaded?: (...args: any[]) => any;
244
+ onUploaded?: (...args: any[]) => any;
245
+ }>, {}, {}, {
246
+ FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
247
+ file: {
248
+ type: PropType<File>;
249
+ required: true;
250
+ };
251
+ pathSelected: {
252
+ type: BooleanConstructor;
253
+ default: boolean;
254
+ };
255
+ }>, {
256
+ path: import("vue").ComputedRef<string>;
257
+ drop: () => void;
258
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
259
+ file: {
260
+ type: PropType<File>;
261
+ required: true;
262
+ };
263
+ pathSelected: {
264
+ type: BooleanConstructor;
265
+ default: boolean;
266
+ };
267
+ }>> & Readonly<{
268
+ onDrop?: (...args: any[]) => any;
269
+ }>, {
270
+ pathSelected: boolean;
271
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
272
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
221
273
  FAnalysisBucketFiles: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
222
274
  realmId: {
223
275
  type: StringConstructor;
@@ -295,32 +347,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
295
347
  query: BuildInput<AnalysisBucketFile>;
296
348
  loadOnSetup: boolean;
297
349
  }, import("vue").SlotsType<import("../../core").ListSlotsType<AnalysisBucketFile>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
298
- FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
299
- file: {
300
- type: PropType<File>;
301
- required: true;
302
- };
303
- pathSelected: {
304
- type: BooleanConstructor;
305
- default: boolean;
306
- };
307
- }>, {
308
- path: import("vue").ComputedRef<string>;
309
- drop: () => void;
310
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
311
- file: {
312
- type: PropType<File>;
313
- required: true;
314
- };
315
- pathSelected: {
316
- type: BooleanConstructor;
317
- default: boolean;
318
- };
319
- }>> & Readonly<{
320
- onDrop?: (...args: any[]) => any;
321
- }>, {
322
- pathSelected: boolean;
323
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
324
350
  FAnalysisFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
325
351
  entity: {
326
352
  type: PropType<AnalysisBucketFile>;
@@ -1 +1 @@
1
- {"version":3,"file":"FAnalysisBucketFileManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFileManager.vue"],"names":[],"mappings":"AAAA,OA4aO,KAAK,EACR,cAAc,EACd,kBAAkB,EACrB,MAAM,sBAAsB,CAAC;AAI9B,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAIzC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;;;cAcZ,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,kBAAkB,CAAC;;;;;6BA2IhB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;2BAYL,GAAG;;4BApHF,kBAAkB;4BAOlB,kBAAkB;4BAalB,kBAAkB;uBAyEvB,kBAAkB;;;iCAuCF,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA3KxC,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZxD,wBAmPG"}
1
+ {"version":3,"file":"FAnalysisBucketFileManager.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFileManager.vue"],"names":[],"mappings":"AAAA,OA2TO,KAAK,EACR,cAAc,EACd,kBAAkB,EACrB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAIzC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;;;cAeZ,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;4BAoCjB,kBAAkB;4BAOlB,kBAAkB;4BAalB,kBAAkB;sBAQxB,KAAK;;iCAUM,kBAAkB;uBA8B5B,kBAAkB;;;iCASF,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cArHxC,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAbxD,wBA4LG"}
@@ -0,0 +1,76 @@
1
+ import type { AnalysisBucket } from '@privateaim/core-kit';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ entity: {
5
+ type: PropType<AnalysisBucket>;
6
+ required: true;
7
+ };
8
+ }>, {
9
+ directoryMode: import("vue").Ref<boolean, boolean>;
10
+ busy: import("vue").Ref<boolean, boolean>;
11
+ vNode: import("vue").Ref<string, string>;
12
+ tempFiles: import("vue").Ref<{
13
+ readonly lastModified: number;
14
+ readonly name: string;
15
+ readonly webkitRelativePath: string;
16
+ readonly size: number;
17
+ readonly type: string;
18
+ arrayBuffer: () => Promise<ArrayBuffer>;
19
+ bytes: () => Promise<Uint8Array>;
20
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
21
+ stream: () => ReadableStream<Uint8Array>;
22
+ text: () => Promise<string>;
23
+ }[], File[] | {
24
+ readonly lastModified: number;
25
+ readonly name: string;
26
+ readonly webkitRelativePath: string;
27
+ readonly size: number;
28
+ readonly type: string;
29
+ arrayBuffer: () => Promise<ArrayBuffer>;
30
+ bytes: () => Promise<Uint8Array>;
31
+ slice: (start?: number, end?: number, contentType?: string) => Blob;
32
+ stream: () => ReadableStream<Uint8Array>;
33
+ text: () => Promise<string>;
34
+ }[]>;
35
+ checkTempFiles: ($event: any) => void;
36
+ dropTempFile: ($event: any) => void;
37
+ upload: () => Promise<void>;
38
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("failed" | "fileUploaded" | "uploaded")[], "failed" | "fileUploaded" | "uploaded", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
39
+ entity: {
40
+ type: PropType<AnalysisBucket>;
41
+ required: true;
42
+ };
43
+ }>> & Readonly<{
44
+ onFailed?: (...args: any[]) => any;
45
+ onFileUploaded?: (...args: any[]) => any;
46
+ onUploaded?: (...args: any[]) => any;
47
+ }>, {}, {}, {
48
+ FAnalysisFormFile: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
49
+ file: {
50
+ type: PropType<File>;
51
+ required: true;
52
+ };
53
+ pathSelected: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ }>, {
58
+ path: import("vue").ComputedRef<string>;
59
+ drop: () => void;
60
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "drop"[], "drop", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
61
+ file: {
62
+ type: PropType<File>;
63
+ required: true;
64
+ };
65
+ pathSelected: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ }>> & Readonly<{
70
+ onDrop?: (...args: any[]) => any;
71
+ }>, {
72
+ pathSelected: boolean;
73
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
74
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
75
+ export default _default;
76
+ //# sourceMappingURL=FAnalysisBucketFileUpload.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FAnalysisBucketFileUpload.vue.d.ts","sourceRoot":"","sources":["../../../src/components/analysis-bucket-file/FAnalysisBucketFileUpload.vue"],"names":[],"mappings":"AAAA,OAmLO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cASR,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAcZ,GAAG;2BAYL,GAAG;;;;cA1Bb,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAJpD,wBAgGG"}
@@ -1,5 +1,6 @@
1
1
  export * from './login';
2
2
  export * from './master-image';
3
+ export * from './master-image-event-log';
3
4
  export * from './master-image-group';
4
5
  export * from './project';
5
6
  export * from './project-node';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAOA,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAOA,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC"}