@anzusystems/common-admin 0.0.38 → 0.0.39
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.es.d.ts +37 -5
- package/dist/common-admin.es.js +2351 -2332
- package/dist/common-admin.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -1387,7 +1387,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1387
1387
|
required: true;
|
|
1388
1388
|
};
|
|
1389
1389
|
fetchItemsByIds: {
|
|
1390
|
-
type: PropType<
|
|
1390
|
+
type: PropType<fetchItemsByIdsType_2>;
|
|
1391
1391
|
required: true;
|
|
1392
1392
|
};
|
|
1393
1393
|
innerFilter: {
|
|
@@ -1399,6 +1399,11 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1399
1399
|
required: false;
|
|
1400
1400
|
default: string;
|
|
1401
1401
|
};
|
|
1402
|
+
disableInitFetch: {
|
|
1403
|
+
type: PropType<boolean | undefined>;
|
|
1404
|
+
required: false;
|
|
1405
|
+
default: boolean;
|
|
1406
|
+
};
|
|
1402
1407
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1403
1408
|
modelValue: {
|
|
1404
1409
|
type: PropType<Filter<any>>;
|
|
@@ -1409,7 +1414,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1409
1414
|
required: true;
|
|
1410
1415
|
};
|
|
1411
1416
|
fetchItemsByIds: {
|
|
1412
|
-
type: PropType<
|
|
1417
|
+
type: PropType<fetchItemsByIdsType_2>;
|
|
1413
1418
|
required: true;
|
|
1414
1419
|
};
|
|
1415
1420
|
innerFilter: {
|
|
@@ -1421,10 +1426,16 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1421
1426
|
required: false;
|
|
1422
1427
|
default: string;
|
|
1423
1428
|
};
|
|
1429
|
+
disableInitFetch: {
|
|
1430
|
+
type: PropType<boolean | undefined>;
|
|
1431
|
+
required: false;
|
|
1432
|
+
default: boolean;
|
|
1433
|
+
};
|
|
1424
1434
|
}>> & {
|
|
1425
1435
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1426
1436
|
}, {
|
|
1427
1437
|
filterByField: string | undefined;
|
|
1438
|
+
disableInitFetch: boolean | undefined;
|
|
1428
1439
|
}>;
|
|
1429
1440
|
|
|
1430
1441
|
export declare const AFilterResetButton: DefineComponent<{
|
|
@@ -1472,6 +1483,11 @@ export declare const AFilterString: DefineComponent<{
|
|
|
1472
1483
|
type: PropType<Filter<any>>;
|
|
1473
1484
|
required: true;
|
|
1474
1485
|
};
|
|
1486
|
+
placeholder: {
|
|
1487
|
+
type: PropType<string | undefined>;
|
|
1488
|
+
required: false;
|
|
1489
|
+
default: undefined;
|
|
1490
|
+
};
|
|
1475
1491
|
dataCy: {
|
|
1476
1492
|
type: PropType<string | undefined>;
|
|
1477
1493
|
required: false;
|
|
@@ -1482,6 +1498,11 @@ export declare const AFilterString: DefineComponent<{
|
|
|
1482
1498
|
type: PropType<Filter<any>>;
|
|
1483
1499
|
required: true;
|
|
1484
1500
|
};
|
|
1501
|
+
placeholder: {
|
|
1502
|
+
type: PropType<string | undefined>;
|
|
1503
|
+
required: false;
|
|
1504
|
+
default: undefined;
|
|
1505
|
+
};
|
|
1485
1506
|
dataCy: {
|
|
1486
1507
|
type: PropType<string | undefined>;
|
|
1487
1508
|
required: false;
|
|
@@ -1491,6 +1512,7 @@ export declare const AFilterString: DefineComponent<{
|
|
|
1491
1512
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1492
1513
|
}, {
|
|
1493
1514
|
dataCy: string | undefined;
|
|
1515
|
+
placeholder: string | undefined;
|
|
1494
1516
|
}>;
|
|
1495
1517
|
|
|
1496
1518
|
export declare const AFilterSubmitButton: DefineComponent<{
|
|
@@ -3469,10 +3491,10 @@ export declare type EnableDisable = 'enable' | 'disable';
|
|
|
3469
3491
|
|
|
3470
3492
|
export declare const eventClickBlur: (event?: Event) => void;
|
|
3471
3493
|
|
|
3472
|
-
declare type FetchItemsByIdsType = ((ids: number[]) => Promise<ValueObjectOption<number>[]>) | ((ids: string[]) => Promise<ValueObjectOption<string>[]>);
|
|
3473
|
-
|
|
3474
3494
|
declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
3475
3495
|
|
|
3496
|
+
declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
3497
|
+
|
|
3476
3498
|
declare type FetchItemsMinimalType = (pagination: Pagination, filterBag: FilterBag) => Promise<any[]>;
|
|
3477
3499
|
|
|
3478
3500
|
export declare interface Filter<T = any> {
|
|
@@ -3710,6 +3732,11 @@ export declare const messagesEn: {
|
|
|
3710
3732
|
created: string;
|
|
3711
3733
|
modified: string;
|
|
3712
3734
|
};
|
|
3735
|
+
filterPlaceholder: {
|
|
3736
|
+
eq: string;
|
|
3737
|
+
anyWhere: string;
|
|
3738
|
+
startsWith: string;
|
|
3739
|
+
};
|
|
3713
3740
|
};
|
|
3714
3741
|
system: {
|
|
3715
3742
|
version: string;
|
|
@@ -4071,6 +4098,11 @@ export declare const messagesSk: {
|
|
|
4071
4098
|
created: string;
|
|
4072
4099
|
modified: string;
|
|
4073
4100
|
};
|
|
4101
|
+
filterPlaceholder: {
|
|
4102
|
+
eq: string;
|
|
4103
|
+
anyWhere: string;
|
|
4104
|
+
startsWith: string;
|
|
4105
|
+
};
|
|
4074
4106
|
};
|
|
4075
4107
|
system: {
|
|
4076
4108
|
version: string;
|
|
@@ -4566,7 +4598,7 @@ export declare function useAlerts(): {
|
|
|
4566
4598
|
showApiForbiddenOperationError: (detail: string, duration?: number) => void;
|
|
4567
4599
|
showUnknownError: (duration?: number) => void;
|
|
4568
4600
|
showForbiddenError: (duration?: number) => void;
|
|
4569
|
-
showErrorsDefault: (error: any) =>
|
|
4601
|
+
showErrorsDefault: (error: any) => boolean;
|
|
4570
4602
|
};
|
|
4571
4603
|
|
|
4572
4604
|
export declare function useAnzuUserFactory(system?: string, resourceName?: string): {
|