@davincihealthcare/elty-design-system-vue 1.30.0 → 1.31.1
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/ElContainerTemplate.vue.d.ts +2 -2
- package/dist/forms/ElInputText.vue.d.ts +14 -2
- package/dist/index.js +438 -436
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ export declare const elContainerTemplateVariants: readonly ["table", "drawer"];
|
|
|
2
2
|
export type ElContainerTemplateVariant = (typeof elContainerTemplateVariants)[number];
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
title: string;
|
|
5
|
-
description
|
|
5
|
+
description?: string | undefined;
|
|
6
6
|
tabs?: (Partial<{}> & Omit<{
|
|
7
7
|
readonly modelValue: string;
|
|
8
8
|
readonly tabs: import('./ElTabGroup.vue').ElTabs;
|
|
@@ -30,7 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
30
30
|
onTabChange: (tab: string) => void;
|
|
31
31
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
32
32
|
title: string;
|
|
33
|
-
description
|
|
33
|
+
description?: string | undefined;
|
|
34
34
|
tabs?: (Partial<{}> & Omit<{
|
|
35
35
|
readonly modelValue: string;
|
|
36
36
|
readonly tabs: import('./ElTabGroup.vue').ElTabs;
|
|
@@ -4,7 +4,7 @@ import { TextualValueType } from './input';
|
|
|
4
4
|
|
|
5
5
|
export declare const elInputTextTypes: readonly ["text", "password"];
|
|
6
6
|
export type ElInputTextType = (typeof elInputTextTypes)[number];
|
|
7
|
-
declare const _default: import('vue').DefineComponent<{
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
8
8
|
type: {
|
|
9
9
|
type: PropType<"text" | "password">;
|
|
10
10
|
default: string;
|
|
@@ -135,5 +135,17 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
135
135
|
focusOnMount: boolean;
|
|
136
136
|
autocomplete: string;
|
|
137
137
|
validation: string;
|
|
138
|
-
}, {}
|
|
138
|
+
}, {}>, {
|
|
139
|
+
leading?(_: {
|
|
140
|
+
error: boolean;
|
|
141
|
+
}): any;
|
|
142
|
+
trailing?(_: {
|
|
143
|
+
error: boolean;
|
|
144
|
+
}): any;
|
|
145
|
+
}>;
|
|
139
146
|
export default _default;
|
|
147
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
148
|
+
new (): {
|
|
149
|
+
$slots: S;
|
|
150
|
+
};
|
|
151
|
+
};
|