diff --git a/index.html b/index.html index 5dcc311..247dbb6 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,9 @@ - + + + @@ -33,7 +35,8 @@ - + + @@ -45,5 +48,13 @@
+
+
+ +
+ +
diff --git a/package.json b/package.json index 6df0b97..b19c52d 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,9 @@ "dependencies": { "angular": "^1.7.5", "angular-cookies": "^1.7.5", + "angular-on-screen-keyboard": "git+https://github.com/ericf97/angular-on-screen-keyboard.git", "angular-route": "^1.7.5", + "angular-sanitize": "^1.7.5", "bootstrap": "^4.1.3", "foca-abm-plazo-pago": "git+https://debo.suite.repo/modulos-npm/foca-abm-plazo-pago.git", "foca-abm-precios-condiciones": "git+https://debo.suite.repo/modulos-npm/foca-abm-precios-condiciones.git", @@ -39,6 +41,7 @@ "foca-modal-petroleras": "git+https://debo.suite.repo/modulos-npm/foca-modal-petroleras.git", "foca-modal-precio-condiciones": "git+https://debo.suite.repo/modulos-npm/foca-modal-precio-condiciones.git", "foca-modal-vendedores": "git+https://debo.suite.repo/modulos-npm/foca-modal-vendedores.git", + "foca-teclado": "git+https://debo.suite.repo/modulos-npm/foca-teclado.git", "foca-turno-apertura": "git+https://debo.suite.repo/modulos-npm/foca-turno-apertura.git", "font-awesome": "^4.7.0", "gulp-angular-templatecache": "^2.2.1", diff --git a/src/js/app.js b/src/js/app.js index 8be50fb..383a32b 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -16,5 +16,8 @@ angular.module('appWrapperDemo', [ 'focaModalMoneda', 'focaModalPrecioCondicion', 'focaModalVendedores', - 'focaTurnoApertura' + 'focaTeclado', + 'focaTurnoApertura', + 'ngSanitize', + 'onScreenKeyboard' ]); diff --git a/src/sass/_contenedor.scss b/src/sass/_contenedor.scss index 56c7846..9fb37d1 100644 --- a/src/sass/_contenedor.scss +++ b/src/sass/_contenedor.scss @@ -8,6 +8,11 @@ body { min-width: 800px; } +.contenedor-teclado { + background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); + height: 300px; +} + .grilla-articulos { background-color: rgba(0, 0, 0, 0.8); height: 430px; diff --git a/src/sass/general.scss b/src/sass/general.scss index a65f30a..a210d24 100644 --- a/src/sass/general.scss +++ b/src/sass/general.scss @@ -7,3 +7,4 @@ @import 'login'; @import 'panel-informativo'; @import 'tabla'; +@import 'teclado';