@geniusdynamics/ns8-ui-lib 1.0.7 → 1.0.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/index.d.ts +23 -0
- package/dist/src/components/NS/cards/NSBackupCard.vue.d.ts +51 -0
- package/dist/src/components/NS/cards/NSSystemInfoCard.vue.d.ts +58 -0
- package/dist/src/components/NS/cards/NSSystemdServiceCard.vue.d.ts +47 -0
- package/dist/src/components/NS/cards/index.d.ts +3 -0
- package/dist/src/components/NS/checkbox/NSCheckbox.vue.d.ts +37 -0
- package/dist/src/components/NS/checkbox/index.d.ts +1 -0
- package/dist/src/components/NS/data-table/NSDataTable.vue.d.ts +98 -0
- package/dist/src/components/NS/data-table/index.d.ts +1 -0
- package/dist/src/components/NS/empty-state/NSEmptyState.vue.d.ts +45 -0
- package/dist/src/components/NS/empty-state/index.d.ts +1 -0
- package/dist/src/components/NS/index.d.ts +35 -0
- package/dist/src/components/NS/inline-notification/NSInlineNotification.vue.d.ts +44 -0
- package/dist/src/components/NS/inline-notification/index.d.ts +1 -0
- package/dist/src/components/NS/lottie-animation/index.d.ts +1 -0
- package/dist/src/components/NS/modal/NSModal.vue.d.ts +56 -0
- package/dist/src/components/NS/modal/NSModalTrigger.vue.d.ts +64 -0
- package/dist/src/components/NS/modal/index.d.ts +2 -0
- package/dist/src/components/NS/pagination/NSPagination.vue.d.ts +36 -0
- package/dist/src/components/NS/pagination/index.d.ts +1 -0
- package/dist/src/components/NS/progress/NSProgress.vue.d.ts +37 -0
- package/dist/src/components/NS/progress/NSProgressBar.vue.d.ts +39 -0
- package/dist/src/components/NS/progress/index.d.ts +2 -0
- package/dist/src/components/NS/slider/NSByteSlider.vue.d.ts +50 -0
- package/dist/src/components/NS/slider/NSSlider.vue.d.ts +49 -0
- package/dist/src/components/NS/slider/index.d.ts +2 -0
- package/dist/src/components/NS/tag/NSTag.vue.d.ts +41 -0
- package/dist/src/components/NS/tag/index.d.ts +1 -0
- package/dist/src/components/NS/text-input/NSTextInput.vue.d.ts +67 -0
- package/dist/src/components/NS/text-input/index.d.ts +1 -0
- package/dist/src/components/NS/toast-notification/NSToastNotification.vue.d.ts +44 -0
- package/dist/src/components/NS/toast-notification/index.d.ts +1 -0
- package/dist/src/components/NS/toggle/NSToggle.vue.d.ts +51 -0
- package/dist/src/components/NS/toggle/index.d.ts +1 -0
- package/dist/src/components/NS/wizard/NSWizard.vue.d.ts +86 -0
- package/dist/src/components/NS/wizard/index.d.ts +1 -0
- package/dist/src/composables/index.d.ts +8 -0
- package/dist/src/composables/useDateTimeService.d.ts +10 -0
- package/dist/src/composables/useFilterService.d.ts +8 -0
- package/dist/src/composables/useIconService.d.ts +153 -0
- package/dist/src/composables/usePageTitleService.d.ts +3 -0
- package/dist/src/composables/useQueryParamService.d.ts +13 -0
- package/dist/src/composables/useStorageService.d.ts +5 -0
- package/dist/src/composables/useTaskService.d.ts +18 -0
- package/dist/src/composables/useUtilService.d.ts +27 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
value?: number;
|
|
3
|
+
max?: number;
|
|
4
|
+
variant?: 'default' | 'destructive' | 'success' | 'warning' | 'info';
|
|
5
|
+
size?: 'default' | 'sm' | 'lg';
|
|
6
|
+
showLabel?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
indeterminate?: boolean;
|
|
9
|
+
animated?: boolean;
|
|
10
|
+
class?: string;
|
|
11
|
+
}
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
14
|
+
slots: {
|
|
15
|
+
label?(_: {}): any;
|
|
16
|
+
value?(_: {
|
|
17
|
+
value: number | undefined;
|
|
18
|
+
percentage: number;
|
|
19
|
+
}): any;
|
|
20
|
+
};
|
|
21
|
+
refs: {};
|
|
22
|
+
rootEl: HTMLDivElement;
|
|
23
|
+
};
|
|
24
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
26
|
+
indeterminate: boolean;
|
|
27
|
+
max: number;
|
|
28
|
+
variant: "default" | "destructive" | "success" | "warning" | "info";
|
|
29
|
+
size: "default" | "sm" | "lg";
|
|
30
|
+
showLabel: boolean;
|
|
31
|
+
animated: boolean;
|
|
32
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
|
+
export default _default;
|
|
35
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
+
new (): {
|
|
37
|
+
$slots: S;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: number;
|
|
3
|
+
defaultValue?: number;
|
|
4
|
+
min?: number;
|
|
5
|
+
max?: number;
|
|
6
|
+
step?: number;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
showLabel?: boolean;
|
|
9
|
+
label?: string;
|
|
10
|
+
showValue?: boolean;
|
|
11
|
+
formatBytes?: (bytes: number) => string;
|
|
12
|
+
showByteUnits?: boolean;
|
|
13
|
+
customUnits?: string[];
|
|
14
|
+
class?: string;
|
|
15
|
+
trackClass?: string;
|
|
16
|
+
thumbClass?: string;
|
|
17
|
+
}
|
|
18
|
+
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
20
|
+
slots: {
|
|
21
|
+
label?(_: {}): any;
|
|
22
|
+
value?(_: {
|
|
23
|
+
value: number;
|
|
24
|
+
displayValue: string;
|
|
25
|
+
}): any;
|
|
26
|
+
};
|
|
27
|
+
refs: {};
|
|
28
|
+
rootEl: HTMLDivElement;
|
|
29
|
+
};
|
|
30
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
31
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
|
+
"update:modelValue": (value: number) => any;
|
|
33
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
34
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
max: number;
|
|
37
|
+
min: number;
|
|
38
|
+
showLabel: boolean;
|
|
39
|
+
step: number;
|
|
40
|
+
showValue: boolean;
|
|
41
|
+
showByteUnits: boolean;
|
|
42
|
+
customUnits: string[];
|
|
43
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
44
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
45
|
+
export default _default;
|
|
46
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
47
|
+
new (): {
|
|
48
|
+
$slots: S;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: number | number[];
|
|
3
|
+
defaultValue?: number | number[];
|
|
4
|
+
min?: number;
|
|
5
|
+
max?: number;
|
|
6
|
+
step?: number;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
orientation?: 'horizontal' | 'vertical';
|
|
9
|
+
showLabel?: boolean;
|
|
10
|
+
label?: string;
|
|
11
|
+
showValue?: boolean;
|
|
12
|
+
formatValue?: (value: number) => string;
|
|
13
|
+
class?: string;
|
|
14
|
+
trackClass?: string;
|
|
15
|
+
thumbClass?: string;
|
|
16
|
+
}
|
|
17
|
+
declare function __VLS_template(): {
|
|
18
|
+
attrs: Partial<{}>;
|
|
19
|
+
slots: {
|
|
20
|
+
label?(_: {}): any;
|
|
21
|
+
value?(_: {
|
|
22
|
+
value: number | number[];
|
|
23
|
+
displayValue: string;
|
|
24
|
+
}): any;
|
|
25
|
+
};
|
|
26
|
+
refs: {};
|
|
27
|
+
rootEl: HTMLDivElement;
|
|
28
|
+
};
|
|
29
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
|
+
"update:modelValue": (value: number | number[]) => any;
|
|
32
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
33
|
+
"onUpdate:modelValue"?: ((value: number | number[]) => any) | undefined;
|
|
34
|
+
}>, {
|
|
35
|
+
max: number;
|
|
36
|
+
min: number;
|
|
37
|
+
orientation: "horizontal" | "vertical";
|
|
38
|
+
showLabel: boolean;
|
|
39
|
+
step: number;
|
|
40
|
+
showValue: boolean;
|
|
41
|
+
formatValue: (value: number) => string;
|
|
42
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
label?: string;
|
|
3
|
+
variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'success' | 'warning' | 'info' | 'gray';
|
|
4
|
+
size?: 'default' | 'sm' | 'lg';
|
|
5
|
+
interactive?: boolean;
|
|
6
|
+
removable?: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
icon?: string | object;
|
|
9
|
+
clearAriaLabel?: string;
|
|
10
|
+
title?: string;
|
|
11
|
+
class?: string;
|
|
12
|
+
}
|
|
13
|
+
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
15
|
+
slots: {
|
|
16
|
+
default?(_: {}): any;
|
|
17
|
+
};
|
|
18
|
+
refs: {};
|
|
19
|
+
rootEl: any;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
|
+
remove: () => any;
|
|
24
|
+
click: (event: Event) => any;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
+
onRemove?: (() => any) | undefined;
|
|
27
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
28
|
+
}>, {
|
|
29
|
+
variant: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "info" | "gray";
|
|
30
|
+
size: "default" | "sm" | "lg";
|
|
31
|
+
interactive: boolean;
|
|
32
|
+
removable: boolean;
|
|
33
|
+
clearAriaLabel: string;
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NSTag } from './NSTag.vue';
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: string;
|
|
3
|
+
value?: string;
|
|
4
|
+
defaultValue?: string;
|
|
5
|
+
type?: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
readonly?: boolean;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
name?: string;
|
|
11
|
+
id?: string;
|
|
12
|
+
label?: string;
|
|
13
|
+
description?: string;
|
|
14
|
+
errorMessage?: string;
|
|
15
|
+
warningMessage?: string;
|
|
16
|
+
successMessage?: string;
|
|
17
|
+
helperText?: string;
|
|
18
|
+
prefix?: string;
|
|
19
|
+
suffix?: string;
|
|
20
|
+
showPasswordToggle?: boolean;
|
|
21
|
+
class?: string;
|
|
22
|
+
labelClass?: string;
|
|
23
|
+
inputClass?: string;
|
|
24
|
+
containerClass?: string;
|
|
25
|
+
}
|
|
26
|
+
declare function __VLS_template(): {
|
|
27
|
+
attrs: Partial<{}>;
|
|
28
|
+
slots: {
|
|
29
|
+
label?(_: {}): any;
|
|
30
|
+
extra?(_: {}): any;
|
|
31
|
+
};
|
|
32
|
+
refs: {
|
|
33
|
+
inputRef: HTMLInputElement;
|
|
34
|
+
};
|
|
35
|
+
rootEl: HTMLDivElement;
|
|
36
|
+
};
|
|
37
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
38
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
39
|
+
focus: () => void;
|
|
40
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
41
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
|
+
input: (event: Event) => any;
|
|
43
|
+
"update:modelValue": (value: string) => any;
|
|
44
|
+
"update:value": (value: string) => any;
|
|
45
|
+
focus: (event: FocusEvent) => any;
|
|
46
|
+
blur: (event: BlurEvent) => any;
|
|
47
|
+
change: (event: Event) => any;
|
|
48
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
49
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
50
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
51
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
52
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
53
|
+
onBlur?: ((event: BlurEvent) => any) | undefined;
|
|
54
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
55
|
+
}>, {
|
|
56
|
+
type: string;
|
|
57
|
+
showPasswordToggle: boolean;
|
|
58
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
59
|
+
inputRef: HTMLInputElement;
|
|
60
|
+
}, HTMLDivElement>;
|
|
61
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
62
|
+
export default _default;
|
|
63
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
64
|
+
new (): {
|
|
65
|
+
$slots: S;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NSTextInput } from './NSTextInput.vue';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
title?: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
variant?: 'default' | 'destructive' | 'warning' | 'success' | 'info';
|
|
5
|
+
duration?: number;
|
|
6
|
+
showCloseButton?: boolean;
|
|
7
|
+
actionLabel?: string;
|
|
8
|
+
closeAriaLabel?: string;
|
|
9
|
+
position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' | 'top-center' | 'bottom-center';
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
class?: string;
|
|
12
|
+
icon?: object;
|
|
13
|
+
}
|
|
14
|
+
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
16
|
+
slots: {
|
|
17
|
+
title?(_: {}): any;
|
|
18
|
+
description?(_: {}): any;
|
|
19
|
+
};
|
|
20
|
+
refs: {};
|
|
21
|
+
rootEl: HTMLDivElement;
|
|
22
|
+
};
|
|
23
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
24
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
+
close: () => any;
|
|
26
|
+
action: () => any;
|
|
27
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
28
|
+
onClose?: (() => any) | undefined;
|
|
29
|
+
onAction?: (() => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
variant: "default" | "destructive" | "warning" | "success" | "info";
|
|
32
|
+
showCloseButton: boolean;
|
|
33
|
+
closeAriaLabel: string;
|
|
34
|
+
loading: boolean;
|
|
35
|
+
duration: number;
|
|
36
|
+
position: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "top-center" | "bottom-center";
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
38
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
|
+
export default _default;
|
|
40
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NSToastNotification } from './NSToastNotification.vue';
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: boolean;
|
|
3
|
+
checked?: boolean;
|
|
4
|
+
defaultChecked?: boolean;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
required?: boolean;
|
|
7
|
+
name?: string;
|
|
8
|
+
value?: string;
|
|
9
|
+
id?: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
hideLabel?: boolean;
|
|
12
|
+
description?: string;
|
|
13
|
+
leftText?: string;
|
|
14
|
+
rightText?: string;
|
|
15
|
+
variant?: 'default' | 'destructive' | 'success' | 'warning';
|
|
16
|
+
size?: 'default' | 'sm' | 'lg';
|
|
17
|
+
class?: string;
|
|
18
|
+
labelClass?: string;
|
|
19
|
+
containerClass?: string;
|
|
20
|
+
}
|
|
21
|
+
declare function __VLS_template(): {
|
|
22
|
+
attrs: Partial<{}>;
|
|
23
|
+
slots: {
|
|
24
|
+
label?(_: {}): any;
|
|
25
|
+
'left-text'?(_: {}): any;
|
|
26
|
+
'right-text'?(_: {}): any;
|
|
27
|
+
extra?(_: {}): any;
|
|
28
|
+
};
|
|
29
|
+
refs: {};
|
|
30
|
+
rootEl: HTMLDivElement;
|
|
31
|
+
};
|
|
32
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
33
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
|
+
"update:checked": (value: boolean) => any;
|
|
35
|
+
"update:modelValue": (value: boolean) => any;
|
|
36
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
37
|
+
"onUpdate:checked"?: ((value: boolean) => any) | undefined;
|
|
38
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
39
|
+
}>, {
|
|
40
|
+
leftText: string;
|
|
41
|
+
rightText: string;
|
|
42
|
+
variant: "default" | "destructive" | "success" | "warning";
|
|
43
|
+
size: "default" | "sm" | "lg";
|
|
44
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
46
|
+
export default _default;
|
|
47
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
48
|
+
new (): {
|
|
49
|
+
$slots: S;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NSToggle } from './NSToggle.vue';
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
interface WizardStep {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
icon?: any;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
valid?: boolean;
|
|
8
|
+
onValidate?: () => boolean | Promise<boolean>;
|
|
9
|
+
onEnter?: () => void;
|
|
10
|
+
onLeave?: () => void;
|
|
11
|
+
}
|
|
12
|
+
interface Props {
|
|
13
|
+
modelValue?: number;
|
|
14
|
+
steps?: WizardStep[];
|
|
15
|
+
vertical?: boolean;
|
|
16
|
+
showStepNumbers?: boolean;
|
|
17
|
+
showStepIcons?: boolean;
|
|
18
|
+
showNavigation?: boolean;
|
|
19
|
+
showProgressBar?: boolean;
|
|
20
|
+
allowSkip?: boolean;
|
|
21
|
+
hidePreviousOnFirst?: boolean;
|
|
22
|
+
hideNextOnLast?: boolean;
|
|
23
|
+
finishButtonText?: string;
|
|
24
|
+
nextButtonText?: string;
|
|
25
|
+
previousButtonText?: string;
|
|
26
|
+
skipButtonText?: string;
|
|
27
|
+
disabled?: boolean;
|
|
28
|
+
class?: string;
|
|
29
|
+
stepClass?: string;
|
|
30
|
+
navigationClass?: string;
|
|
31
|
+
contentClass?: string;
|
|
32
|
+
}
|
|
33
|
+
declare function __VLS_template(): {
|
|
34
|
+
attrs: Partial<{}>;
|
|
35
|
+
slots: Partial<Record<`step-${string}`, (_: {
|
|
36
|
+
step: WizardStep;
|
|
37
|
+
index: number;
|
|
38
|
+
isFirst: boolean;
|
|
39
|
+
isLast: boolean;
|
|
40
|
+
next: () => Promise<void>;
|
|
41
|
+
previous: () => void;
|
|
42
|
+
skip: () => void;
|
|
43
|
+
canGoNext: boolean;
|
|
44
|
+
canGoPrevious: boolean;
|
|
45
|
+
canSkip: boolean;
|
|
46
|
+
}) => any>>;
|
|
47
|
+
refs: {};
|
|
48
|
+
rootEl: HTMLDivElement;
|
|
49
|
+
};
|
|
50
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
51
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
52
|
+
"update:modelValue": (step: number) => any;
|
|
53
|
+
"step-change": (step: number, previousStep: number) => any;
|
|
54
|
+
finish: (data: any) => any;
|
|
55
|
+
skip: (step: number) => any;
|
|
56
|
+
validate: (step: number, valid: boolean) => any;
|
|
57
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
58
|
+
"onUpdate:modelValue"?: ((step: number) => any) | undefined;
|
|
59
|
+
"onStep-change"?: ((step: number, previousStep: number) => any) | undefined;
|
|
60
|
+
onFinish?: ((data: any) => any) | undefined;
|
|
61
|
+
onSkip?: ((step: number) => any) | undefined;
|
|
62
|
+
onValidate?: ((step: number, valid: boolean) => any) | undefined;
|
|
63
|
+
}>, {
|
|
64
|
+
disabled: boolean;
|
|
65
|
+
modelValue: number;
|
|
66
|
+
vertical: boolean;
|
|
67
|
+
steps: WizardStep[];
|
|
68
|
+
showStepNumbers: boolean;
|
|
69
|
+
showStepIcons: boolean;
|
|
70
|
+
showNavigation: boolean;
|
|
71
|
+
showProgressBar: boolean;
|
|
72
|
+
allowSkip: boolean;
|
|
73
|
+
hidePreviousOnFirst: boolean;
|
|
74
|
+
hideNextOnLast: boolean;
|
|
75
|
+
finishButtonText: string;
|
|
76
|
+
nextButtonText: string;
|
|
77
|
+
previousButtonText: string;
|
|
78
|
+
skipButtonText: string;
|
|
79
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
80
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
81
|
+
export default _default;
|
|
82
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
83
|
+
new (): {
|
|
84
|
+
$slots: S;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NSWizard } from './NSWizard.vue';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { useDateTimeService } from './useDateTimeService';
|
|
2
|
+
export { useUtilService } from './useUtilService';
|
|
3
|
+
export { useIconService } from './useIconService';
|
|
4
|
+
export { usePageTitleService } from './usePageTitleService';
|
|
5
|
+
export { useQueryParamService } from './useQueryParamService';
|
|
6
|
+
export { useStorageService } from './useStorageService';
|
|
7
|
+
export { useTaskService } from './useTaskService';
|
|
8
|
+
export { useFilterService } from './useFilterService';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { formatDistance, subDays, isBefore, parseISO } from 'date-fns';
|
|
2
|
+
import { format } from 'date-fns-tz';
|
|
3
|
+
export declare const useDateTimeService: () => {
|
|
4
|
+
formatDate: typeof format;
|
|
5
|
+
formatDateDistance: typeof formatDistance;
|
|
6
|
+
subDays: typeof subDays;
|
|
7
|
+
parseIsoDate: typeof parseISO;
|
|
8
|
+
dateIsBefore: typeof isBefore;
|
|
9
|
+
formatInTimeZone: (date: Date | string, fmt: string, tz: string) => string;
|
|
10
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const useFilterService: () => {
|
|
2
|
+
byteFormat: (size: number | null | string) => string;
|
|
3
|
+
humanFormat: (number: number | null | string, decimals?: boolean) => string;
|
|
4
|
+
mibFormat: (size: number | null | string) => string;
|
|
5
|
+
gibFormat: (size: number | null | string) => string;
|
|
6
|
+
secondsFormat: (value: number) => string;
|
|
7
|
+
secondsLongFormat: (value: number) => string;
|
|
8
|
+
};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
export declare const useIconService: () => {
|
|
2
|
+
Close20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
3
|
+
ArrowRight20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
4
|
+
ArrowRight32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
5
|
+
Notification20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
6
|
+
UserAvatar20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
7
|
+
UserAvatar32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
8
|
+
Search20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
9
|
+
RowExpand20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
10
|
+
RowCollapse20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
11
|
+
Reset20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
12
|
+
Reset32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
13
|
+
Download20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
14
|
+
Launch20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
15
|
+
Upgrade20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
16
|
+
Upgrade32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
17
|
+
Settings16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
18
|
+
Settings20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
19
|
+
Settings32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
20
|
+
ChevronDown20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
21
|
+
ChevronUp20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
22
|
+
ChevronLeft20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
23
|
+
ChevronRight20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
24
|
+
Information16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
25
|
+
Information20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
26
|
+
InformationFilled16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
27
|
+
Application20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
28
|
+
Application32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
29
|
+
Add20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
30
|
+
Rocket20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
31
|
+
Rocket32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
32
|
+
Chip20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
33
|
+
Chip32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
34
|
+
Save20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
35
|
+
Save32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
36
|
+
Copy20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
37
|
+
EdgeNode20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
38
|
+
EdgeNode32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
39
|
+
Cube32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
40
|
+
EdgeCluster20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
41
|
+
EdgeCluster32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
42
|
+
Connect32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
43
|
+
Connect20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
44
|
+
Edit20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
45
|
+
Password20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
46
|
+
Star20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
47
|
+
Checkmark20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
48
|
+
ZoomIn20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
49
|
+
Events32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
50
|
+
Events20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
51
|
+
Events16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
52
|
+
Link20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
53
|
+
Link32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
54
|
+
WarningAlt20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
55
|
+
WarningAlt32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
56
|
+
Tools20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
57
|
+
Tools32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
58
|
+
Network_220: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
59
|
+
Network_232: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
60
|
+
DataBase20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
61
|
+
DataBase32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
62
|
+
DataBackup20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
63
|
+
DataBackup32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
64
|
+
ArrowDown20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
65
|
+
ArrowDown32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
66
|
+
Time20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
67
|
+
Time32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
68
|
+
Hourglass20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
69
|
+
Hourglass32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
70
|
+
CheckmarkFilled16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
71
|
+
CheckmarkFilled20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
72
|
+
CheckmarkFilled32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
73
|
+
ErrorFilled16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
74
|
+
ErrorFilled20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
75
|
+
ErrorFilled32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
76
|
+
Warning16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
77
|
+
Warning20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
78
|
+
Warning32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
79
|
+
Power16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
80
|
+
Power20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
81
|
+
Power32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
82
|
+
Document20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
83
|
+
Document32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
84
|
+
OverflowMenuVertical20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
85
|
+
OverflowMenuVertical32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
86
|
+
Restart20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
87
|
+
Restart32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
88
|
+
TrashCan20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
89
|
+
TrashCan32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
90
|
+
Erase20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
91
|
+
Erase32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
92
|
+
Row20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
93
|
+
Column20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
94
|
+
Catalog20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
95
|
+
Catalog32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
96
|
+
Group20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
97
|
+
Router32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
98
|
+
Router20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
99
|
+
Certificate32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
100
|
+
Certificate20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
101
|
+
BareMetalServer20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
102
|
+
BareMetalServer32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
103
|
+
Firewall20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
104
|
+
Firewall32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
105
|
+
Wikis32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
106
|
+
Wikis20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
107
|
+
Wikis16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
108
|
+
At32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
109
|
+
At20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
110
|
+
User16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
111
|
+
User20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
112
|
+
User32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
113
|
+
Unknown16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
114
|
+
Unknown20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
115
|
+
Unknown32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
116
|
+
Email16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
117
|
+
Email20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
118
|
+
Email32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
119
|
+
Locked16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
120
|
+
Locked20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
121
|
+
Locked32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
122
|
+
Folder16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
123
|
+
Folder20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
124
|
+
Folder32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
125
|
+
Asterisk16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
126
|
+
Asterisk20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
127
|
+
Asterisk32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
128
|
+
Box16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
129
|
+
Box20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
130
|
+
Box32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
131
|
+
UserMilitary32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
132
|
+
Rule16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
133
|
+
Rule20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
134
|
+
Rule32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
135
|
+
Filter16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
136
|
+
Filter20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
137
|
+
Filter32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
138
|
+
CloseFilled16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
139
|
+
CloseFilled20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
140
|
+
CloseFilled32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
141
|
+
Badge16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
142
|
+
Badge20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
143
|
+
Badge32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
144
|
+
FolderShared16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
145
|
+
FolderShared20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
146
|
+
FolderShared32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
147
|
+
MailAll16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
148
|
+
MailAll20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
149
|
+
MailAll32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
150
|
+
CloudUpload16: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
151
|
+
CloudUpload20: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
152
|
+
CloudUpload32: import('vue').FunctionalComponent<import('lucide-vue-next').LucideProps, {}, any, {}>;
|
|
153
|
+
};
|