dmencu 1.0.19 → 1.0.20
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/client/unlogged/css/formulario-react.styl +3 -1
- package/dist/client/unlogged/render-formulario.tsx +2 -2
- package/dist/unlogged/unlogged/css/formulario-react.styl +3 -1
- package/dist/unlogged/unlogged/render-formulario.js +3 -3
- package/dist/unlogged/unlogged/render-formulario.tsx +2 -2
- package/package.json +1 -1
|
@@ -1101,7 +1101,7 @@ var botonFormularioConResumen = (
|
|
|
1101
1101
|
}
|
|
1102
1102
|
, children:[
|
|
1103
1103
|
(defBoton.esAgregar?'agregar':defBoton.esConfirmar?'Listo':casillero.nombre + ' ' + (defBoton.num||'')),
|
|
1104
|
-
html.svg({
|
|
1104
|
+
html.svg({focusable:false, viewbox:"0 0 24 24", "aria-hidden":"true"},[
|
|
1105
1105
|
html.path({d:(defBoton.esAgregar?materialIoIconsSvgPath.Add:defBoton.esConfirmar?materialIoIconsSvgPath.Check:casillero.salto?materialIoIconsSvgPath.Forward:materialIoIconsSvgPath.ExitToApp)})
|
|
1106
1106
|
])
|
|
1107
1107
|
]
|
|
@@ -1112,7 +1112,7 @@ var botonFormularioConResumen = (
|
|
|
1112
1112
|
color:"default",
|
|
1113
1113
|
variant:"outlined",
|
|
1114
1114
|
children:
|
|
1115
|
-
html.svg({
|
|
1115
|
+
html.svg({focusable:false, viewbox:"0 0 24 24", "aria-hidden":"true"},[
|
|
1116
1116
|
html.path({d:materialIoIconsSvgPath.DeleteForever})
|
|
1117
1117
|
]),
|
|
1118
1118
|
onClick:()=>accion_borrar_formulario({forPk, forPkPadre})})
|
package/package.json
CHANGED