@xy-planning-network/trees 0.10.5 → 0.10.6-rc1
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/style.css +1 -1
- package/dist/trees.es.js +4084 -4179
- package/dist/trees.umd.js +10 -10
- package/package.json +5 -5
- package/src/lib-components/forms/BaseInput.vue +18 -29
- package/src/lib-components/forms/Checkbox.vue +8 -9
- package/src/lib-components/forms/DateRangePicker.vue +21 -22
- package/src/lib-components/forms/DateTimeInput.vue +14 -24
- package/src/lib-components/forms/MultiCheckboxes.vue +33 -35
- package/src/lib-components/forms/Radio.vue +8 -11
- package/src/lib-components/forms/RadioCards.vue +8 -12
- package/src/lib-components/forms/Select.vue +10 -26
- package/src/lib-components/forms/TextArea.vue +11 -17
- package/src/lib-components/forms/Toggle.vue +6 -7
- package/src/lib-components/forms/YesOrNoRadio.vue +10 -12
- package/src/lib-components/layout/DateFilter.vue +8 -4
- package/src/lib-components/lists/DynamicTable.vue +7 -8
- package/src/lib-components/navigation/ActionsDropdown.vue +2 -0
- package/src/lib-components/navigation/Paginator.vue +17 -20
- package/src/lib-components/navigation/Tabs.vue +6 -18
- package/src/lib-components/overlays/ContentModal.vue +13 -9
- package/src/lib-components/overlays/Modal.vue +14 -11
- package/src/lib-components/overlays/Popover/Popover.vue +2 -0
- package/src/lib-components/overlays/Slideover.vue +13 -15
- package/types/composables/forms.d.ts +16 -2
- package/types/composables/nav.d.ts +1 -1
- package/types/composables/useActionItems.d.ts +1 -1
- package/types/composables/useFlashes.d.ts +1 -1
- package/types/composables/useSpinner.d.ts +6 -6
- package/types/composables/useTable.d.ts +1 -1
- package/types/entry.d.ts +0 -2
- package/types/helpers/Slots.d.ts +2 -0
- package/types/lib-components/forms/BaseInput.vue.d.ts +13 -36
- package/types/lib-components/forms/Checkbox.vue.d.ts +10 -35
- package/types/lib-components/forms/DateRangePicker.vue.d.ts +15 -38
- package/types/lib-components/forms/DateTimeInput.vue.d.ts +10 -35
- package/types/lib-components/forms/FieldsetLegend.vue.d.ts +4 -29
- package/types/lib-components/forms/InputError.vue.d.ts +4 -25
- package/types/lib-components/forms/InputHelp.vue.d.ts +4 -27
- package/types/lib-components/forms/InputLabel.vue.d.ts +4 -29
- package/types/lib-components/forms/MultiCheckboxes.vue.d.ts +13 -36
- package/types/lib-components/forms/Radio.vue.d.ts +10 -35
- package/types/lib-components/forms/RadioCards.vue.d.ts +16 -13
- package/types/lib-components/forms/Select.vue.d.ts +10 -35
- package/types/lib-components/forms/TextArea.vue.d.ts +10 -35
- package/types/lib-components/forms/Toggle.vue.d.ts +12 -36
- package/types/lib-components/forms/YesOrNoRadio.vue.d.ts +10 -35
- package/types/lib-components/indicators/InlineAlert.vue.d.ts +11 -42
- package/types/lib-components/indicators/ProgressCircles.vue.d.ts +3 -12
- package/types/lib-components/indicators/ProgressCirclesLabeled.vue.d.ts +3 -12
- package/types/lib-components/indicators/XYSpinner.vue.d.ts +1 -1
- package/types/lib-components/layout/DateFilter.vue.d.ts +7 -16
- package/types/lib-components/layout/SidebarLayout.vue.d.ts +4 -25
- package/types/lib-components/layout/StackedLayout.vue.d.ts +4 -25
- package/types/lib-components/lists/Cards.vue.d.ts +3 -12
- package/types/lib-components/lists/DataTable.vue.d.ts +4 -31
- package/types/lib-components/lists/DetailList.vue.d.ts +5 -36
- package/types/lib-components/lists/DownloadCell.vue.d.ts +3 -12
- package/types/lib-components/lists/DynamicTable.vue.d.ts +8 -35
- package/types/lib-components/lists/StaticTable.vue.d.ts +21 -0
- package/types/lib-components/lists/StaticTableActionSlot.vue.d.ts +27 -0
- package/types/lib-components/lists/Table.vue.d.ts +39 -0
- package/types/lib-components/lists/TableActionButtons.vue.d.ts +4 -25
- package/types/lib-components/navigation/ActionsDropdown.vue.d.ts +4 -26
- package/types/lib-components/navigation/ActionsDropdownCallback.vue.d.ts +18 -0
- package/types/lib-components/navigation/ActionsDropdownEmit.vue.d.ts +22 -0
- package/types/lib-components/navigation/Paginator.vue.d.ts +7 -17
- package/types/lib-components/navigation/Steps.vue.d.ts +6 -33
- package/types/lib-components/navigation/Tabs.vue.d.ts +12 -37
- package/types/lib-components/overlays/AlertModal.vue.d.ts +68 -0
- package/types/lib-components/overlays/ContentModal.vue.d.ts +14 -35
- package/types/lib-components/overlays/Flash.vue.d.ts +1 -1
- package/types/lib-components/overlays/Modal.vue.d.ts +19 -49
- package/types/lib-components/overlays/Popover/Popover.vue.d.ts +4 -27
- package/types/lib-components/overlays/Popover/PopoverContent.vue.d.ts +1 -1
- package/types/lib-components/overlays/Slideover.vue.d.ts +12 -21
- package/types/lib-components/overlays/Spinner.vue.d.ts +1 -1
- package/types/lib-components/overlays/Tooltip.vue.d.ts +4 -27
|
@@ -1,41 +1,16 @@
|
|
|
1
1
|
import type { TextareaInput } from "../../composables/forms";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
}
|
|
11
|
-
help: string;
|
|
12
|
-
label: string;
|
|
13
|
-
modelValue: undefined;
|
|
14
|
-
placeholder: string;
|
|
15
|
-
}>>> & {
|
|
16
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
"onUpdate:error"?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
}, {
|
|
2
|
+
declare let __VLS_typeProps: TextareaInput;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: TextareaInput["modelValue"];
|
|
5
|
+
} & typeof __VLS_typeProps;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (modelValue: string | number | null | undefined) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((modelValue: string | number | null | undefined) => any) | undefined;
|
|
10
|
+
}>, {
|
|
19
11
|
label: string;
|
|
20
12
|
modelValue: string | number | null;
|
|
21
13
|
help: string;
|
|
22
14
|
placeholder: string;
|
|
23
|
-
}, {}>;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
16
|
export default _default;
|
|
25
|
-
type __VLS_WithDefaults<P, D> = {
|
|
26
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
-
default: D[K];
|
|
28
|
-
}> : P[K];
|
|
29
|
-
};
|
|
30
|
-
type __VLS_Prettify<T> = {
|
|
31
|
-
[K in keyof T]: T[K];
|
|
32
|
-
} & {};
|
|
33
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
-
type __VLS_TypePropsToOption<T> = {
|
|
35
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
-
} : {
|
|
38
|
-
type: import('vue').PropType<T[K]>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,40 +1,16 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"update:modelValue": (
|
|
10
|
-
}, string, import("vue").
|
|
11
|
-
modelValue?: boolean | undefined;
|
|
12
|
-
label?: string | undefined;
|
|
13
|
-
help?: string | undefined;
|
|
1
|
+
declare let __VLS_typeProps: {
|
|
2
|
+
label?: string;
|
|
3
|
+
help?: string;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_PublicProps = {
|
|
6
|
+
modelValue?: boolean;
|
|
7
|
+
} & typeof __VLS_typeProps;
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
14
12
|
}>, {
|
|
15
13
|
label: string;
|
|
16
14
|
help: string;
|
|
17
|
-
}
|
|
18
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
}, {
|
|
20
|
-
label: string;
|
|
21
|
-
help: string;
|
|
22
|
-
}, {}>;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
16
|
export default _default;
|
|
24
|
-
type __VLS_WithDefaults<P, D> = {
|
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
-
default: D[K];
|
|
27
|
-
}> : P[K];
|
|
28
|
-
};
|
|
29
|
-
type __VLS_Prettify<T> = {
|
|
30
|
-
[K in keyof T]: T[K];
|
|
31
|
-
} & {};
|
|
32
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
|
-
type __VLS_TypePropsToOption<T> = {
|
|
34
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
36
|
-
} : {
|
|
37
|
-
type: import('vue').PropType<T[K]>;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
@@ -1,41 +1,16 @@
|
|
|
1
1
|
import type { BooleanInput } from "../../composables/forms";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
}
|
|
11
|
-
help: string;
|
|
12
|
-
label: string;
|
|
13
|
-
modelValue: undefined;
|
|
14
|
-
placeholder: string;
|
|
15
|
-
}>>> & {
|
|
16
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
"onUpdate:error"?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
}, {
|
|
2
|
+
declare let __VLS_typeProps: BooleanInput;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: BooleanInput["modelValue"];
|
|
5
|
+
} & typeof __VLS_typeProps;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (modelValue: boolean | null | undefined) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((modelValue: boolean | null | undefined) => any) | undefined;
|
|
10
|
+
}>, {
|
|
19
11
|
label: string;
|
|
20
12
|
modelValue: boolean | null;
|
|
21
13
|
help: string;
|
|
22
14
|
placeholder: string;
|
|
23
|
-
}, {}>;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
16
|
export default _default;
|
|
25
|
-
type __VLS_WithDefaults<P, D> = {
|
|
26
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
-
default: D[K];
|
|
28
|
-
}> : P[K];
|
|
29
|
-
};
|
|
30
|
-
type __VLS_Prettify<T> = {
|
|
31
|
-
[K in keyof T]: T[K];
|
|
32
|
-
} & {};
|
|
33
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
-
type __VLS_TypePropsToOption<T> = {
|
|
35
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
-
} : {
|
|
38
|
-
type: import('vue').PropType<T[K]>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
btnLink?: string | undefined;
|
|
3
3
|
btnText?: string | undefined;
|
|
4
4
|
content: string | string[];
|
|
@@ -6,19 +6,12 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
6
6
|
secondaryBtnLink?: string | undefined;
|
|
7
7
|
secondaryBtnText?: string | undefined;
|
|
8
8
|
title?: string | undefined;
|
|
9
|
-
kind: "
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
secondaryBtnText: string;
|
|
16
|
-
title: string;
|
|
17
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
close: (closed: true) => void;
|
|
19
|
-
click: (e: Event) => void;
|
|
20
|
-
"click:secondary": (e: Event) => void;
|
|
21
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
9
|
+
kind: "info" | "success" | "alert" | "warn";
|
|
10
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
click: (e: Event) => any;
|
|
12
|
+
close: (closed: true) => any;
|
|
13
|
+
"click:secondary": (e: Event) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
22
15
|
btnLink?: string | undefined;
|
|
23
16
|
btnText?: string | undefined;
|
|
24
17
|
content: string | string[];
|
|
@@ -26,41 +19,17 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
26
19
|
secondaryBtnLink?: string | undefined;
|
|
27
20
|
secondaryBtnText?: string | undefined;
|
|
28
21
|
title?: string | undefined;
|
|
29
|
-
kind: "
|
|
30
|
-
}
|
|
31
|
-
btnLink: string;
|
|
32
|
-
btnText: string;
|
|
33
|
-
dismissable: boolean;
|
|
34
|
-
secondaryBtnLink: string;
|
|
35
|
-
secondaryBtnText: string;
|
|
36
|
-
title: string;
|
|
37
|
-
}>>> & {
|
|
22
|
+
kind: "info" | "success" | "alert" | "warn";
|
|
23
|
+
}> & Readonly<{
|
|
38
24
|
onClick?: ((e: Event) => any) | undefined;
|
|
39
25
|
onClose?: ((closed: true) => any) | undefined;
|
|
40
26
|
"onClick:secondary"?: ((e: Event) => any) | undefined;
|
|
41
|
-
}
|
|
27
|
+
}>, {
|
|
42
28
|
title: string;
|
|
43
29
|
btnText: string;
|
|
44
30
|
btnLink: string;
|
|
45
31
|
dismissable: boolean;
|
|
46
32
|
secondaryBtnLink: string;
|
|
47
33
|
secondaryBtnText: string;
|
|
48
|
-
}, {}>;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
35
|
export default _default;
|
|
50
|
-
type __VLS_WithDefaults<P, D> = {
|
|
51
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
52
|
-
default: D[K];
|
|
53
|
-
}> : P[K];
|
|
54
|
-
};
|
|
55
|
-
type __VLS_Prettify<T> = {
|
|
56
|
-
[K in keyof T]: T[K];
|
|
57
|
-
} & {};
|
|
58
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
59
|
-
type __VLS_TypePropsToOption<T> = {
|
|
60
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
61
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
62
|
-
} : {
|
|
63
|
-
type: import('vue').PropType<T[K]>;
|
|
64
|
-
required: true;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
@@ -2,7 +2,7 @@ interface Step {
|
|
|
2
2
|
name: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
6
|
/**
|
|
7
7
|
* current sets the "current" step using an index of the steps prop
|
|
8
8
|
* to show all steps in an "incomplete" state set step to -1
|
|
@@ -10,7 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
|
10
10
|
*/
|
|
11
11
|
current: number;
|
|
12
12
|
steps: Step[];
|
|
13
|
-
}
|
|
13
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
14
14
|
/**
|
|
15
15
|
* current sets the "current" step using an index of the steps prop
|
|
16
16
|
* to show all steps in an "incomplete" state set step to -1
|
|
@@ -18,14 +18,5 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
|
18
18
|
*/
|
|
19
19
|
current: number;
|
|
20
20
|
steps: Step[];
|
|
21
|
-
}
|
|
21
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
export default _default;
|
|
23
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
-
type __VLS_TypePropsToOption<T> = {
|
|
25
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
-
} : {
|
|
28
|
-
type: import('vue').PropType<T[K]>;
|
|
29
|
-
required: true;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
@@ -2,7 +2,7 @@ interface Step {
|
|
|
2
2
|
name: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
|
5
|
+
declare const _default: import("vue").DefineComponent<{
|
|
6
6
|
/**
|
|
7
7
|
* current sets the "current" step using an index of the steps prop
|
|
8
8
|
* to show all steps in an "incomplete" state set step to -1
|
|
@@ -10,7 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
|
10
10
|
*/
|
|
11
11
|
current: number;
|
|
12
12
|
steps: Step[];
|
|
13
|
-
}
|
|
13
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
14
14
|
/**
|
|
15
15
|
* current sets the "current" step using an index of the steps prop
|
|
16
16
|
* to show all steps in an "incomplete" state set step to -1
|
|
@@ -18,14 +18,5 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
|
18
18
|
*/
|
|
19
19
|
current: number;
|
|
20
20
|
steps: Step[];
|
|
21
|
-
}
|
|
21
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
export default _default;
|
|
23
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
-
type __VLS_TypePropsToOption<T> = {
|
|
25
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
-
} : {
|
|
28
|
-
type: import('vue').PropType<T[K]>;
|
|
29
|
-
required: true;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
}>;
|
|
4
4
|
export default _default;
|
|
@@ -1,25 +1,16 @@
|
|
|
1
1
|
import { DateRange } from "../../composables/date";
|
|
2
2
|
import { SortDir } from "../../composables/list";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
dateRange: DateRange;
|
|
5
5
|
sortDir: SortDir;
|
|
6
|
-
}
|
|
7
|
-
"sort-dir-changed": (val: SortDir) =>
|
|
8
|
-
"date-range-changed": (val: DateRange) =>
|
|
9
|
-
}, string, import("vue").
|
|
6
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
+
"sort-dir-changed": (val: SortDir) => any;
|
|
8
|
+
"date-range-changed": (val: DateRange) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<{
|
|
10
10
|
dateRange: DateRange;
|
|
11
11
|
sortDir: SortDir;
|
|
12
|
-
}
|
|
12
|
+
}> & Readonly<{
|
|
13
13
|
"onSort-dir-changed"?: ((val: SortDir) => any) | undefined;
|
|
14
14
|
"onDate-range-changed"?: ((val: DateRange) => any) | undefined;
|
|
15
|
-
}, {}, {}>;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
-
type __VLS_TypePropsToOption<T> = {
|
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
-
} : {
|
|
22
|
-
type: import('vue').PropType<T[K]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import * as NavTypes from "../../composables/nav";
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
activeUrl?: string | undefined;
|
|
4
4
|
iconUrl: string;
|
|
5
5
|
navigation: NavTypes.Item[];
|
|
6
6
|
userNavigation: NavTypes.Item[];
|
|
7
|
-
}
|
|
8
|
-
activeUrl: string;
|
|
9
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
7
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
10
8
|
activeUrl?: string | undefined;
|
|
11
9
|
iconUrl: string;
|
|
12
10
|
navigation: NavTypes.Item[];
|
|
13
11
|
userNavigation: NavTypes.Item[];
|
|
14
|
-
}>, {
|
|
15
|
-
activeUrl: string;
|
|
16
|
-
}>>>, {
|
|
12
|
+
}> & Readonly<{}>, {
|
|
17
13
|
activeUrl: string;
|
|
18
|
-
}, {}>, {
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
19
15
|
"sidebar-nav"?(_: {}): any;
|
|
20
16
|
"sidebar-nav"?(_: {}): any;
|
|
21
17
|
"sidebar-bottom"?(_: {}): any;
|
|
@@ -24,25 +20,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
24
20
|
default?(_: {}): any;
|
|
25
21
|
}>;
|
|
26
22
|
export default _default;
|
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
}> : P[K];
|
|
31
|
-
};
|
|
32
|
-
type __VLS_Prettify<T> = {
|
|
33
|
-
[K in keyof T]: T[K];
|
|
34
|
-
} & {};
|
|
35
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
24
|
new (): {
|
|
37
25
|
$slots: S;
|
|
38
26
|
};
|
|
39
27
|
};
|
|
40
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
41
|
-
type __VLS_TypePropsToOption<T> = {
|
|
42
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
43
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
44
|
-
} : {
|
|
45
|
-
type: import('vue').PropType<T[K]>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
@@ -1,47 +1,26 @@
|
|
|
1
1
|
import * as NavTypes from "../../composables/nav";
|
|
2
2
|
import User from "../../composables/user";
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
4
|
activeUrl?: string | undefined;
|
|
5
5
|
currentUser: User;
|
|
6
6
|
iconUrl: string;
|
|
7
7
|
navigation: NavTypes.Item[];
|
|
8
8
|
userNavigation: NavTypes.Item[];
|
|
9
|
-
}
|
|
10
|
-
activeUrl: string;
|
|
11
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
9
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
12
10
|
activeUrl?: string | undefined;
|
|
13
11
|
currentUser: User;
|
|
14
12
|
iconUrl: string;
|
|
15
13
|
navigation: NavTypes.Item[];
|
|
16
14
|
userNavigation: NavTypes.Item[];
|
|
17
|
-
}>, {
|
|
18
|
-
activeUrl: string;
|
|
19
|
-
}>>>, {
|
|
15
|
+
}> & Readonly<{}>, {
|
|
20
16
|
activeUrl: string;
|
|
21
|
-
}, {}>, {
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
22
18
|
header?(_: {}): any;
|
|
23
19
|
default?(_: {}): any;
|
|
24
20
|
}>;
|
|
25
21
|
export default _default;
|
|
26
|
-
type __VLS_WithDefaults<P, D> = {
|
|
27
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
28
|
-
default: D[K];
|
|
29
|
-
}> : P[K];
|
|
30
|
-
};
|
|
31
|
-
type __VLS_Prettify<T> = {
|
|
32
|
-
[K in keyof T]: T[K];
|
|
33
|
-
} & {};
|
|
34
22
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
23
|
new (): {
|
|
36
24
|
$slots: S;
|
|
37
25
|
};
|
|
38
26
|
};
|
|
39
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
40
|
-
type __VLS_TypePropsToOption<T> = {
|
|
41
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
42
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
43
|
-
} : {
|
|
44
|
-
type: import('vue').PropType<T[K]>;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
@@ -1,21 +1,12 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
cards: {
|
|
3
3
|
primary: string;
|
|
4
4
|
secondary: string;
|
|
5
5
|
}[];
|
|
6
|
-
}
|
|
6
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
7
7
|
cards: {
|
|
8
8
|
primary: string;
|
|
9
9
|
secondary: string;
|
|
10
10
|
}[];
|
|
11
|
-
}
|
|
11
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
13
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
-
type __VLS_TypePropsToOption<T> = {
|
|
15
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
-
} : {
|
|
18
|
-
type: import('vue').PropType<T[K]>;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
@@ -1,40 +1,13 @@
|
|
|
1
1
|
import type { TableActions, TableColumns, TableRowsData } from "../../composables/table";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
tableActions?: TableActions<any> | undefined;
|
|
4
4
|
tableColumns: TableColumns<any>;
|
|
5
5
|
tableData: TableRowsData;
|
|
6
|
-
}
|
|
7
|
-
tableActions: () => {
|
|
8
|
-
type: string;
|
|
9
|
-
actions: never[];
|
|
10
|
-
};
|
|
11
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
6
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
12
7
|
tableActions?: TableActions<any> | undefined;
|
|
13
8
|
tableColumns: TableColumns<any>;
|
|
14
9
|
tableData: TableRowsData;
|
|
15
|
-
}>, {
|
|
16
|
-
tableActions: () => {
|
|
17
|
-
type: string;
|
|
18
|
-
actions: never[];
|
|
19
|
-
};
|
|
20
|
-
}>>>, {
|
|
10
|
+
}> & Readonly<{}>, {
|
|
21
11
|
tableActions: TableActions<any>;
|
|
22
|
-
}, {}>;
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
13
|
export default _default;
|
|
24
|
-
type __VLS_WithDefaults<P, D> = {
|
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
-
default: D[K];
|
|
27
|
-
}> : P[K];
|
|
28
|
-
};
|
|
29
|
-
type __VLS_Prettify<T> = {
|
|
30
|
-
[K in keyof T]: T[K];
|
|
31
|
-
} & {};
|
|
32
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
|
-
type __VLS_TypePropsToOption<T> = {
|
|
34
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
36
|
-
} : {
|
|
37
|
-
type: import('vue').PropType<T[K]>;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SortDir } from "../../composables/list";
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
/**
|
|
4
4
|
* borderless removes the default border styling applied around list items.
|
|
5
5
|
* This is useful when filters or pagination navigation components show,
|
|
@@ -31,17 +31,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
31
31
|
* url is the endpoint to retrieve list data from
|
|
32
32
|
*/
|
|
33
33
|
url: string;
|
|
34
|
-
}
|
|
35
|
-
borderless: boolean;
|
|
36
|
-
disableNavigation: boolean;
|
|
37
|
-
disableDate: boolean;
|
|
38
|
-
defaultSort: string;
|
|
39
|
-
defaultSortDir: string;
|
|
40
|
-
perPage: number;
|
|
41
|
-
}>, {
|
|
34
|
+
}, {
|
|
42
35
|
refresh: () => void;
|
|
43
36
|
reset: () => void;
|
|
44
|
-
},
|
|
37
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
45
38
|
/**
|
|
46
39
|
* borderless removes the default border styling applied around list items.
|
|
47
40
|
* This is useful when filters or pagination navigation components show,
|
|
@@ -73,46 +66,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
73
66
|
* url is the endpoint to retrieve list data from
|
|
74
67
|
*/
|
|
75
68
|
url: string;
|
|
76
|
-
}>, {
|
|
77
|
-
borderless: boolean;
|
|
78
|
-
disableNavigation: boolean;
|
|
79
|
-
disableDate: boolean;
|
|
80
|
-
defaultSort: string;
|
|
81
|
-
defaultSortDir: string;
|
|
82
|
-
perPage: number;
|
|
83
|
-
}>>>, {
|
|
69
|
+
}> & Readonly<{}>, {
|
|
84
70
|
borderless: boolean;
|
|
85
71
|
defaultSort: string;
|
|
86
72
|
defaultSortDir: SortDir;
|
|
87
73
|
disableDate: boolean;
|
|
88
74
|
disableNavigation: boolean;
|
|
89
75
|
perPage: number;
|
|
90
|
-
}, {}>, {
|
|
76
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
91
77
|
default?(_: {
|
|
92
78
|
item: any;
|
|
93
79
|
}): any;
|
|
94
80
|
empty?(_: {}): any;
|
|
95
81
|
}>;
|
|
96
82
|
export default _default;
|
|
97
|
-
type __VLS_WithDefaults<P, D> = {
|
|
98
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
99
|
-
default: D[K];
|
|
100
|
-
}> : P[K];
|
|
101
|
-
};
|
|
102
|
-
type __VLS_Prettify<T> = {
|
|
103
|
-
[K in keyof T]: T[K];
|
|
104
|
-
} & {};
|
|
105
83
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
106
84
|
new (): {
|
|
107
85
|
$slots: S;
|
|
108
86
|
};
|
|
109
87
|
};
|
|
110
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
111
|
-
type __VLS_TypePropsToOption<T> = {
|
|
112
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
113
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
114
|
-
} : {
|
|
115
|
-
type: import('vue').PropType<T[K]>;
|
|
116
|
-
required: true;
|
|
117
|
-
};
|
|
118
|
-
};
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
propsData: Record<string, unknown>;
|
|
3
3
|
attribute: string;
|
|
4
|
-
}
|
|
4
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
5
5
|
propsData: Record<string, unknown>;
|
|
6
6
|
attribute: string;
|
|
7
|
-
}
|
|
7
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
8
|
export default _default;
|
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
-
type __VLS_TypePropsToOption<T> = {
|
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
-
} : {
|
|
14
|
-
type: import('vue').PropType<T[K]>;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
};
|