@davincihealthcare/elty-design-system-vue 1.71.2 → 2.1.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/ElDivider.vue.d.ts +2 -2
- package/dist/ElDropdown.vue.d.ts +2 -2
- package/dist/ElIconButton.vue.d.ts +0 -4
- package/dist/ElItem.vue.d.ts +2 -2
- package/dist/ElTableHead.vue.d.ts +2 -2
- package/dist/ElTag.vue.d.ts +8 -6
- package/dist/ElTooltip.vue.d.ts +3 -27
- package/dist/forms/ElInputContainer.vue.d.ts +53 -56
- package/dist/forms/ElInputDate.vue.d.ts +11 -0
- package/dist/forms/ElInputFile.vue.d.ts +13 -2
- package/dist/forms/ElInputMeasureUnit.vue.d.ts +11 -0
- package/dist/forms/ElInputNumber.vue.d.ts +11 -0
- package/dist/forms/ElInputPhone.vue.d.ts +11 -0
- package/dist/forms/ElInputSearch.vue.d.ts +0 -9
- package/dist/forms/ElInputSelect.vue.d.ts +11 -0
- package/dist/forms/ElInputText.vue.d.ts +11 -0
- package/dist/forms/ElInputTextarea.vue.d.ts +11 -9
- package/dist/forms/input.d.ts +31 -0
- package/dist/forms/utils.d.ts +0 -2
- package/dist/forms/validation-rules.d.ts +1 -3
- package/dist/index.d.ts +0 -1
- package/dist/index.js +10398 -11195
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +22 -29
- package/dist/index.umd.cjs.map +1 -1
- package/dist/style.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/table/ElServerSideResponsiveTable.vue.d.ts +1 -5
- package/dist/table/ElTableCell.vue.d.ts +0 -2
- package/dist/table/ElTablePagination.vue.d.ts +33 -0
- package/package.json +1 -3
- package/dist/forms/utils.test.d.ts +0 -1
package/dist/ElDivider.vue.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare const elDividerDirection: readonly ["vertical", "horizontal"];
|
|
2
2
|
export type ElDividerDirection = (typeof elDividerDirection)[number];
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
direction
|
|
4
|
+
direction?: ElDividerDirection;
|
|
5
5
|
}>, {
|
|
6
6
|
direction: string;
|
|
7
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
-
direction
|
|
8
|
+
direction?: ElDividerDirection;
|
|
9
9
|
}>, {
|
|
10
10
|
direction: string;
|
|
11
11
|
}>>>, {
|
package/dist/ElDropdown.vue.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
27
27
|
iconButton: undefined;
|
|
28
28
|
multiple: boolean;
|
|
29
29
|
}>, {
|
|
30
|
-
show: () =>
|
|
30
|
+
show: () => void;
|
|
31
31
|
hide: () => boolean;
|
|
32
32
|
toggle: () => boolean;
|
|
33
33
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -67,7 +67,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
67
67
|
anchor?(_: {
|
|
68
68
|
isOpen: boolean;
|
|
69
69
|
toggle: () => boolean;
|
|
70
|
-
show: () =>
|
|
70
|
+
show: () => void;
|
|
71
71
|
hide: () => boolean;
|
|
72
72
|
}): any;
|
|
73
73
|
}>;
|
|
@@ -4,7 +4,6 @@ import { ElIconProps } from './ElIcon.vue';
|
|
|
4
4
|
export interface ElIconButtonProps {
|
|
5
5
|
icon: ElIconProps;
|
|
6
6
|
tooltip?: string;
|
|
7
|
-
tooltipDelay?: string | number;
|
|
8
7
|
disabled?: boolean;
|
|
9
8
|
size?: ElIconButtonSize;
|
|
10
9
|
loading?: boolean;
|
|
@@ -16,7 +15,6 @@ export declare const elIconButtonSizes: readonly ["xs", "sm", "base", "l", "xl"]
|
|
|
16
15
|
export type ElIconButtonSize = (typeof elIconButtonSizes)[number];
|
|
17
16
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
|
|
18
17
|
tooltip: undefined;
|
|
19
|
-
tooltipDelay: number;
|
|
20
18
|
size: string;
|
|
21
19
|
badgeColor: string;
|
|
22
20
|
disabled: boolean;
|
|
@@ -27,7 +25,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
25
|
click: () => void;
|
|
28
26
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ElIconButtonProps>, {
|
|
29
27
|
tooltip: undefined;
|
|
30
|
-
tooltipDelay: number;
|
|
31
28
|
size: string;
|
|
32
29
|
badgeColor: string;
|
|
33
30
|
disabled: boolean;
|
|
@@ -43,7 +40,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
43
40
|
error: boolean;
|
|
44
41
|
badge: string | boolean;
|
|
45
42
|
tooltip: string;
|
|
46
|
-
tooltipDelay: string | number;
|
|
47
43
|
badgeColor: ElBadgeColors;
|
|
48
44
|
}, {}>;
|
|
49
45
|
export default _default;
|
package/dist/ElItem.vue.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { AvatarParameters } from './types';
|
|
|
2
2
|
import { ElIconProps } from './ElIcon.vue';
|
|
3
3
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
-
text
|
|
5
|
+
text?: string;
|
|
6
6
|
semiboldText?: string;
|
|
7
7
|
check?: boolean;
|
|
8
8
|
leadingIcon?: ElIconProps;
|
|
@@ -20,7 +20,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
20
20
|
focused: boolean;
|
|
21
21
|
color: string;
|
|
22
22
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
23
|
-
text
|
|
23
|
+
text?: string;
|
|
24
24
|
semiboldText?: string;
|
|
25
25
|
check?: boolean;
|
|
26
26
|
leadingIcon?: ElIconProps;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElSortingHeaderDirection } from './ElSortingHeader.vue';
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
label
|
|
4
|
+
label?: string;
|
|
5
5
|
sortingDirection?: ElSortingHeaderDirection;
|
|
6
6
|
alignRight?: boolean;
|
|
7
7
|
checkbox?: {
|
|
@@ -14,7 +14,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
14
14
|
alignRight: boolean;
|
|
15
15
|
checkbox: undefined;
|
|
16
16
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
17
|
-
label
|
|
17
|
+
label?: string;
|
|
18
18
|
sortingDirection?: ElSortingHeaderDirection;
|
|
19
19
|
alignRight?: boolean;
|
|
20
20
|
checkbox?: {
|
package/dist/ElTag.vue.d.ts
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
import { ElIconProps } from './ElIcon.vue';
|
|
2
2
|
|
|
3
|
-
export declare const elTagColors: readonly ["
|
|
3
|
+
export declare const elTagColors: readonly ["brand-blue", "rose", "pink", "purple", "indigo", "blue", "cyan", "gray", "brand-green", "green", "yellow", "orange", "red"];
|
|
4
4
|
export type ElTagColor = (typeof elTagColors)[number];
|
|
5
5
|
export declare const elTagSizes: readonly ["xxs", "xs"];
|
|
6
6
|
export type ElTagSize = (typeof elTagSizes)[number];
|
|
7
|
+
export declare const elTagAppearance: readonly ["filled", "outlined"];
|
|
8
|
+
export type ElTagAppearance = (typeof elTagAppearance)[number];
|
|
7
9
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
10
|
text: string;
|
|
9
11
|
color?: ElTagColor;
|
|
10
12
|
size?: ElTagSize;
|
|
11
|
-
|
|
13
|
+
appearance?: ElTagAppearance;
|
|
12
14
|
leadingIcon?: ElIconProps;
|
|
13
15
|
trailingIcon?: ElIconProps;
|
|
14
16
|
}>, {
|
|
15
17
|
color: string;
|
|
16
18
|
size: string;
|
|
17
|
-
|
|
19
|
+
appearance: string;
|
|
18
20
|
leadingIcon: undefined;
|
|
19
21
|
trailingIcon: undefined;
|
|
20
22
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
23
|
text: string;
|
|
22
24
|
color?: ElTagColor;
|
|
23
25
|
size?: ElTagSize;
|
|
24
|
-
|
|
26
|
+
appearance?: ElTagAppearance;
|
|
25
27
|
leadingIcon?: ElIconProps;
|
|
26
28
|
trailingIcon?: ElIconProps;
|
|
27
29
|
}>, {
|
|
28
30
|
color: string;
|
|
29
31
|
size: string;
|
|
30
|
-
|
|
32
|
+
appearance: string;
|
|
31
33
|
leadingIcon: undefined;
|
|
32
34
|
trailingIcon: undefined;
|
|
33
35
|
}>>>, {
|
|
34
36
|
color: ElTagColor;
|
|
35
37
|
size: ElTagSize;
|
|
38
|
+
appearance: ElTagAppearance;
|
|
36
39
|
leadingIcon: ElIconProps;
|
|
37
40
|
trailingIcon: ElIconProps;
|
|
38
|
-
outlined: boolean;
|
|
39
41
|
}, {}>;
|
|
40
42
|
export default _default;
|
|
41
43
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/ElTooltip.vue.d.ts
CHANGED
|
@@ -1,30 +1,14 @@
|
|
|
1
1
|
export declare const elTooltipPositions: readonly ["bottom-left", "bottom", "bottom-right", "top-left", "top", "top-right", "left-start", "left", "left-end", "right-start", "right", "right-end"];
|
|
2
2
|
export type ElTooltipPosition = (typeof elTooltipPositions)[number];
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
title: string;
|
|
5
5
|
content?: string;
|
|
6
6
|
position?: ElTooltipPosition;
|
|
7
|
-
|
|
8
|
-
delayTime?: string | number;
|
|
9
|
-
}>, {
|
|
10
|
-
content: undefined;
|
|
11
|
-
position: string;
|
|
12
|
-
delayTime: number;
|
|
13
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
8
|
title: string;
|
|
15
9
|
content?: string;
|
|
16
10
|
position?: ElTooltipPosition;
|
|
17
|
-
|
|
18
|
-
delayTime?: string | number;
|
|
19
|
-
}>, {
|
|
20
|
-
content: undefined;
|
|
21
|
-
position: string;
|
|
22
|
-
delayTime: number;
|
|
23
|
-
}>>>, {
|
|
24
|
-
content: string;
|
|
25
|
-
position: ElTooltipPosition;
|
|
26
|
-
delayTime: string | number;
|
|
27
|
-
}, {}>, {
|
|
11
|
+
}>>>, {}, {}>, {
|
|
28
12
|
default?(_: {}): any;
|
|
29
13
|
}>;
|
|
30
14
|
export default _default;
|
|
@@ -37,14 +21,6 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
37
21
|
required: true;
|
|
38
22
|
};
|
|
39
23
|
};
|
|
40
|
-
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
42
|
-
default: D[K];
|
|
43
|
-
}> : P[K];
|
|
44
|
-
};
|
|
45
|
-
type __VLS_Prettify<T> = {
|
|
46
|
-
[K in keyof T]: T[K];
|
|
47
|
-
} & {};
|
|
48
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
25
|
new (): {
|
|
50
26
|
$slots: S;
|
|
@@ -1,4 +1,39 @@
|
|
|
1
|
-
|
|
1
|
+
import { NumberValueType, TextualValueType } from './input';
|
|
2
|
+
|
|
3
|
+
export declare const elInputContainerColor: readonly ["primary", "secondary", "error"];
|
|
4
|
+
export type ElInputContainerColor = (typeof elInputContainerColor)[number];
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
modelValue?: TextualValueType | NumberValueType;
|
|
7
|
+
name: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
errorMessage?: string | boolean;
|
|
10
|
+
hiddenErrorMessage?: boolean;
|
|
11
|
+
setRequiredMark?: boolean;
|
|
12
|
+
color?: ElInputContainerColor;
|
|
13
|
+
}>, {
|
|
14
|
+
modelValue: string;
|
|
15
|
+
color: string;
|
|
16
|
+
label: string;
|
|
17
|
+
errorMessage: boolean;
|
|
18
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
19
|
+
modelValue?: TextualValueType | NumberValueType;
|
|
20
|
+
name: string;
|
|
21
|
+
label?: string;
|
|
22
|
+
errorMessage?: string | boolean;
|
|
23
|
+
hiddenErrorMessage?: boolean;
|
|
24
|
+
setRequiredMark?: boolean;
|
|
25
|
+
color?: ElInputContainerColor;
|
|
26
|
+
}>, {
|
|
27
|
+
modelValue: string;
|
|
28
|
+
color: string;
|
|
29
|
+
label: string;
|
|
30
|
+
errorMessage: boolean;
|
|
31
|
+
}>>>, {
|
|
32
|
+
label: string;
|
|
33
|
+
color: ElInputContainerColor;
|
|
34
|
+
modelValue: string | number | null;
|
|
35
|
+
errorMessage: string | boolean;
|
|
36
|
+
}, {}>, {
|
|
2
37
|
leading?(_: {
|
|
3
38
|
error: boolean;
|
|
4
39
|
}): any;
|
|
@@ -9,63 +44,25 @@ declare function __VLS_template(): {
|
|
|
9
44
|
error: boolean;
|
|
10
45
|
}): any;
|
|
11
46
|
after?(_: {}): any;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
type: (
|
|
20
|
-
required: false;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
hiddenErrorMessage: {
|
|
24
|
-
type: BooleanConstructor;
|
|
25
|
-
required: false;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
|
-
name: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
setRequiredMark: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
required: false;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
38
|
-
label: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
errorMessage: {
|
|
43
|
-
type: (BooleanConstructor | StringConstructor)[];
|
|
44
|
-
required: false;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
|
-
hiddenErrorMessage: {
|
|
48
|
-
type: BooleanConstructor;
|
|
49
|
-
required: false;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
name: {
|
|
53
|
-
type: StringConstructor;
|
|
47
|
+
}>;
|
|
48
|
+
export default _default;
|
|
49
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
51
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
+
} : {
|
|
54
|
+
type: import('vue').PropType<T[K]>;
|
|
54
55
|
required: true;
|
|
55
56
|
};
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
default:
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
setRequiredMark: boolean;
|
|
66
|
-
}, {}>;
|
|
67
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
68
|
-
export default _default;
|
|
57
|
+
};
|
|
58
|
+
type __VLS_WithDefaults<P, D> = {
|
|
59
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
60
|
+
default: D[K];
|
|
61
|
+
}> : P[K];
|
|
62
|
+
};
|
|
63
|
+
type __VLS_Prettify<T> = {
|
|
64
|
+
[K in keyof T]: T[K];
|
|
65
|
+
} & {};
|
|
69
66
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
70
67
|
new (): {
|
|
71
68
|
$slots: S;
|
|
@@ -56,6 +56,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
56
56
|
required: boolean;
|
|
57
57
|
default: boolean;
|
|
58
58
|
};
|
|
59
|
+
color: {
|
|
60
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
61
|
+
required: boolean;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
59
64
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
60
65
|
"update:modelValue": (value: NumberValueType) => void;
|
|
61
66
|
"update:readableString": (value: string) => void;
|
|
@@ -112,6 +117,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
112
117
|
required: boolean;
|
|
113
118
|
default: boolean;
|
|
114
119
|
};
|
|
120
|
+
color: {
|
|
121
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
122
|
+
required: boolean;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
115
125
|
}>> & {
|
|
116
126
|
"onUpdate:modelValue"?: ((value: NumberValueType) => any) | undefined;
|
|
117
127
|
"onUpdate:readableString"?: ((value: string) => any) | undefined;
|
|
@@ -122,6 +132,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
122
132
|
label: string;
|
|
123
133
|
id: string;
|
|
124
134
|
placeholder: string;
|
|
135
|
+
color: "primary" | "secondary" | "error";
|
|
125
136
|
step: number;
|
|
126
137
|
errorMessage: string | boolean;
|
|
127
138
|
hiddenErrorMessage: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
|
|
3
|
-
export declare const elInputFileTypes: readonly ["image", "document", "csv", "excel", "any", "
|
|
3
|
+
export declare const elInputFileTypes: readonly ["image", "document", "csv", "excel", "any", "patientsImportDataFpfV5", "patientsImportDataHippocrates", "patientsImportDataIatros", "patientsImportDataMdb2000", "patientsImportDataMillewin", "patientsImportDataPhronesis", "patientsImportDataFastamb", "patientsImportDataMedico2000", "patientsImportDataTServe", "patientsImportDataProfim", "patientsImportDataMillewinAttachments", "patientsImportDataAdvmednet"];
|
|
4
4
|
export type ElInputFileType = (typeof elInputFileTypes)[number];
|
|
5
5
|
declare const _default: import('vue').DefineComponent<{
|
|
6
6
|
modelValue: {
|
|
@@ -55,6 +55,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
55
55
|
required: boolean;
|
|
56
56
|
default: boolean;
|
|
57
57
|
};
|
|
58
|
+
color: {
|
|
59
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
60
|
+
required: boolean;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
58
63
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
59
64
|
"update:modelValue": (files: File[]) => void;
|
|
60
65
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -110,6 +115,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
110
115
|
required: boolean;
|
|
111
116
|
default: boolean;
|
|
112
117
|
};
|
|
118
|
+
color: {
|
|
119
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
120
|
+
required: boolean;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
113
123
|
}>> & {
|
|
114
124
|
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
|
115
125
|
}, {
|
|
@@ -117,11 +127,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
117
127
|
disabled: boolean;
|
|
118
128
|
label: string;
|
|
119
129
|
id: string;
|
|
130
|
+
color: "primary" | "secondary" | "error";
|
|
120
131
|
content: string;
|
|
121
132
|
errorMessage: string | boolean;
|
|
122
133
|
hiddenErrorMessage: boolean;
|
|
123
134
|
validation: import('./validation-rules').InputValidation;
|
|
124
135
|
multiple: boolean;
|
|
125
|
-
fileType: "image" | "document" | "csv" | "excel" | "any" | "
|
|
136
|
+
fileType: "image" | "document" | "csv" | "excel" | "any" | "patientsImportDataFpfV5" | "patientsImportDataHippocrates" | "patientsImportDataIatros" | "patientsImportDataMdb2000" | "patientsImportDataMillewin" | "patientsImportDataPhronesis" | "patientsImportDataFastamb" | "patientsImportDataMedico2000" | "patientsImportDataTServe" | "patientsImportDataProfim" | "patientsImportDataMillewinAttachments" | "patientsImportDataAdvmednet";
|
|
126
137
|
}, {}>;
|
|
127
138
|
export default _default;
|
|
@@ -69,6 +69,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
69
69
|
required: boolean;
|
|
70
70
|
default: boolean;
|
|
71
71
|
};
|
|
72
|
+
color: {
|
|
73
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
74
|
+
required: boolean;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
72
77
|
}, {
|
|
73
78
|
changeUnit: (value: string) => string;
|
|
74
79
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -135,6 +140,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
135
140
|
required: boolean;
|
|
136
141
|
default: boolean;
|
|
137
142
|
};
|
|
143
|
+
color: {
|
|
144
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
145
|
+
required: boolean;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
138
148
|
}>> & {
|
|
139
149
|
"onUpdate:modelValue"?: ((value: NumberValueType) => any) | undefined;
|
|
140
150
|
onChangeUnit?: ((value: string) => any) | undefined;
|
|
@@ -144,6 +154,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
144
154
|
label: string;
|
|
145
155
|
id: string;
|
|
146
156
|
placeholder: string;
|
|
157
|
+
color: "primary" | "secondary" | "error";
|
|
147
158
|
step: number;
|
|
148
159
|
errorMessage: string | boolean;
|
|
149
160
|
hiddenErrorMessage: boolean;
|
|
@@ -57,6 +57,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
57
57
|
required: boolean;
|
|
58
58
|
default: boolean;
|
|
59
59
|
};
|
|
60
|
+
color: {
|
|
61
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
62
|
+
required: boolean;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
60
65
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
61
66
|
"update:modelValue": (value: NumberValueType) => void;
|
|
62
67
|
overlayedBtnClicked: () => void;
|
|
@@ -118,6 +123,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
118
123
|
required: boolean;
|
|
119
124
|
default: boolean;
|
|
120
125
|
};
|
|
126
|
+
color: {
|
|
127
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
128
|
+
required: boolean;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
121
131
|
}>> & {
|
|
122
132
|
"onUpdate:modelValue"?: ((value: NumberValueType) => any) | undefined;
|
|
123
133
|
onOverlayedBtnClicked?: (() => any) | undefined;
|
|
@@ -128,6 +138,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
128
138
|
label: string;
|
|
129
139
|
id: string;
|
|
130
140
|
placeholder: string;
|
|
141
|
+
color: "primary" | "secondary" | "error";
|
|
131
142
|
step: number;
|
|
132
143
|
errorMessage: string | boolean;
|
|
133
144
|
hiddenErrorMessage: boolean;
|
|
@@ -45,6 +45,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
45
45
|
required: boolean;
|
|
46
46
|
default: boolean;
|
|
47
47
|
};
|
|
48
|
+
color: {
|
|
49
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
50
|
+
required: boolean;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
48
53
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
54
|
"update:modelValue": (value: TextualValueType) => void;
|
|
50
55
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -92,6 +97,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
92
97
|
required: boolean;
|
|
93
98
|
default: boolean;
|
|
94
99
|
};
|
|
100
|
+
color: {
|
|
101
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
102
|
+
required: boolean;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
95
105
|
}>> & {
|
|
96
106
|
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
97
107
|
}, {
|
|
@@ -100,6 +110,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
100
110
|
label: string;
|
|
101
111
|
id: string;
|
|
102
112
|
placeholder: string;
|
|
113
|
+
color: "primary" | "secondary" | "error";
|
|
103
114
|
modelValue: TextualValueType;
|
|
104
115
|
errorMessage: string | boolean;
|
|
105
116
|
hiddenErrorMessage: boolean;
|
|
@@ -39,10 +39,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
39
39
|
}>;
|
|
40
40
|
default: undefined;
|
|
41
41
|
};
|
|
42
|
-
shouldHoverFirstResultOnOpen: {
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
default: boolean;
|
|
45
|
-
};
|
|
46
42
|
color: {
|
|
47
43
|
type: PropType<ElInputSearchColors>;
|
|
48
44
|
default: string;
|
|
@@ -127,10 +123,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
127
123
|
}>;
|
|
128
124
|
default: undefined;
|
|
129
125
|
};
|
|
130
|
-
shouldHoverFirstResultOnOpen: {
|
|
131
|
-
type: BooleanConstructor;
|
|
132
|
-
default: boolean;
|
|
133
|
-
};
|
|
134
126
|
color: {
|
|
135
127
|
type: PropType<ElInputSearchColors>;
|
|
136
128
|
default: string;
|
|
@@ -323,7 +315,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
323
315
|
primaryRow: string;
|
|
324
316
|
secondaryRow?: string;
|
|
325
317
|
};
|
|
326
|
-
shouldHoverFirstResultOnOpen: boolean;
|
|
327
318
|
}, {}>, {
|
|
328
319
|
info?(_: {}): any;
|
|
329
320
|
}>;
|
|
@@ -67,6 +67,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
67
67
|
required: boolean;
|
|
68
68
|
default: boolean;
|
|
69
69
|
};
|
|
70
|
+
color: {
|
|
71
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
72
|
+
required: boolean;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
70
75
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
71
76
|
"update:modelValue": (newValue: OptionValueType) => void;
|
|
72
77
|
"update:modelLabel": (newValue: OptionValueType) => void;
|
|
@@ -133,6 +138,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
133
138
|
required: boolean;
|
|
134
139
|
default: boolean;
|
|
135
140
|
};
|
|
141
|
+
color: {
|
|
142
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
143
|
+
required: boolean;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
136
146
|
}>> & {
|
|
137
147
|
"onUpdate:modelValue"?: ((newValue: OptionValueType) => any) | undefined;
|
|
138
148
|
"onUpdate:modelLabel"?: ((newValue: OptionValueType) => any) | undefined;
|
|
@@ -142,6 +152,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
142
152
|
label: string;
|
|
143
153
|
id: string;
|
|
144
154
|
placeholder: string;
|
|
155
|
+
color: "primary" | "secondary" | "error";
|
|
145
156
|
modelValue: OptionValueType;
|
|
146
157
|
errorMessage: string | boolean;
|
|
147
158
|
hiddenErrorMessage: boolean;
|
|
@@ -71,6 +71,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
71
71
|
required: boolean;
|
|
72
72
|
default: boolean;
|
|
73
73
|
};
|
|
74
|
+
color: {
|
|
75
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
76
|
+
required: boolean;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
74
79
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
75
80
|
"update:modelValue": (value: TextualValueType) => void;
|
|
76
81
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -140,6 +145,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
140
145
|
required: boolean;
|
|
141
146
|
default: boolean;
|
|
142
147
|
};
|
|
148
|
+
color: {
|
|
149
|
+
type: PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
150
|
+
required: boolean;
|
|
151
|
+
default: string;
|
|
152
|
+
};
|
|
143
153
|
}>> & {
|
|
144
154
|
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
145
155
|
}, {
|
|
@@ -149,6 +159,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
149
159
|
label: string;
|
|
150
160
|
id: string;
|
|
151
161
|
placeholder: string;
|
|
162
|
+
color: "primary" | "secondary" | "error";
|
|
152
163
|
modelValue: TextualValueType;
|
|
153
164
|
errorMessage: string | boolean;
|
|
154
165
|
hiddenErrorMessage: boolean;
|
|
@@ -13,10 +13,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
-
focusOnMount: {
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
16
|
modelValue: {
|
|
21
17
|
type: import('vue').PropType<TextualValueType>;
|
|
22
18
|
default: string;
|
|
@@ -61,6 +57,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
61
57
|
required: boolean;
|
|
62
58
|
default: boolean;
|
|
63
59
|
};
|
|
60
|
+
color: {
|
|
61
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
62
|
+
required: boolean;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
64
65
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
65
66
|
"update:modelValue": (value: TextualValueType) => void;
|
|
66
67
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -76,10 +77,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
76
77
|
type: StringConstructor;
|
|
77
78
|
default: string;
|
|
78
79
|
};
|
|
79
|
-
focusOnMount: {
|
|
80
|
-
type: BooleanConstructor;
|
|
81
|
-
default: boolean;
|
|
82
|
-
};
|
|
83
80
|
modelValue: {
|
|
84
81
|
type: import('vue').PropType<TextualValueType>;
|
|
85
82
|
default: string;
|
|
@@ -124,6 +121,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
124
121
|
required: boolean;
|
|
125
122
|
default: boolean;
|
|
126
123
|
};
|
|
124
|
+
color: {
|
|
125
|
+
type: import('vue').PropType<import('./ElInputContainer.vue').ElInputContainerColor>;
|
|
126
|
+
required: boolean;
|
|
127
|
+
default: string;
|
|
128
|
+
};
|
|
127
129
|
}>> & {
|
|
128
130
|
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
129
131
|
}, {
|
|
@@ -132,10 +134,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
132
134
|
label: string;
|
|
133
135
|
id: string;
|
|
134
136
|
placeholder: string;
|
|
137
|
+
color: "primary" | "secondary" | "error";
|
|
135
138
|
modelValue: TextualValueType;
|
|
136
139
|
errorMessage: string | boolean;
|
|
137
140
|
hiddenErrorMessage: boolean;
|
|
138
|
-
focusOnMount: boolean;
|
|
139
141
|
validation: import('./validation-rules').InputValidation;
|
|
140
142
|
resizable: boolean;
|
|
141
143
|
maxCharacters: number;
|