@anzusystems/common-admin 1.47.0-alpha4 → 1.47.0-alpha40
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 +770 -233
- package/dist/common-admin.es.js +320 -347
- package/dist/common-admin.es.js.map +1 -1
- package/dist/{lib-j7X_ApAh.js → lib-BDbpyS_Q.js} +8569 -8087
- package/dist/lib-BDbpyS_Q.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/{webfontloader-kNngvlJT.js → webfontloader-4I83PhyQ.js} +2 -2
- package/dist/{webfontloader-kNngvlJT.js.map → webfontloader-4I83PhyQ.js.map} +1 -1
- package/package.json +45 -42
- package/dist/lib-j7X_ApAh.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AllowedComponentProps } from 'vue';
|
|
2
2
|
import type { App } from 'vue';
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
|
-
import
|
|
4
|
+
import { AxiosInstance } from 'axios';
|
|
5
5
|
import type { AxiosRequestConfig } from 'axios';
|
|
6
6
|
import type { CancelTokenSource } from 'axios';
|
|
7
7
|
import { ComponentCustomProps } from 'vue';
|
|
@@ -199,6 +199,10 @@ declare type __VLS_NonUndefinedable_79<T> = T extends undefined ? never : T;
|
|
|
199
199
|
|
|
200
200
|
declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
|
|
201
201
|
|
|
202
|
+
declare type __VLS_NonUndefinedable_80<T> = T extends undefined ? never : T;
|
|
203
|
+
|
|
204
|
+
declare type __VLS_NonUndefinedable_81<T> = T extends undefined ? never : T;
|
|
205
|
+
|
|
202
206
|
declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
|
|
203
207
|
|
|
204
208
|
declare type __VLS_Prettify<T> = {
|
|
@@ -493,6 +497,14 @@ declare type __VLS_Prettify_75<T> = {
|
|
|
493
497
|
[K in keyof T]: T[K];
|
|
494
498
|
} & {};
|
|
495
499
|
|
|
500
|
+
declare type __VLS_Prettify_76<T> = {
|
|
501
|
+
[K in keyof T]: T[K];
|
|
502
|
+
} & {};
|
|
503
|
+
|
|
504
|
+
declare type __VLS_Prettify_77<T> = {
|
|
505
|
+
[K in keyof T]: T[K];
|
|
506
|
+
} & {};
|
|
507
|
+
|
|
496
508
|
declare type __VLS_Prettify_8<T> = {
|
|
497
509
|
[K in keyof T]: T[K];
|
|
498
510
|
} & {};
|
|
@@ -1203,6 +1215,24 @@ declare type __VLS_TypePropsToRuntimeProps_8<T> = {
|
|
|
1203
1215
|
};
|
|
1204
1216
|
};
|
|
1205
1217
|
|
|
1218
|
+
declare type __VLS_TypePropsToRuntimeProps_80<T> = {
|
|
1219
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1220
|
+
type: PropType<__VLS_NonUndefinedable_80<T[K]>>;
|
|
1221
|
+
} : {
|
|
1222
|
+
type: PropType<T[K]>;
|
|
1223
|
+
required: true;
|
|
1224
|
+
};
|
|
1225
|
+
};
|
|
1226
|
+
|
|
1227
|
+
declare type __VLS_TypePropsToRuntimeProps_81<T> = {
|
|
1228
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1229
|
+
type: PropType<__VLS_NonUndefinedable_81<T[K]>>;
|
|
1230
|
+
} : {
|
|
1231
|
+
type: PropType<T[K]>;
|
|
1232
|
+
required: true;
|
|
1233
|
+
};
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1206
1236
|
declare type __VLS_TypePropsToRuntimeProps_9<T> = {
|
|
1207
1237
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1208
1238
|
type: PropType<__VLS_NonUndefinedable_9<T[K]>>;
|
|
@@ -1650,6 +1680,18 @@ declare type __VLS_WithDefaults_75<P, D> = {
|
|
|
1650
1680
|
}> : P[K];
|
|
1651
1681
|
};
|
|
1652
1682
|
|
|
1683
|
+
declare type __VLS_WithDefaults_76<P, D> = {
|
|
1684
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_76<P[K] & {
|
|
1685
|
+
default: D[K];
|
|
1686
|
+
}> : P[K];
|
|
1687
|
+
};
|
|
1688
|
+
|
|
1689
|
+
declare type __VLS_WithDefaults_77<P, D> = {
|
|
1690
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_77<P[K] & {
|
|
1691
|
+
default: D[K];
|
|
1692
|
+
}> : P[K];
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1653
1695
|
declare type __VLS_WithDefaults_8<P, D> = {
|
|
1654
1696
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
|
|
1655
1697
|
default: D[K];
|
|
@@ -1812,7 +1854,7 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
1812
1854
|
};
|
|
1813
1855
|
};
|
|
1814
1856
|
|
|
1815
|
-
export declare const AActionCloseButton: DefineComponent<
|
|
1857
|
+
export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_37<__VLS_TypePropsToRuntimeProps_40<{
|
|
1816
1858
|
routeName?: string | undefined;
|
|
1817
1859
|
routeParams?: any | undefined;
|
|
1818
1860
|
buttonT?: string | undefined;
|
|
@@ -1826,7 +1868,7 @@ export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_38<_
|
|
|
1826
1868
|
buttonClass: string;
|
|
1827
1869
|
dataCy: string;
|
|
1828
1870
|
size: number;
|
|
1829
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
1871
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_37<__VLS_TypePropsToRuntimeProps_40<{
|
|
1830
1872
|
routeName?: string | undefined;
|
|
1831
1873
|
routeParams?: any | undefined;
|
|
1832
1874
|
buttonT?: string | undefined;
|
|
@@ -1849,7 +1891,7 @@ export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_38<_
|
|
|
1849
1891
|
routeParams: any | undefined;
|
|
1850
1892
|
}, {}>;
|
|
1851
1893
|
|
|
1852
|
-
export declare const AActionCreateButton: DefineComponent<
|
|
1894
|
+
export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_38<__VLS_TypePropsToRuntimeProps_41<{
|
|
1853
1895
|
routeName: string;
|
|
1854
1896
|
buttonT?: string | undefined;
|
|
1855
1897
|
buttonClass?: string | undefined;
|
|
@@ -1862,7 +1904,7 @@ export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_39<
|
|
|
1862
1904
|
dataCy: string;
|
|
1863
1905
|
size: number;
|
|
1864
1906
|
variant: string;
|
|
1865
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
1907
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_38<__VLS_TypePropsToRuntimeProps_41<{
|
|
1866
1908
|
routeName: string;
|
|
1867
1909
|
buttonT?: string | undefined;
|
|
1868
1910
|
buttonClass?: string | undefined;
|
|
@@ -1883,7 +1925,7 @@ export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_39<
|
|
|
1883
1925
|
buttonT: string;
|
|
1884
1926
|
}, {}>;
|
|
1885
1927
|
|
|
1886
|
-
export declare const AActionDeleteButton: DefineComponent<
|
|
1928
|
+
export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_39<__VLS_TypePropsToRuntimeProps_42<{
|
|
1887
1929
|
variant?: ButtonVariant | undefined;
|
|
1888
1930
|
buttonT?: string | undefined;
|
|
1889
1931
|
buttonClass?: string | undefined;
|
|
@@ -1918,7 +1960,7 @@ export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_40<
|
|
|
1918
1960
|
closeDialog: () => void;
|
|
1919
1961
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1920
1962
|
deleteRecord: () => void;
|
|
1921
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
1963
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_39<__VLS_TypePropsToRuntimeProps_42<{
|
|
1922
1964
|
variant?: ButtonVariant | undefined;
|
|
1923
1965
|
buttonT?: string | undefined;
|
|
1924
1966
|
buttonClass?: string | undefined;
|
|
@@ -1968,7 +2010,7 @@ export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_40<
|
|
|
1968
2010
|
disableCloseAfterConfirm: boolean;
|
|
1969
2011
|
}, {}>;
|
|
1970
2012
|
|
|
1971
|
-
export declare const AActionEditButton: DefineComponent<
|
|
2013
|
+
export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_40<__VLS_TypePropsToRuntimeProps_43<{
|
|
1972
2014
|
routeName: string;
|
|
1973
2015
|
recordId?: number | string | undefined;
|
|
1974
2016
|
routeParams?: any | undefined;
|
|
@@ -1989,7 +2031,7 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
|
|
|
1989
2031
|
variant: string;
|
|
1990
2032
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1991
2033
|
editRecord: () => void;
|
|
1992
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2034
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_40<__VLS_TypePropsToRuntimeProps_43<{
|
|
1993
2035
|
routeName: string;
|
|
1994
2036
|
recordId?: number | string | undefined;
|
|
1995
2037
|
routeParams?: any | undefined;
|
|
@@ -2021,7 +2063,7 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
|
|
|
2021
2063
|
recordId: string | number;
|
|
2022
2064
|
}, {}>;
|
|
2023
2065
|
|
|
2024
|
-
export declare const AActionSaveAndCloseButton: DefineComponent<
|
|
2066
|
+
export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaults_41<__VLS_TypePropsToRuntimeProps_44<{
|
|
2025
2067
|
buttonT?: string | undefined;
|
|
2026
2068
|
buttonClass?: string | undefined;
|
|
2027
2069
|
dataCy?: string | undefined;
|
|
@@ -2035,7 +2077,7 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
|
|
|
2035
2077
|
disabled: undefined;
|
|
2036
2078
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2037
2079
|
saveRecordAndClose: () => void;
|
|
2038
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2080
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_41<__VLS_TypePropsToRuntimeProps_44<{
|
|
2039
2081
|
buttonT?: string | undefined;
|
|
2040
2082
|
buttonClass?: string | undefined;
|
|
2041
2083
|
dataCy?: string | undefined;
|
|
@@ -2057,7 +2099,7 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
|
|
|
2057
2099
|
buttonT: string;
|
|
2058
2100
|
}, {}>;
|
|
2059
2101
|
|
|
2060
|
-
export declare const AActionSaveButton: DefineComponent<
|
|
2102
|
+
export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_42<__VLS_TypePropsToRuntimeProps_45<{
|
|
2061
2103
|
buttonT?: string | undefined;
|
|
2062
2104
|
buttonClass?: string | undefined;
|
|
2063
2105
|
dataCy?: string | undefined;
|
|
@@ -2075,7 +2117,7 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
|
|
|
2075
2117
|
variant: string;
|
|
2076
2118
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2077
2119
|
saveRecord: () => void;
|
|
2078
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2120
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_42<__VLS_TypePropsToRuntimeProps_45<{
|
|
2079
2121
|
buttonT?: string | undefined;
|
|
2080
2122
|
buttonClass?: string | undefined;
|
|
2081
2123
|
dataCy?: string | undefined;
|
|
@@ -2103,11 +2145,11 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
|
|
|
2103
2145
|
buttonT: string;
|
|
2104
2146
|
}, {}>;
|
|
2105
2147
|
|
|
2106
|
-
export declare const AAdminSwitcher: DefineComponent<
|
|
2148
|
+
export declare const AAdminSwitcher: DefineComponent<__VLS_WithDefaults_31<__VLS_TypePropsToRuntimeProps_34<{
|
|
2107
2149
|
configUrl?: string | undefined | null;
|
|
2108
2150
|
}>, {
|
|
2109
2151
|
configUrl: null;
|
|
2110
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2152
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_31<__VLS_TypePropsToRuntimeProps_34<{
|
|
2111
2153
|
configUrl?: string | undefined | null;
|
|
2112
2154
|
}>, {
|
|
2113
2155
|
configUrl: null;
|
|
@@ -2147,34 +2189,39 @@ export declare const AAlerts: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePro
|
|
|
2147
2189
|
customClass: string;
|
|
2148
2190
|
}, {}>;
|
|
2149
2191
|
|
|
2150
|
-
export declare const AAnzuUserAvatar: DefineComponent<
|
|
2192
|
+
export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_53<__VLS_TypePropsToRuntimeProps_56<{
|
|
2151
2193
|
user?: AnzuUserMinimal | undefined | null;
|
|
2152
2194
|
size?: number | undefined;
|
|
2153
2195
|
containerClass?: string | undefined;
|
|
2196
|
+
tooltip?: string | undefined;
|
|
2154
2197
|
}>, {
|
|
2155
2198
|
user: undefined;
|
|
2156
2199
|
size: number;
|
|
2157
2200
|
containerClass: string;
|
|
2158
|
-
|
|
2201
|
+
tooltip: undefined;
|
|
2202
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_53<__VLS_TypePropsToRuntimeProps_56<{
|
|
2159
2203
|
user?: AnzuUserMinimal | undefined | null;
|
|
2160
2204
|
size?: number | undefined;
|
|
2161
2205
|
containerClass?: string | undefined;
|
|
2206
|
+
tooltip?: string | undefined;
|
|
2162
2207
|
}>, {
|
|
2163
2208
|
user: undefined;
|
|
2164
2209
|
size: number;
|
|
2165
2210
|
containerClass: string;
|
|
2211
|
+
tooltip: undefined;
|
|
2166
2212
|
}>>>, {
|
|
2167
2213
|
size: number;
|
|
2168
2214
|
user: AnzuUserMinimal | null;
|
|
2169
2215
|
containerClass: string;
|
|
2216
|
+
tooltip: string;
|
|
2170
2217
|
}, {}>;
|
|
2171
2218
|
|
|
2172
|
-
export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<
|
|
2219
|
+
export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_73<{
|
|
2173
2220
|
modelValue?: boolean | undefined;
|
|
2174
2221
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2175
2222
|
minCount: number;
|
|
2176
2223
|
maxCount: number;
|
|
2177
|
-
|
|
2224
|
+
selectLicences: number[];
|
|
2178
2225
|
returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
|
|
2179
2226
|
configName?: string | undefined;
|
|
2180
2227
|
skipCurrentUserCheck?: boolean | undefined;
|
|
@@ -2188,12 +2235,12 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__
|
|
|
2188
2235
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2189
2236
|
"update:modelValue": (data: boolean) => void;
|
|
2190
2237
|
onConfirm: (data: AssetSelectReturnData) => void;
|
|
2191
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2238
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_73<{
|
|
2192
2239
|
modelValue?: boolean | undefined;
|
|
2193
2240
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2194
2241
|
minCount: number;
|
|
2195
2242
|
maxCount: number;
|
|
2196
|
-
|
|
2243
|
+
selectLicences: number[];
|
|
2197
2244
|
returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
|
|
2198
2245
|
configName?: string | undefined;
|
|
2199
2246
|
skipCurrentUserCheck?: boolean | undefined;
|
|
@@ -2220,7 +2267,7 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__
|
|
|
2220
2267
|
"button-confirm-title"?(_: {}): any;
|
|
2221
2268
|
}>;
|
|
2222
2269
|
|
|
2223
|
-
export declare const AAvatarColorPicker: DefineComponent<
|
|
2270
|
+
export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
2224
2271
|
modelValue: string;
|
|
2225
2272
|
label?: string | undefined;
|
|
2226
2273
|
loading?: boolean | undefined;
|
|
@@ -2237,7 +2284,7 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2237
2284
|
hideLabel: boolean;
|
|
2238
2285
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2239
2286
|
"update:modelValue": (data: string) => void;
|
|
2240
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2287
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
2241
2288
|
modelValue: string;
|
|
2242
2289
|
label?: string | undefined;
|
|
2243
2290
|
loading?: boolean | undefined;
|
|
@@ -2263,7 +2310,7 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2263
2310
|
randomColor: boolean;
|
|
2264
2311
|
}, {}>;
|
|
2265
2312
|
|
|
2266
|
-
export declare const ABooleanSelect: DefineComponent<
|
|
2313
|
+
export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_74<{
|
|
2267
2314
|
modelValue: boolean | null;
|
|
2268
2315
|
dataCy?: string | undefined;
|
|
2269
2316
|
label?: string | undefined;
|
|
@@ -2272,7 +2319,7 @@ export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_71<__VLS
|
|
|
2272
2319
|
label: undefined;
|
|
2273
2320
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2274
2321
|
"update:modelValue": (data: boolean | null) => void;
|
|
2275
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2322
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_74<{
|
|
2276
2323
|
modelValue: boolean | null;
|
|
2277
2324
|
dataCy?: string | undefined;
|
|
2278
2325
|
label?: string | undefined;
|
|
@@ -2305,7 +2352,7 @@ export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_T
|
|
|
2305
2352
|
invertColor: boolean;
|
|
2306
2353
|
}, {}>;
|
|
2307
2354
|
|
|
2308
|
-
export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<
|
|
2355
|
+
export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
2309
2356
|
buttonT?: string | undefined;
|
|
2310
2357
|
buttonClass?: string | undefined;
|
|
2311
2358
|
dataCy?: string | undefined;
|
|
@@ -2329,7 +2376,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
2329
2376
|
color: string;
|
|
2330
2377
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2331
2378
|
onClick: () => void;
|
|
2332
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2379
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
2333
2380
|
buttonT?: string | undefined;
|
|
2334
2381
|
buttonClass?: string | undefined;
|
|
2335
2382
|
dataCy?: string | undefined;
|
|
@@ -2369,7 +2416,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
2369
2416
|
default?(_: {}): any;
|
|
2370
2417
|
}>;
|
|
2371
2418
|
|
|
2372
|
-
export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<
|
|
2419
|
+
export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
|
|
2373
2420
|
id?: string | number | null | undefined;
|
|
2374
2421
|
title?: string | undefined;
|
|
2375
2422
|
containerClass?: string | undefined;
|
|
@@ -2383,6 +2430,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2383
2430
|
textOnly?: boolean | undefined;
|
|
2384
2431
|
fallbackIdText?: boolean | undefined;
|
|
2385
2432
|
wrapText?: boolean | undefined;
|
|
2433
|
+
closable?: boolean | undefined;
|
|
2386
2434
|
}>, {
|
|
2387
2435
|
id: null;
|
|
2388
2436
|
title: string;
|
|
@@ -2394,7 +2442,10 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2394
2442
|
textOnly: boolean;
|
|
2395
2443
|
fallbackIdText: boolean;
|
|
2396
2444
|
wrapText: boolean;
|
|
2397
|
-
|
|
2445
|
+
closable: boolean;
|
|
2446
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2447
|
+
onClose: (id: string | number | null | undefined) => void;
|
|
2448
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
|
|
2398
2449
|
id?: string | number | null | undefined;
|
|
2399
2450
|
title?: string | undefined;
|
|
2400
2451
|
containerClass?: string | undefined;
|
|
@@ -2408,6 +2459,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2408
2459
|
textOnly?: boolean | undefined;
|
|
2409
2460
|
fallbackIdText?: boolean | undefined;
|
|
2410
2461
|
wrapText?: boolean | undefined;
|
|
2462
|
+
closable?: boolean | undefined;
|
|
2411
2463
|
}>, {
|
|
2412
2464
|
id: null;
|
|
2413
2465
|
title: string;
|
|
@@ -2419,11 +2471,15 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2419
2471
|
textOnly: boolean;
|
|
2420
2472
|
fallbackIdText: boolean;
|
|
2421
2473
|
wrapText: boolean;
|
|
2422
|
-
|
|
2474
|
+
closable: boolean;
|
|
2475
|
+
}>>> & {
|
|
2476
|
+
onOnClose?: ((id: string | number | null | undefined) => any) | undefined;
|
|
2477
|
+
}, {
|
|
2423
2478
|
size: string;
|
|
2424
2479
|
title: string;
|
|
2425
2480
|
id: string | number | null;
|
|
2426
2481
|
containerClass: string;
|
|
2482
|
+
closable: boolean;
|
|
2427
2483
|
disableClick: boolean;
|
|
2428
2484
|
openInNew: boolean;
|
|
2429
2485
|
forceRounded: boolean;
|
|
@@ -2489,12 +2545,12 @@ export declare const AChipNoLink: __VLS_WithTemplateSlots_3<DefineComponent<__VL
|
|
|
2489
2545
|
default?(_: {}): any;
|
|
2490
2546
|
}>;
|
|
2491
2547
|
|
|
2492
|
-
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<
|
|
2548
|
+
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2493
2549
|
permission: `${string}_${string}_${string}`;
|
|
2494
2550
|
subject?: object | undefined;
|
|
2495
2551
|
}>, {
|
|
2496
2552
|
subject: undefined;
|
|
2497
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2553
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2498
2554
|
permission: `${string}_${string}_${string}`;
|
|
2499
2555
|
subject?: object | undefined;
|
|
2500
2556
|
}>, {
|
|
@@ -2513,7 +2569,7 @@ declare type AclResolverConfig = {
|
|
|
2513
2569
|
|
|
2514
2570
|
export declare type AclValue = `${string}_${string}_${string}`;
|
|
2515
2571
|
|
|
2516
|
-
export declare const ACollabCountdown: DefineComponent<
|
|
2572
|
+
export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2517
2573
|
label?: string | undefined;
|
|
2518
2574
|
seconds?: number | undefined;
|
|
2519
2575
|
parentheses?: boolean | undefined;
|
|
@@ -2523,7 +2579,7 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2523
2579
|
parentheses: boolean;
|
|
2524
2580
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2525
2581
|
done: () => void;
|
|
2526
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2582
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2527
2583
|
label?: string | undefined;
|
|
2528
2584
|
seconds?: number | undefined;
|
|
2529
2585
|
parentheses?: boolean | undefined;
|
|
@@ -2539,15 +2595,15 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2539
2595
|
parentheses: boolean;
|
|
2540
2596
|
}, {}>;
|
|
2541
2597
|
|
|
2542
|
-
export declare const ACollabLockedByUser: DefineComponent<
|
|
2598
|
+
export declare const ACollabLockedByUser: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2543
2599
|
id: null | undefined | IntegerId;
|
|
2544
2600
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2545
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2601
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2546
2602
|
id: null | undefined | IntegerId;
|
|
2547
2603
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2548
2604
|
}>, {}>>>, {}, {}>;
|
|
2549
2605
|
|
|
2550
|
-
export declare const ACollabManagement: DefineComponent<
|
|
2606
|
+
export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2551
2607
|
collabRoom: CollabRoom;
|
|
2552
2608
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2553
2609
|
isEdit?: boolean | undefined;
|
|
@@ -2557,7 +2613,7 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2557
2613
|
isEdit: boolean;
|
|
2558
2614
|
addToCachedUsers: undefined;
|
|
2559
2615
|
fetchCachedUsers: undefined;
|
|
2560
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2616
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2561
2617
|
collabRoom: CollabRoom;
|
|
2562
2618
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2563
2619
|
isEdit?: boolean | undefined;
|
|
@@ -2573,14 +2629,14 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2573
2629
|
fetchCachedUsers: () => Promisify<Promise<any>>;
|
|
2574
2630
|
}, {}>;
|
|
2575
2631
|
|
|
2576
|
-
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<
|
|
2632
|
+
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2577
2633
|
value: string | number;
|
|
2578
2634
|
notifyT?: string | undefined;
|
|
2579
2635
|
dataCy?: string | undefined;
|
|
2580
2636
|
}>, {
|
|
2581
2637
|
notifyT: string;
|
|
2582
2638
|
dataCy: string;
|
|
2583
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2639
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2584
2640
|
value: string | number;
|
|
2585
2641
|
notifyT?: string | undefined;
|
|
2586
2642
|
dataCy?: string | undefined;
|
|
@@ -2881,14 +2937,14 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2881
2937
|
} | undefined;
|
|
2882
2938
|
};
|
|
2883
2939
|
|
|
2884
|
-
export declare const ACurrentUserDropdown: DefineComponent<
|
|
2940
|
+
export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2885
2941
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2886
2942
|
settingsRouteName: string;
|
|
2887
2943
|
logoutRouteName: string;
|
|
2888
2944
|
dataCy?: string | undefined;
|
|
2889
2945
|
}>, {
|
|
2890
2946
|
dataCy: string;
|
|
2891
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2947
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2892
2948
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2893
2949
|
settingsRouteName: string;
|
|
2894
2950
|
logoutRouteName: string;
|
|
@@ -2899,7 +2955,7 @@ export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_56
|
|
|
2899
2955
|
dataCy: string;
|
|
2900
2956
|
}, {}>;
|
|
2901
2957
|
|
|
2902
|
-
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<
|
|
2958
|
+
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2903
2959
|
modelValue: {
|
|
2904
2960
|
[key: string]: any;
|
|
2905
2961
|
};
|
|
@@ -2916,7 +2972,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2916
2972
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2917
2973
|
"update:modelValue": (data: any) => void;
|
|
2918
2974
|
anyChange: () => void;
|
|
2919
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2975
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2920
2976
|
modelValue: {
|
|
2921
2977
|
[key: string]: any;
|
|
2922
2978
|
};
|
|
@@ -2940,7 +2996,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2940
2996
|
"after-pinned"?(_: {}): any;
|
|
2941
2997
|
}>;
|
|
2942
2998
|
|
|
2943
|
-
export declare const ACustomDataFormElement: DefineComponent<
|
|
2999
|
+
export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2944
3000
|
modelValue: any;
|
|
2945
3001
|
config: CustomDataFormElement;
|
|
2946
3002
|
validationScope?: ValidationScope;
|
|
@@ -2952,7 +3008,7 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
|
|
|
2952
3008
|
value: any;
|
|
2953
3009
|
}) => void;
|
|
2954
3010
|
blur: (data: any) => void;
|
|
2955
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3011
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2956
3012
|
modelValue: any;
|
|
2957
3013
|
config: CustomDataFormElement;
|
|
2958
3014
|
validationScope?: ValidationScope;
|
|
@@ -3017,7 +3073,7 @@ export declare const ADatatable: <TItem = Record<string, unknown>>(__VLS_props:
|
|
|
3017
3073
|
} | undefined;
|
|
3018
3074
|
};
|
|
3019
3075
|
|
|
3020
|
-
export declare const ADatatableConfigButton: DefineComponent<
|
|
3076
|
+
export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3021
3077
|
columnsAll: ColumnInternalValues[];
|
|
3022
3078
|
columnsHidden: Array<string>;
|
|
3023
3079
|
buttonT?: string | undefined;
|
|
@@ -3029,7 +3085,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3029
3085
|
dataCy: string;
|
|
3030
3086
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3031
3087
|
"update:columnsHidden": (data: string[]) => void;
|
|
3032
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3088
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3033
3089
|
columnsAll: ColumnInternalValues[];
|
|
3034
3090
|
columnsHidden: Array<string>;
|
|
3035
3091
|
buttonT?: string | undefined;
|
|
@@ -3047,7 +3103,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3047
3103
|
buttonT: string;
|
|
3048
3104
|
}, {}>;
|
|
3049
3105
|
|
|
3050
|
-
export declare const ADatatableOrdering: DefineComponent<
|
|
3106
|
+
export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3051
3107
|
variant?: "default" | "most-relevant" | undefined;
|
|
3052
3108
|
modelValue?: number | undefined;
|
|
3053
3109
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3058,7 +3114,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3058
3114
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3059
3115
|
"update:modelValue": (data: number) => void;
|
|
3060
3116
|
sortByChange: (data: DatatableOrderingOption) => void;
|
|
3061
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3117
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3062
3118
|
variant?: "default" | "most-relevant" | undefined;
|
|
3063
3119
|
modelValue?: number | undefined;
|
|
3064
3120
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3075,7 +3131,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3075
3131
|
customOptions: DatatableOrderingOptions;
|
|
3076
3132
|
}, {}>;
|
|
3077
3133
|
|
|
3078
|
-
export declare const ADatatablePagination: DefineComponent<
|
|
3134
|
+
export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3079
3135
|
modelValue: Pagination;
|
|
3080
3136
|
itemsPerPageOptions?: number[] | undefined;
|
|
3081
3137
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3085,7 +3141,7 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3085
3141
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3086
3142
|
change: () => void;
|
|
3087
3143
|
"update:modelValue": (data: Pagination) => void;
|
|
3088
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3144
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3089
3145
|
modelValue: Pagination;
|
|
3090
3146
|
itemsPerPageOptions?: number[] | undefined;
|
|
3091
3147
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3100,12 +3156,12 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3100
3156
|
hideRecordsPerPage: boolean;
|
|
3101
3157
|
}, {}>;
|
|
3102
3158
|
|
|
3103
|
-
export declare const ADatetime: DefineComponent<
|
|
3159
|
+
export declare const ADatetime: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3104
3160
|
dateTime: DatetimeUTCNullable;
|
|
3105
3161
|
edgeDateValue?: string | undefined;
|
|
3106
3162
|
}>, {
|
|
3107
3163
|
edgeDateValue: string;
|
|
3108
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3164
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3109
3165
|
dateTime: DatetimeUTCNullable;
|
|
3110
3166
|
edgeDateValue?: string | undefined;
|
|
3111
3167
|
}>, {
|
|
@@ -3114,7 +3170,7 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
|
|
|
3114
3170
|
edgeDateValue: string;
|
|
3115
3171
|
}, {}>;
|
|
3116
3172
|
|
|
3117
|
-
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
3173
|
+
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3118
3174
|
modelValue: string | null | undefined;
|
|
3119
3175
|
type?: "datetime" | undefined;
|
|
3120
3176
|
label?: string | undefined;
|
|
@@ -3147,7 +3203,7 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3147
3203
|
"update:modelValue": (data: string | null | undefined) => void;
|
|
3148
3204
|
onOpen: () => void;
|
|
3149
3205
|
onClose: () => void;
|
|
3150
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3206
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3151
3207
|
modelValue: string | null | undefined;
|
|
3152
3208
|
type?: "datetime" | undefined;
|
|
3153
3209
|
label?: string | undefined;
|
|
@@ -3209,7 +3265,7 @@ export declare const ADialogToolbar: __VLS_WithTemplateSlots_14<DefineComponent<
|
|
|
3209
3265
|
|
|
3210
3266
|
export declare const AEmptyRouterView: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3211
3267
|
|
|
3212
|
-
export declare const AFilterAdvancedButton: DefineComponent<
|
|
3268
|
+
export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3213
3269
|
tooltipT?: string | undefined;
|
|
3214
3270
|
buttonClass?: string | undefined;
|
|
3215
3271
|
dataCy?: string | undefined;
|
|
@@ -3219,7 +3275,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3219
3275
|
dataCy: string;
|
|
3220
3276
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3221
3277
|
advancedFilter: () => void;
|
|
3222
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3278
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3223
3279
|
tooltipT?: string | undefined;
|
|
3224
3280
|
buttonClass?: string | undefined;
|
|
3225
3281
|
dataCy?: string | undefined;
|
|
@@ -3235,7 +3291,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3235
3291
|
buttonClass: string;
|
|
3236
3292
|
}, {}>;
|
|
3237
3293
|
|
|
3238
|
-
export declare const AFilterBooleanGroup: DefineComponent<
|
|
3294
|
+
export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3239
3295
|
modelValue: Filter;
|
|
3240
3296
|
dataCyTrue?: string | undefined;
|
|
3241
3297
|
dataCyFalse?: string | undefined;
|
|
@@ -3244,7 +3300,7 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3244
3300
|
dataCyFalse: string;
|
|
3245
3301
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3246
3302
|
"update:modelValue": (data: any) => void;
|
|
3247
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3303
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3248
3304
|
modelValue: Filter;
|
|
3249
3305
|
dataCyTrue?: string | undefined;
|
|
3250
3306
|
dataCyFalse?: string | undefined;
|
|
@@ -3258,14 +3314,14 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3258
3314
|
dataCyFalse: string;
|
|
3259
3315
|
}, {}>;
|
|
3260
3316
|
|
|
3261
|
-
export declare const AFilterBooleanSelect: DefineComponent<
|
|
3317
|
+
export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3262
3318
|
modelValue: Filter;
|
|
3263
3319
|
dataCy?: string | undefined;
|
|
3264
3320
|
}>, {
|
|
3265
3321
|
dataCy: string;
|
|
3266
3322
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3267
3323
|
"update:modelValue": (data: any) => void;
|
|
3268
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3324
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3269
3325
|
modelValue: Filter;
|
|
3270
3326
|
dataCy?: string | undefined;
|
|
3271
3327
|
}>, {
|
|
@@ -3276,14 +3332,14 @@ export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_23
|
|
|
3276
3332
|
dataCy: string;
|
|
3277
3333
|
}, {}>;
|
|
3278
3334
|
|
|
3279
|
-
export declare const AFilterDatetimePicker: DefineComponent<
|
|
3335
|
+
export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3280
3336
|
modelValue: Filter;
|
|
3281
3337
|
dataCy?: string | undefined;
|
|
3282
3338
|
}>, {
|
|
3283
3339
|
dataCy: string;
|
|
3284
3340
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3285
3341
|
"update:modelValue": (data: any) => void;
|
|
3286
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3342
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3287
3343
|
modelValue: Filter;
|
|
3288
3344
|
dataCy?: string | undefined;
|
|
3289
3345
|
}>, {
|
|
@@ -3294,14 +3350,14 @@ export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_2
|
|
|
3294
3350
|
dataCy: string;
|
|
3295
3351
|
}, {}>;
|
|
3296
3352
|
|
|
3297
|
-
export declare const AFilterInteger: DefineComponent<
|
|
3353
|
+
export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3298
3354
|
modelValue: Filter;
|
|
3299
3355
|
dataCy?: string | undefined;
|
|
3300
3356
|
}>, {
|
|
3301
3357
|
dataCy: string;
|
|
3302
3358
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3303
3359
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3304
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3360
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3305
3361
|
modelValue: Filter;
|
|
3306
3362
|
dataCy?: string | undefined;
|
|
3307
3363
|
}>, {
|
|
@@ -3312,7 +3368,7 @@ export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_19<__VLS
|
|
|
3312
3368
|
dataCy: string;
|
|
3313
3369
|
}, {}>;
|
|
3314
3370
|
|
|
3315
|
-
export declare const AFilterMixed: DefineComponent<
|
|
3371
|
+
export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3316
3372
|
filterId?: Filter | undefined;
|
|
3317
3373
|
filterDocId?: Filter | undefined;
|
|
3318
3374
|
filterText?: Filter | undefined;
|
|
@@ -3328,7 +3384,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3328
3384
|
filterOverrides: undefined;
|
|
3329
3385
|
placeholder: undefined;
|
|
3330
3386
|
dataCy: string;
|
|
3331
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3387
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3332
3388
|
filterId?: Filter | undefined;
|
|
3333
3389
|
filterDocId?: Filter | undefined;
|
|
3334
3390
|
filterText?: Filter | undefined;
|
|
@@ -3354,7 +3410,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3354
3410
|
filterOverrides: Filter<any>[];
|
|
3355
3411
|
}, {}>;
|
|
3356
3412
|
|
|
3357
|
-
export declare const AFilterRemoteAutocomplete: DefineComponent<
|
|
3413
|
+
export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3358
3414
|
modelValue: Filter;
|
|
3359
3415
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3360
3416
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3370,7 +3426,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3370
3426
|
placeholder: undefined;
|
|
3371
3427
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3372
3428
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3373
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3429
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3374
3430
|
modelValue: Filter;
|
|
3375
3431
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3376
3432
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3393,7 +3449,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3393
3449
|
disableInitFetch: boolean;
|
|
3394
3450
|
}, {}>;
|
|
3395
3451
|
|
|
3396
|
-
export declare const AFilterResetButton: DefineComponent<
|
|
3452
|
+
export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3397
3453
|
tooltipT?: string | undefined;
|
|
3398
3454
|
buttonClass?: string | undefined;
|
|
3399
3455
|
dataCy?: string | undefined;
|
|
@@ -3403,7 +3459,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3403
3459
|
dataCy: string;
|
|
3404
3460
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3405
3461
|
reset: () => void;
|
|
3406
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3462
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3407
3463
|
tooltipT?: string | undefined;
|
|
3408
3464
|
buttonClass?: string | undefined;
|
|
3409
3465
|
dataCy?: string | undefined;
|
|
@@ -3419,7 +3475,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3419
3475
|
buttonClass: string;
|
|
3420
3476
|
}, {}>;
|
|
3421
3477
|
|
|
3422
|
-
export declare const AFilterString: DefineComponent<
|
|
3478
|
+
export declare const AFilterString: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3423
3479
|
modelValue: Filter;
|
|
3424
3480
|
placeholder?: string | undefined;
|
|
3425
3481
|
dataCy?: string | undefined;
|
|
@@ -3428,7 +3484,7 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3428
3484
|
dataCy: string;
|
|
3429
3485
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3430
3486
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3431
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3487
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3432
3488
|
modelValue: Filter;
|
|
3433
3489
|
placeholder?: string | undefined;
|
|
3434
3490
|
dataCy?: string | undefined;
|
|
@@ -3442,7 +3498,7 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3442
3498
|
placeholder: string;
|
|
3443
3499
|
}, {}>;
|
|
3444
3500
|
|
|
3445
|
-
export declare const AFilterSubmitButton: DefineComponent<
|
|
3501
|
+
export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3446
3502
|
buttonT?: string | undefined;
|
|
3447
3503
|
buttonClass?: string | undefined;
|
|
3448
3504
|
dataCy?: string | undefined;
|
|
@@ -3454,7 +3510,7 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3454
3510
|
touched: boolean;
|
|
3455
3511
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3456
3512
|
submit: () => void;
|
|
3457
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3513
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3458
3514
|
buttonT?: string | undefined;
|
|
3459
3515
|
buttonClass?: string | undefined;
|
|
3460
3516
|
dataCy?: string | undefined;
|
|
@@ -3473,13 +3529,13 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3473
3529
|
touched: boolean;
|
|
3474
3530
|
}, {}>;
|
|
3475
3531
|
|
|
3476
|
-
export declare const AFilterValueObjectOptionsSelect: DefineComponent<
|
|
3532
|
+
export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3477
3533
|
modelValue: Filter;
|
|
3478
3534
|
items: ValueObjectOption<string | number>[];
|
|
3479
3535
|
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3480
3536
|
"update:modelValue": (data: any) => void;
|
|
3481
3537
|
change: () => void;
|
|
3482
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3538
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3483
3539
|
modelValue: Filter;
|
|
3484
3540
|
items: ValueObjectOption<string | number>[];
|
|
3485
3541
|
}>, {}>>> & {
|
|
@@ -3487,7 +3543,7 @@ export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_With
|
|
|
3487
3543
|
onChange?: (() => any) | undefined;
|
|
3488
3544
|
}, {}, {}>;
|
|
3489
3545
|
|
|
3490
|
-
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
3546
|
+
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3491
3547
|
enableAdvanced?: boolean | undefined;
|
|
3492
3548
|
enableTop?: boolean | undefined;
|
|
3493
3549
|
hideButtons?: boolean | undefined;
|
|
@@ -3499,7 +3555,7 @@ export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
|
3499
3555
|
touched: boolean;
|
|
3500
3556
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3501
3557
|
resetFilter: () => void;
|
|
3502
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3558
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3503
3559
|
enableAdvanced?: boolean | undefined;
|
|
3504
3560
|
enableTop?: boolean | undefined;
|
|
3505
3561
|
hideButtons?: boolean | undefined;
|
|
@@ -3655,82 +3711,176 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
|
|
|
3655
3711
|
}): any;
|
|
3656
3712
|
}>;
|
|
3657
3713
|
|
|
3658
|
-
export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineComponent<
|
|
3659
|
-
modelValue:
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3714
|
+
export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineComponent<{
|
|
3715
|
+
modelValue: {
|
|
3716
|
+
required: true;
|
|
3717
|
+
type: PropType<any>;
|
|
3718
|
+
};
|
|
3719
|
+
selected: PropType<any>;
|
|
3720
|
+
disabled: {
|
|
3721
|
+
type: PropType<boolean>;
|
|
3722
|
+
default: undefined;
|
|
3723
|
+
};
|
|
3724
|
+
multiple: {
|
|
3725
|
+
type: PropType<boolean>;
|
|
3726
|
+
default: boolean;
|
|
3727
|
+
};
|
|
3728
|
+
loading: {
|
|
3729
|
+
type: PropType<boolean>;
|
|
3730
|
+
default: boolean;
|
|
3731
|
+
};
|
|
3732
|
+
collab: {
|
|
3733
|
+
type: PropType<{
|
|
3734
|
+
room: string;
|
|
3735
|
+
field: string;
|
|
3736
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3737
|
+
}>;
|
|
3738
|
+
default: undefined;
|
|
3739
|
+
};
|
|
3740
|
+
required: {
|
|
3741
|
+
type: PropType<boolean>;
|
|
3742
|
+
default: undefined;
|
|
3743
|
+
};
|
|
3744
|
+
label: {
|
|
3745
|
+
type: PropType<string>;
|
|
3746
|
+
default: undefined;
|
|
3747
|
+
};
|
|
3748
|
+
hideLabel: {
|
|
3749
|
+
type: PropType<boolean>;
|
|
3750
|
+
default: boolean;
|
|
3751
|
+
};
|
|
3752
|
+
clearable: {
|
|
3753
|
+
type: PropType<boolean>;
|
|
3754
|
+
default: boolean;
|
|
3755
|
+
};
|
|
3756
|
+
hideDetails: {
|
|
3757
|
+
type: PropType<boolean>;
|
|
3758
|
+
default: boolean;
|
|
3759
|
+
};
|
|
3760
|
+
errorMessage: {
|
|
3761
|
+
type: PropType<string>;
|
|
3762
|
+
default: undefined;
|
|
3763
|
+
};
|
|
3764
|
+
v: {
|
|
3765
|
+
type: PropType<any>;
|
|
3766
|
+
default: null;
|
|
3767
|
+
};
|
|
3768
|
+
chips: {
|
|
3769
|
+
type: PropType<boolean>;
|
|
3770
|
+
default: boolean;
|
|
3771
|
+
};
|
|
3772
|
+
fetchItems: {
|
|
3773
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3774
|
+
required: true;
|
|
3775
|
+
};
|
|
3776
|
+
fetchItemsByIds: {
|
|
3777
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3778
|
+
required: true;
|
|
3779
|
+
};
|
|
3780
|
+
innerFilter: {
|
|
3781
|
+
type: PropType<FilterBag>;
|
|
3782
|
+
required: true;
|
|
3783
|
+
};
|
|
3784
|
+
filterByField: {
|
|
3785
|
+
type: PropType<string>;
|
|
3786
|
+
default: string;
|
|
3787
|
+
};
|
|
3788
|
+
filterSortBy: {
|
|
3789
|
+
type: PropType<string | null>;
|
|
3790
|
+
default: string;
|
|
3791
|
+
};
|
|
3792
|
+
disableInitFetch: {
|
|
3793
|
+
type: PropType<boolean>;
|
|
3794
|
+
default: boolean;
|
|
3795
|
+
};
|
|
3796
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3694
3797
|
searchChange: (data: string) => void;
|
|
3695
3798
|
searchChangeDebounced: (data: string) => void;
|
|
3696
3799
|
blur: (data: string | number | string[] | number[] | null) => void;
|
|
3697
3800
|
focus: (data: string | number | string[] | number[] | null) => void;
|
|
3698
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3699
|
-
modelValue:
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3801
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
3802
|
+
modelValue: {
|
|
3803
|
+
required: true;
|
|
3804
|
+
type: PropType<any>;
|
|
3805
|
+
};
|
|
3806
|
+
selected: PropType<any>;
|
|
3807
|
+
disabled: {
|
|
3808
|
+
type: PropType<boolean>;
|
|
3809
|
+
default: undefined;
|
|
3810
|
+
};
|
|
3811
|
+
multiple: {
|
|
3812
|
+
type: PropType<boolean>;
|
|
3813
|
+
default: boolean;
|
|
3814
|
+
};
|
|
3815
|
+
loading: {
|
|
3816
|
+
type: PropType<boolean>;
|
|
3817
|
+
default: boolean;
|
|
3818
|
+
};
|
|
3819
|
+
collab: {
|
|
3820
|
+
type: PropType<{
|
|
3821
|
+
room: string;
|
|
3822
|
+
field: string;
|
|
3823
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3824
|
+
}>;
|
|
3825
|
+
default: undefined;
|
|
3826
|
+
};
|
|
3827
|
+
required: {
|
|
3828
|
+
type: PropType<boolean>;
|
|
3829
|
+
default: undefined;
|
|
3830
|
+
};
|
|
3831
|
+
label: {
|
|
3832
|
+
type: PropType<string>;
|
|
3833
|
+
default: undefined;
|
|
3834
|
+
};
|
|
3835
|
+
hideLabel: {
|
|
3836
|
+
type: PropType<boolean>;
|
|
3837
|
+
default: boolean;
|
|
3838
|
+
};
|
|
3839
|
+
clearable: {
|
|
3840
|
+
type: PropType<boolean>;
|
|
3841
|
+
default: boolean;
|
|
3842
|
+
};
|
|
3843
|
+
hideDetails: {
|
|
3844
|
+
type: PropType<boolean>;
|
|
3845
|
+
default: boolean;
|
|
3846
|
+
};
|
|
3847
|
+
errorMessage: {
|
|
3848
|
+
type: PropType<string>;
|
|
3849
|
+
default: undefined;
|
|
3850
|
+
};
|
|
3851
|
+
v: {
|
|
3852
|
+
type: PropType<any>;
|
|
3853
|
+
default: null;
|
|
3854
|
+
};
|
|
3855
|
+
chips: {
|
|
3856
|
+
type: PropType<boolean>;
|
|
3857
|
+
default: boolean;
|
|
3858
|
+
};
|
|
3859
|
+
fetchItems: {
|
|
3860
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3861
|
+
required: true;
|
|
3862
|
+
};
|
|
3863
|
+
fetchItemsByIds: {
|
|
3864
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3865
|
+
required: true;
|
|
3866
|
+
};
|
|
3867
|
+
innerFilter: {
|
|
3868
|
+
type: PropType<FilterBag>;
|
|
3869
|
+
required: true;
|
|
3870
|
+
};
|
|
3871
|
+
filterByField: {
|
|
3872
|
+
type: PropType<string>;
|
|
3873
|
+
default: string;
|
|
3874
|
+
};
|
|
3875
|
+
filterSortBy: {
|
|
3876
|
+
type: PropType<string | null>;
|
|
3877
|
+
default: string;
|
|
3878
|
+
};
|
|
3879
|
+
disableInitFetch: {
|
|
3880
|
+
type: PropType<boolean>;
|
|
3881
|
+
default: boolean;
|
|
3882
|
+
};
|
|
3883
|
+
}>> & {
|
|
3734
3884
|
onFocus?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3735
3885
|
onBlur?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3736
3886
|
onSearchChange?: ((data: string) => any) | undefined;
|
|
@@ -3751,6 +3901,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3751
3901
|
hideDetails: boolean;
|
|
3752
3902
|
errorMessage: string;
|
|
3753
3903
|
v: any;
|
|
3904
|
+
chips: boolean;
|
|
3754
3905
|
filterByField: string;
|
|
3755
3906
|
filterSortBy: string | null;
|
|
3756
3907
|
disableInitFetch: boolean;
|
|
@@ -3760,7 +3911,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3760
3911
|
}): any;
|
|
3761
3912
|
}>;
|
|
3762
3913
|
|
|
3763
|
-
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<
|
|
3914
|
+
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3764
3915
|
modelValue: any;
|
|
3765
3916
|
label?: string | undefined;
|
|
3766
3917
|
required?: boolean | undefined;
|
|
@@ -3796,7 +3947,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3796
3947
|
focus: (data: string | number | string[] | number[] | null | undefined) => void;
|
|
3797
3948
|
searchChange: (data: string) => void;
|
|
3798
3949
|
searchChangeDebounced: (data: string) => void;
|
|
3799
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3950
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3800
3951
|
modelValue: any;
|
|
3801
3952
|
label?: string | undefined;
|
|
3802
3953
|
required?: boolean | undefined;
|
|
@@ -3847,7 +3998,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3847
3998
|
filterSortBy: string | null;
|
|
3848
3999
|
}, {}>;
|
|
3849
4000
|
|
|
3850
|
-
export declare const AFormRemoteCheckbox: DefineComponent<
|
|
4001
|
+
export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3851
4002
|
modelValue: boolean;
|
|
3852
4003
|
callbackToTrue: () => Promise<boolean>;
|
|
3853
4004
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3862,7 +4013,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3862
4013
|
v: null;
|
|
3863
4014
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3864
4015
|
"update:modelValue": (data: boolean) => void;
|
|
3865
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4016
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3866
4017
|
modelValue: boolean;
|
|
3867
4018
|
callbackToTrue: () => Promise<boolean>;
|
|
3868
4019
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3884,7 +4035,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3884
4035
|
v: any;
|
|
3885
4036
|
}, {}>;
|
|
3886
4037
|
|
|
3887
|
-
export declare const AFormRemoteSwitch: DefineComponent<
|
|
4038
|
+
export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3888
4039
|
modelValue: boolean;
|
|
3889
4040
|
callbackToTrue: () => Promise<boolean>;
|
|
3890
4041
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3899,7 +4050,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3899
4050
|
v: null;
|
|
3900
4051
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3901
4052
|
"update:modelValue": (data: boolean) => void;
|
|
3902
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4053
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3903
4054
|
modelValue: boolean;
|
|
3904
4055
|
callbackToTrue: () => Promise<boolean>;
|
|
3905
4056
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3921,7 +4072,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3921
4072
|
v: any;
|
|
3922
4073
|
}, {}>;
|
|
3923
4074
|
|
|
3924
|
-
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
4075
|
+
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3925
4076
|
modelValue: boolean;
|
|
3926
4077
|
label?: string | undefined;
|
|
3927
4078
|
dataCy?: string | undefined;
|
|
@@ -3938,7 +4089,7 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
|
|
|
3938
4089
|
"update:modelValue": (data: boolean) => void;
|
|
3939
4090
|
blur: (data: boolean) => void;
|
|
3940
4091
|
focus: (data: boolean) => void;
|
|
3941
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4092
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3942
4093
|
modelValue: boolean;
|
|
3943
4094
|
label?: string | undefined;
|
|
3944
4095
|
dataCy?: string | undefined;
|
|
@@ -4155,7 +4306,7 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4155
4306
|
}): any;
|
|
4156
4307
|
}>;
|
|
4157
4308
|
|
|
4158
|
-
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
4309
|
+
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4159
4310
|
modelValue: any;
|
|
4160
4311
|
items: any[];
|
|
4161
4312
|
label?: string | undefined;
|
|
@@ -4185,7 +4336,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4185
4336
|
"update:modelValue": (data: any) => void;
|
|
4186
4337
|
blur: (data: any) => void;
|
|
4187
4338
|
focus: (data: any) => void;
|
|
4188
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4339
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4189
4340
|
modelValue: any;
|
|
4190
4341
|
items: any[];
|
|
4191
4342
|
label?: string | undefined;
|
|
@@ -4237,7 +4388,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4237
4388
|
}): any;
|
|
4238
4389
|
}>;
|
|
4239
4390
|
|
|
4240
|
-
export declare const AIconGroup: DefineComponent<
|
|
4391
|
+
export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4241
4392
|
mainIcon: string;
|
|
4242
4393
|
secondaryIcon?: string | null | undefined;
|
|
4243
4394
|
secondaryText?: string | null | undefined;
|
|
@@ -4246,7 +4397,7 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
4246
4397
|
secondaryIcon: null;
|
|
4247
4398
|
secondaryText: null;
|
|
4248
4399
|
size: string;
|
|
4249
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4400
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4250
4401
|
mainIcon: string;
|
|
4251
4402
|
secondaryIcon?: string | null | undefined;
|
|
4252
4403
|
secondaryText?: string | null | undefined;
|
|
@@ -4278,8 +4429,8 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4278
4429
|
type: PropType<string>;
|
|
4279
4430
|
default: string;
|
|
4280
4431
|
};
|
|
4281
|
-
|
|
4282
|
-
type: PropType<
|
|
4432
|
+
selectLicences: {
|
|
4433
|
+
type: PropType<number[]>;
|
|
4283
4434
|
required: true;
|
|
4284
4435
|
};
|
|
4285
4436
|
labelT: {
|
|
@@ -4308,8 +4459,8 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4308
4459
|
type: PropType<string>;
|
|
4309
4460
|
default: string;
|
|
4310
4461
|
};
|
|
4311
|
-
|
|
4312
|
-
type: PropType<
|
|
4462
|
+
selectLicences: {
|
|
4463
|
+
type: PropType<number[]>;
|
|
4313
4464
|
required: true;
|
|
4314
4465
|
};
|
|
4315
4466
|
labelT: {
|
|
@@ -4323,11 +4474,11 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4323
4474
|
labelT: string;
|
|
4324
4475
|
}, {}>;
|
|
4325
4476
|
|
|
4326
|
-
export declare const AImageWidget: DefineComponent<
|
|
4477
|
+
export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4327
4478
|
modelValue: IntegerIdNullable;
|
|
4328
4479
|
queueKey: UploadQueueKey;
|
|
4329
|
-
|
|
4330
|
-
|
|
4480
|
+
uploadLicence: IntegerId;
|
|
4481
|
+
selectLicences: IntegerId[];
|
|
4331
4482
|
image?: ImageAware | undefined;
|
|
4332
4483
|
configName?: string | undefined;
|
|
4333
4484
|
collab?: CollabComponentConfig;
|
|
@@ -4360,11 +4511,11 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4360
4511
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4361
4512
|
"update:modelValue": (data: IntegerIdNullable) => void;
|
|
4362
4513
|
afterMetadataSaveSuccess: () => void;
|
|
4363
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4514
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4364
4515
|
modelValue: IntegerIdNullable;
|
|
4365
4516
|
queueKey: UploadQueueKey;
|
|
4366
|
-
|
|
4367
|
-
|
|
4517
|
+
uploadLicence: IntegerId;
|
|
4518
|
+
selectLicences: IntegerId[];
|
|
4368
4519
|
image?: ImageAware | undefined;
|
|
4369
4520
|
configName?: string | undefined;
|
|
4370
4521
|
collab?: CollabComponentConfig;
|
|
@@ -4414,11 +4565,11 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4414
4565
|
callDeleteApiOnRemove: boolean;
|
|
4415
4566
|
}, {}>;
|
|
4416
4567
|
|
|
4417
|
-
export declare const AImageWidgetMultiple: DefineComponent<
|
|
4568
|
+
export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4418
4569
|
modelValue: IntegerId[];
|
|
4419
4570
|
queueKey: UploadQueueKey;
|
|
4420
|
-
|
|
4421
|
-
|
|
4571
|
+
uploadLicence: IntegerId;
|
|
4572
|
+
selectLicences: IntegerId[];
|
|
4422
4573
|
configName?: string | undefined;
|
|
4423
4574
|
label?: string | undefined;
|
|
4424
4575
|
readonly?: boolean | undefined;
|
|
@@ -4440,11 +4591,11 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4440
4591
|
saveImages: () => Promise<boolean>;
|
|
4441
4592
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4442
4593
|
"update:modelValue": (data: number[]) => void;
|
|
4443
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4594
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4444
4595
|
modelValue: IntegerId[];
|
|
4445
4596
|
queueKey: UploadQueueKey;
|
|
4446
|
-
|
|
4447
|
-
|
|
4597
|
+
uploadLicence: IntegerId;
|
|
4598
|
+
selectLicences: IntegerId[];
|
|
4448
4599
|
configName?: string | undefined;
|
|
4449
4600
|
label?: string | undefined;
|
|
4450
4601
|
readonly?: boolean | undefined;
|
|
@@ -4473,7 +4624,7 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4473
4624
|
callDeleteApiOnRemove: boolean;
|
|
4474
4625
|
}, {}>;
|
|
4475
4626
|
|
|
4476
|
-
export declare const AImageWidgetMultipleSimple: DefineComponent<
|
|
4627
|
+
export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4477
4628
|
modelValue: IntegerId[];
|
|
4478
4629
|
images?: ImageAware[] | undefined;
|
|
4479
4630
|
configName?: string | undefined;
|
|
@@ -4493,7 +4644,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4493
4644
|
aspectRatio: number;
|
|
4494
4645
|
showDescription: boolean;
|
|
4495
4646
|
showSource: boolean;
|
|
4496
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4647
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4497
4648
|
modelValue: IntegerId[];
|
|
4498
4649
|
images?: ImageAware[] | undefined;
|
|
4499
4650
|
configName?: string | undefined;
|
|
@@ -4524,7 +4675,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4524
4675
|
images: ImageAware[];
|
|
4525
4676
|
}, {}>;
|
|
4526
4677
|
|
|
4527
|
-
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<
|
|
4678
|
+
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4528
4679
|
modelValue: IntegerIdNullable | undefined;
|
|
4529
4680
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4530
4681
|
configName?: string | undefined;
|
|
@@ -4543,7 +4694,7 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
|
|
|
4543
4694
|
aspectRatio: number;
|
|
4544
4695
|
showDescription: boolean;
|
|
4545
4696
|
showSource: boolean;
|
|
4546
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4697
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4547
4698
|
modelValue: IntegerIdNullable | undefined;
|
|
4548
4699
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4549
4700
|
configName?: string | undefined;
|
|
@@ -4613,12 +4764,12 @@ export declare const AJobBaseCreateForm: DefineComponent<{
|
|
|
4613
4764
|
};
|
|
4614
4765
|
}>>, {}, {}>;
|
|
4615
4766
|
|
|
4616
|
-
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<
|
|
4767
|
+
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4617
4768
|
job: JobBase<`job${string}`>;
|
|
4618
4769
|
loading?: boolean | undefined;
|
|
4619
4770
|
}>, {
|
|
4620
4771
|
loading: boolean;
|
|
4621
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4772
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4622
4773
|
job: JobBase<`job${string}`>;
|
|
4623
4774
|
loading?: boolean | undefined;
|
|
4624
4775
|
}>, {
|
|
@@ -4629,15 +4780,15 @@ export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponen
|
|
|
4629
4780
|
"resource-name"?(_: {}): any;
|
|
4630
4781
|
}>;
|
|
4631
4782
|
|
|
4632
|
-
export declare const AJobPriorityChip: DefineComponent<
|
|
4783
|
+
export declare const AJobPriorityChip: DefineComponent<__VLS_TypePropsToRuntimeProps_61<{
|
|
4633
4784
|
priority: number;
|
|
4634
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4785
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_61<{
|
|
4635
4786
|
priority: number;
|
|
4636
4787
|
}>>>, {}, {}>;
|
|
4637
4788
|
|
|
4638
|
-
export declare const AJobStatusChip: DefineComponent<
|
|
4789
|
+
export declare const AJobStatusChip: DefineComponent<__VLS_TypePropsToRuntimeProps_32<{
|
|
4639
4790
|
value: JobStatus;
|
|
4640
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4791
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_32<{
|
|
4641
4792
|
value: JobStatus;
|
|
4642
4793
|
}>>>, {}, {}>;
|
|
4643
4794
|
|
|
@@ -4647,13 +4798,13 @@ export declare const ALanguageSelect: DefineComponent<{}, {}, {}, {}, {}, Compon
|
|
|
4647
4798
|
onAfterChange?: ((code: LanguageCode) => any) | undefined;
|
|
4648
4799
|
}, {}, {}>;
|
|
4649
4800
|
|
|
4650
|
-
export declare const ALogData: DefineComponent<
|
|
4801
|
+
export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4651
4802
|
data: any;
|
|
4652
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4803
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4653
4804
|
data: any;
|
|
4654
4805
|
}>, {}>>>, {}, {}>;
|
|
4655
4806
|
|
|
4656
|
-
export declare const ALoginView: DefineComponent<
|
|
4807
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4657
4808
|
title?: string | undefined;
|
|
4658
4809
|
logoUrl?: string | undefined;
|
|
4659
4810
|
loginUrl?: undefined | (() => string);
|
|
@@ -4663,7 +4814,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4663
4814
|
logoUrl: undefined;
|
|
4664
4815
|
loginUrl: undefined;
|
|
4665
4816
|
dataCy: string;
|
|
4666
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4817
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4667
4818
|
title?: string | undefined;
|
|
4668
4819
|
logoUrl?: string | undefined;
|
|
4669
4820
|
loginUrl?: undefined | (() => string);
|
|
@@ -4680,17 +4831,17 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4680
4831
|
loginUrl: () => string;
|
|
4681
4832
|
}, {}>;
|
|
4682
4833
|
|
|
4683
|
-
export declare const ALogLevelChip: DefineComponent<
|
|
4834
|
+
export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4684
4835
|
level: LogLevel;
|
|
4685
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4836
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4686
4837
|
level: LogLevel;
|
|
4687
4838
|
}>, {}>>>, {}, {}>;
|
|
4688
4839
|
|
|
4689
|
-
export declare const ALogoutView: DefineComponent<
|
|
4840
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4690
4841
|
logoutUrl?: undefined | (() => string);
|
|
4691
4842
|
}>, {
|
|
4692
4843
|
logoutUrl: undefined;
|
|
4693
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4844
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4694
4845
|
logoutUrl?: undefined | (() => string);
|
|
4695
4846
|
}>, {
|
|
4696
4847
|
logoutUrl: undefined;
|
|
@@ -4698,9 +4849,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_Ty
|
|
|
4698
4849
|
logoutUrl: () => string;
|
|
4699
4850
|
}, {}>;
|
|
4700
4851
|
|
|
4701
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4852
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4702
4853
|
returnRouteName: string;
|
|
4703
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4854
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4704
4855
|
returnRouteName: string;
|
|
4705
4856
|
}>, {}>>>, {}, {}>;
|
|
4706
4857
|
|
|
@@ -4737,7 +4888,8 @@ export declare const AnzuSystemsCommonAdmin: {
|
|
|
4737
4888
|
install<T extends `${string}_${string}_${string}` = `${string}_${string}_${string}`>(app: App, options: PluginOptions<T>): void;
|
|
4738
4889
|
};
|
|
4739
4890
|
|
|
4740
|
-
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, AnzuUserMinimal {
|
|
4891
|
+
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, Omit<AnzuUserMinimal, 'id'> {
|
|
4892
|
+
id?: IntegerIdNullable;
|
|
4741
4893
|
enabled: boolean;
|
|
4742
4894
|
roles: string[];
|
|
4743
4895
|
permissionGroups: IntegerId[];
|
|
@@ -4879,7 +5031,7 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
|
|
|
4879
5031
|
|
|
4880
5032
|
export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
|
|
4881
5033
|
|
|
4882
|
-
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<
|
|
5034
|
+
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4883
5035
|
modelValue: any;
|
|
4884
5036
|
dirty?: Set<string | number> | undefined;
|
|
4885
5037
|
keyField?: string | undefined;
|
|
@@ -4889,6 +5041,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4889
5041
|
disableDefaultSort?: boolean | undefined;
|
|
4890
5042
|
updatePosition?: boolean | undefined;
|
|
4891
5043
|
positionField?: string | undefined;
|
|
5044
|
+
positionMultiplier?: number | undefined;
|
|
4892
5045
|
showAddAfterButton?: boolean | undefined;
|
|
4893
5046
|
showAddLastButton?: boolean | undefined;
|
|
4894
5047
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4903,6 +5056,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4903
5056
|
disableDefaultSort: boolean;
|
|
4904
5057
|
updatePosition: boolean;
|
|
4905
5058
|
positionField: string;
|
|
5059
|
+
positionMultiplier: number;
|
|
4906
5060
|
showAddAfterButton: boolean;
|
|
4907
5061
|
showAddLastButton: boolean;
|
|
4908
5062
|
showDeleteButton: boolean;
|
|
@@ -4919,12 +5073,13 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4919
5073
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4920
5074
|
"update:modelValue": (data: any[]) => void;
|
|
4921
5075
|
"update:dirty": (data: (string | number)[]) => void;
|
|
5076
|
+
onStart: () => void;
|
|
4922
5077
|
onEnd: (data: SortableItemNewPositions) => void;
|
|
4923
5078
|
onAddAfter: (data: SortableItem<any>) => void;
|
|
4924
5079
|
onAddLast: (data: any) => void;
|
|
4925
5080
|
onEdit: (data: SortableItem<any>) => void;
|
|
4926
5081
|
onDelete: (data: SortableItem<any>) => void;
|
|
4927
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5082
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4928
5083
|
modelValue: any;
|
|
4929
5084
|
dirty?: Set<string | number> | undefined;
|
|
4930
5085
|
keyField?: string | undefined;
|
|
@@ -4934,6 +5089,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4934
5089
|
disableDefaultSort?: boolean | undefined;
|
|
4935
5090
|
updatePosition?: boolean | undefined;
|
|
4936
5091
|
positionField?: string | undefined;
|
|
5092
|
+
positionMultiplier?: number | undefined;
|
|
4937
5093
|
showAddAfterButton?: boolean | undefined;
|
|
4938
5094
|
showAddLastButton?: boolean | undefined;
|
|
4939
5095
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4948,6 +5104,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4948
5104
|
disableDefaultSort: boolean;
|
|
4949
5105
|
updatePosition: boolean;
|
|
4950
5106
|
positionField: string;
|
|
5107
|
+
positionMultiplier: number;
|
|
4951
5108
|
showAddAfterButton: boolean;
|
|
4952
5109
|
showAddLastButton: boolean;
|
|
4953
5110
|
showDeleteButton: boolean;
|
|
@@ -4956,6 +5113,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4956
5113
|
}>>> & {
|
|
4957
5114
|
"onUpdate:modelValue"?: ((data: any[]) => any) | undefined;
|
|
4958
5115
|
onOnEnd?: ((data: SortableItemNewPositions) => any) | undefined;
|
|
5116
|
+
onOnStart?: (() => any) | undefined;
|
|
4959
5117
|
"onUpdate:dirty"?: ((data: (string | number)[]) => any) | undefined;
|
|
4960
5118
|
onOnAddAfter?: ((data: SortableItem<any>) => any) | undefined;
|
|
4961
5119
|
onOnAddLast?: ((data: any) => any) | undefined;
|
|
@@ -4970,18 +5128,25 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4970
5128
|
disableDefaultSort: boolean;
|
|
4971
5129
|
updatePosition: boolean;
|
|
4972
5130
|
positionField: string;
|
|
5131
|
+
positionMultiplier: number;
|
|
4973
5132
|
showAddAfterButton: boolean;
|
|
4974
5133
|
showAddLastButton: boolean;
|
|
4975
5134
|
showDeleteButton: boolean;
|
|
4976
5135
|
showEditButton: boolean;
|
|
4977
5136
|
addLastButtonT: string;
|
|
4978
5137
|
}, {}>, {
|
|
5138
|
+
itemBefore?(_: {
|
|
5139
|
+
item: SortableItem<any>;
|
|
5140
|
+
}): any;
|
|
4979
5141
|
item?(_: {
|
|
4980
5142
|
item: SortableItem<any>;
|
|
4981
5143
|
}): any;
|
|
4982
5144
|
buttons?(_: {
|
|
4983
5145
|
item: SortableItem<any>;
|
|
4984
5146
|
}): any;
|
|
5147
|
+
itemAfter?(_: {
|
|
5148
|
+
item: SortableItem<any>;
|
|
5149
|
+
}): any;
|
|
4985
5150
|
"add-last-activator"?(_: {
|
|
4986
5151
|
props: {
|
|
4987
5152
|
onClick: () => void;
|
|
@@ -4989,7 +5154,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4989
5154
|
}): any;
|
|
4990
5155
|
}>;
|
|
4991
5156
|
|
|
4992
|
-
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<
|
|
5157
|
+
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
4993
5158
|
modelValue: SortableNested<any>;
|
|
4994
5159
|
maxDepth: number;
|
|
4995
5160
|
disableDraggable?: boolean | undefined;
|
|
@@ -5025,7 +5190,7 @@ export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent
|
|
|
5025
5190
|
onAddLast: (data: SortableNestedItem<any> | null) => void;
|
|
5026
5191
|
onEdit: (data: SortableNestedItem<any>) => void;
|
|
5027
5192
|
onDelete: (data: SortableNestedItem<any>) => void;
|
|
5028
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5193
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
5029
5194
|
modelValue: SortableNested<any>;
|
|
5030
5195
|
maxDepth: number;
|
|
5031
5196
|
disableDraggable?: boolean | undefined;
|
|
@@ -5106,6 +5271,7 @@ export declare interface AssetFileAudio extends AnzuUserAndTimeTrackingAware, As
|
|
|
5106
5271
|
audioAttributes: AudioAttributes;
|
|
5107
5272
|
originAssetFile: DocIdNullable;
|
|
5108
5273
|
links?: AssetFileLinks;
|
|
5274
|
+
imagePreview: AssetFileImagePreviewNullable;
|
|
5109
5275
|
_resourceName: 'audioFile';
|
|
5110
5276
|
}
|
|
5111
5277
|
|
|
@@ -5411,14 +5577,14 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5411
5577
|
} | undefined;
|
|
5412
5578
|
};
|
|
5413
5579
|
|
|
5414
|
-
export declare const ASystemBar: DefineComponent<
|
|
5580
|
+
export declare const ASystemBar: DefineComponent<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5415
5581
|
currentVersion: string;
|
|
5416
5582
|
checkInterval?: number | undefined;
|
|
5417
5583
|
jsonRelativePath?: string | undefined;
|
|
5418
5584
|
}>, {
|
|
5419
5585
|
checkInterval: number;
|
|
5420
5586
|
jsonRelativePath: string;
|
|
5421
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5587
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5422
5588
|
currentVersion: string;
|
|
5423
5589
|
checkInterval?: number | undefined;
|
|
5424
5590
|
jsonRelativePath?: string | undefined;
|
|
@@ -5440,7 +5606,7 @@ export declare const ASystemEntityScope: __VLS_WithTemplateSlots_4<DefineCompone
|
|
|
5440
5606
|
default?(_: {}): any;
|
|
5441
5607
|
}>;
|
|
5442
5608
|
|
|
5443
|
-
export declare const ATableCopyIdButton: DefineComponent<
|
|
5609
|
+
export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5444
5610
|
id: number | string;
|
|
5445
5611
|
buttonT?: string | undefined;
|
|
5446
5612
|
buttonClass?: string | undefined;
|
|
@@ -5455,7 +5621,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5455
5621
|
notifyT: string;
|
|
5456
5622
|
dataCy: string;
|
|
5457
5623
|
size: string;
|
|
5458
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5624
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5459
5625
|
id: number | string;
|
|
5460
5626
|
buttonT?: string | undefined;
|
|
5461
5627
|
buttonClass?: string | undefined;
|
|
@@ -5479,7 +5645,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5479
5645
|
iconT: string;
|
|
5480
5646
|
}, {}>;
|
|
5481
5647
|
|
|
5482
|
-
export declare const ATableDetailButton: DefineComponent<
|
|
5648
|
+
export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5483
5649
|
routeName: string;
|
|
5484
5650
|
recordId?: number | string | undefined;
|
|
5485
5651
|
routeParams?: any | undefined;
|
|
@@ -5492,7 +5658,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5492
5658
|
buttonT: string;
|
|
5493
5659
|
buttonClass: string;
|
|
5494
5660
|
dataCy: string;
|
|
5495
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5661
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5496
5662
|
routeName: string;
|
|
5497
5663
|
recordId?: number | string | undefined;
|
|
5498
5664
|
routeParams?: any | undefined;
|
|
@@ -5513,7 +5679,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5513
5679
|
recordId: string | number;
|
|
5514
5680
|
}, {}>;
|
|
5515
5681
|
|
|
5516
|
-
export declare const ATableEditButton: DefineComponent<
|
|
5682
|
+
export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5517
5683
|
routeName: string;
|
|
5518
5684
|
recordId?: number | string | undefined;
|
|
5519
5685
|
routeParams?: any | undefined;
|
|
@@ -5526,7 +5692,7 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5526
5692
|
buttonT: string;
|
|
5527
5693
|
buttonClass: string;
|
|
5528
5694
|
dataCy: string;
|
|
5529
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5695
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5530
5696
|
routeName: string;
|
|
5531
5697
|
recordId?: number | string | undefined;
|
|
5532
5698
|
routeParams?: any | undefined;
|
|
@@ -5549,14 +5715,14 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5549
5715
|
|
|
5550
5716
|
export declare const AThemeSelect: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
5551
5717
|
|
|
5552
|
-
export declare const ATimeTrackingFields: DefineComponent<
|
|
5718
|
+
export declare const ATimeTrackingFields: DefineComponent<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5553
5719
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5554
5720
|
hideCreatedAt?: boolean | undefined;
|
|
5555
5721
|
hideModifiedAt?: boolean | undefined;
|
|
5556
5722
|
}>, {
|
|
5557
5723
|
hideCreatedAt: boolean;
|
|
5558
5724
|
hideModifiedAt: boolean;
|
|
5559
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5725
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5560
5726
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5561
5727
|
hideCreatedAt?: boolean | undefined;
|
|
5562
5728
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5579,13 +5745,13 @@ declare interface AudioAttributes {
|
|
|
5579
5745
|
bitrate: number;
|
|
5580
5746
|
}
|
|
5581
5747
|
|
|
5582
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5748
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5583
5749
|
returnRouteName: string;
|
|
5584
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5750
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5585
5751
|
returnRouteName: string;
|
|
5586
5752
|
}>, {}>>>, {}, {}>;
|
|
5587
5753
|
|
|
5588
|
-
export declare const AUserAndTimeTrackingFields: DefineComponent<
|
|
5754
|
+
export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5589
5755
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5590
5756
|
hideCreatedAt?: boolean | undefined;
|
|
5591
5757
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5596,7 +5762,7 @@ export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefau
|
|
|
5596
5762
|
hideModifiedAt: boolean;
|
|
5597
5763
|
hideCreatedBy: boolean;
|
|
5598
5764
|
hideModifiedBy: boolean;
|
|
5599
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5765
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5600
5766
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5601
5767
|
hideCreatedAt?: boolean | undefined;
|
|
5602
5768
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -6033,7 +6199,7 @@ export declare interface CustomDataFormElementAttributes {
|
|
|
6033
6199
|
export declare const CustomDataFormElementType: {
|
|
6034
6200
|
readonly String: "string";
|
|
6035
6201
|
readonly Integer: "integer";
|
|
6036
|
-
readonly StringArray: "
|
|
6202
|
+
readonly StringArray: "stringArray";
|
|
6037
6203
|
readonly Boolean: "boolean";
|
|
6038
6204
|
};
|
|
6039
6205
|
|
|
@@ -6051,6 +6217,105 @@ export declare interface DamAssetLicenceMinimal {
|
|
|
6051
6217
|
name: string;
|
|
6052
6218
|
}
|
|
6053
6219
|
|
|
6220
|
+
export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<{
|
|
6221
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6222
|
+
dataCy: {
|
|
6223
|
+
type: PropType<string>;
|
|
6224
|
+
default: string;
|
|
6225
|
+
};
|
|
6226
|
+
multiple: {
|
|
6227
|
+
type: PropType<boolean>;
|
|
6228
|
+
default: boolean;
|
|
6229
|
+
};
|
|
6230
|
+
required: {
|
|
6231
|
+
type: PropType<boolean>;
|
|
6232
|
+
default: undefined;
|
|
6233
|
+
};
|
|
6234
|
+
modelValue: {
|
|
6235
|
+
type: PropType<any>;
|
|
6236
|
+
required: true;
|
|
6237
|
+
};
|
|
6238
|
+
label: {
|
|
6239
|
+
type: PropType<string>;
|
|
6240
|
+
default: undefined;
|
|
6241
|
+
};
|
|
6242
|
+
clearable: {
|
|
6243
|
+
type: PropType<boolean>;
|
|
6244
|
+
default: boolean;
|
|
6245
|
+
};
|
|
6246
|
+
hideDetails: {
|
|
6247
|
+
type: PropType<boolean>;
|
|
6248
|
+
default: undefined;
|
|
6249
|
+
};
|
|
6250
|
+
disableInitFetch: {
|
|
6251
|
+
type: PropType<boolean>;
|
|
6252
|
+
default: boolean;
|
|
6253
|
+
};
|
|
6254
|
+
extSystemId: {
|
|
6255
|
+
type: PropType<number | null>;
|
|
6256
|
+
default: null;
|
|
6257
|
+
};
|
|
6258
|
+
client: {
|
|
6259
|
+
type: PropType<() => AxiosInstance>;
|
|
6260
|
+
required: true;
|
|
6261
|
+
};
|
|
6262
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6263
|
+
"update:modelValue": (data: any) => void;
|
|
6264
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
6265
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6266
|
+
dataCy: {
|
|
6267
|
+
type: PropType<string>;
|
|
6268
|
+
default: string;
|
|
6269
|
+
};
|
|
6270
|
+
multiple: {
|
|
6271
|
+
type: PropType<boolean>;
|
|
6272
|
+
default: boolean;
|
|
6273
|
+
};
|
|
6274
|
+
required: {
|
|
6275
|
+
type: PropType<boolean>;
|
|
6276
|
+
default: undefined;
|
|
6277
|
+
};
|
|
6278
|
+
modelValue: {
|
|
6279
|
+
type: PropType<any>;
|
|
6280
|
+
required: true;
|
|
6281
|
+
};
|
|
6282
|
+
label: {
|
|
6283
|
+
type: PropType<string>;
|
|
6284
|
+
default: undefined;
|
|
6285
|
+
};
|
|
6286
|
+
clearable: {
|
|
6287
|
+
type: PropType<boolean>;
|
|
6288
|
+
default: boolean;
|
|
6289
|
+
};
|
|
6290
|
+
hideDetails: {
|
|
6291
|
+
type: PropType<boolean>;
|
|
6292
|
+
default: undefined;
|
|
6293
|
+
};
|
|
6294
|
+
disableInitFetch: {
|
|
6295
|
+
type: PropType<boolean>;
|
|
6296
|
+
default: boolean;
|
|
6297
|
+
};
|
|
6298
|
+
extSystemId: {
|
|
6299
|
+
type: PropType<number | null>;
|
|
6300
|
+
default: null;
|
|
6301
|
+
};
|
|
6302
|
+
client: {
|
|
6303
|
+
type: PropType<() => AxiosInstance>;
|
|
6304
|
+
required: true;
|
|
6305
|
+
};
|
|
6306
|
+
}>> & {
|
|
6307
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6308
|
+
}, {
|
|
6309
|
+
dataCy: string;
|
|
6310
|
+
multiple: boolean;
|
|
6311
|
+
required: boolean;
|
|
6312
|
+
label: string;
|
|
6313
|
+
clearable: boolean;
|
|
6314
|
+
hideDetails: boolean;
|
|
6315
|
+
disableInitFetch: boolean;
|
|
6316
|
+
extSystemId: IntegerId | null;
|
|
6317
|
+
}, {}>;
|
|
6318
|
+
|
|
6054
6319
|
export declare enum DamAssetStatus {
|
|
6055
6320
|
Draft = "draft",
|
|
6056
6321
|
WithFile = "with_file",
|
|
@@ -6086,6 +6351,18 @@ export declare enum DamAuthorType {
|
|
|
6086
6351
|
Default = "none"
|
|
6087
6352
|
}
|
|
6088
6353
|
|
|
6354
|
+
declare interface DamConfigLicenceExtSystem {
|
|
6355
|
+
extSystem: IntegerId;
|
|
6356
|
+
name: string;
|
|
6357
|
+
}
|
|
6358
|
+
|
|
6359
|
+
declare interface DamConfigLicenceExtSystemReturnType {
|
|
6360
|
+
licence: IntegerId;
|
|
6361
|
+
extSystem: IntegerId;
|
|
6362
|
+
licenceName: string;
|
|
6363
|
+
extSystemConfig: DamExtSystemConfig;
|
|
6364
|
+
}
|
|
6365
|
+
|
|
6089
6366
|
export declare const damCurrentUser: Ref<{
|
|
6090
6367
|
selectedLicence: {
|
|
6091
6368
|
id: number;
|
|
@@ -6116,6 +6393,7 @@ export declare const damCurrentUser: Ref<{
|
|
|
6116
6393
|
};
|
|
6117
6394
|
allowedAssetExternalProviders: string[];
|
|
6118
6395
|
allowedDistributionServices: string[];
|
|
6396
|
+
id?: IntegerIdNullable | undefined;
|
|
6119
6397
|
enabled: boolean;
|
|
6120
6398
|
roles: string[];
|
|
6121
6399
|
permissionGroups: number[];
|
|
@@ -6127,7 +6405,6 @@ export declare const damCurrentUser: Ref<{
|
|
|
6127
6405
|
modifiedAt: string;
|
|
6128
6406
|
modifiedBy: IntegerIdNullable;
|
|
6129
6407
|
createdBy: IntegerIdNullable;
|
|
6130
|
-
id: number;
|
|
6131
6408
|
email: string;
|
|
6132
6409
|
} | undefined>;
|
|
6133
6410
|
|
|
@@ -6190,6 +6467,38 @@ export declare enum DamDistributionRequirementStrategy {
|
|
|
6190
6467
|
|
|
6191
6468
|
export declare type DamDistributionServiceName = string;
|
|
6192
6469
|
|
|
6470
|
+
export declare const DamDistributionServiceSelect: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6471
|
+
modelValue: string[];
|
|
6472
|
+
client: () => AxiosInstance;
|
|
6473
|
+
multiple?: boolean | undefined;
|
|
6474
|
+
label?: string | undefined;
|
|
6475
|
+
dataCy?: string | undefined;
|
|
6476
|
+
}>, {
|
|
6477
|
+
multiple: boolean;
|
|
6478
|
+
label: undefined;
|
|
6479
|
+
dataCy: string;
|
|
6480
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6481
|
+
"update:modelValue": (data: string[]) => void;
|
|
6482
|
+
blur: (data: string[]) => void;
|
|
6483
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6484
|
+
modelValue: string[];
|
|
6485
|
+
client: () => AxiosInstance;
|
|
6486
|
+
multiple?: boolean | undefined;
|
|
6487
|
+
label?: string | undefined;
|
|
6488
|
+
dataCy?: string | undefined;
|
|
6489
|
+
}>, {
|
|
6490
|
+
multiple: boolean;
|
|
6491
|
+
label: undefined;
|
|
6492
|
+
dataCy: string;
|
|
6493
|
+
}>>> & {
|
|
6494
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6495
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6496
|
+
}, {
|
|
6497
|
+
dataCy: string;
|
|
6498
|
+
multiple: boolean;
|
|
6499
|
+
label: string;
|
|
6500
|
+
}, {}>;
|
|
6501
|
+
|
|
6193
6502
|
export declare enum DamDistributionServiceType {
|
|
6194
6503
|
Youtube = "youtubeDistribution",
|
|
6195
6504
|
Jw = "jwDistribution",
|
|
@@ -6212,6 +6521,38 @@ export declare type DamExternalProviderAssetConfig = Record<DamExternalProviderA
|
|
|
6212
6521
|
|
|
6213
6522
|
export declare type DamExternalProviderAssetName = string;
|
|
6214
6523
|
|
|
6524
|
+
export declare const DamExternalProviderAssetSelect: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6525
|
+
modelValue: string[];
|
|
6526
|
+
client: () => AxiosInstance;
|
|
6527
|
+
multiple?: boolean | undefined;
|
|
6528
|
+
label?: string | undefined;
|
|
6529
|
+
dataCy?: string | undefined;
|
|
6530
|
+
}>, {
|
|
6531
|
+
multiple: boolean;
|
|
6532
|
+
label: undefined;
|
|
6533
|
+
dataCy: string;
|
|
6534
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6535
|
+
"update:modelValue": (data: string[]) => void;
|
|
6536
|
+
blur: (data: string[]) => void;
|
|
6537
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6538
|
+
modelValue: string[];
|
|
6539
|
+
client: () => AxiosInstance;
|
|
6540
|
+
multiple?: boolean | undefined;
|
|
6541
|
+
label?: string | undefined;
|
|
6542
|
+
dataCy?: string | undefined;
|
|
6543
|
+
}>, {
|
|
6544
|
+
multiple: boolean;
|
|
6545
|
+
label: undefined;
|
|
6546
|
+
dataCy: string;
|
|
6547
|
+
}>>> & {
|
|
6548
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6549
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6550
|
+
}, {
|
|
6551
|
+
dataCy: string;
|
|
6552
|
+
multiple: boolean;
|
|
6553
|
+
label: string;
|
|
6554
|
+
}, {}>;
|
|
6555
|
+
|
|
6215
6556
|
export declare interface DamExtSystem extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
6216
6557
|
id: IntegerId;
|
|
6217
6558
|
name: string;
|
|
@@ -6247,6 +6588,56 @@ export declare interface DamExtSystemConfigItem {
|
|
|
6247
6588
|
export declare interface DamExtSystemMinimal extends Pick<DamExtSystem, 'id' | 'name'> {
|
|
6248
6589
|
}
|
|
6249
6590
|
|
|
6591
|
+
export declare const DamExtSystemRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6592
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6593
|
+
client: () => AxiosInstance;
|
|
6594
|
+
label?: string | undefined;
|
|
6595
|
+
required?: boolean | undefined;
|
|
6596
|
+
multiple?: boolean | undefined;
|
|
6597
|
+
clearable?: boolean | undefined;
|
|
6598
|
+
dataCy?: string | undefined;
|
|
6599
|
+
hideDetails?: boolean | undefined;
|
|
6600
|
+
disableInitFetch?: boolean | undefined;
|
|
6601
|
+
}>, {
|
|
6602
|
+
label: undefined;
|
|
6603
|
+
required: undefined;
|
|
6604
|
+
multiple: boolean;
|
|
6605
|
+
clearable: boolean;
|
|
6606
|
+
dataCy: string;
|
|
6607
|
+
hideDetails: undefined;
|
|
6608
|
+
disableInitFetch: boolean;
|
|
6609
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6610
|
+
"update:modelValue": (data: any) => void;
|
|
6611
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6612
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6613
|
+
client: () => AxiosInstance;
|
|
6614
|
+
label?: string | undefined;
|
|
6615
|
+
required?: boolean | undefined;
|
|
6616
|
+
multiple?: boolean | undefined;
|
|
6617
|
+
clearable?: boolean | undefined;
|
|
6618
|
+
dataCy?: string | undefined;
|
|
6619
|
+
hideDetails?: boolean | undefined;
|
|
6620
|
+
disableInitFetch?: boolean | undefined;
|
|
6621
|
+
}>, {
|
|
6622
|
+
label: undefined;
|
|
6623
|
+
required: undefined;
|
|
6624
|
+
multiple: boolean;
|
|
6625
|
+
clearable: boolean;
|
|
6626
|
+
dataCy: string;
|
|
6627
|
+
hideDetails: undefined;
|
|
6628
|
+
disableInitFetch: boolean;
|
|
6629
|
+
}>>> & {
|
|
6630
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6631
|
+
}, {
|
|
6632
|
+
dataCy: string;
|
|
6633
|
+
multiple: boolean;
|
|
6634
|
+
required: boolean;
|
|
6635
|
+
label: string;
|
|
6636
|
+
clearable: boolean;
|
|
6637
|
+
hideDetails: boolean;
|
|
6638
|
+
disableInitFetch: boolean;
|
|
6639
|
+
}, {}>;
|
|
6640
|
+
|
|
6250
6641
|
export declare const damFileTypeFix: (file: File | null | undefined) => string;
|
|
6251
6642
|
|
|
6252
6643
|
export declare interface DamKeyword extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
@@ -6381,6 +6772,19 @@ export declare interface DamUploadStartResponse {
|
|
|
6381
6772
|
asset: DocId;
|
|
6382
6773
|
}
|
|
6383
6774
|
|
|
6775
|
+
export declare interface DamUser extends Omit<AnzuUser, 'id'>, DamUserUpdateDto {
|
|
6776
|
+
}
|
|
6777
|
+
|
|
6778
|
+
export declare interface DamUserUpdateDto {
|
|
6779
|
+
id: IntegerId;
|
|
6780
|
+
assetLicences: IntegerId[];
|
|
6781
|
+
allowedAssetExternalProviders: string[];
|
|
6782
|
+
allowedDistributionServices: string[];
|
|
6783
|
+
adminToExtSystems: IntegerId[];
|
|
6784
|
+
readonly userToExtSystems: IntegerId[];
|
|
6785
|
+
plainPassword?: string;
|
|
6786
|
+
}
|
|
6787
|
+
|
|
6384
6788
|
export declare type DatatableOrderingOption = {
|
|
6385
6789
|
id: number;
|
|
6386
6790
|
titleT: string;
|
|
@@ -6438,8 +6842,14 @@ export declare const dateTimeStartOfDay: (days?: number) => string;
|
|
|
6438
6842
|
|
|
6439
6843
|
export declare const dateTimeToDate: (isoDate: DatetimeUTC | DatetimeUTCNullable | string) => Date;
|
|
6440
6844
|
|
|
6845
|
+
/**
|
|
6846
|
+
* Datetime in RFC 3339 format as string.
|
|
6847
|
+
*/
|
|
6441
6848
|
export declare type DatetimeUTC = string;
|
|
6442
6849
|
|
|
6850
|
+
/**
|
|
6851
|
+
* Datetime in RFC 3339 format as string + null.
|
|
6852
|
+
*/
|
|
6443
6853
|
export declare type DatetimeUTCNullable = string | null;
|
|
6444
6854
|
|
|
6445
6855
|
export declare const dateToUtc: (date: dayjs.ConfigType) => string;
|
|
@@ -6464,8 +6874,14 @@ export declare function defineCached<I extends DocId | IntegerId, T extends Reco
|
|
|
6464
6874
|
isLoaded: (id: I | null | undefined) => boolean;
|
|
6465
6875
|
};
|
|
6466
6876
|
|
|
6877
|
+
/**
|
|
6878
|
+
* UUID v4 as string.
|
|
6879
|
+
*/
|
|
6467
6880
|
export declare type DocId = string;
|
|
6468
6881
|
|
|
6882
|
+
/**
|
|
6883
|
+
* UUID v4 as string + null.
|
|
6884
|
+
*/
|
|
6469
6885
|
export declare type DocIdNullable = string | null;
|
|
6470
6886
|
|
|
6471
6887
|
declare interface DocumentAttributes {
|
|
@@ -6476,8 +6892,22 @@ export declare type EnableDisable = 'enable' | 'disable';
|
|
|
6476
6892
|
|
|
6477
6893
|
export declare const eventClickBlur: (event?: Event) => void;
|
|
6478
6894
|
|
|
6895
|
+
export declare const fetchDamAssetLicenceList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamAssetLicence[]>;
|
|
6896
|
+
|
|
6897
|
+
export declare const fetchDamAssetLicenceListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamAssetLicence[]>;
|
|
6898
|
+
|
|
6479
6899
|
export declare const fetchDamCurrentUser: (client: () => AxiosInstance) => Promise<DamCurrentUserDto>;
|
|
6480
6900
|
|
|
6901
|
+
export declare const fetchDamExtSystemList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamExtSystem[]>;
|
|
6902
|
+
|
|
6903
|
+
export declare const fetchDamExtSystemListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamExtSystem[]>;
|
|
6904
|
+
|
|
6905
|
+
export declare const fetchDamUser: (client: () => AxiosInstance, id: number) => Promise<DamUser>;
|
|
6906
|
+
|
|
6907
|
+
export declare const fetchDamUserList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamUser[]>;
|
|
6908
|
+
|
|
6909
|
+
export declare const fetchDamUserListByIds: (client: () => AxiosInstance, ids: number[]) => Promise<DamUser[]>;
|
|
6910
|
+
|
|
6481
6911
|
declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
6482
6912
|
|
|
6483
6913
|
declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
@@ -6605,6 +7035,8 @@ export declare const i18n: I18n<{
|
|
|
6605
7035
|
refresh: string;
|
|
6606
7036
|
forwards: string;
|
|
6607
7037
|
backwards: string;
|
|
7038
|
+
next: string;
|
|
7039
|
+
prev: string;
|
|
6608
7040
|
loadMore: string;
|
|
6609
7041
|
};
|
|
6610
7042
|
model: {
|
|
@@ -6718,6 +7150,11 @@ export declare const i18n: I18n<{
|
|
|
6718
7150
|
resolvedPermissions: string;
|
|
6719
7151
|
noPermissions: string;
|
|
6720
7152
|
};
|
|
7153
|
+
copyPermissions: {
|
|
7154
|
+
title: string;
|
|
7155
|
+
desc: string;
|
|
7156
|
+
srcUser: string;
|
|
7157
|
+
};
|
|
6721
7158
|
};
|
|
6722
7159
|
job: {
|
|
6723
7160
|
filter: {
|
|
@@ -7287,17 +7724,6 @@ export declare interface ImageCreateUpdateAwareKeyed extends ImageCreateUpdateAw
|
|
|
7287
7724
|
key: string;
|
|
7288
7725
|
}
|
|
7289
7726
|
|
|
7290
|
-
export declare interface ImageWidgetSelectConfig {
|
|
7291
|
-
title: string;
|
|
7292
|
-
licence: IntegerId;
|
|
7293
|
-
extSystem: IntegerId;
|
|
7294
|
-
}
|
|
7295
|
-
|
|
7296
|
-
export declare interface ImageWidgetUploadConfig {
|
|
7297
|
-
licence: IntegerId;
|
|
7298
|
-
extSystem: IntegerId;
|
|
7299
|
-
}
|
|
7300
|
-
|
|
7301
7727
|
export declare type Immutable<T> = {
|
|
7302
7728
|
readonly [K in keyof T]: Immutable<T[K]>;
|
|
7303
7729
|
};
|
|
@@ -7307,8 +7733,14 @@ export declare function initDamNotifications(): {
|
|
|
7307
7733
|
damNotificationsInitialized: Ref<boolean>;
|
|
7308
7734
|
};
|
|
7309
7735
|
|
|
7736
|
+
/**
|
|
7737
|
+
* Integer ID.
|
|
7738
|
+
*/
|
|
7310
7739
|
export declare type IntegerId = number;
|
|
7311
7740
|
|
|
7741
|
+
/**
|
|
7742
|
+
* Integer ID + null.
|
|
7743
|
+
*/
|
|
7312
7744
|
export declare type IntegerIdNullable = number | null;
|
|
7313
7745
|
|
|
7314
7746
|
export declare const isAnzuApiForbiddenError: (error: any) => error is AnzuApiForbiddenError;
|
|
@@ -7502,6 +7934,8 @@ export declare const messagesCs: {
|
|
|
7502
7934
|
refresh: string;
|
|
7503
7935
|
forwards: string;
|
|
7504
7936
|
backwards: string;
|
|
7937
|
+
next: string;
|
|
7938
|
+
prev: string;
|
|
7505
7939
|
loadMore: string;
|
|
7506
7940
|
};
|
|
7507
7941
|
model: {
|
|
@@ -7615,6 +8049,11 @@ export declare const messagesCs: {
|
|
|
7615
8049
|
resolvedPermissions: string;
|
|
7616
8050
|
noPermissions: string;
|
|
7617
8051
|
};
|
|
8052
|
+
copyPermissions: {
|
|
8053
|
+
title: string;
|
|
8054
|
+
desc: string;
|
|
8055
|
+
srcUser: string;
|
|
8056
|
+
};
|
|
7618
8057
|
};
|
|
7619
8058
|
job: {
|
|
7620
8059
|
filter: {
|
|
@@ -8190,6 +8629,8 @@ export declare const messagesEn: {
|
|
|
8190
8629
|
refresh: string;
|
|
8191
8630
|
forwards: string;
|
|
8192
8631
|
backwards: string;
|
|
8632
|
+
next: string;
|
|
8633
|
+
prev: string;
|
|
8193
8634
|
loadMore: string;
|
|
8194
8635
|
};
|
|
8195
8636
|
model: {
|
|
@@ -8303,6 +8744,11 @@ export declare const messagesEn: {
|
|
|
8303
8744
|
resolvedPermissions: string;
|
|
8304
8745
|
noPermissions: string;
|
|
8305
8746
|
};
|
|
8747
|
+
copyPermissions: {
|
|
8748
|
+
title: string;
|
|
8749
|
+
desc: string;
|
|
8750
|
+
srcUser: string;
|
|
8751
|
+
};
|
|
8306
8752
|
};
|
|
8307
8753
|
job: {
|
|
8308
8754
|
filter: {
|
|
@@ -8878,6 +9324,8 @@ export declare const messagesSk: {
|
|
|
8878
9324
|
refresh: string;
|
|
8879
9325
|
forwards: string;
|
|
8880
9326
|
backwards: string;
|
|
9327
|
+
next: string;
|
|
9328
|
+
prev: string;
|
|
8881
9329
|
loadMore: string;
|
|
8882
9330
|
};
|
|
8883
9331
|
model: {
|
|
@@ -8995,6 +9443,11 @@ export declare const messagesSk: {
|
|
|
8995
9443
|
resolvedPermissions: string;
|
|
8996
9444
|
noPermissions: string;
|
|
8997
9445
|
};
|
|
9446
|
+
copyPermissions: {
|
|
9447
|
+
title: string;
|
|
9448
|
+
desc: string;
|
|
9449
|
+
srcUser: string;
|
|
9450
|
+
};
|
|
8998
9451
|
};
|
|
8999
9452
|
job: {
|
|
9000
9453
|
filter: {
|
|
@@ -9644,6 +10097,7 @@ export declare interface PermissionGroupMinimal {
|
|
|
9644
10097
|
declare type Permissions_2 = {
|
|
9645
10098
|
[key in AclValue]?: Grant;
|
|
9646
10099
|
};
|
|
10100
|
+
export { Permissions_2 as Permissions }
|
|
9647
10101
|
|
|
9648
10102
|
export declare type PermissionTranslationGroup = 'subjects' | 'actions' | 'roles';
|
|
9649
10103
|
|
|
@@ -9804,6 +10258,8 @@ export declare const timestampCurrent: () => number;
|
|
|
9804
10258
|
|
|
9805
10259
|
export declare function updateDamCurrentUser(client: () => AxiosInstance): Promise<unknown>;
|
|
9806
10260
|
|
|
10261
|
+
export declare const updateDamUser: (client: () => AxiosInstance, id: number, data: DamUserUpdateDto) => Promise<DamUser>;
|
|
10262
|
+
|
|
9807
10263
|
export declare interface UploadQueue {
|
|
9808
10264
|
items: UploadQueueItem[];
|
|
9809
10265
|
totalCount: number;
|
|
@@ -10046,6 +10502,13 @@ export declare function useCommonAdminCollabOptions(): {
|
|
|
10046
10502
|
}>;
|
|
10047
10503
|
};
|
|
10048
10504
|
|
|
10505
|
+
export declare function useCommonAdminImageOptions(configName?: string): {
|
|
10506
|
+
imageClient: () => AxiosInstance;
|
|
10507
|
+
previewDomain: string;
|
|
10508
|
+
imageWidth: number;
|
|
10509
|
+
imageHeight: number;
|
|
10510
|
+
};
|
|
10511
|
+
|
|
10049
10512
|
export declare function useCommonJobFactory(): {
|
|
10050
10513
|
createBase: (resourceName: JobBaseResource, system: string) => JobBase;
|
|
10051
10514
|
createUserDataDelete: (system: string) => JobUserDataDelete;
|
|
@@ -10175,12 +10638,14 @@ export declare function useCustomDataFormElementType(): {
|
|
|
10175
10638
|
title: string;
|
|
10176
10639
|
color?: string | undefined;
|
|
10177
10640
|
active?: false | undefined;
|
|
10641
|
+
subtitle?: string | undefined;
|
|
10178
10642
|
}[]>;
|
|
10179
10643
|
getCustomDataFormElementTypeOption: (value: CustomDataFormElementTypeType) => {
|
|
10180
10644
|
value: CustomDataFormElementTypeType;
|
|
10181
10645
|
title: string;
|
|
10182
10646
|
color?: string | undefined;
|
|
10183
10647
|
active?: false | undefined;
|
|
10648
|
+
subtitle?: string | undefined;
|
|
10184
10649
|
} | undefined;
|
|
10185
10650
|
};
|
|
10186
10651
|
|
|
@@ -10191,6 +10656,42 @@ export declare function useDamAcceptTypeAndSizeHelper(assetType: DamAssetType |
|
|
|
10191
10656
|
uploadAccept: ComputedRef<string>;
|
|
10192
10657
|
};
|
|
10193
10658
|
|
|
10659
|
+
export declare function useDamAssetLicenceFilter(): {
|
|
10660
|
+
name: {
|
|
10661
|
+
field: string;
|
|
10662
|
+
multiple: boolean;
|
|
10663
|
+
variant: FilterVariant;
|
|
10664
|
+
model: any;
|
|
10665
|
+
default: any;
|
|
10666
|
+
titleT?: string | undefined;
|
|
10667
|
+
error: string;
|
|
10668
|
+
mandatory: boolean;
|
|
10669
|
+
exclude: boolean;
|
|
10670
|
+
};
|
|
10671
|
+
extSystem: {
|
|
10672
|
+
field: string;
|
|
10673
|
+
multiple: boolean;
|
|
10674
|
+
variant: FilterVariant;
|
|
10675
|
+
model: any;
|
|
10676
|
+
default: any;
|
|
10677
|
+
titleT?: string | undefined;
|
|
10678
|
+
error: string;
|
|
10679
|
+
mandatory: boolean;
|
|
10680
|
+
exclude: boolean;
|
|
10681
|
+
};
|
|
10682
|
+
extId: {
|
|
10683
|
+
field: string;
|
|
10684
|
+
multiple: boolean;
|
|
10685
|
+
variant: FilterVariant;
|
|
10686
|
+
model: any;
|
|
10687
|
+
default: any;
|
|
10688
|
+
titleT?: string | undefined;
|
|
10689
|
+
error: string;
|
|
10690
|
+
mandatory: boolean;
|
|
10691
|
+
exclude: boolean;
|
|
10692
|
+
};
|
|
10693
|
+
};
|
|
10694
|
+
|
|
10194
10695
|
export declare function useDamAuthorFactory(): {
|
|
10195
10696
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamAuthor;
|
|
10196
10697
|
};
|
|
@@ -10201,12 +10702,14 @@ export declare function useDamAuthorType(): {
|
|
|
10201
10702
|
title: string;
|
|
10202
10703
|
color?: string | undefined;
|
|
10203
10704
|
active?: false | undefined;
|
|
10705
|
+
subtitle?: string | undefined;
|
|
10204
10706
|
}[]>;
|
|
10205
10707
|
getAuthorTypeOption: (value: DamAuthorType) => {
|
|
10206
10708
|
value: DamAuthorType;
|
|
10207
10709
|
title: string;
|
|
10208
10710
|
color?: string | undefined;
|
|
10209
10711
|
active?: false | undefined;
|
|
10712
|
+
subtitle?: string | undefined;
|
|
10210
10713
|
} | undefined;
|
|
10211
10714
|
};
|
|
10212
10715
|
|
|
@@ -10218,6 +10721,7 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
|
|
|
10218
10721
|
damPubConfig: ShallowRef<DamPubConfig>;
|
|
10219
10722
|
damPrvConfig: ShallowRef<DamPrvConfig>;
|
|
10220
10723
|
damConfigExtSystem: ShallowRef<Map<number, DamExtSystemConfig>>;
|
|
10724
|
+
damConfigLicenceExtSystem: ShallowRef<Map<number, DamConfigLicenceExtSystem>>;
|
|
10221
10725
|
damConfigAssetCustomFormElements: ShallowRef<Map<number, {
|
|
10222
10726
|
image: CustomDataFormElement[];
|
|
10223
10727
|
audio: CustomDataFormElement[];
|
|
@@ -10225,6 +10729,8 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
|
|
|
10225
10729
|
document: CustomDataFormElement[];
|
|
10226
10730
|
}>>;
|
|
10227
10731
|
damConfigDistributionCustomFormElements: ShallowRef<Map<string, CustomDataFormElement[]>>;
|
|
10732
|
+
getOrLoadDamConfigExtSystemByLicence: (licence: IntegerId) => Promise<DamConfigLicenceExtSystemReturnType | undefined>;
|
|
10733
|
+
getOrLoadDamConfigExtSystemByLicences: (licences: IntegerId[]) => Promise<DamConfigLicenceExtSystemReturnType[]>;
|
|
10228
10734
|
loadDamPrvConfig: () => Promise<unknown>;
|
|
10229
10735
|
loadDamPubConfig: () => Promise<unknown>;
|
|
10230
10736
|
loadDamConfigExtSystem: (extSystemId: IntegerId) => Promise<unknown>;
|
|
@@ -10272,6 +10778,7 @@ export declare function useDamCurrentUser(): {
|
|
|
10272
10778
|
};
|
|
10273
10779
|
allowedAssetExternalProviders: string[];
|
|
10274
10780
|
allowedDistributionServices: string[];
|
|
10781
|
+
id?: IntegerIdNullable | undefined;
|
|
10275
10782
|
enabled: boolean;
|
|
10276
10783
|
roles: string[];
|
|
10277
10784
|
permissionGroups: number[];
|
|
@@ -10283,12 +10790,28 @@ export declare function useDamCurrentUser(): {
|
|
|
10283
10790
|
modifiedAt: string;
|
|
10284
10791
|
modifiedBy: IntegerIdNullable;
|
|
10285
10792
|
createdBy: IntegerIdNullable;
|
|
10286
|
-
id: number;
|
|
10287
10793
|
email: string;
|
|
10288
10794
|
} | undefined>;
|
|
10289
10795
|
damCurrentUserIsSuperAdmin: Ref<boolean>;
|
|
10290
10796
|
};
|
|
10291
10797
|
|
|
10798
|
+
export declare function useDamDistributionServiceType(client: () => AxiosInstance): {
|
|
10799
|
+
allDistributionServiceTypeOptions: Ref<{
|
|
10800
|
+
value: string;
|
|
10801
|
+
title: string;
|
|
10802
|
+
color?: string | undefined;
|
|
10803
|
+
active?: false | undefined;
|
|
10804
|
+
subtitle?: string | undefined;
|
|
10805
|
+
}[]>;
|
|
10806
|
+
getDistributionServiceTypeOption: (value: string) => {
|
|
10807
|
+
value: string;
|
|
10808
|
+
title: string;
|
|
10809
|
+
color?: string | undefined;
|
|
10810
|
+
active?: false | undefined;
|
|
10811
|
+
subtitle?: string | undefined;
|
|
10812
|
+
} | undefined;
|
|
10813
|
+
};
|
|
10814
|
+
|
|
10292
10815
|
export declare function useDamKeywordFactory(): {
|
|
10293
10816
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamKeyword;
|
|
10294
10817
|
};
|
|
@@ -10329,6 +10852,7 @@ export declare function useGrant(): {
|
|
|
10329
10852
|
title: string;
|
|
10330
10853
|
color?: string | undefined;
|
|
10331
10854
|
active?: false | undefined;
|
|
10855
|
+
subtitle?: string | undefined;
|
|
10332
10856
|
}[]>;
|
|
10333
10857
|
getGrantOption: (value: Grant) => ValueObjectOption<Grant>;
|
|
10334
10858
|
};
|
|
@@ -10339,12 +10863,20 @@ export declare function useGrantOrigin(): {
|
|
|
10339
10863
|
title: string;
|
|
10340
10864
|
color?: string | undefined;
|
|
10341
10865
|
active?: false | undefined;
|
|
10866
|
+
subtitle?: string | undefined;
|
|
10342
10867
|
}[]>;
|
|
10343
10868
|
getGrantOriginOption: (value: GrantOrigin) => ValueObjectOption<GrantOrigin>;
|
|
10344
10869
|
};
|
|
10345
10870
|
|
|
10346
10871
|
export { useI18n }
|
|
10347
10872
|
|
|
10873
|
+
export declare function useImageActions(config: ReturnType<typeof useCommonAdminImageOptions>): {
|
|
10874
|
+
widgetImageToDamImageUrl: (image: ImageAware | ImageCreateUpdateAware, width?: number, height?: number, random?: boolean) => string;
|
|
10875
|
+
widgetImageToDamImageOriginalUrl: (image: ImageAware | ImageCreateUpdateAware, random?: boolean) => string;
|
|
10876
|
+
damImageIdToDamImageUrl: (imageId: DocId, width?: number, height?: number, random?: boolean) => string;
|
|
10877
|
+
damImageIdToDamImageOriginalUrl: (imageId: DocId, random?: boolean) => string;
|
|
10878
|
+
};
|
|
10879
|
+
|
|
10348
10880
|
export declare function useJobApi<JobType extends JobBase = JobBase>(client: () => AxiosInstance, system: string): {
|
|
10349
10881
|
fetchJobList: (pagination: Pagination, filterBag: FilterBag) => Promise<JobType[]>;
|
|
10350
10882
|
fetchJob: (id: number) => Promise<JobType>;
|
|
@@ -10358,6 +10890,7 @@ export declare function useJobBaseResource<T extends JobBaseResource = JobBaseRe
|
|
|
10358
10890
|
title: string;
|
|
10359
10891
|
color?: string | undefined;
|
|
10360
10892
|
active?: false | undefined;
|
|
10893
|
+
subtitle?: string | undefined;
|
|
10361
10894
|
}[]>;
|
|
10362
10895
|
getJobResourceOption: (value: T) => ValueObjectOption<T>;
|
|
10363
10896
|
};
|
|
@@ -10368,6 +10901,7 @@ export declare function useJobStatus(): {
|
|
|
10368
10901
|
title: string;
|
|
10369
10902
|
color?: string | undefined;
|
|
10370
10903
|
active?: false | undefined;
|
|
10904
|
+
subtitle?: string | undefined;
|
|
10371
10905
|
}[]>;
|
|
10372
10906
|
getJobStatusOption: (value: JobStatus) => ValueObjectOption<JobStatus>;
|
|
10373
10907
|
};
|
|
@@ -10391,12 +10925,14 @@ export declare function useLogLevel(): {
|
|
|
10391
10925
|
title: string;
|
|
10392
10926
|
color?: string | undefined;
|
|
10393
10927
|
active?: false | undefined;
|
|
10928
|
+
subtitle?: string | undefined;
|
|
10394
10929
|
}[]>;
|
|
10395
10930
|
getLogLevelOption: (value: LogLevel) => {
|
|
10396
10931
|
value: LogLevel;
|
|
10397
10932
|
title: string;
|
|
10398
10933
|
color?: string | undefined;
|
|
10399
10934
|
active?: false | undefined;
|
|
10935
|
+
subtitle?: string | undefined;
|
|
10400
10936
|
} | undefined;
|
|
10401
10937
|
};
|
|
10402
10938
|
|
|
@@ -10520,6 +11056,7 @@ export declare interface ValueObjectOption<T> {
|
|
|
10520
11056
|
title: string;
|
|
10521
11057
|
color?: string;
|
|
10522
11058
|
active?: false;
|
|
11059
|
+
subtitle?: string;
|
|
10523
11060
|
}
|
|
10524
11061
|
|
|
10525
11062
|
declare interface VDatatableSelectableItem {
|