@anzusystems/common-admin 1.40.0-alpha22 → 1.40.0-alpha24
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 +238 -102
- package/dist/common-admin.es.js +258 -255
- package/dist/{lib-oAhTBmxM.js → lib-FUQly-Vh.js} +5214 -5207
- package/dist/lib-FUQly-Vh.js.map +1 -0
- package/dist/{shortcut-buttons-flatpickr-xE22_Lfk.js → shortcut-buttons-flatpickr-skb1ZtYl.js} +2 -2
- package/dist/{shortcut-buttons-flatpickr-xE22_Lfk.js.map → shortcut-buttons-flatpickr-skb1ZtYl.js.map} +1 -1
- package/dist/{webfontloader-aWm0D-h0.js → webfontloader-jW8GyDnP.js} +2 -2
- package/dist/{webfontloader-aWm0D-h0.js.map → webfontloader-jW8GyDnP.js.map} +1 -1
- package/package.json +1 -1
- package/dist/lib-oAhTBmxM.js.map +0 -1
|
@@ -8,6 +8,8 @@ import { ComponentCustomProps } from 'vue';
|
|
|
8
8
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
9
|
import { ComputedRef } from 'vue';
|
|
10
10
|
import { default as Cropper_2 } from 'cropperjs';
|
|
11
|
+
import type { DateLimit } from 'flatpickr/dist/types/options';
|
|
12
|
+
import type { DateOption } from 'flatpickr/dist/types/options';
|
|
11
13
|
import dayjs from 'dayjs';
|
|
12
14
|
import type { DeepReadonly } from 'vue';
|
|
13
15
|
import { DefineComponent } from 'vue';
|
|
@@ -188,6 +190,8 @@ declare type __VLS_NonUndefinedable_74<T> = T extends undefined ? never : T;
|
|
|
188
190
|
|
|
189
191
|
declare type __VLS_NonUndefinedable_75<T> = T extends undefined ? never : T;
|
|
190
192
|
|
|
193
|
+
declare type __VLS_NonUndefinedable_76<T> = T extends undefined ? never : T;
|
|
194
|
+
|
|
191
195
|
declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
|
|
192
196
|
|
|
193
197
|
declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
|
|
@@ -472,6 +476,10 @@ declare type __VLS_Prettify_72<T> = {
|
|
|
472
476
|
[K in keyof T]: T[K];
|
|
473
477
|
} & {};
|
|
474
478
|
|
|
479
|
+
declare type __VLS_Prettify_73<T> = {
|
|
480
|
+
[K in keyof T]: T[K];
|
|
481
|
+
} & {};
|
|
482
|
+
|
|
475
483
|
declare type __VLS_Prettify_8<T> = {
|
|
476
484
|
[K in keyof T]: T[K];
|
|
477
485
|
} & {};
|
|
@@ -1137,6 +1145,15 @@ declare type __VLS_TypePropsToRuntimeProps_75<T> = {
|
|
|
1137
1145
|
};
|
|
1138
1146
|
};
|
|
1139
1147
|
|
|
1148
|
+
declare type __VLS_TypePropsToRuntimeProps_76<T> = {
|
|
1149
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1150
|
+
type: PropType<__VLS_NonUndefinedable_76<T[K]>>;
|
|
1151
|
+
} : {
|
|
1152
|
+
type: PropType<T[K]>;
|
|
1153
|
+
required: true;
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
|
|
1140
1157
|
declare type __VLS_TypePropsToRuntimeProps_8<T> = {
|
|
1141
1158
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1142
1159
|
type: PropType<__VLS_NonUndefinedable_8<T[K]>>;
|
|
@@ -1575,6 +1592,12 @@ declare type __VLS_WithDefaults_72<P, D> = {
|
|
|
1575
1592
|
}> : P[K];
|
|
1576
1593
|
};
|
|
1577
1594
|
|
|
1595
|
+
declare type __VLS_WithDefaults_73<P, D> = {
|
|
1596
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_73<P[K] & {
|
|
1597
|
+
default: D[K];
|
|
1598
|
+
}> : P[K];
|
|
1599
|
+
};
|
|
1600
|
+
|
|
1578
1601
|
declare type __VLS_WithDefaults_8<P, D> = {
|
|
1579
1602
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
|
|
1580
1603
|
default: D[K];
|
|
@@ -1683,6 +1706,12 @@ declare type __VLS_WithTemplateSlots_23<T, S> = T & {
|
|
|
1683
1706
|
};
|
|
1684
1707
|
};
|
|
1685
1708
|
|
|
1709
|
+
declare type __VLS_WithTemplateSlots_24<T, S> = T & {
|
|
1710
|
+
new (): {
|
|
1711
|
+
$slots: S;
|
|
1712
|
+
};
|
|
1713
|
+
};
|
|
1714
|
+
|
|
1686
1715
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
1687
1716
|
new (): {
|
|
1688
1717
|
$slots: S;
|
|
@@ -1725,7 +1754,7 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
1725
1754
|
};
|
|
1726
1755
|
};
|
|
1727
1756
|
|
|
1728
|
-
export declare const AActionCloseButton: DefineComponent<
|
|
1757
|
+
export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_39<__VLS_TypePropsToRuntimeProps_42<{
|
|
1729
1758
|
routeName?: string | undefined;
|
|
1730
1759
|
routeParams?: any | undefined;
|
|
1731
1760
|
buttonT?: string | undefined;
|
|
@@ -1739,7 +1768,7 @@ export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_38<_
|
|
|
1739
1768
|
buttonClass: string;
|
|
1740
1769
|
dataCy: string;
|
|
1741
1770
|
size: number;
|
|
1742
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1771
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_39<__VLS_TypePropsToRuntimeProps_42<{
|
|
1743
1772
|
routeName?: string | undefined;
|
|
1744
1773
|
routeParams?: any | undefined;
|
|
1745
1774
|
buttonT?: string | undefined;
|
|
@@ -1762,7 +1791,7 @@ export declare const AActionCloseButton: DefineComponent<__VLS_WithDefaults_38<_
|
|
|
1762
1791
|
routeParams: any | undefined;
|
|
1763
1792
|
}, {}>;
|
|
1764
1793
|
|
|
1765
|
-
export declare const AActionCreateButton: DefineComponent<
|
|
1794
|
+
export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_40<__VLS_TypePropsToRuntimeProps_43<{
|
|
1766
1795
|
routeName: string;
|
|
1767
1796
|
buttonT?: string | undefined;
|
|
1768
1797
|
buttonClass?: string | undefined;
|
|
@@ -1775,7 +1804,7 @@ export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_39<
|
|
|
1775
1804
|
dataCy: string;
|
|
1776
1805
|
size: number;
|
|
1777
1806
|
variant: string;
|
|
1778
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1807
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_40<__VLS_TypePropsToRuntimeProps_43<{
|
|
1779
1808
|
routeName: string;
|
|
1780
1809
|
buttonT?: string | undefined;
|
|
1781
1810
|
buttonClass?: string | undefined;
|
|
@@ -1796,7 +1825,7 @@ export declare const AActionCreateButton: DefineComponent<__VLS_WithDefaults_39<
|
|
|
1796
1825
|
buttonT: string;
|
|
1797
1826
|
}, {}>;
|
|
1798
1827
|
|
|
1799
|
-
export declare const AActionDeleteButton: DefineComponent<
|
|
1828
|
+
export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_41<__VLS_TypePropsToRuntimeProps_44<{
|
|
1800
1829
|
variant?: ButtonVariant | undefined;
|
|
1801
1830
|
buttonT?: string | undefined;
|
|
1802
1831
|
buttonClass?: string | undefined;
|
|
@@ -1831,7 +1860,7 @@ export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_40<
|
|
|
1831
1860
|
closeDialog: () => void;
|
|
1832
1861
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1833
1862
|
deleteRecord: () => void;
|
|
1834
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1863
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_41<__VLS_TypePropsToRuntimeProps_44<{
|
|
1835
1864
|
variant?: ButtonVariant | undefined;
|
|
1836
1865
|
buttonT?: string | undefined;
|
|
1837
1866
|
buttonClass?: string | undefined;
|
|
@@ -1881,7 +1910,7 @@ export declare const AActionDeleteButton: DefineComponent<__VLS_WithDefaults_40<
|
|
|
1881
1910
|
disableCloseAfterConfirm: boolean;
|
|
1882
1911
|
}, {}>;
|
|
1883
1912
|
|
|
1884
|
-
export declare const AActionEditButton: DefineComponent<
|
|
1913
|
+
export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_42<__VLS_TypePropsToRuntimeProps_45<{
|
|
1885
1914
|
routeName: string;
|
|
1886
1915
|
recordId?: number | string | undefined;
|
|
1887
1916
|
routeParams?: any | undefined;
|
|
@@ -1902,7 +1931,7 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
|
|
|
1902
1931
|
variant: string;
|
|
1903
1932
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1904
1933
|
editRecord: () => void;
|
|
1905
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1934
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_42<__VLS_TypePropsToRuntimeProps_45<{
|
|
1906
1935
|
routeName: string;
|
|
1907
1936
|
recordId?: number | string | undefined;
|
|
1908
1937
|
routeParams?: any | undefined;
|
|
@@ -1934,7 +1963,7 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
|
|
|
1934
1963
|
recordId: string | number;
|
|
1935
1964
|
}, {}>;
|
|
1936
1965
|
|
|
1937
|
-
export declare const AActionSaveAndCloseButton: DefineComponent<
|
|
1966
|
+
export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
1938
1967
|
buttonT?: string | undefined;
|
|
1939
1968
|
buttonClass?: string | undefined;
|
|
1940
1969
|
dataCy?: string | undefined;
|
|
@@ -1948,7 +1977,7 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
|
|
|
1948
1977
|
disabled: undefined;
|
|
1949
1978
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1950
1979
|
saveRecordAndClose: () => void;
|
|
1951
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1980
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_43<__VLS_TypePropsToRuntimeProps_46<{
|
|
1952
1981
|
buttonT?: string | undefined;
|
|
1953
1982
|
buttonClass?: string | undefined;
|
|
1954
1983
|
dataCy?: string | undefined;
|
|
@@ -1970,7 +1999,7 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
|
|
|
1970
1999
|
buttonT: string;
|
|
1971
2000
|
}, {}>;
|
|
1972
2001
|
|
|
1973
|
-
export declare const AActionSaveButton: DefineComponent<
|
|
2002
|
+
export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
1974
2003
|
buttonT?: string | undefined;
|
|
1975
2004
|
buttonClass?: string | undefined;
|
|
1976
2005
|
dataCy?: string | undefined;
|
|
@@ -1988,7 +2017,7 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
|
|
|
1988
2017
|
variant: string;
|
|
1989
2018
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1990
2019
|
saveRecord: () => void;
|
|
1991
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2020
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_44<__VLS_TypePropsToRuntimeProps_47<{
|
|
1992
2021
|
buttonT?: string | undefined;
|
|
1993
2022
|
buttonClass?: string | undefined;
|
|
1994
2023
|
dataCy?: string | undefined;
|
|
@@ -2016,11 +2045,11 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
|
|
|
2016
2045
|
buttonT: string;
|
|
2017
2046
|
}, {}>;
|
|
2018
2047
|
|
|
2019
|
-
export declare const AAdminSwitcher: DefineComponent<
|
|
2048
|
+
export declare const AAdminSwitcher: DefineComponent<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2020
2049
|
configUrl?: string | undefined | null;
|
|
2021
2050
|
}>, {
|
|
2022
2051
|
configUrl: null;
|
|
2023
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2052
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_33<__VLS_TypePropsToRuntimeProps_36<{
|
|
2024
2053
|
configUrl?: string | undefined | null;
|
|
2025
2054
|
}>, {
|
|
2026
2055
|
configUrl: null;
|
|
@@ -2060,7 +2089,7 @@ export declare const AAlerts: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePro
|
|
|
2060
2089
|
customClass: string;
|
|
2061
2090
|
}, {}>;
|
|
2062
2091
|
|
|
2063
|
-
export declare const AAnzuUserAvatar: DefineComponent<
|
|
2092
|
+
export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2064
2093
|
user?: AnzuUserMinimal | undefined | null;
|
|
2065
2094
|
size?: number | undefined;
|
|
2066
2095
|
containerClass?: string | undefined;
|
|
@@ -2068,7 +2097,7 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_54<__VL
|
|
|
2068
2097
|
user: undefined;
|
|
2069
2098
|
size: number;
|
|
2070
2099
|
containerClass: string;
|
|
2071
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2100
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_55<__VLS_TypePropsToRuntimeProps_58<{
|
|
2072
2101
|
user?: AnzuUserMinimal | undefined | null;
|
|
2073
2102
|
size?: number | undefined;
|
|
2074
2103
|
containerClass?: string | undefined;
|
|
@@ -2082,7 +2111,7 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_54<__VL
|
|
|
2082
2111
|
containerClass: string;
|
|
2083
2112
|
}, {}>;
|
|
2084
2113
|
|
|
2085
|
-
export declare const AAssetSelect:
|
|
2114
|
+
export declare const AAssetSelect: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
|
|
2086
2115
|
modelValue?: boolean | undefined;
|
|
2087
2116
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2088
2117
|
minCount: number;
|
|
@@ -2101,7 +2130,7 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_23<DefineComponent<__
|
|
|
2101
2130
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2102
2131
|
"update:modelValue": (data: boolean) => void;
|
|
2103
2132
|
onConfirm: (data: AssetSelectReturnData) => void;
|
|
2104
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2133
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
|
|
2105
2134
|
modelValue?: boolean | undefined;
|
|
2106
2135
|
assetType: "image" | "audio" | "video" | "document" | DamAssetType;
|
|
2107
2136
|
minCount: number;
|
|
@@ -2133,7 +2162,7 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_23<DefineComponent<__
|
|
|
2133
2162
|
"button-confirm-title"?(_: {}): any;
|
|
2134
2163
|
}>;
|
|
2135
2164
|
|
|
2136
|
-
export declare const AAvatarColorPicker: DefineComponent<
|
|
2165
|
+
export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
2137
2166
|
modelValue: string;
|
|
2138
2167
|
label?: string | undefined;
|
|
2139
2168
|
loading?: boolean | undefined;
|
|
@@ -2150,7 +2179,7 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2150
2179
|
hideLabel: boolean;
|
|
2151
2180
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2152
2181
|
"update:modelValue": (data: string) => void;
|
|
2153
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2182
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_56<__VLS_TypePropsToRuntimeProps_59<{
|
|
2154
2183
|
modelValue: string;
|
|
2155
2184
|
label?: string | undefined;
|
|
2156
2185
|
loading?: boolean | undefined;
|
|
@@ -2195,7 +2224,7 @@ export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_T
|
|
|
2195
2224
|
invertColor: boolean;
|
|
2196
2225
|
}, {}>;
|
|
2197
2226
|
|
|
2198
|
-
export declare const ABtnSplit:
|
|
2227
|
+
export declare const ABtnSplit: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
2199
2228
|
buttonT?: string | undefined;
|
|
2200
2229
|
buttonClass?: string | undefined;
|
|
2201
2230
|
dataCy?: string | undefined;
|
|
@@ -2219,7 +2248,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_17<DefineComponent<__VLS
|
|
|
2219
2248
|
color: string;
|
|
2220
2249
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2221
2250
|
onClick: () => void;
|
|
2222
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2251
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_52<__VLS_TypePropsToRuntimeProps_55<{
|
|
2223
2252
|
buttonT?: string | undefined;
|
|
2224
2253
|
buttonClass?: string | undefined;
|
|
2225
2254
|
dataCy?: string | undefined;
|
|
@@ -2259,7 +2288,7 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_17<DefineComponent<__VLS
|
|
|
2259
2288
|
default?(_: {}): any;
|
|
2260
2289
|
}>;
|
|
2261
2290
|
|
|
2262
|
-
export declare const ACachedChip:
|
|
2291
|
+
export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
2263
2292
|
id?: string | number | null | undefined;
|
|
2264
2293
|
title?: string | undefined;
|
|
2265
2294
|
containerClass?: string | undefined;
|
|
@@ -2284,7 +2313,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_15<DefineComponent<__V
|
|
|
2284
2313
|
textOnly: boolean;
|
|
2285
2314
|
fallbackIdText: boolean;
|
|
2286
2315
|
wrapText: boolean;
|
|
2287
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2316
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_32<__VLS_TypePropsToRuntimeProps_35<{
|
|
2288
2317
|
id?: string | number | null | undefined;
|
|
2289
2318
|
title?: string | undefined;
|
|
2290
2319
|
containerClass?: string | undefined;
|
|
@@ -2379,12 +2408,12 @@ export declare const AChipNoLink: __VLS_WithTemplateSlots_3<DefineComponent<__VL
|
|
|
2379
2408
|
default?(_: {}): any;
|
|
2380
2409
|
}>;
|
|
2381
2410
|
|
|
2382
|
-
export declare const Acl:
|
|
2411
|
+
export declare const Acl: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
2383
2412
|
permission: `${string}_${string}_${string}`;
|
|
2384
2413
|
subject?: object | undefined;
|
|
2385
2414
|
}>, {
|
|
2386
2415
|
subject: undefined;
|
|
2387
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2416
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_35<__VLS_TypePropsToRuntimeProps_38<{
|
|
2388
2417
|
permission: `${string}_${string}_${string}`;
|
|
2389
2418
|
subject?: object | undefined;
|
|
2390
2419
|
}>, {
|
|
@@ -2403,14 +2432,14 @@ declare type AclResolverConfig = {
|
|
|
2403
2432
|
|
|
2404
2433
|
export declare type AclValue = `${string}_${string}_${string}`;
|
|
2405
2434
|
|
|
2406
|
-
export declare const ACopyText: DefineComponent<
|
|
2435
|
+
export declare const ACopyText: DefineComponent<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
2407
2436
|
value: number | string;
|
|
2408
2437
|
notifyT?: string | undefined;
|
|
2409
2438
|
dataCy?: string | undefined;
|
|
2410
2439
|
}>, {
|
|
2411
2440
|
notifyT: string;
|
|
2412
2441
|
dataCy: string;
|
|
2413
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2442
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_36<__VLS_TypePropsToRuntimeProps_39<{
|
|
2414
2443
|
value: number | string;
|
|
2415
2444
|
notifyT?: string | undefined;
|
|
2416
2445
|
dataCy?: string | undefined;
|
|
@@ -2422,7 +2451,7 @@ export declare const ACopyText: DefineComponent<__VLS_WithDefaults_35<__VLS_Type
|
|
|
2422
2451
|
notifyT: string;
|
|
2423
2452
|
}, {}>;
|
|
2424
2453
|
|
|
2425
|
-
export declare const ACreateDialog:
|
|
2454
|
+
export declare const ACreateDialog: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_32<{
|
|
2426
2455
|
modelValue: boolean;
|
|
2427
2456
|
buttonClass?: string | undefined;
|
|
2428
2457
|
maxWidth?: number | undefined;
|
|
@@ -2447,7 +2476,7 @@ export declare const ACreateDialog: __VLS_WithTemplateSlots_14<DefineComponent<_
|
|
|
2447
2476
|
onClose: () => void;
|
|
2448
2477
|
onError: (data: any) => void;
|
|
2449
2478
|
onSuccess: (data: any) => void;
|
|
2450
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2479
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_32<{
|
|
2451
2480
|
modelValue: boolean;
|
|
2452
2481
|
buttonClass?: string | undefined;
|
|
2453
2482
|
maxWidth?: number | undefined;
|
|
@@ -2674,14 +2703,14 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2674
2703
|
} | undefined;
|
|
2675
2704
|
};
|
|
2676
2705
|
|
|
2677
|
-
export declare const ACurrentUserDropdown: DefineComponent<
|
|
2706
|
+
export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
2678
2707
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2679
2708
|
settingsRouteName: string;
|
|
2680
2709
|
logoutRouteName: string;
|
|
2681
2710
|
dataCy?: string | undefined;
|
|
2682
2711
|
}>, {
|
|
2683
2712
|
dataCy: string;
|
|
2684
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2713
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_57<__VLS_TypePropsToRuntimeProps_60<{
|
|
2685
2714
|
currentUser: AnzuUserMinimal | undefined | null;
|
|
2686
2715
|
settingsRouteName: string;
|
|
2687
2716
|
logoutRouteName: string;
|
|
@@ -2692,7 +2721,7 @@ export declare const ACurrentUserDropdown: DefineComponent<__VLS_WithDefaults_56
|
|
|
2692
2721
|
dataCy: string;
|
|
2693
2722
|
}, {}>;
|
|
2694
2723
|
|
|
2695
|
-
export declare const ACustomDataForm:
|
|
2724
|
+
export declare const ACustomDataForm: __VLS_WithTemplateSlots_22<DefineComponent<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
|
|
2696
2725
|
modelValue: {
|
|
2697
2726
|
[key: string]: any;
|
|
2698
2727
|
};
|
|
@@ -2709,7 +2738,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_21<DefineComponent
|
|
|
2709
2738
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2710
2739
|
"update:modelValue": (data: any) => void;
|
|
2711
2740
|
anyChange: () => void;
|
|
2712
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2741
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_62<__VLS_TypePropsToRuntimeProps_65<{
|
|
2713
2742
|
modelValue: {
|
|
2714
2743
|
[key: string]: any;
|
|
2715
2744
|
};
|
|
@@ -2733,7 +2762,7 @@ export declare const ACustomDataForm: __VLS_WithTemplateSlots_21<DefineComponent
|
|
|
2733
2762
|
"after-pinned"?(_: {}): any;
|
|
2734
2763
|
}>;
|
|
2735
2764
|
|
|
2736
|
-
export declare const ACustomDataFormElement: DefineComponent<
|
|
2765
|
+
export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
|
|
2737
2766
|
modelValue: any;
|
|
2738
2767
|
config: CustomDataFormElement;
|
|
2739
2768
|
validationScope?: ValidationScope;
|
|
@@ -2745,7 +2774,7 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
|
|
|
2745
2774
|
value: any;
|
|
2746
2775
|
}) => void;
|
|
2747
2776
|
blur: (data: any) => void;
|
|
2748
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2777
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
|
|
2749
2778
|
modelValue: any;
|
|
2750
2779
|
config: CustomDataFormElement;
|
|
2751
2780
|
validationScope?: ValidationScope;
|
|
@@ -2761,7 +2790,7 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
|
|
|
2761
2790
|
validationScope: string | number | boolean | symbol;
|
|
2762
2791
|
}, {}>;
|
|
2763
2792
|
|
|
2764
|
-
export declare const ADatatableConfigButton: DefineComponent<
|
|
2793
|
+
export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
2765
2794
|
columnsAll: ColumnInternalValues[];
|
|
2766
2795
|
columnsHidden: Array<string>;
|
|
2767
2796
|
buttonT?: string | undefined;
|
|
@@ -2773,7 +2802,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
2773
2802
|
dataCy: string;
|
|
2774
2803
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2775
2804
|
"update:columnsHidden": (data: string[]) => void;
|
|
2776
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2805
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
|
|
2777
2806
|
columnsAll: ColumnInternalValues[];
|
|
2778
2807
|
columnsHidden: Array<string>;
|
|
2779
2808
|
buttonT?: string | undefined;
|
|
@@ -2791,7 +2820,7 @@ export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_
|
|
|
2791
2820
|
buttonT: string;
|
|
2792
2821
|
}, {}>;
|
|
2793
2822
|
|
|
2794
|
-
export declare const ADatatableOrdering: DefineComponent<
|
|
2823
|
+
export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
2795
2824
|
variant?: "default" | "most-relevant" | undefined;
|
|
2796
2825
|
modelValue?: number | undefined;
|
|
2797
2826
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -2802,7 +2831,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_28<_
|
|
|
2802
2831
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2803
2832
|
"update:modelValue": (data: number) => void;
|
|
2804
2833
|
sortByChange: (data: DatatableOrderingOption) => void;
|
|
2805
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2834
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToRuntimeProps_31<{
|
|
2806
2835
|
variant?: "default" | "most-relevant" | undefined;
|
|
2807
2836
|
modelValue?: number | undefined;
|
|
2808
2837
|
customOptions?: undefined | DatatableOrderingOptions;
|
|
@@ -2819,7 +2848,7 @@ export declare const ADatatableOrdering: DefineComponent<__VLS_WithDefaults_28<_
|
|
|
2819
2848
|
customOptions: DatatableOrderingOptions;
|
|
2820
2849
|
}, {}>;
|
|
2821
2850
|
|
|
2822
|
-
export declare const ADatatablePagination: DefineComponent<
|
|
2851
|
+
export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
2823
2852
|
modelValue: Pagination;
|
|
2824
2853
|
itemsPerPageOptions?: number[] | undefined;
|
|
2825
2854
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -2829,7 +2858,7 @@ export declare const ADatatablePagination: DefineComponent<__VLS_WithDefaults_26
|
|
|
2829
2858
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2830
2859
|
change: () => void;
|
|
2831
2860
|
"update:modelValue": (data: Pagination) => void;
|
|
2832
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2861
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToRuntimeProps_29<{
|
|
2833
2862
|
modelValue: Pagination;
|
|
2834
2863
|
itemsPerPageOptions?: number[] | undefined;
|
|
2835
2864
|
hideRecordsPerPage?: boolean | undefined;
|
|
@@ -2858,9 +2887,109 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
|
|
|
2858
2887
|
edgeDateValue: string;
|
|
2859
2888
|
}, {}>;
|
|
2860
2889
|
|
|
2890
|
+
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
2891
|
+
modelValue: DatetimeUTCNullable | undefined;
|
|
2892
|
+
type?: "datetime" | "date" | undefined;
|
|
2893
|
+
label?: string | undefined;
|
|
2894
|
+
hideLabel?: boolean | undefined;
|
|
2895
|
+
clearable?: boolean | undefined;
|
|
2896
|
+
disabled?: boolean | undefined;
|
|
2897
|
+
hideDetails?: boolean | undefined;
|
|
2898
|
+
minNow?: boolean | undefined;
|
|
2899
|
+
required?: boolean | undefined;
|
|
2900
|
+
hideSetToNow?: boolean | undefined;
|
|
2901
|
+
placeholder?: string | undefined;
|
|
2902
|
+
enable?: DateLimit<DateOption>[] | undefined;
|
|
2903
|
+
weekNumbers?: false | undefined;
|
|
2904
|
+
dataCy?: string | undefined;
|
|
2905
|
+
defaultValue?: DatetimeUTCNullable | undefined;
|
|
2906
|
+
errorMessages?: string[] | undefined;
|
|
2907
|
+
}>, {
|
|
2908
|
+
type: string;
|
|
2909
|
+
label: string;
|
|
2910
|
+
hideLabel: boolean;
|
|
2911
|
+
clearable: boolean;
|
|
2912
|
+
disabled: boolean;
|
|
2913
|
+
hideDetails: boolean;
|
|
2914
|
+
minNow: boolean;
|
|
2915
|
+
required: boolean;
|
|
2916
|
+
hideSetToNow: boolean;
|
|
2917
|
+
placeholder: string;
|
|
2918
|
+
enable: undefined;
|
|
2919
|
+
weekNumbers: boolean;
|
|
2920
|
+
dataCy: string;
|
|
2921
|
+
defaultValue: null;
|
|
2922
|
+
errorMessages: undefined;
|
|
2923
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2924
|
+
change: () => void;
|
|
2925
|
+
blur: () => void;
|
|
2926
|
+
focus: () => void;
|
|
2927
|
+
"update:modelValue": (data: string | null) => void;
|
|
2928
|
+
onOpen: () => void;
|
|
2929
|
+
onClose: () => void;
|
|
2930
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
2931
|
+
modelValue: DatetimeUTCNullable | undefined;
|
|
2932
|
+
type?: "datetime" | "date" | undefined;
|
|
2933
|
+
label?: string | undefined;
|
|
2934
|
+
hideLabel?: boolean | undefined;
|
|
2935
|
+
clearable?: boolean | undefined;
|
|
2936
|
+
disabled?: boolean | undefined;
|
|
2937
|
+
hideDetails?: boolean | undefined;
|
|
2938
|
+
minNow?: boolean | undefined;
|
|
2939
|
+
required?: boolean | undefined;
|
|
2940
|
+
hideSetToNow?: boolean | undefined;
|
|
2941
|
+
placeholder?: string | undefined;
|
|
2942
|
+
enable?: DateLimit<DateOption>[] | undefined;
|
|
2943
|
+
weekNumbers?: false | undefined;
|
|
2944
|
+
dataCy?: string | undefined;
|
|
2945
|
+
defaultValue?: DatetimeUTCNullable | undefined;
|
|
2946
|
+
errorMessages?: string[] | undefined;
|
|
2947
|
+
}>, {
|
|
2948
|
+
type: string;
|
|
2949
|
+
label: string;
|
|
2950
|
+
hideLabel: boolean;
|
|
2951
|
+
clearable: boolean;
|
|
2952
|
+
disabled: boolean;
|
|
2953
|
+
hideDetails: boolean;
|
|
2954
|
+
minNow: boolean;
|
|
2955
|
+
required: boolean;
|
|
2956
|
+
hideSetToNow: boolean;
|
|
2957
|
+
placeholder: string;
|
|
2958
|
+
enable: undefined;
|
|
2959
|
+
weekNumbers: boolean;
|
|
2960
|
+
dataCy: string;
|
|
2961
|
+
defaultValue: null;
|
|
2962
|
+
errorMessages: undefined;
|
|
2963
|
+
}>>> & {
|
|
2964
|
+
"onUpdate:modelValue"?: ((data: string | null) => any) | undefined;
|
|
2965
|
+
onFocus?: (() => any) | undefined;
|
|
2966
|
+
onBlur?: (() => any) | undefined;
|
|
2967
|
+
onChange?: (() => any) | undefined;
|
|
2968
|
+
onOnOpen?: (() => any) | undefined;
|
|
2969
|
+
onOnClose?: (() => any) | undefined;
|
|
2970
|
+
}, {
|
|
2971
|
+
enable: DateLimit<DateOption>[];
|
|
2972
|
+
disabled: boolean;
|
|
2973
|
+
type: "datetime" | "date";
|
|
2974
|
+
dataCy: string;
|
|
2975
|
+
required: boolean;
|
|
2976
|
+
label: string;
|
|
2977
|
+
hideLabel: boolean;
|
|
2978
|
+
clearable: boolean;
|
|
2979
|
+
hideDetails: boolean;
|
|
2980
|
+
minNow: boolean;
|
|
2981
|
+
hideSetToNow: boolean;
|
|
2982
|
+
placeholder: string;
|
|
2983
|
+
weekNumbers: false;
|
|
2984
|
+
defaultValue: DatetimeUTCNullable;
|
|
2985
|
+
errorMessages: string[];
|
|
2986
|
+
}, {}>, {
|
|
2987
|
+
"append-inner"?(_: {}): any;
|
|
2988
|
+
}>;
|
|
2989
|
+
|
|
2861
2990
|
declare type AddToCachedArgs<T extends DocId | IntegerId> = Array<T | null | undefined> | Array<Array<T | null | undefined> | T | null | undefined>;
|
|
2862
2991
|
|
|
2863
|
-
export declare const ADialogToolbar:
|
|
2992
|
+
export declare const ADialogToolbar: __VLS_WithTemplateSlots_14<DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2864
2993
|
onCancel: () => void;
|
|
2865
2994
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>> & {
|
|
2866
2995
|
onOnCancel?: (() => any) | undefined;
|
|
@@ -2870,7 +2999,7 @@ export declare const ADialogToolbar: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
|
2870
2999
|
|
|
2871
3000
|
export declare const AEmptyRouterView: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
2872
3001
|
|
|
2873
|
-
export declare const AFilterAdvancedButton: DefineComponent<
|
|
3002
|
+
export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
2874
3003
|
tooltipT?: string | undefined;
|
|
2875
3004
|
buttonClass?: string | undefined;
|
|
2876
3005
|
dataCy?: string | undefined;
|
|
@@ -2880,7 +3009,7 @@ export declare const AFilterAdvancedButton: DefineComponent<__VLS_WithDefaults_4
|
|
|
2880
3009
|
dataCy: string;
|
|
2881
3010
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2882
3011
|
advancedFilter: () => void;
|
|
2883
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3012
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_45<__VLS_TypePropsToRuntimeProps_48<{
|
|
2884
3013
|
tooltipT?: string | undefined;
|
|
2885
3014
|
buttonClass?: string | undefined;
|
|
2886
3015
|
dataCy?: string | undefined;
|
|
@@ -2973,7 +3102,7 @@ export declare const AFilterInteger: DefineComponent<__VLS_WithDefaults_19<__VLS
|
|
|
2973
3102
|
dataCy: string;
|
|
2974
3103
|
}, {}>;
|
|
2975
3104
|
|
|
2976
|
-
export declare const AFilterMixed: DefineComponent<
|
|
3105
|
+
export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
2977
3106
|
filterId?: Filter | undefined;
|
|
2978
3107
|
filterDocId?: Filter | undefined;
|
|
2979
3108
|
filterText?: Filter | undefined;
|
|
@@ -2989,7 +3118,7 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
|
|
|
2989
3118
|
filterOverrides: undefined;
|
|
2990
3119
|
placeholder: undefined;
|
|
2991
3120
|
dataCy: string;
|
|
2992
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3121
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_48<__VLS_TypePropsToRuntimeProps_51<{
|
|
2993
3122
|
filterId?: Filter | undefined;
|
|
2994
3123
|
filterDocId?: Filter | undefined;
|
|
2995
3124
|
filterText?: Filter | undefined;
|
|
@@ -3054,7 +3183,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<__VLS_WithDefaul
|
|
|
3054
3183
|
disableInitFetch: boolean;
|
|
3055
3184
|
}, {}>;
|
|
3056
3185
|
|
|
3057
|
-
export declare const AFilterResetButton: DefineComponent<
|
|
3186
|
+
export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3058
3187
|
tooltipT?: string | undefined;
|
|
3059
3188
|
buttonClass?: string | undefined;
|
|
3060
3189
|
dataCy?: string | undefined;
|
|
@@ -3064,7 +3193,7 @@ export declare const AFilterResetButton: DefineComponent<__VLS_WithDefaults_45<_
|
|
|
3064
3193
|
dataCy: string;
|
|
3065
3194
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3066
3195
|
reset: () => void;
|
|
3067
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3196
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
|
|
3068
3197
|
tooltipT?: string | undefined;
|
|
3069
3198
|
buttonClass?: string | undefined;
|
|
3070
3199
|
dataCy?: string | undefined;
|
|
@@ -3103,7 +3232,7 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
|
|
|
3103
3232
|
placeholder: string;
|
|
3104
3233
|
}, {}>;
|
|
3105
3234
|
|
|
3106
|
-
export declare const AFilterSubmitButton: DefineComponent<
|
|
3235
|
+
export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
3107
3236
|
buttonT?: string | undefined;
|
|
3108
3237
|
buttonClass?: string | undefined;
|
|
3109
3238
|
dataCy?: string | undefined;
|
|
@@ -3115,7 +3244,7 @@ export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<
|
|
|
3115
3244
|
touched: boolean;
|
|
3116
3245
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3117
3246
|
submit: () => void;
|
|
3118
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3247
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_47<__VLS_TypePropsToRuntimeProps_50<{
|
|
3119
3248
|
buttonT?: string | undefined;
|
|
3120
3249
|
buttonClass?: string | undefined;
|
|
3121
3250
|
dataCy?: string | undefined;
|
|
@@ -3454,7 +3583,7 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3454
3583
|
}): any;
|
|
3455
3584
|
}>;
|
|
3456
3585
|
|
|
3457
|
-
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<
|
|
3586
|
+
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_61<{
|
|
3458
3587
|
modelValue: any;
|
|
3459
3588
|
label?: string | undefined;
|
|
3460
3589
|
required?: boolean | undefined;
|
|
@@ -3490,7 +3619,7 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3490
3619
|
focus: (data: string | number | string[] | number[] | null | undefined) => void;
|
|
3491
3620
|
searchChange: (data: string) => void;
|
|
3492
3621
|
searchChangeDebounced: (data: string) => void;
|
|
3493
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3622
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_58<__VLS_TypePropsToRuntimeProps_61<{
|
|
3494
3623
|
modelValue: any;
|
|
3495
3624
|
label?: string | undefined;
|
|
3496
3625
|
required?: boolean | undefined;
|
|
@@ -3975,7 +4104,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
|
|
|
3975
4104
|
}): any;
|
|
3976
4105
|
}>;
|
|
3977
4106
|
|
|
3978
|
-
export declare const AIconGroup: DefineComponent<
|
|
4107
|
+
export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_37<__VLS_TypePropsToRuntimeProps_40<{
|
|
3979
4108
|
mainIcon: string;
|
|
3980
4109
|
secondaryIcon?: string | null | undefined;
|
|
3981
4110
|
secondaryText?: string | null | undefined;
|
|
@@ -3984,7 +4113,7 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
3984
4113
|
secondaryIcon: null;
|
|
3985
4114
|
secondaryText: null;
|
|
3986
4115
|
size: string;
|
|
3987
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4116
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_37<__VLS_TypePropsToRuntimeProps_40<{
|
|
3988
4117
|
mainIcon: string;
|
|
3989
4118
|
secondaryIcon?: string | null | undefined;
|
|
3990
4119
|
secondaryText?: string | null | undefined;
|
|
@@ -3999,7 +4128,7 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
3999
4128
|
secondaryText: null | string;
|
|
4000
4129
|
}, {}>;
|
|
4001
4130
|
|
|
4002
|
-
export declare const AImageWidget: DefineComponent<
|
|
4131
|
+
export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
|
|
4003
4132
|
modelValue: IntegerIdNullable;
|
|
4004
4133
|
queueKey: UploadQueueKey;
|
|
4005
4134
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4032,7 +4161,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4032
4161
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4033
4162
|
"update:modelValue": (data: IntegerIdNullable) => void;
|
|
4034
4163
|
afterMetadataSaveSuccess: () => void;
|
|
4035
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4164
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_64<__VLS_TypePropsToRuntimeProps_67<{
|
|
4036
4165
|
modelValue: IntegerIdNullable;
|
|
4037
4166
|
queueKey: UploadQueueKey;
|
|
4038
4167
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4076,7 +4205,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4076
4205
|
callDeleteApiOnRemove: boolean;
|
|
4077
4206
|
}, {}>;
|
|
4078
4207
|
|
|
4079
|
-
export declare const AImageWidgetMultiple: DefineComponent<
|
|
4208
|
+
export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
|
|
4080
4209
|
modelValue: IntegerId[];
|
|
4081
4210
|
queueKey: UploadQueueKey;
|
|
4082
4211
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4102,7 +4231,7 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4102
4231
|
saveImages: () => Promise<boolean>;
|
|
4103
4232
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4104
4233
|
"update:modelValue": (data: number[]) => void;
|
|
4105
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4234
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
|
|
4106
4235
|
modelValue: IntegerId[];
|
|
4107
4236
|
queueKey: UploadQueueKey;
|
|
4108
4237
|
uploadConfig: ImageWidgetUploadConfig;
|
|
@@ -4135,7 +4264,7 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
|
|
|
4135
4264
|
callDeleteApiOnRemove: boolean;
|
|
4136
4265
|
}, {}>;
|
|
4137
4266
|
|
|
4138
|
-
export declare const AImageWidgetMultipleSimple: DefineComponent<
|
|
4267
|
+
export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
|
|
4139
4268
|
modelValue: IntegerId[];
|
|
4140
4269
|
images?: ImageAware[] | undefined;
|
|
4141
4270
|
configName?: string | undefined;
|
|
@@ -4155,7 +4284,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4155
4284
|
aspectRatio: number;
|
|
4156
4285
|
showDescription: boolean;
|
|
4157
4286
|
showSource: boolean;
|
|
4158
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4287
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
|
|
4159
4288
|
modelValue: IntegerId[];
|
|
4160
4289
|
images?: ImageAware[] | undefined;
|
|
4161
4290
|
configName?: string | undefined;
|
|
@@ -4186,7 +4315,7 @@ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefau
|
|
|
4186
4315
|
images: ImageAware[];
|
|
4187
4316
|
}, {}>;
|
|
4188
4317
|
|
|
4189
|
-
export declare const AImageWidgetSimple:
|
|
4318
|
+
export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
|
|
4190
4319
|
modelValue: IntegerIdNullable | undefined;
|
|
4191
4320
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4192
4321
|
configName?: string | undefined;
|
|
@@ -4205,7 +4334,7 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_22<DefineCompon
|
|
|
4205
4334
|
aspectRatio: number;
|
|
4206
4335
|
showDescription: boolean;
|
|
4207
4336
|
showSource: boolean;
|
|
4208
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4337
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
|
|
4209
4338
|
modelValue: IntegerIdNullable | undefined;
|
|
4210
4339
|
image?: ImageAware | ImageCreateUpdateAware | null | undefined;
|
|
4211
4340
|
configName?: string | undefined;
|
|
@@ -4263,12 +4392,12 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_22<DefineCompon
|
|
|
4263
4392
|
}): any;
|
|
4264
4393
|
}>;
|
|
4265
4394
|
|
|
4266
|
-
export declare const AJobDetailCommon:
|
|
4395
|
+
export declare const AJobDetailCommon: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_62<{
|
|
4267
4396
|
job: JobBase<`job${string}`>;
|
|
4268
4397
|
loading?: boolean | undefined;
|
|
4269
4398
|
}>, {
|
|
4270
4399
|
loading: boolean;
|
|
4271
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4400
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_59<__VLS_TypePropsToRuntimeProps_62<{
|
|
4272
4401
|
job: JobBase<`job${string}`>;
|
|
4273
4402
|
loading?: boolean | undefined;
|
|
4274
4403
|
}>, {
|
|
@@ -4279,9 +4408,9 @@ export declare const AJobDetailCommon: __VLS_WithTemplateSlots_18<DefineComponen
|
|
|
4279
4408
|
"resource-name"?(_: {}): any;
|
|
4280
4409
|
}>;
|
|
4281
4410
|
|
|
4282
|
-
export declare const AJobStatusChip: DefineComponent<
|
|
4411
|
+
export declare const AJobStatusChip: DefineComponent<__VLS_TypePropsToRuntimeProps_34<{
|
|
4283
4412
|
value: JobStatus;
|
|
4284
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4413
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_34<{
|
|
4285
4414
|
value: JobStatus;
|
|
4286
4415
|
}>>>, {}, {}>;
|
|
4287
4416
|
|
|
@@ -4291,13 +4420,13 @@ export declare const ALanguageSelect: DefineComponent<{}, {}, {}, {}, {}, Compon
|
|
|
4291
4420
|
onAfterChange?: ((code: LanguageCode) => any) | undefined;
|
|
4292
4421
|
}, {}, {}>;
|
|
4293
4422
|
|
|
4294
|
-
export declare const ALogData: DefineComponent<
|
|
4423
|
+
export declare const ALogData: DefineComponent<__VLS_WithDefaults_31<__VLS_TypePropsToRuntimeProps_33<{
|
|
4295
4424
|
data: any;
|
|
4296
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4425
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_31<__VLS_TypePropsToRuntimeProps_33<{
|
|
4297
4426
|
data: any;
|
|
4298
4427
|
}>, {}>>>, {}, {}>;
|
|
4299
4428
|
|
|
4300
|
-
export declare const ALoginView: DefineComponent<
|
|
4429
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
|
|
4301
4430
|
title?: string | undefined;
|
|
4302
4431
|
logoUrl?: string | undefined;
|
|
4303
4432
|
loginUrl?: undefined | (() => string);
|
|
@@ -4307,7 +4436,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_69<__VLS_Typ
|
|
|
4307
4436
|
logoUrl: undefined;
|
|
4308
4437
|
loginUrl: undefined;
|
|
4309
4438
|
dataCy: string;
|
|
4310
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4439
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
|
|
4311
4440
|
title?: string | undefined;
|
|
4312
4441
|
logoUrl?: string | undefined;
|
|
4313
4442
|
loginUrl?: undefined | (() => string);
|
|
@@ -4324,17 +4453,17 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_69<__VLS_Typ
|
|
|
4324
4453
|
loginUrl: () => string;
|
|
4325
4454
|
}, {}>;
|
|
4326
4455
|
|
|
4327
|
-
export declare const ALogLevelChip: DefineComponent<
|
|
4456
|
+
export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
4328
4457
|
level: LogLevel;
|
|
4329
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4458
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_54<__VLS_TypePropsToRuntimeProps_57<{
|
|
4330
4459
|
level: LogLevel;
|
|
4331
4460
|
}>, {}>>>, {}, {}>;
|
|
4332
4461
|
|
|
4333
|
-
export declare const ALogoutView: DefineComponent<
|
|
4462
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
|
|
4334
4463
|
logoutUrl?: undefined | (() => string);
|
|
4335
4464
|
}>, {
|
|
4336
4465
|
logoutUrl: undefined;
|
|
4337
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4466
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
|
|
4338
4467
|
logoutUrl?: undefined | (() => string);
|
|
4339
4468
|
}>, {
|
|
4340
4469
|
logoutUrl: undefined;
|
|
@@ -4342,9 +4471,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_70<__VLS_Ty
|
|
|
4342
4471
|
logoutUrl: () => string;
|
|
4343
4472
|
}, {}>;
|
|
4344
4473
|
|
|
4345
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4474
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
|
|
4346
4475
|
returnRouteName: string;
|
|
4347
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4476
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
|
|
4348
4477
|
returnRouteName: string;
|
|
4349
4478
|
}>, {}>>>, {}, {}>;
|
|
4350
4479
|
|
|
@@ -4381,10 +4510,10 @@ export declare const AnzuSystemsCommonAdmin: {
|
|
|
4381
4510
|
install<T extends `${string}_${string}_${string}` = `${string}_${string}_${string}`>(app: App, options: PluginOptions<T>): void;
|
|
4382
4511
|
};
|
|
4383
4512
|
|
|
4384
|
-
export declare const AnzutapLockedByUser: DefineComponent<
|
|
4513
|
+
export declare const AnzutapLockedByUser: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
|
|
4385
4514
|
id: null | undefined | IntegerId;
|
|
4386
4515
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
4387
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4516
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
|
|
4388
4517
|
id: null | undefined | IntegerId;
|
|
4389
4518
|
users: CollabCachedUsersMap | Ref<CollabCachedUsersMap>;
|
|
4390
4519
|
}>, {}>>>, {}, {}>;
|
|
@@ -4531,7 +4660,7 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
|
|
|
4531
4660
|
|
|
4532
4661
|
export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
|
|
4533
4662
|
|
|
4534
|
-
export declare const ASortable:
|
|
4663
|
+
export declare const ASortable: __VLS_WithTemplateSlots_20<DefineComponent<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_63<{
|
|
4535
4664
|
modelValue: any;
|
|
4536
4665
|
dirty?: Set<string | number> | undefined;
|
|
4537
4666
|
keyField?: string | undefined;
|
|
@@ -4576,7 +4705,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
4576
4705
|
onAddLast: (data: any) => void;
|
|
4577
4706
|
onEdit: (data: SortableItem<any>) => void;
|
|
4578
4707
|
onDelete: (data: SortableItem<any>) => void;
|
|
4579
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4708
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_60<__VLS_TypePropsToRuntimeProps_63<{
|
|
4580
4709
|
modelValue: any;
|
|
4581
4710
|
dirty?: Set<string | number> | undefined;
|
|
4582
4711
|
keyField?: string | undefined;
|
|
@@ -4641,7 +4770,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
|
|
|
4641
4770
|
}): any;
|
|
4642
4771
|
}>;
|
|
4643
4772
|
|
|
4644
|
-
export declare const ASortableNested:
|
|
4773
|
+
export declare const ASortableNested: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_64<{
|
|
4645
4774
|
modelValue: SortableNested<any>;
|
|
4646
4775
|
maxDepth: number;
|
|
4647
4776
|
disableDraggable?: boolean | undefined;
|
|
@@ -4677,7 +4806,7 @@ export declare const ASortableNested: __VLS_WithTemplateSlots_20<DefineComponent
|
|
|
4677
4806
|
onAddLast: (data: SortableNestedItem<any> | null) => void;
|
|
4678
4807
|
onEdit: (data: SortableNestedItem<any>) => void;
|
|
4679
4808
|
onDelete: (data: SortableNestedItem<any>) => void;
|
|
4680
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
4809
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_61<__VLS_TypePropsToRuntimeProps_64<{
|
|
4681
4810
|
modelValue: SortableNested<any>;
|
|
4682
4811
|
maxDepth: number;
|
|
4683
4812
|
disableDraggable?: boolean | undefined;
|
|
@@ -5064,14 +5193,14 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5064
5193
|
} | undefined;
|
|
5065
5194
|
};
|
|
5066
5195
|
|
|
5067
|
-
export declare const ASystemBar: DefineComponent<
|
|
5196
|
+
export declare const ASystemBar: DefineComponent<__VLS_WithDefaults_53<__VLS_TypePropsToRuntimeProps_56<{
|
|
5068
5197
|
currentVersion: string;
|
|
5069
5198
|
checkInterval?: number | undefined;
|
|
5070
5199
|
jsonRelativePath?: string | undefined;
|
|
5071
5200
|
}>, {
|
|
5072
5201
|
checkInterval: number;
|
|
5073
5202
|
jsonRelativePath: string;
|
|
5074
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5203
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_53<__VLS_TypePropsToRuntimeProps_56<{
|
|
5075
5204
|
currentVersion: string;
|
|
5076
5205
|
checkInterval?: number | undefined;
|
|
5077
5206
|
jsonRelativePath?: string | undefined;
|
|
@@ -5093,7 +5222,7 @@ export declare const ASystemEntityScope: __VLS_WithTemplateSlots_4<DefineCompone
|
|
|
5093
5222
|
default?(_: {}): any;
|
|
5094
5223
|
}>;
|
|
5095
5224
|
|
|
5096
|
-
export declare const ATableCopyIdButton: DefineComponent<
|
|
5225
|
+
export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5097
5226
|
id: number | string;
|
|
5098
5227
|
buttonT?: string | undefined;
|
|
5099
5228
|
buttonClass?: string | undefined;
|
|
@@ -5108,7 +5237,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5108
5237
|
notifyT: string;
|
|
5109
5238
|
dataCy: string;
|
|
5110
5239
|
size: string;
|
|
5111
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5240
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_49<__VLS_TypePropsToRuntimeProps_52<{
|
|
5112
5241
|
id: number | string;
|
|
5113
5242
|
buttonT?: string | undefined;
|
|
5114
5243
|
buttonClass?: string | undefined;
|
|
@@ -5132,7 +5261,7 @@ export declare const ATableCopyIdButton: DefineComponent<__VLS_WithDefaults_48<_
|
|
|
5132
5261
|
iconT: string;
|
|
5133
5262
|
}, {}>;
|
|
5134
5263
|
|
|
5135
|
-
export declare const ATableDetailButton: DefineComponent<
|
|
5264
|
+
export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
5136
5265
|
routeName: string;
|
|
5137
5266
|
recordId?: number | string | undefined;
|
|
5138
5267
|
routeParams?: any | undefined;
|
|
@@ -5145,7 +5274,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5145
5274
|
buttonT: string;
|
|
5146
5275
|
buttonClass: string;
|
|
5147
5276
|
dataCy: string;
|
|
5148
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5277
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_50<__VLS_TypePropsToRuntimeProps_53<{
|
|
5149
5278
|
routeName: string;
|
|
5150
5279
|
recordId?: number | string | undefined;
|
|
5151
5280
|
routeParams?: any | undefined;
|
|
@@ -5166,7 +5295,7 @@ export declare const ATableDetailButton: DefineComponent<__VLS_WithDefaults_49<_
|
|
|
5166
5295
|
recordId: string | number;
|
|
5167
5296
|
}, {}>;
|
|
5168
5297
|
|
|
5169
|
-
export declare const ATableEditButton: DefineComponent<
|
|
5298
|
+
export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5170
5299
|
routeName: string;
|
|
5171
5300
|
recordId?: number | string | undefined;
|
|
5172
5301
|
routeParams?: any | undefined;
|
|
@@ -5179,7 +5308,7 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5179
5308
|
buttonT: string;
|
|
5180
5309
|
buttonClass: string;
|
|
5181
5310
|
dataCy: string;
|
|
5182
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5311
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_51<__VLS_TypePropsToRuntimeProps_54<{
|
|
5183
5312
|
routeName: string;
|
|
5184
5313
|
recordId?: number | string | undefined;
|
|
5185
5314
|
routeParams?: any | undefined;
|
|
@@ -5202,14 +5331,14 @@ export declare const ATableEditButton: DefineComponent<__VLS_WithDefaults_50<__V
|
|
|
5202
5331
|
|
|
5203
5332
|
export declare const AThemeSelect: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
|
|
5204
5333
|
|
|
5205
|
-
export declare const ATimeTrackingFields: DefineComponent<
|
|
5334
|
+
export declare const ATimeTrackingFields: DefineComponent<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
5206
5335
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5207
5336
|
hideCreatedAt?: boolean | undefined;
|
|
5208
5337
|
hideModifiedAt?: boolean | undefined;
|
|
5209
5338
|
}>, {
|
|
5210
5339
|
hideCreatedAt: boolean;
|
|
5211
5340
|
hideModifiedAt: boolean;
|
|
5212
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5341
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_34<__VLS_TypePropsToRuntimeProps_37<{
|
|
5213
5342
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5214
5343
|
hideCreatedAt?: boolean | undefined;
|
|
5215
5344
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5232,13 +5361,13 @@ declare interface AudioAttributes {
|
|
|
5232
5361
|
bitrate: number;
|
|
5233
5362
|
}
|
|
5234
5363
|
|
|
5235
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5364
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
|
|
5236
5365
|
returnRouteName: string;
|
|
5237
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5366
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
|
|
5238
5367
|
returnRouteName: string;
|
|
5239
5368
|
}>, {}>>>, {}, {}>;
|
|
5240
5369
|
|
|
5241
|
-
export declare const AUserAndTimeTrackingFields: DefineComponent<
|
|
5370
|
+
export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefaults_38<__VLS_TypePropsToRuntimeProps_41<{
|
|
5242
5371
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5243
5372
|
hideCreatedAt?: boolean | undefined;
|
|
5244
5373
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5249,7 +5378,7 @@ export declare const AUserAndTimeTrackingFields: DefineComponent<__VLS_WithDefau
|
|
|
5249
5378
|
hideModifiedAt: boolean;
|
|
5250
5379
|
hideCreatedBy: boolean;
|
|
5251
5380
|
hideModifiedBy: boolean;
|
|
5252
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
5381
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_38<__VLS_TypePropsToRuntimeProps_41<{
|
|
5253
5382
|
data: AnzuUserAndTimeTrackingAware | any;
|
|
5254
5383
|
hideCreatedAt?: boolean | undefined;
|
|
5255
5384
|
hideModifiedAt?: boolean | undefined;
|
|
@@ -5295,6 +5424,10 @@ export declare type CachedItem<T extends object> = T & {
|
|
|
5295
5424
|
*/
|
|
5296
5425
|
export declare const cloneDeep: <T>(object: T) => T;
|
|
5297
5426
|
|
|
5427
|
+
export declare const COLLAB_FIELD_PREFIX_COMMENT = "comment:";
|
|
5428
|
+
|
|
5429
|
+
export declare const COLLAB_FIELD_PREFIX_EMBED = "embed:";
|
|
5430
|
+
|
|
5298
5431
|
declare interface CollabAccessRoomCallback {
|
|
5299
5432
|
status: CollabAccessRoomStatusType;
|
|
5300
5433
|
}
|
|
@@ -5317,7 +5450,7 @@ export declare interface CollabApprovedRequestToTakeModerationEvent {
|
|
|
5317
5450
|
room: CollabRoom;
|
|
5318
5451
|
}
|
|
5319
5452
|
|
|
5320
|
-
declare type CollabCachedUsersMap = Map<IntegerId, CachedItem<AnzuUserMinimal>>;
|
|
5453
|
+
export declare type CollabCachedUsersMap = Map<IntegerId, CachedItem<AnzuUserMinimal>>;
|
|
5321
5454
|
|
|
5322
5455
|
export declare type CollabChangeRoomLockCallbackTypes = CollabSuccessChangeRoomLockCallback | CollabFailedChangeRoomLockCallback;
|
|
5323
5456
|
|
|
@@ -5574,7 +5707,7 @@ declare type ColumnInternalValues = {
|
|
|
5574
5707
|
|
|
5575
5708
|
export declare const COMMON_CONFIG: Immutable<typeof commonConfig>;
|
|
5576
5709
|
|
|
5577
|
-
declare type CommonAdminCollabOptions =
|
|
5710
|
+
declare type CommonAdminCollabOptions = {
|
|
5578
5711
|
enabled: boolean;
|
|
5579
5712
|
socketUrl: string;
|
|
5580
5713
|
};
|
|
@@ -9286,6 +9419,7 @@ export declare function useCollabApprovedJoinRequestEventBus(): UseEventBusRetur
|
|
|
9286
9419
|
export declare function useCollabApprovedRequestToTakeModerationEventBus(): UseEventBusReturn<CollabApprovedRequestToTakeModerationEvent, any>;
|
|
9287
9420
|
|
|
9288
9421
|
export declare function useCollabCurrentUserId(): {
|
|
9422
|
+
setCollabUserCurrentId: (value: IntegerIdNullable) => void;
|
|
9289
9423
|
currentUserId: Ref<IntegerIdNullable>;
|
|
9290
9424
|
};
|
|
9291
9425
|
|
|
@@ -9338,7 +9472,7 @@ export declare function useCollabRejectedRequestToTakeModerationEventBus(): UseE
|
|
|
9338
9472
|
|
|
9339
9473
|
export declare function useCollabRequestToTakeModerationEventBus(): UseEventBusReturn<CollabRequestToTakeModerationEvent, any>;
|
|
9340
9474
|
|
|
9341
|
-
export declare function useCollabRoom(room: CollabRoom, addToCachedUsers?: ((...args: AddToCachedArgs<IntegerId
|
|
9475
|
+
export declare function useCollabRoom(room: CollabRoom, watchForNewUsers?: boolean, addToCachedUsers?: ((...args: AddToCachedArgs<IntegerId>) => void) | undefined, fetchCachedUsers?: (() => Promisify_2<Promise<AnzuUser>>) | undefined): {
|
|
9342
9476
|
subscribeCollabRoomInfo: () => void;
|
|
9343
9477
|
unsubscribeCollabRoomInfo: () => void;
|
|
9344
9478
|
joinCollabRoom: (options?: Partial<CollabRoomOptions>) => Promise<CollabAccessRoomStatusType>;
|
|
@@ -9390,8 +9524,10 @@ export declare function useCollabState(): {
|
|
|
9390
9524
|
};
|
|
9391
9525
|
|
|
9392
9526
|
export declare function useCommonAdminCollabOptions(): {
|
|
9393
|
-
|
|
9394
|
-
|
|
9527
|
+
collabOptions: Ref<{
|
|
9528
|
+
enabled: boolean;
|
|
9529
|
+
socketUrl: string;
|
|
9530
|
+
}>;
|
|
9395
9531
|
};
|
|
9396
9532
|
|
|
9397
9533
|
export declare function useCommonJobFactory(): {
|