Commit 4f949407c2c4cb44e266ae6d0adfda32a8a3139e

Authored by Jose Pinto
1 parent c23e5fd7fb
Exists in master

git url en package.json, clases textos

Showing 2 changed files with 10 additions and 3 deletions   Show diff stats
1 { 1 {
2 "name": "foca-nombre-empresa", 2 "name": "foca-nombre-empresa",
3 "version": "0.0.1", 3 "version": "0.0.1",
4 "description": "Componente de nombre de la empresa", 4 "description": "Componente de nombre de la empresa",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "echo \"Error: no test specified\" && exit 1", 7 "test": "echo \"Error: no test specified\" && exit 1",
8 "compile": "gulp uglify", 8 "compile": "gulp uglify",
9 "gulp-pre-commit": "gulp pre-commit", 9 "gulp-pre-commit": "gulp pre-commit",
10 "postinstall": "npm run compile && gulp clean-post-install", 10 "postinstall": "npm run compile && gulp clean-post-install",
11 "install-dev": "npm install -D angular bootstrap font-awesome gulp gulp-angular-templatecache gulp-clean gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify-es jasmine-core jquery jshint pre-commit pump && npm install angular-sanitize" 11 "install-dev": "npm install -D angular bootstrap font-awesome gulp gulp-angular-templatecache gulp-clean gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify-es jasmine-core jquery jshint pre-commit pump && npm install angular-sanitize"
12 }, 12 },
13 "pre-commit": [
14 "gulp-pre-commit"
15 ],
16 "repository": {
17 "type": "git",
18 "url": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git"
19 },
13 "author": "Foca Software", 20 "author": "Foca Software",
14 "license": "ISC", 21 "license": "ISC",
15 "peerDependencies": { 22 "peerDependencies": {
16 "angular": "^1.7.x", 23 "angular": "^1.7.x",
17 "bootstrap": "^4.1.x", 24 "bootstrap": "^4.1.x",
18 "jquery": "^3.3.x", 25 "jquery": "^3.3.x",
19 "font-awesome": "^4.7.x", 26 "font-awesome": "^4.7.x",
20 "gulp": "^3.9.x", 27 "gulp": "^3.9.x",
21 "gulp-concat": "2.6.x", 28 "gulp-concat": "2.6.x",
22 "gulp-jshint": "^2.1.x", 29 "gulp-jshint": "^2.1.x",
23 "gulp-rename": "^1.4.x", 30 "gulp-rename": "^1.4.x",
24 "gulp-replace": "^1.0.x", 31 "gulp-replace": "^1.0.x",
25 "gulp-uglify-es": "^1.0.x", 32 "gulp-uglify-es": "^1.0.x",
26 "jshint": "^2.9.x", 33 "jshint": "^2.9.x",
27 "pump": "^3.0.x" 34 "pump": "^3.0.x"
28 }, 35 },
29 "devDependencies": { 36 "devDependencies": {
30 "angular": "1.7.5", 37 "angular": "1.7.5",
31 "angular-route": "^1.7.5", 38 "angular-route": "^1.7.5",
32 "angular-sanitize": "1.7.5", 39 "angular-sanitize": "1.7.5",
33 "bootstrap": "4.1.3", 40 "bootstrap": "4.1.3",
34 "font-awesome": "4.7.0", 41 "font-awesome": "4.7.0",
35 "gulp": "3.9.1", 42 "gulp": "3.9.1",
36 "gulp-angular-templatecache": "2.2.5", 43 "gulp-angular-templatecache": "2.2.5",
37 "gulp-clean": "0.4.0", 44 "gulp-clean": "0.4.0",
38 "gulp-concat": "2.6.1", 45 "gulp-concat": "2.6.1",
39 "gulp-connect": "5.6.1", 46 "gulp-connect": "5.6.1",
40 "gulp-htmlmin": "5.0.1", 47 "gulp-htmlmin": "5.0.1",
41 "gulp-jshint": "2.1.0", 48 "gulp-jshint": "2.1.0",
42 "gulp-rename": "1.4.0", 49 "gulp-rename": "1.4.0",
43 "gulp-replace": "1.0.0", 50 "gulp-replace": "1.0.0",
44 "gulp-sass": "4.0.2", 51 "gulp-sass": "4.0.2",
45 "gulp-uglify-es": "1.0.4", 52 "gulp-uglify-es": "1.0.4",
46 "jasmine-core": "3.3.0", 53 "jasmine-core": "3.3.0",
47 "jquery": "3.3.1", 54 "jquery": "3.3.1",
48 "jshint": "2.9.6", 55 "jshint": "2.9.6",
49 "pre-commit": "1.2.2", 56 "pre-commit": "1.2.2",
50 "pump": "3.0.0" 57 "pump": "3.0.0"
51 } 58 }
52 } 59 }
53 60
src/views/nombre-empresa.html
1 <div class="container"> 1 <div class="container">
2 <div class="row"> 2 <div class="row align-items-end">
3 <div class="col-md-6"> 3 <div class="col-md-6">
4 <h5 class="text-left">{{nombre}}</h5> 4 <h5 class="text-left"><strong>{{nombre}}</strong></h5>
5 </div> 5 </div>
6 <div class="col-md-6"> 6 <div class="col-md-6">
7 <h5 class="text-right">{{direccion}}</h5> 7 <h5 class="text-right align-bottom"><small>{{direccion}}</small></h5>
8 </div> 8 </div>
9 </div> 9 </div>
10 </div> 10 </div>
11 11