@anzusystems/common-admin 1.40.0-alpha1 → 1.40.0-alpha10

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.
@@ -7,6 +7,7 @@ import type { CancelTokenSource } from 'axios';
7
7
  import { ComponentCustomProps } from 'vue';
8
8
  import { ComponentOptionsMixin } from 'vue';
9
9
  import { ComputedRef } from 'vue';
10
+ import { default as Cropper_2 } from 'cropperjs';
10
11
  import dayjs from 'dayjs';
11
12
  import type { DeepReadonly } from 'vue';
12
13
  import { DefineComponent } from 'vue';
@@ -171,6 +172,14 @@ declare type __VLS_NonUndefinedable_69<T> = T extends undefined ? never : T;
171
172
 
172
173
  declare type __VLS_NonUndefinedable_7<T> = T extends undefined ? never : T;
173
174
 
175
+ declare type __VLS_NonUndefinedable_70<T> = T extends undefined ? never : T;
176
+
177
+ declare type __VLS_NonUndefinedable_71<T> = T extends undefined ? never : T;
178
+
179
+ declare type __VLS_NonUndefinedable_72<T> = T extends undefined ? never : T;
180
+
181
+ declare type __VLS_NonUndefinedable_73<T> = T extends undefined ? never : T;
182
+
174
183
  declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
175
184
 
176
185
  declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
@@ -427,10 +436,26 @@ declare type __VLS_Prettify_66<T> = {
427
436
  [K in keyof T]: T[K];
428
437
  } & {};
429
438
 
439
+ declare type __VLS_Prettify_67<T> = {
440
+ [K in keyof T]: T[K];
441
+ } & {};
442
+
443
+ declare type __VLS_Prettify_68<T> = {
444
+ [K in keyof T]: T[K];
445
+ } & {};
446
+
447
+ declare type __VLS_Prettify_69<T> = {
448
+ [K in keyof T]: T[K];
449
+ } & {};
450
+
430
451
  declare type __VLS_Prettify_7<T> = {
431
452
  [K in keyof T]: T[K];
432
453
  } & {};
433
454
 
455
+ declare type __VLS_Prettify_70<T> = {
456
+ [K in keyof T]: T[K];
457
+ } & {};
458
+
434
459
  declare type __VLS_Prettify_8<T> = {
435
460
  [K in keyof T]: T[K];
436
461
  } & {};
@@ -1042,6 +1067,42 @@ declare type __VLS_TypePropsToRuntimeProps_7<T> = {
1042
1067
  };
1043
1068
  };
1044
1069
 
1070
+ declare type __VLS_TypePropsToRuntimeProps_70<T> = {
1071
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1072
+ type: PropType<__VLS_NonUndefinedable_70<T[K]>>;
1073
+ } : {
1074
+ type: PropType<T[K]>;
1075
+ required: true;
1076
+ };
1077
+ };
1078
+
1079
+ declare type __VLS_TypePropsToRuntimeProps_71<T> = {
1080
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1081
+ type: PropType<__VLS_NonUndefinedable_71<T[K]>>;
1082
+ } : {
1083
+ type: PropType<T[K]>;
1084
+ required: true;
1085
+ };
1086
+ };
1087
+
1088
+ declare type __VLS_TypePropsToRuntimeProps_72<T> = {
1089
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1090
+ type: PropType<__VLS_NonUndefinedable_72<T[K]>>;
1091
+ } : {
1092
+ type: PropType<T[K]>;
1093
+ required: true;
1094
+ };
1095
+ };
1096
+
1097
+ declare type __VLS_TypePropsToRuntimeProps_73<T> = {
1098
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1099
+ type: PropType<__VLS_NonUndefinedable_73<T[K]>>;
1100
+ } : {
1101
+ type: PropType<T[K]>;
1102
+ required: true;
1103
+ };
1104
+ };
1105
+
1045
1106
  declare type __VLS_TypePropsToRuntimeProps_8<T> = {
1046
1107
  [K in keyof T]-?: {} extends Pick<T, K> ? {
1047
1108
  type: PropType<__VLS_NonUndefinedable_8<T[K]>>;
@@ -1438,12 +1499,36 @@ declare type __VLS_WithDefaults_66<P, D> = {
1438
1499
  }> : P[K];
1439
1500
  };
1440
1501
 
1502
+ declare type __VLS_WithDefaults_67<P, D> = {
1503
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_67<P[K] & {
1504
+ default: D[K];
1505
+ }> : P[K];
1506
+ };
1507
+
1508
+ declare type __VLS_WithDefaults_68<P, D> = {
1509
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_68<P[K] & {
1510
+ default: D[K];
1511
+ }> : P[K];
1512
+ };
1513
+
1514
+ declare type __VLS_WithDefaults_69<P, D> = {
1515
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_69<P[K] & {
1516
+ default: D[K];
1517
+ }> : P[K];
1518
+ };
1519
+
1441
1520
  declare type __VLS_WithDefaults_7<P, D> = {
1442
1521
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_7<P[K] & {
1443
1522
  default: D[K];
1444
1523
  }> : P[K];
1445
1524
  };
1446
1525
 
1526
+ declare type __VLS_WithDefaults_70<P, D> = {
1527
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_70<P[K] & {
1528
+ default: D[K];
1529
+ }> : P[K];
1530
+ };
1531
+
1447
1532
  declare type __VLS_WithDefaults_8<P, D> = {
1448
1533
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
1449
1534
  default: D[K];
@@ -1498,6 +1583,12 @@ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
1498
1583
  };
1499
1584
  };
1500
1585
 
1586
+ declare type __VLS_WithTemplateSlots_16<T, S> = T & {
1587
+ new (): {
1588
+ $slots: S;
1589
+ };
1590
+ };
1591
+
1501
1592
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
1502
1593
  new (): {
1503
1594
  $slots: S;
@@ -1903,13 +1994,13 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_53<__VL
1903
1994
  containerClass: string;
1904
1995
  }, {}>;
1905
1996
 
1906
- export declare const AAssetSelect: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
1997
+ export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
1907
1998
  modelValue?: boolean | undefined;
1908
- assetType: "image" | "audio" | "video" | DamAssetType | "document";
1999
+ assetType: "image" | "audio" | "video" | "document" | DamAssetType;
1909
2000
  minCount: number;
1910
2001
  maxCount: number;
1911
2002
  assetLicenceId?: number | undefined;
1912
- returnType?: AssetSelectReturnType | "mainFileId" | "assetId" | "asset" | undefined;
2003
+ returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
1913
2004
  configName?: string | undefined;
