@aures5g/vue-component-library 0.47.0 → 0.49.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/src/components/contextPanel/UIContextPanel.vue.d.ts +12 -14
- package/dist/src/components/contextPanel/uiContextPanel.theme.d.ts +2 -2
- package/dist/src/components/copyToClipboard/UICopy.vue.d.ts +5 -10
- package/dist/src/components/divider/UIDivider.vue.d.ts +1 -1
- package/dist/src/components/dropdown/UIDropdown.vue.d.ts +19 -4
- package/dist/src/components/dropdown/uiDropdown.theme.d.ts +6 -6
- package/dist/src/components/infoStrip/UIInfoStrip.vue.d.ts +16 -21
- package/dist/src/components/infoStrip/UIInfoStripSecondaryBox.vue.d.ts +8 -13
- package/dist/src/components/infoStrip/UIPersonList.vue.d.ts +6 -11
- package/dist/src/components/infoStrip/brandLogo/UIBrandLogo.vue.d.ts +1 -1
- package/dist/src/components/languagePicker/UILanguagePicker.vue.d.ts +3 -3
- package/dist/src/components/list/UIList.vue.d.ts +6 -11
- package/dist/src/components/list/UIListItem.vue.d.ts +11 -16
- package/dist/src/components/menu/UIMenu.vue.d.ts +4 -4
- package/dist/src/components/menu/menu.types.d.ts +2 -2
- package/dist/src/components/radioButton/UIRadioButton.vue.d.ts +2 -2
- package/dist/src/components/richTooltip/UIRichTooltip.vue.d.ts +9 -12
- package/dist/src/components/snackbar/UISnackbar.vue.d.ts +6 -11
- package/dist/src/components/switch/UISwitch.vue.d.ts +2 -2
- package/dist/src/components/textField/UITextField.vue.d.ts +6 -2
- package/dist/src/components/toolbar/UIToolbar.vue.d.ts +6 -11
- package/dist/vue-component-library.cjs +738 -711
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +5636 -5215
- package/package.json +54 -33
- package/dist/src/types/fa.d.ts +0 -2
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
header?: string;
|
|
3
3
|
};
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
rootEl: HTMLDivElement;
|
|
4
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
header?: (props: typeof __VLS_1) => any;
|
|
7
|
+
} & {
|
|
8
|
+
toolbar?: (props: typeof __VLS_3) => any;
|
|
9
|
+
} & {
|
|
10
|
+
default?: (props: typeof __VLS_5) => any;
|
|
11
|
+
} & {
|
|
12
|
+
footer?: (props: typeof __VLS_7) => any;
|
|
14
13
|
};
|
|
15
|
-
|
|
16
|
-
declare const
|
|
17
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
16
|
export default _default;
|
|
19
|
-
type
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
18
|
new (): {
|
|
21
19
|
$slots: S;
|
|
22
20
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const BASE = "w-full h-full bg-surface-container px-[1.5rem] pt-[1rem]";
|
|
1
|
+
export declare const BASE = "flex flex-col w-full h-full bg-surface-container px-[1.5rem] pt-[1rem]";
|
|
2
2
|
export declare const HEADER = "px-[1.25rem] pb-[1.75rem] pt-[0.75rem]";
|
|
3
3
|
export declare const TITLE = "text-[1.375rem] leading-[1.5rem] text-on-primary-container";
|
|
4
|
-
export declare const CONTENT_BOX = "bg-[#FDFBFF] pt-[0.75rem] rounded-t-[1rem] shadow-[1px_0_16px_-2px_rgba(0,47,100,0.20)]";
|
|
4
|
+
export declare const CONTENT_BOX = "flex flex-col grow bg-[#FDFBFF] pt-[0.75rem] rounded-t-[1rem] shadow-[1px_0_16px_-2px_rgba(0,47,100,0.20)]";
|
|
@@ -7,24 +7,19 @@ type __VLS_Props = {
|
|
|
7
7
|
hiddenIcon?: boolean;
|
|
8
8
|
iconPosition?: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
9
9
|
};
|
|
10
|
-
declare
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
default?(_: {}): any;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: any;
|
|
10
|
+
declare var __VLS_6: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
default?: (props: typeof __VLS_6) => any;
|
|
17
13
|
};
|
|
18
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
14
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
15
|
textToDisplay: string | number;
|
|
21
16
|
tooltipPosition: (typeof TOOLTIP_POSITION)[keyof typeof TOOLTIP_POSITION];
|
|
22
17
|
hiddenIcon: boolean;
|
|
23
18
|
iconPosition: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
24
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
-
declare const _default:
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
21
|
export default _default;
|
|
27
|
-
type
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
23
|
new (): {
|
|
29
24
|
$slots: S;
|
|
30
25
|
};
|
|
@@ -3,5 +3,5 @@ type __VLS_Props = {
|
|
|
3
3
|
};
|
|
4
4
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
5
|
isVertical: boolean;
|
|
6
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
7
|
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type SelectPassThroughOptions } from 'primevue/select';
|
|
2
2
|
import { type PassThroughOptions } from 'primevue/passthrough';
|
|
3
3
|
import type { PassThrough } from '@primevue/core';
|
|
4
|
+
import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
4
5
|
type __VLS_Props = {
|
|
5
6
|
pt?: PassThrough<SelectPassThroughOptions>;
|
|
6
7
|
ptOptions?: PassThroughOptions;
|
|
@@ -9,13 +10,20 @@ type __VLS_Props = {
|
|
|
9
10
|
options: unknown[];
|
|
10
11
|
optionLabel?: string | ((item: unknown) => string);
|
|
11
12
|
optionValue?: string | ((item: unknown) => string);
|
|
12
|
-
showClear
|
|
13
|
+
showClear?: boolean;
|
|
13
14
|
required?: boolean;
|
|
15
|
+
leadingIcon?: FontAwesomeIconProps['icon'];
|
|
14
16
|
};
|
|
15
|
-
type __VLS_PublicProps = {
|
|
17
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
16
18
|
modelValue?: unknown;
|
|
17
|
-
}
|
|
18
|
-
declare
|
|
19
|
+
};
|
|
20
|
+
declare var __VLS_6: {
|
|
21
|
+
containerClass: string;
|
|
22
|
+
};
|
|
23
|
+
type __VLS_Slots = {} & {
|
|
24
|
+
leadingIcon?: (props: typeof __VLS_6) => any;
|
|
25
|
+
};
|
|
26
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
27
|
"update:modelValue": (value: unknown) => any;
|
|
20
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
29
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
@@ -24,8 +32,15 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
24
32
|
ptOptions: PassThroughOptions;
|
|
25
33
|
disabled: boolean;
|
|
26
34
|
required: boolean;
|
|
35
|
+
leadingIcon: FontAwesomeIconProps["icon"];
|
|
27
36
|
optionLabel: string | ((item: unknown) => string);
|
|
28
37
|
optionValue: string | ((item: unknown) => string);
|
|
29
38
|
showClear: boolean;
|
|
30
39
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
40
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
41
|
export default _default;
|
|
42
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
43
|
+
new (): {
|
|
44
|
+
$slots: S;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare const BASE = "peer select-none min-w-[16rem] border border-on-surface-variant flex justify-end items-center
|
|
2
|
-
export declare const DROPDOWN = "
|
|
3
|
-
export declare const DISABLED_DROPDOWN = "!text-on-surface/[0.12] border-on-surface/[0.12]
|
|
4
|
-
export declare const CLEAR_ICON = "
|
|
5
|
-
export declare const SELECT_LABEL = "w-full flex justify-start bg-transparent text-on-surface-variant focus-visible:outline-none";
|
|
6
|
-
export declare const FLOATING_LABEL = "absolute select-none ml-[1rem] top-[50%] text-[1rem] -translate-y-1/2 peer-[.focused]:top-0 peer-[.focused]:text-[0.75rem] peer-[.focused]:leading-[1rem] peer-[.focused]:px-[0.25rem] peer-[.focused]:ml-[0.5rem] leading-[1rem] text-on-surface-variant peer-[.focused]:bg-inherit bg-inherit transition-all";
|
|
1
|
+
export declare const BASE = "peer select-none min-w-[16rem] border border-on-surface-variant flex justify-end items-center rounded-[0.25rem] w-fit h-[2.5rem] bg-inherit overflow-hidden";
|
|
2
|
+
export declare const DROPDOWN = "text-[1rem] h-fit p-[0.25rem] mx-[0.5rem] flex items-center";
|
|
3
|
+
export declare const DISABLED_DROPDOWN = "!text-on-surface/[0.12] border-on-surface/[0.12]";
|
|
4
|
+
export declare const CLEAR_ICON = "text-[1rem] cursor-pointer";
|
|
5
|
+
export declare const SELECT_LABEL = "w-full flex justify-start bg-transparent text-on-surface-variant focus-visible:outline-none pr-[0.75rem]";
|
|
6
|
+
export declare const FLOATING_LABEL = "absolute select-none ml-[1rem] top-[50%] text-[1rem] -translate-y-1/2 peer-[.focused]:top-0 peer-[.focused]:text-[0.75rem] peer-[.focused]:leading-[1rem] peer-[.focused]:px-[0.25rem] peer-[.focused]:ml-[0.5rem] leading-[1rem] text-on-surface-variant peer-[.focused]:bg-inherit bg-inherit transition-all pointer-events-none";
|
|
7
7
|
export declare const OVERLAY_PANEL = "max-h-[8rem] overflow-auto shadow-1 rounded-[0.25rem] py-[0.5rem] bg-on-primary";
|
|
8
8
|
export declare const ITEM = "cursor-pointer px-[1rem] hover:bg-primary-fixed text-[1rem] leading-[2.5rem] text-on-surface-variant";
|
|
@@ -4,32 +4,27 @@ type __VLS_Props = {
|
|
|
4
4
|
status?: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
|
|
5
5
|
title: string;
|
|
6
6
|
};
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
rootEl: HTMLDivElement;
|
|
7
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_21: {}, __VLS_23: {}, __VLS_25: {}, __VLS_27: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
'leading-icon'?: (props: typeof __VLS_1) => any;
|
|
10
|
+
} & {
|
|
11
|
+
'severity-swap'?: (props: typeof __VLS_3) => any;
|
|
12
|
+
} & {
|
|
13
|
+
'primary-content'?: (props: typeof __VLS_21) => any;
|
|
14
|
+
} & {
|
|
15
|
+
'secondary-boxes'?: (props: typeof __VLS_23) => any;
|
|
16
|
+
} & {
|
|
17
|
+
'primary-action'?: (props: typeof __VLS_25) => any;
|
|
18
|
+
} & {
|
|
19
|
+
'secondary-action'?: (props: typeof __VLS_27) => any;
|
|
21
20
|
};
|
|
22
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
21
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
24
22
|
severity: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
|
|
25
|
-
title: string;
|
|
26
23
|
status: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
|
|
27
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
28
|
-
|
|
29
|
-
}, HTMLDivElement>;
|
|
30
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
26
|
export default _default;
|
|
32
|
-
type
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
33
28
|
new (): {
|
|
34
29
|
$slots: S;
|
|
35
30
|
};
|
|
@@ -1,21 +1,16 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
headline: string;
|
|
4
|
-
icon?:
|
|
4
|
+
icon?: FontAwesomeIconProps['icon'];
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLDivElement;
|
|
6
|
+
declare var __VLS_5: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_5) => any;
|
|
13
9
|
};
|
|
14
|
-
|
|
15
|
-
declare const
|
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
12
|
export default _default;
|
|
18
|
-
type
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
14
|
new (): {
|
|
20
15
|
$slots: S;
|
|
21
16
|
};
|
|
@@ -2,19 +2,14 @@ type __VLS_Props = {
|
|
|
2
2
|
headline: string;
|
|
3
3
|
label: string;
|
|
4
4
|
};
|
|
5
|
-
declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
icon?(_: {}): any;
|
|
9
|
-
};
|
|
10
|
-
refs: {};
|
|
11
|
-
rootEl: HTMLDivElement;
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
icon?: (props: typeof __VLS_1) => any;
|
|
12
8
|
};
|
|
13
|
-
|
|
14
|
-
declare const
|
|
15
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
11
|
export default _default;
|
|
17
|
-
type
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
13
|
new (): {
|
|
19
14
|
$slots: S;
|
|
20
15
|
};
|
|
@@ -5,5 +5,5 @@ type __VLS_Props = {
|
|
|
5
5
|
};
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
7
|
severity: BrandLogoSeverities;
|
|
8
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
8
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
9
|
export default _default;
|
|
@@ -2,14 +2,14 @@ import { type LanguagePickerPosition } from './uiLanguagePicker.const';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
position?: LanguagePickerPosition;
|
|
4
4
|
};
|
|
5
|
-
type __VLS_PublicProps = {
|
|
5
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
6
6
|
modelValue?: null | string;
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
8
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (value: string | null) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
11
|
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
position: LanguagePickerPosition;
|
|
14
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
export default _default;
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {};
|
|
7
|
-
rootEl: HTMLDivElement;
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
declare const
|
|
11
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
7
|
export default _default;
|
|
13
|
-
type
|
|
8
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
9
|
new (): {
|
|
15
10
|
$slots: S;
|
|
16
11
|
};
|
|
@@ -1,27 +1,22 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
header: string;
|
|
4
4
|
multiline?: boolean;
|
|
5
|
-
icon?:
|
|
5
|
+
icon?: FontAwesomeIconProps['icon'];
|
|
6
6
|
};
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
};
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: HTMLDivElement;
|
|
7
|
+
declare var __VLS_5: {}, __VLS_7: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
text?: (props: typeof __VLS_5) => any;
|
|
10
|
+
} & {
|
|
11
|
+
trailing?: (props: typeof __VLS_7) => any;
|
|
15
12
|
};
|
|
16
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
13
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
|
-
icon:
|
|
19
|
-
header: string;
|
|
14
|
+
icon: FontAwesomeIconProps["icon"];
|
|
20
15
|
multiline: boolean;
|
|
21
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
22
|
-
declare const _default:
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
18
|
export default _default;
|
|
24
|
-
type
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
20
|
new (): {
|
|
26
21
|
$slots: S;
|
|
27
22
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
1
2
|
import { type RouteRecordName } from 'vue-router';
|
|
2
|
-
import type { Icon } from '@/types/fa';
|
|
3
3
|
import type { MenuItems } from './menu.types';
|
|
4
4
|
type __VLS_Props = {
|
|
5
5
|
mainMenuItems: MenuItems;
|
|
6
6
|
branding: [string, string];
|
|
7
|
-
brandLogo?:
|
|
7
|
+
brandLogo?: FontAwesomeIconProps['icon'];
|
|
8
8
|
landingRoute?: RouteRecordName | null;
|
|
9
9
|
expandedRoutes?: RouteRecordName[];
|
|
10
10
|
};
|
|
11
11
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
-
brandLogo:
|
|
12
|
+
brandLogo: FontAwesomeIconProps["icon"];
|
|
13
13
|
landingRoute: string | symbol | null;
|
|
14
14
|
expandedRoutes: RouteRecordName[];
|
|
15
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
2
2
|
export type MenuItem = {
|
|
3
3
|
name: string;
|
|
4
4
|
title: string;
|
|
5
|
-
faIcon:
|
|
5
|
+
faIcon: FontAwesomeIconProps['icon'];
|
|
6
6
|
navbarBadge?: string;
|
|
7
7
|
href?: string;
|
|
8
8
|
};
|
|
@@ -4,7 +4,7 @@ import type { PassThrough } from '@primevue/core';
|
|
|
4
4
|
declare const _default: <T extends string | number | boolean>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
5
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
6
|
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
7
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> &
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & {
|
|
8
8
|
pt?: PassThrough<RadioButtonPassThroughOptions>;
|
|
9
9
|
ptOptions?: PassThroughOptions;
|
|
10
10
|
isDisabled?: boolean;
|
|
@@ -13,7 +13,7 @@ declare const _default: <T extends string | number | boolean>(__VLS_props: NonNu
|
|
|
13
13
|
label?: string;
|
|
14
14
|
isLabelLeft?: boolean;
|
|
15
15
|
binary?: boolean;
|
|
16
|
-
}
|
|
16
|
+
} & Partial<{}>> & import("vue").PublicProps;
|
|
17
17
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
18
18
|
attrs: any;
|
|
19
19
|
slots: {};
|
|
@@ -3,25 +3,22 @@ type __VLS_Props = {
|
|
|
3
3
|
text?: string;
|
|
4
4
|
hasAction?: boolean;
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: any;
|
|
6
|
+
declare var __VLS_6: {}, __VLS_8: {}, __VLS_10: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
trigger?: (props: typeof __VLS_6) => any;
|
|
9
|
+
} & {
|
|
10
|
+
content?: (props: typeof __VLS_8) => any;
|
|
11
|
+
} & {
|
|
12
|
+
action?: (props: typeof __VLS_10) => any;
|
|
15
13
|
};
|
|
16
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
14
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
15
|
text: string;
|
|
19
16
|
title: string;
|
|
20
17
|
hasAction: boolean;
|
|
21
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
-
declare const _default:
|
|
19
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
20
|
export default _default;
|
|
24
|
-
type
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
22
|
new (): {
|
|
26
23
|
$slots: S;
|
|
27
24
|
};
|
|
@@ -3,15 +3,10 @@ type __VLS_Props = {
|
|
|
3
3
|
hasLongAction?: boolean;
|
|
4
4
|
closeable?: boolean;
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLDivElement;
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
13
9
|
};
|
|
14
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
10
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
11
|
close: () => any;
|
|
17
12
|
action: () => any;
|
|
@@ -22,10 +17,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
22
17
|
actionLabel: string;
|
|
23
18
|
hasLongAction: boolean;
|
|
24
19
|
closeable: boolean;
|
|
25
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
26
|
-
declare const _default:
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
22
|
export default _default;
|
|
28
|
-
type
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
24
|
new (): {
|
|
30
25
|
$slots: S;
|
|
31
26
|
};
|
|
@@ -6,9 +6,9 @@ type __VLS_Props = {
|
|
|
6
6
|
ptOptions?: PassThroughOptions;
|
|
7
7
|
isDisabled?: boolean;
|
|
8
8
|
};
|
|
9
|
-
type __VLS_PublicProps = {
|
|
9
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
10
10
|
modelValue?: boolean;
|
|
11
|
-
}
|
|
11
|
+
};
|
|
12
12
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
13
|
"update:modelValue": (value: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { type InputTextPassThroughOptions } from 'primevue/inputtext';
|
|
2
2
|
import { type PassThroughOptions } from 'primevue/passthrough';
|
|
3
3
|
import type { PassThrough } from '@primevue/core';
|
|
4
|
+
import { type FontAwesomeIconProps } from '@fortawesome/vue-fontawesome';
|
|
4
5
|
type __VLS_Props = {
|
|
5
6
|
pt?: PassThrough<InputTextPassThroughOptions>;
|
|
6
7
|
ptOptions?: PassThroughOptions;
|
|
7
8
|
invalid?: boolean;
|
|
8
9
|
disabled?: boolean;
|
|
10
|
+
/** @deprecated Use leading-icon with faMagnifyingGlass instead */
|
|
9
11
|
hasSearchIcon?: boolean;
|
|
12
|
+
leadingIcon?: FontAwesomeIconProps['icon'];
|
|
10
13
|
isFocused?: boolean;
|
|
11
14
|
label: string;
|
|
12
15
|
supportText?: string;
|
|
13
16
|
};
|
|
14
|
-
type __VLS_PublicProps = {
|
|
17
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
15
18
|
modelValue?: string;
|
|
16
|
-
}
|
|
19
|
+
};
|
|
17
20
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
21
|
"update:modelValue": (value: string) => any;
|
|
19
22
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -23,6 +26,7 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
23
26
|
ptOptions: PassThroughOptions;
|
|
24
27
|
invalid: boolean;
|
|
25
28
|
hasSearchIcon: boolean;
|
|
29
|
+
leadingIcon: FontAwesomeIconProps["icon"];
|
|
26
30
|
isFocused: boolean;
|
|
27
31
|
supportText: string;
|
|
28
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
header: string;
|
|
3
3
|
};
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
default?(_: {}): any;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: HTMLDivElement;
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
11
7
|
};
|
|
12
|
-
|
|
13
|
-
declare const
|
|
14
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
15
10
|
export default _default;
|
|
16
|
-
type
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
12
|
new (): {
|
|
18
13
|
$slots: S;
|
|
19
14
|
};
|