@anzusystems/common-admin 1.47.0-beta.117 → 1.47.0-beta.118

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.
@@ -1,6 +1,7 @@
1
1
  import { default as ADatetimePicker } from './components/datetime/ADatetimePicker.vue';
2
2
  import { default as AFormTextarea } from './components/form/AFormTextarea.vue';
3
3
  import { default as AFormTextField } from './components/form/AFormTextField.vue';
4
+ import { default as AImageWidgetMultiple } from './components/damImage/AImageWidgetMultiple.vue';
4
5
  import { AllowedComponentProps } from 'vue';
5
6
  import { App } from 'vue';
6
7
  import { AxiosError } from 'axios';
@@ -15,6 +16,7 @@ import { ComponentOptionsMixin } from 'vue';
15
16
  import { ComponentProvideOptions } from 'vue';
16
17
  import { ComponentPublicInstance } from 'vue';
17
18
  import { ComputedRef } from 'vue';
19
+ import { CreateComponentPublicInstanceWithMixins } from 'vue';
18
20
  import { DebuggerEvent } from 'vue';
19
21
  import { DeepReadonly } from 'vue';
20
22
  import { default as default_2 } from 'cropperjs';
@@ -145,9 +147,9 @@ disabled: boolean;
145
147
  color: string;
146
148
  size: "small" | "x-small";
147
149
  loading: boolean;
148
- dataCy: string;
149
150
  variant: ButtonVariantText;
150
151
  rounded: "pill";
152
+ dataCy: string;
151
153
  buttonT: string;
152
154
  buttonClass: string;
153
155
  disableMore: boolean;
@@ -173,8 +175,8 @@ onSearchChangeDebounced?: ((data: string) => any) | undefined;
173
175
  "onUpdate:loadingLocal"?: ((value: boolean) => any) | undefined;
174
176
  "onUpdate:fetchedItemsMinimal"?: ((value: Map<string | number, any>) => any) | undefined;