1914
2005
  }>, {
1915
2006
  modelValue: undefined;
@@ -1921,13 +2012,13 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_15<DefineComponent<__
1921
2012
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1922
2013
  "update:modelValue": (data: boolean) => void;
1923
2014
  onConfirm: (data: AssetSelectReturnData) => void;
1924
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
2015
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
1925
2016
  modelValue?: boolean | undefined;
1926
- assetType: "image" | "audio" | "video" | DamAssetType | "document";
2017
+ assetType: "image" | "audio" | "video" | "document" | DamAssetType;
1927
2018
  minCount: number;
1928
2019
  maxCount: number;
1929
2020
  assetLicenceId?: number | undefined;
1930
- returnType?: AssetSelectReturnType | "mainFileId" | "assetId" | "asset" | undefined;
2021
+ returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
1931
2022
  configName?: string | undefined;
1932
2023
  }>, {
1933
2024
  modelValue: undefined;
@@ -1939,9 +2030,9 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_15<DefineComponent<__
1939
2030
  onOnConfirm?: ((data: AssetSelectReturnData) => any) | undefined;
1940
2031
  }, {
1941
2032
  modelValue: boolean;
1942
- assetLicenceId: number;
1943
- returnType: AssetSelectReturnType | "mainFileId" | "assetId" | "asset";
1944
2033
  configName: string;
2034
+ assetLicenceId: number;
2035
+ returnType: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType;
1945
2036
  }, {}>, {
1946
2037
  activator?(_: {
1947
2038
  props: {
@@ -2306,6 +2397,193 @@ export declare const ACreateDialog: __VLS_WithTemplateSlots_7<DefineComponent<__
2306
2397
  "button-confirm-title"?(_: {}): any;
2307
2398
  }>;
2308
2399
 
2400
+ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_props: {
2401
+ modal?: boolean | undefined;
2402
+ center?: boolean | undefined;
2403
+ data?: Cropper_2.SetDataOptions | null | undefined;
2404
+ src?: string | undefined;
2405
+ alt?: string | undefined;
2406
+ background?: boolean | undefined;
2407
+ aspectRatio?: number | undefined;
2408
+ containerStyle?: {
2409
+ [key: string]: string;
2410
+ } | undefined;
2411
+ imgStyle?: {
2412
+ [key: string]: string;
2413
+ } | undefined;
2414
+ autoCrop?: boolean | undefined;
2415
+ autoCropArea?: number | undefined;
2416
+ checkCrossOrigin?: boolean | undefined;
2417
+ checkOrientation?: boolean | undefined;
2418
+ cropBoxMovable?: boolean | undefined;
2419
+ cropBoxResizable?: boolean | undefined;
2420
+ dragMode?: Cropper_2.DragMode | undefined;
2421
+ guides?: boolean | undefined;
2422
+ highlight?: boolean | undefined;
2423
+ initialAspectRatio?: number | undefined;
2424
+ movable?: boolean | undefined;
2425
+ preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2426
+ responsive?: boolean | undefined;
2427
+ restore?: boolean | undefined;
2428
+ rotatable?: boolean | undefined;
2429
+ scalable?: boolean | undefined;
2430
+ toggleDragModeOnDblclick?: boolean | undefined;
2431
+ viewMode?: Cropper_2.ViewMode | undefined;
2432
+ wheelZoomRatio?: number | undefined;
2433
+ zoomOnTouch?: boolean | undefined;
2434
+ zoomOnWheel?: boolean | undefined;
2435
+ zoomable?: boolean | undefined;
2436
+ minCanvasWidth?: number | undefined;
2437
+ minCanvasHeight?: number | undefined;
2438
+ minContainerWidth?: number | undefined;
2439
+ minContainerHeight?: number | undefined;
2440
+ minCropBoxWidth?: number | undefined;
2441
+ minCropBoxHeight?: number | undefined;
2442
+ ready?: ((event: Cropper_2.ReadyEvent<T>) => void) | null | undefined;
2443
+ crop?: ((event: Cropper_2.CropEvent<T>) => void) | null | undefined;
2444
+ cropend?: ((event: Cropper_2.CropEndEvent<T>) => void) | null | undefined;
2445
+ cropmove?: ((event: Cropper_2.CropMoveEvent<T>) => void) | null | undefined;
2446
+ cropstart?: ((event: Cropper_2.CropStartEvent<T>) => void) | null | undefined;
2447
+ zoom?: ((event: Cropper_2.ZoomEvent<T>) => void) | null | undefined;
2448
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, __VLS_ctx?: {
2449
+ attrs: any;
2450
+ slots: {};
2451
+ emit: any;
2452
+ } | undefined, __VLS_expose?: ((exposed: ShallowUnwrapRef<{
2453
+ enable: () => void;
2454
+ disable: () => void;
2455
+ destroy: () => void;
2456
+ getImageData: () => Cropper_2.ImageData | undefined;
2457
+ getData: () => Cropper_2.Data | undefined;
2458
+ setData: (data: Cropper_2.SetDataOptions) => Cropper_2 | undefined;
2459
+ }>) => void) | undefined, __VLS_setup?: Promise<{
2460
+ props: {
2461
+ modal?: boolean | undefined;
2462
+ center?: boolean | undefined;
2463
+ data?: Cropper_2.SetDataOptions | null | undefined;
2464
+ src?: string | undefined;
2465
+ alt?: string | undefined;
2466
+ background?: boolean | undefined;
2467
+ aspectRatio?: number | undefined;
2468
+ containerStyle?: {
2469
+ [key: string]: string;
2470
+ } | undefined;
2471
+ imgStyle?: {
2472
+ [key: string]: string;
2473
+ } | undefined;
2474
+ autoCrop?: boolean | undefined;
2475
+ autoCropArea?: number | undefined;
2476
+ checkCrossOrigin?: boolean | undefined;
2477
+ checkOrientation?: boolean | undefined;
2478
+ cropBoxMovable?: boolean | undefined;
2479
+ cropBoxResizable?: boolean | undefined;
2480
+ dragMode?: Cropper_2.DragMode | undefined;
2481
+ guides?: boolean | undefined;
2482
+ highlight?: boolean | undefined;
2483
+ initialAspectRatio?: number | undefined;
2484
+ movable?: boolean | undefined;
2485
+ preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2486
+ responsive?: boolean | undefined;
2487
+ restore?: boolean | undefined;
2488
+ rotatable?: boolean | undefined;
2489
+ scalable?: boolean | undefined;
2490
+ toggleDragModeOnDblclick?: boolean | undefined;
2491
+ viewMode?: Cropper_2.ViewMode | undefined;
2492
+ wheelZoomRatio?: number | undefined;
2493
+ zoomOnTouch?: boolean | undefined;
2494
+ zoomOnWheel?: boolean | undefined;
2495
+ zoomable?: boolean | undefined;
2496
+ minCanvasWidth?: number | undefined;
2497
+ minCanvasHeight?: number | undefined;
2498
+ minContainerWidth?: number | undefined;
2499
+ minContainerHeight?: number | undefined;
2500
+ minCropBoxWidth?: number | undefined;
2501
+ minCropBoxHeight?: number | undefined;
2502
+ ready?: ((event: Cropper_2.ReadyEvent<T>) => void) | null | undefined;
2503
+ crop?: ((event: Cropper_2.CropEvent<T>) => void) | null | undefined;
2504
+ cropend?: ((event: Cropper_2.CropEndEvent<T>) => void) | null | undefined;
2505
+ cropmove?: ((event: Cropper_2.CropMoveEvent<T>) => void) | null | undefined;
2506
+ cropstart?: ((event: Cropper_2.CropStartEvent<T>) => void) | null | undefined;
2507
+ zoom?: ((event: Cropper_2.ZoomEvent<T>) => void) | null | undefined;
2508
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2509
+ expose(exposed: ShallowUnwrapRef<{
2510
+ enable: () => void;
2511
+ disable: () => void;
2512
+ destroy: () => void;
2513
+ getImageData: () => Cropper_2.ImageData | undefined;
2514
+ getData: () => Cropper_2.Data | undefined;
2515
+ setData: (data: Cropper_2.SetDataOptions) => Cropper_2 | undefined;
2516
+ }>): void;
2517
+ attrs: any;
2518
+ slots: {};
2519
+ emit: any;
2520
+ }>) => VNode<RendererNode, RendererElement, {
2521
+ [key: string]: any;
2522
+ }> & {
2523
+ __ctx?: {
2524
+ props: {
2525
+ modal?: boolean | undefined;
2526
+ center?: boolean | undefined;
2527
+ data?: Cropper_2.SetDataOptions | null | undefined;
2528
+ src?: string | undefined;
2529
+ alt?: string | undefined;
2530
+ background?: boolean | undefined;
2531
+ aspectRatio?: number | undefined;
2532
+ containerStyle?: {
2533
+ [key: string]: string;
2534
+ } | undefined;
2535
+ imgStyle?: {
2536
+ [key: string]: string;
2537
+ } | undefined;
2538
+ autoCrop?: boolean | undefined;
2539
+ autoCropArea?: number | undefined;
2540
+ checkCrossOrigin?: boolean | undefined;
2541
+ checkOrientation?: boolean | undefined;
2542
+ cropBoxMovable?: boolean | undefined;
2543
+ cropBoxResizable?: boolean | undefined;
2544
+ dragMode?: Cropper_2.DragMode | undefined;
2545
+ guides?: boolean | undefined;
2546
+ highlight?: boolean | undefined;
2547
+ initialAspectRatio?: number | undefined;
2548
+ movable?: boolean | undefined;
2549
+ preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2550
+ responsive?: boolean | undefined;
2551
+ restore?: boolean | undefined;
2552
+ rotatable?: boolean | undefined;
2553
+ scalable?: boolean | undefined;
2554
+ toggleDragModeOnDblclick?: boolean | undefined;
2555
+ viewMode?: Cropper_2.ViewMode | undefined;
2556
+ wheelZoomRatio?: number | undefined;
2557
+ zoomOnTouch?: boolean | undefined;
2558
+ zoomOnWheel?: boolean | undefined;
2559
+ zoomable?: boolean | undefined;
2560
+ minCanvasWidth?: number | undefined;
2561
+ minCanvasHeight?: number | undefined;
2562
+ minContainerWidth?: number | undefined;
2563
+ minContainerHeight?: number | undefined;
2564
+ minCropBoxWidth?: number | undefined;
2565
+ minCropBoxHeight?: number | undefined;
2566
+ ready?: ((event: Cropper_2.ReadyEvent<T>) => void) | null | undefined;
2567
+ crop?: ((event: Cropper_2.CropEvent<T>) => void) | null | undefined;
2568
+ cropend?: ((event: Cropper_2.CropEndEvent<T>) => void) | null | undefined;
2569
+ cropmove?: ((event: Cropper_2.CropMoveEvent<T>) => void) | null | undefined;
2570
+ cropstart?: ((event: Cropper_2.CropStartEvent<T>) => void) | null | undefined;
2571
+ zoom?: ((event: Cropper_2.ZoomEvent<T>) => void) | null | undefined;
2572
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2573
+ expose(exposed: ShallowUnwrapRef<{
2574
+ enable: () => void;
2575
+ disable: () => void;
2576
+ destroy: () => void;
2577
+ getImageData: () => Cropper_2.ImageData | undefined;
2578
+ getData: () => Cropper_2.Data | undefined;
2579
+ setData: (data: Cropper_2.SetDataOptions) => Cropper_2 | undefined;
2580
+ }>): void;
2581
+ attrs: any;
2582
+ slots: {};
2583
+ emit: any;
2584
+ } | undefined;
2585
+ };
2586
+
2309
2587
  export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
2310
2588
  currentUser: AnzuUserMinimal | undefined | null;
2311
2589
  settingsRouteName: string;
@@ -3376,6 +3654,259 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_35<__VLS_Typ
3376
3654
  secondaryText: null | string;
3377
3655
  }, {}>;
3378
3656
 
3657
+ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
3658
+ modelValue: IntegerIdNullable;
3659
+ queueKey: UploadQueueKey;
3660
+ licenceId: IntegerId;
3661
+ extSystem: IntegerId;
3662
+ image?: ImageAware | undefined;
3663
+ configName?: string | undefined;
3664
+ label?: string | undefined;
3665
+ readonly?: boolean | undefined;
3666
+ dataCy?: string | undefined;
3667
+ expandOptions?: boolean | undefined;
3668
+ disableOnClickMenu?: boolean | undefined;
3669
+ width?: number | undefined;
3670
+ callDeleteApiOnRemove?: boolean | undefined;
3671
+ }>, {
3672
+ configName: string;
3673
+ label: undefined;
3674
+ image: undefined;
3675
+ readonly: boolean;
3676
+ lockable: boolean;
3677
+ lockedById: undefined;
3678
+ dataCy: undefined;
3679
+ expandOptions: boolean;
3680
+ disableOnClickMenu: boolean;
3681
+ width: undefined;
3682
+ callDeleteApiOnRemove: boolean;
3683
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3684
+ "update:modelValue": (data: IntegerIdNullable) => void;
3685
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
3686
+ modelValue: IntegerIdNullable;
3687
+ queueKey: UploadQueueKey;
3688
+ licenceId: IntegerId;
3689
+ extSystem: IntegerId;
3690
+ image?: ImageAware | undefined;
3691
+ configName?: string | undefined;
3692
+ label?: string | undefined;
3693
+ readonly?: boolean | undefined;
3694
+ dataCy?: string | undefined;
3695
+ expandOptions?: boolean | undefined;
3696
+ disableOnClickMenu?: boolean | undefined;
3697
+ width?: number | undefined;
3698
+ callDeleteApiOnRemove?: boolean | undefined;
3699
+ }>, {
3700
+ configName: string;
3701
+ label: undefined;
3702
+ image: undefined;
3703
+ readonly: boolean;
3704
+ lockable: boolean;
3705
+ lockedById: undefined;
3706
+ dataCy: undefined;
3707
+ expandOptions: boolean;
3708
+ disableOnClickMenu: boolean;
3709
+ width: undefined;
3710
+ callDeleteApiOnRemove: boolean;
3711
+ }>>> & {
3712
+ "onUpdate:modelValue"?: ((data: IntegerIdNullable) => any) | undefined;
3713
+ }, {
3714
+ width: number;
3715
+ image: ImageAware;
3716
+ label: string;
3717
+ dataCy: string;
3718
+ readonly: boolean;
3719
+ configName: string;
3720
+ expandOptions: boolean;
3721
+ disableOnClickMenu: boolean;
3722
+ callDeleteApiOnRemove: boolean;
3723
+ }, {}>;
3724
+
3725
+ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
3726
+ modelValue: IntegerId[];
3727
+ queueKey: UploadQueueKey;
3728
+ licenceId: IntegerId;
3729
+ extSystem: IntegerId;
3730
+ configName?: string | undefined;
3731
+ label?: string | undefined;
3732
+ readonly?: boolean | undefined;
3733
+ dataCy?: string | undefined;
3734
+ width?: number | undefined;
3735
+ callDeleteApiOnRemove?: boolean | undefined;
3736
+ }>, {
3737
+ configName: string;
3738
+ label: undefined;
3739
+ image: undefined;
3740
+ readonly: boolean;
3741
+ lockable: boolean;
3742
+ lockedById: undefined;
3743
+ dataCy: undefined;
3744
+ expandOptions: boolean;
3745
+ width: undefined;
3746
+ callDeleteApiOnRemove: boolean;
3747
+ }>, {
3748
+ saveImages: () => Promise<boolean>;
3749
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3750
+ "update:modelValue": (data: number[]) => void;
3751
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
3752
+ modelValue: IntegerId[];
3753
+ queueKey: UploadQueueKey;
3754
+ licenceId: IntegerId;
3755
+ extSystem: IntegerId;
3756
+ configName?: string | undefined;
3757
+ label?: string | undefined;
3758
+ readonly?: boolean | undefined;
3759
+ dataCy?: string | undefined;
3760
+ width?: number | undefined;
3761
+ callDeleteApiOnRemove?: boolean | undefined;
3762
+ }>, {
3763
+ configName: string;
3764
+ label: undefined;
3765
+ image: undefined;
3766
+ readonly: boolean;
3767
+ lockable: boolean;
3768
+ lockedById: undefined;
3769
+ dataCy: undefined;
3770
+ expandOptions: boolean;
3771
+ width: undefined;
3772
+ callDeleteApiOnRemove: boolean;
3773
+ }>>> & {
3774
+ "onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
3775
+ }, {
3776
+ width: number;
3777
+ label: string;
3778
+ dataCy: string;
3779
+ readonly: boolean;
3780
+ configName: string;
3781
+ callDeleteApiOnRemove: boolean;
3782
+ }, {}>;
3783
+
3784
+ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
3785
+ modelValue: IntegerId[];
3786
+ images?: ImageAware[] | undefined;
3787
+ configName?: string | undefined;
3788
+ label?: string | undefined;
3789
+ width?: number | undefined;
3790
+ disableAspectRatio?: boolean | undefined;
3791
+ aspectRatio?: string | number | undefined;
3792
+ showDescription?: boolean | undefined;
3793
+ showSource?: boolean | undefined;
3794
+ }>, {
3795
+ images: () => never[];
3796
+ configName: string;
3797
+ label: undefined;
3798
+ image: undefined;
3799
+ width: undefined;
3800
+ disableAspectRatio: boolean;
3801
+ aspectRatio: number;
3802
+ showDescription: boolean;
3803
+ showSource: boolean;
3804
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
3805
+ modelValue: IntegerId[];
3806
+ images?: ImageAware[] | undefined;
3807
+ configName?: string | undefined;
3808
+ label?: string | undefined;
3809
+ width?: number | undefined;
3810
+ disableAspectRatio?: boolean | undefined;
3811
+ aspectRatio?: string | number | undefined;
3812
+ showDescription?: boolean | undefined;
3813
+ showSource?: boolean | undefined;
3814
+ }>, {
3815
+ images: () => never[];
3816
+ configName: string;
3817
+ label: undefined;
3818
+ image: undefined;
3819
+ width: undefined;
3820
+ disableAspectRatio: boolean;
3821
+ aspectRatio: number;
3822
+ showDescription: boolean;
3823
+ showSource: boolean;
3824
+ }>>>, {
3825
+ width: number;
3826
+ label: string;
3827
+ configName: string;
3828
+ disableAspectRatio: boolean;
3829
+ aspectRatio: number | string;
3830
+ showDescription: boolean;
3831
+ showSource: boolean;
3832
+ images: ImageAware[];
3833
+ }, {}>;
3834
+
3835
+ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3836
+ modelValue: IntegerIdNullable | undefined;
3837
+ image?: ImageAware | ImageCreateUpdateAware | null | undefined;
3838
+ configName?: string | undefined;
3839
+ label?: string | undefined;
3840
+ width?: number | undefined;
3841
+ disableAspectRatio?: boolean | undefined;
3842
+ aspectRatio?: string | number | undefined;
3843
+ showDescription?: boolean | undefined;
3844
+ showSource?: boolean | undefined;
3845
+ }>, {
3846
+ configName: string;
3847
+ label: undefined;
3848
+ image: undefined;
3849
+ width: undefined;
3850
+ disableAspectRatio: boolean;
3851
+ aspectRatio: number;
3852
+ showDescription: boolean;
3853
+ showSource: boolean;
3854
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3855
+ modelValue: IntegerIdNullable | undefined;
3856
+ image?: ImageAware | ImageCreateUpdateAware | null | undefined;
3857
+ configName?: string | undefined;
3858
+ label?: string | undefined;
3859
+ width?: number | undefined;
3860
+ disableAspectRatio?: boolean | undefined;
3861
+ aspectRatio?: string | number | undefined;
3862
+ showDescription?: boolean | undefined;
3863
+ showSource?: boolean | undefined;
3864
+ }>, {
3865
+ configName: string;
3866
+ label: undefined;
3867
+ image: undefined;
3868
+ width: undefined;
3869
+ disableAspectRatio: boolean;
3870
+ aspectRatio: number;
3871
+ showDescription: boolean;
3872
+ showSource: boolean;
3873
+ }>>>, {
3874
+ width: number;
3875
+ image: ImageAware | ImageCreateUpdateAware | null;
3876
+ label: string;
3877
+ configName: string;
3878
+ disableAspectRatio: boolean;
3879
+ aspectRatio: string | number;
3880
+ showDescription: boolean;
3881
+ showSource: boolean;
3882
+ }, {}>, {
3883
+ append?(_: {
3884
+ image: {
3885
+ id: number;
3886
+ texts: {
3887
+ description: string;
3888
+ source: string;
3889
+ };
3890
+ dam: {
3891
+ damId: string;
3892
+ regionPosition: number;
3893
+ };
3894
+ position: number;
3895
+ } | {
3896
+ id?: number | undefined;
3897
+ texts: {
3898
+ description: string;
3899
+ source: string;
3900
+ };
3901
+ position: number;
3902
+ dam: {
3903
+ damId: string;
3904
+ regionPosition: number;
3905
+ };
3906
+ } | null;
3907
+ }): any;
3908
+ }>;
3909
+
3379
3910
  export declare const AJobDetailCommon: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
