@vasakgroup/vue-libvasak 0.15.0 → 0.16.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.
|
@@ -3,6 +3,15 @@ type __VLS_Props = {
|
|
|
3
3
|
/** La segunda línea: qué hacer, o por qué está vacío. */
|
|
4
4
|
note?: string;
|
|
5
5
|
icon?: string;
|
|
6
|
+
/**
|
|
7
|
+
* La variante del icono del tema.
|
|
8
|
+
*
|
|
9
|
+
* Igual que en `AlertMessage`. Hace falta porque no todos los nombres
|
|
10
|
+
* existen en las dos: el gestor de archivos pide `search` en la
|
|
11
|
+
* monocroma y `folder-open` en la de color, y pedir la que no está deja
|
|
12
|
+
* un hueco del tamaño del icono en vez de un icono.
|
|
13
|
+
*/
|
|
14
|
+
iconType?: 'icon' | 'symbol';
|
|
6
15
|
/** Con borde punteado para una caja dentro de una sección. */
|
|
7
16
|
bordered?: boolean;
|
|
8
17
|
};
|
|
@@ -12,6 +21,7 @@ type __VLS_Slots = {} & {
|
|
|
12
21
|
};
|
|
13
22
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
23
|
icon: string;
|
|
24
|
+
iconType: "icon" | "symbol";
|
|
15
25
|
bordered: boolean;
|
|
16
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -34,8 +34,12 @@ type __VLS_Props = {
|
|
|
34
34
|
lazy?: boolean;
|
|
35
35
|
};
|
|
36
36
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
+
keydown: (evento: KeyboardEvent) => any;
|
|
38
|
+
keyup: (evento: KeyboardEvent) => any;
|
|
37
39
|
"update:modelValue": (valor: string) => any;
|
|
38
40
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
41
|
+
onKeydown?: ((evento: KeyboardEvent) => any) | undefined;
|
|
42
|
+
onKeyup?: ((evento: KeyboardEvent) => any) | undefined;
|
|
39
43
|
"onUpdate:modelValue"?: ((valor: string) => any) | undefined;
|
|
40
44
|
}>, {
|
|
41
45
|
type: "text" | "password" | "search" | "url" | "email" | "number";
|