@xy-planning-network/trees 0.6.6 → 0.6.8
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 +3616 -3183
- package/dist/trees.umd.js +8 -8
- package/package.json +8 -7
- package/src/lib-components/forms/BaseInput.vue +2 -2
- package/src/lib-components/forms/TextArea.vue +2 -2
- package/src/lib-components/lists/DataTable.vue +1 -1
- package/src/lib-components/lists/DynamicTable.vue +1 -1
- package/src/lib-components/navigation/ActionsDropdown.vue +42 -30
- package/src/lib-components/overlays/Popover/Popover.vue +35 -193
- package/src/lib-components/overlays/Tooltip.vue +39 -9
- package/types/composables/useActionItems.d.ts +1 -1
- package/types/composables/useTable.d.ts +1 -1
- package/types/lib-components/forms/BaseInput.vue.d.ts +10 -11
- package/types/lib-components/forms/Checkbox.vue.d.ts +7 -8
- package/types/lib-components/forms/DateRangePicker.vue.d.ts +9 -10
- package/types/lib-components/forms/FieldsetLegend.vue.d.ts +5 -5
- package/types/lib-components/forms/InputHelp.vue.d.ts +6 -6
- package/types/lib-components/forms/InputLabel.vue.d.ts +8 -8
- package/types/lib-components/forms/MultiCheckboxes.vue.d.ts +10 -13
- package/types/lib-components/forms/Radio.vue.d.ts +12 -14
- package/types/lib-components/forms/RadioCards.vue.d.ts +12 -14
- package/types/lib-components/forms/Select.vue.d.ts +13 -15
- package/types/lib-components/forms/TextArea.vue.d.ts +10 -10
- package/types/lib-components/forms/Toggle.vue.d.ts +5 -5
- package/types/lib-components/forms/YesOrNoRadio.vue.d.ts +10 -11
- package/types/lib-components/indicators/XYSpinner.vue.d.ts +1 -1
- package/types/lib-components/layout/DateFilter.vue.d.ts +4 -8
- package/types/lib-components/layout/SidebarLayout.vue.d.ts +6 -9
- package/types/lib-components/layout/StackedLayout.vue.d.ts +7 -11
- package/types/lib-components/lists/Cards.vue.d.ts +2 -4
- package/types/lib-components/lists/DataTable.vue.d.ts +9 -8
- package/types/lib-components/lists/DetailList.vue.d.ts +6 -8
- package/types/lib-components/lists/DownloadCell.vue.d.ts +2 -5
- package/types/lib-components/lists/DynamicTable.vue.d.ts +9 -8
- package/types/lib-components/lists/TableActionButtons.vue.d.ts +7 -7
- package/types/lib-components/navigation/ActionsDropdown.vue.d.ts +6 -6
- package/types/lib-components/navigation/Paginator.vue.d.ts +3 -5
- package/types/lib-components/navigation/Steps.vue.d.ts +9 -11
- package/types/lib-components/navigation/Tabs.vue.d.ts +8 -10
- package/types/lib-components/overlays/ContentModal.vue.d.ts +6 -7
- package/types/lib-components/overlays/Flash.vue.d.ts +1 -1
- package/types/lib-components/overlays/Modal.vue.d.ts +11 -12
- package/types/lib-components/overlays/Popover/Popover.vue.d.ts +10 -10
- package/types/lib-components/overlays/Popover/PopoverContent.vue.d.ts +1 -1
- package/types/lib-components/overlays/Slideover.vue.d.ts +4 -8
- package/types/lib-components/overlays/Spinner.vue.d.ts +1 -1
- package/types/lib-components/overlays/Tooltip.vue.d.ts +10 -10
|
@@ -10,21 +10,19 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
10
10
|
hidePrevious: boolean;
|
|
11
11
|
nextText: string;
|
|
12
12
|
previousText: string;
|
|
13
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("next" | "previous")[], "next" | "previous", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
previousText?: unknown;
|
|
19
|
-
total?: unknown;
|
|
20
|
-
} & {
|
|
13
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("next" | "previous")[], "next" | "previous", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
14
|
+
hideActions?: boolean | undefined;
|
|
15
|
+
hidePrevious?: boolean | undefined;
|
|
16
|
+
nextText?: string | undefined;
|
|
17
|
+
previousText?: string | undefined;
|
|
21
18
|
step: number;
|
|
19
|
+
total: number;
|
|
20
|
+
}>, {
|
|
22
21
|
hideActions: boolean;
|
|
23
22
|
hidePrevious: boolean;
|
|
24
23
|
nextText: string;
|
|
25
24
|
previousText: string;
|
|
26
|
-
|
|
27
|
-
} & {}> & {
|
|
25
|
+
}>>> & {
|
|
28
26
|
onNext?: ((...args: any[]) => any) | undefined;
|
|
29
27
|
onPrevious?: ((...args: any[]) => any) | undefined;
|
|
30
28
|
}, {
|
|
@@ -32,7 +30,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
32
30
|
hidePrevious: boolean;
|
|
33
31
|
nextText: string;
|
|
34
32
|
previousText: string;
|
|
35
|
-
}>;
|
|
33
|
+
}, {}>;
|
|
36
34
|
export default _default;
|
|
37
35
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
36
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -9,22 +9,20 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
9
9
|
pillDesign: boolean;
|
|
10
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (val: string) => void;
|
|
12
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
13
|
-
modelValue?: unknown;
|
|
14
|
-
pillDesign?: unknown;
|
|
15
|
-
tabs?: unknown;
|
|
16
|
-
} & {
|
|
12
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
17
13
|
modelValue: string;
|
|
18
|
-
pillDesign
|
|
19
|
-
tabs: {
|
|
14
|
+
pillDesign?: boolean | undefined;
|
|
15
|
+
tabs: Array<{
|
|
20
16
|
label: string;
|
|
21
17
|
value: string;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
18
|
+
}>;
|
|
19
|
+
}>, {
|
|
20
|
+
pillDesign: boolean;
|
|
21
|
+
}>>> & {
|
|
24
22
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
25
23
|
}, {
|
|
26
24
|
pillDesign: boolean;
|
|
27
|
-
}>;
|
|
25
|
+
}, {}>;
|
|
28
26
|
export default _default;
|
|
29
27
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
28
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -5,17 +5,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
5
5
|
title: string;
|
|
6
6
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
"update:modelValue": (val: boolean) => void;
|
|
8
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
9
|
-
title?: unknown;
|
|
10
|
-
modelValue?: unknown;
|
|
11
|
-
} & {
|
|
12
|
-
title: string;
|
|
8
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
9
|
modelValue: boolean;
|
|
14
|
-
|
|
10
|
+
title?: string | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
title: string;
|
|
13
|
+
}>>> & {
|
|
15
14
|
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
16
15
|
}, {
|
|
17
16
|
title: string;
|
|
18
|
-
}>, {
|
|
17
|
+
}, {}>, {
|
|
19
18
|
icon: (_: {}) => any;
|
|
20
19
|
default: (_: {}) => any;
|
|
21
20
|
}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -13,27 +13,26 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
submit: () => void;
|
|
14
14
|
} & {
|
|
15
15
|
"update:modelValue": (val: boolean) => void;
|
|
16
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
modelValue?: unknown;
|
|
20
|
-
destructive?: unknown;
|
|
21
|
-
submitText?: unknown;
|
|
22
|
-
} & {
|
|
23
|
-
disabled: boolean;
|
|
24
|
-
title: string;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
17
|
+
destructive?: boolean | undefined;
|
|
18
|
+
disabled?: boolean | undefined;
|
|
25
19
|
modelValue: boolean;
|
|
20
|
+
submitText?: string | undefined;
|
|
21
|
+
title?: string | undefined;
|
|
22
|
+
}>, {
|
|
26
23
|
destructive: boolean;
|
|
24
|
+
disabled: boolean;
|
|
27
25
|
submitText: string;
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
title: string;
|
|
27
|
+
}>>> & {
|
|
30
28
|
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
29
|
+
onSubmit?: (() => any) | undefined;
|
|
31
30
|
}, {
|
|
32
31
|
disabled: boolean;
|
|
33
32
|
title: string;
|
|
34
33
|
destructive: boolean;
|
|
35
34
|
submitText: string;
|
|
36
|
-
}>, {
|
|
35
|
+
}, {}>, {
|
|
37
36
|
default: (_: {}) => any;
|
|
38
37
|
buttons: (_: {}) => any;
|
|
39
38
|
}>;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
import type { Placement } from "@floating-ui/vue";
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
as?: string | undefined;
|
|
4
|
-
position?:
|
|
4
|
+
position?: Placement | "auto" | undefined;
|
|
5
5
|
}>, {
|
|
6
6
|
as: string;
|
|
7
7
|
position: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
position: PopoverPosition;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
as?: string | undefined;
|
|
10
|
+
position?: Placement | "auto" | undefined;
|
|
11
|
+
}>, {
|
|
13
12
|
as: string;
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
position: string;
|
|
14
|
+
}>>>, {
|
|
15
|
+
position: Placement | "auto";
|
|
16
16
|
as: string;
|
|
17
|
-
}>, {
|
|
17
|
+
}, {}>, {
|
|
18
18
|
button: (_: {
|
|
19
19
|
open: any;
|
|
20
20
|
close: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
2
|
default: (_: {}) => any;
|
|
3
3
|
}>;
|
|
4
4
|
export default _default;
|
|
@@ -6,18 +6,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
6
6
|
close: (val: boolean) => void;
|
|
7
7
|
} & {
|
|
8
8
|
"update:modelValue": (val: boolean) => void;
|
|
9
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
10
|
-
header?: unknown;
|
|
11
|
-
description?: unknown;
|
|
12
|
-
modelValue?: unknown;
|
|
13
|
-
} & {
|
|
14
|
-
description: string;
|
|
9
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
15
10
|
header: string;
|
|
11
|
+
description: string;
|
|
16
12
|
modelValue: boolean;
|
|
17
|
-
} & {
|
|
13
|
+
}>>> & {
|
|
18
14
|
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
19
15
|
onClose?: ((val: boolean) => any) | undefined;
|
|
20
|
-
}, {}>, {
|
|
16
|
+
}, {}, {}>, {
|
|
21
17
|
default: (_: {}) => any;
|
|
22
18
|
footer: (_: {}) => any;
|
|
23
19
|
}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { Placement } from "@floating-ui/vue";
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
as?: string | undefined;
|
|
4
|
-
position?:
|
|
4
|
+
position?: Placement | "auto" | undefined;
|
|
5
5
|
}>, {
|
|
6
6
|
as: string;
|
|
7
7
|
position: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
position: PopoverPosition;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
as?: string | undefined;
|
|
10
|
+
position?: Placement | "auto" | undefined;
|
|
11
|
+
}>, {
|
|
13
12
|
as: string;
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
position: string;
|
|
14
|
+
}>>>, {
|
|
15
|
+
position: Placement | "auto";
|
|
16
16
|
as: string;
|
|
17
|
-
}>, {
|
|
17
|
+
}, {}>, {
|
|
18
18
|
default: (_: {}) => any;
|
|
19
19
|
}>;
|
|
20
20
|
export default _default;
|