@xy-planning-network/trees 0.9.6 → 0.9.8-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/trees.es.js +1501 -1496
- package/dist/trees.umd.js +4 -4
- package/package.json +1 -1
- package/src/lib-components/forms/BaseInput.vue +4 -0
- package/src/lib-components/forms/Select.vue +11 -2
- package/src/lib-components/forms/TextArea.vue +1 -1
- package/src/lib-components/layout/DateFilter.vue +19 -30
- package/src/lib-components/lists/DetailList.vue +98 -42
- package/types/composables/index.d.ts +2 -1
- package/types/composables/list.d.ts +13 -0
- package/types/helpers/Slots.d.ts +2 -0
- package/types/lib-components/layout/DateFilter.vue.d.ts +5 -12
- package/types/lib-components/lists/DetailList.vue.d.ts +49 -17
- 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/navigation/ActionsDropdownCallback.vue.d.ts +18 -0
- package/types/lib-components/navigation/ActionsDropdownEmit.vue.d.ts +22 -0
- package/types/lib-components/overlays/AlertModal.vue.d.ts +68 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
title: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
modelValue: {
|
|
7
|
+
type: import("vue").PropType<boolean>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
content: {
|
|
11
|
+
type: import("vue").PropType<string | string[]>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
kind: {
|
|
15
|
+
type: import("vue").PropType<"alert" | "warn" | "info" | "success">;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
sticky: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
cancelText: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
submitText: {
|
|
27
|
+
type: import("vue").PropType<string>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
|
+
submit: (e?: void | undefined) => void;
|
|
32
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
title: {
|
|
34
|
+
type: import("vue").PropType<string>;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
modelValue: {
|
|
38
|
+
type: import("vue").PropType<boolean>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
content: {
|
|
42
|
+
type: import("vue").PropType<string | string[]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
kind: {
|
|
46
|
+
type: import("vue").PropType<"alert" | "warn" | "info" | "success">;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
sticky: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
cancelText: {
|
|
54
|
+
type: import("vue").PropType<string>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
submitText: {
|
|
58
|
+
type: import("vue").PropType<string>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
}>> & {
|
|
62
|
+
onSubmit?: ((e?: void | undefined) => any) | undefined;
|
|
63
|
+
}, {
|
|
64
|
+
title: string;
|
|
65
|
+
sticky: boolean;
|
|
66
|
+
cancelText: string;
|
|
67
|
+
}, {}>;
|
|
68
|
+
export default _default;
|