@anzusystems/common-admin 0.0.17 → 0.0.21
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 +13 -11
- package/dist/common-admin.es.js +157 -159
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +5 -1
- package/package.json +3 -3
|
@@ -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: (
|
|
2154
|
+
export declare const arrayFlatten: <T>(input: NestedArray<T>, acc?: T[]) => T[];
|
|
2155
2155
|
|
|
2156
|
-
export declare const arrayFromArgs: (
|
|
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:
|
|
2160
|
+
export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
|
|
2161
2161
|
|
|
2162
2162
|
export declare const ASystemBar: DefineComponent<{
|
|
2163
2163
|
currentVersion: {
|
|
@@ -2652,7 +2652,7 @@ export declare const isValidHTTPStatus: (statusCode: number) => boolean;
|
|
|
2652
2652
|
|
|
2653
2653
|
export declare interface Job<T extends JobResource = JobResource> extends AnzuUserAndTimeTrackingAware {
|
|
2654
2654
|
readonly id: IntegerId;
|
|
2655
|
-
readonly status:
|
|
2655
|
+
readonly status: JobStatus;
|
|
2656
2656
|
readonly startedAt: DatetimeUTCNullable;
|
|
2657
2657
|
readonly finishedAt: DatetimeUTCNullable;
|
|
2658
2658
|
readonly lastBatchProcessedRecord: string;
|
|
@@ -3357,6 +3357,8 @@ export declare function modifyLanguageSettings(configAvailableLanguages: Languag
|
|
|
3357
3357
|
allLanguages: Language[];
|
|
3358
3358
|
};
|
|
3359
3359
|
|
|
3360
|
+
export declare type NestedArray<T> = Array<NestedArray<T> | T>;
|
|
3361
|
+
|
|
3360
3362
|
export declare const NEW_LINE_MARK = "\n";
|
|
3361
3363
|
|
|
3362
3364
|
export declare const numberToString: (value: number) => string;
|