@xy-planning-network/trees 0.11.0-rc3 → 0.11.0
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 +8 -8
- package/package.json +2 -2
- package/src/lib-components/forms/MultiCheckboxes.vue +4 -4
- package/src/lib-components/navigation/Paginator.vue +3 -3
- package/types/lib-components/forms/BaseInput.vue.d.ts +4 -4
- package/types/lib-components/forms/Checkbox.vue.d.ts +4 -4
- package/types/lib-components/forms/DateRangePicker.vue.d.ts +4 -4
- package/types/lib-components/forms/DateTimeInput.vue.d.ts +4 -4
- package/types/lib-components/forms/FieldsetLegend.vue.d.ts +6 -9
- package/types/lib-components/forms/InputError.vue.d.ts +4 -5
- package/types/lib-components/forms/InputHelp.vue.d.ts +5 -7
- package/types/lib-components/forms/InputLabel.vue.d.ts +6 -9
- package/types/lib-components/forms/MultiCheckboxes.vue.d.ts +4 -4
- package/types/lib-components/forms/Radio.vue.d.ts +4 -4
- package/types/lib-components/forms/RadioCards.vue.d.ts +9 -15
- package/types/lib-components/forms/Select.vue.d.ts +4 -4
- package/types/lib-components/forms/TextArea.vue.d.ts +4 -4
- package/types/lib-components/forms/Toggle.vue.d.ts +4 -4
- package/types/lib-components/forms/YesOrNoRadio.vue.d.ts +4 -4
- package/types/lib-components/indicators/InlineAlert.vue.d.ts +11 -19
- package/types/lib-components/indicators/ProgressCircles.vue.d.ts +3 -10
- package/types/lib-components/indicators/ProgressCirclesLabeled.vue.d.ts +3 -10
- package/types/lib-components/indicators/XYSpinner.vue.d.ts +1 -1
- package/types/lib-components/layout/DateFilter.vue.d.ts +4 -6
- package/types/lib-components/layout/SidebarLayout.vue.d.ts +4 -8
- package/types/lib-components/layout/StackedLayout.vue.d.ts +4 -9
- package/types/lib-components/lists/Cards.vue.d.ts +3 -7
- package/types/lib-components/lists/DataTable.vue.d.ts +5 -8
- package/types/lib-components/lists/DetailList.vue.d.ts +11 -42
- package/types/lib-components/lists/DownloadCell.vue.d.ts +3 -5
- package/types/lib-components/lists/DynamicTable.vue.d.ts +6 -9
- package/types/lib-components/lists/TableActionButtons.vue.d.ts +4 -5
- package/types/lib-components/navigation/ActionsDropdown.vue.d.ts +4 -5
- package/types/lib-components/navigation/Paginator.vue.d.ts +3 -3
- package/types/lib-components/navigation/Steps.vue.d.ts +9 -15
- package/types/lib-components/navigation/Tabs.vue.d.ts +5 -5
- package/types/lib-components/overlays/ContentModal.vue.d.ts +4 -4
- package/types/lib-components/overlays/Modal.vue.d.ts +4 -4
- package/types/lib-components/overlays/Popover/Popover.vue.d.ts +5 -7
- package/types/lib-components/overlays/Slideover.vue.d.ts +4 -4
- package/types/lib-components/overlays/Tooltip.vue.d.ts +5 -7
- package/types/composables/setupHelpers.d.ts +0 -15
- package/types/helpers/Slots.d.ts +0 -2
- package/types/lib-components/lists/StaticTable.vue.d.ts +0 -21
- package/types/lib-components/lists/StaticTableActionSlot.vue.d.ts +0 -27
- package/types/lib-components/lists/Table.vue.d.ts +0 -39
- package/types/lib-components/navigation/ActionsDropdownCallback.vue.d.ts +0 -18
- package/types/lib-components/navigation/ActionsDropdownEmit.vue.d.ts +0 -22
- package/types/lib-components/overlays/AlertModal.vue.d.ts +0 -68
package/dist/trees.es.js
CHANGED
|
@@ -9225,13 +9225,13 @@ const of = /* @__PURE__ */ tf(nf, [["render", af]]), sf = { class: "absolute ins
|
|
|
9225
9225
|
}, ut), {
|
|
9226
9226
|
modelValue: {
|
|
9227
9227
|
...fe,
|
|
9228
|
-
// NOTE(spk): Vue handling of
|
|
9228
|
+
// NOTE(spk): The Vue.js specific handling of initial prop values null vs undefined
|
|
9229
9229
|
// means we can't rely on the the "default" param of defineModel here. Ensuring the
|
|
9230
9230
|
// getter returns an array type allows for a consistent checkbox v-model binding similar to
|
|
9231
|
-
// the example in the official Vue docs.
|
|
9231
|
+
// the example in the official Vue.js docs.
|
|
9232
9232
|
//
|
|
9233
|
-
// When a parent component passes a null v-model the parent ref stays null until
|
|
9234
|
-
//
|
|
9233
|
+
// When a parent component passes a null v-model the parent ref stays null until
|
|
9234
|
+
// a mutation occurs which is consistent with other input components.
|
|
9235
9235
|
get: (t) => Array.isArray(t) ? t : []
|
|
9236
9236
|
},
|
|
9237
9237
|
modelModifiers: {}
|
|
@@ -9240,13 +9240,13 @@ const of = /* @__PURE__ */ tf(nf, [["render", af]]), sf = { class: "absolute ins
|
|
|
9240
9240
|
setup(t) {
|
|
9241
9241
|
const n = t, e = Se(t, "modelValue", {
|
|
9242
9242
|
...fe,
|
|
9243
|
-
// NOTE(spk): Vue handling of
|
|
9243
|
+
// NOTE(spk): The Vue.js specific handling of initial prop values null vs undefined
|
|
9244
9244
|
// means we can't rely on the the "default" param of defineModel here. Ensuring the
|
|
9245
9245
|
// getter returns an array type allows for a consistent checkbox v-model binding similar to
|
|
9246
|
-
// the example in the official Vue docs.
|
|
9246
|
+
// the example in the official Vue.js docs.
|
|
9247
9247
|
//
|
|
9248
|
-
// When a parent component passes a null v-model the parent ref stays null until
|
|
9249
|
-
//
|
|
9248
|
+
// When a parent component passes a null v-model the parent ref stays null until
|
|
9249
|
+
// a mutation occurs which is consistent with other input components.
|
|
9250
9250
|
get: (g) => Array.isArray(g) ? g : []
|
|
9251
9251
|
}), { aria: r, inputID: a, isDisabled: o, errorState: i, validate: s } = dt(n), l = A(() => n.min || null), u = A(() => n.max || null), d = A(() => {
|
|
9252
9252
|
var v;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xy-planning-network/trees",
|
|
3
|
-
"version": "0.11.0
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "github:xy-planning-network/trees",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"unplugin-vue-components": "^0.27.4",
|
|
55
55
|
"unplugin-vue-markdown": "^0.25.2",
|
|
56
56
|
"vite": "^5.4.10",
|
|
57
|
-
"vue-tsc": "^2.1.
|
|
57
|
+
"vue-tsc": "^2.1.8"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@floating-ui/vue": "^1.0.1",
|
|
@@ -22,13 +22,13 @@ const props = withDefaults(
|
|
|
22
22
|
|
|
23
23
|
const modelState = defineModel<MultiChoiceInput["modelValue"]>({
|
|
24
24
|
...defaultModelOpts,
|
|
25
|
-
// NOTE(spk): Vue handling of
|
|
25
|
+
// NOTE(spk): The Vue.js specific handling of initial prop values null vs undefined
|
|
26
26
|
// means we can't rely on the the "default" param of defineModel here. Ensuring the
|
|
27
27
|
// getter returns an array type allows for a consistent checkbox v-model binding similar to
|
|
28
|
-
// the example in the official Vue docs.
|
|
28
|
+
// the example in the official Vue.js docs.
|
|
29
29
|
//
|
|
30
|
-
// When a parent component passes a null v-model the parent ref stays null until
|
|
31
|
-
//
|
|
30
|
+
// When a parent component passes a null v-model the parent ref stays null until
|
|
31
|
+
// a mutation occurs which is consistent with other input components.
|
|
32
32
|
get: (v) => {
|
|
33
33
|
if (!Array.isArray(v)) {
|
|
34
34
|
return []
|
|
@@ -5,9 +5,9 @@ import { computed } from "vue"
|
|
|
5
5
|
const pagination = defineModel<Pagination>({ required: true })
|
|
6
6
|
|
|
7
7
|
const changePage = (page: number): void => {
|
|
8
|
-
// NOTE(spk): reminder that defineModel does not change the
|
|
9
|
-
//
|
|
10
|
-
//
|
|
8
|
+
// NOTE(spk): reminder that defineModel does not change the
|
|
9
|
+
// one-way data flow philosphy of Vue.js replace the entire
|
|
10
|
+
// object to ensure the event is emitted.
|
|
11
11
|
pagination.value = {
|
|
12
12
|
...pagination.value,
|
|
13
13
|
page: page,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import type { TextLikeInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = TextLikeInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: TextLikeInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
7
7
|
input: Readonly<import("vue").ShallowRef<HTMLInputElement | null>>;
|
|
8
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (
|
|
9
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
"onUpdate:modelValue"?: ((
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
label: string;
|
|
14
14
|
modelValue: string | number | null;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { BooleanInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = BooleanInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: BooleanInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: boolean | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: boolean | null;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import "flatpickr/dist/flatpickr.min.css";
|
|
2
2
|
import type { DateRangeInput } from "../../composables/forms";
|
|
3
|
-
|
|
3
|
+
type __VLS_Props = DateRangeInput;
|
|
4
4
|
type __VLS_PublicProps = {
|
|
5
5
|
modelValue?: DateRangeInput["modelValue"];
|
|
6
|
-
} &
|
|
6
|
+
} & __VLS_Props;
|
|
7
7
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
"update:modelValue": (
|
|
8
|
+
"update:modelValue": (value: {
|
|
9
9
|
minDate: number;
|
|
10
10
|
maxDate: number;
|
|
11
11
|
} | undefined) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
|
-
"onUpdate:modelValue"?: ((
|
|
13
|
+
"onUpdate:modelValue"?: ((value: {
|
|
14
14
|
minDate: number;
|
|
15
15
|
maxDate: number;
|
|
16
16
|
} | undefined) => any) | undefined;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { DateTimeInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = DateTimeInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: DateTimeInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: string | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: string | null;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
label?: string
|
|
3
|
-
required?: boolean
|
|
4
|
-
tag?: string
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
required?: boolean | undefined;
|
|
8
|
-
tag?: string | undefined;
|
|
9
|
-
}> & Readonly<{}>, {
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
label?: string;
|
|
3
|
+
required?: boolean;
|
|
4
|
+
tag?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
10
7
|
label: string;
|
|
11
8
|
required: boolean;
|
|
12
9
|
tag: string;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
text?: string
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
}> & Readonly<{}>, {
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
text?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
6
5
|
text: string;
|
|
7
6
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
7
|
export default _default;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
tag?: string
|
|
3
|
-
text?: string
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
text?: string | undefined;
|
|
7
|
-
}> & Readonly<{}>, {
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
tag?: string;
|
|
3
|
+
text?: string;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
6
|
text: string;
|
|
9
7
|
tag: string;
|
|
10
8
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
label?: string
|
|
3
|
-
required?: boolean
|
|
4
|
-
tag?: string
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
required?: boolean | undefined;
|
|
8
|
-
tag?: string | undefined;
|
|
9
|
-
}> & Readonly<{}>, {
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
label?: string;
|
|
3
|
+
required?: boolean;
|
|
4
|
+
tag?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
10
7
|
label: string;
|
|
11
8
|
required: boolean;
|
|
12
9
|
tag: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { MultiChoiceInput, ColumnedInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = MultiChoiceInput & ColumnedInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: MultiChoiceInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: (string | number)[] | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: (string | number)[] | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: (string | number)[] | null;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { OptionsInput, ColumnedInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = OptionsInput & ColumnedInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: OptionsInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: string | number | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { InputOption } from "../../composables/forms";
|
|
2
2
|
declare const _default: <T extends InputOption>(__VLS_props: {
|
|
3
|
-
readonly "onUpdate:modelValue"?: ((
|
|
3
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
4
4
|
modelValue?: string | number | null | undefined;
|
|
5
5
|
options: T[];
|
|
6
6
|
label?: string | undefined;
|
|
@@ -13,16 +13,14 @@ declare const _default: <T extends InputOption>(__VLS_props: {
|
|
|
13
13
|
active: boolean;
|
|
14
14
|
checked: boolean;
|
|
15
15
|
disabled: boolean;
|
|
16
|
-
option: T
|
|
16
|
+
option: import("vue").Reactive<T>;
|
|
17
17
|
}): any;
|
|
18
18
|
};
|
|
19
19
|
attrs: any;
|
|
20
|
-
emit:
|
|
21
|
-
'update:modelValue': [modelValue: string | number | null | undefined];
|
|
22
|
-
};
|
|
20
|
+
emit: (evt: "update:modelValue", value: string | number | null | undefined) => void;
|
|
23
21
|
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
24
22
|
props: {
|
|
25
|
-
readonly "onUpdate:modelValue"?: ((
|
|
23
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
26
24
|
modelValue?: string | number | null | undefined;
|
|
27
25
|
options: T[];
|
|
28
26
|
label?: string | undefined;
|
|
@@ -37,18 +35,16 @@ declare const _default: <T extends InputOption>(__VLS_props: {
|
|
|
37
35
|
active: boolean;
|
|
38
36
|
checked: boolean;
|
|
39
37
|
disabled: boolean;
|
|
40
|
-
option: T
|
|
38
|
+
option: import("vue").Reactive<T>;
|
|
41
39
|
}): any;
|
|
42
40
|
};
|
|
43
|
-
emit:
|
|
44
|
-
'update:modelValue': [modelValue: string | number | null | undefined];
|
|
45
|
-
};
|
|
41
|
+
emit: (evt: "update:modelValue", value: string | number | null | undefined) => void;
|
|
46
42
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
47
43
|
[key: string]: any;
|
|
48
44
|
}> & {
|
|
49
45
|
__ctx?: {
|
|
50
46
|
props: {
|
|
51
|
-
readonly "onUpdate:modelValue"?: ((
|
|
47
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
52
48
|
modelValue?: string | number | null | undefined;
|
|
53
49
|
options: T[];
|
|
54
50
|
label?: string | undefined;
|
|
@@ -63,12 +59,10 @@ declare const _default: <T extends InputOption>(__VLS_props: {
|
|
|
63
59
|
active: boolean;
|
|
64
60
|
checked: boolean;
|
|
65
61
|
disabled: boolean;
|
|
66
|
-
option: T
|
|
62
|
+
option: import("vue").Reactive<T>;
|
|
67
63
|
}): any;
|
|
68
64
|
};
|
|
69
|
-
emit:
|
|
70
|
-
'update:modelValue': [modelValue: string | number | null | undefined];
|
|
71
|
-
};
|
|
65
|
+
emit: (evt: "update:modelValue", value: string | number | null | undefined) => void;
|
|
72
66
|
} | undefined;
|
|
73
67
|
};
|
|
74
68
|
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { OptionsInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = OptionsInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: OptionsInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: string | number | null;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { TextareaInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = TextareaInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: TextareaInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: string | number | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string | number | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: string | number | null;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
label?: string;
|
|
3
3
|
help?: string;
|
|
4
4
|
};
|
|
5
5
|
type __VLS_PublicProps = {
|
|
6
6
|
modelValue?: boolean;
|
|
7
|
-
} &
|
|
7
|
+
} & __VLS_Props;
|
|
8
8
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (
|
|
9
|
+
"update:modelValue": (value: boolean) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
"onUpdate:modelValue"?: ((
|
|
11
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
label: string;
|
|
14
14
|
help: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { BooleanInput } from "../../composables/forms";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = BooleanInput;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: BooleanInput["modelValue"];
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: boolean | null | undefined) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean | null | undefined) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
label: string;
|
|
12
12
|
modelValue: boolean | null;
|
|
@@ -1,26 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
btnLink?: string
|
|
3
|
-
btnText?: string
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
btnLink?: string;
|
|
3
|
+
btnText?: string;
|
|
4
4
|
content: string | string[];
|
|
5
|
-
dismissable?: boolean
|
|
6
|
-
secondaryBtnLink?: string
|
|
7
|
-
secondaryBtnText?: string
|
|
8
|
-
title?: string
|
|
9
|
-
kind: "
|
|
10
|
-
}
|
|
5
|
+
dismissable?: boolean;
|
|
6
|
+
secondaryBtnLink?: string;
|
|
7
|
+
secondaryBtnText?: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
kind: "alert" | "warn" | "info" | "success";
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
12
|
click: (e: Event) => any;
|
|
12
13
|
close: (closed: true) => any;
|
|
13
14
|
"click:secondary": (e: Event) => any;
|
|
14
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
15
|
-
btnLink?: string | undefined;
|
|
16
|
-
btnText?: string | undefined;
|
|
17
|
-
content: string | string[];
|
|
18
|
-
dismissable?: boolean | undefined;
|
|
19
|
-
secondaryBtnLink?: string | undefined;
|
|
20
|
-
secondaryBtnText?: string | undefined;
|
|
21
|
-
title?: string | undefined;
|
|
22
|
-
kind: "info" | "success" | "alert" | "warn";
|
|
23
|
-
}> & Readonly<{
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
16
|
onClick?: ((e: Event) => any) | undefined;
|
|
25
17
|
onClose?: ((closed: true) => any) | undefined;
|
|
26
18
|
"onClick:secondary"?: ((e: Event) => any) | undefined;
|
|
@@ -2,7 +2,7 @@ interface Step {
|
|
|
2
2
|
name: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
}
|
|
5
|
-
|
|
5
|
+
type __VLS_Props = {
|
|
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,13 +10,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
*/
|
|
11
11
|
current: number;
|
|
12
12
|
steps: Step[];
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
* current sets the "current" step using an index of the steps prop
|
|
16
|
-
* to show all steps in an "incomplete" state set step to -1
|
|
17
|
-
* to show all steps in an "complete" state set step to a value >= steps.length
|
|
18
|
-
*/
|
|
19
|
-
current: number;
|
|
20
|
-
steps: Step[];
|
|
21
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
|
|
22
15
|
export default _default;
|
|
@@ -2,7 +2,7 @@ interface Step {
|
|
|
2
2
|
name: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
}
|
|
5
|
-
|
|
5
|
+
type __VLS_Props = {
|
|
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,13 +10,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
*/
|
|
11
11
|
current: number;
|
|
12
12
|
steps: Step[];
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
* current sets the "current" step using an index of the steps prop
|
|
16
|
-
* to show all steps in an "incomplete" state set step to -1
|
|
17
|
-
* to show all steps in an "complete" state set step to a value >= steps.length
|
|
18
|
-
*/
|
|
19
|
-
current: number;
|
|
20
|
-
steps: Step[];
|
|
21
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
15
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
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, {},
|
|
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, {}, HTMLDivElement>, {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
}>;
|
|
4
4
|
export default _default;
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { DateRange } from "../../composables/date";
|
|
2
2
|
import { SortDir } from "../../composables/list";
|
|
3
|
-
|
|
3
|
+
type __VLS_Props = {
|
|
4
4
|
dateRange: DateRange;
|
|
5
5
|
sortDir: SortDir;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
8
|
"sort-dir-changed": (val: SortDir) => any;
|
|
8
9
|
"date-range-changed": (val: DateRange) => any;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
10
|
-
dateRange: DateRange;
|
|
11
|
-
sortDir: SortDir;
|
|
12
|
-
}> & Readonly<{
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
11
|
"onSort-dir-changed"?: ((val: SortDir) => any) | undefined;
|
|
14
12
|
"onDate-range-changed"?: ((val: DateRange) => any) | undefined;
|
|
15
13
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import type { NavItem } from "../../composables/nav";
|
|
2
|
-
|
|
3
|
-
activeUrl?: string
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
activeUrl?: string;
|
|
4
4
|
iconUrl: string;
|
|
5
5
|
navigation: NavItem[];
|
|
6
6
|
userNavigation: NavItem[];
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
iconUrl: string;
|
|
10
|
-
navigation: NavItem[];
|
|
11
|
-
userNavigation: NavItem[];
|
|
12
|
-
}> & Readonly<{}>, {
|
|
7
|
+
};
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
9
|
activeUrl: string;
|
|
14
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
15
11
|
"sidebar-nav"?(_: {}): any;
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
import type { NavItem } from "../../composables/nav";
|
|
2
2
|
import User from "../../composables/user";
|
|
3
|
-
|
|
4
|
-
activeUrl?: string
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
activeUrl?: string;
|
|
5
5
|
currentUser: User;
|
|
6
6
|
iconUrl: string;
|
|
7
7
|
navigation: NavItem[];
|
|
8
8
|
userNavigation: NavItem[];
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
currentUser: User;
|
|
12
|
-
iconUrl: string;
|
|
13
|
-
navigation: NavItem[];
|
|
14
|
-
userNavigation: NavItem[];
|
|
15
|
-
}> & Readonly<{}>, {
|
|
9
|
+
};
|
|
10
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
16
11
|
activeUrl: string;
|
|
17
12
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
18
13
|
header?(_: {}): any;
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
cards: {
|
|
3
3
|
primary: string;
|
|
4
4
|
secondary: string;
|
|
5
5
|
}[];
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
primary: string;
|
|
9
|
-
secondary: string;
|
|
10
|
-
}[];
|
|
11
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
8
|
export default _default;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import type { TableActions, TableColumns, TableRowsData } from "../../composables/table";
|
|
2
|
-
|
|
3
|
-
tableActions?: TableActions<any
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
tableActions?: TableActions<any>;
|
|
4
4
|
tableColumns: TableColumns<any>;
|
|
5
5
|
tableData: TableRowsData;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
tableColumns: TableColumns<any>;
|
|
9
|
-
tableData: TableRowsData;
|
|
10
|
-
}> & Readonly<{}>, {
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
11
8
|
tableActions: TableActions<any>;
|
|
12
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
9
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
10
|
export default _default;
|
|
@@ -1,79 +1,48 @@
|
|
|
1
1
|
import { SortDir } from "../../composables/list";
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
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,
|
|
6
6
|
* but less helpful when this component is dialed back in functionality.
|
|
7
7
|
*/
|
|
8
|
-
borderless?: boolean
|
|
8
|
+
borderless?: boolean;
|
|
9
9
|
/**
|
|
10
10
|
* defaultSort overrides the default field to sort items on.
|
|
11
11
|
*/
|
|
12
|
-
defaultSort?: string
|
|
12
|
+
defaultSort?: string;
|
|
13
13
|
/**
|
|
14
14
|
* defaultSortDir overrides the default order to sort items with.
|
|
15
15
|
*/
|
|
16
|
-
defaultSortDir?: SortDir
|
|
16
|
+
defaultSortDir?: SortDir;
|
|
17
17
|
/**
|
|
18
18
|
* disableDate turns off the date-range filter input.
|
|
19
19
|
*/
|
|
20
|
-
disableDate?: boolean
|
|
20
|
+
disableDate?: boolean;
|
|
21
21
|
/**
|
|
22
22
|
* disableNavigation hides navigation components from displaying.
|
|
23
23
|
* This makes the List as a "single-page" limiting the number of results via perPage.
|
|
24
24
|
*/
|
|
25
|
-
disableNavigation?: boolean
|
|
25
|
+
disableNavigation?: boolean;
|
|
26
26
|
/**
|
|
27
27
|
* perPage overrides the default number of items per page to retrieve.
|
|
28
28
|
*/
|
|
29
|
-
perPage?: number
|
|
29
|
+
perPage?: number;
|
|
30
30
|
/**
|
|
31
31
|
* url is the endpoint to retrieve list data from
|
|
32
32
|
*/
|
|
33
33
|
url: string;
|
|
34
|
-
}
|
|
34
|
+
};
|
|
35
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_Props, {
|
|
35
36
|
refresh: () => void;
|
|
36
37
|
reset: () => void;
|
|
37
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
38
|
-
/**
|
|
39
|
-
* borderless removes the default border styling applied around list items.
|
|
40
|
-
* This is useful when filters or pagination navigation components show,
|
|
41
|
-
* but less helpful when this component is dialed back in functionality.
|
|
42
|
-
*/
|
|
43
|
-
borderless?: boolean | undefined;
|
|
44
|
-
/**
|
|
45
|
-
* defaultSort overrides the default field to sort items on.
|
|
46
|
-
*/
|
|
47
|
-
defaultSort?: string | undefined;
|
|
48
|
-
/**
|
|
49
|
-
* defaultSortDir overrides the default order to sort items with.
|
|
50
|
-
*/
|
|
51
|
-
defaultSortDir?: SortDir | undefined;
|
|
52
|
-
/**
|
|
53
|
-
* disableDate turns off the date-range filter input.
|
|
54
|
-
*/
|
|
55
|
-
disableDate?: boolean | undefined;
|
|
56
|
-
/**
|
|
57
|
-
* disableNavigation hides navigation components from displaying.
|
|
58
|
-
* This makes the List as a "single-page" limiting the number of results via perPage.
|
|
59
|
-
*/
|
|
60
|
-
disableNavigation?: boolean | undefined;
|
|
61
|
-
/**
|
|
62
|
-
* perPage overrides the default number of items per page to retrieve.
|
|
63
|
-
*/
|
|
64
|
-
perPage?: number | undefined;
|
|
65
|
-
/**
|
|
66
|
-
* url is the endpoint to retrieve list data from
|
|
67
|
-
*/
|
|
68
|
-
url: string;
|
|
69
|
-
}> & Readonly<{}>, {
|
|
38
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
70
39
|
borderless: boolean;
|
|
71
40
|
defaultSort: string;
|
|
72
41
|
defaultSortDir: SortDir;
|
|
73
42
|
disableDate: boolean;
|
|
74
43
|
disableNavigation: boolean;
|
|
75
44
|
perPage: number;
|
|
76
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
45
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
77
46
|
default?(_: {
|
|
78
47
|
item: any;
|
|
79
48
|
}): any;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
propsData: Record<string, unknown>;
|
|
3
3
|
attribute: string;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
attribute: string;
|
|
7
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
8
6
|
export default _default;
|
|
@@ -1,20 +1,17 @@
|
|
|
1
1
|
import type { DynamicTableOptions, TableActions, TableColumns } from "../../composables/table";
|
|
2
|
-
|
|
3
|
-
tableActions?: TableActions<any
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
tableActions?: TableActions<any>;
|
|
4
4
|
tableColumns: TableColumns<any>;
|
|
5
5
|
tableOptions: DynamicTableOptions;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
7
8
|
refresh: () => void;
|
|
8
9
|
reset: () => void;
|
|
9
10
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
11
|
"click:row": (v: any) => any;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
12
|
-
tableActions?: TableActions<any> | undefined;
|
|
13
|
-
tableColumns: TableColumns<any>;
|
|
14
|
-
tableOptions: DynamicTableOptions;
|
|
15
|
-
}> & Readonly<{
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
13
|
"onClick:row"?: ((v: any) => any) | undefined;
|
|
17
14
|
}>, {
|
|
18
15
|
tableActions: TableActions<any>;
|
|
19
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
17
|
export default _default;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { TableActionItem } from "../../composables";
|
|
2
|
-
|
|
3
|
-
actions?: TableActionItem
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
}> & Readonly<{}>, {
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
actions?: TableActionItem[];
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
6
|
actions: TableActionItem<import("../../composables").TableRowData>[];
|
|
8
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
8
|
export default _default;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import type { ActionItem } from "../../composables/nav";
|
|
2
|
-
|
|
3
|
-
actions?: ActionItem[]
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
}> & Readonly<{}>, {
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
actions?: ActionItem[];
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
6
|
actions: ActionItem[];
|
|
8
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
8
|
export default _default;
|
|
@@ -3,8 +3,8 @@ type __VLS_PublicProps = {
|
|
|
3
3
|
modelValue: Pagination;
|
|
4
4
|
};
|
|
5
5
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
"update:modelValue": (
|
|
6
|
+
"update:modelValue": (value: Pagination) => any;
|
|
7
7
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
8
|
-
"onUpdate:modelValue"?: ((
|
|
9
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
8
|
+
"onUpdate:modelValue"?: ((value: Pagination) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
10
10
|
export default _default;
|
|
@@ -1,21 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
hideActions?: boolean
|
|
3
|
-
hidePrevious?: boolean
|
|
4
|
-
nextText?: string
|
|
5
|
-
previousText?: string
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
hideActions?: boolean;
|
|
3
|
+
hidePrevious?: boolean;
|
|
4
|
+
nextText?: string;
|
|
5
|
+
previousText?: string;
|
|
6
6
|
step: number;
|
|
7
7
|
total: number;
|
|
8
|
-
}
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
10
|
next: (...args: any[]) => void;
|
|
10
11
|
previous: (...args: any[]) => void;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<{
|
|
12
|
-
hideActions?: boolean | undefined;
|
|
13
|
-
hidePrevious?: boolean | undefined;
|
|
14
|
-
nextText?: string | undefined;
|
|
15
|
-
previousText?: string | undefined;
|
|
16
|
-
step: number;
|
|
17
|
-
total: number;
|
|
18
|
-
}> & Readonly<{
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
13
|
onNext?: ((...args: any[]) => any) | undefined;
|
|
20
14
|
onPrevious?: ((...args: any[]) => any) | undefined;
|
|
21
15
|
}>, {
|
|
@@ -23,5 +17,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
17
|
hidePrevious: boolean;
|
|
24
18
|
nextText: string;
|
|
25
19
|
previousText: string;
|
|
26
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
21
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
pillDesign?: boolean;
|
|
3
3
|
tabs: Array<{
|
|
4
4
|
label: string;
|
|
@@ -7,12 +7,12 @@ declare let __VLS_typeProps: {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
9
|
modelValue: string;
|
|
10
|
-
} &
|
|
10
|
+
} & __VLS_Props;
|
|
11
11
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (
|
|
12
|
+
"update:modelValue": (value: string) => any;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
-
"onUpdate:modelValue"?: ((
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
pillDesign: boolean;
|
|
17
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
18
18
|
export default _default;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
btnText?: string;
|
|
3
3
|
title?: string;
|
|
4
4
|
};
|
|
5
5
|
type __VLS_PublicProps = {
|
|
6
6
|
modelValue: boolean;
|
|
7
|
-
} &
|
|
7
|
+
} & __VLS_Props;
|
|
8
8
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (
|
|
9
|
+
"update:modelValue": (value: boolean) => any;
|
|
10
10
|
} & {
|
|
11
11
|
close: () => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
onClose?: (() => any) | undefined;
|
|
14
|
-
"onUpdate:modelValue"?: ((
|
|
14
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
title: string;
|
|
17
17
|
btnText: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
destructive?: boolean;
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
wide?: boolean;
|
|
@@ -7,16 +7,16 @@ declare let __VLS_typeProps: {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
9
|
modelValue: boolean;
|
|
10
|
-
} &
|
|
10
|
+
} & __VLS_Props;
|
|
11
11
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
"update:modelValue": (
|
|
12
|
+
"update:modelValue": (value: boolean) => any;
|
|
13
13
|
} & {
|
|
14
14
|
close: () => any;
|
|
15
15
|
submit: () => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
17
|
onClose?: (() => any) | undefined;
|
|
18
18
|
onSubmit?: (() => any) | undefined;
|
|
19
|
-
"onUpdate:modelValue"?: ((
|
|
19
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
title: string;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import type { Placement } from "@floating-ui/vue";
|
|
2
|
-
|
|
3
|
-
as?: string
|
|
4
|
-
position?: Placement | "auto"
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
position?: Placement | "auto" | undefined;
|
|
8
|
-
}> & Readonly<{}>, {
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
as?: string;
|
|
4
|
+
position?: Placement | "auto";
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
7
|
as: string;
|
|
10
8
|
position: Placement | "auto";
|
|
11
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
header: string;
|
|
3
3
|
description: string;
|
|
4
4
|
};
|
|
5
5
|
type __VLS_PublicProps = {
|
|
6
6
|
modelValue: boolean;
|
|
7
|
-
} &
|
|
7
|
+
} & __VLS_Props;
|
|
8
8
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
"update:modelValue": (
|
|
9
|
+
"update:modelValue": (value: boolean) => any;
|
|
10
10
|
} & {
|
|
11
11
|
close: () => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
onClose?: (() => any) | undefined;
|
|
14
|
-
"onUpdate:modelValue"?: ((
|
|
14
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
16
16
|
default?(_: {}): any;
|
|
17
17
|
footer?(_: {}): any;
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import type { Placement } from "@floating-ui/vue";
|
|
2
|
-
|
|
3
|
-
as?: string
|
|
4
|
-
position?: Placement | "auto"
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
position?: Placement | "auto" | undefined;
|
|
8
|
-
}> & Readonly<{}>, {
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
as?: string;
|
|
4
|
+
position?: Placement | "auto";
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
7
|
as: string;
|
|
10
8
|
position: Placement | "auto";
|
|
11
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { Ref } from "vue";
|
|
2
|
-
/**
|
|
3
|
-
* useModel supports a two-way binding between a reactive prop and
|
|
4
|
-
* a local ref. It effectively allows you to do prop mutations in a way that
|
|
5
|
-
* vue considers safe.
|
|
6
|
-
*
|
|
7
|
-
* This is effectveily a copy of useModel from vuejs/core which is currently an experimental opt-in
|
|
8
|
-
*
|
|
9
|
-
* @param props component props
|
|
10
|
-
* @param name component prop name to sync
|
|
11
|
-
* @param options - local determines the reactivity pattern used when the prop you are tracking is optional, use local:true.
|
|
12
|
-
*/
|
|
13
|
-
export declare const useModel: <T extends Record<string, any>, K extends keyof T>(props: T, name: K, options?: {
|
|
14
|
-
local?: boolean;
|
|
15
|
-
}) => Ref<T[K]>;
|
package/types/helpers/Slots.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { TableColumn, TableRow } from "../../composables/table";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
columns: TableColumn<TableRow>[];
|
|
4
|
-
rows: TableRow[];
|
|
5
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
6
|
-
columns?: unknown;
|
|
7
|
-
rows?: unknown;
|
|
8
|
-
} & {
|
|
9
|
-
columns: TableColumn<TableRow>[];
|
|
10
|
-
rows: TableRow[];
|
|
11
|
-
} & {}>, {}>;
|
|
12
|
-
export default _default;
|
|
13
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
-
type __VLS_TypePropsToRuntimeProps<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,27 +0,0 @@
|
|
|
1
|
-
import * as TableTypes from "../../composables/table";
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
tableData: Omit<TableTypes.Static, "currentUser">;
|
|
4
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
5
|
-
tableData?: unknown;
|
|
6
|
-
} & {
|
|
7
|
-
tableData: Omit<TableTypes.Static, "currentUser">;
|
|
8
|
-
} & {}>, {}>, {
|
|
9
|
-
actions: (_: {
|
|
10
|
-
row: Record<string, unknown>;
|
|
11
|
-
}) => any;
|
|
12
|
-
}>;
|
|
13
|
-
export default _default;
|
|
14
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
-
} : {
|
|
19
|
-
type: import('vue').PropType<T[K]>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
-
new (): {
|
|
25
|
-
$slots: S;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import * as TableTypes from "../../composables/table";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
clickable?: boolean | undefined;
|
|
4
|
-
loader?: boolean | undefined;
|
|
5
|
-
tableData: TableTypes.Dynamic;
|
|
6
|
-
}>, {
|
|
7
|
-
clickable: boolean;
|
|
8
|
-
loader: boolean;
|
|
9
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
handleClick: (v: any) => void;
|
|
11
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
12
|
-
tableData?: unknown;
|
|
13
|
-
clickable?: unknown;
|
|
14
|
-
loader?: unknown;
|
|
15
|
-
} & {
|
|
16
|
-
tableData: TableTypes.Dynamic;
|
|
17
|
-
clickable: boolean;
|
|
18
|
-
loader: boolean;
|
|
19
|
-
} & {}> & {
|
|
20
|
-
onHandleClick?: ((v: any) => any) | undefined;
|
|
21
|
-
}, {
|
|
22
|
-
clickable: boolean;
|
|
23
|
-
loader: boolean;
|
|
24
|
-
}>;
|
|
25
|
-
export default _default;
|
|
26
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
28
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
-
} : {
|
|
31
|
-
type: import('vue').PropType<T[K]>;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
type __VLS_WithDefaults<P, D> = {
|
|
36
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
37
|
-
default: D[K];
|
|
38
|
-
} : P[K];
|
|
39
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { ActionMenuItemCallback } from "../../composables/nav";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
items: ActionMenuItemCallback[];
|
|
4
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
5
|
-
items?: unknown;
|
|
6
|
-
} & {
|
|
7
|
-
items: ActionMenuItemCallback[];
|
|
8
|
-
} & {}>, {}>;
|
|
9
|
-
export default _default;
|
|
10
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
-
} : {
|
|
15
|
-
type: import('vue').PropType<T[K]>;
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { ActionMenuEmit } from "../../composables/nav";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
items: ActionMenuEmit[];
|
|
4
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
-
click: (v: string) => void;
|
|
6
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
7
|
-
items?: unknown;
|
|
8
|
-
} & {
|
|
9
|
-
items: ActionMenuEmit[];
|
|
10
|
-
} & {}> & {
|
|
11
|
-
onClick?: ((v: string) => any) | undefined;
|
|
12
|
-
}, {}>;
|
|
13
|
-
export default _default;
|
|
14
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
-
} : {
|
|
19
|
-
type: import('vue').PropType<T[K]>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
@@ -1,68 +0,0 @@
|
|
|
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;
|