@anzusystems/common-admin 0.0.18 → 0.0.22

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.
@@ -1507,7 +1507,7 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
1507
1507
 
1508
1508
  export declare const AFormTextarea: DefineComponent<{
1509
1509
  modelValue: {
1510
- type: PropType<string>;
1510
+ type: PropType<string | null>;
1511
1511
  required: true;
1512
1512
  };
1513
1513
  label: {
@@ -1557,7 +1557,7 @@ export declare const AFormTextarea: DefineComponent<{
1557
1557
  };
1558
1558
  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click:append" | "blur")[], "update:modelValue" | "click:append" | "blur", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
1559
1559
  modelValue: {
1560
- type: PropType<string>;
1560
+ type: PropType<string | null>;
1561
1561
  required: true;
1562
1562
  };
1563
1563
  label: {
@@ -1623,7 +1623,7 @@ export declare const AFormTextarea: DefineComponent<{
1623
1623
 
1624
1624
  export declare const AFormTextField: DefineComponent<{
1625
1625
  modelValue: {
1626
- type: PropType<string>;
1626
+ type: PropType<string | number | null | undefined>;
1627
1627
  required: true;
1628
1628
  };
1629
1629
  label: {
@@ -1678,7 +1678,7 @@ export declare const AFormTextField: DefineComponent<{
1678
1678
  };
1679
1679
  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click:append" | "blur")[], "update:modelValue" | "click:append" | "blur", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
1680
1680
  modelValue: {
1681
- type: PropType<string>;
1681
+ type: PropType<string | number | null | undefined>;
1682
1682
  required: true;
1683
1683
  };
1684
1684
  label: {
@@ -2120,7 +2120,7 @@ export declare const ARow: DefineComponent<{
2120
2120
  default: string;
2121
2121
  };
2122
2122
  value: {
2123
- type: PropType<string | number | undefined>;
2123
+ type: PropType<string | number | null | undefined>;
2124
2124
  required: false;
2125
2125
  default: string;
2126
2126
  };
@@ -2136,7 +2136,7 @@ export declare const ARow: DefineComponent<{
2136
2136
  default: string;
2137
2137
  };
2138
2138
  value: {
2139
- type: PropType<string | number | undefined>;
2139
+ type: PropType<string | number | null | undefined>;
2140
2140
  required: false;
2141
2141
  default: string;
2142
2142
  };
@@ -2146,18 +2146,18 @@ export declare const ARow: DefineComponent<{
2146
2146
  default: string;
2147
2147
  };
2148
2148
  }>>, {
2149
- value: string | number | undefined;
2149
+ value: string | number | null | undefined;
2150
2150
  title: string | undefined;
2151
2151
  dataCy: string | undefined;
2152
2152
  }>;
2153
2153
 
2154
- export declare const arrayFlatten: (arr: any) => any;
2154
+ export declare const arrayFlatten: <T>(input: NestedArray<T>, acc?: T[]) => T[];
2155
2155
 
2156
- export declare const arrayFromArgs: (...args: any) => unknown[];
2156
+ export declare const arrayFromArgs: <T>(args_0: T[]) => T[];
2157
2157
 
2158
2158
  export declare const arrayItemToggle: <T>(array: T[], value: T) => void;
2159
2159
 
2160
- export declare const arrayToString: (values: number[] | string[], separator?: string) => string;
2160
+ export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
2161
2161
 
2162
2162
  export declare const ASystemBar: DefineComponent<{
2163
2163
  currentVersion: {
@@ -2606,6 +2606,13 @@ export declare const HTTP_STATUS_UNPROCESSABLE_ENTITY = 422;
2606
2606
 
2607
2607
  export declare const i18n: I18n<{}, {}, {}, string, true>;
2608
2608
 
2609
+ export declare const ICON: Immutable<typeof icons>;
2610
+
2611
+ declare const icons: {
2612
+ CHIP_LINK: string;
2613
+ CHIP_LINK_EXTERNAL: string;
2614
+ };
2615
+
2609
2616
  export declare type Immutable<T> = {
2610
2617
  readonly [K in keyof T]: Immutable<T[K]>;
2611
2618
  };
@@ -2652,7 +2659,7 @@ export declare const isValidHTTPStatus: (statusCode: number) => boolean;
2652
2659
 
2653
2660
  export declare interface Job<T extends JobResource = JobResource> extends AnzuUserAndTimeTrackingAware {
2654
2661
  readonly id: IntegerId;
2655
- readonly status: string;
2662
+ readonly status: JobStatus;
2656
2663
  readonly startedAt: DatetimeUTCNullable;
2657
2664
  readonly finishedAt: DatetimeUTCNullable;
2658
2665
  readonly lastBatchProcessedRecord: string;
@@ -3357,6 +3364,8 @@ export declare function modifyLanguageSettings(configAvailableLanguages: Languag
3357
3364
  allLanguages: Language[];
3358
3365
  };
3359
3366
 
3367
+ export declare type NestedArray<T> = Array<NestedArray<T> | T>;
3368
+
3360
3369
  export declare const NEW_LINE_MARK = "\n";
3361
3370
 
3362
3371
  export declare const numberToString: (value: number) => string;
@@ -3365,7 +3374,7 @@ export declare const objectDeepFreeze: <T>(obj: T) => Readonly<T>;
3365
3374
 
3366
3375
  export declare function objectDeletePropertyByPath<T>(obj: T, path: string, splitChar?: string): T;
3367
3376
 
3368
- export declare const objectGetValueByPath: (obj: any, path: string, splitChar?: string) => any;
3377
+ export declare const objectGetValueByPath: <R = any>(obj: any, path: string, splitChar?: string) => R | undefined;
3369
3378
 
3370
3379
  export declare const objectGetValues: <T>(obj: {
3371
3380
  [key: string]: T;