3380
3911
  job: JobBase<`job${string}`>;
3381
3912
  loading?: boolean | undefined;
@@ -3410,7 +3941,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypeP
3410
3941
  data: any;
3411
3942
  }>, {}>>>, {}, {}>;
3412
3943
 
3413
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3944
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3414
3945
  title?: string | undefined;
3415
3946
  logoUrl?: string | undefined;
3416
3947
  loginUrl?: undefined | (() => string);
@@ -3420,7 +3951,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_63<__VLS_Typ
3420
3951
  logoUrl: undefined;
3421
3952
  loginUrl: undefined;
3422
3953
  dataCy: string;
3423
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3954
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3424
3955
  title?: string | undefined;
3425
3956
  logoUrl?: string | undefined;
3426
3957
  loginUrl?: undefined | (() => string);
@@ -3443,11 +3974,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_
3443
3974
  level: LogLevel;
3444
3975
  }>, {}>>>, {}, {}>;
3445
3976
 
3446
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
3977
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
3447
3978
  logoutUrl?: undefined | (() => string);
3448
3979
  }>, {
3449
3980
  logoutUrl: undefined;
3450
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
3981
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
3451
3982
  logoutUrl?: undefined | (() => string);
3452
3983
  }>, {
3453
3984
  logoutUrl: undefined;
@@ -3455,9 +3986,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_64<__VLS_Ty
3455
3986
  logoutUrl: () => string;
3456
3987
  }, {}>;
