@anzusystems/common-admin 0.0.39 → 0.0.41

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.
@@ -1404,6 +1404,11 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
1404
1404
  required: false;
1405
1405
  default: boolean;
1406
1406
  };
1407
+ placeholder: {
1408
+ type: PropType<string | undefined>;
1409
+ required: false;
1410
+ default: undefined;
1411
+ };
1407
1412
  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
1408
1413
  modelValue: {
1409
1414
  type: PropType<Filter<any>>;
@@ -1431,11 +1436,17 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
1431
1436
  required: false;
1432
1437
  default: boolean;
1433
1438
  };
1439
+ placeholder: {
1440
+ type: PropType<string | undefined>;
1441
+ required: false;
1442
+ default: undefined;
1443
+ };
1434
1444
  }>> & {
1435
1445
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1436
1446
  }, {
1437
1447
  filterByField: string | undefined;
1438
1448
  disableInitFetch: boolean | undefined;
1449
+ placeholder: string | undefined;
1439
1450
  }>;
1440
1451
 
1441
1452
  export declare const AFilterResetButton: DefineComponent<{
@@ -3402,7 +3413,7 @@ declare const commonConfig: {
3402
3413
  };
3403
3414
  };
3404
3415
 
3405
- export declare function createDatatableColumnsConfig(config: ColumnConfig[], hidden: string[], system?: string | undefined, subject?: string | undefined, disableActions?: boolean, customPagination?: Pagination | undefined): {
3416
+ export declare function createDatatableColumnsConfig(config: ColumnConfig[], columnsHidden: Ref<Array<string>>, system?: string | undefined, subject?: string | undefined, disableActions?: boolean, customPagination?: Pagination | undefined): {
3406
3417
  columnsAll: {
3407
3418
  key: string;
3408
3419
  title?: string | undefined;
@@ -3513,7 +3524,7 @@ export declare interface FilterBag {
3513
3524
  [key: string]: Filter;
3514
3525
  }
3515
3526
 
3516
- export declare type FilterVariant = 'lt' | 'in' | 'notIn' | 'endsWith' | 'startsWith' | 'memberOf' | 'contains' | 'neq' | 'gte' | 'gt' | 'eq' | 'lte';
3527
+ export declare type FilterVariant = 'search' | 'lt' | 'in' | 'notIn' | 'endsWith' | 'startsWith' | 'memberOf' | 'contains' | 'neq' | 'gte' | 'gt' | 'eq' | 'lte';
3517
3528
 
3518
3529
  export declare enum Grant {
3519
3530
  Deny = 0,
@@ -3734,7 +3745,7 @@ export declare const messagesEn: {
3734
3745
  };
3735
3746
  filterPlaceholder: {
3736
3747
  eq: string;
3737
- anyWhere: string;
3748
+ contains: string;
3738
3749
  startsWith: string;
3739
3750
  };
3740
3751
  };
@@ -4100,7 +4111,7 @@ export declare const messagesSk: {
4100
4111
  };
4101
4112
  filterPlaceholder: {
4102
4113
  eq: string;
4103
- anyWhere: string;
4114
+ contains: string;
4104
4115
  startsWith: string;
4105
4116
  };
4106
4117
  };