@vasakgroup/vue-libvasak 0.18.0 → 0.19.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/forms/ProgressBar.vue.d.ts +16 -1
- package/dist/vue-libvasak.es.js +513 -508
- package/dist/vue-libvasak.umd.js +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,22 @@ type __VLS_Props = {
|
|
|
3
3
|
value: number | null;
|
|
4
4
|
/** Qué está progresando. Lo lee un lector de pantalla. */
|
|
5
5
|
label: string;
|
|
6
|
+
/**
|
|
7
|
+
* El color de la franja, para las barras que miden un **nivel**.
|
|
8
|
+
*
|
|
9
|
+
* Una copia de un archivo al 95 % va bien; un disco al 95 % no. La
|
|
10
|
+
* diferencia no la puede adivinar la barra, así que la dice quien la
|
|
11
|
+
* pone: el monitor pinta en ámbar desde el 75 % y en rojo desde el 90 %,
|
|
12
|
+
* y era lo único que su copia tenía y ésta no.
|
|
13
|
+
*
|
|
14
|
+
* El color no informa solo: `aria-valuenow` ya dice el número, que es lo
|
|
15
|
+
* que oye quien no lo ve. Sirve para reconocerlo de un vistazo entre
|
|
16
|
+
* cinco barras, que es justo lo que hace un monitor.
|
|
17
|
+
*/
|
|
18
|
+
tone?: 'normal' | 'warning' | 'critical';
|
|
6
19
|
};
|
|
7
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
21
|
+
tone: "normal" | "warning" | "critical";
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
23
|
declare const _default: typeof __VLS_export;
|
|
9
24
|
export default _default;
|