3457
3988
 
3458
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
3989
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
3459
3990
  returnRouteName: string;
3460
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
3991
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
3461
3992
  returnRouteName: string;
3462
3993
  }>, {}>>>, {}, {}>;
3463
3994
 
@@ -4319,9 +4850,9 @@ declare interface AudioAttributes {
4319
4850
  bitrate: number;
4320
4851
  }
4321
4852
 
4322
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
4853
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
4323
4854
  returnRouteName: string;
4324
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
4855
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
4325
4856
  returnRouteName: string;
4326
4857
  }>, {}>>>, {}, {}>;
4327
4858
 
@@ -4457,6 +4988,8 @@ export declare interface CreatedByAware {
4457
4988
  createdBy: IntegerIdNullable;
4458
4989
  }
4459
4990
 
4991
+ export declare const cropToRegion: (cropper: Cropper_2, regionOfInterest: RegionOfInterest, originalImageWidth: number, originalImageHeight: number) => RegionOfInterest;
4992
+
4460
4993
  export declare type CurrentUserType = DeepReadonly<Ref<UnwrapRef<AnzuUser | undefined>>>;
4461
4994
 
4462
4995
  export declare type CustomAclResolver<T extends AclValue = AclValue> = undefined | {
@@ -4515,6 +5048,26 @@ export declare enum DamAssetType {
4515
5048
  Default = "image"
4516
5049
  }
4517
5050
 
5051
+ export declare interface DamAuthor extends DamAuthorMinimal, AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
5052
+ extSystem: IntegerId;
5053
+ flags: Flags_3;
5054
+ type: DamAuthorType;
5055
+ }
5056
+
5057
+ export declare interface DamAuthorMinimal {
5058
+ id: DocId;
5059
+ name: string;
5060
+ identifier: string;
5061
+ }
5062
+
5063
+ export declare enum DamAuthorType {
5064
+ None = "none",
5065
+ Internal = "internal",
5066
+ External = "external",
5067
+ Agency = "agency",
5068
+ Default = "none"
5069
+ }
5070
+
4518
5071
  export declare interface DamDistributionConfig {
4519
5072
  distributionServices: Array<DamDistributionServiceName>;
4520
5073
  distributionRequirements: Record<DamDistributionServiceName, DamDistributionRequirementsConfig>;
@@ -4565,6 +5118,13 @@ export declare type DamExternalProviderAssetConfig = Record<DamExternalProviderA
4565
5118
 
4566
5119
  export declare type DamExternalProviderAssetName = string;
4567
5120
 
5121
+ export declare interface DamExtSystem extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
5122
+ id: IntegerId;
5123
+ name: string;
5124
+ slug: string;
5125
+ adminUsers: IntegerId[];
5126
+ }
5127
+
4568
5128
  export declare interface DamExtSystemAssetTypeExifMetadata {
4569
5129
  enabled: boolean;
4570
5130
  required: boolean;
@@ -4590,8 +5150,23 @@ export declare interface DamExtSystemConfigItem {
4590
5150
  slots: string[];
4591
5151
  }
4592
5152
 
5153
+ export declare interface DamExtSystemMinimal extends Pick<DamExtSystem, 'id' | 'name'> {
5154
+ }
5155
+
4593
5156
  export declare const damFileTypeFix: (file: File | null | undefined) => string;
4594
5157
 
5158
+ export declare interface DamKeyword extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
5159
+ id: DocId;
5160
+ name: string;
5161
+ extSystem: IntegerId;
5162
+ flags: Flags_2;
5163
+ }
5164
+
5165
+ export declare interface DamKeywordMinimal {
5166
+ id: DocId;
5167
+ name: string;
5168
+ }
5169
+
4595
5170
  declare type DamNotification = DamNotificationAssetFileProcessed | DamNotificationAssetFileFailed | DamNotificationAssetFileDuplicate | DamNotificationAssetFileUploaded | DamNotificationAssetFileDeleted | DamNotificationAssetMetadataProcessed | DamNotificationAssetDeleted | DamNotificationDistributionDistributing | DamNotificationDistributionRemoteProcessing | DamNotificationDistributionDistributed | DamNotificationDistributionFailed | DamNotificationDistributionAuthorized | DamNotificationUserUpdated;
