@anzusystems/common-admin 1.47.0-beta.194 → 1.47.0-beta.196
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common-admin.d.ts +26 -3
- package/dist/common-admin.js +3773 -3720
- package/dist/common-admin.js.map +1 -1
- package/dist/labs.d.ts +8 -4
- package/dist/labs.js +168 -166
- package/dist/labs.js.map +1 -1
- package/package.json +10 -10
package/dist/common-admin.d.ts
CHANGED
|
@@ -10968,6 +10968,15 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
10968
10968
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
10969
10969
|
};
|
|
10970
10970
|
|
|
10971
|
+
declare interface ACropperjsExposed {
|
|
10972
|
+
enable: () => void;
|
|
10973
|
+
disable: () => void;
|
|
10974
|
+
destroy: () => void;
|
|
10975
|
+
getImageData: () => Cropper.ImageData;
|
|
10976
|
+
getData: () => Cropper.Data;
|
|
10977
|
+
setData: (data: Cropper.SetDataOptions) => void;
|
|
10978
|
+
}
|
|
10979
|
+
|
|
10971
10980
|
export declare const ACurrentUserDropdown: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{}>, {
|
|
10972
10981
|
dataCy: string;
|
|
10973
10982
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -12479,13 +12488,13 @@ export declare interface CreatedByAware {
|
|
|
12479
12488
|
|
|
12480
12489
|
export declare const createFieldLockStatusPayload: (type: CollabFieldLockTypeType, status: CollabFieldLockStatusType) => CollabFieldLockStatusPayload;
|
|
12481
12490
|
|
|
12482
|
-
export declare const cropToRegion: (cropper:
|
|
12491
|
+
export declare const cropToRegion: (cropper: ComponentPublicInstance<{}, ACropperjsExposed>, regionOfInterest: RegionOfInterest, originalImageWidth: number, originalImageHeight: number) => RegionOfInterest;
|
|
12483
12492
|
|
|
12484
12493
|
export declare type CurrentUserType = DeepReadonly<Ref<UnwrapRef<AnzuUser | undefined>>>;
|
|
12485
12494
|
|
|
12486
12495
|
export declare interface CustomDataAware {
|
|
12487
12496
|
customData: {
|
|
12488
|
-
[key: string]:
|
|
12497
|
+
[key: string]: CustomDataValue;
|
|
12489
12498
|
};
|
|
12490
12499
|
}
|
|
12491
12500
|
|
|
@@ -12520,6 +12529,8 @@ export declare const CustomDataFormElementTypeDefault: "string";
|
|
|
12520
12529
|
|
|
12521
12530
|
export declare type CustomDataFormElementTypeType = (typeof CustomDataFormElementType)[keyof typeof CustomDataFormElementType];
|
|
12522
12531
|
|
|
12532
|
+
export declare type CustomDataValue = boolean | string | number | string[] | number[];
|
|
12533
|
+
|
|
12523
12534
|
export declare interface DamAssetLicence extends DamAssetLicenceMinimal, AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
12524
12535
|
extSystem: IntegerIdNullable;
|
|
12525
12536
|
extId: string;
|
|
@@ -13866,6 +13877,9 @@ transferModeration: string;
|
|
|
13866
13877
|
moderator: string;
|
|
13867
13878
|
users: string;
|
|
13868
13879
|
};
|
|
13880
|
+
filter: {
|
|
13881
|
+
fulltext: string;
|
|
13882
|
+
};
|
|
13869
13883
|
};
|
|
13870
13884
|
$vuetify: {
|
|
13871
13885
|
badge: string;
|
|
@@ -14888,6 +14902,9 @@ export declare const messagesCs: {
|
|
|
14888
14902
|
moderator: string;
|
|
14889
14903
|
users: string;
|
|
14890
14904
|
};
|
|
14905
|
+
filter: {
|
|
14906
|
+
fulltext: string;
|
|
14907
|
+
};
|
|
14891
14908
|
};
|
|
14892
14909
|
$vuetify: {
|
|
14893
14910
|
badge: string;
|
|
@@ -15657,6 +15674,9 @@ export declare const messagesEn: {
|
|
|
15657
15674
|
moderator: string;
|
|
15658
15675
|
users: string;
|
|
15659
15676
|
};
|
|
15677
|
+
filter: {
|
|
15678
|
+
fulltext: string;
|
|
15679
|
+
};
|
|
15660
15680
|
};
|
|
15661
15681
|
$vuetify: {
|
|
15662
15682
|
badge: string;
|
|
@@ -16435,6 +16455,9 @@ export declare const messagesSk: {
|
|
|
16435
16455
|
moderator: string;
|
|
16436
16456
|
users: string;
|
|
16437
16457
|
};
|
|
16458
|
+
filter: {
|
|
16459
|
+
fulltext: string;
|
|
16460
|
+
};
|
|
16438
16461
|
};
|
|
16439
16462
|
$vuetify: {
|
|
16440
16463
|
badge: string;
|
|
@@ -16726,7 +16749,7 @@ declare interface RegionOfInterest extends AnzuUserAndTimeTrackingAware, Resourc
|
|
|
16726
16749
|
};
|
|
16727
16750
|
}
|
|
16728
16751
|
|
|
16729
|
-
export declare const regionToCrop: (cropper:
|
|
16752
|
+
export declare const regionToCrop: (cropper: ComponentPublicInstance<{}, ACropperjsExposed>, regionOfInterest: RegionOfInterest, originalImageWidth: number, originalImageHeight: number) => {
|
|
16730
16753
|
x: number;
|
|
16731
16754
|
y: number;
|
|
16732
16755
|
width: number;
|