@opencloud-eu/web-pkg 0.1.1 → 2.0.0
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/{TextEditor-dPv5RFiT.js → TextEditor-CBpP9DFX.js} +68 -51
- package/dist/assets/{worker-DzSy5ndr.js → worker-BCEWb3C6.js} +27 -27
- package/dist/assets/{worker-BTxctNFM.js → worker-BpDXOTOV.js} +18 -18
- package/dist/assets/{worker-oQBkmUkg.js → worker-Ds2rbROB.js} +26 -26
- package/dist/{index-B8n8dCfU.js → index-CPsauqxc.js} +12683 -12675
- package/dist/src/components/AppBar/AppBar.vue.d.ts +28 -31
- package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +71 -94
- package/dist/src/components/AppTopBar.vue.d.ts +13 -24
- package/dist/src/components/BatchActions.vue.d.ts +10 -11
- package/dist/src/components/ContextActions/ActionMenuItem.vue.d.ts +10 -11
- package/dist/src/components/ContextActions/ContextActionMenu.vue.d.ts +10 -20
- package/dist/src/components/CreateShortcutModal.vue.d.ts +3 -3
- package/dist/src/components/FilesList/ContextActions.vue.d.ts +10 -20
- package/dist/src/components/FilesList/ResourceLink.vue.d.ts +2 -2
- package/dist/src/components/FilesList/ResourceListItem.vue.d.ts +3 -3
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +15 -55
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +6 -6
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +6 -6
- package/dist/src/components/Filters/DateFilter.vue.d.ts +196 -52
- package/dist/src/components/Search/ResourcePreview.vue.d.ts +3 -3
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +57 -69
- package/dist/src/components/SideBar/SideBar.vue.d.ts +39 -71
- package/dist/src/components/SideBar/Spaces/Details/SpaceDetails.vue.d.ts +1 -1
- package/dist/src/components/SpaceQuota.vue.d.ts +1 -1
- package/dist/src/components/Spaces/QuotaModal.vue.d.ts +1 -1
- package/dist/src/components/TextEditor/TextEditor.vue.d.ts +1 -0
- package/dist/src/components/TextEditor/index.d.ts +1 -0
- package/dist/src/components/ViewOptions.vue.d.ts +8 -0
- package/dist/src/composables/actions/files/useFileActions.d.ts +1 -1
- package/dist/src/composables/actions/types.d.ts +0 -1
- package/dist/src/composables/piniaStores/auth.d.ts +8 -7
- package/dist/src/composables/piniaStores/modals.d.ts +18 -20
- package/dist/src/composables/piniaStores/resources.d.ts +8 -2
- package/dist/src/composables/piniaStores/spaces.d.ts +8 -2
- package/dist/src/composables/piniaStores/theme.d.ts +56 -0
- package/dist/src/helpers/resource/icon.d.ts +2 -1
- package/dist/src/router/deprecated.d.ts +1 -1
- package/dist/src/router/utils.d.ts +2 -2
- package/dist/web-pkg.js +2 -2
- package/dist/web-pkg.umd.cjs +47 -43
- package/package.json +5 -5
|
@@ -190,10 +190,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
190
190
|
type: StringConstructor;
|
|
191
191
|
default: string;
|
|
192
192
|
};
|
|
193
|
-
variation: {
|
|
194
|
-
type: StringConstructor;
|
|
195
|
-
default: string;
|
|
196
|
-
};
|
|
197
193
|
shortcutHint: {
|
|
198
194
|
type: BooleanConstructor;
|
|
199
195
|
default: boolean;
|
|
@@ -204,16 +200,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
204
200
|
default: boolean;
|
|
205
201
|
required: false;
|
|
206
202
|
};
|
|
203
|
+
buttonClasses: {
|
|
204
|
+
type: PropType<string[]>;
|
|
205
|
+
default: () => any[];
|
|
206
|
+
};
|
|
207
207
|
}>, {
|
|
208
208
|
componentType: import('vue').ComputedRef<string>;
|
|
209
209
|
componentProps: import('vue').ComputedRef<{
|
|
210
210
|
target: string;
|
|
211
211
|
href: string;
|
|
212
|
-
to:
|
|
212
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
213
213
|
id: string;
|
|
214
214
|
disabled: boolean;
|
|
215
215
|
appearance: string;
|
|
216
|
-
variation: string;
|
|
217
216
|
}>;
|
|
218
217
|
openInNewTabHint: import('vue').ComputedRef<string>;
|
|
219
218
|
}, {}, {
|
|
@@ -241,10 +240,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
241
240
|
type: StringConstructor;
|
|
242
241
|
default: string;
|
|
243
242
|
};
|
|
244
|
-
variation: {
|
|
245
|
-
type: StringConstructor;
|
|
246
|
-
default: string;
|
|
247
|
-
};
|
|
248
243
|
shortcutHint: {
|
|
249
244
|
type: BooleanConstructor;
|
|
250
245
|
default: boolean;
|
|
@@ -255,12 +250,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
255
250
|
default: boolean;
|
|
256
251
|
required: false;
|
|
257
252
|
};
|
|
253
|
+
buttonClasses: {
|
|
254
|
+
type: PropType<string[]>;
|
|
255
|
+
default: () => any[];
|
|
256
|
+
};
|
|
258
257
|
}>> & Readonly<{}>, {
|
|
259
258
|
size: string;
|
|
260
259
|
appearance: string;
|
|
261
|
-
variation: string;
|
|
262
260
|
shortcutHint: boolean;
|
|
263
261
|
showTooltip: boolean;
|
|
262
|
+
buttonClasses: string[];
|
|
264
263
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
265
264
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
266
265
|
ContextActions: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -285,10 +284,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
285
284
|
type: StringConstructor;
|
|
286
285
|
default: string;
|
|
287
286
|
};
|
|
288
|
-
variation: {
|
|
289
|
-
type: StringConstructor;
|
|
290
|
-
default: string;
|
|
291
|
-
};
|
|
292
287
|
actionOptions: {
|
|
293
288
|
type: PropType<import('../..').ActionOptions>;
|
|
294
289
|
required: true;
|
|
@@ -304,17 +299,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
304
299
|
type: StringConstructor;
|
|
305
300
|
default: string;
|
|
306
301
|
};
|
|
307
|
-
variation: {
|
|
308
|
-
type: StringConstructor;
|
|
309
|
-
default: string;
|
|
310
|
-
};
|
|
311
302
|
actionOptions: {
|
|
312
303
|
type: PropType<import('../..').ActionOptions>;
|
|
313
304
|
required: true;
|
|
314
305
|
};
|
|
315
306
|
}>> & Readonly<{}>, {
|
|
316
307
|
appearance: string;
|
|
317
|
-
variation: string;
|
|
318
308
|
}, {}, {
|
|
319
309
|
ActionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
320
310
|
action: {
|
|
@@ -334,10 +324,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
334
324
|
type: StringConstructor;
|
|
335
325
|
default: string;
|
|
336
326
|
};
|
|
337
|
-
variation: {
|
|
338
|
-
type: StringConstructor;
|
|
339
|
-
default: string;
|
|
340
|
-
};
|
|
341
327
|
shortcutHint: {
|
|
342
328
|
type: BooleanConstructor;
|
|
343
329
|
default: boolean;
|
|
@@ -348,16 +334,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
348
334
|
default: boolean;
|
|
349
335
|
required: false;
|
|
350
336
|
};
|
|
337
|
+
buttonClasses: {
|
|
338
|
+
type: PropType<string[]>;
|
|
339
|
+
default: () => any[];
|
|
340
|
+
};
|
|
351
341
|
}>, {
|
|
352
342
|
componentType: import('vue').ComputedRef<string>;
|
|
353
343
|
componentProps: import('vue').ComputedRef<{
|
|
354
344
|
target: string;
|
|
355
345
|
href: string;
|
|
356
|
-
to:
|
|
346
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
357
347
|
id: string;
|
|
358
348
|
disabled: boolean;
|
|
359
349
|
appearance: string;
|
|
360
|
-
variation: string;
|
|
361
350
|
}>;
|
|
362
351
|
openInNewTabHint: import('vue').ComputedRef<string>;
|
|
363
352
|
}, {}, {
|
|
@@ -385,10 +374,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
385
374
|
type: StringConstructor;
|
|
386
375
|
default: string;
|
|
387
376
|
};
|
|
388
|
-
variation: {
|
|
389
|
-
type: StringConstructor;
|
|
390
|
-
default: string;
|
|
391
|
-
};
|
|
392
377
|
shortcutHint: {
|
|
393
378
|
type: BooleanConstructor;
|
|
394
379
|
default: boolean;
|
|
@@ -399,12 +384,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
399
384
|
default: boolean;
|
|
400
385
|
required: false;
|
|
401
386
|
};
|
|
387
|
+
buttonClasses: {
|
|
388
|
+
type: PropType<string[]>;
|
|
389
|
+
default: () => any[];
|
|
390
|
+
};
|
|
402
391
|
}>> & Readonly<{}>, {
|
|
403
392
|
size: string;
|
|
404
393
|
appearance: string;
|
|
405
|
-
variation: string;
|
|
406
394
|
shortcutHint: boolean;
|
|
407
395
|
showTooltip: boolean;
|
|
396
|
+
buttonClasses: string[];
|
|
408
397
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
409
398
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
410
399
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -469,9 +458,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
469
458
|
setViewMode: (mode: FolderView) => void;
|
|
470
459
|
areHiddenFilesShown: Ref<boolean, boolean>;
|
|
471
460
|
areFileExtensionsShown: Ref<boolean, boolean>;
|
|
461
|
+
areDisabledSpacesShown: Ref<boolean, boolean>;
|
|
472
462
|
setAreHiddenFilesShown: (value: boolean) => void;
|
|
473
463
|
setAreFileExtensionsShown: (value: boolean) => void;
|
|
464
|
+
setAreDisabledSpacesShown: (value: boolean) => void;
|
|
474
465
|
viewOptionsButtonLabel: string;
|
|
466
|
+
isProjectsLocation: Ref<boolean, boolean>;
|
|
475
467
|
}, {}, {
|
|
476
468
|
hiddenFilesShownModel: {
|
|
477
469
|
get(): boolean;
|
|
@@ -481,9 +473,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
481
473
|
get(): boolean;
|
|
482
474
|
set(value: boolean): void;
|
|
483
475
|
};
|
|
476
|
+
disabledSpacesShownModel: {
|
|
477
|
+
get(): boolean;
|
|
478
|
+
set(value: boolean): void;
|
|
479
|
+
};
|
|
484
480
|
}, {
|
|
485
481
|
updateHiddenFilesShownModel(event: boolean): void;
|
|
486
482
|
updateFileExtensionsShownModel(event: boolean): void;
|
|
483
|
+
updateDisabledSpacesShownModel(event: boolean): void;
|
|
487
484
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
488
485
|
hasHiddenFiles: {
|
|
489
486
|
type: BooleanConstructor;
|
|
@@ -134,7 +134,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
134
134
|
'fill-type'?: undefined;
|
|
135
135
|
};
|
|
136
136
|
contextMenuLabel: import('vue').ComputedRef<string>;
|
|
137
|
-
closeButtonLabel: import('vue').ComputedRef<string>;
|
|
138
137
|
areFileExtensionsShown: import('vue').ComputedRef<boolean>;
|
|
139
138
|
hasAutosave: import('vue').ComputedRef<boolean>;
|
|
140
139
|
autoSaveTooltipText: import('vue').ComputedRef<string>;
|
|
@@ -183,10 +182,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
183
182
|
type: StringConstructor;
|
|
184
183
|
default: string;
|
|
185
184
|
};
|
|
186
|
-
variation: {
|
|
187
|
-
type: StringConstructor;
|
|
188
|
-
default: string;
|
|
189
|
-
};
|
|
190
185
|
actionOptions: {
|
|
191
186
|
type: PropType<import('../..').ActionOptions>;
|
|
192
187
|
required: true;
|
|
@@ -202,17 +197,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
202
197
|
type: StringConstructor;
|
|
203
198
|
default: string;
|
|
204
199
|
};
|
|
205
|
-
variation: {
|
|
206
|
-
type: StringConstructor;
|
|
207
|
-
default: string;
|
|
208
|
-
};
|
|
209
200
|
actionOptions: {
|
|
210
201
|
type: PropType<import('../..').ActionOptions>;
|
|
211
202
|
required: true;
|
|
212
203
|
};
|
|
213
204
|
}>> & Readonly<{}>, {
|
|
214
205
|
appearance: string;
|
|
215
|
-
variation: string;
|
|
216
206
|
}, {}, {
|
|
217
207
|
ActionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
218
208
|
action: {
|
|
@@ -232,10 +222,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
232
222
|
type: StringConstructor;
|
|
233
223
|
default: string;
|
|
234
224
|
};
|
|
235
|
-
variation: {
|
|
236
|
-
type: StringConstructor;
|
|
237
|
-
default: string;
|
|
238
|
-
};
|
|
239
225
|
shortcutHint: {
|
|
240
226
|
type: BooleanConstructor;
|
|
241
227
|
default: boolean;
|
|
@@ -246,16 +232,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
246
232
|
default: boolean;
|
|
247
233
|
required: false;
|
|
248
234
|
};
|
|
235
|
+
buttonClasses: {
|
|
236
|
+
type: PropType<string[]>;
|
|
237
|
+
default: () => any[];
|
|
238
|
+
};
|
|
249
239
|
}>, {
|
|
250
240
|
componentType: import('vue').ComputedRef<string>;
|
|
251
241
|
componentProps: import('vue').ComputedRef<{
|
|
252
242
|
target: string;
|
|
253
243
|
href: string;
|
|
254
|
-
to: import('vue-router').
|
|
244
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
255
245
|
id: string;
|
|
256
246
|
disabled: boolean;
|
|
257
247
|
appearance: string;
|
|
258
|
-
variation: string;
|
|
259
248
|
}>;
|
|
260
249
|
openInNewTabHint: import('vue').ComputedRef<string>;
|
|
261
250
|
}, {}, {
|
|
@@ -283,10 +272,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
283
272
|
type: StringConstructor;
|
|
284
273
|
default: string;
|
|
285
274
|
};
|
|
286
|
-
variation: {
|
|
287
|
-
type: StringConstructor;
|
|
288
|
-
default: string;
|
|
289
|
-
};
|
|
290
275
|
shortcutHint: {
|
|
291
276
|
type: BooleanConstructor;
|
|
292
277
|
default: boolean;
|
|
@@ -297,12 +282,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
297
282
|
default: boolean;
|
|
298
283
|
required: false;
|
|
299
284
|
};
|
|
285
|
+
buttonClasses: {
|
|
286
|
+
type: PropType<string[]>;
|
|
287
|
+
default: () => any[];
|
|
288
|
+
};
|
|
300
289
|
}>> & Readonly<{}>, {
|
|
301
290
|
size: string;
|
|
302
291
|
appearance: string;
|
|
303
|
-
variation: string;
|
|
304
292
|
shortcutHint: boolean;
|
|
305
293
|
showTooltip: boolean;
|
|
294
|
+
buttonClasses: string[];
|
|
306
295
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
307
296
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
308
297
|
ResourceListItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -433,7 +422,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
433
422
|
}>> & Readonly<{
|
|
434
423
|
onClick?: (...args: any[]) => any;
|
|
435
424
|
}>, {
|
|
436
|
-
link: import('vue-router').
|
|
425
|
+
link: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
437
426
|
isResourceClickable: boolean;
|
|
438
427
|
pathPrefix: string;
|
|
439
428
|
isPathDisplayed: boolean;
|
|
@@ -496,7 +485,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
496
485
|
justifyContent: string;
|
|
497
486
|
to?: undefined;
|
|
498
487
|
} | {
|
|
499
|
-
to: import('vue-router').
|
|
488
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
500
489
|
appearance?: undefined;
|
|
501
490
|
gapSize?: undefined;
|
|
502
491
|
justifyContent?: undefined;
|
|
@@ -521,7 +510,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
521
510
|
}>> & Readonly<{
|
|
522
511
|
onClick?: (...args: any[]) => any;
|
|
523
512
|
}>, {
|
|
524
|
-
link: import('vue-router').
|
|
513
|
+
link: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
525
514
|
isResourceClickable: boolean;
|
|
526
515
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
527
516
|
ResourceName: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -798,76 +787,64 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
798
787
|
SpaceInfo: import('vue').DefineComponent<{}, {
|
|
799
788
|
resource: SpaceResource;
|
|
800
789
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
801
|
-
InnerSideBar:
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
};
|
|
860
|
-
activePanel: {
|
|
861
|
-
type: StringConstructor;
|
|
862
|
-
required: false;
|
|
863
|
-
default: string;
|
|
864
|
-
};
|
|
865
|
-
}>> & Readonly<{
|
|
866
|
-
onClose?: (...args: any[]) => any;
|
|
867
|
-
onSelectPanel?: (...args: any[]) => any;
|
|
868
|
-
}>, {
|
|
869
|
-
activePanel: string;
|
|
870
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
790
|
+
InnerSideBar: {
|
|
791
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
792
|
+
isOpen: boolean;
|
|
793
|
+
loading: boolean;
|
|
794
|
+
availablePanels: import('..').SideBarPanel<unknown, unknown, unknown>[];
|
|
795
|
+
panelContext: import('..').SideBarPanelContext<unknown, unknown, unknown>;
|
|
796
|
+
activePanel?: string;
|
|
797
|
+
}> & Readonly<{
|
|
798
|
+
onClose?: () => any;
|
|
799
|
+
onSelectPanel?: (panel: string) => any;
|
|
800
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
801
|
+
close: () => any;
|
|
802
|
+
selectPanel: (panel: string) => any;
|
|
803
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
804
|
+
appSideBar: HTMLDivElement;
|
|
805
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
806
|
+
P: {};
|
|
807
|
+
B: {};
|
|
808
|
+
D: {};
|
|
809
|
+
C: {};
|
|
810
|
+
M: {};
|
|
811
|
+
Defaults: {};
|
|
812
|
+
}, Readonly<{
|
|
813
|
+
isOpen: boolean;
|
|
814
|
+
loading: boolean;
|
|
815
|
+
availablePanels: import('..').SideBarPanel<unknown, unknown, unknown>[];
|
|
816
|
+
panelContext: import('..').SideBarPanelContext<unknown, unknown, unknown>;
|
|
817
|
+
activePanel?: string;
|
|
818
|
+
}> & Readonly<{
|
|
819
|
+
onClose?: () => any;
|
|
820
|
+
onSelectPanel?: (panel: string) => any;
|
|
821
|
+
}>, {}, {}, {}, {}, {}>;
|
|
822
|
+
__isFragment?: never;
|
|
823
|
+
__isTeleport?: never;
|
|
824
|
+
__isSuspense?: never;
|
|
825
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
826
|
+
isOpen: boolean;
|
|
827
|
+
loading: boolean;
|
|
828
|
+
availablePanels: import('..').SideBarPanel<unknown, unknown, unknown>[];
|
|
829
|
+
panelContext: import('..').SideBarPanelContext<unknown, unknown, unknown>;
|
|
830
|
+
activePanel?: string;
|
|
831
|
+
}> & Readonly<{
|
|
832
|
+
onClose?: () => any;
|
|
833
|
+
onSelectPanel?: (panel: string) => any;
|
|
834
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
835
|
+
close: () => any;
|
|
836
|
+
selectPanel: (panel: string) => any;
|
|
837
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
838
|
+
$slots: Readonly<{
|
|
839
|
+
body: () => unknown;
|
|
840
|
+
rootHeader: () => unknown;
|
|
841
|
+
subHeader: () => unknown;
|
|
842
|
+
}> & {
|
|
843
|
+
body: () => unknown;
|
|
844
|
+
rootHeader: () => unknown;
|
|
845
|
+
subHeader: () => unknown;
|
|
846
|
+
};
|
|
847
|
+
});
|
|
871
848
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
872
849
|
ErrorScreen: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
873
850
|
message: {
|
|
@@ -40,7 +40,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
40
40
|
'fill-type'?: undefined;
|
|
41
41
|
};
|
|
42
42
|
contextMenuLabel: import('vue').ComputedRef<string>;
|
|
43
|
-
closeButtonLabel: import('vue').ComputedRef<string>;
|
|
44
43
|
areFileExtensionsShown: import('vue').ComputedRef<boolean>;
|
|
45
44
|
hasAutosave: import('vue').ComputedRef<boolean>;
|
|
46
45
|
autoSaveTooltipText: import('vue').ComputedRef<string>;
|
|
@@ -89,10 +88,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
88
|
type: StringConstructor;
|
|
90
89
|
default: string;
|
|
91
90
|
};
|
|
92
|
-
variation: {
|
|
93
|
-
type: StringConstructor;
|
|
94
|
-
default: string;
|
|
95
|
-
};
|
|
96
91
|
actionOptions: {
|
|
97
92
|
type: PropType<import('..').ActionOptions>;
|
|
98
93
|
required: true;
|
|
@@ -108,17 +103,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
103
|
type: StringConstructor;
|
|
109
104
|
default: string;
|
|
110
105
|
};
|
|
111
|
-
variation: {
|
|
112
|
-
type: StringConstructor;
|
|
113
|
-
default: string;
|
|
114
|
-
};
|
|
115
106
|
actionOptions: {
|
|
116
107
|
type: PropType<import('..').ActionOptions>;
|
|
117
108
|
required: true;
|
|
118
109
|
};
|
|
119
110
|
}>> & Readonly<{}>, {
|
|
120
111
|
appearance: string;
|
|
121
|
-
variation: string;
|
|
122
112
|
}, {}, {
|
|
123
113
|
ActionMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
124
114
|
action: {
|
|
@@ -138,10 +128,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
138
128
|
type: StringConstructor;
|
|
139
129
|
default: string;
|
|
140
130
|
};
|
|
141
|
-
variation: {
|
|
142
|
-
type: StringConstructor;
|
|
143
|
-
default: string;
|
|
144
|
-
};
|
|
145
131
|
shortcutHint: {
|
|
146
132
|
type: BooleanConstructor;
|
|
147
133
|
default: boolean;
|
|
@@ -152,16 +138,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
152
138
|
default: boolean;
|
|
153
139
|
required: false;
|
|
154
140
|
};
|
|
141
|
+
buttonClasses: {
|
|
142
|
+
type: PropType<string[]>;
|
|
143
|
+
default: () => any[];
|
|
144
|
+
};
|
|
155
145
|
}>, {
|
|
156
146
|
componentType: import('vue').ComputedRef<string>;
|
|
157
147
|
componentProps: import('vue').ComputedRef<{
|
|
158
148
|
target: string;
|
|
159
149
|
href: string;
|
|
160
|
-
to: import('vue-router').
|
|
150
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
161
151
|
id: string;
|
|
162
152
|
disabled: boolean;
|
|
163
153
|
appearance: string;
|
|
164
|
-
variation: string;
|
|
165
154
|
}>;
|
|
166
155
|
openInNewTabHint: import('vue').ComputedRef<string>;
|
|
167
156
|
}, {}, {
|
|
@@ -189,10 +178,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
189
178
|
type: StringConstructor;
|
|
190
179
|
default: string;
|
|
191
180
|
};
|
|
192
|
-
variation: {
|
|
193
|
-
type: StringConstructor;
|
|
194
|
-
default: string;
|
|
195
|
-
};
|
|
196
181
|
shortcutHint: {
|
|
197
182
|
type: BooleanConstructor;
|
|
198
183
|
default: boolean;
|
|
@@ -203,12 +188,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
203
188
|
default: boolean;
|
|
204
189
|
required: false;
|
|
205
190
|
};
|
|
191
|
+
buttonClasses: {
|
|
192
|
+
type: PropType<string[]>;
|
|
193
|
+
default: () => any[];
|
|
194
|
+
};
|
|
206
195
|
}>> & Readonly<{}>, {
|
|
207
196
|
size: string;
|
|
208
197
|
appearance: string;
|
|
209
|
-
variation: string;
|
|
210
198
|
shortcutHint: boolean;
|
|
211
199
|
showTooltip: boolean;
|
|
200
|
+
buttonClasses: string[];
|
|
212
201
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
213
202
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
214
203
|
ResourceListItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -339,7 +328,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
339
328
|
}>> & Readonly<{
|
|
340
329
|
onClick?: (...args: any[]) => any;
|
|
341
330
|
}>, {
|
|
342
|
-
link: import('vue-router').
|
|
331
|
+
link: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
343
332
|
isResourceClickable: boolean;
|
|
344
333
|
pathPrefix: string;
|
|
345
334
|
isPathDisplayed: boolean;
|
|
@@ -402,7 +391,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
402
391
|
justifyContent: string;
|
|
403
392
|
to?: undefined;
|
|
404
393
|
} | {
|
|
405
|
-
to: import('vue-router').
|
|
394
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
406
395
|
appearance?: undefined;
|
|
407
396
|
gapSize?: undefined;
|
|
408
397
|
justifyContent?: undefined;
|
|
@@ -427,7 +416,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
427
416
|
}>> & Readonly<{
|
|
428
417
|
onClick?: (...args: any[]) => any;
|
|
429
418
|
}>, {
|
|
430
|
-
link: import('vue-router').
|
|
419
|
+
link: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
431
420
|
isResourceClickable: boolean;
|
|
432
421
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
433
422
|
ResourceName: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -49,10 +49,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
49
49
|
type: StringConstructor;
|
|
50
50
|
default: string;
|
|
51
51
|
};
|
|
52
|
-
variation: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
52
|
shortcutHint: {
|
|
57
53
|
type: BooleanConstructor;
|
|
58
54
|
default: boolean;
|
|
@@ -63,16 +59,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
63
59
|
default: boolean;
|
|
64
60
|
required: false;
|
|
65
61
|
};
|
|
62
|
+
buttonClasses: {
|
|
63
|
+
type: PropType<string[]>;
|
|
64
|
+
default: () => any[];
|
|
65
|
+
};
|
|
66
66
|
}>, {
|
|
67
67
|
componentType: import('vue').ComputedRef<string>;
|
|
68
68
|
componentProps: import('vue').ComputedRef<{
|
|
69
69
|
target: string;
|
|
70
70
|
href: string;
|
|
71
|
-
to: import('vue-router').
|
|
71
|
+
to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
72
72
|
id: string;
|
|
73
73
|
disabled: boolean;
|
|
74
74
|
appearance: string;
|
|
75
|
-
variation: string;
|
|
76
75
|
}>;
|
|
77
76
|
openInNewTabHint: import('vue').ComputedRef<string>;
|
|
78
77
|
}, {}, {
|
|
@@ -100,10 +99,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
100
99
|
type: StringConstructor;
|
|
101
100
|
default: string;
|
|
102
101
|
};
|
|
103
|
-
variation: {
|
|
104
|
-
type: StringConstructor;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
102
|
shortcutHint: {
|
|
108
103
|
type: BooleanConstructor;
|
|
109
104
|
default: boolean;
|
|
@@ -114,12 +109,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
109
|
default: boolean;
|
|
115
110
|
required: false;
|
|
116
111
|
};
|
|
112
|
+
buttonClasses: {
|
|
113
|
+
type: PropType<string[]>;
|
|
114
|
+
default: () => any[];
|
|
115
|
+
};
|
|
117
116
|
}>> & Readonly<{}>, {
|
|
118
117
|
size: string;
|
|
119
118
|
appearance: string;
|
|
120
|
-
variation: string;
|
|
121
119
|
shortcutHint: boolean;
|
|
122
120
|
showTooltip: boolean;
|
|
121
|
+
buttonClasses: string[];
|
|
123
122
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
124
123
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
125
124
|
export default _default;
|