@anzusystems/common-admin 1.47.0-alpha2 → 1.47.0-alpha21
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 +739 -239
- package/dist/common-admin.es.js +320 -347
- package/dist/common-admin.es.js.map +1 -1
- package/dist/{lib-j7X_ApAh.js → lib-y_C2zj3X.js} +8370 -8000
- package/dist/lib-y_C2zj3X.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/{webfontloader-kNngvlJT.js → webfontloader-sZDWINSv.js} +2 -2
- package/dist/{webfontloader-kNngvlJT.js.map → webfontloader-sZDWINSv.js.map} +1 -1
- package/package.json +22 -22
- 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,7 +2211,7 @@ 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;
|
|
@@ -2188,7 +2230,7 @@ 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;
|
|
@@ -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;
|
|
@@ -2394,7 +2436,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2394
2436
|
textOnly: boolean;
|
|
2395
2437
|
fallbackIdText: boolean;
|
|
2396
2438
|
wrapText: boolean;
|
|
2397
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2439
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
|
|
2398
2440
|
id?: string | number | null | undefined;
|
|
2399
2441
|
title?: string | undefined;
|
|
2400
2442
|
containerClass?: string | undefined;
|
|
@@ -2489,12 +2531,12 @@ export declare const AChipNoLink: __VLS_WithTemplateSlots_3<DefineComponent<__VL
|
|
|
2489
2531
|
default?(_: {}): any;
|
|
2490
2532
|
}>;
|
|
2491
2533
|
|
|
2492
|
-
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<
|
|
2534
|
+
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2493
2535
|
permission: `${string}_${string}_${string}`;
|
|
2494
2536
|
subject?: object | undefined;
|
|
2495
2537
|
}>, {
|
|
2496
2538
|
subject: undefined;
|
|
2497
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2539
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2498
2540
|
permission: `${string}_${string}_${string}`;
|
|
2499
2541
|
subject?: object | undefined;
|
|
2500
2542
|
}>, {
|
|
@@ -2513,7 +2555,7 @@ declare type AclResolverConfig = {
|
|
|
2513
2555
|
|
|
2514
2556
|
export declare type AclValue = `${string}_${string}_${string}`;
|
|
2515
2557
|
|
|
2516
|
-
export declare const ACollabCountdown: DefineComponent<
|
|
2558
|
+
export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2517
2559
|
label?: string | undefined;
|
|
2518
2560
|
seconds?: number | undefined;
|
|
2519
2561
|
parentheses?: boolean | undefined;
|
|
@@ -2523,7 +2565,7 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2523
2565
|
parentheses: boolean;
|
|
2524
2566
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2525
2567
|
done: () => void;
|
|
2526
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2568
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_71<{
|
|
2527
2569
|
label?: string | undefined;
|
|
2528
2570
|
seconds?: number | undefined;
|
|
2529
2571
|
parentheses?: boolean | undefined;
|
|
@@ -2539,15 +2581,15 @@ export declare const ACollabCountdown: DefineComponent<__VLS_WithDefaults_68<__V
|
|
|
2539
2581
|
parentheses: boolean;
|
|
2540
2582
|
}, {}>;
|
|
2541
2583
|
|
|
2542
|
-
export declare const ACollabLockedByUser: DefineComponent<
|
|
2584
|
+
export declare const ACollabLockedByUser: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2543
2585
|
id: null | undefined | IntegerId;
|
|
2544
2586
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2545
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2587
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_70<{
|
|
2546
2588
|
id: null | undefined | IntegerId;
|
|
2547
2589
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2548
2590
|
}>, {}>>>, {}, {}>;
|
|
2549
2591
|
|
|
2550
|
-
export declare const ACollabManagement: DefineComponent<
|
|
2592
|
+
export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2551
2593
|
collabRoom: CollabRoom;
|
|
2552
2594
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2553
2595
|
isEdit?: boolean | undefined;
|
|
@@ -2557,7 +2599,7 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2557
2599
|
isEdit: boolean;
|
|
2558
2600
|
addToCachedUsers: undefined;
|
|
2559
2601
|
fetchCachedUsers: undefined;
|
|
2560
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2602
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_72<{
|
|
2561
2603
|
collabRoom: CollabRoom;
|
|
2562
2604
|
cachedUsers: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
2563
2605
|
isEdit?: boolean | undefined;
|
|
@@ -2573,14 +2615,14 @@ export declare const ACollabManagement: DefineComponent<__VLS_WithDefaults_69<__
|
|
|
2573
2615
|
fetchCachedUsers: () => Promisify<Promise<any>>;
|
|
2574
2616
|
}, {}>;
|
|
2575
2617
|
|
|
2576
|
-
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<
|
|
2618
|
+
export declare const ACopyText: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2577
2619
|
value: string | number;
|
|
2578
2620
|
notifyT?: string | undefined;
|
|
2579
2621
|
dataCy?: string | undefined;
|
|
2580
2622
|
}>, {
|
|
2581
2623
|
notifyT: string;
|
|
2582
2624
|
dataCy: string;
|
|
2583
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2625
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
2584
2626
|
value: string | number;
|
|
2585
2627
|
notifyT?: string | undefined;
|
|
2586
2628
|
dataCy?: string | undefined;
|
|
@@ -2881,14 +2923,14 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2881
2923
|
} | undefined;
|
|
2882
2924
|
};
|
|
2883
2925
|
|
|
2884
|
-
export declare const ACurrentUserDropdown: DefineComponent<
|
|
2926
|
+
export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2885
2927
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2886
2928
|
settingsRouteName: string;
|
|
2887
2929
|
logoutRouteName: string;
|
|
2888
2930
|
dataCy?: string | undefined;
|
|
2889
2931
|
}>, {
|
|
2890
2932
|
dataCy: string;
|
|
2891
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2933
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2892
2934
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2893
2935
|
settingsRouteName: string;
|
|
2894
2936
|
logoutRouteName: string;
|
|
@@ -2899,7 +2941,7 @@ export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_56
|
|
|
2899
2941
|
dataCy: string;
|
|
2900
2942
|
}, {}>;
|
|
2901
2943
|
|
|
2902
|
-
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<
|
|
2944
|
+
export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2903
2945
|
modelValue: {
|
|
2904
2946
|
[key: string]: any;
|
|
2905
2947
|
};
|
|
@@ -2916,7 +2958,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2916
2958
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2917
2959
|
"update:modelValue": (data: any) => void;
|
|
2918
2960
|
anyChange: () => void;
|
|
2919
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2961
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_64<{
|
|
2920
2962
|
modelValue: {
|
|
2921
2963
|
[key: string]: any;
|
|
2922
2964
|
};
|
|
@@ -2940,7 +2982,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_23<DefineComponent
|
|
|
2940
2982
|
"after-pinned"?(_: {}): any;
|
|
2941
2983
|
}>;
|
|
2942
2984
|
|
|
2943
|
-
export declare const ACustomDataFormElement: DefineComponent<
|
|
2985
|
+
export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2944
2986
|
modelValue: any;
|
|
2945
2987
|
config: CustomDataFormElement;
|
|
2946
2988
|
validationScope?: ValidationScope;
|
|
@@ -2952,7 +2994,7 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
|
|
|
2952
2994
|
value: any;
|
|
2953
2995
|
}) => void;
|
|
2954
2996
|
blur: (data: any) => void;
|
|
2955
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
2997
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_65<{
|
|
2956
2998
|
modelValue: any;
|
|
2957
2999
|
config: CustomDataFormElement;
|
|
2958
3000
|
validationScope?: ValidationScope;
|
|
@@ -3017,7 +3059,7 @@ export declare const ADatatable: <TItem = Record<string, unknown>>(__VLS_props:
|
|
|
3017
3059
|
} | undefined;
|
|
3018
3060
|
};
|
|
3019
3061
|
|
|
3020
|
-
export declare const ADatatableConfigButton: DefineComponent<
|
|
3062
|
+
export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3021
3063
|
columnsAll: ColumnInternalValues[];
|
|
3022
3064
|
columnsHidden: Array<string>;
|
|
3023
3065
|
buttonT?: string | undefined;
|
|
@@ -3029,7 +3071,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3029
3071
|
dataCy: string;
|
|
3030
3072
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3031
3073
|
"update:columnsHidden": (data: string[]) => void;
|
|
3032
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3074
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
3033
3075
|
columnsAll: ColumnInternalValues[];
|
|
3034
3076
|
columnsHidden: Array<string>;
|
|
3035
3077
|
buttonT?: string | undefined;
|
|
@@ -3047,7 +3089,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
3047
3089
|
buttonT: string;
|
|
3048
3090
|
}, {}>;
|
|
3049
3091
|
|
|
3050
|
-
export declare const ADatatableOrdering: DefineComponent<
|
|
3092
|
+
export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3051
3093
|
variant?: "default" | "most-relevant" | undefined;
|
|
3052
3094
|
modelValue?: number | undefined;
|
|
3053
3095
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3058,7 +3100,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3058
3100
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3059
3101
|
"update:modelValue": (data: number) => void;
|
|
3060
3102
|
sortByChange: (data: DatatableOrderingOption) => void;
|
|
3061
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3103
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
3062
3104
|
variant?: "default" | "most-relevant" | undefined;
|
|
3063
3105
|
modelValue?: number | undefined;
|
|
3064
3106
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -3075,7 +3117,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<_
|
|
|
3075
3117
|
customOptions: DatatableOrderingOptions;
|
|
3076
3118
|
}, {}>;
|
|
3077
3119
|
|
|
3078
|
-
export declare const ADatatablePagination: DefineComponent<
|
|
3120
|
+
export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3079
3121
|
modelValue: Pagination;
|
|
3080
3122
|
itemsPerPageOptions?: number[] | undefined;
|
|
3081
3123
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3085,7 +3127,7 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3085
3127
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3086
3128
|
change: () => void;
|
|
3087
3129
|
"update:modelValue": (data: Pagination) => void;
|
|
3088
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3130
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3089
3131
|
modelValue: Pagination;
|
|
3090
3132
|
itemsPerPageOptions?: number[] | undefined;
|
|
3091
3133
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -3100,12 +3142,12 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27
|
|
|
3100
3142
|
hideRecordsPerPage: boolean;
|
|
3101
3143
|
}, {}>;
|
|
3102
3144
|
|
|
3103
|
-
export declare const ADatetime: DefineComponent<
|
|
3145
|
+
export declare const ADatetime: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3104
3146
|
dateTime: DatetimeUTCNullable;
|
|
3105
3147
|
edgeDateValue?: string | undefined;
|
|
3106
3148
|
}>, {
|
|
3107
3149
|
edgeDateValue: string;
|
|
3108
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3150
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_26<{
|
|
3109
3151
|
dateTime: DatetimeUTCNullable;
|
|
3110
3152
|
edgeDateValue?: string | undefined;
|
|
3111
3153
|
}>, {
|
|
@@ -3114,7 +3156,7 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
|
|
|
3114
3156
|
edgeDateValue: string;
|
|
3115
3157
|
}, {}>;
|
|
3116
3158
|
|
|
3117
|
-
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
3159
|
+
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3118
3160
|
modelValue: string | null | undefined;
|
|
3119
3161
|
type?: "datetime" | undefined;
|
|
3120
3162
|
label?: string | undefined;
|
|
@@ -3147,7 +3189,7 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3147
3189
|
"update:modelValue": (data: string | null | undefined) => void;
|
|
3148
3190
|
onOpen: () => void;
|
|
3149
3191
|
onClose: () => void;
|
|
3150
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3192
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_27<{
|
|
3151
3193
|
modelValue: string | null | undefined;
|
|
3152
3194
|
type?: "datetime" | undefined;
|
|
3153
3195
|
label?: string | undefined;
|
|
@@ -3183,10 +3225,10 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3183
3225
|
}, {
|
|
3184
3226
|
disabled: boolean;
|
|
3185
3227
|
type: "datetime";
|
|
3186
|
-
dataCy: string;
|
|
3187
3228
|
placeholder: string;
|
|
3188
3229
|
required: boolean;
|
|
3189
3230
|
label: string;
|
|
3231
|
+
dataCy: string;
|
|
3190
3232
|
hideLabel: boolean;
|
|
3191
3233
|
clearable: boolean;
|
|
3192
3234
|
hideDetails: boolean;
|
|
@@ -3209,7 +3251,7 @@ export declare const ADialogToolbar: __VLS_WithTemplateSlots_14<DefineComponent<
|
|
|
3209
3251
|
|
|
3210
3252
|
export declare const AEmptyRouterView: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
3211
3253
|
|
|
3212
|
-
export declare const AFilterAdvancedButton: DefineComponent<
|
|
3254
|
+
export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3213
3255
|
tooltipT?: string | undefined;
|
|
3214
3256
|
buttonClass?: string | undefined;
|
|
3215
3257
|
dataCy?: string | undefined;
|
|
@@ -3219,7 +3261,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3219
3261
|
dataCy: string;
|
|
3220
3262
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3221
3263
|
advancedFilter: () => void;
|
|
3222
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3264
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
3223
3265
|
tooltipT?: string | undefined;
|
|
3224
3266
|
buttonClass?: string | undefined;
|
|
3225
3267
|
dataCy?: string | undefined;
|
|
@@ -3235,7 +3277,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
3235
3277
|
buttonClass: string;
|
|
3236
3278
|
}, {}>;
|
|
3237
3279
|
|
|
3238
|
-
export declare const AFilterBooleanGroup: DefineComponent<
|
|
3280
|
+
export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3239
3281
|
modelValue: Filter;
|
|
3240
3282
|
dataCyTrue?: string | undefined;
|
|
3241
3283
|
dataCyFalse?: string | undefined;
|
|
@@ -3244,7 +3286,7 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3244
3286
|
dataCyFalse: string;
|
|
3245
3287
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3246
3288
|
"update:modelValue": (data: any) => void;
|
|
3247
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3289
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_23<{
|
|
3248
3290
|
modelValue: Filter;
|
|
3249
3291
|
dataCyTrue?: string | undefined;
|
|
3250
3292
|
dataCyFalse?: string | undefined;
|
|
@@ -3258,14 +3300,14 @@ export declare const AFilterBooleanGroup: DefineComponent<__VLS_WithDefaults_22<
|
|
|
3258
3300
|
dataCyFalse: string;
|
|
3259
3301
|
}, {}>;
|
|
3260
3302
|
|
|
3261
|
-
export declare const AFilterBooleanSelect: DefineComponent<
|
|
3303
|
+
export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3262
3304
|
modelValue: Filter;
|
|
3263
3305
|
dataCy?: string | undefined;
|
|
3264
3306
|
}>, {
|
|
3265
3307
|
dataCy: string;
|
|
3266
3308
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3267
3309
|
"update:modelValue": (data: any) => void;
|
|
3268
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3310
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_24<{
|
|
3269
3311
|
modelValue: Filter;
|
|
3270
3312
|
dataCy?: string | undefined;
|
|
3271
3313
|
}>, {
|
|
@@ -3276,14 +3318,14 @@ export declare const AFilterBooleanSelect: DefineComponent<__VLS_WithDefaults_23
|
|
|
3276
3318
|
dataCy: string;
|
|
3277
3319
|
}, {}>;
|
|
3278
3320
|
|
|
3279
|
-
export declare const AFilterDatetimePicker: DefineComponent<
|
|
3321
|
+
export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3280
3322
|
modelValue: Filter;
|
|
3281
3323
|
dataCy?: string | undefined;
|
|
3282
3324
|
}>, {
|
|
3283
3325
|
dataCy: string;
|
|
3284
3326
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3285
3327
|
"update:modelValue": (data: any) => void;
|
|
3286
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3328
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_25<{
|
|
3287
3329
|
modelValue: Filter;
|
|
3288
3330
|
dataCy?: string | undefined;
|
|
3289
3331
|
}>, {
|
|
@@ -3294,14 +3336,14 @@ export declare const AFilterDatetimePicker: DefineComponent<__VLS_WithDefaults_2
|
|
|
3294
3336
|
dataCy: string;
|
|
3295
3337
|
}, {}>;
|
|
3296
3338
|
|
|
3297
|
-
export declare const AFilterInteger: DefineComponent<
|
|
3339
|
+
export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3298
3340
|
modelValue: Filter;
|
|
3299
3341
|
dataCy?: string | undefined;
|
|
3300
3342
|
}>, {
|
|
3301
3343
|
dataCy: string;
|
|
3302
3344
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3303
3345
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3304
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3346
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
3305
3347
|
modelValue: Filter;
|
|
3306
3348
|
dataCy?: string | undefined;
|
|
3307
3349
|
}>, {
|
|
@@ -3312,7 +3354,7 @@ export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_19<__VLS
|
|
|
3312
3354
|
dataCy: string;
|
|
3313
3355
|
}, {}>;
|
|
3314
3356
|
|
|
3315
|
-
export declare const AFilterMixed: DefineComponent<
|
|
3357
|
+
export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3316
3358
|
filterId?: Filter | undefined;
|
|
3317
3359
|
filterDocId?: Filter | undefined;
|
|
3318
3360
|
filterText?: Filter | undefined;
|
|
@@ -3328,7 +3370,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3328
3370
|
filterOverrides: undefined;
|
|
3329
3371
|
placeholder: undefined;
|
|
3330
3372
|
dataCy: string;
|
|
3331
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3373
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3332
3374
|
filterId?: Filter | undefined;
|
|
3333
3375
|
filterDocId?: Filter | undefined;
|
|
3334
3376
|
filterText?: Filter | undefined;
|
|
@@ -3345,8 +3387,8 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3345
3387
|
placeholder: undefined;
|
|
3346
3388
|
dataCy: string;
|
|
3347
3389
|
}>>>, {
|
|
3348
|
-
dataCy: string;
|
|
3349
3390
|
placeholder: string;
|
|
3391
|
+
dataCy: string;
|
|
3350
3392
|
filterId: Filter<any>;
|
|
3351
3393
|
filterDocId: Filter<any>;
|
|
3352
3394
|
filterText: Filter<any>;
|
|
@@ -3354,7 +3396,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
3354
3396
|
filterOverrides: Filter<any>[];
|
|
3355
3397
|
}, {}>;
|
|
3356
3398
|
|
|
3357
|
-
export declare const AFilterRemoteAutocomplete: DefineComponent<
|
|
3399
|
+
export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3358
3400
|
modelValue: Filter;
|
|
3359
3401
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3360
3402
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3370,7 +3412,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3370
3412
|
placeholder: undefined;
|
|
3371
3413
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3372
3414
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3373
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3415
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_21<{
|
|
3374
3416
|
modelValue: Filter;
|
|
3375
3417
|
fetchItems: (pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>;
|
|
3376
3418
|
fetchItemsByIds: fetchItemsByIdsType_2;
|
|
@@ -3393,7 +3435,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3393
3435
|
disableInitFetch: boolean;
|
|
3394
3436
|
}, {}>;
|
|
3395
3437
|
|
|
3396
|
-
export declare const AFilterResetButton: DefineComponent<
|
|
3438
|
+
export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3397
3439
|
tooltipT?: string | undefined;
|
|
3398
3440
|
buttonClass?: string | undefined;
|
|
3399
3441
|
dataCy?: string | undefined;
|
|
@@ -3403,7 +3445,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3403
3445
|
dataCy: string;
|
|
3404
3446
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3405
3447
|
reset: () => void;
|
|
3406
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3448
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
3407
3449
|
tooltipT?: string | undefined;
|
|
3408
3450
|
buttonClass?: string | undefined;
|
|
3409
3451
|
dataCy?: string | undefined;
|
|
@@ -3419,7 +3461,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3419
3461
|
buttonClass: string;
|
|
3420
3462
|
}, {}>;
|
|
3421
3463
|
|
|
3422
|
-
export declare const AFilterString: DefineComponent<
|
|
3464
|
+
export declare const AFilterString: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3423
3465
|
modelValue: Filter;
|
|
3424
3466
|
placeholder?: string | undefined;
|
|
3425
3467
|
dataCy?: string | undefined;
|
|
@@ -3428,7 +3470,7 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3428
3470
|
dataCy: string;
|
|
3429
3471
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3430
3472
|
"update:modelValue": (data: Filter<any>) => void;
|
|
3431
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3473
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<{
|
|
3432
3474
|
modelValue: Filter;
|
|
3433
3475
|
placeholder?: string | undefined;
|
|
3434
3476
|
dataCy?: string | undefined;
|
|
@@ -3438,11 +3480,11 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3438
3480
|
}>>> & {
|
|
3439
3481
|
"onUpdate:modelValue"?: ((data: Filter<any>) => any) | undefined;
|
|
3440
3482
|
}, {
|
|
3441
|
-
dataCy: string;
|
|
3442
3483
|
placeholder: string;
|
|
3484
|
+
dataCy: string;
|
|
3443
3485
|
}, {}>;
|
|
3444
3486
|
|
|
3445
|
-
export declare const AFilterSubmitButton: DefineComponent<
|
|
3487
|
+
export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3446
3488
|
buttonT?: string | undefined;
|
|
3447
3489
|
buttonClass?: string | undefined;
|
|
3448
3490
|
dataCy?: string | undefined;
|
|
@@ -3454,7 +3496,7 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3454
3496
|
touched: boolean;
|
|
3455
3497
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3456
3498
|
submit: () => void;
|
|
3457
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3499
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
3458
3500
|
buttonT?: string | undefined;
|
|
3459
3501
|
buttonClass?: string | undefined;
|
|
3460
3502
|
dataCy?: string | undefined;
|
|
@@ -3473,13 +3515,13 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3473
3515
|
touched: boolean;
|
|
3474
3516
|
}, {}>;
|
|
3475
3517
|
|
|
3476
|
-
export declare const AFilterValueObjectOptionsSelect: DefineComponent<
|
|
3518
|
+
export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3477
3519
|
modelValue: Filter;
|
|
3478
3520
|
items: ValueObjectOption<string | number>[];
|
|
3479
3521
|
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3480
3522
|
"update:modelValue": (data: any) => void;
|
|
3481
3523
|
change: () => void;
|
|
3482
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3524
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_22<{
|
|
3483
3525
|
modelValue: Filter;
|
|
3484
3526
|
items: ValueObjectOption<string | number>[];
|
|
3485
3527
|
}>, {}>>> & {
|
|
@@ -3487,7 +3529,7 @@ export declare const AFilterValueObjectOptionsSelect: DefineComponent<__VLS_With
|
|
|
3487
3529
|
onChange?: (() => any) | undefined;
|
|
3488
3530
|
}, {}, {}>;
|
|
3489
3531
|
|
|
3490
|
-
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
3532
|
+
export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3491
3533
|
enableAdvanced?: boolean | undefined;
|
|
3492
3534
|
enableTop?: boolean | undefined;
|
|
3493
3535
|
hideButtons?: boolean | undefined;
|
|
@@ -3499,7 +3541,7 @@ export declare const AFilterWrapper: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
|
3499
3541
|
touched: boolean;
|
|
3500
3542
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3501
3543
|
resetFilter: () => void;
|
|
3502
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3544
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<{
|
|
3503
3545
|
enableAdvanced?: boolean | undefined;
|
|
3504
3546
|
enableTop?: boolean | undefined;
|
|
3505
3547
|
hideButtons?: boolean | undefined;
|
|
@@ -3573,7 +3615,6 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
|
|
|
3573
3615
|
"onClick:append"?: ((data: string | number | null | undefined) => any) | undefined;
|
|
3574
3616
|
}, {
|
|
3575
3617
|
disabled: boolean;
|
|
3576
|
-
dataCy: string;
|
|
3577
3618
|
collab: {
|
|
3578
3619
|
room: string;
|
|
3579
3620
|
field: string;
|
|
@@ -3581,6 +3622,7 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
|
|
|
3581
3622
|
};
|
|
3582
3623
|
required: boolean;
|
|
3583
3624
|
label: string;
|
|
3625
|
+
dataCy: string;
|
|
3584
3626
|
clearable: boolean;
|
|
3585
3627
|
errorMessage: string;
|
|
3586
3628
|
v: any;
|
|
@@ -3638,13 +3680,13 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
|
|
|
3638
3680
|
"onClick:append"?: ((data: string | number | null) => any) | undefined;
|
|
3639
3681
|
}, {
|
|
3640
3682
|
disabled: boolean;
|
|
3641
|
-
dataCy: string;
|
|
3642
3683
|
collab: {
|
|
3643
3684
|
room: string;
|
|
3644
3685
|
field: string;
|
|
3645
3686
|
cachedUsers: CollabCachedUsersMap;
|
|
3646
3687
|
};
|
|
3647
3688
|
label: string;
|
|
3689
|
+
dataCy: string;
|
|
3648
3690
|
clearable: boolean;
|
|
3649
3691
|
errorMessage: string;
|
|
3650
3692
|
v: any;
|
|
@@ -3655,82 +3697,176 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
|
|
|
3655
3697
|
}): any;
|
|
3656
3698
|
}>;
|
|
3657
3699
|
|
|
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
|
-
|
|
3700
|
+
export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineComponent<{
|
|
3701
|
+
modelValue: {
|
|
3702
|
+
required: true;
|
|
3703
|
+
type: PropType<any>;
|
|
3704
|
+
};
|
|
3705
|
+
selected: PropType<any>;
|
|
3706
|
+
disabled: {
|
|
3707
|
+
type: PropType<boolean>;
|
|
3708
|
+
default: undefined;
|
|
3709
|
+
};
|
|
3710
|
+
multiple: {
|
|
3711
|
+
type: PropType<boolean>;
|
|
3712
|
+
default: boolean;
|
|
3713
|
+
};
|
|
3714
|
+
collab: {
|
|
3715
|
+
type: PropType<{
|
|
3716
|
+
room: string;
|
|
3717
|
+
field: string;
|
|
3718
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3719
|
+
}>;
|
|
3720
|
+
default: undefined;
|
|
3721
|
+
};
|
|
3722
|
+
loading: {
|
|
3723
|
+
type: PropType<boolean>;
|
|
3724
|
+
default: boolean;
|
|
3725
|
+
};
|
|
3726
|
+
required: {
|
|
3727
|
+
type: PropType<boolean>;
|
|
3728
|
+
default: undefined;
|
|
3729
|
+
};
|
|
3730
|
+
label: {
|
|
3731
|
+
type: PropType<string>;
|
|
3732
|
+
default: undefined;
|
|
3733
|
+
};
|
|
3734
|
+
hideLabel: {
|
|
3735
|
+
type: PropType<boolean>;
|
|
3736
|
+
default: boolean;
|
|
3737
|
+
};
|
|
3738
|
+
clearable: {
|
|
3739
|
+
type: PropType<boolean>;
|
|
3740
|
+
default: boolean;
|
|
3741
|
+
};
|
|
3742
|
+
hideDetails: {
|
|
3743
|
+
type: PropType<boolean>;
|
|
3744
|
+
default: boolean;
|
|
3745
|
+
};
|
|
3746
|
+
errorMessage: {
|
|
3747
|
+
type: PropType<string>;
|
|
3748
|
+
default: undefined;
|
|
3749
|
+
};
|
|
3750
|
+
v: {
|
|
3751
|
+
type: PropType<any>;
|
|
3752
|
+
default: null;
|
|
3753
|
+
};
|
|
3754
|
+
chips: {
|
|
3755
|
+
type: PropType<boolean>;
|
|
3756
|
+
default: boolean;
|
|
3757
|
+
};
|
|
3758
|
+
fetchItems: {
|
|
3759
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3760
|
+
required: true;
|
|
3761
|
+
};
|
|
3762
|
+
fetchItemsByIds: {
|
|
3763
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3764
|
+
required: true;
|
|
3765
|
+
};
|
|
3766
|
+
innerFilter: {
|
|
3767
|
+
type: PropType<FilterBag>;
|
|
3768
|
+
required: true;
|
|
3769
|
+
};
|
|
3770
|
+
filterByField: {
|
|
3771
|
+
type: PropType<string>;
|
|
3772
|
+
default: string;
|
|
3773
|
+
};
|
|
3774
|
+
filterSortBy: {
|
|
3775
|
+
type: PropType<string | null>;
|
|
3776
|
+
default: string;
|
|
3777
|
+
};
|
|
3778
|
+
disableInitFetch: {
|
|
3779
|
+
type: PropType<boolean>;
|
|
3780
|
+
default: boolean;
|
|
3781
|
+
};
|
|
3782
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3694
3783
|
searchChange: (data: string) => void;
|
|
3695
3784
|
searchChangeDebounced: (data: string) => void;
|
|
3696
3785
|
blur: (data: string | number | string[] | number[] | null) => void;
|
|
3697
3786
|
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
|
-
|
|
3787
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
3788
|
+
modelValue: {
|
|
3789
|
+
required: true;
|
|
3790
|
+
type: PropType<any>;
|
|
3791
|
+
};
|
|
3792
|
+
selected: PropType<any>;
|
|
3793
|
+
disabled: {
|
|
3794
|
+
type: PropType<boolean>;
|
|
3795
|
+
default: undefined;
|
|
3796
|
+
};
|
|
3797
|
+
multiple: {
|
|
3798
|
+
type: PropType<boolean>;
|
|
3799
|
+
default: boolean;
|
|
3800
|
+
};
|
|
3801
|
+
collab: {
|
|
3802
|
+
type: PropType<{
|
|
3803
|
+
room: string;
|
|
3804
|
+
field: string;
|
|
3805
|
+
cachedUsers: CollabCachedUsersMap;
|
|
3806
|
+
}>;
|
|
3807
|
+
default: undefined;
|
|
3808
|
+
};
|
|
3809
|
+
loading: {
|
|
3810
|
+
type: PropType<boolean>;
|
|
3811
|
+
default: boolean;
|
|
3812
|
+
};
|
|
3813
|
+
required: {
|
|
3814
|
+
type: PropType<boolean>;
|
|
3815
|
+
default: undefined;
|
|
3816
|
+
};
|
|
3817
|
+
label: {
|
|
3818
|
+
type: PropType<string>;
|
|
3819
|
+
default: undefined;
|
|
3820
|
+
};
|
|
3821
|
+
hideLabel: {
|
|
3822
|
+
type: PropType<boolean>;
|
|
3823
|
+
default: boolean;
|
|
3824
|
+
};
|
|
3825
|
+
clearable: {
|
|
3826
|
+
type: PropType<boolean>;
|
|
3827
|
+
default: boolean;
|
|
3828
|
+
};
|
|
3829
|
+
hideDetails: {
|
|
3830
|
+
type: PropType<boolean>;
|
|
3831
|
+
default: boolean;
|
|
3832
|
+
};
|
|
3833
|
+
errorMessage: {
|
|
3834
|
+
type: PropType<string>;
|
|
3835
|
+
default: undefined;
|
|
3836
|
+
};
|
|
3837
|
+
v: {
|
|
3838
|
+
type: PropType<any>;
|
|
3839
|
+
default: null;
|
|
3840
|
+
};
|
|
3841
|
+
chips: {
|
|
3842
|
+
type: PropType<boolean>;
|
|
3843
|
+
default: boolean;
|
|
3844
|
+
};
|
|
3845
|
+
fetchItems: {
|
|
3846
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
3847
|
+
required: true;
|
|
3848
|
+
};
|
|
3849
|
+
fetchItemsByIds: {
|
|
3850
|
+
type: PropType<fetchItemsByIdsType>;
|
|
3851
|
+
required: true;
|
|
3852
|
+
};
|
|
3853
|
+
innerFilter: {
|
|
3854
|
+
type: PropType<FilterBag>;
|
|
3855
|
+
required: true;
|
|
3856
|
+
};
|
|
3857
|
+
filterByField: {
|
|
3858
|
+
type: PropType<string>;
|
|
3859
|
+
default: string;
|
|
3860
|
+
};
|
|
3861
|
+
filterSortBy: {
|
|
3862
|
+
type: PropType<string | null>;
|
|
3863
|
+
default: string;
|
|
3864
|
+
};
|
|
3865
|
+
disableInitFetch: {
|
|
3866
|
+
type: PropType<boolean>;
|
|
3867
|
+
default: boolean;
|
|
3868
|
+
};
|
|
3869
|
+
}>> & {
|
|
3734
3870
|
onFocus?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3735
3871
|
onBlur?: ((data: string | number | string[] | number[] | null) => any) | undefined;
|
|
3736
3872
|
onSearchChange?: ((data: string) => any) | undefined;
|
|
@@ -3738,12 +3874,12 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3738
3874
|
}, {
|
|
3739
3875
|
disabled: boolean;
|
|
3740
3876
|
multiple: boolean;
|
|
3741
|
-
loading: boolean;
|
|
3742
3877
|
collab: {
|
|
3743
3878
|
room: string;
|
|
3744
3879
|
field: string;
|
|
3745
3880
|
cachedUsers: CollabCachedUsersMap;
|
|
3746
3881
|
};
|
|
3882
|
+
loading: boolean;
|
|
3747
3883
|
required: boolean;
|
|
3748
3884
|
label: string;
|
|
3749
3885
|
hideLabel: boolean;
|
|
@@ -3751,6 +3887,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3751
3887
|
hideDetails: boolean;
|
|
3752
3888
|
errorMessage: string;
|
|
3753
3889
|
v: any;
|
|
3890
|
+
chips: boolean;
|
|
3754
3891
|
filterByField: string;
|
|
3755
3892
|
filterSortBy: string | null;
|
|
3756
3893
|
disableInitFetch: boolean;
|
|
@@ -3760,7 +3897,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3760
3897
|
}): any;
|
|
3761
3898
|
}>;
|
|
3762
3899
|
|
|
3763
|
-
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<
|
|
3900
|
+
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3764
3901
|
modelValue: any;
|
|
3765
3902
|
label?: string | undefined;
|
|
3766
3903
|
required?: boolean | undefined;
|
|
@@ -3796,7 +3933,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3796
3933
|
focus: (data: string | number | string[] | number[] | null | undefined) => void;
|
|
3797
3934
|
searchChange: (data: string) => void;
|
|
3798
3935
|
searchChangeDebounced: (data: string) => void;
|
|
3799
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
3936
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
3800
3937
|
modelValue: any;
|
|
3801
3938
|
label?: string | undefined;
|
|
3802
3939
|
required?: boolean | undefined;
|
|
@@ -3847,7 +3984,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3847
3984
|
filterSortBy: string | null;
|
|
3848
3985
|
}, {}>;
|
|
3849
3986
|
|
|
3850
|
-
export declare const AFormRemoteCheckbox: DefineComponent<
|
|
3987
|
+
export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3851
3988
|
modelValue: boolean;
|
|
3852
3989
|
callbackToTrue: () => Promise<boolean>;
|
|
3853
3990
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3862,7 +3999,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3862
3999
|
v: null;
|
|
3863
4000
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3864
4001
|
"update:modelValue": (data: boolean) => void;
|
|
3865
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4002
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<{
|
|
3866
4003
|
modelValue: boolean;
|
|
3867
4004
|
callbackToTrue: () => Promise<boolean>;
|
|
3868
4005
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3884,7 +4021,7 @@ export declare const AFormRemoteCheckbox: DefineComponent<__VLS_WithDefaults_13<
|
|
|
3884
4021
|
v: any;
|
|
3885
4022
|
}, {}>;
|
|
3886
4023
|
|
|
3887
|
-
export declare const AFormRemoteSwitch: DefineComponent<
|
|
4024
|
+
export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3888
4025
|
modelValue: boolean;
|
|
3889
4026
|
callbackToTrue: () => Promise<boolean>;
|
|
3890
4027
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3899,7 +4036,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3899
4036
|
v: null;
|
|
3900
4037
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3901
4038
|
"update:modelValue": (data: boolean) => void;
|
|
3902
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4039
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<{
|
|
3903
4040
|
modelValue: boolean;
|
|
3904
4041
|
callbackToTrue: () => Promise<boolean>;
|
|
3905
4042
|
callbackToFalse: () => Promise<boolean>;
|
|
@@ -3921,7 +4058,7 @@ export declare const AFormRemoteSwitch: DefineComponent<__VLS_WithDefaults_14<__
|
|
|
3921
4058
|
v: any;
|
|
3922
4059
|
}, {}>;
|
|
3923
4060
|
|
|
3924
|
-
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
4061
|
+
export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3925
4062
|
modelValue: boolean;
|
|
3926
4063
|
label?: string | undefined;
|
|
3927
4064
|
dataCy?: string | undefined;
|
|
@@ -3938,7 +4075,7 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
|
|
|
3938
4075
|
"update:modelValue": (data: boolean) => void;
|
|
3939
4076
|
blur: (data: boolean) => void;
|
|
3940
4077
|
focus: (data: boolean) => void;
|
|
3941
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4078
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
3942
4079
|
modelValue: boolean;
|
|
3943
4080
|
label?: string | undefined;
|
|
3944
4081
|
dataCy?: string | undefined;
|
|
@@ -3957,13 +4094,13 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
|
|
|
3957
4094
|
onBlur?: ((data: boolean) => any) | undefined;
|
|
3958
4095
|
}, {
|
|
3959
4096
|
disabled: boolean;
|
|
3960
|
-
dataCy: string;
|
|
3961
4097
|
collab: {
|
|
3962
4098
|
room: string;
|
|
3963
4099
|
field: string;
|
|
3964
4100
|
cachedUsers: CollabCachedUsersMap;
|
|
3965
4101
|
};
|
|
3966
4102
|
label: string;
|
|
4103
|
+
dataCy: string;
|
|
3967
4104
|
hideLabel: boolean;
|
|
3968
4105
|
}, {}>, {
|
|
3969
4106
|
locked?(_: {
|
|
@@ -4035,7 +4172,6 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
|
|
|
4035
4172
|
appendIcon: string;
|
|
4036
4173
|
disabled: boolean;
|
|
4037
4174
|
prependIcon: string;
|
|
4038
|
-
dataCy: string;
|
|
4039
4175
|
collab: {
|
|
4040
4176
|
room: string;
|
|
4041
4177
|
field: string;
|
|
@@ -4043,6 +4179,7 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
|
|
|
4043
4179
|
};
|
|
4044
4180
|
required: boolean;
|
|
4045
4181
|
label: string;
|
|
4182
|
+
dataCy: string;
|
|
4046
4183
|
hideLabel: boolean;
|
|
4047
4184
|
errorMessage: string;
|
|
4048
4185
|
v: any;
|
|
@@ -4134,15 +4271,15 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4134
4271
|
disabled: boolean;
|
|
4135
4272
|
prependIcon: string;
|
|
4136
4273
|
type: string;
|
|
4137
|
-
dataCy: string;
|
|
4138
|
-
placeholder: string;
|
|
4139
4274
|
collab: {
|
|
4140
4275
|
room: string;
|
|
4141
4276
|
field: string;
|
|
4142
4277
|
cachedUsers: CollabCachedUsersMap;
|
|
4143
4278
|
};
|
|
4279
|
+
placeholder: string;
|
|
4144
4280
|
required: boolean;
|
|
4145
4281
|
label: string;
|
|
4282
|
+
dataCy: string;
|
|
4146
4283
|
step: number;
|
|
4147
4284
|
maxlength: number;
|
|
4148
4285
|
hideLabel: boolean;
|
|
@@ -4155,7 +4292,7 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4155
4292
|
}): any;
|
|
4156
4293
|
}>;
|
|
4157
4294
|
|
|
4158
|
-
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
4295
|
+
export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4159
4296
|
modelValue: any;
|
|
4160
4297
|
items: any[];
|
|
4161
4298
|
label?: string | undefined;
|
|
@@ -4185,7 +4322,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4185
4322
|
"update:modelValue": (data: any) => void;
|
|
4186
4323
|
blur: (data: any) => void;
|
|
4187
4324
|
focus: (data: any) => void;
|
|
4188
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4325
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
4189
4326
|
modelValue: any;
|
|
4190
4327
|
items: any[];
|
|
4191
4328
|
label?: string | undefined;
|
|
@@ -4217,7 +4354,6 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4217
4354
|
onBlur?: ((data: any) => any) | undefined;
|
|
4218
4355
|
}, {
|
|
4219
4356
|
disabled: boolean;
|
|
4220
|
-
dataCy: string;
|
|
4221
4357
|
multiple: boolean;
|
|
4222
4358
|
collab: {
|
|
4223
4359
|
room: string;
|
|
@@ -4226,6 +4362,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4226
4362
|
};
|
|
4227
4363
|
required: boolean;
|
|
4228
4364
|
label: string;
|
|
4365
|
+
dataCy: string;
|
|
4229
4366
|
hideLabel: boolean;
|
|
4230
4367
|
clearable: boolean;
|
|
4231
4368
|
hideDetails: boolean;
|
|
@@ -4237,7 +4374,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
4237
4374
|
}): any;
|
|
4238
4375
|
}>;
|
|
4239
4376
|
|
|
4240
|
-
export declare const AIconGroup: DefineComponent<
|
|
4377
|
+
export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4241
4378
|
mainIcon: string;
|
|
4242
4379
|
secondaryIcon?: string | null | undefined;
|
|
4243
4380
|
secondaryText?: string | null | undefined;
|
|
@@ -4246,7 +4383,7 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
4246
4383
|
secondaryIcon: null;
|
|
4247
4384
|
secondaryText: null;
|
|
4248
4385
|
size: string;
|
|
4249
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4386
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
4250
4387
|
mainIcon: string;
|
|
4251
4388
|
secondaryIcon?: string | null | undefined;
|
|
4252
4389
|
secondaryText?: string | null | undefined;
|
|
@@ -4266,14 +4403,14 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4266
4403
|
required: true;
|
|
4267
4404
|
type: PropType<IntegerIdNullable>;
|
|
4268
4405
|
};
|
|
4269
|
-
dataCy: {
|
|
4270
|
-
type: PropType<string>;
|
|
4271
|
-
default: undefined;
|
|
4272
|
-
};
|
|
4273
4406
|
image: {
|
|
4274
4407
|
type: PropType<ImageAware>;
|
|
4275
4408
|
default: undefined;
|
|
4276
4409
|
};
|
|
4410
|
+
dataCy: {
|
|
4411
|
+
type: PropType<string>;
|
|
4412
|
+
default: undefined;
|
|
4413
|
+
};
|
|
4277
4414
|
configName: {
|
|
4278
4415
|
type: PropType<string>;
|
|
4279
4416
|
default: string;
|
|
@@ -4296,14 +4433,14 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4296
4433
|
required: true;
|
|
4297
4434
|
type: PropType<IntegerIdNullable>;
|
|
4298
4435
|
};
|
|
4299
|
-
dataCy: {
|
|
4300
|
-
type: PropType<string>;
|
|
4301
|
-
default: undefined;
|
|
4302
|
-
};
|
|
4303
4436
|
image: {
|
|
4304
4437
|
type: PropType<ImageAware>;
|
|
4305
4438
|
default: undefined;
|
|
4306
4439
|
};
|
|
4440
|
+
dataCy: {
|
|
4441
|
+
type: PropType<string>;
|
|
4442
|
+
default: undefined;
|
|
4443
|
+
};
|
|
4307
4444
|
configName: {
|
|
4308
4445
|
type: PropType<string>;
|
|
4309
4446
|
default: string;
|
|
@@ -4317,13 +4454,13 @@ export declare const AImagePublicInput: DefineComponent<{
|
|
|
4317
4454
|
default: string;
|
|
4318
4455
|
};
|
|
4319
4456
|
}>>, {
|
|
4320
|
-
dataCy: string;
|
|
4321
4457
|
image: ImageAware;
|
|
4458
|
+
dataCy: string;
|
|
4322
4459
|
configName: string;
|
|
4323
4460
|
labelT: string;
|
|
4324
4461
|
}, {}>;
|
|
4325
4462
|
|
|
4326
|
-
export declare const AImageWidget: DefineComponent<
|
|
4463
|
+
export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4327
4464
|
modelValue: IntegerIdNullable;
|
|
4328
4465
|
queueKey: UploadQueueKey;
|
|
4329
4466
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4360,7 +4497,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4360
4497
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4361
4498
|
"update:modelValue": (data: IntegerIdNullable) => void;
|
|
4362
4499
|
afterMetadataSaveSuccess: () => void;
|
|
4363
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4500
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_66<{
|
|
4364
4501
|
modelValue: IntegerIdNullable;
|
|
4365
4502
|
queueKey: UploadQueueKey;
|
|
4366
4503
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4397,7 +4534,6 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4397
4534
|
onAfterMetadataSaveSuccess?: (() => any) | undefined;
|
|
4398
4535
|
}, {
|
|
4399
4536
|
width: number;
|
|
4400
|
-
dataCy: string;
|
|
4401
4537
|
collab: {
|
|
4402
4538
|
room: string;
|
|
4403
4539
|
field: string;
|
|
@@ -4406,6 +4542,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4406
4542
|
image: ImageAware;
|
|
4407
4543
|
required: boolean;
|
|
4408
4544
|
label: string;
|
|
4545
|
+
dataCy: string;
|
|
4409
4546
|
readonly: boolean;
|
|
4410
4547
|
configName: string;
|
|
4411
4548
|
expandOptions: boolean;
|
|
@@ -4414,7 +4551,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4414
4551
|
callDeleteApiOnRemove: boolean;
|
|
4415
4552
|
}, {}>;
|
|
4416
4553
|
|
|
4417
|
-
export declare const AImageWidgetMultiple: DefineComponent<
|
|
4554
|
+
export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4418
4555
|
modelValue: IntegerId[];
|
|
4419
4556
|
queueKey: UploadQueueKey;
|
|
4420
4557
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4440,7 +4577,7 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4440
4577
|
saveImages: () => Promise<boolean>;
|
|
4441
4578
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4442
4579
|
"update:modelValue": (data: number[]) => void;
|
|
4443
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4580
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_68<{
|
|
4444
4581
|
modelValue: IntegerId[];
|
|
4445
4582
|
queueKey: UploadQueueKey;
|
|
4446
4583
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4466,14 +4603,14 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4466
4603
|
"onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
|
|
4467
4604
|
}, {
|
|
4468
4605
|
width: number;
|
|
4469
|
-
dataCy: string;
|
|
4470
4606
|
label: string;
|
|
4607
|
+
dataCy: string;
|
|
4471
4608
|
readonly: boolean;
|
|
4472
4609
|
configName: string;
|
|
4473
4610
|
callDeleteApiOnRemove: boolean;
|
|
4474
4611
|
}, {}>;
|
|
4475
4612
|
|
|
4476
|
-
export declare const AImageWidgetMultipleSimple: DefineComponent<
|
|
4613
|
+
export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4477
4614
|
modelValue: IntegerId[];
|
|
4478
4615
|
images?: ImageAware[] | undefined;
|
|
4479
4616
|
configName?: string | undefined;
|
|
@@ -4493,7 +4630,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4493
4630
|
aspectRatio: number;
|
|
4494
4631
|
showDescription: boolean;
|
|
4495
4632
|
showSource: boolean;
|
|
4496
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4633
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_69<{
|
|
4497
4634
|
modelValue: IntegerId[];
|
|
4498
4635
|
images?: ImageAware[] | undefined;
|
|
4499
4636
|
configName?: string | undefined;
|
|
@@ -4524,7 +4661,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4524
4661
|
images: ImageAware[];
|
|
4525
4662
|
}, {}>;
|
|
4526
4663
|
|
|
4527
|
-
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<
|
|
4664
|
+
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4528
4665
|
modelValue: IntegerIdNullable | undefined;
|
|
4529
4666
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4530
4667
|
configName?: string | undefined;
|
|
@@ -4543,7 +4680,7 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
|
|
|
4543
4680
|
aspectRatio: number;
|
|
4544
4681
|
showDescription: boolean;
|
|
4545
4682
|
showSource: boolean;
|
|
4546
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4683
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4547
4684
|
modelValue: IntegerIdNullable | undefined;
|
|
4548
4685
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4549
4686
|
configName?: string | undefined;
|
|
@@ -4613,12 +4750,12 @@ export declare const AJobBaseCreateForm: DefineComponent<{
|
|
|
4613
4750
|
};
|
|
4614
4751
|
}>>, {}, {}>;
|
|
4615
4752
|
|
|
4616
|
-
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<
|
|
4753
|
+
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponent<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4617
4754
|
job: JobBase<`job${string}`>;
|
|
4618
4755
|
loading?: boolean | undefined;
|
|
4619
4756
|
}>, {
|
|
4620
4757
|
loading: boolean;
|
|
4621
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4758
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
4622
4759
|
job: JobBase<`job${string}`>;
|
|
4623
4760
|
loading?: boolean | undefined;
|
|
4624
4761
|
}>, {
|
|
@@ -4629,15 +4766,15 @@ export declare const AJobDetailCommon: __VLS_WithTemplateSlots_20<DefineComponen
|
|
|
4629
4766
|
"resource-name"?(_: {}): any;
|
|
4630
4767
|
}>;
|
|
4631
4768
|
|
|
4632
|
-
export declare const AJobPriorityChip: DefineComponent<
|
|
4769
|
+
export declare const AJobPriorityChip: DefineComponent<__VLS_TypePropsToRuntimeProps_61<{
|
|
4633
4770
|
priority: number;
|
|
4634
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4771
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_61<{
|
|
4635
4772
|
priority: number;
|
|
4636
4773
|
}>>>, {}, {}>;
|
|
4637
4774
|
|
|
4638
|
-
export declare const AJobStatusChip: DefineComponent<
|
|
4775
|
+
export declare const AJobStatusChip: DefineComponent<__VLS_TypePropsToRuntimeProps_32<{
|
|
4639
4776
|
value: JobStatus;
|
|
4640
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4777
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_32<{
|
|
4641
4778
|
value: JobStatus;
|
|
4642
4779
|
}>>>, {}, {}>;
|
|
4643
4780
|
|
|
@@ -4647,13 +4784,13 @@ export declare const ALanguageSelect: DefineComponent<{}, {}, {}, {}, {}, Compon
|
|
|
4647
4784
|
onAfterChange?: ((code: LanguageCode) => any) | undefined;
|
|
4648
4785
|
}, {}, {}>;
|
|
4649
4786
|
|
|
4650
|
-
export declare const ALogData: DefineComponent<
|
|
4787
|
+
export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4651
4788
|
data: any;
|
|
4652
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4789
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
4653
4790
|
data: any;
|
|
4654
4791
|
}>, {}>>>, {}, {}>;
|
|
4655
4792
|
|
|
4656
|
-
export declare const ALoginView: DefineComponent<
|
|
4793
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4657
4794
|
title?: string | undefined;
|
|
4658
4795
|
logoUrl?: string | undefined;
|
|
4659
4796
|
loginUrl?: undefined | (() => string);
|
|
@@ -4663,7 +4800,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4663
4800
|
logoUrl: undefined;
|
|
4664
4801
|
loginUrl: undefined;
|
|
4665
4802
|
dataCy: string;
|
|
4666
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4803
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
4667
4804
|
title?: string | undefined;
|
|
4668
4805
|
logoUrl?: string | undefined;
|
|
4669
4806
|
loginUrl?: undefined | (() => string);
|
|
@@ -4680,17 +4817,17 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_Typ
|
|
|
4680
4817
|
loginUrl: () => string;
|
|
4681
4818
|
}, {}>;
|
|
4682
4819
|
|
|
4683
|
-
export declare const ALogLevelChip: DefineComponent<
|
|
4820
|
+
export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4684
4821
|
level: LogLevel;
|
|
4685
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4822
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
4686
4823
|
level: LogLevel;
|
|
4687
4824
|
}>, {}>>>, {}, {}>;
|
|
4688
4825
|
|
|
4689
|
-
export declare const ALogoutView: DefineComponent<
|
|
4826
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4690
4827
|
logoutUrl?: undefined | (() => string);
|
|
4691
4828
|
}>, {
|
|
4692
4829
|
logoutUrl: undefined;
|
|
4693
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4830
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4694
4831
|
logoutUrl?: undefined | (() => string);
|
|
4695
4832
|
}>, {
|
|
4696
4833
|
logoutUrl: undefined;
|
|
@@ -4698,9 +4835,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_Ty
|
|
|
4698
4835
|
logoutUrl: () => string;
|
|
4699
4836
|
}, {}>;
|
|
4700
4837
|
|
|
4701
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4838
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4702
4839
|
returnRouteName: string;
|
|
4703
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4840
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
|
|
4704
4841
|
returnRouteName: string;
|
|
4705
4842
|
}>, {}>>>, {}, {}>;
|
|
4706
4843
|
|
|
@@ -4737,7 +4874,8 @@ export declare const AnzuSystemsCommonAdmin: {
|
|
|
4737
4874
|
install<T extends `${string}_${string}_${string}` = `${string}_${string}_${string}`>(app: App, options: PluginOptions<T>): void;
|
|
4738
4875
|
};
|
|
4739
4876
|
|
|
4740
|
-
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, AnzuUserMinimal {
|
|
4877
|
+
export declare interface AnzuUser extends AnzuUserAndTimeTrackingAware, Omit<AnzuUserMinimal, 'id'> {
|
|
4878
|
+
id?: IntegerIdNullable;
|
|
4741
4879
|
enabled: boolean;
|
|
4742
4880
|
roles: string[];
|
|
4743
4881
|
permissionGroups: IntegerId[];
|
|
@@ -4879,7 +5017,7 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
|
|
|
4879
5017
|
|
|
4880
5018
|
export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
|
|
4881
5019
|
|
|
4882
|
-
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<
|
|
5020
|
+
export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4883
5021
|
modelValue: any;
|
|
4884
5022
|
dirty?: Set<string | number> | undefined;
|
|
4885
5023
|
keyField?: string | undefined;
|
|
@@ -4889,6 +5027,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4889
5027
|
disableDefaultSort?: boolean | undefined;
|
|
4890
5028
|
updatePosition?: boolean | undefined;
|
|
4891
5029
|
positionField?: string | undefined;
|
|
5030
|
+
positionMultiplier?: number | undefined;
|
|
4892
5031
|
showAddAfterButton?: boolean | undefined;
|
|
4893
5032
|
showAddLastButton?: boolean | undefined;
|
|
4894
5033
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4903,6 +5042,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4903
5042
|
disableDefaultSort: boolean;
|
|
4904
5043
|
updatePosition: boolean;
|
|
4905
5044
|
positionField: string;
|
|
5045
|
+
positionMultiplier: number;
|
|
4906
5046
|
showAddAfterButton: boolean;
|
|
4907
5047
|
showAddLastButton: boolean;
|
|
4908
5048
|
showDeleteButton: boolean;
|
|
@@ -4919,12 +5059,13 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4919
5059
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4920
5060
|
"update:modelValue": (data: any[]) => void;
|
|
4921
5061
|
"update:dirty": (data: (string | number)[]) => void;
|
|
5062
|
+
onStart: () => void;
|
|
4922
5063
|
onEnd: (data: SortableItemNewPositions) => void;
|
|
4923
5064
|
onAddAfter: (data: SortableItem<any>) => void;
|
|
4924
5065
|
onAddLast: (data: any) => void;
|
|
4925
5066
|
onEdit: (data: SortableItem<any>) => void;
|
|
4926
5067
|
onDelete: (data: SortableItem<any>) => void;
|
|
4927
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5068
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_62<{
|
|
4928
5069
|
modelValue: any;
|
|
4929
5070
|
dirty?: Set<string | number> | undefined;
|
|
4930
5071
|
keyField?: string | undefined;
|
|
@@ -4934,6 +5075,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4934
5075
|
disableDefaultSort?: boolean | undefined;
|
|
4935
5076
|
updatePosition?: boolean | undefined;
|
|
4936
5077
|
positionField?: string | undefined;
|
|
5078
|
+
positionMultiplier?: number | undefined;
|
|
4937
5079
|
showAddAfterButton?: boolean | undefined;
|
|
4938
5080
|
showAddLastButton?: boolean | undefined;
|
|
4939
5081
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4948,6 +5090,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4948
5090
|
disableDefaultSort: boolean;
|
|
4949
5091
|
updatePosition: boolean;
|
|
4950
5092
|
positionField: string;
|
|
5093
|
+
positionMultiplier: number;
|
|
4951
5094
|
showAddAfterButton: boolean;
|
|
4952
5095
|
showAddLastButton: boolean;
|
|
4953
5096
|
showDeleteButton: boolean;
|
|
@@ -4956,6 +5099,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4956
5099
|
}>>> & {
|
|
4957
5100
|
"onUpdate:modelValue"?: ((data: any[]) => any) | undefined;
|
|
4958
5101
|
onOnEnd?: ((data: SortableItemNewPositions) => any) | undefined;
|
|
5102
|
+
onOnStart?: (() => any) | undefined;
|
|
4959
5103
|
"onUpdate:dirty"?: ((data: (string | number)[]) => any) | undefined;
|
|
4960
5104
|
onOnAddAfter?: ((data: SortableItem<any>) => any) | undefined;
|
|
4961
5105
|
onOnAddLast?: ((data: any) => any) | undefined;
|
|
@@ -4970,18 +5114,25 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4970
5114
|
disableDefaultSort: boolean;
|
|
4971
5115
|
updatePosition: boolean;
|
|
4972
5116
|
positionField: string;
|
|
5117
|
+
positionMultiplier: number;
|
|
4973
5118
|
showAddAfterButton: boolean;
|
|
4974
5119
|
showAddLastButton: boolean;
|
|
4975
5120
|
showDeleteButton: boolean;
|
|
4976
5121
|
showEditButton: boolean;
|
|
4977
5122
|
addLastButtonT: string;
|
|
4978
5123
|
}, {}>, {
|
|
5124
|
+
itemBefore?(_: {
|
|
5125
|
+
item: SortableItem<any>;
|
|
5126
|
+
}): any;
|
|
4979
5127
|
item?(_: {
|
|
4980
5128
|
item: SortableItem<any>;
|
|
4981
5129
|
}): any;
|
|
4982
5130
|
buttons?(_: {
|
|
4983
5131
|
item: SortableItem<any>;
|
|
4984
5132
|
}): any;
|
|
5133
|
+
itemAfter?(_: {
|
|
5134
|
+
item: SortableItem<any>;
|
|
5135
|
+
}): any;
|
|
4985
5136
|
"add-last-activator"?(_: {
|
|
4986
5137
|
props: {
|
|
4987
5138
|
onClick: () => void;
|
|
@@ -4989,7 +5140,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4989
5140
|
}): any;
|
|
4990
5141
|
}>;
|
|
4991
5142
|
|
|
4992
|
-
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<
|
|
5143
|
+
export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
4993
5144
|
modelValue: SortableNested<any>;
|
|
4994
5145
|
maxDepth: number;
|
|
4995
5146
|
disableDraggable?: boolean | undefined;
|
|
@@ -5025,7 +5176,7 @@ export declare const ASortableNested: __VLS_WithTemplateSlots_22<DefineComponent
|
|
|
5025
5176
|
onAddLast: (data: SortableNestedItem<any> | null) => void;
|
|
5026
5177
|
onEdit: (data: SortableNestedItem<any>) => void;
|
|
5027
5178
|
onDelete: (data: SortableNestedItem<any>) => void;
|
|
5028
|
-
}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5179
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_63<{
|
|
5029
5180
|
modelValue: SortableNested<any>;
|
|
5030
5181
|
maxDepth: number;
|
|
5031
5182
|
disableDraggable?: boolean | undefined;
|
|
@@ -5273,10 +5424,10 @@ declare enum AssetSelectReturnType {
|
|
|
5273
5424
|
}
|
|
5274
5425
|
|
|
5275
5426
|
export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
5276
|
-
pagination: Pagination;
|
|
5277
|
-
loading?: boolean | undefined;
|
|
5278
5427
|
submitFilter: Fn;
|
|
5279
5428
|
resetFilter: Fn;
|
|
5429
|
+
pagination: Pagination;
|
|
5430
|
+
loading?: boolean | undefined;
|
|
5280
5431
|
modelValue?: boolean | undefined;
|
|
5281
5432
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5282
5433
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5317,10 +5468,10 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5317
5468
|
open: () => void;
|
|
5318
5469
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
5319
5470
|
props: {
|
|
5320
|
-
pagination: Pagination;
|
|
5321
|
-
loading?: boolean | undefined;
|
|
5322
5471
|
submitFilter: Fn;
|
|
5323
5472
|
resetFilter: Fn;
|
|
5473
|
+
pagination: Pagination;
|
|
5474
|
+
loading?: boolean | undefined;
|
|
5324
5475
|
modelValue?: boolean | undefined;
|
|
5325
5476
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5326
5477
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5365,10 +5516,10 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5365
5516
|
}> & {
|
|
5366
5517
|
__ctx?: {
|
|
5367
5518
|
props: {
|
|
5368
|
-
pagination: Pagination;
|
|
5369
|
-
loading?: boolean | undefined;
|
|
5370
5519
|
submitFilter: Fn;
|
|
5371
5520
|
resetFilter: Fn;
|
|
5521
|
+
pagination: Pagination;
|
|
5522
|
+
loading?: boolean | undefined;
|
|
5372
5523
|
modelValue?: boolean | undefined;
|
|
5373
5524
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5374
5525
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5411,14 +5562,14 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5411
5562
|
} | undefined;
|
|
5412
5563
|
};
|
|
5413
5564
|
|
|
5414
|
-
export declare const ASystemBar: DefineComponent<
|
|
5565
|
+
export declare const ASystemBar: DefineComponent<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5415
5566
|
currentVersion: string;
|
|
5416
5567
|
checkInterval?: number | undefined;
|
|
5417
5568
|
jsonRelativePath?: string | undefined;
|
|
5418
5569
|
}>, {
|
|
5419
5570
|
checkInterval: number;
|
|
5420
5571
|
jsonRelativePath: string;
|
|
5421
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5572
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5422
5573
|
currentVersion: string;
|
|
5423
5574
|
checkInterval?: number | undefined;
|
|
5424
5575
|
jsonRelativePath?: string | undefined;
|
|
@@ -5440,7 +5591,7 @@ export declare const ASystemEntityScope: __VLS_WithTemplateSlots_4<DefineCompone
|
|
|
5440
5591
|
default?(_: {}): any;
|
|
5441
5592
|
}>;
|
|
5442
5593
|
|
|
5443
|
-
export declare const ATableCopyIdButton: DefineComponent<
|
|
5594
|
+
export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5444
5595
|
id: number | string;
|
|
5445
5596
|
buttonT?: string | undefined;
|
|
5446
5597
|
buttonClass?: string | undefined;
|
|
@@ -5455,7 +5606,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5455
5606
|
notifyT: string;
|
|
5456
5607
|
dataCy: string;
|
|
5457
5608
|
size: string;
|
|
5458
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5609
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
5459
5610
|
id: number | string;
|
|
5460
5611
|
buttonT?: string | undefined;
|
|
5461
5612
|
buttonClass?: string | undefined;
|
|
@@ -5479,7 +5630,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5479
5630
|
iconT: string;
|
|
5480
5631
|
}, {}>;
|
|
5481
5632
|
|
|
5482
|
-
export declare const ATableDetailButton: DefineComponent<
|
|
5633
|
+
export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5483
5634
|
routeName: string;
|
|
5484
5635
|
recordId?: number | string | undefined;
|
|
5485
5636
|
routeParams?: any | undefined;
|
|
@@ -5492,7 +5643,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5492
5643
|
buttonT: string;
|
|
5493
5644
|
buttonClass: string;
|
|
5494
5645
|
dataCy: string;
|
|
5495
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5646
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
5496
5647
|
routeName: string;
|
|
5497
5648
|
recordId?: number | string | undefined;
|
|
5498
5649
|
routeParams?: any | undefined;
|
|
@@ -5513,7 +5664,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5513
5664
|
recordId: string | number;
|
|
5514
5665
|
}, {}>;
|
|
5515
5666
|
|
|
5516
|
-
export declare const ATableEditButton: DefineComponent<
|
|
5667
|
+
export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5517
5668
|
routeName: string;
|
|
5518
5669
|
recordId?: number | string | undefined;
|
|
5519
5670
|
routeParams?: any | undefined;
|
|
@@ -5526,7 +5677,7 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5526
5677
|
buttonT: string;
|
|
5527
5678
|
buttonClass: string;
|
|
5528
5679
|
dataCy: string;
|
|
5529
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5680
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5530
5681
|
routeName: string;
|
|
5531
5682
|
recordId?: number | string | undefined;
|
|
5532
5683
|
routeParams?: any | undefined;
|
|
@@ -5549,14 +5700,14 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5549
5700
|
|
|
5550
5701
|
export declare const AThemeSelect: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
5551
5702
|
|
|
5552
|
-
export declare const ATimeTrackingFields: DefineComponent<
|
|
5703
|
+
export declare const ATimeTrackingFields: DefineComponent<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5553
5704
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5554
5705
|
hideCreatedAt?: boolean | undefined;
|
|
5555
5706
|
hideModifiedAt?: boolean | undefined;
|
|
5556
5707
|
}>, {
|
|
5557
5708
|
hideCreatedAt: boolean;
|
|
5558
5709
|
hideModifiedAt: boolean;
|
|
5559
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5710
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
5560
5711
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5561
5712
|
hideCreatedAt?: boolean | undefined;
|
|
5562
5713
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5579,13 +5730,13 @@ declare interface AudioAttributes {
|
|
|
5579
5730
|
bitrate: number;
|
|
5580
5731
|
}
|
|
5581
5732
|
|
|
5582
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5733
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5583
5734
|
returnRouteName: string;
|
|
5584
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5735
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
|
|
5585
5736
|
returnRouteName: string;
|
|
5586
5737
|
}>, {}>>>, {}, {}>;
|
|
5587
5738
|
|
|
5588
|
-
export declare const AUserAndTimeTrackingFields: DefineComponent<
|
|
5739
|
+
export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5589
5740
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5590
5741
|
hideCreatedAt?: boolean | undefined;
|
|
5591
5742
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5596,7 +5747,7 @@ export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefau
|
|
|
5596
5747
|
hideModifiedAt: boolean;
|
|
5597
5748
|
hideCreatedBy: boolean;
|
|
5598
5749
|
hideModifiedBy: boolean;
|
|
5599
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5750
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
5600
5751
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5601
5752
|
hideCreatedAt?: boolean | undefined;
|
|
5602
5753
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -6051,6 +6202,105 @@ export declare interface DamAssetLicenceMinimal {
|
|
|
6051
6202
|
name: string;
|
|
6052
6203
|
}
|
|
6053
6204
|
|
|
6205
|
+
export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<{
|
|
6206
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6207
|
+
multiple: {
|
|
6208
|
+
type: PropType<boolean>;
|
|
6209
|
+
default: boolean;
|
|
6210
|
+
};
|
|
6211
|
+
required: {
|
|
6212
|
+
type: PropType<boolean>;
|
|
6213
|
+
default: undefined;
|
|
6214
|
+
};
|
|
6215
|
+
modelValue: {
|
|
6216
|
+
type: PropType<any>;
|
|
6217
|
+
required: true;
|
|
6218
|
+
};
|
|
6219
|
+
label: {
|
|
6220
|
+
type: PropType<string>;
|
|
6221
|
+
default: undefined;
|
|
6222
|
+
};
|
|
6223
|
+
dataCy: {
|
|
6224
|
+
type: PropType<string>;
|
|
6225
|
+
default: string;
|
|
6226
|
+
};
|
|
6227
|
+
clearable: {
|
|
6228
|
+
type: PropType<boolean>;
|
|
6229
|
+
default: boolean;
|
|
6230
|
+
};
|
|
6231
|
+
hideDetails: {
|
|
6232
|
+
type: PropType<boolean>;
|
|
6233
|
+
default: undefined;
|
|
6234
|
+
};
|
|
6235
|
+
disableInitFetch: {
|
|
6236
|
+
type: PropType<boolean>;
|
|
6237
|
+
default: boolean;
|
|
6238
|
+
};
|
|
6239
|
+
extSystemId: {
|
|
6240
|
+
type: PropType<number | null>;
|
|
6241
|
+
default: null;
|
|
6242
|
+
};
|
|
6243
|
+
client: {
|
|
6244
|
+
type: PropType<() => AxiosInstance>;
|
|
6245
|
+
required: true;
|
|
6246
|
+
};
|
|
6247
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6248
|
+
"update:modelValue": (data: any) => void;
|
|
6249
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
6250
|
+
selected: PropType<ValueObjectOption<number>[]>;
|
|
6251
|
+
multiple: {
|
|
6252
|
+
type: PropType<boolean>;
|
|
6253
|
+
default: boolean;
|
|
6254
|
+
};
|
|
6255
|
+
required: {
|
|
6256
|
+
type: PropType<boolean>;
|
|
6257
|
+
default: undefined;
|
|
6258
|
+
};
|
|
6259
|
+
modelValue: {
|
|
6260
|
+
type: PropType<any>;
|
|
6261
|
+
required: true;
|
|
6262
|
+
};
|
|
6263
|
+
label: {
|
|
6264
|
+
type: PropType<string>;
|
|
6265
|
+
default: undefined;
|
|
6266
|
+
};
|
|
6267
|
+
dataCy: {
|
|
6268
|
+
type: PropType<string>;
|
|
6269
|
+
default: string;
|
|
6270
|
+
};
|
|
6271
|
+
clearable: {
|
|
6272
|
+
type: PropType<boolean>;
|
|
6273
|
+
default: boolean;
|
|
6274
|
+
};
|
|
6275
|
+
hideDetails: {
|
|
6276
|
+
type: PropType<boolean>;
|
|
6277
|
+
default: undefined;
|
|
6278
|
+
};
|
|
6279
|
+
disableInitFetch: {
|
|
6280
|
+
type: PropType<boolean>;
|
|
6281
|
+
default: boolean;
|
|
6282
|
+
};
|
|
6283
|
+
extSystemId: {
|
|
6284
|
+
type: PropType<number | null>;
|
|
6285
|
+
default: null;
|
|
6286
|
+
};
|
|
6287
|
+
client: {
|
|
6288
|
+
type: PropType<() => AxiosInstance>;
|
|
6289
|
+
required: true;
|
|
6290
|
+
};
|
|
6291
|
+
}>> & {
|
|
6292
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6293
|
+
}, {
|
|
6294
|
+
multiple: boolean;
|
|
6295
|
+
required: boolean;
|
|
6296
|
+
label: string;
|
|
6297
|
+
dataCy: string;
|
|
6298
|
+
clearable: boolean;
|
|
6299
|
+
hideDetails: boolean;
|
|
6300
|
+
disableInitFetch: boolean;
|
|
6301
|
+
extSystemId: IntegerId | null;
|
|
6302
|
+
}, {}>;
|
|
6303
|
+
|
|
6054
6304
|
export declare enum DamAssetStatus {
|
|
6055
6305
|
Draft = "draft",
|
|
6056
6306
|
WithFile = "with_file",
|
|
@@ -6116,6 +6366,7 @@ export declare const damCurrentUser: Ref<{
|
|
|
6116
6366
|
};
|
|
6117
6367
|
allowedAssetExternalProviders: string[];
|
|
6118
6368
|
allowedDistributionServices: string[];
|
|
6369
|
+
id?: IntegerIdNullable | undefined;
|
|
6119
6370
|
enabled: boolean;
|
|
6120
6371
|
roles: string[];
|
|
6121
6372
|
permissionGroups: number[];
|
|
@@ -6127,7 +6378,6 @@ export declare const damCurrentUser: Ref<{
|
|
|
6127
6378
|
modifiedAt: string;
|
|
6128
6379
|
modifiedBy: IntegerIdNullable;
|
|
6129
6380
|
createdBy: IntegerIdNullable;
|
|
6130
|
-
id: number;
|
|
6131
6381
|
email: string;
|
|
6132
6382
|
} | undefined>;
|
|
6133
6383
|
|
|
@@ -6190,6 +6440,38 @@ export declare enum DamDistributionRequirementStrategy {
|
|
|
6190
6440
|
|
|
6191
6441
|
export declare type DamDistributionServiceName = string;
|
|
6192
6442
|
|
|
6443
|
+
export declare const DamDistributionServiceSelect: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6444
|
+
modelValue: string[];
|
|
6445
|
+
client: () => AxiosInstance;
|
|
6446
|
+
multiple?: boolean | undefined;
|
|
6447
|
+
label?: string | undefined;
|
|
6448
|
+
dataCy?: string | undefined;
|
|
6449
|
+
}>, {
|
|
6450
|
+
multiple: boolean;
|
|
6451
|
+
label: undefined;
|
|
6452
|
+
dataCy: string;
|
|
6453
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6454
|
+
"update:modelValue": (data: string[]) => void;
|
|
6455
|
+
blur: (data: string[]) => void;
|
|
6456
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
6457
|
+
modelValue: string[];
|
|
6458
|
+
client: () => AxiosInstance;
|
|
6459
|
+
multiple?: boolean | undefined;
|
|
6460
|
+
label?: string | undefined;
|
|
6461
|
+
dataCy?: string | undefined;
|
|
6462
|
+
}>, {
|
|
6463
|
+
multiple: boolean;
|
|
6464
|
+
label: undefined;
|
|
6465
|
+
dataCy: string;
|
|
6466
|
+
}>>> & {
|
|
6467
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6468
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6469
|
+
}, {
|
|
6470
|
+
multiple: boolean;
|
|
6471
|
+
label: string;
|
|
6472
|
+
dataCy: string;
|
|
6473
|
+
}, {}>;
|
|
6474
|
+
|
|
6193
6475
|
export declare enum DamDistributionServiceType {
|
|
6194
6476
|
Youtube = "youtubeDistribution",
|
|
6195
6477
|
Jw = "jwDistribution",
|
|
@@ -6212,6 +6494,38 @@ export declare type DamExternalProviderAssetConfig = Record<DamExternalProviderA
|
|
|
6212
6494
|
|
|
6213
6495
|
export declare type DamExternalProviderAssetName = string;
|
|
6214
6496
|
|
|
6497
|
+
export declare const DamExternalProviderAssetSelect: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6498
|
+
modelValue: string[];
|
|
6499
|
+
client: () => AxiosInstance;
|
|
6500
|
+
multiple?: boolean | undefined;
|
|
6501
|
+
label?: string | undefined;
|
|
6502
|
+
dataCy?: string | undefined;
|
|
6503
|
+
}>, {
|
|
6504
|
+
multiple: boolean;
|
|
6505
|
+
label: undefined;
|
|
6506
|
+
dataCy: string;
|
|
6507
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6508
|
+
"update:modelValue": (data: string[]) => void;
|
|
6509
|
+
blur: (data: string[]) => void;
|
|
6510
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
6511
|
+
modelValue: string[];
|
|
6512
|
+
client: () => AxiosInstance;
|
|
6513
|
+
multiple?: boolean | undefined;
|
|
6514
|
+
label?: string | undefined;
|
|
6515
|
+
dataCy?: string | undefined;
|
|
6516
|
+
}>, {
|
|
6517
|
+
multiple: boolean;
|
|
6518
|
+
label: undefined;
|
|
6519
|
+
dataCy: string;
|
|
6520
|
+
}>>> & {
|
|
6521
|
+
"onUpdate:modelValue"?: ((data: string[]) => any) | undefined;
|
|
6522
|
+
onBlur?: ((data: string[]) => any) | undefined;
|
|
6523
|
+
}, {
|
|
6524
|
+
multiple: boolean;
|
|
6525
|
+
label: string;
|
|
6526
|
+
dataCy: string;
|
|
6527
|
+
}, {}>;
|
|
6528
|
+
|
|
6215
6529
|
export declare interface DamExtSystem extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
6216
6530
|
id: IntegerId;
|
|
6217
6531
|
name: string;
|
|
@@ -6247,6 +6561,56 @@ export declare interface DamExtSystemConfigItem {
|
|
|
6247
6561
|
export declare interface DamExtSystemMinimal extends Pick<DamExtSystem, 'id' | 'name'> {
|
|
6248
6562
|
}
|
|
6249
6563
|
|
|
6564
|
+
export declare const DamExtSystemRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6565
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6566
|
+
client: () => AxiosInstance;
|
|
6567
|
+
label?: string | undefined;
|
|
6568
|
+
required?: boolean | undefined;
|
|
6569
|
+
multiple?: boolean | undefined;
|
|
6570
|
+
clearable?: boolean | undefined;
|
|
6571
|
+
dataCy?: string | undefined;
|
|
6572
|
+
hideDetails?: boolean | undefined;
|
|
6573
|
+
disableInitFetch?: boolean | undefined;
|
|
6574
|
+
}>, {
|
|
6575
|
+
label: undefined;
|
|
6576
|
+
required: undefined;
|
|
6577
|
+
multiple: boolean;
|
|
6578
|
+
clearable: boolean;
|
|
6579
|
+
dataCy: string;
|
|
6580
|
+
hideDetails: undefined;
|
|
6581
|
+
disableInitFetch: boolean;
|
|
6582
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6583
|
+
"update:modelValue": (data: any) => void;
|
|
6584
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
6585
|
+
modelValue: IntegerId | null | IntegerId[] | any;
|
|
6586
|
+
client: () => AxiosInstance;
|
|
6587
|
+
label?: string | undefined;
|
|
6588
|
+
required?: boolean | undefined;
|
|
6589
|
+
multiple?: boolean | undefined;
|
|
6590
|
+
clearable?: boolean | undefined;
|
|
6591
|
+
dataCy?: string | undefined;
|
|
6592
|
+
hideDetails?: boolean | undefined;
|
|
6593
|
+
disableInitFetch?: boolean | undefined;
|
|
6594
|
+
}>, {
|
|
6595
|
+
label: undefined;
|
|
6596
|
+
required: undefined;
|
|
6597
|
+
multiple: boolean;
|
|
6598
|
+
clearable: boolean;
|
|
6599
|
+
dataCy: string;
|
|
6600
|
+
hideDetails: undefined;
|
|
6601
|
+
disableInitFetch: boolean;
|
|
6602
|
+
}>>> & {
|
|
6603
|
+
"onUpdate:modelValue"?: ((data: any) => any) | undefined;
|
|
6604
|
+
}, {
|
|
6605
|
+
multiple: boolean;
|
|
6606
|
+
required: boolean;
|
|
6607
|
+
label: string;
|
|
6608
|
+
dataCy: string;
|
|
6609
|
+
clearable: boolean;
|
|
6610
|
+
hideDetails: boolean;
|
|
6611
|
+
disableInitFetch: boolean;
|
|
6612
|
+
}, {}>;
|
|
6613
|
+
|
|
6250
6614
|
export declare const damFileTypeFix: (file: File | null | undefined) => string;
|
|
6251
6615
|
|
|
6252
6616
|
export declare interface DamKeyword extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
|
|
@@ -6381,6 +6745,19 @@ export declare interface DamUploadStartResponse {
|
|
|
6381
6745
|
asset: DocId;
|
|
6382
6746
|
}
|
|
6383
6747
|
|
|
6748
|
+
export declare interface DamUser extends Omit<AnzuUser, 'id'>, DamUserUpdateDto {
|
|
6749
|
+
}
|
|
6750
|
+
|
|
6751
|
+
export declare interface DamUserUpdateDto {
|
|
6752
|
+
id: IntegerId;
|
|
6753
|
+
assetLicences: IntegerId[];
|
|
6754
|
+
allowedAssetExternalProviders: string[];
|
|
6755
|
+
allowedDistributionServices: string[];
|
|
6756
|
+
adminToExtSystems: IntegerId[];
|
|
6757
|
+
readonly userToExtSystems: IntegerId[];
|
|
6758
|
+
plainPassword?: string;
|
|
6759
|
+
}
|
|
6760
|
+
|
|
6384
6761
|
export declare type DatatableOrderingOption = {
|
|
6385
6762
|
id: number;
|
|
6386
6763
|
titleT: string;
|
|
@@ -6476,8 +6853,22 @@ export declare type EnableDisable = 'enable' | 'disable';
|
|
|
6476
6853
|
|
|
6477
6854
|
export declare const eventClickBlur: (event?: Event) => void;
|
|
6478
6855
|
|
|
6856
|
+
export declare const fetchDamAssetLicenceList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamAssetLicence[]>;
|
|
6857
|
+
|
|
6858
|
+
export declare const fetchDamAssetLicenceListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamAssetLicence[]>;
|
|
6859
|
+
|
|
6479
6860
|
export declare const fetchDamCurrentUser: (client: () => AxiosInstance) => Promise<DamCurrentUserDto>;
|
|
6480
6861
|
|
|
6862
|
+
export declare const fetchDamExtSystemList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamExtSystem[]>;
|
|
6863
|
+
|
|
6864
|
+
export declare const fetchDamExtSystemListByIds: (client: () => AxiosInstance, ids: IntegerId[]) => Promise<DamExtSystem[]>;
|
|
6865
|
+
|
|
6866
|
+
export declare const fetchDamUser: (client: () => AxiosInstance, id: number) => Promise<DamUser>;
|
|
6867
|
+
|
|
6868
|
+
export declare const fetchDamUserList: (client: () => AxiosInstance, pagination: Pagination, filterBag: FilterBag) => Promise<DamUser[]>;
|
|
6869
|
+
|
|
6870
|
+
export declare const fetchDamUserListByIds: (client: () => AxiosInstance, ids: number[]) => Promise<DamUser[]>;
|
|
6871
|
+
|
|
6481
6872
|
declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
6482
6873
|
|
|
6483
6874
|
declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
@@ -6605,6 +6996,8 @@ export declare const i18n: I18n<{
|
|
|
6605
6996
|
refresh: string;
|
|
6606
6997
|
forwards: string;
|
|
6607
6998
|
backwards: string;
|
|
6999
|
+
next: string;
|
|
7000
|
+
prev: string;
|
|
6608
7001
|
loadMore: string;
|
|
6609
7002
|
};
|
|
6610
7003
|
model: {
|
|
@@ -6718,6 +7111,11 @@ export declare const i18n: I18n<{
|
|
|
6718
7111
|
resolvedPermissions: string;
|
|
6719
7112
|
noPermissions: string;
|
|
6720
7113
|
};
|
|
7114
|
+
copyPermissions: {
|
|
7115
|
+
title: string;
|
|
7116
|
+
desc: string;
|
|
7117
|
+
srcUser: string;
|
|
7118
|
+
};
|
|
6721
7119
|
};
|
|
6722
7120
|
job: {
|
|
6723
7121
|
filter: {
|
|
@@ -7502,6 +7900,8 @@ export declare const messagesCs: {
|
|
|
7502
7900
|
refresh: string;
|
|
7503
7901
|
forwards: string;
|
|
7504
7902
|
backwards: string;
|
|
7903
|
+
next: string;
|
|
7904
|
+
prev: string;
|
|
7505
7905
|
loadMore: string;
|
|
7506
7906
|
};
|
|
7507
7907
|
model: {
|
|
@@ -7615,6 +8015,11 @@ export declare const messagesCs: {
|
|
|
7615
8015
|
resolvedPermissions: string;
|
|
7616
8016
|
noPermissions: string;
|
|
7617
8017
|
};
|
|
8018
|
+
copyPermissions: {
|
|
8019
|
+
title: string;
|
|
8020
|
+
desc: string;
|
|
8021
|
+
srcUser: string;
|
|
8022
|
+
};
|
|
7618
8023
|
};
|
|
7619
8024
|
job: {
|
|
7620
8025
|
filter: {
|
|
@@ -8190,6 +8595,8 @@ export declare const messagesEn: {
|
|
|
8190
8595
|
refresh: string;
|
|
8191
8596
|
forwards: string;
|
|
8192
8597
|
backwards: string;
|
|
8598
|
+
next: string;
|
|
8599
|
+
prev: string;
|
|
8193
8600
|
loadMore: string;
|
|
8194
8601
|
};
|
|
8195
8602
|
model: {
|
|
@@ -8303,6 +8710,11 @@ export declare const messagesEn: {
|
|
|
8303
8710
|
resolvedPermissions: string;
|
|
8304
8711
|
noPermissions: string;
|
|
8305
8712
|
};
|
|
8713
|
+
copyPermissions: {
|
|
8714
|
+
title: string;
|
|
8715
|
+
desc: string;
|
|
8716
|
+
srcUser: string;
|
|
8717
|
+
};
|
|
8306
8718
|
};
|
|
8307
8719
|
job: {
|
|
8308
8720
|
filter: {
|
|
@@ -8878,6 +9290,8 @@ export declare const messagesSk: {
|
|
|
8878
9290
|
refresh: string;
|
|
8879
9291
|
forwards: string;
|
|
8880
9292
|
backwards: string;
|
|
9293
|
+
next: string;
|
|
9294
|
+
prev: string;
|
|
8881
9295
|
loadMore: string;
|
|
8882
9296
|
};
|
|
8883
9297
|
model: {
|
|
@@ -8995,6 +9409,11 @@ export declare const messagesSk: {
|
|
|
8995
9409
|
resolvedPermissions: string;
|
|
8996
9410
|
noPermissions: string;
|
|
8997
9411
|
};
|
|
9412
|
+
copyPermissions: {
|
|
9413
|
+
title: string;
|
|
9414
|
+
desc: string;
|
|
9415
|
+
srcUser: string;
|
|
9416
|
+
};
|
|
8998
9417
|
};
|
|
8999
9418
|
job: {
|
|
9000
9419
|
filter: {
|
|
@@ -9644,6 +10063,7 @@ export declare interface PermissionGroupMinimal {
|
|
|
9644
10063
|
declare type Permissions_2 = {
|
|
9645
10064
|
[key in AclValue]?: Grant;
|
|
9646
10065
|
};
|
|
10066
|
+
export { Permissions_2 as Permissions }
|
|
9647
10067
|
|
|
9648
10068
|
export declare type PermissionTranslationGroup = 'subjects' | 'actions' | 'roles';
|
|
9649
10069
|
|
|
@@ -9804,6 +10224,8 @@ export declare const timestampCurrent: () => number;
|
|
|
9804
10224
|
|
|
9805
10225
|
export declare function updateDamCurrentUser(client: () => AxiosInstance): Promise<unknown>;
|
|
9806
10226
|
|
|
10227
|
+
export declare const updateDamUser: (client: () => AxiosInstance, id: number, data: DamUserUpdateDto) => Promise<DamUser>;
|
|
10228
|
+
|
|
9807
10229
|
export declare interface UploadQueue {
|
|
9808
10230
|
items: UploadQueueItem[];
|
|
9809
10231
|
totalCount: number;
|
|
@@ -10046,6 +10468,13 @@ export declare function useCommonAdminCollabOptions(): {
|
|
|
10046
10468
|
}>;
|
|
10047
10469
|
};
|
|
10048
10470
|
|
|
10471
|
+
export declare function useCommonAdminImageOptions(configName?: string): {
|
|
10472
|
+
imageClient: () => AxiosInstance;
|
|
10473
|
+
previewDomain: string;
|
|
10474
|
+
imageWidth: number;
|
|
10475
|
+
imageHeight: number;
|
|
10476
|
+
};
|
|
10477
|
+
|
|
10049
10478
|
export declare function useCommonJobFactory(): {
|
|
10050
10479
|
createBase: (resourceName: JobBaseResource, system: string) => JobBase;
|
|
10051
10480
|
createUserDataDelete: (system: string) => JobUserDataDelete;
|
|
@@ -10175,12 +10604,14 @@ export declare function useCustomDataFormElementType(): {
|
|
|
10175
10604
|
title: string;
|
|
10176
10605
|
color?: string | undefined;
|
|
10177
10606
|
active?: false | undefined;
|
|
10607
|
+
subtitle?: string | undefined;
|
|
10178
10608
|
}[]>;
|
|
10179
10609
|
getCustomDataFormElementTypeOption: (value: CustomDataFormElementTypeType) => {
|
|
10180
10610
|
value: CustomDataFormElementTypeType;
|
|
10181
10611
|
title: string;
|
|
10182
10612
|
color?: string | undefined;
|
|
10183
10613
|
active?: false | undefined;
|
|
10614
|
+
subtitle?: string | undefined;
|
|
10184
10615
|
} | undefined;
|
|
10185
10616
|
};
|
|
10186
10617
|
|
|
@@ -10191,6 +10622,42 @@ export declare function useDamAcceptTypeAndSizeHelper(assetType: DamAssetType |
|
|
|
10191
10622
|
uploadAccept: ComputedRef<string>;
|
|
10192
10623
|
};
|
|
10193
10624
|
|
|
10625
|
+
export declare function useDamAssetLicenceFilter(): {
|
|
10626
|
+
name: {
|
|
10627
|
+
field: string;
|
|
10628
|
+
multiple: boolean;
|
|
10629
|
+
variant: FilterVariant;
|
|
10630
|
+
model: any;
|
|
10631
|
+
default: any;
|
|
10632
|
+
titleT?: string | undefined;
|
|
10633
|
+
error: string;
|
|
10634
|
+
mandatory: boolean;
|
|
10635
|
+
exclude: boolean;
|
|
10636
|
+
};
|
|
10637
|
+
extSystem: {
|
|
10638
|
+
field: string;
|
|
10639
|
+
multiple: boolean;
|
|
10640
|
+
variant: FilterVariant;
|
|
10641
|
+
model: any;
|
|
10642
|
+
default: any;
|
|
10643
|
+
titleT?: string | undefined;
|
|
10644
|
+
error: string;
|
|
10645
|
+
mandatory: boolean;
|
|
10646
|
+
exclude: boolean;
|
|
10647
|
+
};
|
|
10648
|
+
extId: {
|
|
10649
|
+
field: string;
|
|
10650
|
+
multiple: boolean;
|
|
10651
|
+
variant: FilterVariant;
|
|
10652
|
+
model: any;
|
|
10653
|
+
default: any;
|
|
10654
|
+
titleT?: string | undefined;
|
|
10655
|
+
error: string;
|
|
10656
|
+
mandatory: boolean;
|
|
10657
|
+
exclude: boolean;
|
|
10658
|
+
};
|
|
10659
|
+
};
|
|
10660
|
+
|
|
10194
10661
|
export declare function useDamAuthorFactory(): {
|
|
10195
10662
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamAuthor;
|
|
10196
10663
|
};
|
|
@@ -10201,12 +10668,14 @@ export declare function useDamAuthorType(): {
|
|
|
10201
10668
|
title: string;
|
|
10202
10669
|
color?: string | undefined;
|
|
10203
10670
|
active?: false | undefined;
|
|
10671
|
+
subtitle?: string | undefined;
|
|
10204
10672
|
}[]>;
|
|
10205
10673
|
getAuthorTypeOption: (value: DamAuthorType) => {
|
|
10206
10674
|
value: DamAuthorType;
|
|
10207
10675
|
title: string;
|
|
10208
10676
|
color?: string | undefined;
|
|
10209
10677
|
active?: false | undefined;
|
|
10678
|
+
subtitle?: string | undefined;
|
|
10210
10679
|
} | undefined;
|
|
10211
10680
|
};
|
|
10212
10681
|
|
|
@@ -10272,6 +10741,7 @@ export declare function useDamCurrentUser(): {
|
|
|
10272
10741
|
};
|
|
10273
10742
|
allowedAssetExternalProviders: string[];
|
|
10274
10743
|
allowedDistributionServices: string[];
|
|
10744
|
+
id?: IntegerIdNullable | undefined;
|
|
10275
10745
|
enabled: boolean;
|
|
10276
10746
|
roles: string[];
|
|
10277
10747
|
permissionGroups: number[];
|
|
@@ -10283,12 +10753,28 @@ export declare function useDamCurrentUser(): {
|
|
|
10283
10753
|
modifiedAt: string;
|
|
10284
10754
|
modifiedBy: IntegerIdNullable;
|
|
10285
10755
|
createdBy: IntegerIdNullable;
|
|
10286
|
-
id: number;
|
|
10287
10756
|
email: string;
|
|
10288
10757
|
} | undefined>;
|
|
10289
10758
|
damCurrentUserIsSuperAdmin: Ref<boolean>;
|
|
10290
10759
|
};
|
|
10291
10760
|
|
|
10761
|
+
export declare function useDamDistributionServiceType(client: () => AxiosInstance): {
|
|
10762
|
+
allDistributionServiceTypeOptions: Ref<{
|
|
10763
|
+
value: string;
|
|
10764
|
+
title: string;
|
|
10765
|
+
color?: string | undefined;
|
|
10766
|
+
active?: false | undefined;
|
|
10767
|
+
subtitle?: string | undefined;
|
|
10768
|
+
}[]>;
|
|
10769
|
+
getDistributionServiceTypeOption: (value: string) => {
|
|
10770
|
+
value: string;
|
|
10771
|
+
title: string;
|
|
10772
|
+
color?: string | undefined;
|
|
10773
|
+
active?: false | undefined;
|
|
10774
|
+
subtitle?: string | undefined;
|
|
10775
|
+
} | undefined;
|
|
10776
|
+
};
|
|
10777
|
+
|
|
10292
10778
|
export declare function useDamKeywordFactory(): {
|
|
10293
10779
|
createDefault: (extSystemId: number, reviewed?: boolean) => DamKeyword;
|
|
10294
10780
|
};
|
|
@@ -10329,6 +10815,7 @@ export declare function useGrant(): {
|
|
|
10329
10815
|
title: string;
|
|
10330
10816
|
color?: string | undefined;
|
|
10331
10817
|
active?: false | undefined;
|
|
10818
|
+
subtitle?: string | undefined;
|
|
10332
10819
|
}[]>;
|
|
10333
10820
|
getGrantOption: (value: Grant) => ValueObjectOption<Grant>;
|
|
10334
10821
|
};
|
|
@@ -10339,12 +10826,20 @@ export declare function useGrantOrigin(): {
|
|
|
10339
10826
|
title: string;
|
|
10340
10827
|
color?: string | undefined;
|
|
10341
10828
|
active?: false | undefined;
|
|
10829
|
+
subtitle?: string | undefined;
|
|
10342
10830
|
}[]>;
|
|
10343
10831
|
getGrantOriginOption: (value: GrantOrigin) => ValueObjectOption<GrantOrigin>;
|
|
10344
10832
|
};
|
|
10345
10833
|
|
|
10346
10834
|
export { useI18n }
|
|
10347
10835
|
|
|
10836
|
+
export declare function useImageActions(config: ReturnType<typeof useCommonAdminImageOptions>): {
|
|
10837
|
+
widgetImageToDamImageUrl: (image: ImageAware | ImageCreateUpdateAware, width?: number, height?: number, random?: boolean) => string;
|
|
10838
|
+
widgetImageToDamImageOriginalUrl: (image: ImageAware | ImageCreateUpdateAware, random?: boolean) => string;
|
|
10839
|
+
damImageIdToDamImageUrl: (imageId: DocId, width?: number, height?: number, random?: boolean) => string;
|
|
10840
|
+
damImageIdToDamImageOriginalUrl: (imageId: DocId, random?: boolean) => string;
|
|
10841
|
+
};
|
|
10842
|
+
|
|
10348
10843
|
export declare function useJobApi<JobType extends JobBase = JobBase>(client: () => AxiosInstance, system: string): {
|
|
10349
10844
|
fetchJobList: (pagination: Pagination, filterBag: FilterBag) => Promise<JobType[]>;
|
|
10350
10845
|
fetchJob: (id: number) => Promise<JobType>;
|
|
@@ -10358,6 +10853,7 @@ export declare function useJobBaseResource<T extends JobBaseResource = JobBaseRe
|
|
|
10358
10853
|
title: string;
|
|
10359
10854
|
color?: string | undefined;
|
|
10360
10855
|
active?: false | undefined;
|
|
10856
|
+
subtitle?: string | undefined;
|
|
10361
10857
|
}[]>;
|
|
10362
10858
|
getJobResourceOption: (value: T) => ValueObjectOption<T>;
|
|
10363
10859
|
};
|
|
@@ -10368,6 +10864,7 @@ export declare function useJobStatus(): {
|
|
|
10368
10864
|
title: string;
|
|
10369
10865
|
color?: string | undefined;
|
|
10370
10866
|
active?: false | undefined;
|
|
10867
|
+
subtitle?: string | undefined;
|
|
10371
10868
|
}[]>;
|
|
10372
10869
|
getJobStatusOption: (value: JobStatus) => ValueObjectOption<JobStatus>;
|
|
10373
10870
|
};
|
|
@@ -10391,12 +10888,14 @@ export declare function useLogLevel(): {
|
|
|
10391
10888
|
title: string;
|
|
10392
10889
|
color?: string | undefined;
|
|
10393
10890
|
active?: false | undefined;
|
|
10891
|
+
subtitle?: string | undefined;
|
|
10394
10892
|
}[]>;
|
|
10395
10893
|
getLogLevelOption: (value: LogLevel) => {
|
|
10396
10894
|
value: LogLevel;
|
|
10397
10895
|
title: string;
|
|
10398
10896
|
color?: string | undefined;
|
|
10399
10897
|
active?: false | undefined;
|
|
10898
|
+
subtitle?: string | undefined;
|
|
10400
10899
|
} | undefined;
|
|
10401
10900
|
};
|
|
10402
10901
|
|
|
@@ -10520,6 +11019,7 @@ export declare interface ValueObjectOption<T> {
|
|
|
10520
11019
|
title: string;
|
|
10521
11020
|
color?: string;
|
|
10522
11021
|
active?: false;
|
|
11022
|
+
subtitle?: string;
|
|
10523
11023
|
}
|
|
10524
11024
|
|
|
10525
11025
|
declare interface VDatatableSelectableItem {
|