@vasakgroup/vue-libvasak 0.7.1 → 0.12.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/types/bar/BarSearch.vue.d.ts +5 -0
- package/dist/types/dialog/Dialog.vue.d.ts +22 -0
- package/dist/types/dialog/DialogContent.vue.d.ts +13 -0
- package/dist/types/dialog/DialogDescription.vue.d.ts +13 -0
- package/dist/types/dialog/DialogFooter.vue.d.ts +13 -0
- package/dist/types/dialog/DialogHeader.vue.d.ts +13 -0
- package/dist/types/dialog/DialogTitle.vue.d.ts +13 -0
- package/dist/types/dialog/tipos.d.ts +28 -0
- package/dist/types/feedback/AlertMessage.vue.d.ts +19 -0
- package/dist/types/feedback/EmptyState.vue.d.ts +24 -0
- package/dist/types/feedback/ToastArea.vue.d.ts +36 -0
- package/dist/types/feedback/tonos.d.ts +21 -0
- package/dist/types/forms/ProgressBar.vue.d.ts +9 -0
- package/dist/types/forms/TextInput.vue.d.ts +38 -0
- package/dist/types/index.d.ts +26 -1
- package/dist/types/internos/iconoDelTema.d.ts +5 -9
- package/dist/types/search/SearchField.vue.d.ts +77 -0
- package/dist/types/search/SearchSelect.vue.d.ts +45 -0
- package/dist/types/search/buscar.d.ts +42 -0
- package/dist/types/search/ids.d.ts +1 -0
- package/dist/types/tooltip/Tooltip.vue.d.ts +22 -0
- package/dist/types/tooltip/TooltipContent.vue.d.ts +22 -0
- package/dist/types/tooltip/TooltipTrigger.vue.d.ts +13 -0
- package/dist/types/tooltip/tipos.d.ts +32 -0
- package/dist/types/window/AppBar.vue.d.ts +0 -3
- package/dist/types/window/WindowControls.vue.d.ts +8 -3
- package/dist/types/window/WindowFrame.vue.d.ts +6 -3
- package/dist/vue-libvasak.es.js +1635 -838
- package/dist/vue-libvasak.umd.js +1 -1
- package/package.json +5 -3
|
@@ -2,6 +2,14 @@ import { type ControlDeVentana } from './tipos';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
/** Cuáles de los tres se dibujan, y en este orden. */
|
|
4
4
|
controls?: ControlDeVentana[];
|
|
5
|
+
/**
|
|
6
|
+
* Lo que oye un lector de pantalla en cada botón, y el tooltip.
|
|
7
|
+
*
|
|
8
|
+
* Sin pasar nada salen del catálogo de la aplicación —`ventana.minimizar`,
|
|
9
|
+
* `ventana.maximizar` y `ventana.cerrar`—. Las claves las define cada
|
|
10
|
+
* aplicación en sus `locales`; acá sólo se buscan. Pasarlas gana, que es
|
|
11
|
+
* lo que deja llamarlas de otra manera.
|
|
12
|
+
*/
|
|
5
13
|
minimizeLabel?: string;
|
|
6
14
|
maximizeLabel?: string;
|
|
7
15
|
closeLabel?: string;
|
|
@@ -16,9 +24,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
16
24
|
onMaximize?: (() => any) | undefined;
|
|
17
25
|
}>, {
|
|
18
26
|
controls: ControlDeVentana[];
|
|
19
|
-
minimizeLabel: string;
|
|
20
|
-
maximizeLabel: string;
|
|
21
|
-
closeLabel: string;
|
|
22
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
28
|
declare const _default: typeof __VLS_export;
|
|
24
29
|
export default _default;
|
|
@@ -3,6 +3,12 @@ type __VLS_Props = {
|
|
|
3
3
|
/** Fija la barra a un lado, ignorando la preferencia del escritorio. */
|
|
4
4
|
position?: PosicionDeLaBarra | null;
|
|
5
5
|
title?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Las tres etiquetas de los botones de ventana.
|
|
8
|
+
*
|
|
9
|
+
* Sin pasar nada salen del catálogo de la aplicación. Ver `WindowControls`,
|
|
10
|
+
* que es donde se resuelven.
|
|
11
|
+
*/
|
|
6
12
|
minimizeLabel?: string;
|
|
7
13
|
maximizeLabel?: string;
|
|
8
14
|
closeLabel?: string;
|
|
@@ -39,9 +45,6 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
39
45
|
}>, {
|
|
40
46
|
title: string;
|
|
41
47
|
controls: ControlDeVentana[];
|
|
42
|
-
minimizeLabel: string;
|
|
43
|
-
maximizeLabel: string;
|
|
44
|
-
closeLabel: string;
|
|
45
48
|
position: PosicionDeLaBarra | null;
|
|
46
49
|
hideBar: boolean;
|
|
47
50
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|