175
177
  }>, {
176
- required: boolean;
177
178
  loading: boolean;
179
+ required: boolean;
178
180
  label: string;
179
181
  errorMessage: string;
180
182
  v: any;
@@ -303,7 +305,347 @@ afterMetadataSaveSuccess: () => any;
303
305
  "onUpdate:modelValue"?: ((data: IntegerIdNullable) => any) | undefined;
304
306
  onAfterMetadataSaveSuccess?: (() => any) | undefined;
305
307
  }>, {
308
+ collab: {
309
+ room: CollabRoom;
310
+ field: CollabFieldName;
311
+ cachedUsers: CollabCachedUsersMap;
312
+ };
313
+ image: ImageAware;
314
+ width: number;
315
+ height: number;
306
316
  required: boolean;
317
+ label: string;
318
+ dataCy: string;
319
+ maxWidth: number;
320
+ readonly: boolean;
321
+ configName: string;
322
+ damWidth: number;
323
+ damHeight: number;
324
+ collabStatus: CollabStatusType;
325
+ expandOptions: boolean;
326
+ expandMetadata: boolean;
327
+ disableOnClickMenu: boolean;
328
+ callDeleteApiOnRemove: boolean;
329
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
330
+ innerComponent: ({
331
+ $: ComponentInternalInstance;
332
+ $data: {};
333
+ $props: {
334
+ readonly modelValue: IntegerIdNullable;
335
+ readonly queueKey: UploadQueueKey;
336
+ readonly uploadLicence: IntegerId;
337
+ readonly selectLicences: IntegerId[];
338
+ readonly image?: ImageAware | undefined;
339
+ readonly configName?: string | undefined;
340
+ readonly collab?: CollabComponentConfig;
341
+ readonly collabStatus?: CollabStatusType | undefined;
342
+ readonly label?: string | undefined;
343
+ readonly required?: boolean | undefined;
344
+ readonly readonly?: boolean | undefined;
345
+ readonly dataCy?: string | undefined;
346
+ readonly expandOptions?: boolean | undefined;
347
+ readonly expandMetadata?: boolean | undefined;
348
+ readonly disableOnClickMenu?: boolean | undefined;
349
+ readonly width?: number | undefined;
350
+ readonly maxWidth?: number | undefined;
351
+ readonly height?: number | undefined;
352
+ readonly callDeleteApiOnRemove?: boolean | undefined;
353
+ readonly damWidth?: undefined | number;
354
+ readonly damHeight?: undefined | number;
355
+ readonly "onUpdate:modelValue"?: ((value: IntegerIdNullable) => any) | undefined;
356
+ readonly onAfterMetadataSaveSuccess?: (() => any) | undefined;
357
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
358
+ $attrs: {
359
+ [x: string]: unknown;
360
+ };
361
+ $refs: {
362
+ [x: string]: unknown;
363
+ } & {
364
+ expandedUploadDialog: ({
365
+ $: ComponentInternalInstance;
366
+ $data: {};
367
+ $props: {
368
+ readonly modelValue?: boolean | undefined;
369
+ readonly fileInputKey?: number | undefined;
370
+ readonly accept?: string | undefined;
371
+ readonly maxSizes?: Record<string, number> | undefined;
372
+ readonly multiple?: boolean | undefined;
373
+ readonly onChange?: ((event: InputFileChangeEvent) => any) | undefined;
374
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
375
+ readonly onFilesInput?: ((files: File[]) => any) | undefined;
376
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
377
+ $attrs: {
378
+ [x: string]: unknown;
379
+ };
380
+ $refs: {
381
+ [x: string]: unknown;
382
+ } & {
383
+ fileInput: ({
384
+ $: ComponentInternalInstance;
385
+ $data: {};
386
+ $props: {
387
+ readonly fileInputKey?: number | undefined;
388
+ readonly accept?: string | undefined;
389
+ readonly maxSizes?: Record<string, number> | undefined;
390
+ readonly multiple?: boolean | undefined;
391
+ readonly useDropzone?: boolean | undefined;
392
+ readonly dropzoneVariant?: ("fill" | "default" | "fullscreen") | undefined;
393
+ readonly onDropzoneClickCallback?: (() => void) | undefined | false;
394
+ readonly onChange?: ((event: InputFileChangeEvent) => any) | undefined;
395
+ readonly onFilesInput?: ((files: File[]) => any) | undefined;
396
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
397
+ $attrs: {
398
+ [x: string]: unknown;
399
+ };
400
+ $refs: {
401
+ [x: string]: unknown;
402
+ } & {
403
+ inputRef: HTMLInputElement;
404
+ };
405
+ $slots: Readonly<{
406
+ [name: string]: Slot<any> | undefined;
407
+ }>;
408
+ $root: ComponentPublicInstance | null;
409
+ $parent: ComponentPublicInstance | null;
410
+ $host: Element | null;
411
+ $emit: ((event: "change", event: InputFileChangeEvent) => void) & ((event: "filesInput", files: File[]) => void);
412
+ $el: any;
413
+ $options: ComponentOptionsBase<Readonly<{
414
+ fileInputKey?: number | undefined;
415
+ accept?: string | undefined;
416
+ maxSizes?: Record<string, number> | undefined;
417
+ multiple?: boolean;
418
+ useDropzone?: boolean;
419
+ dropzoneVariant?: "fill" | "default" | "fullscreen";
420
+ onDropzoneClickCallback?: (() => void) | undefined | false;
421
+ }> & Readonly<{
422
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
423
+ onFilesInput?: ((files: File[]) => any) | undefined;
424
+ }>, {
425
+ activate: () => void;
426
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
427
+ change: (event: InputFileChangeEvent) => any;
428
+ filesInput: (files: File[]) => any;
429
+ }, string, {
430
+ accept: string;
431
+ multiple: boolean;
432
+ fileInputKey: number;
433
+ maxSizes: Record<string, number>;
434
+ useDropzone: boolean;
435
+ dropzoneVariant: "fill" | "default" | "fullscreen";
436
+ onDropzoneClickCallback: false | (() => void);
437
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
438
+ beforeCreate?: (() => void) | (() => void)[];
439
+ created?: (() => void) | (() => void)[];
440
+ beforeMount?: (() => void) | (() => void)[];
441
+ mounted?: (() => void) | (() => void)[];
442
+ beforeUpdate?: (() => void) | (() => void)[];
443
+ updated?: (() => void) | (() => void)[];
444
+ activated?: (() => void) | (() => void)[];
445
+ deactivated?: (() => void) | (() => void)[];
446
+ beforeDestroy?: (() => void) | (() => void)[];
447
+ beforeUnmount?: (() => void) | (() => void)[];
448
+ destroyed?: (() => void) | (() => void)[];
449
+ unmounted?: (() => void) | (() => void)[];
450
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
451
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
452
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
453
+ };
454
+ $forceUpdate: () => void;
455
+ $nextTick: nextTick;
456
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
457
+ } & Readonly<{
458
+ accept: string;
459
+ multiple: boolean;
460
+ fileInputKey: number;
461
+ maxSizes: Record<string, number>;
462
+ useDropzone: boolean;
463
+ dropzoneVariant: "fill" | "default" | "fullscreen";
464
+ onDropzoneClickCallback: false | (() => void);
465
+ }> & Omit<Readonly<{
466
+ fileInputKey?: number | undefined;
467
+ accept?: string | undefined;
468
+ maxSizes?: Record<string, number> | undefined;
469
+ multiple?: boolean;
470
+ useDropzone?: boolean;
471
+ dropzoneVariant?: "fill" | "default" | "fullscreen";
472
+ onDropzoneClickCallback?: (() => void) | undefined | false;
473
+ }> & Readonly<{
474
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
475
+ onFilesInput?: ((files: File[]) => any) | undefined;
476
+ }>, "activate" | ("accept" | "multiple" | "fileInputKey" | "maxSizes" | "useDropzone" | "dropzoneVariant" | "onDropzoneClickCallback")> & ShallowUnwrapRef< {
477
+ activate: () => void;
478
+ }> & {} & ComponentCustomProperties & {} & {
479
+ $slots: {
480
+ activator?(_: {
481
+ props: {
482
+ onClick: () => void;
483
+ };
484
+ }): any;
485
+ };
486
+ }) | null;
487
+ };
488
+ $slots: Readonly<{
489
+ [name: string]: Slot<any> | undefined;
490
+ }>;
491
+ $root: ComponentPublicInstance | null;
492
+ $parent: ComponentPublicInstance | null;
493
+ $host: Element | null;
494
+ $emit: ((event: "change", event: InputFileChangeEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "filesInput", files: File[]) => void);
495
+ $el: any;
496
+ $options: ComponentOptionsBase<Readonly<{
497
+ modelValue?: boolean;
498
+ } & {
499
+ fileInputKey?: number | undefined;
500
+ accept?: string | undefined;
501
+ maxSizes?: Record<string, number> | undefined;
502
+ multiple?: boolean;
503
+ }> & Readonly<{
504
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
505
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
506
+ onFilesInput?: ((files: File[]) => any) | undefined;
507
+ }>, {
508
+ activate: () => void;
509
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
510
+ "update:modelValue": (value: boolean) => any;
511
+ } & {
512
+ change: (event: InputFileChangeEvent) => any;
513
+ filesInput: (files: File[]) => any;
514
+ }, string, {
515
+ accept: string;
516
+ multiple: boolean;
517
+ fileInputKey: number;
518
+ maxSizes: Record<string, number>;
519
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
520
+ beforeCreate?: (() => void) | (() => void)[];
521
+ created?: (() => void) | (() => void)[];
522
+ beforeMount?: (() => void) | (() => void)[];
523
+ mounted?: (() => void) | (() => void)[];
524
+ beforeUpdate?: (() => void) | (() => void)[];
525
+ updated?: (() => void) | (() => void)[];
526
+ activated?: (() => void) | (() => void)[];
527
+ deactivated?: (() => void) | (() => void)[];
528
+ beforeDestroy?: (() => void) | (() => void)[];
529
+ beforeUnmount?: (() => void) | (() => void)[];
530
+ destroyed?: (() => void) | (() => void)[];
531
+ unmounted?: (() => void) | (() => void)[];
532
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
533
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
534
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
535
+ };
536
+ $forceUpdate: () => void;
537
+ $nextTick: nextTick;
538
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
539
+ } & Readonly<{
540
+ accept: string;
541
+ multiple: boolean;
542
+ fileInputKey: number;
543
+ maxSizes: Record<string, number>;
544
+ }> & Omit<Readonly<{
545
+ modelValue?: boolean;
546
+ } & {
547
+ fileInputKey?: number | undefined;
548
+ accept?: string | undefined;
549
+ maxSizes?: Record<string, number> | undefined;
550
+ multiple?: boolean;
551
+ }> & Readonly<{
552
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
553
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
554
+ onFilesInput?: ((files: File[]) => any) | undefined;
555
+ }>, "activate" | ("accept" | "multiple" | "fileInputKey" | "maxSizes")> & ShallowUnwrapRef< {
556
+ activate: () => void;
557
+ }> & {} & ComponentCustomProperties & {} & {
558
+ $slots: {
559
+ activator?(_: {
560
+ props: Record<string, any>;
561
+ }): any;
562
+ title?(_: {}): any;
563
+ };
564
+ }) | null;
565
+ detailDialogMetadataComponent: CreateComponentPublicInstanceWithMixins<Readonly<{
566
+ modelValue: boolean;
567
+ saving: boolean;
568
+ loading: boolean;
569
+ expand?: boolean;
570
+ showDamAuthors?: boolean;
571
+ }> & Readonly<{
572
+ onEditAsset?: ((data: string) => any) | undefined;
573
+ onOnConfirm?: (() => any) | undefined;
574
+ onOnClose?: (() => any) | undefined;
575
+ }>, {
576
+ confirm: () => void;
577
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
578
+ editAsset: (data: string) => any;
579
+ onConfirm: () => any;
580
+ onClose: () => any;
581
+ }, PublicProps, {
582
+ showDamAuthors: boolean;
583
+ expand: boolean;
584
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
585
+ P: {};
586
+ B: {};
587
+ D: {};
588
+ C: {};
589
+ M: {};
590
+ Defaults: {};
591
+ }, Readonly<{
592
+ modelValue: boolean;
593
+ saving: boolean;
594
+ loading: boolean;
595
+ expand?: boolean;
596
+ showDamAuthors?: boolean;
597
+ }> & Readonly<{
598
+ onEditAsset?: ((data: string) => any) | undefined;
599
+ onOnConfirm?: (() => any) | undefined;
600
+ onOnClose?: (() => any) | undefined;
601
+ }>, {
602
+ confirm: () => void;
603
+ }, {}, {}, {}, {
604
+ showDamAuthors: boolean;
605
+ expand: boolean;
606
+ }> | null;
607
+ };
608
+ $slots: Readonly<{
609
+ [name: string]: Slot<any> | undefined;
610
+ }>;
611
+ $root: ComponentPublicInstance | null;
612
+ $parent: ComponentPublicInstance | null;
613
+ $host: Element | null;
614
+ $emit: ((event: "update:modelValue", value: IntegerIdNullable) => void) & ((event: "afterMetadataSaveSuccess") => void);
615
+ $el: any;
616
+ $options: ComponentOptionsBase<Readonly<{
617
+ modelValue: IntegerIdNullable;
618
+ } & {
619
+ queueKey: UploadQueueKey;
620
+ uploadLicence: IntegerId;
621
+ selectLicences: IntegerId[];
622
+ image?: ImageAware | undefined;
623
+ configName?: string;
624
+ collab?: CollabComponentConfig;
625
+ collabStatus?: CollabStatusType;
626
+ label?: string | undefined;
627
+ required?: boolean;
628
+ readonly?: boolean;
629
+ dataCy?: string | undefined;
630
+ expandOptions?: boolean;
631
+ expandMetadata?: boolean;
632
+ disableOnClickMenu?: boolean;
633
+ width?: number | undefined;
634
+ maxWidth?: number | undefined;
635
+ height?: number | undefined;
636
+ callDeleteApiOnRemove?: boolean;
637
+ damWidth?: undefined | number;
638
+ damHeight?: undefined | number;
639
+ }> & Readonly<{
640
+ "onUpdate:modelValue"?: ((value: IntegerIdNullable) => any) | undefined;
641
+ onAfterMetadataSaveSuccess?: (() => any) | undefined;
642
+ }>, {
643
+ metadataConfirm: () => void;
644
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
645
+ "update:modelValue": (value: IntegerIdNullable) => any;
646
+ } & {
647
+ afterMetadataSaveSuccess: () => any;
648
+ }, string, {
307
649
  collab: {
308
650
  room: CollabRoom;
309
651
  field: CollabFieldName;
@@ -312,8 +654,51 @@ cachedUsers: CollabCachedUsersMap;
312
654
  image: ImageAware;
313
655
  width: number;
314
656
  height: number;
657
+ required: boolean;
658
+ label: string;
315
659
  dataCy: string;
660
+ maxWidth: number;
661
+ readonly: boolean;
662
+ configName: string;
663
+ damWidth: number;
664
+ damHeight: number;
665
+ collabStatus: CollabStatusType;
666
+ expandOptions: boolean;
667
+ expandMetadata: boolean;
668
+ disableOnClickMenu: boolean;
669
+ callDeleteApiOnRemove: boolean;
670
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
671
+ beforeCreate?: (() => void) | (() => void)[];
672
+ created?: (() => void) | (() => void)[];
673
+ beforeMount?: (() => void) | (() => void)[];
674
+ mounted?: (() => void) | (() => void)[];
675
+ beforeUpdate?: (() => void) | (() => void)[];
676
+ updated?: (() => void) | (() => void)[];
677
+ activated?: (() => void) | (() => void)[];
678
+ deactivated?: (() => void) | (() => void)[];
679
+ beforeDestroy?: (() => void) | (() => void)[];
680
+ beforeUnmount?: (() => void) | (() => void)[];
681
+ destroyed?: (() => void) | (() => void)[];
682
+ unmounted?: (() => void) | (() => void)[];
683
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
684
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
685
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
686
+ };
687
+ $forceUpdate: () => void;
688
+ $nextTick: nextTick;
689
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
690
+ } & Readonly<{
691
+ collab: {
692
+ room: CollabRoom;
693
+ field: CollabFieldName;
694
+ cachedUsers: CollabCachedUsersMap;
695
+ };
696
+ image: ImageAware;
697
+ width: number;
698
+ height: number;
699
+ required: boolean;
316
700
  label: string;
701
+ dataCy: string;
317
702
  maxWidth: number;
318
703
  readonly: boolean;
319
704
  configName: string;
@@ -324,7 +709,54 @@ expandOptions: boolean;
324
709
  expandMetadata: boolean;
325
710
  disableOnClickMenu: boolean;
326
711
  callDeleteApiOnRemove: boolean;
327
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
712
+ }> & Omit<Readonly<{
713
+ modelValue: IntegerIdNullable;
714
+ } & {
715
+ queueKey: UploadQueueKey;
716
+ uploadLicence: IntegerId;
717
+ selectLicences: IntegerId[];
718
+ image?: ImageAware | undefined;
719
+ configName?: string;
720
+ collab?: CollabComponentConfig;
721
+ collabStatus?: CollabStatusType;
722
+ label?: string | undefined;
723
+ required?: boolean;
724
+ readonly?: boolean;
725
+ dataCy?: string | undefined;
726
+ expandOptions?: boolean;
727
+ expandMetadata?: boolean;
728
+ disableOnClickMenu?: boolean;
729
+ width?: number | undefined;
730
+ maxWidth?: number | undefined;
731
+ height?: number | undefined;
732
+ callDeleteApiOnRemove?: boolean;
733
+ damWidth?: undefined | number;
734
+ damHeight?: undefined | number;
735
+ }> & Readonly<{
736
+ "onUpdate:modelValue"?: ((value: IntegerIdNullable) => any) | undefined;
737
+ onAfterMetadataSaveSuccess?: (() => any) | undefined;
738
+ }>, "metadataConfirm" | ("collab" | "image" | "width" | "height" | "required" | "label" | "dataCy" | "maxWidth" | "readonly" | "configName" | "damWidth" | "damHeight" | "collabStatus" | "expandOptions" | "expandMetadata" | "disableOnClickMenu" | "callDeleteApiOnRemove")> & ShallowUnwrapRef< {
739
+ metadataConfirm: () => void;
740
+ }> & {} & ComponentCustomProperties & {} & {
741
+ $slots: {
742
+ append?(_: {
743
+ image: {
744
+ id?: IntegerId | undefined;
745
+ texts: {
746
+ description: string;
747
+ source: string;
748
+ };
749
+ position?: number | undefined;
750
+ dam: {
751
+ damId: DocId;
752
+ licenceId: IntegerId;
753
+ regionPosition: number;
754
+ };
755
+ } | null;
756
+ }): any;
757
+ };
758
+ }) | null;
759
+ }, any>;
328
760
 
329
761
  declare const __VLS_component_22: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{}>, {
330
762
  image: ImageAware | ImageCreateUpdateAware | null;
@@ -374,15 +806,15 @@ onFocus?: ((data: string | number | null | undefined) => any) | undefined;
374
806
  "onUpdate:modelValue"?: ((data: DatetimeUTCNullable | undefined) => any) | undefined;
375
807
  "onClick:append"?: ((data: string | number | null | undefined) => any) | undefined;
376
808
  }>, {
377
- required: boolean;
378
809
  collab: {
379
810
  room: CollabRoom;
380
811
  field: CollabFieldName;
381
812
  cachedUsers: CollabCachedUsersMap;
382
813
  };
383
814
  disabled: boolean;
384
- dataCy: string;
815
+ required: boolean;
385
816
  label: string;
817
+ dataCy: string;
386
818
  errorMessage: string;
387
819
  v: any;
388
820
  clearable: boolean;
@@ -403,8 +835,8 @@ field: CollabFieldName;
403
835
  cachedUsers: CollabCachedUsersMap;
404
836
  };
405
837
  disabled: boolean;
406
- dataCy: string;
407
838
  label: string;
839
+ dataCy: string;
408
840
  errorMessage: string;
409
841
  v: any;
410
842
  clearable: boolean;
@@ -427,7 +859,6 @@ onFocus?: ((data: string | number | string[] | number[] | null) => any) | undefi
427
859
  onSearchChange?: ((data: string) => any) | undefined;
428
860
  onSearchChangeDebounced?: ((data: string) => any) | undefined;
429
861
  }>, {
430
- required: boolean;
431
862
  collab: {
432
863
  room: CollabRoom;
433
864
  field: CollabFieldName;
@@ -435,6 +866,7 @@ cachedUsers: CollabCachedUsersMap;
435
866
  };
436
867
  disabled: boolean;
437
868
  loading: boolean;
869
+ required: boolean;
438
870
  label: string;
439
871
  errorMessage: string;
440
872
  v: any;
@@ -463,8 +895,8 @@ field: CollabFieldName;
463
895
  cachedUsers: CollabCachedUsersMap;
464
896
  };
465
897
  disabled: boolean;
466
- dataCy: string;
467
898
  label: string;
899
+ dataCy: string;
468
900
  hideLabel: boolean;
469
901
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
470
902
 
@@ -477,15 +909,15 @@ onBlur?: ((data: any) => any) | undefined;
477
909
  onFocus?: ((data: any) => any) | undefined;
478
910
  "onUpdate:modelValue"?: ((data: any) => any) | undefined;
479
911
  }>, {
480
- required: boolean;
481
912
  collab: {
482
913
  room: CollabRoom;
483
914
  field: CollabFieldName;
484
915
  cachedUsers: CollabCachedUsersMap;
485
916
  };
486
917
  disabled: boolean;
487
- dataCy: string;
918
+ required: boolean;
488
919
  label: string;
920
+ dataCy: string;
489
921
  errorMessage: string;
490
922
  v: any;
491
923
  hideLabel: boolean;
@@ -1098,15 +1530,14 @@ declare type __VLS_Props_68 = {
1098
1530
 
1099
1531
  declare type __VLS_Props_69 = {
1100
1532
  modelValue: IntegerId[];
1101
- queueKey: UploadQueueKey;
1102
- uploadLicence: IntegerId;
1103
- selectLicences: IntegerId[];
1533
+ images?: ImageAware[];
1104
1534
  configName?: string;
1105
1535
  label?: string | undefined;
1106
- readonly?: boolean;
1107
- dataCy?: string | undefined;
1108
1536
  width?: number | undefined;
1109
- callDeleteApiOnRemove?: boolean;
1537
+ disableAspectRatio?: boolean;
1538
+ aspectRatio?: number | string;
1539
+ showDescription?: boolean;
1540
+ showSource?: boolean;
1110
1541
  };
1111
1542
 
1112
1543
  declare type __VLS_Props_7 = {
@@ -1115,18 +1546,6 @@ declare type __VLS_Props_7 = {
1115
1546
  };
1116
1547
 
1117
1548
  declare type __VLS_Props_70 = {
1118
- modelValue: IntegerId[];
1119
- images?: ImageAware[];
1120
- configName?: string;
1121
- label?: string | undefined;
1122
- width?: number | undefined;
1123
- disableAspectRatio?: boolean;
1124
- aspectRatio?: number | string;
1125
- showDescription?: boolean;
1126
- showSource?: boolean;
1127
- };
1128
-
1129
- declare type __VLS_Props_71 = {
1130
1549
  selectLicences: IntegerId[];
1131
1550
  image?: ImageAware | undefined;
1132
1551
  configName?: string;
@@ -1134,18 +1553,18 @@ declare type __VLS_Props_71 = {
1134
1553
  dataCy?: string | undefined;
1135
1554
  };
1136
1555
 
1137
- declare type __VLS_Props_72 = {
1556
+ declare type __VLS_Props_71 = {
1138
1557
  id: null | undefined | IntegerId;
1139
1558
  users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
1140
1559
  };
1141
1560
 
1142
- declare type __VLS_Props_73 = {
1561
+ declare type __VLS_Props_72 = {
1143
1562
  label?: string;
1144
1563
  seconds?: number;
1145
1564
  parentheses?: boolean;
1146
1565
  };
1147
1566
 
1148
- declare type __VLS_Props_74 = {
1567
+ declare type __VLS_Props_73 = {
1149
1568
  collabRoom: CollabRoom;
1150
1569
  cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
1151
1570
  isEdit?: boolean;
@@ -1153,7 +1572,7 @@ declare type __VLS_Props_74 = {
1153
1572
  fetchCachedUsers?: (() => Promisify<Promise<any>>) | undefined;
1154
1573
  };
1155
1574
 
1156
- declare type __VLS_Props_75 = {
1575
+ declare type __VLS_Props_74 = {
1157
1576
  assetType: DamAssetTypeType;
1158
1577
  minCount: number;
1159
1578
  maxCount: number;
@@ -1164,7 +1583,7 @@ declare type __VLS_Props_75 = {
1164
1583
  onDetailLoadedCallback?: ((asset: AssetDetailItemDto) => void) | undefined;
1165
1584
  };
1166
1585
 
1167
- declare type __VLS_Props_76 = {
1586
+ declare type __VLS_Props_75 = {
1168
1587
  modelValue: boolean | null;
1169
1588
  dataCy?: string;
1170
1589
  label?: string | undefined;
@@ -1173,7 +1592,7 @@ declare type __VLS_Props_76 = {
1173
1592
  falseT?: string;
1174
1593
  };
1175
1594
 
1176
- declare type __VLS_Props_77 = {
1595
+ declare type __VLS_Props_76 = {
1177
1596
  modelValue: IntegerId | null | IntegerId[] | any;
1178
1597
  client: () => AxiosInstance;
1179
1598
  label?: string | undefined;
@@ -1185,7 +1604,7 @@ declare type __VLS_Props_77 = {
1185
1604
  disableInitFetch?: boolean;
1186
1605
  };
1187
1606
 
1188
- declare type __VLS_Props_78 = {
1607
+ declare type __VLS_Props_77 = {
1189
1608
  modelValue: string[];
1190
1609
  client: () => AxiosInstance;
1191
1610
  multiple?: boolean;
@@ -1193,7 +1612,7 @@ declare type __VLS_Props_78 = {
1193
1612
  dataCy?: string;
1194
1613
  };
1195
1614
 
1196
- declare type __VLS_Props_79 = {
1615
+ declare type __VLS_Props_78 = {
1197
1616
  modelValue: string[];
1198
1617
  client: () => AxiosInstance;
1199
1618
  multiple?: boolean;
@@ -1201,12 +1620,7 @@ declare type __VLS_Props_79 = {
1201
1620
  dataCy?: string;
1202
1621
  };
1203
1622
 
1204
- declare type __VLS_Props_8 = {
1205
- grant: GrantType;
1206
- grantOrigin: GrantOriginType;
1207
- };
1208
-
1209
- declare type __VLS_Props_80 = {
1623
+ declare type __VLS_Props_79 = {
1210
1624
  modelValue: IntegerId | null | IntegerId[] | any;
1211
1625
  client: () => AxiosInstance;
1212
1626
  label?: string | undefined;
@@ -1219,7 +1633,12 @@ declare type __VLS_Props_80 = {
1219
1633
  disableInitFetch?: boolean;
1220
1634
  };
1221
1635
 
1222
- declare type __VLS_Props_81 = {
1636
+ declare type __VLS_Props_8 = {
1637
+ grant: GrantType;
1638
+ grantOrigin: GrantOriginType;
1639
+ };
1640
+
1641
+ declare type __VLS_Props_80 = {
1223
1642
  modelValue: IntegerId | null | IntegerId[] | any;
1224
1643
  client: () => AxiosInstance;
1225
1644
  label?: string | undefined;
@@ -1231,34 +1650,34 @@ declare type __VLS_Props_81 = {
1231
1650
  disableInitFetch?: boolean;
1232
1651
  };
1233
1652
 
1234
- declare type __VLS_Props_82 = {
1653
+ declare type __VLS_Props_81 = {
1235
1654
  extSystem: IntegerId;
1236
1655
  };
1237
1656
 
1238
- declare type __VLS_Props_83 = {
1657
+ declare type __VLS_Props_82 = {
1239
1658
  extSystem: IntegerId;
1240
1659
  };
1241
1660
 
1242
- declare type __VLS_Props_84 = {
1661
+ declare type __VLS_Props_83 = {
1243
1662
  configName?: string;
1244
1663
  };
1245
1664
 
1246
- declare type __VLS_Props_85 = {
1665
+ declare type __VLS_Props_84 = {
1247
1666
  title?: string | undefined;
1248
1667
  logoUrl?: string | undefined;
1249
1668
  loginUrl?: undefined | (() => string);
1250
1669
  dataCy?: string;
1251
1670
  };
1252
1671
 
1253
- declare type __VLS_Props_86 = {
1672
+ declare type __VLS_Props_85 = {
1254
1673
  logoutUrl?: undefined | (() => string);
1255
1674
  };
1256
1675
 
1257
- declare type __VLS_Props_87 = {
1676
+ declare type __VLS_Props_86 = {
1258
1677
  returnRouteName: string;
1259
1678
  };
1260
1679
 
1261
- declare type __VLS_Props_88 = {
1680
+ declare type __VLS_Props_87 = {
1262
1681
  returnRouteName: string;
1263
1682
  };
1264
1683
 
@@ -1274,15 +1693,15 @@ declare type __VLS_PublicProps = {
1274
1693
 
1275
1694
  declare type __VLS_PublicProps_10 = {
1276
1695
  modelValue: Filter;
1277
- } & __VLS_Props_82;
1696
+ } & __VLS_Props_81;
1278
1697
 
1279
1698
  declare type __VLS_PublicProps_11 = {
1280
1699
  modelValue: Filter;
1281
- } & __VLS_Props_83;
1700
+ } & __VLS_Props_82;
1282
1701
 
1283
1702
  declare type __VLS_PublicProps_12 = {
1284
1703
  modelValue: Filter;
1285
- } & __VLS_Props_84;
1704
+ } & __VLS_Props_83;
1286
1705
 
1287
1706
  declare type __VLS_PublicProps_2 = {
1288
1707
  'showAdvanced'?: boolean;
@@ -1304,19 +1723,19 @@ declare type __VLS_PublicProps_5 = {
1304
1723
 
1305
1724
  declare type __VLS_PublicProps_6 = {
1306
1725
  modelValue: IntegerIdNullable;
1307
- } & __VLS_Props_71;
1726
+ } & __VLS_Props_70;
1308
1727
 
1309
1728
  declare type __VLS_PublicProps_7 = {
1310
1729
  modelValue?: boolean;
1311
- } & __VLS_Props_75;
1730
+ } & __VLS_Props_74;
1312
1731
 
1313
1732
  declare type __VLS_PublicProps_8 = {
1314
1733
  'selected'?: ValueObjectOption<IntegerId>[];
1315
- } & __VLS_Props_80;
1734
+ } & __VLS_Props_79;
1316
1735
 
1317
1736
  declare type __VLS_PublicProps_9 = {
1318
1737
  'selected'?: ValueObjectOption<IntegerId>[];
1319
- } & __VLS_Props_81;
1738
+ } & __VLS_Props_80;
1320
1739
 
1321
1740
  declare function __VLS_template(): {
1322
1741
  attrs: Partial<{}>;
@@ -1351,10 +1770,10 @@ declare function __VLS_template_11(): {
1351
1770
  declare function __VLS_template_12(): {
1352
1771
  attrs: Partial<{}>;
1353
1772
  slots: {
1354
- "button-title"?(_: {}): any;
1773
+ 'button-title'?(_: {}): any;
1355
1774
  title?(_: {}): any;
1356
1775
  content?(_: {}): any;
1357
- "button-confirm-title"?(_: {}): any;
1776
+ 'button-confirm-title'?(_: {}): any;
1358
1777
  };
1359
1778
  refs: {};
1360
1779
  rootEl: any;
@@ -1386,8 +1805,8 @@ declare function __VLS_template_14(): {
1386
1805
  declare function __VLS_template_15(): {
1387
1806
  attrs: Partial<{}>;
1388
1807
  slots: {
1389
- "button-content"?(_: {}): any;
1390
- "button-content"?(_: {}): any;
1808
+ 'button-content'?(_: {}): any;
1809
+ 'button-content'?(_: {}): any;
1391
1810
  default?(_: {}): any;
1392
1811
  };
1393
1812
  refs: {};
@@ -1397,7 +1816,7 @@ declare function __VLS_template_15(): {
1397
1816
  declare function __VLS_template_16(): {
1398
1817
  attrs: Partial<{}>;
1399
1818
  slots: {
1400
- "append-item"?(_: {}): any;
1819
+ 'append-item'?(_: {}): any;
1401
1820
  };
1402
1821
  refs: {};
1403
1822
  rootEl: any;
@@ -1406,7 +1825,7 @@ declare function __VLS_template_16(): {
1406
1825
  declare function __VLS_template_17(): {
1407
1826
  attrs: Partial<{}>;
1408
1827
  slots: {
1409
- "resource-name"?(_: {}): any;
1828
+ 'resource-name'?(_: {}): any;
1410
1829
  };
1411
1830
  refs: {};
1412
1831
  rootEl: HTMLDivElement;
@@ -1430,7 +1849,7 @@ declare function __VLS_template_18(): {
1430
1849
  itemAfter?(_: {
1431
1850
  item: SortableItem<any>;
1432
1851
  }): any;
1433
- "add-last-activator"?(_: {
1852
+ 'add-last-activator'?(_: {
1434
1853
  props: {
1435
1854
  onClick: () => void;
1436
1855
  };
@@ -1466,8 +1885,8 @@ declare function __VLS_template_2(): {
1466
1885
  declare function __VLS_template_20(): {
1467
1886
  attrs: Partial<{}>;
1468
1887
  slots: {
1469
- "before-pinned"?(_: {}): any;
1470
- "after-pinned"?(_: {}): any;
1888
+ 'before-pinned'?(_: {}): any;
1889
+ 'after-pinned'?(_: {}): any;
1471
1890
  };
1472
1891
  refs: {};
1473
1892
  rootEl: any;
@@ -1526,6 +1945,250 @@ declare function __VLS_template_21(): {
1526
1945
  };
1527
1946
  $refs: {
1528
1947
  [x: string]: unknown;
1948
+ } & {
1949
+ expandedUploadDialog: ({
1950
+ $: ComponentInternalInstance;
1951
+ $data: {};
1952
+ $props: {
1953
+ readonly modelValue?: boolean | undefined;
1954
+ readonly fileInputKey?: number | undefined;
1955
+ readonly accept?: string | undefined;
1956
+ readonly maxSizes?: Record<string, number> | undefined;
1957
+ readonly multiple?: boolean | undefined;
1958
+ readonly onChange?: ((event: InputFileChangeEvent) => any) | undefined;
1959
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1960
+ readonly onFilesInput?: ((files: File[]) => any) | undefined;
1961
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1962
+ $attrs: {
1963
+ [x: string]: unknown;
1964
+ };
1965
+ $refs: {
1966
+ [x: string]: unknown;
1967
+ } & {
1968
+ fileInput: ({
1969
+ $: ComponentInternalInstance;
1970
+ $data: {};
1971
+ $props: {
1972
+ readonly fileInputKey?: number | undefined;
1973
+ readonly accept?: string | undefined;
1974
+ readonly maxSizes?: Record<string, number> | undefined;
1975
+ readonly multiple?: boolean | undefined;
1976
+ readonly useDropzone?: boolean | undefined;
1977
+ readonly dropzoneVariant?: ("fill" | "default" | "fullscreen") | undefined;
1978
+ readonly onDropzoneClickCallback?: (() => void) | undefined | false;
1979
+ readonly onChange?: ((event: InputFileChangeEvent) => any) | undefined;
1980
+ readonly onFilesInput?: ((files: File[]) => any) | undefined;
1981
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1982
+ $attrs: {
1983
+ [x: string]: unknown;
1984
+ };
1985
+ $refs: {
1986
+ [x: string]: unknown;
1987
+ } & {
1988
+ inputRef: HTMLInputElement;
1989
+ };
1990
+ $slots: Readonly<{
1991
+ [name: string]: Slot<any> | undefined;
1992
+ }>;
1993
+ $root: ComponentPublicInstance | null;
1994
+ $parent: ComponentPublicInstance | null;
1995
+ $host: Element | null;
1996
+ $emit: ((event: "change", event: InputFileChangeEvent) => void) & ((event: "filesInput", files: File[]) => void);
1997
+ $el: any;
1998
+ $options: ComponentOptionsBase<Readonly<{
1999
+ fileInputKey?: number | undefined;
2000
+ accept?: string | undefined;
2001
+ maxSizes?: Record<string, number> | undefined;
2002
+ multiple?: boolean;
2003
+ useDropzone?: boolean;
2004
+ dropzoneVariant?: "fill" | "default" | "fullscreen";
2005
+ onDropzoneClickCallback?: (() => void) | undefined | false;
2006
+ }> & Readonly<{
2007
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
2008
+ onFilesInput?: ((files: File[]) => any) | undefined;
2009
+ }>, {
2010
+ activate: () => void;
2011
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2012
+ change: (event: InputFileChangeEvent) => any;
2013
+ filesInput: (files: File[]) => any;
2014
+ }, string, {
2015
+ accept: string;
2016
+ multiple: boolean;
2017
+ fileInputKey: number;
2018
+ maxSizes: Record<string, number>;
2019
+ useDropzone: boolean;
2020
+ dropzoneVariant: "fill" | "default" | "fullscreen";
2021
+ onDropzoneClickCallback: false | (() => void);
2022
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2023
+ beforeCreate?: (() => void) | (() => void)[];
2024
+ created?: (() => void) | (() => void)[];
2025
+ beforeMount?: (() => void) | (() => void)[];
2026
+ mounted?: (() => void) | (() => void)[];
2027
+ beforeUpdate?: (() => void) | (() => void)[];
2028
+ updated?: (() => void) | (() => void)[];
2029
+ activated?: (() => void) | (() => void)[];
2030
+ deactivated?: (() => void) | (() => void)[];
2031
+ beforeDestroy?: (() => void) | (() => void)[];
2032
+ beforeUnmount?: (() => void) | (() => void)[];
2033
+ destroyed?: (() => void) | (() => void)[];
2034
+ unmounted?: (() => void) | (() => void)[];
2035
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2036
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2037
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2038
+ };
2039
+ $forceUpdate: () => void;
2040
+ $nextTick: nextTick;
2041
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
2042
+ } & Readonly<{
2043
+ accept: string;
2044
+ multiple: boolean;
2045
+ fileInputKey: number;
2046
+ maxSizes: Record<string, number>;
2047
+ useDropzone: boolean;
2048
+ dropzoneVariant: "fill" | "default" | "fullscreen";
2049
+ onDropzoneClickCallback: false | (() => void);
2050
+ }> & Omit<Readonly<{
2051
+ fileInputKey?: number | undefined;
2052
+ accept?: string | undefined;
2053
+ maxSizes?: Record<string, number> | undefined;
2054
+ multiple?: boolean;
2055
+ useDropzone?: boolean;
2056
+ dropzoneVariant?: "fill" | "default" | "fullscreen";
2057
+ onDropzoneClickCallback?: (() => void) | undefined | false;
2058
+ }> & Readonly<{
2059
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
2060
+ onFilesInput?: ((files: File[]) => any) | undefined;
2061
+ }>, "activate" | ("accept" | "multiple" | "fileInputKey" | "maxSizes" | "useDropzone" | "dropzoneVariant" | "onDropzoneClickCallback")> & ShallowUnwrapRef< {
2062
+ activate: () => void;
2063
+ }> & {} & ComponentCustomProperties & {} & {
2064
+ $slots: {
2065
+ activator?(_: {
2066
+ props: {
2067
+ onClick: () => void;
2068
+ };
2069
+ }): any;
2070
+ };
2071
+ }) | null;
2072
+ };
2073
+ $slots: Readonly<{
2074
+ [name: string]: Slot<any> | undefined;
2075
+ }>;
2076
+ $root: ComponentPublicInstance | null;
2077
+ $parent: ComponentPublicInstance | null;
2078
+ $host: Element | null;
2079
+ $emit: ((event: "change", event: InputFileChangeEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "filesInput", files: File[]) => void);
2080
+ $el: any;
2081
+ $options: ComponentOptionsBase<Readonly<{
2082
+ modelValue?: boolean;
2083
+ } & {
2084
+ fileInputKey?: number | undefined;
2085
+ accept?: string | undefined;
2086
+ maxSizes?: Record<string, number> | undefined;
2087
+ multiple?: boolean;
2088
+ }> & Readonly<{
2089
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
2090
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2091
+ onFilesInput?: ((files: File[]) => any) | undefined;
2092
+ }>, {
2093
+ activate: () => void;
2094
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2095
+ "update:modelValue": (value: boolean) => any;
2096
+ } & {
2097
+ change: (event: InputFileChangeEvent) => any;
2098
+ filesInput: (files: File[]) => any;
2099
+ }, string, {
2100
+ accept: string;
2101
+ multiple: boolean;
2102
+ fileInputKey: number;
2103
+ maxSizes: Record<string, number>;
2104
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2105
+ beforeCreate?: (() => void) | (() => void)[];
2106
+ created?: (() => void) | (() => void)[];
2107
+ beforeMount?: (() => void) | (() => void)[];
2108
+ mounted?: (() => void) | (() => void)[];
2109
+ beforeUpdate?: (() => void) | (() => void)[];
2110
+ updated?: (() => void) | (() => void)[];
2111
+ activated?: (() => void) | (() => void)[];
2112
+ deactivated?: (() => void) | (() => void)[];
2113
+ beforeDestroy?: (() => void) | (() => void)[];
2114
+ beforeUnmount?: (() => void) | (() => void)[];
2115
+ destroyed?: (() => void) | (() => void)[];
2116
+ unmounted?: (() => void) | (() => void)[];
2117
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2118
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2119
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2120
+ };
2121
+ $forceUpdate: () => void;
2122
+ $nextTick: nextTick;
2123
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
2124
+ } & Readonly<{
2125
+ accept: string;
2126
+ multiple: boolean;
2127
+ fileInputKey: number;
2128
+ maxSizes: Record<string, number>;
2129
+ }> & Omit<Readonly<{
2130
+ modelValue?: boolean;
2131
+ } & {
2132
+ fileInputKey?: number | undefined;
2133
+ accept?: string | undefined;
2134
+ maxSizes?: Record<string, number> | undefined;
2135
+ multiple?: boolean;
2136
+ }> & Readonly<{
2137
+ onChange?: ((event: InputFileChangeEvent) => any) | undefined;
2138
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2139
+ onFilesInput?: ((files: File[]) => any) | undefined;
2140
+ }>, "activate" | ("accept" | "multiple" | "fileInputKey" | "maxSizes")> & ShallowUnwrapRef< {
2141
+ activate: () => void;
2142
+ }> & {} & ComponentCustomProperties & {} & {
2143
+ $slots: {
2144
+ activator?(_: {
2145
+ props: Record<string, any>;
2146
+ }): any;
2147
+ title?(_: {}): any;
2148
+ };
2149
+ }) | null;
2150
+ detailDialogMetadataComponent: CreateComponentPublicInstanceWithMixins<Readonly<{
2151
+ modelValue: boolean;
2152
+ saving: boolean;
2153
+ loading: boolean;
2154
+ expand?: boolean;
2155
+ showDamAuthors?: boolean;
2156
+ }> & Readonly<{
2157
+ onEditAsset?: ((data: string) => any) | undefined;
2158
+ onOnConfirm?: (() => any) | undefined;
2159
+ onOnClose?: (() => any) | undefined;
2160
+ }>, {
2161
+ confirm: () => void;
2162
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2163
+ editAsset: (data: string) => any;
2164
+ onConfirm: () => any;
2165
+ onClose: () => any;
2166
+ }, PublicProps, {
2167
+ showDamAuthors: boolean;
2168
+ expand: boolean;
2169
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2170
+ P: {};
2171
+ B: {};
2172
+ D: {};
2173
+ C: {};
2174
+ M: {};
2175
+ Defaults: {};
2176
+ }, Readonly<{
2177
+ modelValue: boolean;
2178
+ saving: boolean;
2179
+ loading: boolean;
2180
+ expand?: boolean;
2181
+ showDamAuthors?: boolean;
2182
+ }> & Readonly<{
2183
+ onEditAsset?: ((data: string) => any) | undefined;
2184
+ onOnConfirm?: (() => any) | undefined;
2185
+ onOnClose?: (() => any) | undefined;
2186
+ }>, {
2187
+ confirm: () => void;
2188
+ }, {}, {}, {}, {
2189
+ showDamAuthors: boolean;
2190
+ expand: boolean;
2191
+ }> | null;
1529
2192
  };
1530
2193
  $slots: Readonly<{
1531
2194
  [name: string]: Slot<any> | undefined;
@@ -1568,7 +2231,6 @@ declare function __VLS_template_21(): {
1568
2231
  } & {
1569
2232
  afterMetadataSaveSuccess: () => any;
1570
2233
  }, string, {
1571
- required: boolean;
1572
2234
  collab: {
1573
2235
  room: CollabRoom;
1574
2236
  field: CollabFieldName;
@@ -1577,8 +2239,9 @@ declare function __VLS_template_21(): {
1577
2239
  image: ImageAware;
1578
2240
  width: number;
1579
2241
  height: number;
1580
- dataCy: string;
2242
+ required: boolean;
1581
2243
  label: string;
2244
+ dataCy: string;
1582
2245
  maxWidth: number;
1583
2246
  readonly: boolean;
1584
2247
  configName: string;
@@ -1610,7 +2273,6 @@ declare function __VLS_template_21(): {
1610
2273
  $nextTick: nextTick;
1611
2274
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
1612
2275
  } & Readonly<{
1613
- required: boolean;
1614
2276
  collab: {
1615
2277
  room: CollabRoom;
1616
2278
  field: CollabFieldName;
@@ -1619,8 +2281,9 @@ declare function __VLS_template_21(): {
1619
2281
  image: ImageAware;
1620
2282
  width: number;
1621
2283
  height: number;
1622
- dataCy: string;
2284
+ required: boolean;
1623
2285
  label: string;
2286
+ dataCy: string;
1624
2287
  maxWidth: number;
1625
2288
  readonly: boolean;
1626
2289
  configName: string;
@@ -1657,7 +2320,7 @@ declare function __VLS_template_21(): {
1657
2320
  }> & Readonly<{
1658
2321
  "onUpdate:modelValue"?: ((value: IntegerIdNullable) => any) | undefined;
1659
2322
  onAfterMetadataSaveSuccess?: (() => any) | undefined;
1660
- }>, "metadataConfirm" | ("required" | "collab" | "image" | "width" | "height" | "dataCy" | "label" | "maxWidth" | "readonly" | "configName" | "damWidth" | "damHeight" | "collabStatus" | "expandOptions" | "expandMetadata" | "disableOnClickMenu" | "callDeleteApiOnRemove")> & ShallowUnwrapRef< {
2323
+ }>, "metadataConfirm" | ("collab" | "image" | "width" | "height" | "required" | "label" | "dataCy" | "maxWidth" | "readonly" | "configName" | "damWidth" | "damHeight" | "collabStatus" | "expandOptions" | "expandMetadata" | "disableOnClickMenu" | "callDeleteApiOnRemove")> & ShallowUnwrapRef< {
1661
2324
  metadataConfirm: () => void;
1662
2325
  }> & {} & ComponentCustomProperties & {} & {
1663
2326
  $slots: {
@@ -1726,8 +2389,8 @@ declare function __VLS_template_23(): {
1726
2389
  };
1727
2390
  }): any;
1728
2391
  title?(_: {}): any;
1729
- "button-confirm-title"?(_: {}): any;
1730
- "button-confirm-title"?(_: {}): any;
2392
+ 'button-confirm-title'?(_: {}): any;
2393
+ 'button-confirm-title'?(_: {}): any;
1731
2394
  };
1732
2395
  refs: {};
1733
2396
  rootEl: any;
@@ -2001,8 +2664,8 @@ routeParams: any | undefined;
2001
2664
 
2002
2665
  export declare const AActionCreateButton: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{}>, {
2003
2666
  size: number;
2004
- dataCy: string;
2005
2667
  variant: ButtonVariant;
2668
+ dataCy: string;
2006
2669
  buttonT: string;
2007
2670
  buttonClass: string;
2008
2671
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -2017,8 +2680,8 @@ onDeleteRecord?: (() => any) | undefined;
2017
2680
  disabled: boolean;
2018
2681
  color: string;
2019
2682
  size: number;
2020
- dataCy: string;
2021
2683
  variant: ButtonVariant;
2684
+ dataCy: string;
2022
2685
  buttonT: string;
2023
2686
  buttonClass: string;
2024
2687
  dialogMessageT: string;
@@ -2037,8 +2700,8 @@ onEditRecord?: (() => any) | undefined;
2037
2700
  }>, {
2038
2701
  size: number;
2039
2702
  loading: boolean;
2040
- dataCy: string;
2041
2703
  variant: ButtonVariant;
2704
+ dataCy: string;
2042
2705
  buttonT: string;
2043
2706
  buttonClass: string;
2044
2707
  routeParams: any | undefined;
@@ -2065,8 +2728,8 @@ onSaveRecord?: (() => any) | undefined;
2065
2728
  disabled: boolean;
2066
2729
  size: number;
2067
2730
  loading: boolean;
2068
- dataCy: string;
2069
2731
  variant: ButtonVariant;
2732
+ dataCy: string;
2070
2733
  buttonT: string;
2071
2734
  buttonClass: string;
2072
2735
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -2097,21 +2760,21 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_Props_58, {}, {},
2097
2760
  }, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{
2098
2761
  "onUpdate:modelValue"?: ((data: string) => any) | undefined;
2099
2762
  }>, {
2100
- required: boolean;
2101
2763
  loading: boolean;
2764
+ required: boolean;
2102
2765
  label: string;
2103
2766
  hideLabel: boolean;
2104
2767
  readonly: boolean;
2105
2768
  randomColor: boolean;
2106
2769
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2107
2770
 
2108
- export declare const ABooleanSelect: DefineComponent<__VLS_Props_76, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2771
+ export declare const ABooleanSelect: DefineComponent<__VLS_Props_75, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2109
2772
  "update:modelValue": (data: boolean | null) => any;
2110
- }, string, PublicProps, Readonly<__VLS_Props_76> & Readonly<{
2773
+ }, string, PublicProps, Readonly<__VLS_Props_75> & Readonly<{
2111
2774
  "onUpdate:modelValue"?: ((data: boolean | null) => any) | undefined;
2112
2775
  }>, {
2113
- dataCy: string;
2114
2776
  label: string;
2777
+ dataCy: string;
2115
2778
  allT: string;
2116
2779
  trueT: string;
2117
2780
  falseT: string;
@@ -2141,10 +2804,10 @@ loading: boolean;
2141
2804
  export declare const AChipNoLink: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2142
2805
 
2143
2806
  export declare const Acl: <TAclValue extends AclValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2144
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & Partial<{}> & {
2807
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
2145
2808
  permission: TAclValue;
2146
2809
  subject?: object;
2147
- }> & PublicProps;
2810
+ } & Partial<{}>> & PublicProps;
2148
2811
  expose(exposed: ShallowUnwrapRef< {}>): void;
2149
2812
  attrs: any;
2150
2813
  slots: {
@@ -2159,9 +2822,9 @@ export declare const Acl: <TAclValue extends AclValue>(__VLS_props: NonNullable<
2159
2822
 
2160
2823
  export declare type AclValue = `${string}_${string}_${string}`;
2161
2824
 
2162
- export declare const ACollabCountdown: DefineComponent<__VLS_Props_73, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2825
+ export declare const ACollabCountdown: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2163
2826
  done: () => any;
2164
- }, string, PublicProps, Readonly<__VLS_Props_73> & Readonly<{
2827
+ }, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{
2165
2828
  onDone?: (() => any) | undefined;
2166
2829
  }>, {
2167
2830
  label: string;
@@ -2169,9 +2832,9 @@ seconds: number;
2169
2832
  parentheses: boolean;
2170
2833
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2171
2834
 
2172
- export declare const ACollabLockedByUser: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2835
+ export declare const ACollabLockedByUser: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2173
2836
 
2174
- export declare const ACollabManagement: DefineComponent<__VLS_Props_74, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_74> & Readonly<{}>, {
2837
+ export declare const ACollabManagement: DefineComponent<__VLS_Props_73, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_73> & Readonly<{}>, {
2175
2838
  isEdit: boolean;
2176
2839
  addToCachedUsers: (...args: AddToCachedArgs<IntegerId>) => void;
2177
2840
  fetchCachedUsers: () => Promisify<Promise<any>>;
@@ -2182,7 +2845,7 @@ export declare const ACopyText: __VLS_WithTemplateSlots_14<typeof __VLS_componen
2182
2845
  export declare const ACreateDialog: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
2183
2846
 
2184
2847
  export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2185
- props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & Partial<{}> & {
2848
+ props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
2186
2849
  src?: string;
2187
2850
  alt?: string;
2188
2851
  containerStyle?: {
@@ -2230,7 +2893,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2230
2893
  cropmove?: null | ((event: default_2.CropMoveEvent<T>) => void);
2231
2894
  cropstart?: null | ((event: default_2.CropStartEvent<T>) => void);
2232
2895
  zoom?: null | ((event: default_2.ZoomEvent<T>) => void);
2233
- }> & PublicProps;
2896
+ } & Partial<{}>> & PublicProps;
2234
2897
  expose(exposed: ShallowUnwrapRef< {
2235
2898
  enable: () => void;
2236
2899
  disable: () => void;
@@ -2273,11 +2936,11 @@ validationScope: string | number | boolean | symbol;
2273
2936
  export declare const ADatatable: <TItem = Record<string, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2274
2937
  props: __VLS_PrettifyLocal_4<Pick<Partial<{}> & Omit<{
2275
2938
  readonly "onClick:row"?: ((data: any) => any) | undefined;
2276
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onClick:row"> & Partial<{}> & {
2939
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onClick:row"> & {
2277
2940
  items: TItem[];
2278
2941
  columns: any;
2279
2942
  itemKey?: string;
2280
- }> & PublicProps;
2943
+ } & Partial<{}>> & PublicProps;
2281
2944
  expose(exposed: ShallowUnwrapRef< {}>): void;
2282
2945
  attrs: any;
2283
2946
  slots: Partial<Record<string, (_: {
@@ -2519,22 +3182,9 @@ labelT: string;
2519
3182
 
2520
3183
  export declare const AImageWidget: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
2521
3184
 
2522
- export declare const AImageWidgetMultiple: DefineComponent<__VLS_Props_69, {
2523
- saveImages: () => Promise<boolean>;
2524
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2525
- "update:modelValue": (data: number[]) => any;
2526
- }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
2527
- "onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
2528
- }>, {
2529
- width: number;
2530
- dataCy: string;
2531
- label: string;
2532
- readonly: boolean;
2533
- configName: string;
2534
- callDeleteApiOnRemove: boolean;
2535
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3185
+ export { AImageWidgetMultiple }
2536
3186
 
2537
- export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{}>, {
3187
+ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{}>, {
2538
3188
  width: number;
2539
3189
  label: string;
2540
3190
  configName: string;
@@ -2567,7 +3217,7 @@ onAfterChange?: ((code: LanguageCode) => any) | undefined;
2567
3217
 
2568
3218
  export declare const ALogData: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2569
3219
 
2570
- export declare const ALoginView: DefineComponent<__VLS_Props_85, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_85> & Readonly<{}>, {
3220
+ export declare const ALoginView: DefineComponent<__VLS_Props_84, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_84> & Readonly<{}>, {
2571
3221
  title: string;
2572
3222
  dataCy: string;
2573
3223
  logoUrl: string;
@@ -2576,11 +3226,11 @@ loginUrl: () => string;
2576
3226
 
2577
3227
  export declare const ALogLevelChip: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2578
3228
 
2579
- export declare const ALogoutView: DefineComponent<__VLS_Props_86, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_86> & Readonly<{}>, {
3229
+ export declare const ALogoutView: DefineComponent<__VLS_Props_85, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_85> & Readonly<{}>, {
2580
3230
  logoutUrl: () => string;
2581
3231
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2582
3232
 
2583
- export declare const ANotFoundView: DefineComponent<__VLS_Props_88, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_88> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3233
+ export declare const ANotFoundView: DefineComponent<__VLS_Props_87, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_87> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2584
3234
 
2585
3235
  export declare class AnzuApiForbiddenError extends Error {
2586
3236
  constructor(cause?: Error, message?: string);
@@ -2937,7 +3587,7 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: NonNullable<Awaited<ty
2937
3587
  readonly "onUpdate:pagination"?: ((data: Pagination) => any) | undefined;
2938
3588
  readonly onOnPageChange?: (() => any) | undefined;
2939
3589
  readonly onOnFetchNextPage?: (() => any) | undefined;
2940
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:modelValue" | "onOnConfirm" | "onOnOpen" | "onUpdate:pagination" | "onOnPageChange" | "onOnFetchNextPage"> & Partial<{}> & {
3590
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:modelValue" | "onOnConfirm" | "onOnOpen" | "onUpdate:pagination" | "onOnPageChange" | "onOnFetchNextPage"> & {
2941
3591
  selectedItems: Array<TItem>;
2942
3592
  pagination: Pagination;
2943
3593
  submitFilter: Fn;
@@ -2948,7 +3598,7 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: NonNullable<Awaited<ty
2948
3598
  modelValue?: boolean | undefined;
2949
3599
  dialogTitleT?: string;
2950
3600
  paginationMode?: "standard" | "more";
2951
- }> & PublicProps;
3601
+ } & Partial<{}>> & PublicProps;
2952
3602
  expose(exposed: ShallowUnwrapRef< {
2953
3603
  open: () => void;
2954
3604
  }>): void;
@@ -2960,13 +3610,13 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: NonNullable<Awaited<ty
2960
3610
  };
2961
3611
  }): any;
2962
3612
  title?(_: {}): any;
2963
- "second-bar"?(_: {}): any;
2964
- "second-bar-left"?(_: {}): any;
2965
- "second-bar-right"?(_: {}): any;
3613
+ 'second-bar'?(_: {}): any;
3614
+ 'second-bar-left'?(_: {}): any;
3615
+ 'second-bar-right'?(_: {}): any;
2966
3616
  filter?(_: {}): any;
2967
3617
  content?(_: {}): any;
2968
- "button-confirm-title"?(_: {}): any;
2969
- "button-confirm-title"?(_: {}): any;
3618
+ 'button-confirm-title'?(_: {}): any;
3619
+ 'button-confirm-title'?(_: {}): any;
2970
3620
  };
2971
3621
  emit: {
2972
3622
  (e: "update:modelValue", data: boolean): void;
@@ -3032,7 +3682,7 @@ declare interface AudioAttributes {
3032
3682
  bitrate: number;
3033
3683
  }
3034
3684
 
3035
- export declare const AUnauthorizedView: DefineComponent<__VLS_Props_87, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_87> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3685
+ export declare const AUnauthorizedView: DefineComponent<__VLS_Props_86, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_86> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3036
3686
 
3037
3687
  export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
3038
3688
  hideCreatedAt: boolean;
@@ -3520,8 +4170,8 @@ export declare const DamAssetLicenceGroupRemoteAutocomplete: DefineComponent<__V
3520
4170
  "onUpdate:selected"?: ((value: ValueObjectOption<number>[]) => any) | undefined;
3521
4171
  }>, {
3522
4172
  required: boolean;
3523
- dataCy: string;
3524
4173
  label: string;
4174
+ dataCy: string;
3525
4175
  hideDetails: boolean;
3526
4176
  clearable: boolean;
3527
4177
  multiple: boolean;
@@ -3542,8 +4192,8 @@ export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<__VLS_Pu
3542
4192
  "onUpdate:selected"?: ((value: ValueObjectOption<number>[]) => any) | undefined;
3543
4193
  }>, {
3544
4194
  required: boolean;
3545
- dataCy: string;
3546
4195
  label: string;
4196
+ dataCy: string;
3547
4197
  hideDetails: boolean;
3548
4198
  clearable: boolean;
3549
4199
  multiple: boolean;
@@ -3679,15 +4329,15 @@ export declare type DamDistributionRequirementStrategyType = (typeof DamDistribu
3679
4329
 
3680
4330
  export declare type DamDistributionServiceName = string;
3681
4331
 
3682
- export declare const DamDistributionServiceSelect: DefineComponent<__VLS_Props_79, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4332
+ export declare const DamDistributionServiceSelect: DefineComponent<__VLS_Props_78, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3683
4333
  blur: (data: string[]) => any;
3684
4334
  "update:modelValue": (data: string[]) => any;
3685
- }, string, PublicProps, Readonly<__VLS_Props_79> & Readonly<{
4335
+ }, string, PublicProps, Readonly<__VLS_Props_78> & Readonly<{
3686
4336
  onBlur?: ((data: string[]) => any) | undefined;
3687
4337
  "onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
3688
4338
  }>, {
3689
- dataCy: string;
3690
4339
  label: string;
4340
+ dataCy: string;
3691
4341
  multiple: boolean;
3692
4342
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3693
4343
 
@@ -3718,15 +4368,15 @@ export declare type DamExternalProviderAssetConfig = Record<DamExternalProviderA
3718
4368
 
3719
4369
  export declare type DamExternalProviderAssetName = string;
3720
4370
 
3721
- export declare const DamExternalProviderAssetSelect: DefineComponent<__VLS_Props_78, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4371
+ export declare const DamExternalProviderAssetSelect: DefineComponent<__VLS_Props_77, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3722
4372
  blur: (data: string[]) => any;
3723
4373
  "update:modelValue": (data: string[]) => any;
3724
- }, string, PublicProps, Readonly<__VLS_Props_78> & Readonly<{
4374
+ }, string, PublicProps, Readonly<__VLS_Props_77> & Readonly<{
3725
4375
  onBlur?: ((data: string[]) => any) | undefined;
3726
4376
  "onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
3727
4377
  }>, {
3728
- dataCy: string;
3729
4378
  label: string;
4379
+ dataCy: string;
3730
4380
  multiple: boolean;
3731
4381
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3732
4382
 
@@ -3765,14 +4415,14 @@ export declare interface DamExtSystemConfigItem {
3765
4415
  export declare interface DamExtSystemMinimal extends Pick<DamExtSystem, 'id' | 'name'> {
3766
4416
  }
3767
4417
 
3768
- export declare const DamExtSystemRemoteAutocomplete: DefineComponent<__VLS_Props_77, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4418
+ export declare const DamExtSystemRemoteAutocomplete: DefineComponent<__VLS_Props_76, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3769
4419
  "update:modelValue": (data: any) => any;
3770
- }, string, PublicProps, Readonly<__VLS_Props_77> & Readonly<{
4420
+ }, string, PublicProps, Readonly<__VLS_Props_76> & Readonly<{
3771
4421
  "onUpdate:modelValue"?: ((data: any) => any) | undefined;
3772
4422
  }>, {
3773
4423
  required: boolean;
3774
- dataCy: string;
3775
4424
  label: string;
4425
+ dataCy: string;
3776
4426
  hideDetails: boolean;
3777
4427
  clearable: boolean;
3778
4428
  multiple: boolean;
@@ -4974,6 +5624,10 @@ export declare function initDamNotifications(): {
4974
5624
  damNotificationsInitialized: Ref<boolean, boolean>;
4975
5625
  };
4976
5626
 
5627
+ declare interface InputFileChangeEvent extends Event {
5628
+ target: HTMLInputElement & EventTarget;
5629
+ }
5630
+
4977
5631
  /**
4978
5632
  * Integer ID.
4979
5633
  */