@anzusystems/common-admin 0.0.33 → 0.0.35
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 +403 -857
- package/dist/common-admin.es.js +3752 -3337
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +2 -2
- package/dist/webfontloader-e9985fe5.js +493 -0
- package/dist/webfontloader-e9985fe5.js.map +1 -0
- package/package.json +11 -6
|
@@ -12,18 +12,15 @@ import type { DefineComponent } from 'vue';
|
|
|
12
12
|
import type { ExtractPropTypes } from 'vue';
|
|
13
13
|
import type { I18n } from 'vue-i18n';
|
|
14
14
|
import type { InjectionKey } from 'vue';
|
|
15
|
-
import type { JSXComponent } from 'vue';
|
|
16
15
|
import type { Method } from 'axios';
|
|
17
16
|
import type { PropType } from 'vue';
|
|
18
|
-
import type { Ref } from 'vue
|
|
19
|
-
import type { Ref as Ref_2 } from 'vue';
|
|
17
|
+
import type { Ref } from 'vue';
|
|
20
18
|
import type { RouteLocationRaw } from 'vue-router';
|
|
21
19
|
import type { Router } from 'vue-router';
|
|
22
20
|
import type { UnwrapRef } from 'vue';
|
|
23
21
|
import { useI18n } from 'vue-i18n';
|
|
24
22
|
import type { ValidationRuleWithoutParams } from '@vuelidate/core';
|
|
25
23
|
import type { ValidationRuleWithParams } from '@vuelidate/core';
|
|
26
|
-
import type { VNodeChild } from 'vue';
|
|
27
24
|
import type { VNodeProps } from 'vue';
|
|
28
25
|
|
|
29
26
|
export declare const AActionCloseButton: DefineComponent<{
|
|
@@ -154,11 +151,6 @@ export declare const AActionDeleteButton: DefineComponent<{
|
|
|
154
151
|
required: false;
|
|
155
152
|
default: string;
|
|
156
153
|
};
|
|
157
|
-
dialogCancelColor: {
|
|
158
|
-
type: PropType<string | undefined>;
|
|
159
|
-
required: false;
|
|
160
|
-
default: string;
|
|
161
|
-
};
|
|
162
154
|
dialogZIndex: {
|
|
163
155
|
type: PropType<number | undefined>;
|
|
164
156
|
required: false;
|
|
@@ -241,11 +233,6 @@ export declare const AActionDeleteButton: DefineComponent<{
|
|
|
241
233
|
required: false;
|
|
242
234
|
default: string;
|
|
243
235
|
};
|
|
244
|
-
dialogCancelColor: {
|
|
245
|
-
type: PropType<string | undefined>;
|
|
246
|
-
required: false;
|
|
247
|
-
default: string;
|
|
248
|
-
};
|
|
249
236
|
dialogZIndex: {
|
|
250
237
|
type: PropType<number | undefined>;
|
|
251
238
|
required: false;
|
|
@@ -302,7 +289,6 @@ export declare const AActionDeleteButton: DefineComponent<{
|
|
|
302
289
|
dialogConfirmButtonT: string | undefined;
|
|
303
290
|
dialogCancelButtonT: string | undefined;
|
|
304
291
|
dialogConfirmColor: string | undefined;
|
|
305
|
-
dialogCancelColor: string | undefined;
|
|
306
292
|
dialogZIndex: number | undefined;
|
|
307
293
|
dialogMaxWidth: number | undefined;
|
|
308
294
|
disabled: boolean | undefined;
|
|
@@ -589,6 +575,125 @@ export declare const AAlerts: DefineComponent<{
|
|
|
589
575
|
customClass: string | undefined;
|
|
590
576
|
}>;
|
|
591
577
|
|
|
578
|
+
export declare const AAnzuUserAvatar: DefineComponent<{
|
|
579
|
+
user: {
|
|
580
|
+
type: PropType<AnzuUser | null | undefined>;
|
|
581
|
+
required: false;
|
|
582
|
+
default: undefined;
|
|
583
|
+
};
|
|
584
|
+
size: {
|
|
585
|
+
type: PropType<number | undefined>;
|
|
586
|
+
required: false;
|
|
587
|
+
default: number;
|
|
588
|
+
};
|
|
589
|
+
containerClass: {
|
|
590
|
+
type: PropType<string | undefined>;
|
|
591
|
+
required: false;
|
|
592
|
+
default: string;
|
|
593
|
+
};
|
|
594
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
595
|
+
user: {
|
|
596
|
+
type: PropType<AnzuUser | null | undefined>;
|
|
597
|
+
required: false;
|
|
598
|
+
default: undefined;
|
|
599
|
+
};
|
|
600
|
+
size: {
|
|
601
|
+
type: PropType<number | undefined>;
|
|
602
|
+
required: false;
|
|
603
|
+
default: number;
|
|
604
|
+
};
|
|
605
|
+
containerClass: {
|
|
606
|
+
type: PropType<string | undefined>;
|
|
607
|
+
required: false;
|
|
608
|
+
default: string;
|
|
609
|
+
};
|
|
610
|
+
}>>, {
|
|
611
|
+
containerClass: string | undefined;
|
|
612
|
+
size: number | undefined;
|
|
613
|
+
user: AnzuUser | null | undefined;
|
|
614
|
+
}>;
|
|
615
|
+
|
|
616
|
+
export declare const AAvatarColorPicker: DefineComponent<{
|
|
617
|
+
modelValue: {
|
|
618
|
+
type: PropType<string>;
|
|
619
|
+
required: true;
|
|
620
|
+
};
|
|
621
|
+
label: {
|
|
622
|
+
type: PropType<string | undefined>;
|
|
623
|
+
required: false;
|
|
624
|
+
default: string;
|
|
625
|
+
};
|
|
626
|
+
loading: {
|
|
627
|
+
type: PropType<boolean | undefined>;
|
|
628
|
+
required: false;
|
|
629
|
+
default: boolean;
|
|
630
|
+
};
|
|
631
|
+
readonly: {
|
|
632
|
+
type: PropType<boolean | undefined>;
|
|
633
|
+
required: false;
|
|
634
|
+
default: boolean;
|
|
635
|
+
};
|
|
636
|
+
required: {
|
|
637
|
+
type: PropType<boolean | undefined>;
|
|
638
|
+
required: false;
|
|
639
|
+
default: boolean;
|
|
640
|
+
};
|
|
641
|
+
randomColor: {
|
|
642
|
+
type: PropType<boolean | undefined>;
|
|
643
|
+
required: false;
|
|
644
|
+
default: boolean;
|
|
645
|
+
};
|
|
646
|
+
hideLabel: {
|
|
647
|
+
type: PropType<boolean | undefined>;
|
|
648
|
+
required: false;
|
|
649
|
+
default: boolean;
|
|
650
|
+
};
|
|
651
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
652
|
+
modelValue: {
|
|
653
|
+
type: PropType<string>;
|
|
654
|
+
required: true;
|
|
655
|
+
};
|
|
656
|
+
label: {
|
|
657
|
+
type: PropType<string | undefined>;
|
|
658
|
+
required: false;
|
|
659
|
+
default: string;
|
|
660
|
+
};
|
|
661
|
+
loading: {
|
|
662
|
+
type: PropType<boolean | undefined>;
|
|
663
|
+
required: false;
|
|
664
|
+
default: boolean;
|
|
665
|
+
};
|
|
666
|
+
readonly: {
|
|
667
|
+
type: PropType<boolean | undefined>;
|
|
668
|
+
required: false;
|
|
669
|
+
default: boolean;
|
|
670
|
+
};
|
|
671
|
+
required: {
|
|
672
|
+
type: PropType<boolean | undefined>;
|
|
673
|
+
required: false;
|
|
674
|
+
default: boolean;
|
|
675
|
+
};
|
|
676
|
+
randomColor: {
|
|
677
|
+
type: PropType<boolean | undefined>;
|
|
678
|
+
required: false;
|
|
679
|
+
default: boolean;
|
|
680
|
+
};
|
|
681
|
+
hideLabel: {
|
|
682
|
+
type: PropType<boolean | undefined>;
|
|
683
|
+
required: false;
|
|
684
|
+
default: boolean;
|
|
685
|
+
};
|
|
686
|
+
}>> & {
|
|
687
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
688
|
+
}, {
|
|
689
|
+
required: boolean | undefined;
|
|
690
|
+
loading: boolean | undefined;
|
|
691
|
+
label: string | undefined;
|
|
692
|
+
hideLabel: boolean | undefined;
|
|
693
|
+
readonly: boolean | undefined;
|
|
694
|
+
randomColor: boolean | undefined;
|
|
695
|
+
}>;
|
|
696
|
+
|
|
592
697
|
export declare const ABooleanValue: DefineComponent<{
|
|
593
698
|
value: {
|
|
594
699
|
type: PropType<string | number | boolean>;
|
|
@@ -627,9 +732,14 @@ export declare const ABooleanValue: DefineComponent<{
|
|
|
627
732
|
export declare const ACachedChip: DefineComponent<{
|
|
628
733
|
id: {
|
|
629
734
|
type: PropType<string | number | null | undefined>;
|
|
630
|
-
required:
|
|
735
|
+
required: false;
|
|
631
736
|
default: null;
|
|
632
737
|
};
|
|
738
|
+
title: {
|
|
739
|
+
type: PropType<string | undefined>;
|
|
740
|
+
required: false;
|
|
741
|
+
default: string;
|
|
742
|
+
};
|
|
633
743
|
containerClass: {
|
|
634
744
|
type: PropType<string | undefined>;
|
|
635
745
|
required: false;
|
|
@@ -680,9 +790,14 @@ export declare const ACachedChip: DefineComponent<{
|
|
|
680
790
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
681
791
|
id: {
|
|
682
792
|
type: PropType<string | number | null | undefined>;
|
|
683
|
-
required:
|
|
793
|
+
required: false;
|
|
684
794
|
default: null;
|
|
685
795
|
};
|
|
796
|
+
title: {
|
|
797
|
+
type: PropType<string | undefined>;
|
|
798
|
+
required: false;
|
|
799
|
+
default: string;
|
|
800
|
+
};
|
|
686
801
|
containerClass: {
|
|
687
802
|
type: PropType<string | undefined>;
|
|
688
803
|
required: false;
|
|
@@ -732,6 +847,7 @@ export declare const ACachedChip: DefineComponent<{
|
|
|
732
847
|
};
|
|
733
848
|
}>>, {
|
|
734
849
|
id: string | number | null | undefined;
|
|
850
|
+
title: string | undefined;
|
|
735
851
|
containerClass: string | undefined;
|
|
736
852
|
disableClick: boolean | undefined;
|
|
737
853
|
openInNew: boolean | undefined;
|
|
@@ -958,6 +1074,34 @@ export declare const ACreateDialog: DefineComponent<{
|
|
|
958
1074
|
redirectParamName: string | undefined;
|
|
959
1075
|
}>;
|
|
960
1076
|
|
|
1077
|
+
export declare const ACurrentUserDropdown: DefineComponent<{
|
|
1078
|
+
currentUser: {
|
|
1079
|
+
type: PropType<AnzuUser>;
|
|
1080
|
+
required: true;
|
|
1081
|
+
};
|
|
1082
|
+
settingsRouteName: {
|
|
1083
|
+
type: PropType<string>;
|
|
1084
|
+
required: true;
|
|
1085
|
+
};
|
|
1086
|
+
logoutRouteName: {
|
|
1087
|
+
type: PropType<string>;
|
|
1088
|
+
required: true;
|
|
1089
|
+
};
|
|
1090
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1091
|
+
currentUser: {
|
|
1092
|
+
type: PropType<AnzuUser>;
|
|
1093
|
+
required: true;
|
|
1094
|
+
};
|
|
1095
|
+
settingsRouteName: {
|
|
1096
|
+
type: PropType<string>;
|
|
1097
|
+
required: true;
|
|
1098
|
+
};
|
|
1099
|
+
logoutRouteName: {
|
|
1100
|
+
type: PropType<string>;
|
|
1101
|
+
required: true;
|
|
1102
|
+
};
|
|
1103
|
+
}>>, {}>;
|
|
1104
|
+
|
|
961
1105
|
export declare const ADatatableConfigButton: DefineComponent<{
|
|
962
1106
|
columnsAll: {
|
|
963
1107
|
type: PropType<ColumnInternalValues[]>;
|
|
@@ -1243,7 +1387,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1243
1387
|
required: true;
|
|
1244
1388
|
};
|
|
1245
1389
|
fetchItemsByIds: {
|
|
1246
|
-
type: PropType<
|
|
1390
|
+
type: PropType<FetchItemsByIdsType>;
|
|
1247
1391
|
required: true;
|
|
1248
1392
|
};
|
|
1249
1393
|
innerFilter: {
|
|
@@ -1265,7 +1409,7 @@ export declare const AFilterRemoteAutocomplete: DefineComponent<{
|
|
|
1265
1409
|
required: true;
|
|
1266
1410
|
};
|
|
1267
1411
|
fetchItemsByIds: {
|
|
1268
|
-
type: PropType<
|
|
1412
|
+
type: PropType<FetchItemsByIdsType>;
|
|
1269
1413
|
required: true;
|
|
1270
1414
|
};
|
|
1271
1415
|
innerFilter: {
|
|
@@ -1621,7 +1765,7 @@ export declare const AFormDatetimePicker: DefineComponent<{
|
|
|
1621
1765
|
|
|
1622
1766
|
export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
1623
1767
|
modelValue: {
|
|
1624
|
-
type: PropType<
|
|
1768
|
+
type: PropType<any>;
|
|
1625
1769
|
required: true;
|
|
1626
1770
|
};
|
|
1627
1771
|
label: {
|
|
@@ -1665,11 +1809,11 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1665
1809
|
default: boolean;
|
|
1666
1810
|
};
|
|
1667
1811
|
fetchItems: {
|
|
1668
|
-
type: PropType<
|
|
1812
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
1669
1813
|
required: true;
|
|
1670
1814
|
};
|
|
1671
1815
|
fetchItemsByIds: {
|
|
1672
|
-
type: PropType<
|
|
1816
|
+
type: PropType<fetchItemsByIdsType>;
|
|
1673
1817
|
required: true;
|
|
1674
1818
|
};
|
|
1675
1819
|
innerFilter: {
|
|
@@ -1686,24 +1830,14 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1686
1830
|
required: false;
|
|
1687
1831
|
default: boolean;
|
|
1688
1832
|
};
|
|
1689
|
-
lazyLoader: {
|
|
1690
|
-
type: PropType<LazyLoaderType | undefined>;
|
|
1691
|
-
required: false;
|
|
1692
|
-
default: undefined;
|
|
1693
|
-
};
|
|
1694
|
-
chips: {
|
|
1695
|
-
type: PropType<boolean | undefined>;
|
|
1696
|
-
required: false;
|
|
1697
|
-
default: boolean;
|
|
1698
|
-
};
|
|
1699
1833
|
loading: {
|
|
1700
1834
|
type: PropType<boolean | undefined>;
|
|
1701
1835
|
required: false;
|
|
1702
1836
|
default: boolean;
|
|
1703
1837
|
};
|
|
1704
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "blur" | "
|
|
1838
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "blur" | "searchChange" | "searchChangeDebounced")[], "update:modelValue" | "blur" | "searchChange" | "searchChangeDebounced", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1705
1839
|
modelValue: {
|
|
1706
|
-
type: PropType<
|
|
1840
|
+
type: PropType<any>;
|
|
1707
1841
|
required: true;
|
|
1708
1842
|
};
|
|
1709
1843
|
label: {
|
|
@@ -1747,11 +1881,11 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1747
1881
|
default: boolean;
|
|
1748
1882
|
};
|
|
1749
1883
|
fetchItems: {
|
|
1750
|
-
type: PropType<
|
|
1884
|
+
type: PropType<(pagination: Pagination, filterBag: FilterBag) => Promise<ValueObjectOption<string | number>[]>>;
|
|
1751
1885
|
required: true;
|
|
1752
1886
|
};
|
|
1753
1887
|
fetchItemsByIds: {
|
|
1754
|
-
type: PropType<
|
|
1888
|
+
type: PropType<fetchItemsByIdsType>;
|
|
1755
1889
|
required: true;
|
|
1756
1890
|
};
|
|
1757
1891
|
innerFilter: {
|
|
@@ -1768,27 +1902,180 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1768
1902
|
required: false;
|
|
1769
1903
|
default: boolean;
|
|
1770
1904
|
};
|
|
1771
|
-
|
|
1772
|
-
type: PropType<
|
|
1905
|
+
loading: {
|
|
1906
|
+
type: PropType<boolean | undefined>;
|
|
1907
|
+
required: false;
|
|
1908
|
+
default: boolean;
|
|
1909
|
+
};
|
|
1910
|
+
}>> & {
|
|
1911
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1912
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1913
|
+
onSearchChange?: ((...args: any[]) => any) | undefined;
|
|
1914
|
+
onSearchChangeDebounced?: ((...args: any[]) => any) | undefined;
|
|
1915
|
+
}, {
|
|
1916
|
+
required: boolean | undefined;
|
|
1917
|
+
loading: boolean | undefined;
|
|
1918
|
+
label: string | undefined;
|
|
1919
|
+
errorMessage: string | undefined;
|
|
1920
|
+
v: any;
|
|
1921
|
+
hideLabel: boolean | undefined;
|
|
1922
|
+
clearable: boolean | undefined;
|
|
1923
|
+
multiple: boolean | undefined;
|
|
1924
|
+
hideDetails: boolean | undefined;
|
|
1925
|
+
filterByField: string | undefined;
|
|
1926
|
+
disableInitFetch: boolean | undefined;
|
|
1927
|
+
}>;
|
|
1928
|
+
|
|
1929
|
+
export declare const AFormRemoteAutocompleteWithCached: DefineComponent<{
|
|
1930
|
+
modelValue: {
|
|
1931
|
+
type: PropType<any>;
|
|
1932
|
+
required: true;
|
|
1933
|
+
};
|
|
1934
|
+
label: {
|
|
1935
|
+
type: PropType<string | undefined>;
|
|
1936
|
+
required: false;
|
|
1937
|
+
default: undefined;
|
|
1938
|
+
};
|
|
1939
|
+
required: {
|
|
1940
|
+
type: PropType<boolean | undefined>;
|
|
1941
|
+
required: false;
|
|
1942
|
+
default: undefined;
|
|
1943
|
+
};
|
|
1944
|
+
multiple: {
|
|
1945
|
+
type: PropType<boolean | undefined>;
|
|
1946
|
+
required: false;
|
|
1947
|
+
default: boolean;
|
|
1948
|
+
};
|
|
1949
|
+
clearable: {
|
|
1950
|
+
type: PropType<boolean | undefined>;
|
|
1951
|
+
required: false;
|
|
1952
|
+
default: boolean;
|
|
1953
|
+
};
|
|
1954
|
+
v: {
|
|
1955
|
+
type: PropType<any>;
|
|
1956
|
+
required: false;
|
|
1957
|
+
default: null;
|
|
1958
|
+
};
|
|
1959
|
+
errorMessage: {
|
|
1960
|
+
type: PropType<string | undefined>;
|
|
1961
|
+
required: false;
|
|
1962
|
+
default: undefined;
|
|
1963
|
+
};
|
|
1964
|
+
hideLabel: {
|
|
1965
|
+
type: PropType<boolean | undefined>;
|
|
1966
|
+
required: false;
|
|
1967
|
+
default: boolean;
|
|
1968
|
+
};
|
|
1969
|
+
fetchItemsMinimal: {
|
|
1970
|
+
type: PropType<FetchItemsMinimalType>;
|
|
1971
|
+
required: true;
|
|
1972
|
+
};
|
|
1973
|
+
innerFilter: {
|
|
1974
|
+
type: PropType<FilterBag>;
|
|
1975
|
+
required: true;
|
|
1976
|
+
};
|
|
1977
|
+
filterByField: {
|
|
1978
|
+
type: PropType<string | undefined>;
|
|
1979
|
+
required: false;
|
|
1980
|
+
default: string;
|
|
1981
|
+
};
|
|
1982
|
+
loading: {
|
|
1983
|
+
type: PropType<boolean | undefined>;
|
|
1984
|
+
required: false;
|
|
1985
|
+
default: boolean;
|
|
1986
|
+
};
|
|
1987
|
+
useCached: {
|
|
1988
|
+
type: PropType<UseCachedType>;
|
|
1989
|
+
required: true;
|
|
1990
|
+
};
|
|
1991
|
+
itemTitle: {
|
|
1992
|
+
type: PropType<string | undefined>;
|
|
1993
|
+
required: false;
|
|
1994
|
+
default: string;
|
|
1995
|
+
};
|
|
1996
|
+
itemValue: {
|
|
1997
|
+
type: PropType<string | undefined>;
|
|
1998
|
+
required: false;
|
|
1999
|
+
default: string;
|
|
2000
|
+
};
|
|
2001
|
+
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "blur" | "searchChange" | "searchChangeDebounced" | "focus")[], "update:modelValue" | "blur" | "searchChange" | "searchChangeDebounced" | "focus", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2002
|
+
modelValue: {
|
|
2003
|
+
type: PropType<any>;
|
|
2004
|
+
required: true;
|
|
2005
|
+
};
|
|
2006
|
+
label: {
|
|
2007
|
+
type: PropType<string | undefined>;
|
|
2008
|
+
required: false;
|
|
2009
|
+
default: undefined;
|
|
2010
|
+
};
|
|
2011
|
+
required: {
|
|
2012
|
+
type: PropType<boolean | undefined>;
|
|
2013
|
+
required: false;
|
|
2014
|
+
default: undefined;
|
|
2015
|
+
};
|
|
2016
|
+
multiple: {
|
|
2017
|
+
type: PropType<boolean | undefined>;
|
|
2018
|
+
required: false;
|
|
2019
|
+
default: boolean;
|
|
2020
|
+
};
|
|
2021
|
+
clearable: {
|
|
2022
|
+
type: PropType<boolean | undefined>;
|
|
2023
|
+
required: false;
|
|
2024
|
+
default: boolean;
|
|
2025
|
+
};
|
|
2026
|
+
v: {
|
|
2027
|
+
type: PropType<any>;
|
|
2028
|
+
required: false;
|
|
2029
|
+
default: null;
|
|
2030
|
+
};
|
|
2031
|
+
errorMessage: {
|
|
2032
|
+
type: PropType<string | undefined>;
|
|
1773
2033
|
required: false;
|
|
1774
2034
|
default: undefined;
|
|
1775
2035
|
};
|
|
1776
|
-
|
|
2036
|
+
hideLabel: {
|
|
1777
2037
|
type: PropType<boolean | undefined>;
|
|
1778
2038
|
required: false;
|
|
1779
2039
|
default: boolean;
|
|
1780
2040
|
};
|
|
2041
|
+
fetchItemsMinimal: {
|
|
2042
|
+
type: PropType<FetchItemsMinimalType>;
|
|
2043
|
+
required: true;
|
|
2044
|
+
};
|
|
2045
|
+
innerFilter: {
|
|
2046
|
+
type: PropType<FilterBag>;
|
|
2047
|
+
required: true;
|
|
2048
|
+
};
|
|
2049
|
+
filterByField: {
|
|
2050
|
+
type: PropType<string | undefined>;
|
|
2051
|
+
required: false;
|
|
2052
|
+
default: string;
|
|
2053
|
+
};
|
|
1781
2054
|
loading: {
|
|
1782
2055
|
type: PropType<boolean | undefined>;
|
|
1783
2056
|
required: false;
|
|
1784
2057
|
default: boolean;
|
|
1785
2058
|
};
|
|
2059
|
+
useCached: {
|
|
2060
|
+
type: PropType<UseCachedType>;
|
|
2061
|
+
required: true;
|
|
2062
|
+
};
|
|
2063
|
+
itemTitle: {
|
|
2064
|
+
type: PropType<string | undefined>;
|
|
2065
|
+
required: false;
|
|
2066
|
+
default: string;
|
|
2067
|
+
};
|
|
2068
|
+
itemValue: {
|
|
2069
|
+
type: PropType<string | undefined>;
|
|
2070
|
+
required: false;
|
|
2071
|
+
default: string;
|
|
2072
|
+
};
|
|
1786
2073
|
}>> & {
|
|
1787
2074
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1788
2075
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1789
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1790
2076
|
onSearchChange?: ((...args: any[]) => any) | undefined;
|
|
1791
2077
|
onSearchChangeDebounced?: ((...args: any[]) => any) | undefined;
|
|
2078
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1792
2079
|
}, {
|
|
1793
2080
|
required: boolean | undefined;
|
|
1794
2081
|
loading: boolean | undefined;
|
|
@@ -1798,11 +2085,9 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1798
2085
|
hideLabel: boolean | undefined;
|
|
1799
2086
|
clearable: boolean | undefined;
|
|
1800
2087
|
multiple: boolean | undefined;
|
|
1801
|
-
hideDetails: boolean | undefined;
|
|
1802
2088
|
filterByField: string | undefined;
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
chips: boolean | undefined;
|
|
2089
|
+
itemTitle: string | undefined;
|
|
2090
|
+
itemValue: string | undefined;
|
|
1806
2091
|
}>;
|
|
1807
2092
|
|
|
1808
2093
|
export declare const AFormRemoteCheckbox: DefineComponent<{
|
|
@@ -2126,6 +2411,11 @@ export declare const AFormTextField: DefineComponent<{
|
|
|
2126
2411
|
required: false;
|
|
2127
2412
|
default: undefined;
|
|
2128
2413
|
};
|
|
2414
|
+
maxlength: {
|
|
2415
|
+
type: PropType<number | undefined>;
|
|
2416
|
+
required: false;
|
|
2417
|
+
default: undefined;
|
|
2418
|
+
};
|
|
2129
2419
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click:append" | "blur")[], "update:modelValue" | "click:append" | "blur", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2130
2420
|
modelValue: {
|
|
2131
2421
|
type: PropType<string | number | null | undefined>;
|
|
@@ -2181,6 +2471,11 @@ export declare const AFormTextField: DefineComponent<{
|
|
|
2181
2471
|
required: false;
|
|
2182
2472
|
default: undefined;
|
|
2183
2473
|
};
|
|
2474
|
+
maxlength: {
|
|
2475
|
+
type: PropType<number | undefined>;
|
|
2476
|
+
required: false;
|
|
2477
|
+
default: undefined;
|
|
2478
|
+
};
|
|
2184
2479
|
}>> & {
|
|
2185
2480
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2186
2481
|
"onClick:append"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2196,6 +2491,7 @@ export declare const AFormTextField: DefineComponent<{
|
|
|
2196
2491
|
appendIcon: string | undefined;
|
|
2197
2492
|
hideLabel: boolean | undefined;
|
|
2198
2493
|
step: number | undefined;
|
|
2494
|
+
maxlength: number | undefined;
|
|
2199
2495
|
}>;
|
|
2200
2496
|
|
|
2201
2497
|
export declare const AFormValueObjectOptionsSelect: DefineComponent<{
|
|
@@ -2973,7 +3269,8 @@ declare type CachedItem<T extends object> = T & {
|
|
|
2973
3269
|
};
|
|
2974
3270
|
|
|
2975
3271
|
/**
|
|
2976
|
-
* Use only for objects with some primitives like
|
|
3272
|
+
* Use only for objects with some primitives like:
|
|
3273
|
+
* number, string, boolean, null. Not supported: function, undefined, symbol, ...
|
|
2977
3274
|
*/
|
|
2978
3275
|
export declare const cloneDeep: <T>(object: T) => T;
|
|
2979
3276
|
|
|
@@ -3013,7 +3310,7 @@ export declare function createDatatableColumnsConfig(config: ColumnConfig[], hid
|
|
|
3013
3310
|
fixed: boolean;
|
|
3014
3311
|
}[];
|
|
3015
3312
|
columnsVisible: ComputedRef<any>;
|
|
3016
|
-
columnsHidden:
|
|
3313
|
+
columnsHidden: Ref<string[]>;
|
|
3017
3314
|
updateSortBy: (sortBy: any) => void;
|
|
3018
3315
|
pagination: Pagination;
|
|
3019
3316
|
};
|
|
@@ -3022,7 +3319,7 @@ export declare interface CreatedByAware {
|
|
|
3022
3319
|
createdBy: IntegerIdNullable;
|
|
3023
3320
|
}
|
|
3024
3321
|
|
|
3025
|
-
export declare type CurrentUserType = DeepReadonly<
|
|
3322
|
+
export declare type CurrentUserType = DeepReadonly<Ref<UnwrapRef<AnzuUser | undefined>>>;
|
|
3026
3323
|
|
|
3027
3324
|
export declare type CustomAclResolver<T extends AclValue = AclValue> = undefined | {
|
|
3028
3325
|
can?: (acl: T, subject?: object) => boolean;
|
|
@@ -3075,8 +3372,8 @@ export declare const DefaultLanguageSymbol: unique symbol;
|
|
|
3075
3372
|
* @template M Minimal type
|
|
3076
3373
|
*/
|
|
3077
3374
|
export declare function defineCached<I extends DocId | IntegerId, T extends Record<DocId | IntegerId, any>, M extends Record<DocId | IntegerId, any>>(mapFullToMinimal: (source: T) => M, mapIdToMinimal: (id: I) => M, fetchCallback: (ids: I[]) => Promise<T[]>, idProp?: string): {
|
|
3078
|
-
cache:
|
|
3079
|
-
toFetch:
|
|
3375
|
+
cache: Ref<Map<I, CachedItem<M>>>;
|
|
3376
|
+
toFetch: Ref<Set<I>>;
|
|
3080
3377
|
fetch: () => void;
|
|
3081
3378
|
add: (...args: AddToCachedArgs<I>) => void;
|
|
3082
3379
|
addManual: (data: T) => void;
|
|
@@ -3092,11 +3389,11 @@ export declare type DocIdNullable = string | null;
|
|
|
3092
3389
|
|
|
3093
3390
|
export declare const eventClickBlur: (event?: Event) => void;
|
|
3094
3391
|
|
|
3095
|
-
declare type FetchItemsByIdsType = ((ids:
|
|
3392
|
+
declare type FetchItemsByIdsType = ((ids: number[]) => Promise<ValueObjectOption<number>[]>) | ((ids: string[]) => Promise<ValueObjectOption<string>[]>);
|
|
3096
3393
|
|
|
3097
|
-
declare type
|
|
3394
|
+
declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
|
|
3098
3395
|
|
|
3099
|
-
declare type
|
|
3396
|
+
declare type FetchItemsMinimalType = (pagination: Pagination, filterBag: FilterBag) => Promise<any[]>;
|
|
3100
3397
|
|
|
3101
3398
|
export declare interface Filter<T = any> {
|
|
3102
3399
|
field: string;
|
|
@@ -3228,12 +3525,7 @@ declare interface Language {
|
|
|
3228
3525
|
|
|
3229
3526
|
export declare type LanguageCode = 'en' | 'sk' | 'cs' | 'xx';
|
|
3230
3527
|
|
|
3231
|
-
declare
|
|
3232
|
-
allValues: Ref<ValueObjectOption<DocId | IntegerId>[]>;
|
|
3233
|
-
hasId: (id: DocId | IntegerId) => boolean;
|
|
3234
|
-
loadedAll: Ref<boolean>;
|
|
3235
|
-
[key: string]: any;
|
|
3236
|
-
};
|
|
3528
|
+
export declare function loadCommonFonts(): Promise<void>;
|
|
3237
3529
|
|
|
3238
3530
|
export declare interface Log {
|
|
3239
3531
|
id: string;
|
|
@@ -3990,7 +4282,7 @@ export declare const messagesSk: {
|
|
|
3990
4282
|
export declare function modifyLanguageSettings(configAvailableLanguages: LanguageCode[], configDefaultLanguage: LanguageCode): {
|
|
3991
4283
|
addMessages: (language: LanguageCode, messages: any) => void;
|
|
3992
4284
|
initializeLanguage: () => void;
|
|
3993
|
-
currentLanguageCode: Readonly<
|
|
4285
|
+
currentLanguageCode: Readonly<Ref<LanguageCode | "default">>;
|
|
3994
4286
|
setLanguage: (code: LanguageCode) => false | LanguageCode;
|
|
3995
4287
|
allLanguages: Language[];
|
|
3996
4288
|
};
|
|
@@ -4194,741 +4486,19 @@ export declare function useApiQueryBuilder(): {
|
|
|
4194
4486
|
queryBuild: () => string;
|
|
4195
4487
|
};
|
|
4196
4488
|
|
|
4489
|
+
declare type UseCachedType = () => {
|
|
4490
|
+
fetch: any;
|
|
4491
|
+
add: any;
|
|
4492
|
+
addManualMinimal: any;
|
|
4493
|
+
};
|
|
4494
|
+
|
|
4197
4495
|
export declare const useCommonVuetifyConfig: () => {
|
|
4198
4496
|
commonAliases: () => {
|
|
4199
|
-
ABtnPrimary:
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
block: boolean;
|
|
4205
|
-
disabled: boolean;
|
|
4206
|
-
size: string | number;
|
|
4207
|
-
tag: string;
|
|
4208
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4209
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4210
|
-
stacked: boolean;
|
|
4211
|
-
ripple: boolean;
|
|
4212
|
-
} & {
|
|
4213
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4214
|
-
height?: string | number | undefined;
|
|
4215
|
-
width?: string | number | undefined;
|
|
4216
|
-
active?: boolean | undefined;
|
|
4217
|
-
border?: string | number | boolean | undefined;
|
|
4218
|
-
color?: string | undefined;
|
|
4219
|
-
maxHeight?: string | number | undefined;
|
|
4220
|
-
maxWidth?: string | number | undefined;
|
|
4221
|
-
minHeight?: string | number | undefined;
|
|
4222
|
-
minWidth?: string | number | undefined;
|
|
4223
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4224
|
-
value?: any;
|
|
4225
|
-
loading?: string | boolean | undefined;
|
|
4226
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4227
|
-
href?: string | undefined;
|
|
4228
|
-
elevation?: string | number | undefined;
|
|
4229
|
-
to?: RouteLocationRaw | undefined;
|
|
4230
|
-
theme?: string | undefined;
|
|
4231
|
-
rounded?: string | number | boolean | undefined;
|
|
4232
|
-
selectedClass?: string | undefined;
|
|
4233
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4234
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4235
|
-
} & {
|
|
4236
|
-
$children?: {} | VNodeChild | {
|
|
4237
|
-
default?: (() => VNodeChild) | undefined;
|
|
4238
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4239
|
-
append?: (() => VNodeChild) | undefined;
|
|
4240
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4241
|
-
};
|
|
4242
|
-
$slots?: {
|
|
4243
|
-
default?: (() => VNodeChild) | undefined;
|
|
4244
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4245
|
-
append?: (() => VNodeChild) | undefined;
|
|
4246
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4247
|
-
} | undefined;
|
|
4248
|
-
'v-slots'?: {
|
|
4249
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4250
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4251
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4252
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4253
|
-
} | undefined;
|
|
4254
|
-
} & {
|
|
4255
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4256
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4257
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4258
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4259
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4260
|
-
'group:selected': (val: {
|
|
4261
|
-
value: boolean;
|
|
4262
|
-
}) => boolean;
|
|
4263
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
4264
|
-
symbol: any;
|
|
4265
|
-
replace: boolean;
|
|
4266
|
-
flat: boolean;
|
|
4267
|
-
exact: boolean;
|
|
4268
|
-
block: boolean;
|
|
4269
|
-
disabled: boolean;
|
|
4270
|
-
size: string | number;
|
|
4271
|
-
tag: string;
|
|
4272
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4273
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4274
|
-
stacked: boolean;
|
|
4275
|
-
ripple: boolean;
|
|
4276
|
-
} & {
|
|
4277
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4278
|
-
height?: string | number | undefined;
|
|
4279
|
-
width?: string | number | undefined;
|
|
4280
|
-
active?: boolean | undefined;
|
|
4281
|
-
border?: string | number | boolean | undefined;
|
|
4282
|
-
color?: string | undefined;
|
|
4283
|
-
maxHeight?: string | number | undefined;
|
|
4284
|
-
maxWidth?: string | number | undefined;
|
|
4285
|
-
minHeight?: string | number | undefined;
|
|
4286
|
-
minWidth?: string | number | undefined;
|
|
4287
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4288
|
-
value?: any;
|
|
4289
|
-
loading?: string | boolean | undefined;
|
|
4290
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4291
|
-
href?: string | undefined;
|
|
4292
|
-
elevation?: string | number | undefined;
|
|
4293
|
-
to?: RouteLocationRaw | undefined;
|
|
4294
|
-
theme?: string | undefined;
|
|
4295
|
-
rounded?: string | number | boolean | undefined;
|
|
4296
|
-
selectedClass?: string | undefined;
|
|
4297
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4298
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4299
|
-
} & {
|
|
4300
|
-
$children?: {} | VNodeChild | {
|
|
4301
|
-
default?: (() => VNodeChild) | undefined;
|
|
4302
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4303
|
-
append?: (() => VNodeChild) | undefined;
|
|
4304
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4305
|
-
};
|
|
4306
|
-
$slots?: {
|
|
4307
|
-
default?: (() => VNodeChild) | undefined;
|
|
4308
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4309
|
-
append?: (() => VNodeChild) | undefined;
|
|
4310
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4311
|
-
} | undefined;
|
|
4312
|
-
'v-slots'?: {
|
|
4313
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4314
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4315
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4316
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4317
|
-
} | undefined;
|
|
4318
|
-
} & {
|
|
4319
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4320
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4321
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4322
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4323
|
-
} & {
|
|
4324
|
-
"onGroup:selected"?: ((val: {
|
|
4325
|
-
value: boolean;
|
|
4326
|
-
}) => any) | undefined;
|
|
4327
|
-
}, {
|
|
4328
|
-
symbol: any;
|
|
4329
|
-
replace: boolean;
|
|
4330
|
-
flat: boolean;
|
|
4331
|
-
exact: boolean;
|
|
4332
|
-
active: boolean;
|
|
4333
|
-
block: boolean;
|
|
4334
|
-
disabled: boolean;
|
|
4335
|
-
size: string | number;
|
|
4336
|
-
tag: string;
|
|
4337
|
-
rounded: string | number | boolean;
|
|
4338
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4339
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4340
|
-
stacked: boolean;
|
|
4341
|
-
ripple: boolean;
|
|
4342
|
-
}>;
|
|
4343
|
-
ABtnSecondary: DefineComponent<{
|
|
4344
|
-
symbol: any;
|
|
4345
|
-
replace: boolean;
|
|
4346
|
-
flat: boolean;
|
|
4347
|
-
exact: boolean;
|
|
4348
|
-
block: boolean;
|
|
4349
|
-
disabled: boolean;
|
|
4350
|
-
size: string | number;
|
|
4351
|
-
tag: string;
|
|
4352
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4353
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4354
|
-
stacked: boolean;
|
|
4355
|
-
ripple: boolean;
|
|
4356
|
-
} & {
|
|
4357
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4358
|
-
height?: string | number | undefined;
|
|
4359
|
-
width?: string | number | undefined;
|
|
4360
|
-
active?: boolean | undefined;
|
|
4361
|
-
border?: string | number | boolean | undefined;
|
|
4362
|
-
color?: string | undefined;
|
|
4363
|
-
maxHeight?: string | number | undefined;
|
|
4364
|
-
maxWidth?: string | number | undefined;
|
|
4365
|
-
minHeight?: string | number | undefined;
|
|
4366
|
-
minWidth?: string | number | undefined;
|
|
4367
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4368
|
-
value?: any;
|
|
4369
|
-
loading?: string | boolean | undefined;
|
|
4370
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4371
|
-
href?: string | undefined;
|
|
4372
|
-
elevation?: string | number | undefined;
|
|
4373
|
-
to?: RouteLocationRaw | undefined;
|
|
4374
|
-
theme?: string | undefined;
|
|
4375
|
-
rounded?: string | number | boolean | undefined;
|
|
4376
|
-
selectedClass?: string | undefined;
|
|
4377
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4378
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4379
|
-
} & {
|
|
4380
|
-
$children?: {} | VNodeChild | {
|
|
4381
|
-
default?: (() => VNodeChild) | undefined;
|
|
4382
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4383
|
-
append?: (() => VNodeChild) | undefined;
|
|
4384
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4385
|
-
};
|
|
4386
|
-
$slots?: {
|
|
4387
|
-
default?: (() => VNodeChild) | undefined;
|
|
4388
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4389
|
-
append?: (() => VNodeChild) | undefined;
|
|
4390
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4391
|
-
} | undefined;
|
|
4392
|
-
'v-slots'?: {
|
|
4393
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4394
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4395
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4396
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4397
|
-
} | undefined;
|
|
4398
|
-
} & {
|
|
4399
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4400
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4401
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4402
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4403
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4404
|
-
'group:selected': (val: {
|
|
4405
|
-
value: boolean;
|
|
4406
|
-
}) => boolean;
|
|
4407
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
4408
|
-
symbol: any;
|
|
4409
|
-
replace: boolean;
|
|
4410
|
-
flat: boolean;
|
|
4411
|
-
exact: boolean;
|
|
4412
|
-
block: boolean;
|
|
4413
|
-
disabled: boolean;
|
|
4414
|
-
size: string | number;
|
|
4415
|
-
tag: string;
|
|
4416
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4417
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4418
|
-
stacked: boolean;
|
|
4419
|
-
ripple: boolean;
|
|
4420
|
-
} & {
|
|
4421
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4422
|
-
height?: string | number | undefined;
|
|
4423
|
-
width?: string | number | undefined;
|
|
4424
|
-
active?: boolean | undefined;
|
|
4425
|
-
border?: string | number | boolean | undefined;
|
|
4426
|
-
color?: string | undefined;
|
|
4427
|
-
maxHeight?: string | number | undefined;
|
|
4428
|
-
maxWidth?: string | number | undefined;
|
|
4429
|
-
minHeight?: string | number | undefined;
|
|
4430
|
-
minWidth?: string | number | undefined;
|
|
4431
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4432
|
-
value?: any;
|
|
4433
|
-
loading?: string | boolean | undefined;
|
|
4434
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4435
|
-
href?: string | undefined;
|
|
4436
|
-
elevation?: string | number | undefined;
|
|
4437
|
-
to?: RouteLocationRaw | undefined;
|
|
4438
|
-
theme?: string | undefined;
|
|
4439
|
-
rounded?: string | number | boolean | undefined;
|
|
4440
|
-
selectedClass?: string | undefined;
|
|
4441
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4442
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4443
|
-
} & {
|
|
4444
|
-
$children?: {} | VNodeChild | {
|
|
4445
|
-
default?: (() => VNodeChild) | undefined;
|
|
4446
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4447
|
-
append?: (() => VNodeChild) | undefined;
|
|
4448
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4449
|
-
};
|
|
4450
|
-
$slots?: {
|
|
4451
|
-
default?: (() => VNodeChild) | undefined;
|
|
4452
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4453
|
-
append?: (() => VNodeChild) | undefined;
|
|
4454
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4455
|
-
} | undefined;
|
|
4456
|
-
'v-slots'?: {
|
|
4457
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4458
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4459
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4460
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4461
|
-
} | undefined;
|
|
4462
|
-
} & {
|
|
4463
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4464
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4465
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4466
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4467
|
-
} & {
|
|
4468
|
-
"onGroup:selected"?: ((val: {
|
|
4469
|
-
value: boolean;
|
|
4470
|
-
}) => any) | undefined;
|
|
4471
|
-
}, {
|
|
4472
|
-
symbol: any;
|
|
4473
|
-
replace: boolean;
|
|
4474
|
-
flat: boolean;
|
|
4475
|
-
exact: boolean;
|
|
4476
|
-
active: boolean;
|
|
4477
|
-
block: boolean;
|
|
4478
|
-
disabled: boolean;
|
|
4479
|
-
size: string | number;
|
|
4480
|
-
tag: string;
|
|
4481
|
-
rounded: string | number | boolean;
|
|
4482
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4483
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4484
|
-
stacked: boolean;
|
|
4485
|
-
ripple: boolean;
|
|
4486
|
-
}>;
|
|
4487
|
-
ABtnTertiary: DefineComponent<{
|
|
4488
|
-
symbol: any;
|
|
4489
|
-
replace: boolean;
|
|
4490
|
-
flat: boolean;
|
|
4491
|
-
exact: boolean;
|
|
4492
|
-
block: boolean;
|
|
4493
|
-
disabled: boolean;
|
|
4494
|
-
size: string | number;
|
|
4495
|
-
tag: string;
|
|
4496
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4497
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4498
|
-
stacked: boolean;
|
|
4499
|
-
ripple: boolean;
|
|
4500
|
-
} & {
|
|
4501
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4502
|
-
height?: string | number | undefined;
|
|
4503
|
-
width?: string | number | undefined;
|
|
4504
|
-
active?: boolean | undefined;
|
|
4505
|
-
border?: string | number | boolean | undefined;
|
|
4506
|
-
color?: string | undefined;
|
|
4507
|
-
maxHeight?: string | number | undefined;
|
|
4508
|
-
maxWidth?: string | number | undefined;
|
|
4509
|
-
minHeight?: string | number | undefined;
|
|
4510
|
-
minWidth?: string | number | undefined;
|
|
4511
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4512
|
-
value?: any;
|
|
4513
|
-
loading?: string | boolean | undefined;
|
|
4514
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4515
|
-
href?: string | undefined;
|
|
4516
|
-
elevation?: string | number | undefined;
|
|
4517
|
-
to?: RouteLocationRaw | undefined;
|
|
4518
|
-
theme?: string | undefined;
|
|
4519
|
-
rounded?: string | number | boolean | undefined;
|
|
4520
|
-
selectedClass?: string | undefined;
|
|
4521
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4522
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4523
|
-
} & {
|
|
4524
|
-
$children?: {} | VNodeChild | {
|
|
4525
|
-
default?: (() => VNodeChild) | undefined;
|
|
4526
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4527
|
-
append?: (() => VNodeChild) | undefined;
|
|
4528
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4529
|
-
};
|
|
4530
|
-
$slots?: {
|
|
4531
|
-
default?: (() => VNodeChild) | undefined;
|
|
4532
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4533
|
-
append?: (() => VNodeChild) | undefined;
|
|
4534
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4535
|
-
} | undefined;
|
|
4536
|
-
'v-slots'?: {
|
|
4537
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4538
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4539
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4540
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4541
|
-
} | undefined;
|
|
4542
|
-
} & {
|
|
4543
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4544
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4545
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4546
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4547
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4548
|
-
'group:selected': (val: {
|
|
4549
|
-
value: boolean;
|
|
4550
|
-
}) => boolean;
|
|
4551
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
4552
|
-
symbol: any;
|
|
4553
|
-
replace: boolean;
|
|
4554
|
-
flat: boolean;
|
|
4555
|
-
exact: boolean;
|
|
4556
|
-
block: boolean;
|
|
4557
|
-
disabled: boolean;
|
|
4558
|
-
size: string | number;
|
|
4559
|
-
tag: string;
|
|
4560
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4561
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4562
|
-
stacked: boolean;
|
|
4563
|
-
ripple: boolean;
|
|
4564
|
-
} & {
|
|
4565
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4566
|
-
height?: string | number | undefined;
|
|
4567
|
-
width?: string | number | undefined;
|
|
4568
|
-
active?: boolean | undefined;
|
|
4569
|
-
border?: string | number | boolean | undefined;
|
|
4570
|
-
color?: string | undefined;
|
|
4571
|
-
maxHeight?: string | number | undefined;
|
|
4572
|
-
maxWidth?: string | number | undefined;
|
|
4573
|
-
minHeight?: string | number | undefined;
|
|
4574
|
-
minWidth?: string | number | undefined;
|
|
4575
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4576
|
-
value?: any;
|
|
4577
|
-
loading?: string | boolean | undefined;
|
|
4578
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4579
|
-
href?: string | undefined;
|
|
4580
|
-
elevation?: string | number | undefined;
|
|
4581
|
-
to?: RouteLocationRaw | undefined;
|
|
4582
|
-
theme?: string | undefined;
|
|
4583
|
-
rounded?: string | number | boolean | undefined;
|
|
4584
|
-
selectedClass?: string | undefined;
|
|
4585
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4586
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4587
|
-
} & {
|
|
4588
|
-
$children?: {} | VNodeChild | {
|
|
4589
|
-
default?: (() => VNodeChild) | undefined;
|
|
4590
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4591
|
-
append?: (() => VNodeChild) | undefined;
|
|
4592
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4593
|
-
};
|
|
4594
|
-
$slots?: {
|
|
4595
|
-
default?: (() => VNodeChild) | undefined;
|
|
4596
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4597
|
-
append?: (() => VNodeChild) | undefined;
|
|
4598
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4599
|
-
} | undefined;
|
|
4600
|
-
'v-slots'?: {
|
|
4601
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4602
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4603
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4604
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4605
|
-
} | undefined;
|
|
4606
|
-
} & {
|
|
4607
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4608
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4609
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4610
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4611
|
-
} & {
|
|
4612
|
-
"onGroup:selected"?: ((val: {
|
|
4613
|
-
value: boolean;
|
|
4614
|
-
}) => any) | undefined;
|
|
4615
|
-
}, {
|
|
4616
|
-
symbol: any;
|
|
4617
|
-
replace: boolean;
|
|
4618
|
-
flat: boolean;
|
|
4619
|
-
exact: boolean;
|
|
4620
|
-
active: boolean;
|
|
4621
|
-
block: boolean;
|
|
4622
|
-
disabled: boolean;
|
|
4623
|
-
size: string | number;
|
|
4624
|
-
tag: string;
|
|
4625
|
-
rounded: string | number | boolean;
|
|
4626
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4627
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4628
|
-
stacked: boolean;
|
|
4629
|
-
ripple: boolean;
|
|
4630
|
-
}>;
|
|
4631
|
-
ABtnIcon: DefineComponent<{
|
|
4632
|
-
symbol: any;
|
|
4633
|
-
replace: boolean;
|
|
4634
|
-
flat: boolean;
|
|
4635
|
-
exact: boolean;
|
|
4636
|
-
block: boolean;
|
|
4637
|
-
disabled: boolean;
|
|
4638
|
-
size: string | number;
|
|
4639
|
-
tag: string;
|
|
4640
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4641
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4642
|
-
stacked: boolean;
|
|
4643
|
-
ripple: boolean;
|
|
4644
|
-
} & {
|
|
4645
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4646
|
-
height?: string | number | undefined;
|
|
4647
|
-
width?: string | number | undefined;
|
|
4648
|
-
active?: boolean | undefined;
|
|
4649
|
-
border?: string | number | boolean | undefined;
|
|
4650
|
-
color?: string | undefined;
|
|
4651
|
-
maxHeight?: string | number | undefined;
|
|
4652
|
-
maxWidth?: string | number | undefined;
|
|
4653
|
-
minHeight?: string | number | undefined;
|
|
4654
|
-
minWidth?: string | number | undefined;
|
|
4655
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4656
|
-
value?: any;
|
|
4657
|
-
loading?: string | boolean | undefined;
|
|
4658
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4659
|
-
href?: string | undefined;
|
|
4660
|
-
elevation?: string | number | undefined;
|
|
4661
|
-
to?: RouteLocationRaw | undefined;
|
|
4662
|
-
theme?: string | undefined;
|
|
4663
|
-
rounded?: string | number | boolean | undefined;
|
|
4664
|
-
selectedClass?: string | undefined;
|
|
4665
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4666
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4667
|
-
} & {
|
|
4668
|
-
$children?: {} | VNodeChild | {
|
|
4669
|
-
default?: (() => VNodeChild) | undefined;
|
|
4670
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4671
|
-
append?: (() => VNodeChild) | undefined;
|
|
4672
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4673
|
-
};
|
|
4674
|
-
$slots?: {
|
|
4675
|
-
default?: (() => VNodeChild) | undefined;
|
|
4676
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4677
|
-
append?: (() => VNodeChild) | undefined;
|
|
4678
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4679
|
-
} | undefined;
|
|
4680
|
-
'v-slots'?: {
|
|
4681
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4682
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4683
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4684
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4685
|
-
} | undefined;
|
|
4686
|
-
} & {
|
|
4687
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4688
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4689
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4690
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4691
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4692
|
-
'group:selected': (val: {
|
|
4693
|
-
value: boolean;
|
|
4694
|
-
}) => boolean;
|
|
4695
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
4696
|
-
symbol: any;
|
|
4697
|
-
replace: boolean;
|
|
4698
|
-
flat: boolean;
|
|
4699
|
-
exact: boolean;
|
|
4700
|
-
block: boolean;
|
|
4701
|
-
disabled: boolean;
|
|
4702
|
-
size: string | number;
|
|
4703
|
-
tag: string;
|
|
4704
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4705
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4706
|
-
stacked: boolean;
|
|
4707
|
-
ripple: boolean;
|
|
4708
|
-
} & {
|
|
4709
|
-
location?: ("top center" | "top" | "bottom" | "start" | "end" | "left" | "right" | "center" | "center center" | "top start" | "top end" | "top left" | "top right" | "bottom start" | "bottom end" | "bottom left" | "bottom right" | "bottom center" | "start top" | "start bottom" | "start center" | "end top" | "end bottom" | "end center" | "left top" | "left bottom" | "left center" | "right top" | "right bottom" | "right center") | undefined;
|
|
4710
|
-
height?: string | number | undefined;
|
|
4711
|
-
width?: string | number | undefined;
|
|
4712
|
-
active?: boolean | undefined;
|
|
4713
|
-
border?: string | number | boolean | undefined;
|
|
4714
|
-
color?: string | undefined;
|
|
4715
|
-
maxHeight?: string | number | undefined;
|
|
4716
|
-
maxWidth?: string | number | undefined;
|
|
4717
|
-
minHeight?: string | number | undefined;
|
|
4718
|
-
minWidth?: string | number | undefined;
|
|
4719
|
-
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
4720
|
-
value?: any;
|
|
4721
|
-
loading?: string | boolean | undefined;
|
|
4722
|
-
icon?: boolean | (string | JSXComponent<any>) | undefined;
|
|
4723
|
-
href?: string | undefined;
|
|
4724
|
-
elevation?: string | number | undefined;
|
|
4725
|
-
to?: RouteLocationRaw | undefined;
|
|
4726
|
-
theme?: string | undefined;
|
|
4727
|
-
rounded?: string | number | boolean | undefined;
|
|
4728
|
-
selectedClass?: string | undefined;
|
|
4729
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4730
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4731
|
-
} & {
|
|
4732
|
-
$children?: {} | VNodeChild | {
|
|
4733
|
-
default?: (() => VNodeChild) | undefined;
|
|
4734
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4735
|
-
append?: (() => VNodeChild) | undefined;
|
|
4736
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4737
|
-
};
|
|
4738
|
-
$slots?: {
|
|
4739
|
-
default?: (() => VNodeChild) | undefined;
|
|
4740
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4741
|
-
append?: (() => VNodeChild) | undefined;
|
|
4742
|
-
loader?: (() => VNodeChild) | undefined;
|
|
4743
|
-
} | undefined;
|
|
4744
|
-
'v-slots'?: {
|
|
4745
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4746
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4747
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4748
|
-
loader?: false | (() => VNodeChild) | undefined;
|
|
4749
|
-
} | undefined;
|
|
4750
|
-
} & {
|
|
4751
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4752
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4753
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4754
|
-
"v-slot:loader"?: false | (() => VNodeChild) | undefined;
|
|
4755
|
-
} & {
|
|
4756
|
-
"onGroup:selected"?: ((val: {
|
|
4757
|
-
value: boolean;
|
|
4758
|
-
}) => any) | undefined;
|
|
4759
|
-
}, {
|
|
4760
|
-
symbol: any;
|
|
4761
|
-
replace: boolean;
|
|
4762
|
-
flat: boolean;
|
|
4763
|
-
exact: boolean;
|
|
4764
|
-
active: boolean;
|
|
4765
|
-
block: boolean;
|
|
4766
|
-
disabled: boolean;
|
|
4767
|
-
size: string | number;
|
|
4768
|
-
tag: string;
|
|
4769
|
-
rounded: string | number | boolean;
|
|
4770
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4771
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4772
|
-
stacked: boolean;
|
|
4773
|
-
ripple: boolean;
|
|
4774
|
-
}>;
|
|
4775
|
-
AChipNoLink: DefineComponent<{
|
|
4776
|
-
replace: boolean;
|
|
4777
|
-
filter: boolean;
|
|
4778
|
-
exact: boolean;
|
|
4779
|
-
label: boolean;
|
|
4780
|
-
draggable: boolean;
|
|
4781
|
-
disabled: boolean;
|
|
4782
|
-
size: string | number;
|
|
4783
|
-
tag: string;
|
|
4784
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4785
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4786
|
-
modelValue: boolean;
|
|
4787
|
-
ripple: boolean;
|
|
4788
|
-
closable: boolean;
|
|
4789
|
-
closeIcon: string | JSXComponent<any>;
|
|
4790
|
-
closeLabel: string;
|
|
4791
|
-
pill: boolean;
|
|
4792
|
-
filterIcon: string;
|
|
4793
|
-
} & {
|
|
4794
|
-
link?: boolean | undefined;
|
|
4795
|
-
border?: string | number | boolean | undefined;
|
|
4796
|
-
color?: string | undefined;
|
|
4797
|
-
value?: any;
|
|
4798
|
-
text?: string | undefined;
|
|
4799
|
-
onClick?: (((...args: any[]) => any) | ((...args: any[]) => any)[]) | undefined;
|
|
4800
|
-
onClickOnce?: (((...args: any[]) => any) | ((...args: any[]) => any)[]) | undefined;
|
|
4801
|
-
href?: string | undefined;
|
|
4802
|
-
elevation?: string | number | undefined;
|
|
4803
|
-
to?: RouteLocationRaw | undefined;
|
|
4804
|
-
theme?: string | undefined;
|
|
4805
|
-
rounded?: string | number | boolean | undefined;
|
|
4806
|
-
selectedClass?: string | undefined;
|
|
4807
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4808
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4809
|
-
activeClass?: string | undefined;
|
|
4810
|
-
appendAvatar?: string | undefined;
|
|
4811
|
-
prependAvatar?: string | undefined;
|
|
4812
|
-
} & {
|
|
4813
|
-
$children?: {} | VNodeChild | {
|
|
4814
|
-
default?: (() => VNodeChild) | undefined;
|
|
4815
|
-
label?: (() => VNodeChild) | undefined;
|
|
4816
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4817
|
-
append?: (() => VNodeChild) | undefined;
|
|
4818
|
-
};
|
|
4819
|
-
$slots?: {
|
|
4820
|
-
default?: (() => VNodeChild) | undefined;
|
|
4821
|
-
label?: (() => VNodeChild) | undefined;
|
|
4822
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4823
|
-
append?: (() => VNodeChild) | undefined;
|
|
4824
|
-
} | undefined;
|
|
4825
|
-
'v-slots'?: {
|
|
4826
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4827
|
-
label?: false | (() => VNodeChild) | undefined;
|
|
4828
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4829
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4830
|
-
} | undefined;
|
|
4831
|
-
} & {
|
|
4832
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4833
|
-
"v-slot:label"?: false | (() => VNodeChild) | undefined;
|
|
4834
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4835
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4836
|
-
}, () => false | JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4837
|
-
'click:close': (e: MouseEvent) => true;
|
|
4838
|
-
'update:modelValue': (value: boolean) => true;
|
|
4839
|
-
'group:selected': (val: {
|
|
4840
|
-
value: boolean;
|
|
4841
|
-
}) => true;
|
|
4842
|
-
click: (e: MouseEvent | KeyboardEvent) => true;
|
|
4843
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
4844
|
-
replace: boolean;
|
|
4845
|
-
filter: boolean;
|
|
4846
|
-
exact: boolean;
|
|
4847
|
-
label: boolean;
|
|
4848
|
-
draggable: boolean;
|
|
4849
|
-
disabled: boolean;
|
|
4850
|
-
size: string | number;
|
|
4851
|
-
tag: string;
|
|
4852
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4853
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4854
|
-
modelValue: boolean;
|
|
4855
|
-
ripple: boolean;
|
|
4856
|
-
closable: boolean;
|
|
4857
|
-
closeIcon: string | JSXComponent<any>;
|
|
4858
|
-
closeLabel: string;
|
|
4859
|
-
pill: boolean;
|
|
4860
|
-
filterIcon: string;
|
|
4861
|
-
} & {
|
|
4862
|
-
link?: boolean | undefined;
|
|
4863
|
-
border?: string | number | boolean | undefined;
|
|
4864
|
-
color?: string | undefined;
|
|
4865
|
-
value?: any;
|
|
4866
|
-
text?: string | undefined;
|
|
4867
|
-
onClick?: (((...args: any[]) => any) | ((...args: any[]) => any)[]) | undefined;
|
|
4868
|
-
onClickOnce?: (((...args: any[]) => any) | ((...args: any[]) => any)[]) | undefined;
|
|
4869
|
-
href?: string | undefined;
|
|
4870
|
-
elevation?: string | number | undefined;
|
|
4871
|
-
to?: RouteLocationRaw | undefined;
|
|
4872
|
-
theme?: string | undefined;
|
|
4873
|
-
rounded?: string | number | boolean | undefined;
|
|
4874
|
-
selectedClass?: string | undefined;
|
|
4875
|
-
prependIcon?: (string | JSXComponent<any>) | undefined;
|
|
4876
|
-
appendIcon?: (string | JSXComponent<any>) | undefined;
|
|
4877
|
-
activeClass?: string | undefined;
|
|
4878
|
-
appendAvatar?: string | undefined;
|
|
4879
|
-
prependAvatar?: string | undefined;
|
|
4880
|
-
} & {
|
|
4881
|
-
$children?: {} | VNodeChild | {
|
|
4882
|
-
default?: (() => VNodeChild) | undefined;
|
|
4883
|
-
label?: (() => VNodeChild) | undefined;
|
|
4884
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4885
|
-
append?: (() => VNodeChild) | undefined;
|
|
4886
|
-
};
|
|
4887
|
-
$slots?: {
|
|
4888
|
-
default?: (() => VNodeChild) | undefined;
|
|
4889
|
-
label?: (() => VNodeChild) | undefined;
|
|
4890
|
-
prepend?: (() => VNodeChild) | undefined;
|
|
4891
|
-
append?: (() => VNodeChild) | undefined;
|
|
4892
|
-
} | undefined;
|
|
4893
|
-
'v-slots'?: {
|
|
4894
|
-
default?: false | (() => VNodeChild) | undefined;
|
|
4895
|
-
label?: false | (() => VNodeChild) | undefined;
|
|
4896
|
-
prepend?: false | (() => VNodeChild) | undefined;
|
|
4897
|
-
append?: false | (() => VNodeChild) | undefined;
|
|
4898
|
-
} | undefined;
|
|
4899
|
-
} & {
|
|
4900
|
-
"v-slot:default"?: false | (() => VNodeChild) | undefined;
|
|
4901
|
-
"v-slot:label"?: false | (() => VNodeChild) | undefined;
|
|
4902
|
-
"v-slot:prepend"?: false | (() => VNodeChild) | undefined;
|
|
4903
|
-
"v-slot:append"?: false | (() => VNodeChild) | undefined;
|
|
4904
|
-
} & {
|
|
4905
|
-
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4906
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4907
|
-
"onGroup:selected"?: ((val: {
|
|
4908
|
-
value: boolean;
|
|
4909
|
-
}) => any) | undefined;
|
|
4910
|
-
"onClick:close"?: ((e: MouseEvent) => any) | undefined;
|
|
4911
|
-
}, {
|
|
4912
|
-
replace: boolean;
|
|
4913
|
-
link: boolean;
|
|
4914
|
-
filter: boolean;
|
|
4915
|
-
exact: boolean;
|
|
4916
|
-
label: boolean;
|
|
4917
|
-
draggable: boolean;
|
|
4918
|
-
disabled: boolean;
|
|
4919
|
-
size: string | number;
|
|
4920
|
-
tag: string;
|
|
4921
|
-
rounded: string | number | boolean;
|
|
4922
|
-
density: "default" | "compact" | "comfortable" | null;
|
|
4923
|
-
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4924
|
-
modelValue: boolean;
|
|
4925
|
-
ripple: boolean;
|
|
4926
|
-
closable: boolean;
|
|
4927
|
-
closeIcon: string | JSXComponent<any>;
|
|
4928
|
-
closeLabel: string;
|
|
4929
|
-
pill: boolean;
|
|
4930
|
-
filterIcon: string;
|
|
4931
|
-
}>;
|
|
4497
|
+
ABtnPrimary: any;
|
|
4498
|
+
ABtnSecondary: any;
|
|
4499
|
+
ABtnTertiary: any;
|
|
4500
|
+
ABtnIcon: any;
|
|
4501
|
+
AChipNoLink: any;
|
|
4932
4502
|
};
|
|
4933
4503
|
commonDefaults: () => {
|
|
4934
4504
|
global: {};
|
|
@@ -5046,7 +4616,7 @@ export declare function useFilterHelpers(): {
|
|
|
5046
4616
|
};
|
|
5047
4617
|
|
|
5048
4618
|
export declare function useGrant(): {
|
|
5049
|
-
grantOptions:
|
|
4619
|
+
grantOptions: Ref<{
|
|
5050
4620
|
value: Grant;
|
|
5051
4621
|
title: string;
|
|
5052
4622
|
color?: string | undefined;
|
|
@@ -5056,7 +4626,7 @@ export declare function useGrant(): {
|
|
|
5056
4626
|
};
|
|
5057
4627
|
|
|
5058
4628
|
export declare function useGrantOrigin(): {
|
|
5059
|
-
grantOriginOptions:
|
|
4629
|
+
grantOriginOptions: Ref<{
|
|
5060
4630
|
value: GrantOrigin;
|
|
5061
4631
|
title: string;
|
|
5062
4632
|
color?: string | undefined;
|
|
@@ -5075,7 +4645,7 @@ export declare function useJobApi<JobType extends Job = Job>(client: () => Axios
|
|
|
5075
4645
|
};
|
|
5076
4646
|
|
|
5077
4647
|
export declare function useJobResource<T extends JobResource = JobResource>(customJobs?: ValueObjectOption<T>[]): {
|
|
5078
|
-
jobResourceOptions:
|
|
4648
|
+
jobResourceOptions: Ref<{
|
|
5079
4649
|
value: UnwrapRef<T>;
|
|
5080
4650
|
title: string;
|
|
5081
4651
|
color?: string | undefined;
|
|
@@ -5085,7 +4655,7 @@ export declare function useJobResource<T extends JobResource = JobResource>(cust
|
|
|
5085
4655
|
};
|
|
5086
4656
|
|
|
5087
4657
|
export declare function useJobStatus(): {
|
|
5088
|
-
jobStatusOptions:
|
|
4658
|
+
jobStatusOptions: Ref<{
|
|
5089
4659
|
value: JobStatus;
|
|
5090
4660
|
title: string;
|
|
5091
4661
|
color?: string | undefined;
|
|
@@ -5095,11 +4665,11 @@ export declare function useJobStatus(): {
|
|
|
5095
4665
|
};
|
|
5096
4666
|
|
|
5097
4667
|
export declare function useLanguageSettings(): {
|
|
5098
|
-
currentLanguageCode: Readonly<
|
|
4668
|
+
currentLanguageCode: Readonly<Ref<LanguageCode | "default">>;
|
|
5099
4669
|
};
|
|
5100
4670
|
|
|
5101
4671
|
export declare function useLogLevel(): {
|
|
5102
|
-
logLevelOptions:
|
|
4672
|
+
logLevelOptions: Ref<{
|
|
5103
4673
|
value: LogLevel;
|
|
5104
4674
|
title: string;
|
|
5105
4675
|
color?: string | undefined;
|
|
@@ -5137,9 +4707,9 @@ export declare function usePermissionGroupFactory(): {
|
|
|
5137
4707
|
};
|
|
5138
4708
|
|
|
5139
4709
|
export declare function useTheme(): {
|
|
5140
|
-
settings: Readonly<
|
|
5141
|
-
theme: Readonly<
|
|
5142
|
-
toolbarColor: Readonly<
|
|
4710
|
+
settings: Readonly<Ref<ThemeSettings>>;
|
|
4711
|
+
theme: Readonly<Ref<Theme>>;
|
|
4712
|
+
toolbarColor: Readonly<Ref<"white" | "#1A1A1A">>;
|
|
5143
4713
|
toggleTheme: () => void;
|
|
5144
4714
|
setThemeAuto: () => void;
|
|
5145
4715
|
setThemeDark: () => void;
|
|
@@ -5147,31 +4717,42 @@ export declare function useTheme(): {
|
|
|
5147
4717
|
};
|
|
5148
4718
|
|
|
5149
4719
|
export declare function useValidate(): {
|
|
5150
|
-
required:
|
|
5151
|
-
requiredIf:
|
|
5152
|
-
minLength:
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
4720
|
+
required: ValidationRuleWithoutParams<any>;
|
|
4721
|
+
requiredIf: (prop: string | boolean | Ref<boolean> | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams<any>;
|
|
4722
|
+
minLength: (min: number | Ref<number>) => ValidationRuleWithParams<{
|
|
4723
|
+
min: number;
|
|
4724
|
+
}, any>;
|
|
4725
|
+
maxLength: (max: number | Ref<number>) => ValidationRuleWithParams<{
|
|
4726
|
+
max: number;
|
|
4727
|
+
}, any>;
|
|
4728
|
+
minValue: (min: string | number | Ref<string> | Ref<number>) => ValidationRuleWithParams<{
|
|
4729
|
+
min: number;
|
|
4730
|
+
}, any>;
|
|
4731
|
+
maxValue: (max: string | number | Ref<string> | Ref<number>) => ValidationRuleWithParams<{
|
|
4732
|
+
max: number;
|
|
4733
|
+
}, any>;
|
|
4734
|
+
between: (min: number | Ref<number>, max: number | Ref<number>) => ValidationRuleWithParams<{
|
|
4735
|
+
min: number;
|
|
4736
|
+
max: number;
|
|
4737
|
+
}, any>;
|
|
4738
|
+
email: ValidationRuleWithoutParams<any>;
|
|
4739
|
+
numeric: ValidationRuleWithoutParams<any>;
|
|
4740
|
+
slug: any;
|
|
4741
|
+
url: ValidationRuleWithoutParams<any>;
|
|
4742
|
+
stringArrayItemLength: (min: number, max: number) => {
|
|
4743
|
+
$validator: (value: string[]) => boolean;
|
|
4744
|
+
$params: {
|
|
4745
|
+
min: number;
|
|
4746
|
+
max: number;
|
|
4747
|
+
type: string;
|
|
4748
|
+
};
|
|
4749
|
+
};
|
|
5162
4750
|
};
|
|
5163
4751
|
|
|
5164
|
-
declare function useValidateBetween(): (min: number | Ref_2<number>, max: number | Ref_2<number>) => ValidationRuleWithParams<{
|
|
5165
|
-
min: number;
|
|
5166
|
-
max: number;
|
|
5167
|
-
}, any>;
|
|
5168
|
-
|
|
5169
|
-
declare function useValidateEmail(): ValidationRuleWithoutParams<any>;
|
|
5170
|
-
|
|
5171
4752
|
export declare function useValidateLatitude(): any;
|
|
5172
4753
|
|
|
5173
4754
|
export declare function useValidateLatitudeNotZeroAsLongitude(): (value: string, siblings: {
|
|
5174
|
-
longitudeText:
|
|
4755
|
+
longitudeText: Ref<string>;
|
|
5175
4756
|
}, vm: {
|
|
5176
4757
|
required: boolean;
|
|
5177
4758
|
}) => boolean;
|
|
@@ -5179,48 +4760,13 @@ export declare function useValidateLatitudeNotZeroAsLongitude(): (value: string,
|
|
|
5179
4760
|
export declare function useValidateLongitude(): any;
|
|
5180
4761
|
|
|
5181
4762
|
export declare function useValidateLongitudeNotZeroAsLatitude(): (value: string, siblings: {
|
|
5182
|
-
latitudeText:
|
|
4763
|
+
latitudeText: Ref<string>;
|
|
5183
4764
|
}, vm: {
|
|
5184
4765
|
required: boolean;
|
|
5185
4766
|
}) => boolean;
|
|
5186
4767
|
|
|
5187
|
-
declare function useValidateMaxLength(): (max: number | Ref_2<number>) => ValidationRuleWithParams<{
|
|
5188
|
-
max: number;
|
|
5189
|
-
}, any>;
|
|
5190
|
-
|
|
5191
|
-
declare function useValidateMaxValue(): (max: string | number | Ref_2<string> | Ref_2<number>) => ValidationRuleWithParams<{
|
|
5192
|
-
max: number;
|
|
5193
|
-
}, any>;
|
|
5194
|
-
|
|
5195
|
-
declare function useValidateMinLength(): (min: number | Ref_2<number>) => ValidationRuleWithParams<{
|
|
5196
|
-
min: number;
|
|
5197
|
-
}, any>;
|
|
5198
|
-
|
|
5199
|
-
declare function useValidateMinValue(): (min: string | number | Ref_2<string> | Ref_2<number>) => ValidationRuleWithParams<{
|
|
5200
|
-
min: number;
|
|
5201
|
-
}, any>;
|
|
5202
|
-
|
|
5203
|
-
declare function useValidateNumeric(): ValidationRuleWithoutParams<any>;
|
|
5204
|
-
|
|
5205
|
-
declare function useValidateRequired(): ValidationRuleWithoutParams<any>;
|
|
5206
|
-
|
|
5207
|
-
declare function useValidateRequiredIf(): (prop: string | boolean | Ref_2<boolean> | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams<any>;
|
|
5208
|
-
|
|
5209
4768
|
export declare function useValidateSlovakPhoneNumber(): any;
|
|
5210
4769
|
|
|
5211
|
-
declare function useValidateSlug(): any;
|
|
5212
|
-
|
|
5213
|
-
declare function useValidateStringArrayItemLength(): (min: number, max: number) => {
|
|
5214
|
-
$validator: (value: string[]) => boolean;
|
|
5215
|
-
$params: {
|
|
5216
|
-
min: number;
|
|
5217
|
-
max: number;
|
|
5218
|
-
type: string;
|
|
5219
|
-
};
|
|
5220
|
-
};
|
|
5221
|
-
|
|
5222
|
-
declare function useValidateUrl(): ValidationRuleWithoutParams<any>;
|
|
5223
|
-
|
|
5224
4770
|
declare interface ValidationError {
|
|
5225
4771
|
field: string;
|
|
5226
4772
|
errors: string[];
|