@davincihealthcare/elty-design-system-vue 1.31.0 → 1.31.2

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.
@@ -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
+ };