@cm-sigoo-temp/ui 0.2.30 → 0.2.32
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/README.md +102 -102
- package/dist/lib/api/permisos.d.ts +1 -1
- package/dist/lib/cm-sigoo-temp-ui.js +185 -184
- package/dist/lib/cm-sigoo-temp-ui.js.map +1 -1
- package/dist/lib/components/Toolbar/tipos.d.ts +3 -0
- package/package.json +1 -2
|
@@ -24,7 +24,10 @@ export type EstadoToolbar = {
|
|
|
24
24
|
nombre?: string;
|
|
25
25
|
abreviado?: string;
|
|
26
26
|
}[];
|
|
27
|
+
/** Terminal seleccionada en el dropdown (cambia al elegir otra). */
|
|
27
28
|
terminal?: number;
|
|
29
|
+
/** Terminal de nómina del token; se setea una vez y no se sobrescribe al cambiar selección. Usar para construir la lista con convertirTerminalesToolbar. */
|
|
30
|
+
terminalDeNomina?: number;
|
|
28
31
|
avatar?: string;
|
|
29
32
|
nombre?: string;
|
|
30
33
|
};
|
package/package.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"build:plugins": "node --experimental-strip-types node/vite/plugins/build.ts",
|
|
105
105
|
"build:storybook": "storybook build -o dist/storybook",
|
|
106
106
|
"dev": "vite -c node/vite/app.config.ts",
|
|
107
|
-
"prepublishOnly": "npm run build:lib && npm run build:plugins",
|
|
108
107
|
"lint": "eslint .",
|
|
109
108
|
"prepare": "husky",
|
|
110
109
|
"preview": "vite preview -c node/vite/app.config.ts",
|
|
@@ -112,5 +111,5 @@
|
|
|
112
111
|
},
|
|
113
112
|
"type": "module",
|
|
114
113
|
"types": "dist/lib/lib.d.ts",
|
|
115
|
-
"version": "0.2.
|
|
114
|
+
"version": "0.2.32"
|
|
116
115
|
}
|