@aures5g/vue-component-library 0.46.0 → 0.48.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 +22 -15
- package/dist/src/components/contextPanel/uiContextPanel.theme.d.ts +2 -1
- package/dist/src/components/copyToClipboard/UICopy.vue.d.ts +34 -10
- package/dist/src/components/divider/UIDivider.vue.d.ts +1 -1
- package/dist/src/components/dropdown/UIDropdown.vue.d.ts +2 -2
- package/dist/src/components/infoStrip/UIInfoStrip.vue.d.ts +49 -21
- package/dist/src/components/infoStrip/UIInfoStripSecondaryBox.vue.d.ts +16 -12
- package/dist/src/components/infoStrip/UIPersonList.vue.d.ts +16 -12
- 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 +12 -12
- package/dist/src/components/list/UIListItem.vue.d.ts +24 -13
- package/dist/src/components/menu/UIMenu.vue.d.ts +1 -1
- package/dist/src/components/radioButton/UIRadioButton.vue.d.ts +2 -2
- package/dist/src/components/richTooltip/UIRichTooltip.vue.d.ts +27 -12
- package/dist/src/components/snackbar/UISnackbar.vue.d.ts +35 -11
- package/dist/src/components/switch/UISwitch.vue.d.ts +2 -2
- package/dist/src/components/textField/UITextField.vue.d.ts +2 -2
- package/dist/src/components/toolbar/UIToolbar.vue.d.ts +13 -12
- package/dist/vue-component-library.cjs +738 -711
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +5609 -5207
- package/package.json +51 -30
|
@@ -1,21 +1,28 @@
|
|
|
1
|
+
import { BASE, HEADER, CONTENT_BOX, TITLE } from './uiContextPanel.theme';
|
|
1
2
|
type __VLS_Props = {
|
|
2
|
-
header
|
|
3
|
+
header?: string;
|
|
3
4
|
};
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
declare const
|
|
16
|
-
|
|
5
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {};
|
|
7
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
8
|
+
header?: (props: typeof __VLS_1) => any;
|
|
9
|
+
} & {
|
|
10
|
+
toolbar?: (props: typeof __VLS_3) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_5) => any;
|
|
13
|
+
} & {
|
|
14
|
+
footer?: (props: typeof __VLS_7) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
BASE: typeof BASE;
|
|
18
|
+
HEADER: typeof HEADER;
|
|
19
|
+
CONTENT_BOX: typeof CONTENT_BOX;
|
|
20
|
+
TITLE: typeof TITLE;
|
|
21
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
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>;
|
|
23
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
24
|
export default _default;
|
|
18
|
-
type
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
26
|
new (): {
|
|
20
27
|
$slots: S;
|
|
21
28
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const BASE = "w-full h-full bg-surface-container px-[1.5rem] pt-[1rem]";
|
|
2
|
-
export declare const HEADER = "px-[1.25rem] pb-[1.75rem] pt-[0.75rem]
|
|
2
|
+
export declare const HEADER = "px-[1.25rem] pb-[1.75rem] pt-[0.75rem]";
|
|
3
|
+
export declare const TITLE = "text-[1.375rem] leading-[1.5rem] text-on-primary-container";
|
|
3
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)]";
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
import { UseClipboard } from '@vueuse/components';
|
|
1
2
|
import { TOOLTIP_POSITION, ICON_POSITION } from './uiCopy.const';
|
|
3
|
+
import { BASE_CLIPBOARD, ICON_LEFT, HIDDEN_ICON, COPY_ICON_TRANSITION, COPY_ICON_ENTER_FROM, COPY_ICON_ENTER_TO, COPY_ICON_LEAVE } from './uiCopy.theme';
|
|
4
|
+
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
|
5
|
+
import { faCopy, faCheck } from '@awesome.me/kit-bccbe657bb/icons/sharp/solid';
|
|
2
6
|
type __VLS_Props = {
|
|
3
7
|
textToClipboard: string;
|
|
4
8
|
textToDisplay?: string | number;
|
|
@@ -7,24 +11,44 @@ type __VLS_Props = {
|
|
|
7
11
|
hiddenIcon?: boolean;
|
|
8
12
|
iconPosition?: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
9
13
|
};
|
|
10
|
-
declare function
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
default?(_: {}): any;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: any;
|
|
14
|
+
declare function getTooltipText(copied: boolean): {
|
|
15
|
+
value: string | undefined;
|
|
16
|
+
unstyled: true;
|
|
17
17
|
};
|
|
18
|
-
|
|
18
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
19
|
+
declare var __VLS_6: {};
|
|
20
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
21
|
+
default?: (props: typeof __VLS_6) => any;
|
|
22
|
+
}>;
|
|
23
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
24
|
+
UseClipboard: typeof UseClipboard;
|
|
25
|
+
ICON_POSITION: typeof ICON_POSITION;
|
|
26
|
+
BASE_CLIPBOARD: typeof BASE_CLIPBOARD;
|
|
27
|
+
ICON_LEFT: typeof ICON_LEFT;
|
|
28
|
+
HIDDEN_ICON: typeof HIDDEN_ICON;
|
|
29
|
+
COPY_ICON_TRANSITION: typeof COPY_ICON_TRANSITION;
|
|
30
|
+
COPY_ICON_ENTER_FROM: typeof COPY_ICON_ENTER_FROM;
|
|
31
|
+
COPY_ICON_ENTER_TO: typeof COPY_ICON_ENTER_TO;
|
|
32
|
+
COPY_ICON_LEAVE: typeof COPY_ICON_LEAVE;
|
|
33
|
+
FontAwesomeIcon: typeof FontAwesomeIcon;
|
|
34
|
+
faCopy: typeof faCopy;
|
|
35
|
+
faCheck: typeof faCheck;
|
|
36
|
+
getTooltipText: typeof getTooltipText;
|
|
37
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
38
|
+
textToDisplay: string | number;
|
|
39
|
+
tooltipPosition: (typeof TOOLTIP_POSITION)[keyof typeof TOOLTIP_POSITION];
|
|
40
|
+
hiddenIcon: boolean;
|
|
41
|
+
iconPosition: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
42
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
43
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
44
|
textToDisplay: string | number;
|
|
21
45
|
tooltipPosition: (typeof TOOLTIP_POSITION)[keyof typeof TOOLTIP_POSITION];
|
|
22
46
|
hiddenIcon: boolean;
|
|
23
47
|
iconPosition: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
24
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
-
declare const _default:
|
|
49
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
50
|
export default _default;
|
|
27
|
-
type
|
|
51
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
52
|
new (): {
|
|
29
53
|
$slots: S;
|
|
30
54
|
};
|
|
@@ -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;
|
|
@@ -12,9 +12,9 @@ type __VLS_Props = {
|
|
|
12
12
|
showClear: boolean;
|
|
13
13
|
required?: boolean;
|
|
14
14
|
};
|
|
15
|
-
type __VLS_PublicProps = {
|
|
15
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
16
16
|
modelValue?: unknown;
|
|
17
|
-
}
|
|
17
|
+
};
|
|
18
18
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
19
|
"update:modelValue": (value: unknown) => any;
|
|
20
20
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -1,35 +1,63 @@
|
|
|
1
1
|
import { STRIP_SEVERITY, CUSTOMER_STATUS } from './uiInfoStrip.const';
|
|
2
|
+
import { UITag } from '@/index';
|
|
3
|
+
import { BASE, DEFAULT_FIRST_BOX, ENEMY_FIRST_BOX, VIP_FIRST_BOX, HEADER_WRAPPER, TAGS_WRAPPER, ENEMY_TAG, VIP_TAG, B2B_TAG, B2C_TAG, SECONDARY_BOXES_WRAPPER, ACTION_WRAPPER } from './uiInfoStrip.theme';
|
|
2
4
|
type __VLS_Props = {
|
|
3
5
|
severity?: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
|
|
4
6
|
status?: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
|
|
5
7
|
title: string;
|
|
6
8
|
};
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
9
|
+
declare const slots: Readonly<{
|
|
10
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
11
|
+
}>;
|
|
12
|
+
declare const isTruncated: import("vue").Ref<boolean, boolean>;
|
|
13
|
+
declare const hasActions: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
14
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
15
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_21: {}, __VLS_23: {}, __VLS_25: {}, __VLS_27: {};
|
|
16
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
17
|
+
'leading-icon'?: (props: typeof __VLS_1) => any;
|
|
18
|
+
} & {
|
|
19
|
+
'severity-swap'?: (props: typeof __VLS_3) => any;
|
|
20
|
+
} & {
|
|
21
|
+
'primary-content'?: (props: typeof __VLS_21) => any;
|
|
22
|
+
} & {
|
|
23
|
+
'secondary-boxes'?: (props: typeof __VLS_23) => any;
|
|
24
|
+
} & {
|
|
25
|
+
'primary-action'?: (props: typeof __VLS_25) => any;
|
|
26
|
+
} & {
|
|
27
|
+
'secondary-action'?: (props: typeof __VLS_27) => any;
|
|
28
|
+
}>;
|
|
29
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
30
|
+
STRIP_SEVERITY: typeof STRIP_SEVERITY;
|
|
31
|
+
CUSTOMER_STATUS: typeof CUSTOMER_STATUS;
|
|
32
|
+
UITag: typeof UITag;
|
|
33
|
+
BASE: typeof BASE;
|
|
34
|
+
DEFAULT_FIRST_BOX: typeof DEFAULT_FIRST_BOX;
|
|
35
|
+
ENEMY_FIRST_BOX: typeof ENEMY_FIRST_BOX;
|
|
36
|
+
VIP_FIRST_BOX: typeof VIP_FIRST_BOX;
|
|
37
|
+
HEADER_WRAPPER: typeof HEADER_WRAPPER;
|
|
38
|
+
TAGS_WRAPPER: typeof TAGS_WRAPPER;
|
|
39
|
+
ENEMY_TAG: typeof ENEMY_TAG;
|
|
40
|
+
VIP_TAG: typeof VIP_TAG;
|
|
41
|
+
B2B_TAG: typeof B2B_TAG;
|
|
42
|
+
B2C_TAG: typeof B2C_TAG;
|
|
43
|
+
SECONDARY_BOXES_WRAPPER: typeof SECONDARY_BOXES_WRAPPER;
|
|
44
|
+
ACTION_WRAPPER: typeof ACTION_WRAPPER;
|
|
45
|
+
slots: typeof slots;
|
|
46
|
+
isTruncated: typeof isTruncated;
|
|
47
|
+
hasActions: typeof hasActions;
|
|
48
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
49
|
+
severity: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
|
|
50
|
+
title: string;
|
|
51
|
+
status: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
|
|
52
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
53
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
24
54
|
severity: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
|
|
25
55
|
title: string;
|
|
26
56
|
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"]>;
|
|
57
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
58
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
59
|
export default _default;
|
|
32
|
-
type
|
|
60
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
33
61
|
new (): {
|
|
34
62
|
$slots: S;
|
|
35
63
|
};
|
|
@@ -1,21 +1,25 @@
|
|
|
1
|
+
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
|
1
2
|
import type { Icon } from '@/types/fa';
|
|
3
|
+
import { BASE, HEADLINE_BOX, HEADLINE } from './uiInfoStripSecondaryBox.theme';
|
|
2
4
|
type __VLS_Props = {
|
|
3
5
|
headline: string;
|
|
4
6
|
icon?: Icon;
|
|
5
7
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
8
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
9
|
+
declare var __VLS_5: {};
|
|
10
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
11
|
+
default?: (props: typeof __VLS_5) => any;
|
|
12
|
+
}>;
|
|
13
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
14
|
+
FontAwesomeIcon: typeof FontAwesomeIcon;
|
|
15
|
+
BASE: typeof BASE;
|
|
16
|
+
HEADLINE_BOX: typeof HEADLINE_BOX;
|
|
17
|
+
HEADLINE: typeof HEADLINE;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
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>;
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
21
|
export default _default;
|
|
18
|
-
type
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
23
|
new (): {
|
|
20
24
|
$slots: S;
|
|
21
25
|
};
|
|
@@ -1,20 +1,24 @@
|
|
|
1
|
+
import { WRAPPER, ICON_BOX, LABELS_WRAPPER, HEADLINE, LABEL } from './uiPersonList.theme';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
headline: string;
|
|
3
4
|
label: string;
|
|
4
5
|
};
|
|
5
|
-
declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
6
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
7
|
+
declare var __VLS_1: {};
|
|
8
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
9
|
+
icon?: (props: typeof __VLS_1) => any;
|
|
10
|
+
}>;
|
|
11
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
12
|
+
WRAPPER: typeof WRAPPER;
|
|
13
|
+
ICON_BOX: typeof ICON_BOX;
|
|
14
|
+
LABELS_WRAPPER: typeof LABELS_WRAPPER;
|
|
15
|
+
HEADLINE: typeof HEADLINE;
|
|
16
|
+
LABEL: typeof LABEL;
|
|
17
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
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>;
|
|
19
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
20
|
export default _default;
|
|
17
|
-
type
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
22
|
new (): {
|
|
19
23
|
$slots: S;
|
|
20
24
|
};
|
|
@@ -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,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
11
|
-
declare const _default:
|
|
1
|
+
import { BASE } from './uiList.theme';
|
|
2
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
5
|
+
default?: (props: typeof __VLS_1) => any;
|
|
6
|
+
}>;
|
|
7
|
+
declare const __VLS_self: import("vue").DefineComponent<{}, {
|
|
8
|
+
BASE: typeof BASE;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
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>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
12
|
export default _default;
|
|
13
|
-
type
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
14
|
new (): {
|
|
15
15
|
$slots: S;
|
|
16
16
|
};
|
|
@@ -1,27 +1,38 @@
|
|
|
1
1
|
import type { Icon } from '@/types/fa';
|
|
2
|
+
import { LIST_ITEM, ALIGN_CENTER, ALIGN_TOP, LABELS_CONTAINER, HEADER } from './uiList.theme';
|
|
3
|
+
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
|
2
4
|
type __VLS_Props = {
|
|
3
5
|
header: string;
|
|
4
6
|
multiline?: boolean;
|
|
5
7
|
icon?: Icon;
|
|
6
8
|
};
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
10
|
+
declare var __VLS_5: {}, __VLS_7: {};
|
|
11
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
12
|
+
text?: (props: typeof __VLS_5) => any;
|
|
13
|
+
} & {
|
|
14
|
+
trailing?: (props: typeof __VLS_7) => any;
|
|
15
|
+
}>;
|
|
16
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
17
|
+
LIST_ITEM: typeof LIST_ITEM;
|
|
18
|
+
ALIGN_CENTER: typeof ALIGN_CENTER;
|
|
19
|
+
ALIGN_TOP: typeof ALIGN_TOP;
|
|
20
|
+
LABELS_CONTAINER: typeof LABELS_CONTAINER;
|
|
21
|
+
HEADER: typeof HEADER;
|
|
22
|
+
FontAwesomeIcon: typeof FontAwesomeIcon;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
24
|
+
icon: Icon;
|
|
25
|
+
header: string;
|
|
26
|
+
multiline: boolean;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
28
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
29
|
icon: Icon;
|
|
19
30
|
header: string;
|
|
20
31
|
multiline: boolean;
|
|
21
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
22
|
-
declare const _default:
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
34
|
export default _default;
|
|
24
|
-
type
|
|
35
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
36
|
new (): {
|
|
26
37
|
$slots: S;
|
|
27
38
|
};
|
|
@@ -12,5 +12,5 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
12
12
|
brandLogo: 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;
|
|
@@ -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: {};
|
|
@@ -1,27 +1,42 @@
|
|
|
1
|
+
import { Tippy } from 'vue-tippy';
|
|
2
|
+
import { BASE, ACTION_BOX } from './uiRichTooltip.theme';
|
|
1
3
|
type __VLS_Props = {
|
|
2
4
|
title?: string;
|
|
3
5
|
text?: string;
|
|
4
6
|
hasAction?: boolean;
|
|
5
7
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
slots: {
|
|
9
|
-
trigger?(_: {}): any;
|
|
10
|
-
content?(_: {}): any;
|
|
11
|
-
action?(_: {}): any;
|
|
12
|
-
};
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: any;
|
|
8
|
+
declare const attrs: {
|
|
9
|
+
[x: string]: unknown;
|
|
15
10
|
};
|
|
16
|
-
|
|
11
|
+
declare const appendTo: () => HTMLElement;
|
|
12
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
13
|
+
declare var __VLS_6: {}, __VLS_8: {}, __VLS_10: {};
|
|
14
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
15
|
+
trigger?: (props: typeof __VLS_6) => any;
|
|
16
|
+
} & {
|
|
17
|
+
content?: (props: typeof __VLS_8) => any;
|
|
18
|
+
} & {
|
|
19
|
+
action?: (props: typeof __VLS_10) => any;
|
|
20
|
+
}>;
|
|
21
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
22
|
+
Tippy: typeof Tippy;
|
|
23
|
+
BASE: typeof BASE;
|
|
24
|
+
ACTION_BOX: typeof ACTION_BOX;
|
|
25
|
+
attrs: typeof attrs;
|
|
26
|
+
appendTo: typeof appendTo;
|
|
27
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
28
|
+
text: string;
|
|
29
|
+
title: string;
|
|
30
|
+
hasAction: boolean;
|
|
31
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
32
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
33
|
text: string;
|
|
19
34
|
title: string;
|
|
20
35
|
hasAction: boolean;
|
|
21
36
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
-
declare const _default:
|
|
37
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
38
|
export default _default;
|
|
24
|
-
type
|
|
39
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
40
|
new (): {
|
|
26
41
|
$slots: S;
|
|
27
42
|
};
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
+
import { BASE, LABELS_BOX, ACTION_BOX, ACTION_BUTTON, CLOSE_BUTTON } from './uiSnackbar.theme';
|
|
2
|
+
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
|
3
|
+
import { faXmark } from '@awesome.me/kit-bccbe657bb/icons/sharp/solid';
|
|
1
4
|
type __VLS_Props = {
|
|
2
5
|
actionLabel?: string;
|
|
3
6
|
hasLongAction?: boolean;
|
|
4
7
|
closeable?: boolean;
|
|
5
8
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLDivElement;
|
|
9
|
+
type __VLS_Emit = {
|
|
10
|
+
(e: 'close'): void;
|
|
11
|
+
(e: 'action'): void;
|
|
13
12
|
};
|
|
14
|
-
|
|
13
|
+
declare const emit: __VLS_Emit;
|
|
14
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
15
|
+
declare var __VLS_1: {};
|
|
16
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
17
|
+
default?: (props: typeof __VLS_1) => any;
|
|
18
|
+
}>;
|
|
19
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
20
|
+
BASE: typeof BASE;
|
|
21
|
+
LABELS_BOX: typeof LABELS_BOX;
|
|
22
|
+
ACTION_BOX: typeof ACTION_BOX;
|
|
23
|
+
ACTION_BUTTON: typeof ACTION_BUTTON;
|
|
24
|
+
CLOSE_BUTTON: typeof CLOSE_BUTTON;
|
|
25
|
+
FontAwesomeIcon: typeof FontAwesomeIcon;
|
|
26
|
+
faXmark: typeof faXmark;
|
|
27
|
+
emit: typeof emit;
|
|
28
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
29
|
+
close: () => any;
|
|
30
|
+
action: () => any;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
32
|
+
onClose?: (() => any) | undefined;
|
|
33
|
+
onAction?: (() => any) | undefined;
|
|
34
|
+
}>, {
|
|
35
|
+
actionLabel: string;
|
|
36
|
+
hasLongAction: boolean;
|
|
37
|
+
closeable: boolean;
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
39
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
40
|
close: () => any;
|
|
17
41
|
action: () => any;
|
|
@@ -22,10 +46,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
22
46
|
actionLabel: string;
|
|
23
47
|
hasLongAction: boolean;
|
|
24
48
|
closeable: boolean;
|
|
25
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
26
|
-
declare const _default:
|
|
49
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
50
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
51
|
export default _default;
|
|
28
|
-
type
|
|
52
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
53
|
new (): {
|
|
30
54
|
$slots: S;
|
|
31
55
|
};
|
|
@@ -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<{
|
|
@@ -11,9 +11,9 @@ type __VLS_Props = {
|
|
|
11
11
|
label: string;
|
|
12
12
|
supportText?: string;
|
|
13
13
|
};
|
|
14
|
-
type __VLS_PublicProps = {
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
15
15
|
modelValue?: string;
|
|
16
|
-
}
|
|
16
|
+
};
|
|
17
17
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (value: string) => any;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
+
import { BASE, HEADER } from './uiToolbar.theme';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
header: string;
|
|
3
4
|
};
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
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, {},
|
|
14
|
-
declare const _default:
|
|
5
|
+
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
}>;
|
|
10
|
+
declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
|
|
11
|
+
BASE: typeof BASE;
|
|
12
|
+
HEADER: typeof HEADER;
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
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>;
|
|
15
16
|
export default _default;
|
|
16
|
-
type
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
18
|
new (): {
|
|
18
19
|
$slots: S;
|
|
19
20
|
};
|