@anzusystems/common-admin 1.47.0-alpha3 → 1.47.0-alpha31
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 +778 -265
- package/dist/common-admin.es.js +320 -347
- package/dist/common-admin.es.js.map +1 -1
- package/dist/{lib-j7X_ApAh.js → lib-gk_FDIqo.js} +8557 -8085
- package/dist/lib-gk_FDIqo.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/{webfontloader-kNngvlJT.js → webfontloader-h5cT_bTg.js} +2 -2
- package/dist/{webfontloader-kNngvlJT.js.map → webfontloader-h5cT_bTg.js.map} +1 -1
- package/package.json +34 -34
- 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;
|
|
@@ -2013,15 +2055,15 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
|
|
|
2013
2055
|
}, {
|
|
2014
2056
|
size: number;
|
|
2015
2057
|
variant: ButtonVariant;
|
|
2016
|
-
dataCy: string;
|
|
2017
2058
|
loading: boolean;
|
|
2059
|
+
dataCy: string;
|
|
2018
2060
|
buttonClass: string;
|
|
2019
2061
|
buttonT: string;
|
|
2020
2062
|
routeParams: any | undefined;
|
|
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;
|
|
@@ -2051,13 +2093,13 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
|
|
|
2051
2093
|
onSaveRecordAndClose?: (() => any) | undefined;
|
|
2052
2094
|
}, {
|
|
2053
2095
|
disabled: boolean;
|
|
2054
|
-
dataCy: string;
|
|
2055
2096
|
loading: boolean;
|
|
2097
|
+
dataCy: string;
|
|
2056
2098
|
buttonClass: string;
|
|
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;
|
|
@@ -2097,17 +2139,17 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
|
|
|
2097
2139
|
size: number;
|
|
2098
2140
|
variant: ButtonVariant;
|
|
2099
2141
|
disabled: boolean;
|
|
2100
|
-
dataCy: string;
|
|
2101
2142
|
loading: boolean;
|
|
2143
|
+
dataCy: string;
|
|
2102
2144
|
buttonClass: string;
|
|
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,7 +2189,7 @@ 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;
|
|
@@ -2155,7 +2197,7 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_54<__VL
|
|
|
2155
2197
|
user: undefined;
|
|
2156
2198
|
size: number;
|
|
2157
2199
|
containerClass: string;
|
|
2158
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2200
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_53<__VLS_TypePropsToRuntimeProps_56<{
|
|
2159
2201
|
user?: AnzuUserMinimal | undefined | null;
|
|
2160
2202
|
size?: number | undefined;
|
|
2161
2203
|
containerClass?: string | undefined;
|
|
@@ -2169,12 +2211,12 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_54<__VL
|
|
|
2169
2211
|
containerClass: string;
|
|
2170
2212
|
}, {}>;
|
|
2171
2213
|
|
|
2172
|
-
export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<
|
|
2214
|
+
export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_73<{
|
|
2173
2215
|
modelValue?: boolean | undefined;
|
|
2174
2216
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2175
2217
|
minCount: number;
|
|
2176
2218
|
maxCount: number;
|
|
2177
|
-
|
|
2219
|
+
selectLicences: number[];
|
|
2178
2220
|
returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
|
|
2179
2221
|
configName?: string | undefined;
|
|
2180
2222
|
skipCurrentUserCheck?: boolean | undefined;
|
|
@@ -2188,12 +2230,12 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__
|
|
|
2188
2230
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2189
2231
|
"update:modelValue": (data: boolean) => void;
|
|
2190
2232
|
onConfirm: (data: AssetSelectReturnData) => void;
|
|
2191
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2233
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_73<{
|
|
2192
2234
|
modelValue?: boolean | undefined;
|
|
2193
2235
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2194
2236
|
minCount: number;
|
|
2195
2237
|
maxCount: number;
|
|
2196
|
-
|
|
2238
|
+
selectLicences: number[];
|
|
2197
2239
|
returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
|
|
2198
2240
|
configName?: string | undefined;
|
|
2199
2241
|
skipCurrentUserCheck?: boolean | undefined;
|
|
@@ -2220,7 +2262,7 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_25<DefineComponent<__
|
|
|
2220
2262
|
"button-confirm-title"?(_: {}): any;
|
|
2221
2263
|
}>;
|
|
2222
2264
|
|
|
2223
|
-
export declare const AAvatarColorPicker: DefineComponent<
|
|
2265
|
+
export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
2224
2266
|
modelValue: string;
|
|
2225
2267
|
label?: string | undefined;
|
|
2226
2268
|
loading?: boolean | undefined;
|
|
@@ -2237,7 +2279,7 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2237
2279
|
hideLabel: boolean;
|
|
2238
2280
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2239
2281
|
"update:modelValue": (data: string) => void;
|
|
2240
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2282
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
2241
2283
|
modelValue: string;
|
|
2242
2284
|
label?: string | undefined;
|
|
2243
2285
|
loading?: boolean | undefined;
|
|
@@ -2263,7 +2305,7 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2263
2305
|
randomColor: boolean;
|
|
2264
2306
|
}, {}>;
|
|
2265
2307
|
|
|
2266
|
-
export declare const ABooleanSelect: DefineComponent<
|
|
2308
|
+
export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_74<{
|
|
2267
2309
|
modelValue: boolean | null;
|
|
2268
2310
|
dataCy?: string | undefined;
|
|
2269
2311
|
label?: string | undefined;
|
|
@@ -2272,7 +2314,7 @@ export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_71<__VLS
|
|
|
2272
2314
|
label: undefined;
|
|
2273
2315
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2274
2316
|
"update:modelValue": (data: boolean | null) => void;
|
|
2275
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2317
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_74<{
|
|
2276
2318
|
modelValue: boolean | null;
|
|
2277
2319
|
dataCy?: string | undefined;
|
|
2278
2320
|
label?: string | undefined;
|
|
@@ -2282,8 +2324,8 @@ export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_71<__VLS
|
|
|
2282
2324
|
}>>> & {
|
|
2283
2325
|
"onUpdate:modelValue"?: ((data: boolean | null) => any) | undefined;
|
|
2284
2326
|
}, {
|
|
2285
|
-
dataCy: string;
|
|
2286
2327
|
label: string;
|
|
2328
|
+
dataCy: string;
|
|
2287
2329
|
}, {}>;
|
|
2288
2330
|
|
|
2289
2331
|
export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<{
|
|
@@ -2305,7 +2347,7 @@ export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_T
|
|
|
2305
2347
|
invertColor: boolean;
|
|
2306
2348
|
}, {}>;
|
|
2307
2349
|
|
|
2308
|
-
export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<
|
|
2350
|
+
export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
2309
2351
|
buttonT?: string | undefined;
|
|
2310
2352
|
buttonClass?: string | undefined;
|
|
2311
2353
|
dataCy?: string | undefined;
|
|
@@ -2329,7 +2371,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
2329
2371
|
color: string;
|
|
2330
2372
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2331
2373
|
onClick: () => void;
|
|
2332
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2374
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
2333
2375
|
buttonT?: string | undefined;
|
|
2334
2376
|
buttonClass?: string | undefined;
|
|
2335
2377
|
dataCy?: string | undefined;
|
|
@@ -2359,8 +2401,8 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
2359
2401
|
variant: ButtonVariantText;
|
|
2360
2402
|
rounded: "pill";
|
|
2361
2403
|
disabled: boolean;
|
|
2362
|
-
dataCy: string;
|
|
2363
2404
|
loading: boolean;
|
|
2405
|
+
dataCy: string;
|
|
2364
2406
|
buttonClass: string;
|
|
2365
2407
|
buttonT: string;
|
|
2366
2408
|
disableMore: boolean;
|
|
@@ -2369,7 +2411,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
2369
2411
|
default?(_: {}): any;
|
|
2370
2412
|
}>;
|
|
2371
2413
|
|
|
2372
|
-
export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<
|
|
2414
|
+
export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
|
|
2373
2415
|
id?: string | number | null | undefined;
|
|
2374
2416
|
title?: string | undefined;
|
|
2375
2417
|
containerClass?: string | undefined;
|
|
@@ -2383,6 +2425,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2383
2425
|
textOnly?: boolean | undefined;
|
|
2384
2426
|
fallbackIdText?: boolean | undefined;
|
|
2385
2427
|
wrapText?: boolean | undefined;
|
|
2428
|
+
closable?: boolean | undefined;
|
|
2386
2429
|
}>, {
|
|
2387
2430
|
id: null;
|
|
2388
2431
|
title: string;
|
|
@@ -2394,7 +2437,10 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2394
2437
|
textOnly: boolean;
|
|
2395
2438
|
fallbackIdText: boolean;
|
|
2396
2439
|
wrapText: boolean;
|
|
2397
|
-
|
|
2440
|
+
closable: boolean;
|
|
2441
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2442
|
+
onClose: (id: string | number | null | undefined) => void;
|
|
2443
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
|
|
2398
2444
|
id?: string | number | null | undefined;
|
|
2399
2445
|
title?: string | undefined;
|
|
2400
2446
|
containerClass?: string | undefined;
|
|
@@ -2408,6 +2454,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2408
2454
|
textOnly?: boolean | undefined;
|
|
2409
2455
|
fallbackIdText?: boolean | undefined;
|
|
2410
2456
|
wrapText?: boolean | undefined;
|
|
2457
|
+
closable?: boolean | undefined;
|
|
2411
2458
|
}>, {
|
|
2412
2459
|
id: null;
|
|
2413
2460
|
title: string;
|
|
@@ -2419,11 +2466,15 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2419
2466
|
textOnly: boolean;
|
|
2420
2467
|
fallbackIdText: boolean;
|
|
2421
2468
|
wrapText: boolean;
|
|
2422
|
-
|
|
2469
|
+
closable: boolean;
|
|
2470
|
+
}>>> & {
|
|
2471
|
+
onOnClose?: ((id: string | number | null | undefined) => any) | undefined;
|
|
2472
|
+
}, {
|
|
2423
2473
|
size: string;
|
|
2424
2474
|
title: string;
|
|
2425
2475
|
id: string | number | null;
|
|
2426
2476
|
containerClass: string;
|
|
2477
|
+
closable: boolean;
|
|
2427
2478
|
disableClick: boolean;
|
|
2428
2479
|
openInNew: boolean;
|
|
2429
2480
|
forceRounded: boolean;
|
|
@@ -2489,12 +2540,12 @@ export declare const AChipNoLink: __VLS_WithTemplateSlots_3<DefineComponent<__VL
|
|
|
2489
2540
|
default?(_: {}): any;
|
|
2490
2541
|
}>;
|
|
2491
2542
|
|
|
2492
|
-
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<
|
|
2543
|
+
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2493
2544
|
permission: `${string}_${string}_${string}`;
|
|
2494
2545
|
subject?: object | undefined;
|
|
2495
2546
|
}>, {
|
|
2496
2547
|
subject: undefined;
|
|
2497
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2548
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2498
2549
|
permission: `${string}_${string}_${string}`;
|
|
2499
2550
|
subject?: object | undefined;
|
|
2500
2551
|
}>, {
|
|
@@ -2513,7 +2564,7 @@ declare type AclResolverConfig = {
|
|
|
2513
2564
|
|
|
2514
2565
|
export declare type AclValue = `${string}_${string}_${string}`;
|
|
2515
2566
|
|
|
2516
|
-
export declare const ACollabCountdown: DefineComponent<
|
|
2567
|
+
export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2517
2568
|
label?: string | undefined;
|
|
2518
2569
|
seconds?: number | undefined;
|
|
2519
2570
|
parentheses?: boolean | undefined;
|
|
@@ -2523,7 +2574,7 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2523
2574
|
parentheses: boolean;
|
|
2524
2575
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2525
2576
|
done: () => void;
|
|
2526
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2577
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2527
2578
|
label?: string | undefined;
|
|
2528
2579
|
seconds?: number | undefined;
|
|
2529
2580
|
parentheses?: boolean | undefined;
|
|
@@ -2539,15 +2590,15 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2539
2590
|
parentheses: boolean;
|
|
2540
2591
|
}, {}>;
|
|
2541
2592
|
|
|
2542
|
-
export declare const ACollabLockedByUser: DefineComponent<
|
|
2593
|
+
export declare const ACollabLockedByUser: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2543
2594
|
id: null | undefined | IntegerId;
|
|
2544
2595
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2545
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2596
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2546
2597
|
id: null | undefined | IntegerId;
|
|
2547
2598
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2548
2599
|
}>, {}>>>, {}, {}>;
|
|
2549
2600
|
|
|
2550
|
-
export declare const ACollabManagement: DefineComponent<
|
|
2601
|
+
export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2551
2602
|
collabRoom: CollabRoom;
|
|
2552
2603
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2553
2604
|
isEdit?: boolean | undefined;
|
|
@@ -2557,7 +2608,7 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2557
2608
|
isEdit: boolean;
|
|
2558
2609
|
addToCachedUsers: undefined;
|
|
2559
2610
|
fetchCachedUsers: undefined;
|
|
2560
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2611
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2561
2612
|
collabRoom: CollabRoom;
|
|
2562
2613
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2563
2614
|
isEdit?: boolean | undefined;
|
|
@@ -2573,14 +2624,14 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2573
2624
|
fetchCachedUsers: () => Promisify<Promise<any>>;
|
|
2574
2625
|
}, {}>;
|
|
2575
2626
|
|
|
2576
|
-
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<
|
|
2627
|
+
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2577
2628
|
value: string | number;
|
|
2578
2629
|
notifyT?: string | undefined;
|
|
2579
2630
|
dataCy?: string | undefined;
|
|
2580
2631
|
}>, {
|
|
2581
2632
|
notifyT: string;
|
|
2582
2633
|
dataCy: string;
|
|
2583
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2634
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2584
2635
|
value: string | number;
|
|
2585
2636
|
notifyT?: string | undefined;
|
|
2586
2637
|
dataCy?: string | undefined;
|
|
@@ -2881,14 +2932,14 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2881
2932
|
} | undefined;
|
|
2882
2933
|
};
|
|
2883
2934
|
|
|
2884
|
-
export declare const ACurrentUserDropdown: DefineComponent<
|
|
2935
|
+
export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2885
2936
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2886
2937
|
settingsRouteName: string;
|
|
2887
2938
|
logoutRouteName: string;
|
|
2888
2939
|
dataCy?: string | undefined;
|
|
2889
2940
|
}>, {
|
|
2890
2941
|
dataCy: string;
|
|
2891
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2942
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2892
2943
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2893
2944
|
settingsRouteName: string;
|
|
2894
2945
|
logoutRouteName: string;
|
|
@@ -2899,7 +2950,7 @@ export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_56
|
|
|
2899
2950
|
dataCy: string;
|
|
2900
2951
|
}, {}>;
|
|
2901
2952
|
|
|
2902
|
-
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<
|
|
2953
|
+
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2903
2954
|
modelValue: {
|
|
2904
2955
|
[key: string]: any;
|
|
2905
2956
|
};
|
|
@@ -2916,7 +2967,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2916
2967
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2917
2968
|
"update:modelValue": (data: any) => void;
|
|
2918
2969
|
anyChange: () => void;
|
|
2919
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2970
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2920
2971
|
modelValue: {
|
|
2921
2972
|
[key: string]: any;
|
|
2922
2973
|
};
|
|
@@ -2940,7 +2991,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2940
2991
|
"after-pinned"?(_: {}): any;
|
|
2941
2992
|
}>;
|
|
2942
2993
|
|
|
2943
|
-
export declare const ACustomDataFormElement: DefineComponent<
|
|
2994
|
+
export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2944
2995
|
modelValue: any;
|
|
2945
2996
|
config: CustomDataFormElement;
|
|
2946
2997
|
validationScope?: ValidationScope;
|
|
@@ -2952,7 +3003,7 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
|
|
|
2952
3003
|
value: any;
|
|
2953
3004
|
}) => void;
|
|
2954
3005
|
blur: (data: any) => void;
|
|
2955
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3006
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2956
3007
|
modelValue: any;
|
|
2957
3008
|
config: CustomDataFormElement;
|
|
2958
3009
|
validationScope?: ValidationScope;
|
|
@@ -3017,7 +3068,7 @@ export declare const ADatatable: <TItem = Record<string, unknown>>(__VLS_props:
|
|
|
3017
3068
|
} | undefined;
|
|
3018
3069
|
};
|
|
3019
3070
|
|
|
3020
|
-
export declare const ADatatableConfigButton: DefineComponent<
|
|
3071
|
+
export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3021
3072
|
columnsAll: ColumnInternalValues[];
|
|
3022
3073
|
columnsHidden: Array<string>;
|
|
3023
3074
|
buttonT?: string | undefined;
|
|
@@ -3029,7 +3080,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3029
3080
|
dataCy: string;
|
|
3030
3081
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3031
3082
|
"update:columnsHidden": (data: string[]) => void;
|
|
3032
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3083
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3033
3084
|
columnsAll: ColumnInternalValues[];
|
|
3034
3085
|
columnsHidden: Array<string>;
|
|
3035
3086
|
buttonT?: string | undefined;
|
|
@@ -3047,7 +3098,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3047
3098
|
buttonT: string;
|
|
3048
3099
|
}, {}>;
|
|
3049
3100
|
|
|
3050
|
-
export declare const ADatatableOrdering: DefineComponent<
|
|
3101
|
+
export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3051
3102
|
variant?: "default" | "most-relevant" | undefined;
|
|
3052
3103
|
modelValue?: number | undefined;
|
|
3053
3104
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3058,7 +3109,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3058
3109
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3059
3110
|
"update:modelValue": (data: number) => void;
|
|
3060
3111
|
sortByChange: (data: DatatableOrderingOption) => void;
|
|
3061
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3112
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3062
3113
|
variant?: "default" | "most-relevant" | undefined;
|
|
3063
3114
|
modelValue?: number | undefined;
|
|
3064
3115
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3075,7 +3126,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3075
3126
|
customOptions: DatatableOrderingOptions;
|
|
3076
3127
|
}, {}>;
|
|
3077
3128
|
|
|
3078
|
-
export declare const ADatatablePagination: DefineComponent<
|
|
3129
|
+
export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3079
3130
|
modelValue: Pagination;
|
|
3080
3131
|
itemsPerPageOptions?: number[] | undefined;
|
|
3081
3132
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3085,7 +3136,7 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3085
3136
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3086
3137
|
change: () => void;
|
|
3087
3138
|
"update:modelValue": (data: Pagination) => void;
|
|
3088
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3139
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3089
3140
|
modelValue: Pagination;
|
|
3090
3141
|
itemsPerPageOptions?: number[] | undefined;
|
|
3091
3142
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3100,12 +3151,12 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3100
3151
|
hideRecordsPerPage: boolean;
|
|
3101
3152
|
}, {}>;
|
|
3102
3153
|
|
|
3103
|
-
export declare const ADatetime: DefineComponent<
|
|
3154
|
+
export declare const ADatetime: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3104
3155
|
dateTime: DatetimeUTCNullable;
|
|
3105
3156
|
edgeDateValue?: string | undefined;
|
|
3106
3157
|
}>, {
|
|
3107
3158
|
edgeDateValue: string;
|
|
3108
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3159
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3109
3160
|
dateTime: DatetimeUTCNullable;
|
|
3110
3161
|
edgeDateValue?: string | undefined;
|
|
3111
3162
|
}>, {
|
|
@@ -3114,7 +3165,7 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
|
|
|
3114
3165
|
edgeDateValue: string;
|
|
3115
3166
|
}, {}>;
|
|
3116
3167
|
|
|
3117
|
-
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
3168
|
+
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3118
3169
|
modelValue: string | null | undefined;
|
|
3119
3170
|
type?: "datetime" | undefined;
|
|
3120
3171
|
label?: string | undefined;
|
|
@@ -3147,7 +3198,7 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3147
3198
|
"update:modelValue": (data: string | null | undefined) => void;
|
|
3148
3199
|
onOpen: () => void;
|
|
3149
3200
|
onClose: () => void;
|
|
3150
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3201
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3151
3202
|
modelValue: string | null | undefined;
|
|
3152
3203
|
type?: "datetime" | undefined;
|
|
3153
3204
|
label?: string | undefined;
|
|
@@ -3183,10 +3234,10 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3183
3234
|
}, {
|
|
3184
3235
|
disabled: boolean;
|
|
3185
3236
|
type: "datetime";
|
|
3186
|
-
dataCy: string;
|
|
3187
3237
|
placeholder: string;
|
|
3188
3238
|
required: boolean;
|
|
3189
3239
|
label: string;
|
|
3240
|
+
dataCy: string;
|
|
3190
3241
|
hideLabel: boolean;
|
|
3191
3242
|
clearable: boolean;
|
|
3192
3243
|
hideDetails: boolean;
|
|
@@ -3209,7 +3260,7 @@ export declare const ADialogToolbar: __VLS_WithTemplateSlots_14<DefineComponent<
|
|
|
3209
3260
|
|
|
3210
3261
|
export declare const AEmptyRouterView: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3211
3262
|
|
|
3212
|
-
export declare const AFilterAdvancedButton: DefineComponent<
|
|
3263
|
+
export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3213
3264
|
tooltipT?: string | undefined;
|
|
3214
3265
|
buttonClass?: string | undefined;
|
|
3215
3266
|
dataCy?: string | undefined;
|
|
@@ -3219,7 +3270,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3219
3270
|
dataCy: string;
|
|
3220
3271
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3221
3272
|
advancedFilter: () => void;
|
|
3222
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3273
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3223
3274
|
tooltipT?: string | undefined;
|
|
3224
3275
|
buttonClass?: string | undefined;
|
|
3225
3276
|
dataCy?: string | undefined;
|
|
@@ -3235,7 +3286,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3235
3286
|
buttonClass: string;
|
|
3236
3287
|
}, {}>;
|
|
3237
3288
|
|
|
3238
|
-
export declare const AFilterBooleanGroup: DefineComponent<
|
|
3289
|
+
export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3239
3290
|
modelValue: Filter;
|
|
3240
3291
|
dataCyTrue?: string | undefined;
|
|
3241
3292
|
dataCyFalse?: string | undefined;
|
|
@@ -3244,7 +3295,7 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3244
3295
|
dataCyFalse: string;
|
|
3245
3296
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3246
3297
|
"update:modelValue": (data: any) => void;
|
|
3247
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3298
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3248
3299
|
modelValue: Filter;
|
|
3249
3300
|
dataCyTrue?: string | undefined;
|
|
3250
3301
|
dataCyFalse?: string | undefined;
|
|
@@ -3258,14 +3309,14 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3258
3309
|
dataCyFalse: string;
|
|
3259
3310
|
}, {}>;
|
|
3260
3311
|
|
|
3261
|
-
export declare const AFilterBooleanSelect: DefineComponent<
|
|
3312
|
+
export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3262
3313
|
modelValue: Filter;
|
|
3263
3314
|
dataCy?: string | undefined;
|
|
3264
3315
|
}>, {
|
|
3265
3316
|
dataCy: string;
|
|
3266
3317
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3267
3318
|
"update:modelValue": (data: any) => void;
|
|
3268
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3319
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3269
3320
|
modelValue: Filter;
|
|
3270
3321
|
dataCy?: string | undefined;
|
|
3271
3322
|
}>, {
|
|
@@ -3276,14 +3327,14 @@ export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_23
|
|
|
3276
3327
|
dataCy: string;
|
|
3277
3328
|
}, {}>;
|
|
3278
3329
|
|
|
3279
|
-
export declare const AFilterDatetimePicker: DefineComponent<
|
|
3330
|
+
export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3280
3331
|
modelValue: Filter;
|
|
3281
3332
|
dataCy?: string | undefined;
|
|
3282
3333
|
}>, {
|
|
3283
3334
|
dataCy: string;
|
|
3284
3335
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3285
3336
|
"update:modelValue": (data: any) => void;
|
|
3286
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3337
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3287
3338
|
modelValue: Filter;
|
|
3288
3339
|
dataCy?: string | undefined;
|
|
3289
3340
|
}>, {
|
|
@@ -3294,14 +3345,14 @@ export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_2
|
|
|
3294
3345
|
dataCy: string;
|
|
3295
3346
|
}, {}>;
|
|
3296
3347
|
|
|
3297
|
-
export declare const AFilterInteger: DefineComponent<
|
|
3348
|
+
export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3298
3349
|
modelValue: Filter;
|
|
3299
3350
|
dataCy?: string | undefined;
|
|
3300
3351
|
}>, {
|
|
3301
3352
|
dataCy: string;
|
|
3302
3353
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3303
3354
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3304
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3355
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3305
3356
|
modelValue: Filter;
|
|
3306
3357
|
dataCy?: string | undefined;
|
|
3307
3358
|
}>, {
|
|
@@ -3312,7 +3363,7 @@ export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_19<__VLS
|
|
|
3312
3363
|
dataCy: string;
|
|
3313
3364
|
}, {}>;
|
|
3314
3365
|
|
|
3315
|
-
export declare const AFilterMixed: DefineComponent<
|
|
3366
|
+
export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3316
3367
|
filterId?: Filter | undefined;
|
|
3317
3368
|
filterDocId?: Filter | undefined;
|
|
3318
3369
|
filterText?: Filter | undefined;
|
|
@@ -3328,7 +3379,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3328
3379
|
filterOverrides: undefined;
|
|
3329
3380
|
placeholder: undefined;
|
|
3330
3381
|
dataCy: string;
|
|
3331
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3382
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3332
3383
|
filterId?: Filter | undefined;
|
|
3333
3384
|
filterDocId?: Filter | undefined;
|
|
3334
3385
|
filterText?: Filter | undefined;
|
|
@@ -3345,8 +3396,8 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3345
3396
|
placeholder: undefined;
|
|
3346
3397
|
dataCy: string;
|
|
3347
3398
|
}>>>, {
|
|
3348
|
-
dataCy: string;
|
|
3349
3399
|
placeholder: string;
|
|
3400
|
+
dataCy: string;
|
|
3350
3401
|
filterId: Filter<any>;
|
|
3351
3402
|
filterDocId: Filter<any>;
|
|
3352
3403
|
filterText: Filter<any>;
|
|
@@ -3354,7 +3405,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3354
3405
|
filterOverrides: Filter<any>[];
|
|
3355
3406
|
}, {}>;
|
|
3356
3407
|
|
|
3357
|
-
export declare const AFilterRemoteAutocomplete: DefineComponent<
|
|
3408
|
+
export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3358
3409
|
modelValue: Filter;
|
|
3359
3410
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3360
3411
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3370,7 +3421,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3370
3421
|
placeholder: undefined;
|
|
3371
3422
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3372
3423
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3373
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3424
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3374
3425
|
modelValue: Filter;
|
|
3375
3426
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3376
3427
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3393,7 +3444,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3393
3444
|
disableInitFetch: boolean;
|
|
3394
3445
|
}, {}>;
|
|
3395
3446
|
|
|
3396
|
-
export declare const AFilterResetButton: DefineComponent<
|
|
3447
|
+
export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3397
3448
|
tooltipT?: string | undefined;
|
|
3398
3449
|
buttonClass?: string | undefined;
|
|
3399
3450
|
dataCy?: string | undefined;
|
|
@@ -3403,7 +3454,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3403
3454
|
dataCy: string;
|
|
3404
3455
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3405
3456
|
reset: () => void;
|
|
3406
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3457
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3407
3458
|
tooltipT?: string | undefined;
|
|
3408
3459
|
buttonClass?: string | undefined;
|
|
3409
3460
|
dataCy?: string | undefined;
|
|
@@ -3419,7 +3470,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3419
3470
|
buttonClass: string;
|
|
3420
3471
|
}, {}>;
|
|
3421
3472
|
|
|
3422
|
-
export declare const AFilterString: DefineComponent<
|
|
3473
|
+
export declare const AFilterString: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3423
3474
|
modelValue: Filter;
|
|
3424
3475
|
placeholder?: string | undefined;
|
|
3425
3476
|
dataCy?: string | undefined;
|
|
@@ -3428,7 +3479,7 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3428
3479
|
dataCy: string;
|
|
3429
3480
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3430
3481
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3431
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3482
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3432
3483
|
modelValue: Filter;
|
|
3433
3484
|
placeholder?: string | undefined;
|
|
3434
3485
|
dataCy?: string | undefined;
|
|
@@ -3438,11 +3489,11 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3438
3489
|
}>>> & {
|
|
3439
3490
|
"onUpdate:modelValue"?: ((data: Filter<any>) => any) | undefined;
|
|
3440
3491
|
}, {
|
|
3441
|
-
dataCy: string;
|
|
3442
3492
|
placeholder: string;
|
|
3493
|
+
dataCy: string;
|
|
3443
3494
|
}, {}>;
|
|
3444
3495
|
|
|
3445
|
-
export declare const AFilterSubmitButton: DefineComponent<
|
|
3496
|
+
export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3446
3497
|
buttonT?: string | undefined;
|
|
3447
3498
|
buttonClass?: string | undefined;
|
|
3448
3499
|
dataCy?: string | undefined;
|
|
@@ -3454,7 +3505,7 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3454
3505
|
touched: boolean;
|
|
3455
3506
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3456
3507
|
submit: () => void;
|
|
3457
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3508
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3458
3509
|
buttonT?: string | undefined;
|
|
3459
3510
|
buttonClass?: string | undefined;
|
|
3460
3511
|
dataCy?: string | undefined;
|
|
@@ -3473,13 +3524,13 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3473
3524
|
touched: boolean;
|
|
3474
3525
|
}, {}>;
|
|
3475
3526
|
|
|
3476
|
-
export declare const AFilterValueObjectOptionsSelect: DefineComponent<
|
|
3527
|
+
export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3477
3528
|
modelValue: Filter;
|
|
3478
3529
|
items: ValueObjectOption<string | number>[];
|
|
3479
3530
|
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3480
3531
|
"update:modelValue": (data: any) => void;
|
|
3481
3532
|
change: () => void;
|
|
3482
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3533
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3483
3534
|
modelValue: Filter;
|
|
3484
3535
|
items: ValueObjectOption<string | number>[];
|
|
3485
3536
|
}>, {}>>> & {
|
|
@@ -3487,7 +3538,7 @@ export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_With
|
|
|
3487
3538
|
onChange?: (() => any) | undefined;
|
|
3488
3539
|
}, {}, {}>;
|
|
3489
3540
|
|
|
3490
|
-
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
3541
|
+
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3491
3542
|
enableAdvanced?: boolean | undefined;
|
|
3492
3543
|
enableTop?: boolean | undefined;
|
|
3493
3544
|
hideButtons?: boolean | undefined;
|
|
@@ -3499,7 +3550,7 @@ export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
|
3499
3550
|
touched: boolean;
|
|
3500
3551
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3501
3552
|
resetFilter: () => void;
|
|
3502
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3553
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3503
3554
|
enableAdvanced?: boolean | undefined;
|
|
3504
3555
|
enableTop?: boolean | undefined;
|
|
3505
3556
|
hideButtons?: boolean | undefined;
|
|
@@ -3573,7 +3624,6 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
|
|
|
3573
3624
|
"onClick:append"?: ((data: string | number | null | undefined) => any) | undefined;
|
|
3574
3625
|
}, {
|
|
3575
3626
|
disabled: boolean;
|
|
3576
|
-
dataCy: string;
|
|
3577
3627
|
collab: {
|
|
3578
3628
|
room: string;
|
|
3579
3629
|
field: string;
|
|
@@ -3581,6 +3631,7 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
|
|
|
3581
3631
|
};
|
|
3582
3632
|
required: boolean;
|
|
3583
3633
|
label: string;
|
|
3634
|
+
dataCy: string;
|
|
3584
3635
|
clearable: boolean;
|
|
3585
3636
|
errorMessage: string;
|
|
3586
3637
|
v: any;
|
|
@@ -3638,13 +3689,13 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
|
|
|
3638
3689
|
"onClick:append"?: ((data: string | number | null) => any) | undefined;
|
|
3639
3690
|
}, {
|
|
3640
3691
|
disabled: boolean;
|
|
3641
|
-
dataCy: string;
|
|
3642
3692
|
collab: {
|
|
3643
3693
|
room: string;
|
|
3644
3694
|
field: string;
|
|
3645
3695
|
cachedUsers: CollabCachedUsersMap;
|
|
3646
3696
|
};
|
|
3647
3697
|
label: string;
|
|
3698
|
+
dataCy: string;
|
|
3648
3699
|
clearable: boolean;
|
|
3649
3700
|
errorMessage: string;
|
|
3650
3701
|
v: any;
|
|
@@ -3655,82 +3706,176 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
|
|
|
3655
3706
|
}): any;
|
|
3656
3707
|
}>;
|
|
3657
3708
|
|
|
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
|
-
|
|
3709
|
+
export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineComponent<{
|
|
3710
|
+
modelValue: {
|
|
3711
|
+
required: true;
|
|
3712
|
+
type: PropType<any>;
|
|
3713
|
+
};
|
|
3714
|
+
selected: PropType<any>;
|
|
3715
|
+
disabled: {
|
|
3716
|
+
type: PropType<boolean>;
|
|
3717
|
+
default: undefined;
|
|
3718
|
+
};
|
|
3719
|
+
multiple: {
|
|
3720
|
+
type: PropType<boolean>;
|
|
3721
|
+
default: boolean;
|
|
3722
|
+
};
|
|
3723
|
+
collab: {
|
|
3724
|
+
type: PropType<{
|
|
3725
|
+
room: string;
|
|
3726
|
+
field: string;
|
|
3727
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3728
|
+
}>;
|
|
3729
|
+
default: undefined;
|
|
3730
|
+
};
|
|
3731
|
+
loading: {
|
|
3732
|
+
type: PropType<boolean>;
|
|
3733
|
+
default: boolean;
|
|
3734
|
+
};
|
|
3735
|
+
required: {
|
|
3736
|
+
type: PropType<boolean>;
|
|
3737
|
+
default: undefined;
|
|
3738
|
+
};
|
|
3739
|
+
label: {
|
|
3740
|
+
type: PropType<string>;
|
|
3741
|
+
default: undefined;
|
|
3742
|
+
};
|
|
3743
|
+
hideLabel: {
|
|
3744
|
+
type: PropType<boolean>;
|
|
3745
|
+
default: boolean;
|
|
3746
|
+
};
|
|
3747
|
+
clearable: {
|
|
3748
|
+
type: PropType<boolean>;
|
|
3749
|
+
default: boolean;
|
|
3750
|
+
};
|
|
3751
|
+
hideDetails: {
|
|
3752
|
+
type: PropType<boolean>;
|
|
3753
|
+
default: boolean;
|
|
3754
|
+
};
|
|
3755
|
+
errorMessage: {
|
|
3756
|
+
type: PropType<string>;
|
|
3757
|
+
default: undefined;
|
|
3758
|
+
};
|
|
3759
|
+
v: {
|
|
3760
|
+
type: PropType<any>;
|
|
3761
|
+
default: null;
|
|
3762
|
+
};
|
|
3763
|
+
chips: {
|
|
3764
|
+
type: PropType<boolean>;
|
|
3765
|
+
default: boolean;
|
|
3766
|
+
};
|
|
3767
|
+
fetchItems: {
|
|
3768
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3769
|
+
required: true;
|
|
3770
|
+
};
|
|
3771
|
+
fetchItemsByIds: {
|
|
3772
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3773
|
+
required: true;
|
|
3774
|
+
};
|
|
3775
|
+
innerFilter: {
|
|
3776
|
+
type: PropType<FilterBag>;
|
|
3777
|
+
required: true;
|
|
3778
|
+
};
|
|
3779
|
+
filterByField: {
|
|
3780
|
+
type: PropType<string>;
|
|
3781
|
+
default: string;
|
|
3782
|
+
};
|
|
3783
|
+
filterSortBy: {
|
|
3784
|
+
type: PropType<string | null>;
|
|
3785
|
+
default: string;
|
|
3786
|
+
};
|
|
3787
|
+
disableInitFetch: {
|
|
3788
|
+
type: PropType<boolean>;
|
|
3789
|
+
default: boolean;
|
|
3790
|
+
};
|
|
3791
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3694
3792
|
searchChange: (data: string) => void;
|
|
3695
3793
|
searchChangeDebounced: (data: string) => void;
|
|
3696
3794
|
blur: (data: string | number | string[] | number[] | null) => void;
|
|
3697
3795
|
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
|
-
|
|
3796
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
3797
|
+
modelValue: {
|
|
3798
|
+
required: true;
|
|
3799
|
+
type: PropType<any>;
|
|
3800
|
+
};
|
|
3801
|
+
selected: PropType<any>;
|
|
3802
|
+
disabled: {
|
|
3803
|
+
type: PropType<boolean>;
|
|
3804
|
+
default: undefined;
|
|
3805
|
+
};
|
|
3806
|
+
multiple: {
|
|
3807
|
+
type: PropType<boolean>;
|
|
3808
|
+
default: boolean;
|
|
3809
|
+
};
|
|
3810
|
+
collab: {
|
|
3811
|
+
type: PropType<{
|
|
3812
|
+
room: string;
|
|
3813
|
+
field: string;
|
|
3814
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3815
|
+
}>;
|
|
3816
|
+
default: undefined;
|
|
3817
|
+
};
|
|
3818
|
+
loading: {
|
|
3819
|
+
type: PropType<boolean>;
|
|
3820
|
+
default: boolean;
|
|
3821
|
+
};
|
|
3822
|
+
required: {
|
|
3823
|
+
type: PropType<boolean>;
|
|
3824
|
+
default: undefined;
|
|
3825
|
+
};
|
|
3826
|
+
label: {
|
|
3827
|
+
type: PropType<string>;
|
|
3828
|
+
default: undefined;
|
|
3829
|
+
};
|
|
3830
|
+
hideLabel: {
|
|
3831
|
+
type: PropType<boolean>;
|
|
3832
|
+
default: boolean;
|
|
3833
|
+
};
|
|
3834
|
+
clearable: {
|
|
3835
|
+
type: PropType<boolean>;
|
|
3836
|
+
default: boolean;
|
|
3837
|
+
};
|
|
3838
|
+
hideDetails: {
|
|
3839
|
+
type: PropType<boolean>;
|
|
3840
|
+
default: boolean;
|
|
3841
|
+
};
|
|
3842
|
+
errorMessage: {
|
|
3843
|
+
type: PropType<string>;
|
|
3844
|
+
default: undefined;
|
|
3845
|
+
};
|
|
3846
|
+
v: {
|
|
3847
|
+
type: PropType<any>;
|
|
3848
|
+
default: null;
|
|
3849
|
+
};
|
|
3850
|
+
chips: {
|
|
3851
|
+
type: PropType<boolean>;
|
|
3852
|
+
default: boolean;
|
|
3853
|
+
};
|
|
3854
|
+
fetchItems: {
|
|
3855
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3856
|
+
required: true;
|
|
3857
|
+
};
|
|
3858
|
+
fetchItemsByIds: {
|
|
3859
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3860
|
+
required: true;
|
|
3861
|
+
};
|
|
3862
|
+
innerFilter: {
|
|
3863
|
+
type: PropType<FilterBag>;
|
|
3864
|
+
required: true;
|
|
3865
|
+
};
|
|
3866
|
+
filterByField: {
|
|
3867
|
+
type: PropType<string>;
|
|
3868
|
+
default: string;
|
|
3869
|
+
};
|
|
3870
|
+
filterSortBy: {
|
|
3871
|
+
type: PropType<string | null>;
|
|
3872
|
+
default: string;
|
|
3873
|
+
};
|
|
3874
|
+
disableInitFetch: {
|
|
3875
|
+
type: PropType<boolean>;
|
|
3876
|
+
default: boolean;
|
|
3877
|
+
};
|
|
3878
|
+
}>> & {
|
|
3734
3879
|
onFocus?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3735
3880
|
onBlur?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3736
3881
|
onSearchChange?: ((data: string) => any) | undefined;
|
|
@@ -3738,12 +3883,12 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3738
3883
|
}, {
|
|
3739
3884
|
disabled: boolean;
|
|
3740
3885
|
multiple: boolean;
|
|
3741
|
-
loading: boolean;
|
|
3742
3886
|
collab: {
|
|
3743
3887
|
room: string;
|
|
3744
3888
|
field: string;
|
|
3745
3889
|
cachedUsers: CollabCachedUsersMap;
|
|
3746
3890
|
};
|
|
3891
|
+
loading: boolean;
|
|
3747
3892
|
required: boolean;
|
|
3748
3893
|
label: string;
|
|
3749
3894
|
hideLabel: boolean;
|
|
@@ -3751,6 +3896,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3751
3896
|
hideDetails: boolean;
|
|
3752
3897
|
errorMessage: string;
|
|
3753
3898
|
v: any;
|
|
3899
|
+
chips: boolean;
|
|
3754
3900
|
filterByField: string;
|
|
3755
3901
|
filterSortBy: string | null;
|
|
3756
3902
|
disableInitFetch: boolean;
|
|
@@ -3760,7 +3906,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3760
3906
|
}): any;
|
|
3761
3907
|
}>;
|
|
3762
3908
|
|
|
3763
|
-
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<
|
|
3909
|
+
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3764
3910
|
modelValue: any;
|
|
3765
3911
|
label?: string | undefined;
|
|
3766
3912
|
required?: boolean | undefined;
|
|
@@ -3796,7 +3942,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3796
3942
|
focus: (data: string | number | string[] | number[] | null | undefined) => void;
|
|
3797
3943
|
searchChange: (data: string) => void;
|
|
3798
3944
|
searchChangeDebounced: (data: string) => void;
|
|
3799
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3945
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3800
3946
|
modelValue: any;
|
|
3801
3947
|
label?: string | undefined;
|
|
3802
3948
|
required?: boolean | undefined;
|
|
@@ -3847,7 +3993,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3847
3993
|
filterSortBy: string | null;
|
|
3848
3994
|
}, {}>;
|
|
3849
3995
|
|
|
3850
|
-
export declare const AFormRemoteCheckbox: DefineComponent<
|
|
3996
|
+
export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3851
3997
|
modelValue: boolean;
|
|
3852
3998
|
callbackToTrue: () => Promise<boolean>;
|
|
3853
3999
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3862,7 +4008,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3862
4008
|
v: null;
|
|
3863
4009
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3864
4010
|
"update:modelValue": (data: boolean) => void;
|
|
3865
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4011
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3866
4012
|
modelValue: boolean;
|
|
3867
4013
|
callbackToTrue: () => Promise<boolean>;
|
|
3868
4014
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3884,7 +4030,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3884
4030
|
v: any;
|
|
3885
4031
|
}, {}>;
|
|
3886
4032
|
|
|
3887
|
-
export declare const AFormRemoteSwitch: DefineComponent<
|
|
4033
|
+
export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3888
4034
|
modelValue: boolean;
|
|
3889
4035
|
callbackToTrue: () => Promise<boolean>;
|
|
3890
4036
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3899,7 +4045,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3899
4045
|
v: null;
|
|
3900
4046
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3901
4047
|
"update:modelValue": (data: boolean) => void;
|
|
3902
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4048
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3903
4049
|
modelValue: boolean;
|
|
3904
4050
|
callbackToTrue: () => Promise<boolean>;
|
|
3905
4051
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3921,7 +4067,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3921
4067
|
v: any;
|
|
3922
4068
|
}, {}>;
|
|
3923
4069
|
|
|
3924
|
-
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
4070
|
+
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3925
4071
|
modelValue: boolean;
|
|
3926
4072
|
label?: string | undefined;
|
|
3927
4073
|
dataCy?: string | undefined;
|
|
@@ -3938,7 +4084,7 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
|
|
|
3938
4084
|
"update:modelValue": (data: boolean) => void;
|
|
3939
4085
|
blur: (data: boolean) => void;
|
|
3940
4086
|
focus: (data: boolean) => void;
|
|
3941
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4087
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3942
4088
|
modelValue: boolean;
|
|
3943
4089
|
label?: string | undefined;
|
|
3944
4090
|
dataCy?: string | undefined;
|
|
@@ -3957,13 +4103,13 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
|
|
|
3957
4103
|
onBlur?: ((data: boolean) => any) | undefined;
|
|
3958
4104
|
}, {
|
|
3959
4105
|
disabled: boolean;
|
|
3960
|
-
dataCy: string;
|
|
3961
4106
|
collab: {
|
|
3962
4107
|
room: string;
|
|
3963
4108
|
field: string;
|
|
3964
4109
|
cachedUsers: CollabCachedUsersMap;
|
|
3965
4110
|
};
|
|
3966
4111
|
label: string;
|
|
4112
|
+
dataCy: string;
|
|
3967
4113
|
hideLabel: boolean;
|
|
3968
4114
|
}, {}>, {
|
|
3969
4115
|
locked?(_: {
|
|
@@ -4035,7 +4181,6 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
|
|
|
4035
4181
|
appendIcon: string;
|
|
4036
4182
|
disabled: boolean;
|
|
4037
4183
|
prependIcon: string;
|
|
4038
|
-
dataCy: string;
|
|
4039
4184
|
collab: {
|
|
4040
4185
|
room: string;
|
|
4041
4186
|
field: string;
|
|
@@ -4043,6 +4188,7 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
|
|
|
4043
4188
|
};
|
|
4044
4189
|
required: boolean;
|
|
4045
4190
|
label: string;
|
|
4191
|
+
dataCy: string;
|
|
4046
4192
|
hideLabel: boolean;
|
|
4047
4193
|
errorMessage: string;
|
|
4048
4194
|
v: any;
|
|
@@ -4134,15 +4280,15 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4134
4280
|
disabled: boolean;
|
|
4135
4281
|
prependIcon: string;
|
|
4136
4282
|
type: string;
|
|
4137
|
-
dataCy: string;
|
|
4138
|
-
placeholder: string;
|
|
4139
4283
|
collab: {
|
|
4140
4284
|
room: string;
|
|
4141
4285
|
field: string;
|
|
4142
4286
|
cachedUsers: CollabCachedUsersMap;
|
|
4143
4287
|
};
|
|
4288
|
+
placeholder: string;
|
|
4144
4289
|
required: boolean;
|
|
4145
4290
|
label: string;
|
|
4291
|
+
dataCy: string;
|
|
4146
4292
|
step: number;
|
|
4147
4293
|
maxlength: number;
|
|
4148
4294
|
hideLabel: boolean;
|
|
@@ -4155,7 +4301,7 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4155
4301
|
}): any;
|
|
4156
4302
|
}>;
|
|
4157
4303
|
|
|
4158
|
-
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
4304
|
+
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4159
4305
|
modelValue: any;
|
|
4160
4306
|
items: any[];
|
|
4161
4307
|
label?: string | undefined;
|
|
@@ -4185,7 +4331,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4185
4331
|
"update:modelValue": (data: any) => void;
|
|
4186
4332
|
blur: (data: any) => void;
|
|
4187
4333
|
focus: (data: any) => void;
|
|
4188
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4334
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4189
4335
|
modelValue: any;
|
|
4190
4336
|
items: any[];
|
|
4191
4337
|
label?: string | undefined;
|
|
@@ -4217,7 +4363,6 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4217
4363
|
onBlur?: ((data: any) => any) | undefined;
|
|
4218
4364
|
}, {
|
|
4219
4365
|
disabled: boolean;
|
|
4220
|
-
dataCy: string;
|
|
4221
4366
|
multiple: boolean;
|
|
4222
4367
|
collab: {
|
|
4223
4368
|
room: string;
|
|
@@ -4226,6 +4371,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4226
4371
|
};
|
|
4227
4372
|
required: boolean;
|
|
4228
4373
|
label: string;
|
|
4374
|
+
dataCy: string;
|
|
4229
4375
|
hideLabel: boolean;
|
|
4230
4376
|
clearable: boolean;
|
|
4231
4377
|
hideDetails: boolean;
|
|
@@ -4237,7 +4383,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4237
4383
|
}): any;
|
|
4238
4384
|
}>;
|
|
4239
4385
|
|
|
4240
|
-
export declare const AIconGroup: DefineComponent<
|
|
4386
|
+
export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4241
4387
|
mainIcon: string;
|
|
4242
4388
|
secondaryIcon?: string | null | undefined;
|
|
4243
4389
|
secondaryText?: string | null | undefined;
|
|
@@ -4246,7 +4392,7 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
4246
4392
|
secondaryIcon: null;
|
|
4247
4393
|
secondaryText: null;
|
|
4248
4394
|
size: string;
|
|
4249
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4395
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4250
4396
|
mainIcon: string;
|
|
4251
4397
|
secondaryIcon?: string | null | undefined;
|
|
4252
4398
|
secondaryText?: string | null | undefined;
|
|
@@ -4266,20 +4412,20 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4266
4412
|
required: true;
|
|
4267
4413
|
type: PropType<IntegerIdNullable>;
|
|
4268
4414
|
};
|
|
4269
|
-
dataCy: {
|
|
4270
|
-
type: PropType<string>;
|
|
4271
|
-
default: undefined;
|
|
4272
|
-
};
|
|
4273
4415
|
image: {
|
|
4274
4416
|
type: PropType<ImageAware>;
|
|
4275
4417
|
default: undefined;
|
|
4276
4418
|
};
|
|
4419
|
+
dataCy: {
|
|
4420
|
+
type: PropType<string>;
|
|
4421
|
+
default: undefined;
|
|
4422
|
+
};
|
|
4277
4423
|
configName: {
|
|
4278
4424
|
type: PropType<string>;
|
|
4279
4425
|
default: string;
|
|
4280
4426
|
};
|
|
4281
|
-
|
|
4282
|
-
type: PropType<
|
|
4427
|
+
selectLicences: {
|
|
4428
|
+
type: PropType<number[]>;
|
|
4283
4429
|
required: true;
|
|
4284
4430
|
};
|
|
4285
4431
|
labelT: {
|
|
@@ -4296,20 +4442,20 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4296
4442
|
required: true;
|
|
4297
4443
|
type: PropType<IntegerIdNullable>;
|
|
4298
4444
|
};
|
|
4299
|
-
dataCy: {
|
|
4300
|
-
type: PropType<string>;
|
|
4301
|
-
default: undefined;
|
|
4302
|
-
};
|
|
4303
4445
|
image: {
|
|
4304
4446
|
type: PropType<ImageAware>;
|
|
4305
4447
|
default: undefined;
|
|
4306
4448
|
};
|
|
4449
|
+
dataCy: {
|
|
4450
|
+
type: PropType<string>;
|
|
4451
|
+
default: undefined;
|
|
4452
|
+
};
|
|
4307
4453
|
configName: {
|
|
4308
4454
|
type: PropType<string>;
|
|
4309
4455
|
default: string;
|
|
4310
4456
|
};
|
|
4311
|
-
|
|
4312
|
-
type: PropType<
|
|
4457
|
+
selectLicences: {
|
|
4458
|
+
type: PropType<number[]>;
|
|
4313
4459
|
required: true;
|
|
4314
4460
|
};
|
|
4315
4461
|
labelT: {
|
|
@@ -4317,17 +4463,17 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4317
4463
|
default: string;
|
|
4318
4464
|
};
|
|
4319
4465
|
}>>, {
|
|
4320
|
-
dataCy: string;
|
|
4321
4466
|
image: ImageAware;
|
|
4467
|
+
dataCy: string;
|
|
4322
4468
|
configName: string;
|
|
4323
4469
|
labelT: string;
|
|
4324
4470
|
}, {}>;
|
|
4325
4471
|
|
|
4326
|
-
export declare const AImageWidget: DefineComponent<
|
|
4472
|
+
export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4327
4473
|
modelValue: IntegerIdNullable;
|
|
4328
4474
|
queueKey: UploadQueueKey;
|
|
4329
|
-
|
|
4330
|
-
|
|
4475
|
+
uploadLicence: IntegerId;
|
|
4476
|
+
selectLicences: IntegerId[];
|
|
4331
4477
|
image?: ImageAware | undefined;
|
|
4332
4478
|
configName?: string | undefined;
|
|
4333
4479
|
collab?: CollabComponentConfig;
|
|
@@ -4360,11 +4506,11 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4360
4506
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4361
4507
|
"update:modelValue": (data: IntegerIdNullable) => void;
|
|
4362
4508
|
afterMetadataSaveSuccess: () => void;
|
|
4363
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4509
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4364
4510
|
modelValue: IntegerIdNullable;
|
|
4365
4511
|
queueKey: UploadQueueKey;
|
|
4366
|
-
|
|
4367
|
-
|
|
4512
|
+
uploadLicence: IntegerId;
|
|
4513
|
+
selectLicences: IntegerId[];
|
|
4368
4514
|
image?: ImageAware | undefined;
|
|
4369
4515
|
configName?: string | undefined;
|
|
4370
4516
|
collab?: CollabComponentConfig;
|
|
@@ -4397,7 +4543,6 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4397
4543
|
onAfterMetadataSaveSuccess?: (() => any) | undefined;
|
|
4398
4544
|
}, {
|
|
4399
4545
|
width: number;
|
|
4400
|
-
dataCy: string;
|
|
4401
4546
|
collab: {
|
|
4402
4547
|
room: string;
|
|
4403
4548
|
field: string;
|
|
@@ -4406,6 +4551,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4406
4551
|
image: ImageAware;
|
|
4407
4552
|
required: boolean;
|
|
4408
4553
|
label: string;
|
|
4554
|
+
dataCy: string;
|
|
4409
4555
|
readonly: boolean;
|
|
4410
4556
|
configName: string;
|
|
4411
4557
|
expandOptions: boolean;
|
|
@@ -4414,11 +4560,11 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4414
4560
|
callDeleteApiOnRemove: boolean;
|
|
4415
4561
|
}, {}>;
|
|
4416
4562
|
|
|
4417
|
-
export declare const AImageWidgetMultiple: DefineComponent<
|
|
4563
|
+
export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4418
4564
|
modelValue: IntegerId[];
|
|
4419
4565
|
queueKey: UploadQueueKey;
|
|
4420
|
-
|
|
4421
|
-
|
|
4566
|
+
uploadLicence: IntegerId;
|
|
4567
|
+
selectLicences: IntegerId[];
|
|
4422
4568
|
configName?: string | undefined;
|
|
4423
4569
|
label?: string | undefined;
|
|
4424
4570
|
readonly?: boolean | undefined;
|
|
@@ -4440,11 +4586,11 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4440
4586
|
saveImages: () => Promise<boolean>;
|
|
4441
4587
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4442
4588
|
"update:modelValue": (data: number[]) => void;
|
|
4443
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4589
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4444
4590
|
modelValue: IntegerId[];
|
|
4445
4591
|
queueKey: UploadQueueKey;
|
|
4446
|
-
|
|
4447
|
-
|
|
4592
|
+
uploadLicence: IntegerId;
|
|
4593
|
+
selectLicences: IntegerId[];
|
|
4448
4594
|
configName?: string | undefined;
|
|
4449
4595
|
label?: string | undefined;
|
|
4450
4596
|
readonly?: boolean | undefined;
|
|
@@ -4466,14 +4612,14 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4466
4612
|
"onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
|
|
4467
4613
|
}, {
|
|
4468
4614
|
width: number;
|
|
4469
|
-
dataCy: string;
|
|
4470
4615
|
label: string;
|
|
4616
|
+
dataCy: string;
|
|
4471
4617
|
readonly: boolean;
|
|
4472
4618
|
configName: string;
|
|
4473
4619
|
callDeleteApiOnRemove: boolean;
|
|
4474
4620
|
}, {}>;
|
|
4475
4621
|
|
|
4476
|
-
export declare const AImageWidgetMultipleSimple: DefineComponent<
|
|
4622
|
+
export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4477
4623
|
modelValue: IntegerId[];
|
|
4478
4624
|
images?: ImageAware[] | undefined;
|
|
4479
4625
|
configName?: string | undefined;
|
|
@@ -4493,7 +4639,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4493
4639
|
aspectRatio: number;
|
|
4494
4640
|
showDescription: boolean;
|
|
4495
4641
|
showSource: boolean;
|
|
4496
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4642
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4497
4643
|
modelValue: IntegerId[];
|
|
4498
4644
|
images?: ImageAware[] | undefined;
|
|
4499
4645
|
configName?: string | undefined;
|
|
@@ -4524,7 +4670,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4524
4670
|
images: ImageAware[];
|
|
4525
4671
|
}, {}>;
|
|
4526
4672
|
|
|
4527
|
-
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<
|
|
4673
|
+
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4528
4674
|
modelValue: IntegerIdNullable | undefined;
|
|
4529
4675
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4530
4676
|
configName?: string | undefined;
|
|
@@ -4543,7 +4689,7 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
|
|
|
4543
4689
|
aspectRatio: number;
|
|
4544
4690
|
showDescription: boolean;
|
|
4545
4691
|
showSource: boolean;
|
|
4546
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4692
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4547
4693
|
modelValue: IntegerIdNullable | undefined;
|
|
4548
4694
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4549
4695
|
configName?: string | undefined;
|
|
@@ -4613,12 +4759,12 @@ export declare const AJobBaseCreateForm: DefineComponent<{
|
|
|
4613
4759
|
};
|
|
4614
4760
|
}>>, {}, {}>;
|
|
4615
4761
|
|
|
4616
|
-
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<
|
|
4762
|
+
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4617
4763
|
job: JobBase<`job${string}`>;
|
|
4618
4764
|
loading?: boolean | undefined;
|
|
4619
4765
|
}>, {
|
|
4620
4766
|
loading: boolean;
|
|
4621
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4767
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4622
4768
|
job: JobBase<`job${string}`>;
|
|
4623
4769
|
loading?: boolean | undefined;
|
|
4624
4770
|
}>, {
|
|
@@ -4629,15 +4775,15 @@ export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponen
|
|
|
4629
4775
|
"resource-name"?(_: {}): any;
|
|
4630
4776
|
}>;
|
|
4631
4777
|
|
|
4632
|
-
export declare const AJobPriorityChip: DefineComponent<
|
|
4778
|
+
export declare const AJobPriorityChip: DefineComponent<__VLS_TypePropsToRuntimeProps_61<{
|
|
4633
4779
|
priority: number;
|
|
4634
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4780
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_61<{
|
|
4635
4781
|
priority: number;
|
|
4636
4782
|
}>>>, {}, {}>;
|
|
4637
4783
|
|
|
4638
|
-
export declare const AJobStatusChip: DefineComponent<
|
|
4784
|
+
export declare const AJobStatusChip: DefineComponent<__VLS_TypePropsToRuntimeProps_32<{
|
|
4639
4785
|
value: JobStatus;
|
|
4640
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4786
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_32<{
|
|
4641
4787
|
value: JobStatus;
|
|
4642
4788
|
}>>>, {}, {}>;
|
|
4643
4789
|
|
|
@@ -4647,13 +4793,13 @@ export declare const ALanguageSelect: DefineComponent<{}, {}, {}, {}, {}, Compon
|
|
|
4647
4793
|
onAfterChange?: ((code: LanguageCode) => any) | undefined;
|
|
4648
4794
|
}, {}, {}>;
|
|
4649
4795
|
|
|
4650
|
-
export declare const ALogData: DefineComponent<
|
|
4796
|
+
export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4651
4797
|
data: any;
|
|
4652
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4798
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4653
4799
|
data: any;
|
|
4654
4800
|
}>, {}>>>, {}, {}>;
|
|
4655
4801
|
|
|
4656
|
-
export declare const ALoginView: DefineComponent<
|
|
4802
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4657
4803
|
title?: string | undefined;
|
|
4658
4804
|
logoUrl?: string | undefined;
|
|
4659
4805
|
loginUrl?: undefined | (() => string);
|
|
@@ -4663,7 +4809,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4663
4809
|
logoUrl: undefined;
|
|
4664
4810
|
loginUrl: undefined;
|
|
4665
4811
|
dataCy: string;
|
|
4666
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4812
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4667
4813
|
title?: string | undefined;
|
|
4668
4814
|
logoUrl?: string | undefined;
|
|
4669
4815
|
loginUrl?: undefined | (() => string);
|
|
@@ -4680,17 +4826,17 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4680
4826
|
loginUrl: () => string;
|
|
4681
4827
|
}, {}>;
|
|
4682
4828
|
|
|
4683
|
-
export declare const ALogLevelChip: DefineComponent<
|
|
4829
|
+
export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4684
4830
|
level: LogLevel;
|
|
4685
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4831
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4686
4832
|
level: LogLevel;
|
|
4687
4833
|
}>, {}>>>, {}, {}>;
|
|
4688
4834
|
|
|
4689
|
-
export declare const ALogoutView: DefineComponent<
|
|
4835
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4690
4836
|
logoutUrl?: undefined | (() => string);
|
|
4691
4837
|
}>, {
|
|
4692
4838
|
logoutUrl: undefined;
|
|
4693
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4839
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4694
4840
|
logoutUrl?: undefined | (() => string);
|
|
4695
4841
|
}>, {
|
|
4696
4842
|
logoutUrl: undefined;
|
|
@@ -4698,9 +4844,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_Ty
|
|
|
4698
4844
|
logoutUrl: () => string;
|
|
4699
4845
|
}, {}>;
|
|
4700
4846
|
|
|
4701
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4847
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4702
4848
|
returnRouteName: string;
|
|
4703
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4849
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4704
4850
|
returnRouteName: string;
|
|
4705
4851
|
}>, {}>>>, {}, {}>;
|
|
4706
4852
|
|
|
@@ -4737,7 +4883,8 @@ export declare const AnzuSystemsCommonAdmin: {
|
|
|
4737
4883
|
install<T extends `${string}_${string}_${string}` = `${string}_${string}_${string}`>(app: App, options: PluginOptions<T>): void;
|
|
4738
4884
|
};
|
|
4739
4885
|
|
|
4740
|
-
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, AnzuUserMinimal {
|
|
4886
|
+
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, Omit<AnzuUserMinimal, 'id'> {
|
|
4887
|
+
id?: IntegerIdNullable;
|
|
4741
4888
|
enabled: boolean;
|
|
4742
4889
|
roles: string[];
|
|
4743
4890
|
permissionGroups: IntegerId[];
|
|
@@ -4879,7 +5026,7 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
|
|
|
4879
5026
|
|
|
4880
5027
|
export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
|
|
4881
5028
|
|
|
4882
|
-
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<
|
|
5029
|
+
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4883
5030
|
modelValue: any;
|
|
4884
5031
|
dirty?: Set<string | number> | undefined;
|
|
4885
5032
|
keyField?: string | undefined;
|
|
@@ -4889,6 +5036,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4889
5036
|
disableDefaultSort?: boolean | undefined;
|
|
4890
5037
|
updatePosition?: boolean | undefined;
|
|
4891
5038
|
positionField?: string | undefined;
|
|
5039
|
+
positionMultiplier?: number | undefined;
|
|
4892
5040
|
showAddAfterButton?: boolean | undefined;
|
|
4893
5041
|
showAddLastButton?: boolean | undefined;
|
|
4894
5042
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4903,6 +5051,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4903
5051
|
disableDefaultSort: boolean;
|
|
4904
5052
|
updatePosition: boolean;
|
|
4905
5053
|
positionField: string;
|
|
5054
|
+
positionMultiplier: number;
|
|
4906
5055
|
showAddAfterButton: boolean;
|
|
4907
5056
|
showAddLastButton: boolean;
|
|
4908
5057
|
showDeleteButton: boolean;
|
|
@@ -4919,12 +5068,13 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4919
5068
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4920
5069
|
"update:modelValue": (data: any[]) => void;
|
|
4921
5070
|
"update:dirty": (data: (string | number)[]) => void;
|
|
5071
|
+
onStart: () => void;
|
|
4922
5072
|
onEnd: (data: SortableItemNewPositions) => void;
|
|
4923
5073
|
onAddAfter: (data: SortableItem<any>) => void;
|
|
4924
5074
|
onAddLast: (data: any) => void;
|
|
4925
5075
|
onEdit: (data: SortableItem<any>) => void;
|
|
4926
5076
|
onDelete: (data: SortableItem<any>) => void;
|
|
4927
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5077
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4928
5078
|
modelValue: any;
|
|
4929
5079
|
dirty?: Set<string | number> | undefined;
|
|
4930
5080
|
keyField?: string | undefined;
|
|
@@ -4934,6 +5084,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4934
5084
|
disableDefaultSort?: boolean | undefined;
|
|
4935
5085
|
updatePosition?: boolean | undefined;
|
|
4936
5086
|
positionField?: string | undefined;
|
|
5087
|
+
positionMultiplier?: number | undefined;
|
|
4937
5088
|
showAddAfterButton?: boolean | undefined;
|
|
4938
5089
|
showAddLastButton?: boolean | undefined;
|
|
4939
5090
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4948,6 +5099,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4948
5099
|
disableDefaultSort: boolean;
|
|
4949
5100
|
updatePosition: boolean;
|
|
4950
5101
|
positionField: string;
|
|
5102
|
+
positionMultiplier: number;
|
|
4951
5103
|
showAddAfterButton: boolean;
|
|
4952
5104
|
showAddLastButton: boolean;
|
|
4953
5105
|
showDeleteButton: boolean;
|
|
@@ -4956,6 +5108,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4956
5108
|
}>>> & {
|
|
4957
5109
|
"onUpdate:modelValue"?: ((data: any[]) => any) | undefined;
|
|
4958
5110
|
onOnEnd?: ((data: SortableItemNewPositions) => any) | undefined;
|
|
5111
|
+
onOnStart?: (() => any) | undefined;
|
|
4959
5112
|
"onUpdate:dirty"?: ((data: (string | number)[]) => any) | undefined;
|
|
4960
5113
|
onOnAddAfter?: ((data: SortableItem<any>) => any) | undefined;
|
|
4961
5114
|
onOnAddLast?: ((data: any) => any) | undefined;
|
|
@@ -4970,18 +5123,25 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4970
5123
|
disableDefaultSort: boolean;
|
|
4971
5124
|
updatePosition: boolean;
|
|
4972
5125
|
positionField: string;
|
|
5126
|
+
positionMultiplier: number;
|
|
4973
5127
|
showAddAfterButton: boolean;
|
|
4974
5128
|
showAddLastButton: boolean;
|
|
4975
5129
|
showDeleteButton: boolean;
|
|
4976
5130
|
showEditButton: boolean;
|
|
4977
5131
|
addLastButtonT: string;
|
|
4978
5132
|
}, {}>, {
|
|
5133
|
+
itemBefore?(_: {
|
|
5134
|
+
item: SortableItem<any>;
|
|
5135
|
+
}): any;
|
|
4979
5136
|
item?(_: {
|
|
4980
5137
|
item: SortableItem<any>;
|
|
4981
5138
|
}): any;
|
|
4982
5139
|
buttons?(_: {
|
|
4983
5140
|
item: SortableItem<any>;
|
|
4984
5141
|
}): any;
|
|
5142
|
+
itemAfter?(_: {
|
|
5143
|
+
item: SortableItem<any>;
|
|
5144
|
+
}): any;
|
|
4985
5145
|
"add-last-activator"?(_: {
|
|
4986
5146
|
props: {
|
|
4987
5147
|
onClick: () => void;
|
|
@@ -4989,7 +5149,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4989
5149
|
}): any;
|
|
4990
5150
|
}>;
|
|
4991
5151
|
|
|
4992
|
-
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<
|
|
5152
|
+
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
4993
5153
|
modelValue: SortableNested<any>;
|
|
4994
5154
|
maxDepth: number;
|
|
4995
5155
|
disableDraggable?: boolean | undefined;
|
|
@@ -5025,7 +5185,7 @@ export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent
|
|
|
5025
5185
|
onAddLast: (data: SortableNestedItem<any> | null) => void;
|
|
5026
5186
|
onEdit: (data: SortableNestedItem<any>) => void;
|
|
5027
5187
|
onDelete: (data: SortableNestedItem<any>) => void;
|
|
5028
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5188
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
5029
5189
|
modelValue: SortableNested<any>;
|
|
5030
5190
|
maxDepth: number;
|
|
5031
5191
|
disableDraggable?: boolean | undefined;
|
|
@@ -5273,10 +5433,10 @@ declare enum AssetSelectReturnType {
|
|
|
5273
5433
|
}
|
|
5274
5434
|
|
|
5275
5435
|
export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
5276
|
-
pagination: Pagination;
|
|
5277
|
-
loading?: boolean | undefined;
|
|
5278
5436
|
submitFilter: Fn;
|
|
5279
5437
|
resetFilter: Fn;
|
|
5438
|
+
pagination: Pagination;
|
|
5439
|
+
loading?: boolean | undefined;
|
|
5280
5440
|
modelValue?: boolean | undefined;
|
|
5281
5441
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5282
5442
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5317,10 +5477,10 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5317
5477
|
open: () => void;
|
|
5318
5478
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
5319
5479
|
props: {
|
|
5320
|
-
pagination: Pagination;
|
|
5321
|
-
loading?: boolean | undefined;
|
|
5322
5480
|
submitFilter: Fn;
|
|
5323
5481
|
resetFilter: Fn;
|
|
5482
|
+
pagination: Pagination;
|
|
5483
|
+
loading?: boolean | undefined;
|
|
5324
5484
|
modelValue?: boolean | undefined;
|
|
5325
5485
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5326
5486
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5365,10 +5525,10 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5365
5525
|
}> & {
|
|
5366
5526
|
__ctx?: {
|
|
5367
5527
|
props: {
|
|
5368
|
-
pagination: Pagination;
|
|
5369
|
-
loading?: boolean | undefined;
|
|
5370
5528
|
submitFilter: Fn;
|
|
5371
5529
|
resetFilter: Fn;
|
|
5530
|
+
pagination: Pagination;
|
|
5531
|
+
loading?: boolean | undefined;
|
|
5372
5532
|
modelValue?: boolean | undefined;
|
|
5373
5533
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5374
5534
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5411,14 +5571,14 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5411
5571
|
} | undefined;
|
|
5412
5572
|
};
|
|
5413
5573
|
|
|
5414
|
-
export declare const ASystemBar: DefineComponent<
|
|
5574
|
+
export declare const ASystemBar: DefineComponent<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5415
5575
|
currentVersion: string;
|
|
5416
5576
|
checkInterval?: number | undefined;
|
|
5417
5577
|
jsonRelativePath?: string | undefined;
|
|
5418
5578
|
}>, {
|
|
5419
5579
|
checkInterval: number;
|
|
5420
5580
|
jsonRelativePath: string;
|
|
5421
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5581
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5422
5582
|
currentVersion: string;
|
|
5423
5583
|
checkInterval?: number | undefined;
|
|
5424
5584
|
jsonRelativePath?: string | undefined;
|
|
@@ -5440,7 +5600,7 @@ export declare const ASystemEntityScope: __VLS_WithTemplateSlots_4<DefineCompone
|
|
|
5440
5600
|
default?(_: {}): any;
|
|
5441
5601
|
}>;
|
|
5442
5602
|
|
|
5443
|
-
export declare const ATableCopyIdButton: DefineComponent<
|
|
5603
|
+
export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5444
5604
|
id: number | string;
|
|
5445
5605
|
buttonT?: string | undefined;
|
|
5446
5606
|
buttonClass?: string | undefined;
|
|
@@ -5455,7 +5615,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5455
5615
|
notifyT: string;
|
|
5456
5616
|
dataCy: string;
|
|
5457
5617
|
size: string;
|
|
5458
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5618
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5459
5619
|
id: number | string;
|
|
5460
5620
|
buttonT?: string | undefined;
|
|
5461
5621
|
buttonClass?: string | undefined;
|
|
@@ -5479,7 +5639,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5479
5639
|
iconT: string;
|
|
5480
5640
|
}, {}>;
|
|
5481
5641
|
|
|
5482
|
-
export declare const ATableDetailButton: DefineComponent<
|
|
5642
|
+
export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5483
5643
|
routeName: string;
|
|
5484
5644
|
recordId?: number | string | undefined;
|
|
5485
5645
|
routeParams?: any | undefined;
|
|
@@ -5492,7 +5652,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5492
5652
|
buttonT: string;
|
|
5493
5653
|
buttonClass: string;
|
|
5494
5654
|
dataCy: string;
|
|
5495
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5655
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5496
5656
|
routeName: string;
|
|
5497
5657
|
recordId?: number | string | undefined;
|
|
5498
5658
|
routeParams?: any | undefined;
|
|
@@ -5513,7 +5673,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5513
5673
|
recordId: string | number;
|
|
5514
5674
|
}, {}>;
|
|
5515
5675
|
|
|
5516
|
-
export declare const ATableEditButton: DefineComponent<
|
|
5676
|
+
export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5517
5677
|
routeName: string;
|
|
5518
5678
|
recordId?: number | string | undefined;
|
|
5519
5679
|
routeParams?: any | undefined;
|
|
@@ -5526,7 +5686,7 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5526
5686
|
buttonT: string;
|
|
5527
5687
|
buttonClass: string;
|
|
5528
5688
|
dataCy: string;
|
|
5529
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5689
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5530
5690
|
routeName: string;
|
|
5531
5691
|
recordId?: number | string | undefined;
|
|
5532
5692
|
routeParams?: any | undefined;
|
|
@@ -5549,14 +5709,14 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5549
5709
|
|
|
5550
5710
|
export declare const AThemeSelect: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
5551
5711
|
|
|
5552
|
-
export declare const ATimeTrackingFields: DefineComponent<
|
|
5712
|
+
export declare const ATimeTrackingFields: DefineComponent<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5553
5713
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5554
5714
|
hideCreatedAt?: boolean | undefined;
|
|
5555
5715
|
hideModifiedAt?: boolean | undefined;
|
|
5556
5716
|
}>, {
|
|
5557
5717
|
hideCreatedAt: boolean;
|
|
5558
5718
|
hideModifiedAt: boolean;
|
|
5559
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5719
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5560
5720
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5561
5721
|
hideCreatedAt?: boolean | undefined;
|
|
5562
5722
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5579,13 +5739,13 @@ declare interface AudioAttributes {
|
|
|
5579
5739
|
bitrate: number;
|
|
5580
5740
|
}
|
|
5581
5741
|
|
|
5582
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5742
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5583
5743
|
returnRouteName: string;
|
|
5584
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5744
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5585
5745
|
returnRouteName: string;
|
|
5586
5746
|
}>, {}>>>, {}, {}>;
|
|
5587
5747
|
|
|
5588
|
-
export declare const AUserAndTimeTrackingFields: DefineComponent<
|
|
5748
|
+
export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5589
5749
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5590
5750
|
hideCreatedAt?: boolean | undefined;
|
|
5591
5751
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5596,7 +5756,7 @@ export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefau
|
|
|
5596
5756
|
hideModifiedAt: boolean;
|
|
5597
5757
|
hideCreatedBy: boolean;
|
|
5598
5758
|
hideModifiedBy: boolean;
|
|
5599
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5759
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5600
5760
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5601
5761
|
hideCreatedAt?: boolean | undefined;
|
|
5602
5762
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -6051,6 +6211,105 @@ export declare interface DamAssetLicenceMinimal {
|
|
|
6051
6211
|
name: string;
|
|
6052
6212
|
}
|
|
6053
6213
|
|
|
6214
|
+
export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<{
|
|
6215
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6216
|
+
multiple: {
|
|
6217
|
+
type: PropType<boolean>;
|
|
6218
|
+
default: boolean;
|
|
6219
|
+
};
|
|
6220
|
+
required: {
|
|
6221
|
+
type: PropType<boolean>;
|
|
6222
|
+
default: undefined;
|
|
6223
|
+
};
|
|
6224
|
+
modelValue: {
|
|
6225
|
+
type: PropType<any>;
|
|
6226
|
+
required: true;
|
|
6227
|
+
};
|
|
6228
|
+
label: {
|
|
6229
|
+
type: PropType<string>;
|
|
6230
|
+
default: undefined;
|
|
6231
|
+
};
|
|
6232
|
+
dataCy: {
|
|
6233
|
+
type: PropType<string>;
|
|
6234
|
+
default: string;
|
|
6235
|
+
};
|
|
6236
|
+
clearable: {
|
|
6237
|
+
type: PropType<boolean>;
|
|
6238
|
+
default: boolean;
|
|
6239
|
+
};
|
|
6240
|
+
hideDetails: {
|
|
6241
|
+
type: PropType<boolean>;
|
|
6242
|
+
default: undefined;
|
|
6243
|
+
};
|
|
6244
|
+
disableInitFetch: {
|
|
6245
|
+
type: PropType<boolean>;
|
|
6246
|
+
default: boolean;
|
|
6247
|
+
};
|
|
6248
|
+
extSystemId: {
|
|
6249
|
+
type: PropType<number | null>;
|
|
6250
|
+
default: null;
|
|
6251
|
+
};
|
|
6252
|
+
client: {
|
|
6253
|
+
type: PropType<() => AxiosInstance>;
|
|
6254
|
+
required: true;
|
|
6255
|
+
};
|
|
6256
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6257
|
+
"update:modelValue": (data: any) => void;
|
|
6258
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
6259
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6260
|
+
multiple: {
|
|
6261
|
+
type: PropType<boolean>;
|
|
6262
|
+
default: boolean;
|
|
6263
|
+
};
|
|
6264
|
+
required: {
|
|
6265
|
+
type: PropType<boolean>;
|
|
6266
|
+
default: undefined;
|
|
6267
|
+
};
|
|
6268
|
+
modelValue: {
|
|
6269
|
+
type: PropType<any>;
|
|
6270
|
+
required: true;
|
|
6271
|
+
};
|
|
6272
|
+
label: {
|
|
6273
|
+
type: PropType<string>;
|
|
6274
|
+
default: undefined;
|
|
6275
|
+
};
|
|
6276
|
+
dataCy: {
|
|
6277
|
+
type: PropType<string>;
|
|
6278
|
+
default: string;
|
|
6279
|
+
};
|
|
6280
|
+
clearable: {
|
|
6281
|
+
type: PropType<boolean>;
|
|
6282
|
+
default: boolean;
|
|
6283
|
+
};
|
|
6284
|
+
hideDetails: {
|
|
6285
|
+
type: PropType<boolean>;
|
|
6286
|
+
default: undefined;
|
|
6287
|
+
};
|
|
6288
|
+
disableInitFetch: {
|
|
6289
|
+
type: PropType<boolean>;
|
|
6290
|
+
default: boolean;
|
|
6291
|
+
};
|
|
6292
|
+
extSystemId: {
|
|
6293
|
+
type: PropType<number | null>;
|
|
6294
|
+
default: null;
|
|
6295
|
+
};
|
|
6296
|
+
client: {
|
|
6297
|
+
type: PropType<() => AxiosInstance>;
|
|
6298
|
+
required: true;
|
|
6299
|
+
};
|
|
6300
|
+
}>> & {
|
|
6301
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6302
|
+
}, {
|
|
6303
|
+
multiple: boolean;
|
|
6304
|
+
required: boolean;
|
|
6305
|
+
label: string;
|
|
6306
|
+
dataCy: string;
|
|
6307
|
+
clearable: boolean;
|
|
6308
|
+
hideDetails: boolean;
|
|
6309
|
+
disableInitFetch: boolean;
|
|
6310
|
+
extSystemId: IntegerId | null;
|
|
6311
|
+
}, {}>;
|
|
6312
|
+
|
|
6054
6313
|
export declare enum DamAssetStatus {
|
|
6055
6314
|
Draft = "draft",
|
|
6056
6315
|
WithFile = "with_file",
|
|
@@ -6086,6 +6345,18 @@ export declare enum DamAuthorType {
|
|
|
6086
6345
|
Default = "none"
|
|
6087
6346
|
}
|
|
6088
6347
|
|
|
6348
|
+
declare interface DamConfigLicenceExtSystem {
|
|
6349
|
+
extSystem: IntegerId;
|
|
6350
|
+
name: string;
|
|
6351
|
+
}
|
|
6352
|
+
|
|
6353
|
+
declare interface DamConfigLicenceExtSystemReturnType {
|
|
6354
|
+
licence: IntegerId;
|
|
6355
|
+
extSystem: IntegerId;
|
|
6356
|
+
licenceName: string;
|
|
6357
|
+
extSystemConfig: DamExtSystemConfig;
|
|
6358
|
+
}
|
|
6359
|
+
|
|
6089
6360
|
export declare const damCurrentUser: Ref<{
|
|
6090
6361
|
selectedLicence: {
|
|
6091
6362
|
id: number;
|
|
@@ -6116,6 +6387,7 @@ export declare const damCurrentUser: Ref<{
|
|
|
6116
6387
|
};
|
|
6117
6388
|
allowedAssetExternalProviders: string[];
|
|
6118
6389
|
allowedDistributionServices: string[];
|
|
6390
|
+
id?: IntegerIdNullable | undefined;
|
|
6119
6391
|
enabled: boolean;
|
|
6120
6392
|
roles: string[];
|
|
6121
6393
|
permissionGroups: number[];
|
|
@@ -6127,7 +6399,6 @@ export declare const damCurrentUser: Ref<{
|
|
|
6127
6399
|
modifiedAt: string;
|
|
6128
6400
|
modifiedBy: IntegerIdNullable;
|
|
6129
6401
|
createdBy: IntegerIdNullable;
|
|
6130
|
-
id: number;
|
|
6131
6402
|
email: string;
|
|
6132
6403
|
} | undefined>;
|
|
6133
6404
|
|
|
@@ -6190,6 +6461,38 @@ export declare enum DamDistributionRequirementStrategy {
|
|
|
6190
6461
|
|
|
6191
6462
|
export declare type DamDistributionServiceName = string;
|
|
6192
6463
|
|
|
6464
|
+
export declare const DamDistributionServiceSelect: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6465
|
+
modelValue: string[];
|
|
6466
|
+
client: () => AxiosInstance;
|
|
6467
|
+
multiple?: boolean | undefined;
|
|
6468
|
+
label?: string | undefined;
|
|
6469
|
+
dataCy?: string | undefined;
|
|
6470
|
+
}>, {
|
|
6471
|
+
multiple: boolean;
|
|
6472
|
+
label: undefined;
|
|
6473
|
+
dataCy: string;
|
|
6474
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6475
|
+
"update:modelValue": (data: string[]) => void;
|
|
6476
|
+
blur: (data: string[]) => void;
|
|
6477
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6478
|
+
modelValue: string[];
|
|
6479
|
+
client: () => AxiosInstance;
|
|
6480
|
+
multiple?: boolean | undefined;
|
|
6481
|
+
label?: string | undefined;
|
|
6482
|
+
dataCy?: string | undefined;
|
|
6483
|
+
}>, {
|
|
6484
|
+
multiple: boolean;
|
|
6485
|
+
label: undefined;
|
|
6486
|
+
dataCy: string;
|
|
6487
|
+
}>>> & {
|
|
6488
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6489
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6490
|
+
}, {
|
|
6491
|
+
multiple: boolean;
|
|
6492
|
+
label: string;
|
|
6493
|
+
dataCy: string;
|
|
6494
|
+
}, {}>;
|
|
6495
|
+
|
|
6193
6496
|
export declare enum DamDistributionServiceType {
|
|
6194
6497
|
Youtube = "youtubeDistribution",
|
|
6195
6498
|
Jw = "jwDistribution",
|
|
@@ -6212,6 +6515,38 @@ export declare type DamExternalProviderAssetConfig = Record<DamExternalProviderA
|
|
|
6212
6515
|
|
|
6213
6516
|
export declare type DamExternalProviderAssetName = string;
|
|
6214
6517
|
|
|
6518
|
+
export declare const DamExternalProviderAssetSelect: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6519
|
+
modelValue: string[];
|
|
6520
|
+
client: () => AxiosInstance;
|
|
6521
|
+
multiple?: boolean | undefined;
|
|
6522
|
+
label?: string | undefined;
|
|
6523
|
+
dataCy?: string | undefined;
|
|
6524
|
+
}>, {
|
|
6525
|
+
multiple: boolean;
|
|
6526
|
+
label: undefined;
|
|
6527
|
+
dataCy: string;
|
|
6528
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6529
|
+
"update:modelValue": (data: string[]) => void;
|
|
6530
|
+
blur: (data: string[]) => void;
|
|
6531
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6532
|
+
modelValue: string[];
|
|
6533
|
+
client: () => AxiosInstance;
|
|
6534
|
+
multiple?: boolean | undefined;
|
|
6535
|
+
label?: string | undefined;
|
|
6536
|
+
dataCy?: string | undefined;
|
|
6537
|
+
}>, {
|
|
6538
|
+
multiple: boolean;
|
|
6539
|
+
label: undefined;
|
|
6540
|
+
dataCy: string;
|
|
6541
|
+
}>>> & {
|
|
6542
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6543
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6544
|
+
}, {
|
|
6545
|
+
multiple: boolean;
|
|
6546
|
+
label: string;
|
|
6547
|
+
dataCy: string;
|
|
6548
|
+
}, {}>;
|
|
6549
|
+
|
|
6215
6550
|
export declare interface DamExtSystem extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
6216
6551
|
id: IntegerId;
|
|
6217
6552
|
name: string;
|
|
@@ -6247,6 +6582,56 @@ export declare interface DamExtSystemConfigItem {
|
|
|
6247
6582
|
export declare interface DamExtSystemMinimal extends Pick<DamExtSystem, 'id' | 'name'> {
|
|
6248
6583
|
}
|
|
6249
6584
|
|
|
6585
|
+
export declare const DamExtSystemRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6586
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6587
|
+
client: () => AxiosInstance;
|
|
6588
|
+
label?: string | undefined;
|
|
6589
|
+
required?: boolean | undefined;
|
|
6590
|
+
multiple?: boolean | undefined;
|
|
6591
|
+
clearable?: boolean | undefined;
|
|
6592
|
+
dataCy?: string | undefined;
|
|
6593
|
+
hideDetails?: boolean | undefined;
|
|
6594
|
+
disableInitFetch?: boolean | undefined;
|
|
6595
|
+
}>, {
|
|
6596
|
+
label: undefined;
|
|
6597
|
+
required: undefined;
|
|
6598
|
+
multiple: boolean;
|
|
6599
|
+
clearable: boolean;
|
|
6600
|
+
dataCy: string;
|
|
6601
|
+
hideDetails: undefined;
|
|
6602
|
+
disableInitFetch: boolean;
|
|
6603
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6604
|
+
"update:modelValue": (data: any) => void;
|
|
6605
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6606
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6607
|
+
client: () => AxiosInstance;
|
|
6608
|
+
label?: string | undefined;
|
|
6609
|
+
required?: boolean | undefined;
|
|
6610
|
+
multiple?: boolean | undefined;
|
|
6611
|
+
clearable?: boolean | undefined;
|
|
6612
|
+
dataCy?: string | undefined;
|
|
6613
|
+
hideDetails?: boolean | undefined;
|
|
6614
|
+
disableInitFetch?: boolean | undefined;
|
|
6615
|
+
}>, {
|
|
6616
|
+
label: undefined;
|
|
6617
|
+
required: undefined;
|
|
6618
|
+
multiple: boolean;
|
|
6619
|
+
clearable: boolean;
|
|
6620
|
+
dataCy: string;
|
|
6621
|
+
hideDetails: undefined;
|
|
6622
|
+
disableInitFetch: boolean;
|
|
6623
|
+
}>>> & {
|
|
6624
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6625
|
+
}, {
|
|
6626
|
+
multiple: boolean;
|
|
6627
|
+
required: boolean;
|
|
6628
|
+
label: string;
|
|
6629
|
+
dataCy: string;
|
|
6630
|
+
clearable: boolean;
|
|
6631
|
+
hideDetails: boolean;
|
|
6632
|
+
disableInitFetch: boolean;
|
|
6633
|
+
}, {}>;
|
|
6634
|
+
|
|
6250
6635
|
export declare const damFileTypeFix: (file: File | null | undefined) => string;
|
|
6251
6636
|
|
|
6252
6637
|
export declare interface DamKeyword extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
@@ -6381,6 +6766,19 @@ export declare interface DamUploadStartResponse {
|
|
|
6381
6766
|
asset: DocId;
|
|
6382
6767
|
}
|
|
6383
6768
|
|
|
6769
|
+
export declare interface DamUser extends Omit<AnzuUser, 'id'>, DamUserUpdateDto {
|
|
6770
|
+
}
|
|
6771
|
+
|
|
6772
|
+
export declare interface DamUserUpdateDto {
|
|
6773
|
+
id: IntegerId;
|
|
6774
|
+
assetLicences: IntegerId[];
|
|
6775
|
+
allowedAssetExternalProviders: string[];
|
|
6776
|
+
allowedDistributionServices: string[];
|
|
6777
|
+
adminToExtSystems: IntegerId[];
|
|
6778
|
+
readonly userToExtSystems: IntegerId[];
|
|
6779
|
+
plainPassword?: string;
|
|
6780
|
+
}
|
|
6781
|
+
|
|
6384
6782
|
export declare type DatatableOrderingOption = {
|
|
6385
6783
|
id: number;
|
|
6386
6784
|
titleT: string;
|
|
@@ -6476,8 +6874,22 @@ export declare type EnableDisable = 'enable' | 'disable';
|
|
|
6476
6874
|
|
|
6477
6875
|
export declare const eventClickBlur: (event?: Event) => void;
|
|
6478
6876
|
|
|
6877
|
+
export declare const fetchDamAssetLicenceList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamAssetLicence[]>;
|
|
6878
|
+
|
|
6879
|
+
export declare const fetchDamAssetLicenceListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamAssetLicence[]>;
|
|
6880
|
+
|
|
6479
6881
|
export declare const fetchDamCurrentUser: (client: () => AxiosInstance) => Promise<DamCurrentUserDto>;
|
|
6480
6882
|
|
|
6883
|
+
export declare const fetchDamExtSystemList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamExtSystem[]>;
|
|
6884
|
+
|
|
6885
|
+
export declare const fetchDamExtSystemListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamExtSystem[]>;
|
|
6886
|
+
|
|
6887
|
+
export declare const fetchDamUser: (client: () => AxiosInstance, id: number) => Promise<DamUser>;
|
|
6888
|
+
|
|
6889
|
+
export declare const fetchDamUserList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamUser[]>;
|
|
6890
|
+
|
|
6891
|
+
export declare const fetchDamUserListByIds: (client: () => AxiosInstance, ids: number[]) => Promise<DamUser[]>;
|
|
6892
|
+
|
|
6481
6893
|
declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
6482
6894
|
|
|
6483
6895
|
declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
@@ -6605,6 +7017,8 @@ export declare const i18n: I18n<{
|
|
|
6605
7017
|
refresh: string;
|
|
6606
7018
|
forwards: string;
|
|
6607
7019
|
backwards: string;
|
|
7020
|
+
next: string;
|
|
7021
|
+
prev: string;
|
|
6608
7022
|
loadMore: string;
|
|
6609
7023
|
};
|
|
6610
7024
|
model: {
|
|
@@ -6718,6 +7132,11 @@ export declare const i18n: I18n<{
|
|
|
6718
7132
|
resolvedPermissions: string;
|
|
6719
7133
|
noPermissions: string;
|
|
6720
7134
|
};
|
|
7135
|
+
copyPermissions: {
|
|
7136
|
+
title: string;
|
|
7137
|
+
desc: string;
|
|
7138
|
+
srcUser: string;
|
|
7139
|
+
};
|
|
6721
7140
|
};
|
|
6722
7141
|
job: {
|
|
6723
7142
|
filter: {
|
|
@@ -7287,17 +7706,6 @@ export declare interface ImageCreateUpdateAwareKeyed extends ImageCreateUpdateAw
|
|
|
7287
7706
|
key: string;
|
|
7288
7707
|
}
|
|
7289
7708
|
|
|
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
7709
|
export declare type Immutable<T> = {
|
|
7302
7710
|
readonly [K in keyof T]: Immutable<T[K]>;
|
|
7303
7711
|
};
|
|
@@ -7502,6 +7910,8 @@ export declare const messagesCs: {
|
|
|
7502
7910
|
refresh: string;
|
|
7503
7911
|
forwards: string;
|
|
7504
7912
|
backwards: string;
|
|
7913
|
+
next: string;
|
|
7914
|
+
prev: string;
|
|
7505
7915
|
loadMore: string;
|
|
7506
7916
|
};
|
|
7507
7917
|
model: {
|
|
@@ -7615,6 +8025,11 @@ export declare const messagesCs: {
|
|
|
7615
8025
|
resolvedPermissions: string;
|
|
7616
8026
|
noPermissions: string;
|
|
7617
8027
|
};
|
|
8028
|
+
copyPermissions: {
|
|
8029
|
+
title: string;
|
|
8030
|
+
desc: string;
|
|
8031
|
+
srcUser: string;
|
|
8032
|
+
};
|
|
7618
8033
|
};
|
|
7619
8034
|
job: {
|
|
7620
8035
|
filter: {
|
|
@@ -8190,6 +8605,8 @@ export declare const messagesEn: {
|
|
|
8190
8605
|
refresh: string;
|
|
8191
8606
|
forwards: string;
|
|
8192
8607
|
backwards: string;
|
|
8608
|
+
next: string;
|
|
8609
|
+
prev: string;
|
|
8193
8610
|
loadMore: string;
|
|
8194
8611
|
};
|
|
8195
8612
|
model: {
|
|
@@ -8303,6 +8720,11 @@ export declare const messagesEn: {
|
|
|
8303
8720
|
resolvedPermissions: string;
|
|
8304
8721
|
noPermissions: string;
|
|
8305
8722
|
};
|
|
8723
|
+
copyPermissions: {
|
|
8724
|
+
title: string;
|
|
8725
|
+
desc: string;
|
|
8726
|
+
srcUser: string;
|
|
8727
|
+
};
|
|
8306
8728
|
};
|
|
8307
8729
|
job: {
|
|
8308
8730
|
filter: {
|
|
@@ -8878,6 +9300,8 @@ export declare const messagesSk: {
|
|
|
8878
9300
|
refresh: string;
|
|
8879
9301
|
forwards: string;
|
|
8880
9302
|
backwards: string;
|
|
9303
|
+
next: string;
|
|
9304
|
+
prev: string;
|
|
8881
9305
|
loadMore: string;
|
|
8882
9306
|
};
|
|
8883
9307
|
model: {
|
|
@@ -8995,6 +9419,11 @@ export declare const messagesSk: {
|
|
|
8995
9419
|
resolvedPermissions: string;
|
|
8996
9420
|
noPermissions: string;
|
|
8997
9421
|
};
|
|
9422
|
+
copyPermissions: {
|
|
9423
|
+
title: string;
|
|
9424
|
+
desc: string;
|
|
9425
|
+
srcUser: string;
|
|
9426
|
+
};
|
|
8998
9427
|
};
|
|
8999
9428
|
job: {
|
|
9000
9429
|
filter: {
|
|
@@ -9644,6 +10073,7 @@ export declare interface PermissionGroupMinimal {
|
|
|
9644
10073
|
declare type Permissions_2 = {
|
|
9645
10074
|
[key in AclValue]?: Grant;
|
|
9646
10075
|
};
|
|
10076
|
+
export { Permissions_2 as Permissions }
|
|
9647
10077
|
|
|
9648
10078
|
export declare type PermissionTranslationGroup = 'subjects' | 'actions' | 'roles';
|
|
9649
10079
|
|
|
@@ -9804,6 +10234,8 @@ export declare const timestampCurrent: () => number;
|
|
|
9804
10234
|
|
|
9805
10235
|
export declare function updateDamCurrentUser(client: () => AxiosInstance): Promise<unknown>;
|
|
9806
10236
|
|
|
10237
|
+
export declare const updateDamUser: (client: () => AxiosInstance, id: number, data: DamUserUpdateDto) => Promise<DamUser>;
|
|
10238
|
+
|
|
9807
10239
|
export declare interface UploadQueue {
|
|
9808
10240
|
items: UploadQueueItem[];
|
|
9809
10241
|
totalCount: number;
|
|
@@ -10046,6 +10478,13 @@ export declare function useCommonAdminCollabOptions(): {
|
|
|
10046
10478
|
}>;
|
|
10047
10479
|
};
|
|
10048
10480
|
|
|
10481
|
+
export declare function useCommonAdminImageOptions(configName?: string): {
|
|
10482
|
+
imageClient: () => AxiosInstance;
|
|
10483
|
+
previewDomain: string;
|
|
10484
|
+
imageWidth: number;
|
|
10485
|
+
imageHeight: number;
|
|
10486
|
+
};
|
|
10487
|
+
|
|
10049
10488
|
export declare function useCommonJobFactory(): {
|
|
10050
10489
|
createBase: (resourceName: JobBaseResource, system: string) => JobBase;
|
|
10051
10490
|
createUserDataDelete: (system: string) => JobUserDataDelete;
|
|
@@ -10175,12 +10614,14 @@ export declare function useCustomDataFormElementType(): {
|
|
|
10175
10614
|
title: string;
|
|
10176
10615
|
color?: string | undefined;
|
|
10177
10616
|
active?: false | undefined;
|
|
10617
|
+
subtitle?: string | undefined;
|
|
10178
10618
|
}[]>;
|
|
10179
10619
|
getCustomDataFormElementTypeOption: (value: CustomDataFormElementTypeType) => {
|
|
10180
10620
|
value: CustomDataFormElementTypeType;
|
|
10181
10621
|
title: string;
|
|
10182
10622
|
color?: string | undefined;
|
|
10183
10623
|
active?: false | undefined;
|
|
10624
|
+
subtitle?: string | undefined;
|
|
10184
10625
|
} | undefined;
|
|
10185
10626
|
};
|
|
10186
10627
|
|
|
@@ -10191,6 +10632,42 @@ export declare function useDamAcceptTypeAndSizeHelper(assetType: DamAssetType |
|
|
|
10191
10632
|
uploadAccept: ComputedRef<string>;
|
|
10192
10633
|
};
|
|
10193
10634
|
|
|
10635
|
+
export declare function useDamAssetLicenceFilter(): {
|
|
10636
|
+
name: {
|
|
10637
|
+
field: string;
|
|
10638
|
+
multiple: boolean;
|
|
10639
|
+
variant: FilterVariant;
|
|
10640
|
+
model: any;
|
|
10641
|
+
default: any;
|
|
10642
|
+
titleT?: string | undefined;
|
|
10643
|
+
error: string;
|
|
10644
|
+
mandatory: boolean;
|
|
10645
|
+
exclude: boolean;
|
|
10646
|
+
};
|
|
10647
|
+
extSystem: {
|
|
10648
|
+
field: string;
|
|
10649
|
+
multiple: boolean;
|
|
10650
|
+
variant: FilterVariant;
|
|
10651
|
+
model: any;
|
|
10652
|
+
default: any;
|
|
10653
|
+
titleT?: string | undefined;
|
|
10654
|
+
error: string;
|
|
10655
|
+
mandatory: boolean;
|
|
10656
|
+
exclude: boolean;
|
|
10657
|
+
};
|
|
10658
|
+
extId: {
|
|
10659
|
+
field: string;
|
|
10660
|
+
multiple: boolean;
|
|
10661
|
+
variant: FilterVariant;
|
|
10662
|
+
model: any;
|
|
10663
|
+
default: any;
|
|
10664
|
+
titleT?: string | undefined;
|
|
10665
|
+
error: string;
|
|
10666
|
+
mandatory: boolean;
|
|
10667
|
+
exclude: boolean;
|
|
10668
|
+
};
|
|
10669
|
+
};
|
|
10670
|
+
|
|
10194
10671
|
export declare function useDamAuthorFactory(): {
|
|
10195
10672
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamAuthor;
|
|
10196
10673
|
};
|
|
@@ -10201,12 +10678,14 @@ export declare function useDamAuthorType(): {
|
|
|
10201
10678
|
title: string;
|
|
10202
10679
|
color?: string | undefined;
|
|
10203
10680
|
active?: false | undefined;
|
|
10681
|
+
subtitle?: string | undefined;
|
|
10204
10682
|
}[]>;
|
|
10205
10683
|
getAuthorTypeOption: (value: DamAuthorType) => {
|
|
10206
10684
|
value: DamAuthorType;
|
|
10207
10685
|
title: string;
|
|
10208
10686
|
color?: string | undefined;
|
|
10209
10687
|
active?: false | undefined;
|
|
10688
|
+
subtitle?: string | undefined;
|
|
10210
10689
|
} | undefined;
|
|
10211
10690
|
};
|
|
10212
10691
|
|
|
@@ -10218,6 +10697,7 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
|
|
|
10218
10697
|
damPubConfig: ShallowRef<DamPubConfig>;
|
|
10219
10698
|
damPrvConfig: ShallowRef<DamPrvConfig>;
|
|
10220
10699
|
damConfigExtSystem: ShallowRef<Map<number, DamExtSystemConfig>>;
|
|
10700
|
+
damConfigLicenceExtSystem: ShallowRef<Map<number, DamConfigLicenceExtSystem>>;
|
|
10221
10701
|
damConfigAssetCustomFormElements: ShallowRef<Map<number, {
|
|
10222
10702
|
image: CustomDataFormElement[];
|
|
10223
10703
|
audio: CustomDataFormElement[];
|
|
@@ -10225,6 +10705,8 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
|
|
|
10225
10705
|
document: CustomDataFormElement[];
|
|
10226
10706
|
}>>;
|
|
10227
10707
|
damConfigDistributionCustomFormElements: ShallowRef<Map<string, CustomDataFormElement[]>>;
|
|
10708
|
+
getOrLoadDamConfigExtSystemByLicence: (licence: IntegerId) => Promise<DamConfigLicenceExtSystemReturnType | undefined>;
|
|
10709
|
+
getOrLoadDamConfigExtSystemByLicences: (licences: IntegerId[]) => Promise<DamConfigLicenceExtSystemReturnType[]>;
|
|
10228
10710
|
loadDamPrvConfig: () => Promise<unknown>;
|
|
10229
10711
|
loadDamPubConfig: () => Promise<unknown>;
|
|
10230
10712
|
loadDamConfigExtSystem: (extSystemId: IntegerId) => Promise<unknown>;
|
|
@@ -10272,6 +10754,7 @@ export declare function useDamCurrentUser(): {
|
|
|
10272
10754
|
};
|
|
10273
10755
|
allowedAssetExternalProviders: string[];
|
|
10274
10756
|
allowedDistributionServices: string[];
|
|
10757
|
+
id?: IntegerIdNullable | undefined;
|
|
10275
10758
|
enabled: boolean;
|
|
10276
10759
|
roles: string[];
|
|
10277
10760
|
permissionGroups: number[];
|
|
@@ -10283,12 +10766,28 @@ export declare function useDamCurrentUser(): {
|
|
|
10283
10766
|
modifiedAt: string;
|
|
10284
10767
|
modifiedBy: IntegerIdNullable;
|
|
10285
10768
|
createdBy: IntegerIdNullable;
|
|
10286
|
-
id: number;
|
|
10287
10769
|
email: string;
|
|
10288
10770
|
} | undefined>;
|
|
10289
10771
|
damCurrentUserIsSuperAdmin: Ref<boolean>;
|
|
10290
10772
|
};
|
|
10291
10773
|
|
|
10774
|
+
export declare function useDamDistributionServiceType(client: () => AxiosInstance): {
|
|
10775
|
+
allDistributionServiceTypeOptions: Ref<{
|
|
10776
|
+
value: string;
|
|
10777
|
+
title: string;
|
|
10778
|
+
color?: string | undefined;
|
|
10779
|
+
active?: false | undefined;
|
|
10780
|
+
subtitle?: string | undefined;
|
|
10781
|
+
}[]>;
|
|
10782
|
+
getDistributionServiceTypeOption: (value: string) => {
|
|
10783
|
+
value: string;
|
|
10784
|
+
title: string;
|
|
10785
|
+
color?: string | undefined;
|
|
10786
|
+
active?: false | undefined;
|
|
10787
|
+
subtitle?: string | undefined;
|
|
10788
|
+
} | undefined;
|
|
10789
|
+
};
|
|
10790
|
+
|
|
10292
10791
|
export declare function useDamKeywordFactory(): {
|
|
10293
10792
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamKeyword;
|
|
10294
10793
|
};
|
|
@@ -10329,6 +10828,7 @@ export declare function useGrant(): {
|
|
|
10329
10828
|
title: string;
|
|
10330
10829
|
color?: string | undefined;
|
|
10331
10830
|
active?: false | undefined;
|
|
10831
|
+
subtitle?: string | undefined;
|
|
10332
10832
|
}[]>;
|
|
10333
10833
|
getGrantOption: (value: Grant) => ValueObjectOption<Grant>;
|
|
10334
10834
|
};
|
|
@@ -10339,12 +10839,20 @@ export declare function useGrantOrigin(): {
|
|
|
10339
10839
|
title: string;
|
|
10340
10840
|
color?: string | undefined;
|
|
10341
10841
|
active?: false | undefined;
|
|
10842
|
+
subtitle?: string | undefined;
|
|
10342
10843
|
}[]>;
|
|
10343
10844
|
getGrantOriginOption: (value: GrantOrigin) => ValueObjectOption<GrantOrigin>;
|
|
10344
10845
|
};
|
|
10345
10846
|
|
|
10346
10847
|
export { useI18n }
|
|
10347
10848
|
|
|
10849
|
+
export declare function useImageActions(config: ReturnType<typeof useCommonAdminImageOptions>): {
|
|
10850
|
+
widgetImageToDamImageUrl: (image: ImageAware | ImageCreateUpdateAware, width?: number, height?: number, random?: boolean) => string;
|
|
10851
|
+
widgetImageToDamImageOriginalUrl: (image: ImageAware | ImageCreateUpdateAware, random?: boolean) => string;
|
|
10852
|
+
damImageIdToDamImageUrl: (imageId: DocId, width?: number, height?: number, random?: boolean) => string;
|
|
10853
|
+
damImageIdToDamImageOriginalUrl: (imageId: DocId, random?: boolean) => string;
|
|
10854
|
+
};
|
|
10855
|
+
|
|
10348
10856
|
export declare function useJobApi<JobType extends JobBase = JobBase>(client: () => AxiosInstance, system: string): {
|
|
10349
10857
|
fetchJobList: (pagination: Pagination, filterBag: FilterBag) => Promise<JobType[]>;
|
|
10350
10858
|
fetchJob: (id: number) => Promise<JobType>;
|
|
@@ -10358,6 +10866,7 @@ export declare function useJobBaseResource<T extends JobBaseResource = JobBaseRe
|
|
|
10358
10866
|
title: string;
|
|
10359
10867
|
color?: string | undefined;
|
|
10360
10868
|
active?: false | undefined;
|
|
10869
|
+
subtitle?: string | undefined;
|
|
10361
10870
|
}[]>;
|
|
10362
10871
|
getJobResourceOption: (value: T) => ValueObjectOption<T>;
|
|
10363
10872
|
};
|
|
@@ -10368,6 +10877,7 @@ export declare function useJobStatus(): {
|
|
|
10368
10877
|
title: string;
|
|
10369
10878
|
color?: string | undefined;
|
|
10370
10879
|
active?: false | undefined;
|
|
10880
|
+
subtitle?: string | undefined;
|
|
10371
10881
|
}[]>;
|
|
10372
10882
|
getJobStatusOption: (value: JobStatus) => ValueObjectOption<JobStatus>;
|
|
10373
10883
|
};
|
|
@@ -10391,12 +10901,14 @@ export declare function useLogLevel(): {
|
|
|
10391
10901
|
title: string;
|
|
10392
10902
|
color?: string | undefined;
|
|
10393
10903
|
active?: false | undefined;
|
|
10904
|
+
subtitle?: string | undefined;
|
|
10394
10905
|
}[]>;
|
|
10395
10906
|
getLogLevelOption: (value: LogLevel) => {
|
|
10396
10907
|
value: LogLevel;
|
|
10397
10908
|
title: string;
|
|
10398
10909
|
color?: string | undefined;
|
|
10399
10910
|
active?: false | undefined;
|
|
10911
|
+
subtitle?: string | undefined;
|
|
10400
10912
|
} | undefined;
|
|
10401
10913
|
};
|
|
10402
10914
|
|
|
@@ -10520,6 +11032,7 @@ export declare interface ValueObjectOption<T> {
|
|
|
10520
11032
|
title: string;
|
|
10521
11033
|
color?: string;
|
|
10522
11034
|
active?: false;
|
|
11035
|
+
subtitle?: string;
|
|
10523
11036
|
}
|
|
10524
11037
|
|
|
10525
11038
|
declare interface VDatatableSelectableItem {
|