4596
5171
 
4597
5172
  declare interface DamNotificationAssetData {
@@ -4845,6 +5420,14 @@ declare interface Flags {
4845
5420
  visible: boolean;
4846
5421
  }
4847
5422
 
5423
+ declare interface Flags_2 {
5424
+ reviewed: boolean;
5425
+ }
5426
+
5427
+ declare interface Flags_3 {
5428
+ reviewed: boolean;
5429
+ }
5430
+
4848
5431
  export declare const generateDatatableMinMaxSelectStrategy: (min: number, max: number) => DataTableSelectStrategy;
4849
5432
 
4850
5433
  export declare const generateUUIDv1: () => any;
@@ -5220,31 +5803,193 @@ export declare const i18n: I18n<{
5220
5803
  unableToAdd: string;
5221
5804
  };
5222
5805
  };
5223
- };
5224
- $vuetify: {
5225
- badge: string;
5226
- open: string;
5227
- close: string;
5228
- dataIterator: {
5229
- noResultsText: string;
5230
- loadingText: string;
5231
- };
5232
- dataTable: {
5233
- itemsPerPageText: string;
5234
- ariaLabel: {
5235
- sortDescending: string;
5236
- sortAscending: string;
5237
- sortNone: string;
5238
- activateNone: string;
5239
- activateDescending: string;
5240
- activateAscending: string;
5806
+ damImage: {
5807
+ image: {
5808
+ model: {
5809
+ texts: {
5810
+ description: string;
5811
+ source: string;
5812
+ };
5813
+ };
5814
+ meta: {
5815
+ edit: string;
5816
+ };
5817
+ button: {
5818
+ options: string;
5819
+ editAsset: string;
5820
+ upload: string;
5821
+ addFromDam: string;
5822
+ replaceFromDam: string;
5823
+ removeImage: string;
5824
+ };
5241
5825
  };
5242
- sortBy: string;
5243
- };
5244
- dataFooter: {
5245
- itemsPerPageText: string;
5246
- itemsPerPageAll: string;
5247
- nextPage: string;
5826
+ queueItem: {
5827
+ edit: string;
5828
+ displayTitle: string;
5829
+ error: string;
5830
+ copyAssetId: string;
5831
+ };
5832
+ asset: {
5833
+ model: {
5834
+ authors: string;
5835
+ keywords: string;
5836
+ };
5837
+ assetType: {
5838
+ image: string;
5839
+ audio: string;
5840
+ video: string;
5841
+ document: string;
5842
+ };
5843
+ detail: {
5844
+ toggleInfo: string;
5845
+ metadataToggle: {
5846
+ show: string;
5847
+ hide: string;
5848
+ };
5849
+ tabs: {
5850
+ info: string;
5851
+ roi: string;
5852
+ };
5853
+ info: {
5854
+ status: {
5855
+ duplicate: string;
5856
+ draft: string;
5857
+ deleting: string;
5858
+ failed: string;
5859
+ };
5860
+ metadata: string;
5861
+ file: string;
5862
+ field: {
5863
+ id: string;
5864
+ mainFileId: string;
5865
+ type: string;
5866
+ mimeType: string;
5867
+ size: string;
5868
+ dominantColor: string;
5869
+ width: string;
5870
+ height: string;
5871
+ ratio: string;
5872
+ animated: string;
5873
+ };
5874
+ };
5875
+ roi: {
5876
+ title: string;
5877
+ description: string;
5878
+ refresh: string;
5879
+ rotate: {
5880
+ rotateMainFileImage: string;
5881
+ rotateClockwise: string;
5882
+ rotateCounterclockwise: string;
5883
+ };
5884
+ };
5885
+ };
5886
+ massOperations: {
5887
+ title: string;
5888
+ description: string;
5889
+ fillOneEmpty: string;
5890
+ fillAllEmpty: string;
5891
+ replaceOne: string;
5892
+ replaceAll: string;
5893
+ clearForm: string;
5894
+ general: string;
5895
+ };
5896
+ metaIcons: {
5897
+ low: string;
5898
+ slots: string;
5899
+ rss: string;
5900
+ fullHd: string;
5901
+ "2k": string;
5902
+ qhd: string;
5903
+ "4k": string;
5904
+ "8k": string;
5905
+ };
5906
+ assetFileFailReason: {
5907
+ none: string;
5908
+ unknown: string;
5909
+ invalidChecksum: string;
5910
+ invalidMimeType: string;
5911
+ downloadFailed: string;
5912
+ invalidSize: string;
5913
+ };
5914
+ };
5915
+ upload: {
5916
+ waiting: string;
5917
+ processing: string;
5918
+ uploading: string;
5919
+ done: string;
5920
+ stop: string;
5921
+ add: string;
5922
+ save: string;
5923
+ saveAndApply: string;
5924
+ title: string;
5925
+ titleDone: string;
5926
+ stopConfirmQuestion: string;
5927
+ };
5928
+ keyword: {
5929
+ model: {
5930
+ name: string;
5931
+ };
5932
+ button: {
5933
+ add: string;
5934
+ };
5935
+ meta: {
5936
+ create: string;
5937
+ };
5938
+ };
5939
+ author: {
5940
+ model: {
5941
+ name: string;
5942
+ identifier: string;
5943
+ type: string;
5944
+ };
5945
+ authorType: {
5946
+ none: string;
5947
+ internal: string;
5948
+ external: string;
5949
+ agency: string;
5950
+ };
5951
+ button: {
5952
+ add: string;
5953
+ };
5954
+ meta: {
5955
+ create: string;
5956
+ };
5957
+ conflicts: string;
5958
+ };
5959
+ uploadErrors: {
5960
+ unknownError: string;
5961
+ systemError: string;
5962
+ size: string;
5963
+ offset: string;
5964
+ mimeType: string;
5965
+ };
5966
+ notificationsNotConnected: string;
5967
+ };
5968
+ };
5969
+ $vuetify: {
5970
+ badge: string;
5971
+ open: string;
5972
+ close: string;
5973
+ dataIterator: {
5974
+ noResultsText: string;
5975
+ loadingText: string;
5976
+ };
5977
+ dataTable: {
5978
+ itemsPerPageText: string;
5979
+ ariaLabel: {
5980
+ sortDescending: string;
5981
+ sortAscending: string;
5982
+ sortNone: string;
5983
+ activateNone: string;
5984
+ activateDescending: string;
5985
+ activateAscending: string;
5986
+ };
5987
+ sortBy: string;
5988
+ };
5989
+ dataFooter: {
5990
+ itemsPerPageText: string;
5991
+ itemsPerPageAll: string;
5992
+ nextPage: string;
5248
5993
  prevPage: string;
5249
5994
  firstPage: string;
5250
5995
  lastPage: string;
@@ -5348,7 +6093,7 @@ declare interface ImageAttributes {
5348
6093
  animated: boolean;
5349
6094
  }
5350
6095
 
5351
- declare interface ImageAware {
6096
+ export declare interface ImageAware {
5352
6097
  id: IntegerId;
5353
6098
  texts: {
5354
6099
  description: string;
@@ -5361,6 +6106,14 @@ declare interface ImageAware {
5361
6106
  position: number;
5362
6107
  }
5363
6108
 
6109
+ export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
6110
+ id?: IntegerId;
6111
+ }
6112
+
6113
+ export declare interface ImageCreateUpdateAwareKeyed extends ImageCreateUpdateAware {
6114
+ key: string;
6115
+ }
6116
+
5364
6117
  export declare type Immutable<T> = {
5365
6118
  readonly [K in keyof T]: Immutable<T[K]>;
5366
6119
  };
@@ -5853,6 +6606,168 @@ export declare const messagesCs: {
5853
6606
  unableToAdd: string;
5854
6607
  };
5855
6608
  };
6609
+ damImage: {
6610
+ image: {
6611
+ model: {
6612
+ texts: {
6613
+ description: string;
6614
+ source: string;
6615
+ };
6616
+ };
6617
+ meta: {
6618
+ edit: string;
6619
+ };
6620
+ button: {
6621
+ options: string;
6622
+ editAsset: string;
6623
+ upload: string;
6624
+ addFromDam: string;
6625
+ replaceFromDam: string;
6626
+ removeImage: string;
6627
+ };
6628
+ };
6629
+ queueItem: {
6630
+ edit: string;
6631
+ displayTitle: string;
6632
+ error: string;
6633
+ copyAssetId: string;
6634
+ };
6635
+ asset: {
6636
+ model: {
6637
+ authors: string;
6638
+ keywords: string;
6639
+ };
6640
+ assetType: {
6641
+ image: string;
6642
+ audio: string;
6643
+ video: string;
6644
+ document: string;
6645
+ };
6646
+ detail: {
6647
+ toggleInfo: string;
6648
+ metadataToggle: {
6649
+ show: string;
6650
+ hide: string;
6651
+ };
6652
+ tabs: {
6653
+ info: string;
6654
+ roi: string;
6655
+ };
6656
+ info: {
6657
+ status: {
6658
+ duplicate: string;
6659
+ draft: string;
6660
+ deleting: string;
6661
+ failed: string;
6662
+ };
6663
+ metadata: string;
6664
+ file: string;
6665
+ field: {
6666
+ id: string;
6667
+ mainFileId: string;
6668
+ type: string;
6669
+ mimeType: string;
6670
+ size: string;
6671
+ dominantColor: string;
6672
+ width: string;
6673
+ height: string;
6674
+ ratio: string;
6675
+ animated: string;
6676
+ };
6677
+ };
6678
+ roi: {
6679
+ title: string;
6680
+ description: string;
6681
+ refresh: string;
6682
+ rotate: {
6683
+ rotateMainFileImage: string;
6684
+ rotateClockwise: string;
6685
+ rotateCounterclockwise: string;
6686
+ };
6687
+ };
6688
+ };
6689
+ massOperations: {
6690
+ title: string;
6691
+ description: string;
6692
+ fillOneEmpty: string;
6693
+ fillAllEmpty: string;
6694
+ replaceOne: string;
6695
+ replaceAll: string;
6696
+ clearForm: string;
6697
+ general: string;
6698
+ };
6699
+ metaIcons: {
6700
+ low: string;
6701
+ slots: string;
6702
+ rss: string;
6703
+ fullHd: string;
6704
+ "2k": string;
6705
+ qhd: string;
6706
+ "4k": string;
6707
+ "8k": string;
6708
+ };
6709
+ assetFileFailReason: {
6710
+ none: string;
6711
+ unknown: string;
6712
+ invalidChecksum: string;
6713
+ invalidMimeType: string;
6714
+ downloadFailed: string;
6715
+ invalidSize: string;
6716
+ };
6717
+ };
6718
+ upload: {
6719
+ waiting: string;
6720
+ processing: string;
6721
+ uploading: string;
6722
+ done: string;
6723
+ stop: string;
6724
+ add: string;
6725
+ save: string;
6726
+ saveAndApply: string;
6727
+ title: string;
6728
+ titleDone: string;
6729
+ stopConfirmQuestion: string;
6730
+ };
6731
+ keyword: {
6732
+ model: {
6733
+ name: string;
6734
+ };
6735
+ button: {
6736
+ add: string;
6737
+ };
6738
+ meta: {
6739
+ create: string;
6740
+ };
6741
+ };
6742
+ author: {
6743
+ model: {
6744
+ name: string;
6745
+ identifier: string;
6746
+ type: string;
6747
+ };
6748
+ authorType: {
6749
+ none: string;
6750
+ internal: string;
6751
+ external: string;
6752
+ agency: string;
6753
+ };
6754
+ button: {
6755
+ add: string;
6756
+ };
6757
+ meta: {
6758
+ create: string;
6759
+ };
6760
+ conflicts: string;
6761
+ };
6762
+ uploadErrors: {
6763
+ unknownError: string;
6764
+ systemError: string;
6765
+ size: string;
6766
+ offset: string;
6767
+ mimeType: string;
6768
+ };
6769
+ notificationsNotConnected: string;
6770
+ };
5856
6771
  };
5857
6772
  $vuetify: {
5858
6773
  badge: string;
@@ -6303,6 +7218,168 @@ export declare const messagesEn: {
6303
7218
  unableToAdd: string;
6304
7219
  };
6305
7220
  };
7221
+ damImage: {
7222
+ image: {
7223
+ model: {
7224
+ texts: {
7225
+ description: string;
7226
+ source: string;
7227
+ };
7228
+ };
7229
+ meta: {
7230
+ edit: string;
7231
+ };
7232
+ button: {
7233
+ options: string;
7234
+ editAsset: string;
7235
+ upload: string;
7236
+ addFromDam: string;
7237
+ replaceFromDam: string;
7238
+ removeImage: string;
7239
+ };
7240
+ };
7241
+ queueItem: {
7242
+ edit: string;
7243
+ displayTitle: string;
7244
+ error: string;
7245
+ copyAssetId: string;
7246
+ };
7247
+ asset: {
7248
+ model: {
7249
+ authors: string;
7250
+ keywords: string;
7251
+ };
7252
+ assetType: {
7253
+ image: string;
7254
+ audio: string;
7255
+ video: string;
7256
+ document: string;
7257
+ };
7258
+ detail: {
7259
+ toggleInfo: string;
7260
+ metadataToggle: {
7261
+ show: string;
7262
+ hide: string;
7263
+ };
7264
+ tabs: {
7265
+ info: string;
7266
+ roi: string;
7267
+ };
7268
+ info: {
7269
+ status: {
7270
+ duplicate: string;
7271
+ draft: string;
7272
+ deleting: string;
7273
+ failed: string;
7274
+ };
7275
+ metadata: string;
7276
+ file: string;
7277
+ field: {
7278
+ id: string;
7279
+ mainFileId: string;
7280
+ type: string;
7281
+ mimeType: string;
7282
+ size: string;
7283
+ dominantColor: string;
7284
+ width: string;
7285
+ height: string;
7286
+ ratio: string;
7287
+ animated: string;
7288
+ };
7289
+ };
7290
+ roi: {
7291
+ title: string;
7292
+ description: string;
7293
+ refresh: string;
7294
+ rotate: {
7295
+ rotateMainFileImage: string;
7296
+ rotateClockwise: string;
7297
+ rotateCounterclockwise: string;
7298
+ };
7299
+ };
7300
+ };
7301
+ massOperations: {
7302
+ title: string;
7303
+ description: string;
7304
+ fillOneEmpty: string;
7305
+ fillAllEmpty: string;
7306
+ replaceOne: string;
7307
+ replaceAll: string;
7308
+ clearForm: string;
7309
+ general: string;
7310
+ };
7311
+ metaIcons: {
7312
+ low: string;
7313
+ slots: string;
7314
+ rss: string;
7315
+ fullHd: string;
7316
+ "2k": string;
7317
+ qhd: string;
7318
+ "4k": string;
7319
+ "8k": string;
7320
+ };
7321
+ assetFileFailReason: {
7322
+ none: string;
7323
+ unknown: string;
7324
+ invalidChecksum: string;
7325
+ invalidMimeType: string;
7326
+ downloadFailed: string;
7327
+ invalidSize: string;
7328
+ };
7329
+ };
7330
+ upload: {
7331
+ waiting: string;
7332
+ processing: string;
7333
+ uploading: string;
7334
+ done: string;
7335
+ stop: string;
7336
+ add: string;
7337
+ save: string;
7338
+ saveAndApply: string;
7339
+ title: string;
7340
+ titleDone: string;
7341
+ stopConfirmQuestion: string;
7342
+ };
7343
+ keyword: {
7344
+ model: {
7345
+ name: string;
7346
+ };
7347
+ button: {
7348
+ add: string;
7349
+ };
7350
+ meta: {
7351
+ create: string;
7352
+ };
7353
+ };
7354
+ author: {
7355
+ model: {
7356
+ name: string;
7357
+ identifier: string;
7358
+ type: string;
7359
+ };
7360
+ authorType: {
7361
+ none: string;
7362
+ internal: string;
7363
+ external: string;
7364
+ agency: string;
7365
+ };
7366
+ button: {
7367
+ add: string;
7368
+ };
7369
+ meta: {
7370
+ create: string;
7371
+ };
7372
+ conflicts: string;
7373
+ };
7374
+ uploadErrors: {
7375
+ unknownError: string;
7376
+ systemError: string;
7377
+ size: string;
7378
+ offset: string;
7379
+ mimeType: string;
7380
+ };
7381
+ notificationsNotConnected: string;
7382
+ };
6306
7383
  };
6307
7384
  $vuetify: {
6308
7385
  badge: string;
@@ -7164,6 +8241,30 @@ declare type Prev = [never, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ...0[]];
7164
8241
 
7165
8242
  export declare type RecordWasType = 'created' | 'deleted' | 'updated' | 'published' | 'unpublished' | 'enabled' | 'disabled';
7166
8243
 
8244
+ declare interface RegionOfInterest extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
8245
+ id: DocId;
8246
+ title: string;
8247
+ position: number;
8248
+ image: DocId;
8249
+ pointX: number;
8250
+ pointY: number;
8251
+ percentageWidth: number;
8252
+ percentageHeight: number;
8253
+ links: {
8254
+ image_roi_example: AssetFileLink[];
8255
+ };
8256
+ }
8257
+
8258
+ export declare const regionToCrop: (cropper: Cropper_2, regionOfInterest: RegionOfInterest, originalImageWidth: number, originalImageHeight: number) => {
8259
+ x: number;
8260
+ y: number;
8261
+ width: number;
8262
+ height: number;
8263
+ rotate: number;
8264
+ scaleX: number;
8265
+ scaleY: number;
8266
+ };
8267
+
7167
8268
  export declare interface ResourceNameSystemAware {
7168
8269
  _resourceName: string;
7169
8270
  _system: string;
@@ -7343,6 +8444,8 @@ export declare enum UploadQueueItemType {
7343
8444
  SlotFile = "slotFile"
7344
8445
  }
7345
8446
 
8447
+ declare type UploadQueueKey = string;
8448
+
7346
8449
  export declare type UrlParams = {
7347
8450
  [key: string]: number | string;
7348
8451
  };
@@ -7544,6 +8647,25 @@ export declare function useDamAcceptTypeAndSizeHelper(assetType: DamAssetType |
7544
8647
  uploadAccept: ComputedRef<string>;
7545
8648
  };
7546
8649
 
8650
+ export declare function useDamAuthorFactory(): {
8651
+ createDefault: (extSystemId: number, reviewed?: boolean) => DamAuthor;
8652
+ };
8653
+
8654
+ export declare function useDamAuthorType(): {
8655
+ authorTypeOptions: Ref<{
8656
+ value: DamAuthorType;
8657
+ title: string;
8658
+ color?: string | undefined;
8659
+ active?: false | undefined;
8660
+ }[]>;
8661
+ getAuthorTypeOption: (value: DamAuthorType) => {
8662
+ value: DamAuthorType;
8663
+ title: string;
8664
+ color?: string | undefined;
8665
+ active?: false | undefined;
8666
+ } | undefined;
8667
+ };
8668
+
7547
8669
  export declare function useDamConfigState(client?: undefined | (() => AxiosInstance)): {
7548
8670
  initialized: {
7549
8671
  damPubConfig: boolean;
@@ -7573,6 +8695,10 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
7573
8695
  loadDamConfigDistributionCustomFormElements: (distributionServiceName: DamDistributionServiceName) => Promise<unknown>;
7574
8696
  };
7575
8697
 
8698
+ export declare function useDamKeywordFactory(): {
8699
+ createDefault: (extSystemId: number, reviewed?: boolean) => DamKeyword;
8700
+ };
8701
+
7576
8702
  export declare function useDamNotifications(): {
7577
8703
  addDamNotificationListener: (callback: (event: DamNotification) => void) => Fn_2;
7578
8704
  };
@@ -7582,6 +8708,12 @@ export declare function useDamUploadChunkSize(apiTimeout?: number): {
7582
8708
  updateChunkSize: (speed: number | null) => boolean;
7583
8709
  };
7584
8710
 
8711
+ export declare function useDropzoneGlobalDragState(): {
8712
+ isDraggingFile: Ref<boolean>;
8713
+ initGlobalDragState: () => void;
8714
+ destroyGlobalDragState: () => void;
8715
+ };
8716
+
7585
8717
  export declare function useErrors(): {
7586
8718
  isAnzuFatalError: (error: any) => error is AnzuFatalError;
7587
8719
  isAnzuApiForbiddenError: (error: any) => error is AnzuApiForbiddenError;