@cima-foundation/schematics 0.4.9

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.
Files changed (153) hide show
  1. package/.idea/cima-schematics.iml +12 -0
  2. package/.idea/git_toolbox_prj.xml +15 -0
  3. package/.idea/modules.xml +8 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/README.md +28 -0
  6. package/docs/instructions.txt +26 -0
  7. package/package.json +27 -0
  8. package/src/collection.json +16 -0
  9. package/src/new-library/files/__name@dasherize__/.editorconfig +16 -0
  10. package/src/new-library/files/__name@dasherize__/angular.json +225 -0
  11. package/src/new-library/files/__name@dasherize__/icon.png +0 -0
  12. package/src/new-library/files/__name@dasherize__/ngx-cima-__name@dasherize__.code-workspace +23 -0
  13. package/src/new-library/files/__name@dasherize__/package.json +87 -0
  14. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/ngsw-config.json +30 -0
  15. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/app-routing.module.ts +68 -0
  16. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/app.component.ts +27 -0
  17. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/app.module.ts +70 -0
  18. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/core/core.module.ts +38 -0
  19. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/credits-page/credits-page.component.html +5 -0
  20. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/credits-page/credits-page.component.scss +0 -0
  21. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/credits-page/credits-page.component.ts +15 -0
  22. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/credits-routing.module.ts +12 -0
  23. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/credits.module.ts +17 -0
  24. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/privacy/privacy.component.html +1 -0
  25. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/privacy/privacy.component.scss +0 -0
  26. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/privacy/privacy.component.ts +15 -0
  27. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/tor/tor.component.html +437 -0
  28. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/tor/tor.component.scss +5 -0
  29. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/credits/tor/tor.component.ts +12 -0
  30. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/app/shared/shared.module.ts +20 -0
  31. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/.gitkeep +0 -0
  32. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/favicon.ico +0 -0
  33. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-128x128.png +0 -0
  34. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-144x144.png +0 -0
  35. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-152x152.png +0 -0
  36. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-192x192.png +0 -0
  37. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-384x384.png +0 -0
  38. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-512x512.png +0 -0
  39. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-72x72.png +0 -0
  40. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/icons/icon-96x96.png +0 -0
  41. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/logo-owner.svg +60 -0
  42. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/logo-partner.svg +62 -0
  43. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/logo-portal-full.svg +102 -0
  44. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/logo-portal-mini.svg +60 -0
  45. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/splash-logo.png +0 -0
  46. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/images/three-dots.svg +33 -0
  47. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/assets/test.json +316 -0
  48. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/environments/environment.prod.ts +12 -0
  49. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/environments/environment.ts +25 -0
  50. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/index.html +75 -0
  51. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/main.ts +12 -0
  52. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/manifest.webmanifest +59 -0
  53. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/polyfills.ts +69 -0
  54. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/silent-refresh.html +31 -0
  55. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/styles.scss +1 -0
  56. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/src/test.ts +27 -0
  57. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/tsconfig.app.json +15 -0
  58. package/src/new-library/files/__name@dasherize__/projects/__name@dasherize__-test-app/tsconfig.spec.json +18 -0
  59. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/assets/logo/favicon.ico +0 -0
  60. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/assets/logo/logo-app-full.svg +18 -0
  61. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/assets/logo/logo-app-mini.svg +9 -0
  62. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/ng-package.json +8 -0
  63. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/package.json +11 -0
  64. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/_styles.scss +74 -0
  65. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/index.ts +1 -0
  66. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/__name@dasherize__-routing.module.ts +31 -0
  67. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/__name@dasherize__.config.ts +7 -0
  68. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/__name@dasherize__.module.ts +32 -0
  69. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/components/__name@dasherize__-app-container/__name@dasherize__-app-container.component.html +13 -0
  70. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/components/__name@dasherize__-app-container/__name@dasherize__-app-container.component.scss +3 -0
  71. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/components/__name@dasherize__-app-container/__name@dasherize__-app-container.component.ts +22 -0
  72. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/pages/home/home.component.html +7 -0
  73. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/pages/home/home.component.scss +0 -0
  74. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/pages/home/home.component.ts +8 -0
  75. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/lib/services/__name@dasherize__.service.ts +16 -0
  76. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/public-api.ts +15 -0
  77. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/src/test.ts +28 -0
  78. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/tsconfig.lib.json +14 -0
  79. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/tsconfig.lib.prod.json +10 -0
  80. package/src/new-library/files/__name@dasherize__/projects/cima/__name@dasherize__/tsconfig.spec.json +17 -0
  81. package/src/new-library/files/__name@dasherize__/tsconfig.json +33 -0
  82. package/src/new-library/index.d.ts +2 -0
  83. package/src/new-library/index.js +32 -0
  84. package/src/new-library/index.js.map +1 -0
  85. package/src/new-library/index.ts +43 -0
  86. package/src/new-library/index_spec.d.ts +1 -0
  87. package/src/new-library/index_spec.js +25 -0
  88. package/src/new-library/index_spec.js.map +1 -0
  89. package/src/new-library/index_spec.ts +16 -0
  90. package/src/new-library/schema.json +18 -0
  91. package/src/new-portal/files/__name@dasherize__-portal/.editorconfig +16 -0
  92. package/src/new-portal/files/__name@dasherize__-portal/angular.json +186 -0
  93. package/src/new-portal/files/__name@dasherize__-portal/icon.png +0 -0
  94. package/src/new-portal/files/__name@dasherize__-portal/ngx-cima-__name@dasherize__-portal.code-workspace +23 -0
  95. package/src/new-portal/files/__name@dasherize__-portal/package.json +88 -0
  96. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/ngsw-config.json +30 -0
  97. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/app-routing.module.ts +73 -0
  98. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/app.component.ts +24 -0
  99. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/app.module.ts +77 -0
  100. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/core/core.module.ts +38 -0
  101. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/credits-page/credits-page.component.html +5 -0
  102. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/credits-page/credits-page.component.scss +0 -0
  103. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/credits-page/credits-page.component.ts +20 -0
  104. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/credits-routing.module.ts +12 -0
  105. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/credits.module.ts +17 -0
  106. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/privacy/privacy.component.html +1 -0
  107. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/privacy/privacy.component.scss +0 -0
  108. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/privacy/privacy.component.ts +15 -0
  109. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/tor/tor.component.html +437 -0
  110. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/tor/tor.component.scss +5 -0
  111. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/credits/tor/tor.component.ts +12 -0
  112. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/app/shared/shared.module.ts +20 -0
  113. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/.gitkeep +0 -0
  114. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/favicon.ico +0 -0
  115. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-128x128.png +0 -0
  116. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-144x144.png +0 -0
  117. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-152x152.png +0 -0
  118. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-192x192.png +0 -0
  119. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-384x384.png +0 -0
  120. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-512x512.png +0 -0
  121. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-72x72.png +0 -0
  122. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/icons/icon-96x96.png +0 -0
  123. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-owner.svg +1 -0
  124. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-partner.svg +20 -0
  125. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-portal-full.svg +64 -0
  126. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-portal-mini.svg +33 -0
  127. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-regione.svg +66 -0
  128. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/logo-splash.svg +1 -0
  129. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/splash-logo.png +0 -0
  130. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/images/three-dots.svg +33 -0
  131. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/assets/test.json +316 -0
  132. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/environments/environment.prod.ts +12 -0
  133. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/environments/environment.ts +25 -0
  134. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/index.html +75 -0
  135. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/main.ts +12 -0
  136. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/manifest.webmanifest +59 -0
  137. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/polyfills.ts +69 -0
  138. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/silent-refresh.html +31 -0
  139. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/styles.scss +1 -0
  140. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/src/test.ts +27 -0
  141. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/tsconfig.app.json +15 -0
  142. package/src/new-portal/files/__name@dasherize__-portal/projects/__name@dasherize__-portal/tsconfig.spec.json +18 -0
  143. package/src/new-portal/files/__name@dasherize__-portal/tsconfig.json +33 -0
  144. package/src/new-portal/index.d.ts +2 -0
  145. package/src/new-portal/index.js +33 -0
  146. package/src/new-portal/index.js.map +1 -0
  147. package/src/new-portal/index.ts +44 -0
  148. package/src/new-portal/index_spec.d.ts +1 -0
  149. package/src/new-portal/index_spec.js +25 -0
  150. package/src/new-portal/index_spec.js.map +1 -0
  151. package/src/new-portal/index_spec.ts +16 -0
  152. package/src/new-portal/schema.json +18 -0
  153. package/tsconfig.json +24 -0
@@ -0,0 +1,33 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 174 174">
2
+ <defs>
3
+ <clipPath id="clip-path">
4
+ <rect x="17.9" y="12.57" width="138.19" height="148.86" style="fill: none"/>
5
+ </clipPath>
6
+ </defs>
7
+ <g id="buttons">
8
+ <g id="Disegno_1" data-name="Disegno 1">
9
+ <g style="clip-path: url(#clip-path)">
10
+ <polygon points="18.91 119.68 86.56 161.43 86.85 103.3 18.91 64.37 18.91 119.68" style="fill: #1e6800"/>
11
+ <polygon points="86.85 103.3 86.56 161.43 153.87 121.78 155.09 64.52 86.85 103.3" style="fill: #64a100"/>
12
+ <polygon points="86.85 103.3 155.09 64.53 86.58 26.94 18.91 64.38 86.85 103.3" style="fill: #ffe80c"/>
13
+ <g style="clip-path: url(#clip-path)">
14
+ <polygon points="18.91 64.37 86.58 26.94 155.09 64.52 153.88 121.78 86.57 160.41 18.91 119.68 18.91 64.37" style="fill: none;stroke: #000;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px"/>
15
+ <line x1="86.56" y1="158.53" x2="86.85" y2="103.3" style="fill: none;stroke: #000;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px"/>
16
+ <polyline points="18.91 65.12 86.85 103.3 154.04 65.12" style="fill: none;stroke: #000;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px"/>
17
+ <path d="M136.59,51.8a4.84,4.84,0,0,0,0-.66c-.26-2.73-2.68-4.62-5-5.71a21.89,21.89,0,0,0-14.9-.86c-4.87,1.5-7.55,4.23-7.55,7l.3,10h0c0,2.82,2.56,5.62,7.54,7a21.59,21.59,0,0,0,15.13-1.21c2.32-1.19,4.69-3.37,4.47-6.2Z"/>
18
+ <path d="M134.7,51.19c-.25-2.47-2.48-4.13-4.59-5.08a19.14,19.14,0,0,0-13-.56c-9.38,3.2-7.14,10.53,1.58,12.37A18.63,18.63,0,0,0,131,56.48c1.94-1,3.87-2.91,3.68-5.29" style="fill: #ffe80c"/>
19
+ <path d="M100.42,72.71a3.53,3.53,0,0,0,0-.65c-.26-2.73-2.67-4.62-5-5.71a21.77,21.77,0,0,0-14.9-.86C75.65,67,73,69.71,73,72.43l.31,10h0c0,2.81,2.56,5.61,7.54,7A21.59,21.59,0,0,0,96,88.26c2.32-1.19,4.7-3.37,4.47-6.2Z"/>
20
+ <path d="M98.54,72.11c-.25-2.48-2.48-4.14-4.6-5.08a19.08,19.08,0,0,0-13-.57C71.56,69.66,73.8,77,82.51,78.83A18.72,18.72,0,0,0,94.86,77.4c1.94-1.05,3.86-2.92,3.68-5.29" style="fill: #ffe80c"/>
21
+ <path d="M100.19,30.94a3.64,3.64,0,0,0,0-.66c-.26-2.73-2.67-4.62-5-5.71a21.83,21.83,0,0,0-14.9-.86c-4.87,1.49-7.55,4.22-7.55,6.94l.31,10h0c0,2.81,2.56,5.62,7.54,7a21.59,21.59,0,0,0,15.13-1.21c2.32-1.19,4.69-3.37,4.47-6.2Z"/>
22
+ <path d="M98.3,30.33c-.24-2.48-2.47-4.14-4.59-5.08a19.08,19.08,0,0,0-13-.57c-9.38,3.21-7.13,10.53,1.58,12.37a18.73,18.73,0,0,0,12.35-1.43c1.94-1,3.86-2.92,3.67-5.29" style="fill: #ffe80c"/>
23
+ <path d="M64.15,51.8a4.84,4.84,0,0,0,0-.66c-.27-2.73-2.68-4.62-5-5.71a21.89,21.89,0,0,0-14.9-.86c-4.87,1.5-7.56,4.23-7.55,7l.3,10h0c0,2.82,2.56,5.62,7.54,7a21.59,21.59,0,0,0,15.13-1.21c2.32-1.19,4.69-3.37,4.47-6.2Z"/>
24
+ <path d="M62.26,51.19c-.25-2.47-2.48-4.13-4.59-5.08a19.14,19.14,0,0,0-13-.56c-9.38,3.2-7.14,10.53,1.58,12.37a18.63,18.63,0,0,0,12.34-1.44c1.94-1,3.87-2.91,3.68-5.29" style="fill: #ffe80c"/>
25
+ <path d="M136.28,51.14c-.26-2.73-2.67-4.62-5-5.71a21.82,21.82,0,0,0-14.9-.86c-9.91,3-9.5,11.19.3,14a21.59,21.59,0,0,0,15.13-1.21c2.32-1.19,4.7-3.37,4.47-6.2m-2-.11c.3,2.39-1.63,4.31-3.58,5.34a18.28,18.28,0,0,1-12.6,1.28c-8.32-2-9.76-9.08-1-12a18.77,18.77,0,0,1,13,.65c1.93.93,3.94,2.46,4.24,4.71"/>
26
+ <path d="M100.14,30.27c-.28-2.83-2.84-4.74-5.26-5.83a22,22,0,0,0-14.94-.65C69.18,27.47,71.76,35.88,81.76,38a21.36,21.36,0,0,0,14.16-1.65c2.23-1.2,4.44-3.34,4.22-6.07m-2,1c-.42,2.36-2.62,3.87-4.68,4.76a18.71,18.71,0,0,1-13.71,0c-2.8-1.12-5.86-3.89-4.33-7.15,1.38-2.72,4.52-3.95,7.34-4.57a18.14,18.14,0,0,1,12,1.59c1.91,1.06,3.74,3,3.34,5.37"/>
27
+ <path d="M64,51.33c-.12-2.7-2.47-4.66-4.74-5.77a21.71,21.71,0,0,0-15.16-1c-9.91,3-9.51,11.19.29,14a21.53,21.53,0,0,0,15.13-1.21c2.27-1.16,4.6-3.25,4.48-6m-2,.35c-.12,2.41-2.24,4.08-4.27,5A18.71,18.71,0,0,1,45,57.44c-8.87-2.77-7.79-9.95.77-12.06a18.43,18.43,0,0,1,12.39,1.17c2,1,3.91,2.79,3.82,5.13"/>
28
+ <path d="M100.21,72.05c-.26-2.72-2.67-4.62-5-5.71a22,22,0,0,0-14.9-.87c-10.41,3.28-9.15,11.66.9,14.15a21.47,21.47,0,0,0,14.53-1.37c2.33-1.19,4.7-3.36,4.47-6.2m-2,.53C98.1,75,96,76.67,94,77.62a18.71,18.71,0,0,1-12.71.73c-8.87-2.77-7.79-10,.77-12.06a18.65,18.65,0,0,1,12.17,1c2,1,4.13,2.8,4,5.24"/>
29
+ </g>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </svg>
@@ -0,0 +1,66 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 123 137 138" enable-background="new 0 123 137 138" xml:space="preserve">
6
+ <g>
7
+ <path d="M68.1,190.6h39.5h0.7v-45.4c-0.1-5.3-7.9-9-18.6-10.9c-6.3-1.2-13.5-1.7-21-1.8c-7.3-0.1-14.7,0.5-21.2,1.5
8
+ c-12.1,1.9-21.1,5.6-21.4,11.1v45.4h0.7h39.5v28c0.6,0.1,1.1,0.3,1.6,0.4L68.1,190.6L68.1,190.6z M27.7,145.3
9
+ c0.4-4.7,8.8-8.1,20.1-9.7c5.3-0.8,11.2-1.4,17.2-1.4c1.3,0,2.6-0.1,3.8-0.1c0.3,0,0.5,0,0.7,0c7,0.1,13.9,0.6,19.9,1.8
10
+ c10,1.8,17.3,5,17.4,9.5v43.8H69.6h-4.5H27.8L27.7,145.3L27.7,145.3z"/>
11
+ <path fill="#FFFFFF" d="M65,134.2c-6,0.1-11.9,0.6-17.2,1.4c-11.3,1.7-19.8,5-20.1,9.7v15.8H65L65,134.2L65,134.2z M48.9,153.4
12
+ l-1.4,3.3l-1.6-3.3l-4.7,0.6l2.9-3.3l-2.8-3.6l4.5,0.5l1.7-3.2l1.5,3.5l4.7-0.5l-2.8,3.2l2.8,3.2L48.9,153.4z"/>
13
+ <path fill="#FFFFFF" d="M106.9,161.1v-15.8c-0.2-4.5-7.4-7.7-17.4-9.5c-5.9-1.1-12.9-1.6-19.9-1.8v27H106.9z M81.4,146.9l4.5,0.5
14
+ l1.7-3.2l1.5,3.5l4.7-0.5l-2.8,3.2l2.8,3.2l-4.8-0.3l-1.4,3.3l-1.6-3.3l-4.8,0.6l2.9-3.3L81.4,146.9z"/>
15
+ <path fill="#FFFFFF" d="M65,165.4H27.7v23.8H65L65,165.4L65,165.4z M48.5,180.5l-1.4,3.3l-1.6-3.3l-4.8,0.6l2.9-3.3l-2.8-3.6
16
+ l4.5,0.5l1.7-3.2l1.5,3.5l4.6-0.5l-2.8,3.2l2.8,3.2L48.5,180.5z"/>
17
+ <path fill="#FFFFFF" d="M69.6,189.1h37.3v-23.7H69.6V189.1z M81.2,173.7l4.5,0.5l1.7-3.2l1.5,3.5l4.6-0.5l-2.8,3.2l2.8,3.2
18
+ l-4.8-0.3l-1.4,3.3l-1.6-3.3l-4.7,0.6l2.9-3.3L81.2,173.7z"/>
19
+ <path fill="#C4C8CB" d="M98,197.9c-1.8,11.9-8.7,19-16.7,21.8c-3.4,1.2-7.1,1.6-10.8,1.3c-3.6-0.4-7-1.5-10.2-3.2
20
+ c-7.1-4.1-12.2-12-11.7-23l-21-1.6c1.1,17.3,10,28.8,21.4,34.5c5.5,2.8,11.6,4.3,17.6,4.5c6.1,0.2,12.2-0.9,17.7-3.3
21
+ c11.4-4.9,20.5-15.3,22.4-31.1L98,197.9z"/>
22
+ <path d="M108.7,196.2h-0.9l-10.6,0.3h-0.6l-0.1,0.6c-1.5,11.6-8.1,18.5-15.8,21.1c-3.2,1.1-6.7,1.5-10,1.2
23
+ c-0.8-0.1-1.7-0.2-2.5-0.4c-0.6-0.1-1.1-0.3-1.6-0.4c-1.9-0.6-3.7-1.3-5.4-2.3c-6.9-3.9-11.8-11.5-11.1-22.3l0.1-0.7h-0.7
24
+ l-22.5-1.8l-0.9-0.1l0.1,0.8c0.9,18.4,10.2,30.5,22.4,36.6c5.7,2.9,12,4.5,18.4,4.6c6.3,0.2,12.6-0.9,18.5-3.4
25
+ c12.2-5.2,21.7-16.3,23.5-33.1L108.7,196.2z M84.5,228.7c-5.6,2.4-11.7,3.5-17.7,3.3c-6-0.2-12.2-1.6-17.6-4.5
26
+ c-11.4-5.8-20.2-17.3-21.4-34.5l20.8,1.7c-0.5,11,4.6,18.9,11.8,22.9c3.2,1.8,6.6,2.9,10.2,3.2s7.2-0.1,10.8-1.3
27
+ c8.1-2.8,15-9.9,16.7-21.8l8.9-0.2C105,213.5,95.9,223.8,84.5,228.7z"/>
28
+ <polygon fill="#93979E" points="53.2,174.4 48.5,174.8 47,171.3 45.4,174.6 40.8,174 43.7,177.7 40.7,181.1 45.6,180.5 47.1,183.7
29
+ 48.5,180.5 53.3,180.8 50.5,177.6 "/>
30
+ <polygon fill="#93979E" points="53.6,147.3 48.9,147.8 47.4,144.2 45.7,147.5 41.2,147 44.1,150.6 41.2,154 45.9,153.4 47.5,156.8
31
+ 48.9,153.4 53.7,153.7 50.8,150.5 "/>
32
+ <polygon fill="#93979E" points="86,153.2 87.7,156.6 89.1,153.2 93.8,153.6 90.9,150.5 93.8,147.2 89.1,147.7 87.6,144.1
33
+ 85.9,147.3 81.4,146.9 84.1,150.5 81.3,153.9 "/>
34
+ <polygon fill="#93979E" points="85.9,180.1 87.5,183.5 88.9,180.1 93.7,180.5 90.8,177.3 93.6,174 88.9,174.6 87.4,171 85.7,174.2
35
+ 81.2,173.7 84,177.4 81.2,180.7 "/>
36
+ <path fill="#ED1C24" d="M65,189.1h4.5v-23.7h37.3v-4.3H69.6v-27c-0.3,0-0.5,0-0.7,0c-1.3,0-2.6,0-3.8,0.1v26.9H27.7v4.3H65
37
+ L65,189.1L65,189.1z"/>
38
+ <path d="M26.8,250.4c0-0.6-0.1-1.4-0.1-2c-0.1-1.4-0.6-1.9-1.6-2l0,0c1.1-0.2,1.7-1.1,1.7-2.4c0-1.9-1.1-2.6-2.6-2.6h-3.5v10.1h1.6
39
+ v-4.4h1.3c1.1,0,1.5,0.5,1.5,1.6c0,0.7,0,1.3,0.1,1.9c0.1,0.5,0.1,0.7,0.3,0.9h1.8C27.1,251.3,26.9,251,26.8,250.4z M23.7,245.8
40
+ h-1.3v-3.3h1.4c1.1,0,1.5,0.6,1.5,1.6C25.2,245.1,24.7,245.8,23.7,245.8z"/>
41
+ <polygon points="30.1,246.8 33.7,246.8 33.7,245.4 30.1,245.4 30.1,242.6 33.9,242.6 33.9,241.3 28.5,241.3 28.5,251.4 34.1,251.4
42
+ 34.1,250 30.1,250 "/>
43
+ <path d="M38.3,247.3H40c0,2.2-0.5,3.1-1.7,3.1c-1.1,0-1.6-0.8-1.6-4.1c0-3.2,0.6-4,1.8-4c1.1,0,1.4,0.9,1.4,1.6v0.3h1.5v-0.2
44
+ c0-0.9-0.5-2.9-3-2.9c-2.3,0-3.3,1.6-3.3,5.2c0,3.6,0.7,5.2,3,5.2c1.2,0,1.8-0.5,2.2-1.4l0,0v1.2h1.2V246h-3.2L38.3,247.3
45
+ L38.3,247.3L38.3,247.3z"/>
46
+ <rect x="43" y="241.3" width="1.6" height="10.1"/>
47
+ <path d="M49.4,241.2c-2.3,0-3.3,1.6-3.3,5.2c0,3.6,1,5.2,3.3,5.2c2.3,0,3.3-1.6,3.3-5.2C52.7,242.7,51.7,241.2,49.4,241.2z
48
+ M49.4,250.3c-0.9,0-1.8-0.6-1.8-4.1c0-3.3,0.7-4,1.8-4c1,0,1.8,0.6,1.8,4C51,249.8,50.3,250.3,49.4,250.3z"/>
49
+ <polygon points="59.1,248.8 59.1,248.8 56.1,241.3 54.2,241.3 54.2,251.4 55.8,251.4 55.8,243.7 55.8,243.7 58.6,251.4 60.7,251.4
50
+ 60.7,241.3 59.1,241.3 "/>
51
+ <polygon points="64,246.8 67.5,246.8 67.5,245.4 64,245.4 64,242.6 67.8,242.6 67.8,241.3 62.3,241.3 62.3,251.4 67.9,251.4
52
+ 67.9,250 64,250 "/>
53
+ <polygon points="74.2,241.3 72.5,241.3 72.5,251.4 78.1,251.4 78.1,250 74.2,250 "/>
54
+ <rect x="79.1" y="241.3" width="1.6" height="10.1"/>
55
+ <path d="M85.3,247.3H87c0,2.2-0.5,3.1-1.7,3.1c-1.1,0-1.6-0.8-1.6-4.1c0-3.2,0.6-4,1.8-4c1.1,0,1.4,0.9,1.4,1.6v0.3h1.5v-0.2
56
+ c0-0.9-0.5-2.9-3-2.9c-2.3,0-3.3,1.6-3.3,5.2c0,3.6,0.7,5.2,3,5.2c1.2,0,1.8-0.5,2.2-1.4l0,0v1.2h1.1V246h-3.2v1.2L85.3,247.3
57
+ L85.3,247.3z"/>
58
+ <path d="M94.5,248.5c0,1.3-0.5,1.8-1.5,1.8s-1.5-0.6-1.5-1.8v-7.2H90v7c0,2.3,1.1,3.2,3.1,3.2c1.9,0,3.1-0.8,3.1-3.2v-7h-1.6
59
+ L94.5,248.5L94.5,248.5z"/>
60
+ <path d="M103.8,250.4c0-0.6-0.1-1.4-0.1-2c-0.1-1.4-0.6-1.9-1.6-2l0,0c1.1-0.2,1.7-1.1,1.7-2.4c0-1.9-1.1-2.6-2.6-2.6h-3.5v10.1
61
+ h1.6v-4.4h1.3c1.1,0,1.5,0.5,1.5,1.6c0,0.7,0,1.3,0.1,1.9c0.1,0.5,0.1,0.7,0.3,0.9h1.8C104,251.3,103.8,251,103.8,250.4z
62
+ M100.6,245.8h-1.3v-3.3h1.4c1.1,0,1.5,0.6,1.5,1.6C102.2,245.1,101.6,245.8,100.6,245.8z"/>
63
+ <rect x="105.4" y="241.3" width="1.6" height="10.1"/>
64
+ <path d="M112.6,241.3h-2l-2.9,10.1h1.7l0.6-2.4h3l0.6,2.4h1.7L112.6,241.3z M110.3,247.6l1.2-5l0,0l1.1,5H110.3z"/>
65
+ </g>
66
+ </svg>
@@ -0,0 +1 @@
1
+ <svg id="mydewetra" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64"><defs><style>.cls-1,.cls-9{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#36a8e0;}.cls-4{fill:#ffd30f;}.cls-5{fill:#f19107;}.cls-6{fill:#e5342b;}.cls-7{fill:#94c01f;}.cls-8{clip-path:url(#clip-path-2);}.cls-9{stroke:#94c01f;stroke-miterlimit:10;stroke-width:0.9px;}.cls-10{fill:#1e70b7;}</style><clipPath id="clip-path"><rect class="cls-1" x="8.41" y="3.9" width="47.77" height="55.41"/></clipPath><clipPath id="clip-path-2"><rect class="cls-1" x="8.41" y="3.9" width="47.77" height="55.41"/></clipPath></defs><g id="installation_logo" data-name="installation logo"><g class="cls-2"><polygon class="cls-3" points="46.8 23.21 39 27.5 32.3 31.18 46.35 40.17 46.84 39.08 50.38 31.12 56.18 18.07 41.3 15.91 41.15 15.89 46.8 23.21"/><polygon class="cls-4" points="32.26 3.9 22.27 15.83 32.31 14.6 32.35 23.5 32.38 31.14 47.13 23.09 46.39 22.14 41.04 15.24 32.27 3.9 32.26 3.9"/><polygon class="cls-5" points="31.96 14.64 23.3 15.56 9.09 17.05 14.66 31.02 14.72 31.16 18.24 22.6 25.85 27.21 32.38 31.18 33.15 14.51 31.96 14.64"/><polygon class="cls-6" points="17.75 23.01 14.22 30.97 8.41 44.03 23.29 46.18 23.44 46.2 17.79 38.88 25.6 35.12 32.82 31.44 18.24 21.92 17.75 23.01"/><polygon class="cls-7" points="17.05 39.31 17.76 40.27 22.87 47.2 31.25 58.58 40.52 46.96 40.61 46.32 31.99 47.53 32.19 39.29 32.35 31.25 17.05 39.31"/><g class="cls-8"><polygon class="cls-9" points="32.34 31.25 17.06 39.31 17.76 40.27 22.87 47.2 31.24 58.58 40.52 46.96 40.61 46.32 32 47.53 32.19 39.29 32.34 31.25"/></g><polygon class="cls-10" points="31.73 47.88 32.94 47.76 41.7 46.91 56.09 45.52 50.33 31.44 50.27 31.3 46.24 39.87 39.03 35.17 32.37 31.14 31.73 47.88"/></g></g></svg>
@@ -0,0 +1,33 @@
1
+ <!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
2
+ <svg width="120" height="30" viewBox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="#fff">
3
+ <circle cx="15" cy="15" r="15">
4
+ <animate attributeName="r" from="15" to="15"
5
+ begin="0s" dur="0.8s"
6
+ values="15;9;15" calcMode="linear"
7
+ repeatCount="indefinite" />
8
+ <animate attributeName="fill-opacity" from="1" to="1"
9
+ begin="0s" dur="0.8s"
10
+ values="1;.5;1" calcMode="linear"
11
+ repeatCount="indefinite" />
12
+ </circle>
13
+ <circle cx="60" cy="15" r="9" fill-opacity="0.3">
14
+ <animate attributeName="r" from="9" to="9"
15
+ begin="0s" dur="0.8s"
16
+ values="9;15;9" calcMode="linear"
17
+ repeatCount="indefinite" />
18
+ <animate attributeName="fill-opacity" from="0.5" to="0.5"
19
+ begin="0s" dur="0.8s"
20
+ values=".5;1;.5" calcMode="linear"
21
+ repeatCount="indefinite" />
22
+ </circle>
23
+ <circle cx="105" cy="15" r="15">
24
+ <animate attributeName="r" from="15" to="15"
25
+ begin="0s" dur="0.8s"
26
+ values="15;9;15" calcMode="linear"
27
+ repeatCount="indefinite" />
28
+ <animate attributeName="fill-opacity" from="1" to="1"
29
+ begin="0s" dur="0.8s"
30
+ values="1;.5;1" calcMode="linear"
31
+ repeatCount="indefinite" />
32
+ </circle>
33
+ </svg>
@@ -0,0 +1,316 @@
1
+ [
2
+ {
3
+ "type": "text",
4
+ "datetime": "2021-11-09T08:01:06.394Z",
5
+ "cerchie": [
6
+ {
7
+ "descr": "ACRONET",
8
+ "hierarchical": true,
9
+ "id": 200
10
+ }
11
+ ],
12
+ "date": "2021-11-09T08:01:06.394",
13
+ "id": 334387,
14
+ "oComments": [],
15
+ "object": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin at porttitor odio, sodales vehicula tortor. Sed fermentum hendrerit condimentum. Mauris tincidunt blandit mollis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In laoreet pharetra felis et fermentum. Donec eleifend eros mi. Aliquam tristique imperdiet condimentum. Duis quis quam blandit, volutpat lacus in, mattis arcu. Vestibulum tempor luctus felis, vitae dictum leo blandit at. Interdum et malesuada fames ac ante ipsum primis in faucibus. Quisque velit risus, porta id tortor ac, porttitor accumsan felis. Curabitur leo magna, faucibus at vestibulum quis, egestas ac nisi. Mauris mattis elit nec tempus scelerisque. Nunc id gravida est. Sed at tempor augue.",
16
+ "app": "soglia_arancio;sentinel_1",
17
+ "variable": "./assets/img/99.svg",
18
+ "priority": 1,
19
+ "title": "Soglia Batteria - SV - Savona",
20
+ "uid": "PC-P-dm_acronet-T-2111-0142",
21
+ "userdatasuka": {
22
+ "avatar": "//api.cimafoundation.org/acroweb/avatar/Sentinel",
23
+ "circles": [],
24
+ "domain": {
25
+ "circleId": 45,
26
+ "code": "dom_cima",
27
+ "descr": "dominio CIMA",
28
+ "id": 6,
29
+ "latn": 47.68032,
30
+ "lats": 35.657463,
31
+ "lone": 18.981445,
32
+ "lonw": 5.6220703,
33
+ "masterhatId": 13,
34
+ "starHatId": 13
35
+ },
36
+ "email": "-",
37
+ "emailnotification": false,
38
+ "hats": [],
39
+ "id": "Sentinel",
40
+ "name": "Sentinel",
41
+ "organization": {
42
+ "descr": "CIMA Foundation",
43
+ "id": 2
44
+ },
45
+ "phone": "-",
46
+ "phonenotification": false
47
+ },
48
+ "userhat": "46"
49
+ },
50
+ {
51
+ "type": "image",
52
+ "datetime": "2021-11-21T11:08:10.828Z",
53
+ "cerchie": [
54
+ {
55
+ "descr": "Regione Liguria",
56
+ "hierarchical": true,
57
+ "id": 68,
58
+ "parent": 10
59
+ }
60
+ ],
61
+ "date": "2021-11-21T11:08:10.828",
62
+ "id": 336725,
63
+ "oComments": [],
64
+ "object": "//loremflickr.com/320/240",
65
+ "app": "GIALLA;allerta",
66
+ "priority": 2,
67
+ "title": "ALLERTA IDROGEOLOGICA",
68
+ "uid": "pc-P-ITCAREG07-d-2111-0006",
69
+ "userdata": {
70
+ "avatar": "//api.cimafoundation.org/acroweb/avatar/userdefault",
71
+ "circles": [],
72
+ "domain": {
73
+ "circleId": 41,
74
+ "code": "ITCAREG07",
75
+ "descr": "dominio Regione Liguria",
76
+ "id": 3,
77
+ "latn": 44.709106,
78
+ "lats": 43.669296,
79
+ "lone": 10.291016,
80
+ "lonw": 7.324707,
81
+ "masterhatId": 7,
82
+ "starHatId": 803
83
+ },
84
+ "email": "protezionecivile@regione.liguria.it",
85
+ "emailnotification": false,
86
+ "hats": [],
87
+ "id": "regione.liguria",
88
+ "name": "Utente Regione Liguria",
89
+ "organization": {
90
+ "descr": "Regione Liguria",
91
+ "id": 7
92
+ },
93
+ "phone": "",
94
+ "phonenotification": false
95
+ },
96
+ "userhat": "-1"
97
+ },
98
+ {
99
+ "type": "image",
100
+ "datetime": "2021-11-24T08:33:25.987Z",
101
+ "cerchie": [
102
+ {
103
+ "descr": "cerchia Comune di Mezzanego",
104
+ "hierarchical": true,
105
+ "id": 206,
106
+ "parent": 27
107
+ }
108
+ ],
109
+ "date": "2021-11-24T08:33:25.987",
110
+ "id": 337179,
111
+ "oComments": [],
112
+ "object": "https://loremflickr.com/320/240",
113
+ "app": "comune;defcon",
114
+ "priority": 3,
115
+ "title": "Fasi operative - Comune di Mezzanego",
116
+ "uid": "pc-P-com_mez-d-2111-0007",
117
+ "userdata": {
118
+ "avatar": "//api.cimafoundation.org/acroweb/avatar/claudio.monteverde",
119
+ "circles": [],
120
+ "domain": {
121
+ "circleId": 206,
122
+ "code": "com_mez",
123
+ "descr": "dominio Comune di Mezzanego",
124
+ "id": 107,
125
+ "latn": 44.487835,
126
+ "lats": 44.253216,
127
+ "lone": 9.490631,
128
+ "lonw": 9.181641,
129
+ "masterhatId": 317,
130
+ "starHatId": 317
131
+ },
132
+ "email": "lavori.pubblici@comunemezzanego.it",
133
+ "emailnotification": true,
134
+ "hats": [],
135
+ "id": "claudio.monteverde",
136
+ "name": "Claudio Monteverde",
137
+ "organization": {
138
+ "descr": "Comune di Mezzanego",
139
+ "id": 97
140
+ },
141
+ "phone": "3357435748",
142
+ "phonenotification": true
143
+ },
144
+ "userhat": "317"
145
+ },
146
+ {
147
+ "type": "text",
148
+ "datetime": "2021-11-23T14:32:57.577Z",
149
+ "cerchie": [
150
+ {
151
+ "descr": "cerchia Comune di Stella",
152
+ "hierarchical": true,
153
+ "id": 738,
154
+ "parent": 26
155
+ }
156
+ ],
157
+ "date": "2021-11-23T14:32:57.577",
158
+ "id": 337044,
159
+ "oComments": [
160
+ {
161
+ "tsdata": "2021-11-23T14:35:30.873Z",
162
+ "date": "2021-11-23T14:35:30.873",
163
+ "id": 1681,
164
+ "text": "Evento Chiuso. Prova segnalazione ",
165
+ "uid": "",
166
+ "user": {
167
+ "avatar": "https://loremflickr.com/64/64",
168
+ "circles": [
169
+ {
170
+ "descr": "cerchia Comune di Stella",
171
+ "hierarchical": true,
172
+ "id": 738,
173
+ "parent": 26
174
+ }
175
+ ],
176
+ "domain": {
177
+ "circleId": 738,
178
+ "code": "dm_stella",
179
+ "descr": "Dominio Comune di Stella",
180
+ "id": 432,
181
+ "latn": 44.419827,
182
+ "lats": 44.358982,
183
+ "lone": 8.562801,
184
+ "lonw": 8.444012,
185
+ "masterhatId": 1206,
186
+ "starHatId": 1204
187
+ },
188
+ "email": "danilodelfino@comune.stella.sv.it",
189
+ "emailnotification": true,
190
+ "hats": [
191
+ {
192
+ "descr": "star Comune di Stella",
193
+ "domain": {
194
+ "circleId": 738,
195
+ "code": "dm_stella",
196
+ "descr": "Dominio Comune di Stella",
197
+ "id": 432,
198
+ "latn": 44.419827,
199
+ "lats": 44.358982,
200
+ "lone": 8.562801,
201
+ "lonw": 8.444012,
202
+ "masterhatId": 1206,
203
+ "starHatId": 1204
204
+ },
205
+ "domainId": 432,
206
+ "id": 1204
207
+ },
208
+ {
209
+ "descr": "user Comune di Stella",
210
+ "domain": {
211
+ "circleId": 738,
212
+ "code": "dm_stella",
213
+ "descr": "Dominio Comune di Stella",
214
+ "id": 432,
215
+ "latn": 44.419827,
216
+ "lats": 44.358982,
217
+ "lone": 8.562801,
218
+ "lonw": 8.444012,
219
+ "masterhatId": 1206,
220
+ "starHatId": 1204
221
+ },
222
+ "domainId": 432,
223
+ "id": 1205
224
+ },
225
+ {
226
+ "descr": "Coordinatore Comune di Stella",
227
+ "domain": {
228
+ "circleId": 738,
229
+ "code": "dm_stella",
230
+ "descr": "Dominio Comune di Stella",
231
+ "id": 432,
232
+ "latn": 44.419827,
233
+ "lats": 44.358982,
234
+ "lone": 8.562801,
235
+ "lonw": 8.444012,
236
+ "masterhatId": 1206,
237
+ "starHatId": 1204
238
+ },
239
+ "domainId": 432,
240
+ "id": 1206
241
+ }
242
+ ],
243
+ "id": "danilo.delfino",
244
+ "name": "Danilo Delfino",
245
+ "organization": {
246
+ "descr": "Comune di Stella",
247
+ "id": 281
248
+ },
249
+ "phone": "3479721446",
250
+ "phonenotification": true
251
+ }
252
+ }
253
+ ],
254
+ "object": "Fusce risus dui, tincidunt at ultricies at, pulvinar et sapien. Integer varius, est at tristique consectetur, lacus ipsum blandit lorem, eget iaculis urna neque a lacus. Etiam mauris arcu, auctor ultricies sodales vitae, accumsan quis risus. Donec quis tincidunt leo, eu varius nunc. Aliquam convallis, ipsum condimentum porttitor ullamcorper, ex lectus fermentum ipsum, et maximus mauris diam in leo. Vestibulum congue faucibus odio eu efficitur. Morbi sed nisl magna. Sed ornare eros ex, non ultricies nulla eleifend in. In mollis augue sit amet nibh tempus dignissim. Proin vitae quam sit amet ligula convallis viverra. Donec eget mi quis leo tempor imperdiet.",
255
+ "app": "eventi;creasy;allagamento",
256
+ "priority": 4,
257
+ "title": "CR-easy - Dominio Comune di Stella - Eventi",
258
+ "uid": "pc-P-dm_stella-e-2111-0004",
259
+ "userdata": {
260
+ "avatar": "//api.cimafoundation.org/acroweb/avatar/userdefault",
261
+ "circles": [],
262
+ "domain": {
263
+ "circleId": 738,
264
+ "code": "dm_stella",
265
+ "descr": "Dominio Comune di Stella",
266
+ "id": 432,
267
+ "latn": 44.419827,
268
+ "lats": 44.358982,
269
+ "lone": 8.562801,
270
+ "lonw": 8.444012,
271
+ "masterhatId": 1206,
272
+ "starHatId": 1204
273
+ },
274
+ "email": "danilodelfino@comune.stella.sv.it",
275
+ "emailnotification": true,
276
+ "hats": [],
277
+ "id": "danilo.delfino",
278
+ "name": "Danilo Delfino",
279
+ "organization": {
280
+ "descr": "Comune di Stella",
281
+ "id": 281
282
+ },
283
+ "phone": "3479721446",
284
+ "phonenotification": true
285
+ },
286
+ "userhat": "1206"
287
+ },
288
+ {
289
+ "type": "text",
290
+ "cerchie": [],
291
+ "date": "2020-12-12",
292
+ "id": "12345",
293
+ "oComments": [],
294
+ "objects": "Fusce risus dui, tincidunt at ultricies at, pulvinar et sapien. Integer varius, est at tristique consectetur, lacus ipsum blandit lorem, eget iaculis urna neque a lacus. Etiam mauris arcu, auctor ultricies sodales vitae, accumsan quis risus. Donec quis tincidunt leo, eu varius nunc. Aliquam convallis, ipsum condimentum porttitor ullamcorper, ex lectus fermentum ipsum, et maximus mauris diam in leo. Vestibulum congue faucibus odio eu efficitur. Morbi sed nisl magna. Sed ornare eros ex, non ultricies nulla eleifend in. In mollis augue sit amet nibh tempus dignissim. Proin vitae quam sit amet ligula convallis viverra. Donec eget mi quis leo tempor imperdiet.",
295
+ "app": "soglia_arancio;sentinel_1",
296
+ "variable": "./assets/img/sentinel_1.svg",
297
+ "priority": 1,
298
+ "title": "Testo di prova",
299
+ "userdata": {
300
+ "avatar": "",
301
+ "circles": [],
302
+ "domain": []
303
+ },
304
+ "email": "direzione@comunevattelapesca.it,",
305
+ "name": "Ayeye Braz",
306
+ "organization": {
307
+ "descr": "Comune di Vattelapesca",
308
+ "id": 107
309
+ }
310
+
311
+
312
+
313
+
314
+ }
315
+
316
+ ]
@@ -0,0 +1,12 @@
1
+ export const environment = {
2
+ title: '<%= classify(name) %> Portal',
3
+ production: true,
4
+ fakeData: false,
5
+ debug: true,
6
+ server: {
7
+ baseUrl: 'https://acroweb3-portal-backend-test.cimafoundation.org',
8
+ configEndpoint: '/acroweb',
9
+ wsEndpoint:
10
+ 'ws://acroweb3-portal-backend-test.cimafoundation.org/ws/notifier/',
11
+ },
12
+ };
@@ -0,0 +1,25 @@
1
+ // This file can be replaced during build by using the `fileReplacements` array.
2
+ // `ng build` replaces `environment.ts` with `environment.prod.ts`.
3
+ // The list of file replacements can be found in `angular.json`.
4
+
5
+ export const environment = {
6
+ title: '<%= classify(name) %> Portal',
7
+ production: false,
8
+ fakeData: false,
9
+ debug: true,
10
+ server: {
11
+ baseUrl: 'https://acroweb3-portal-backend-test.cimafoundation.org',
12
+ configEndpoint: '/acroweb',
13
+ wsEndpoint:
14
+ 'ws://acroweb3-portal-backend-test.cimafoundation.org/ws/notifier/',
15
+ },
16
+ };
17
+
18
+ /*
19
+ * For easier debugging in development mode, you can import the following file
20
+ * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
21
+ *
22
+ * This import should be commented out in production mode because it will have a negative impact
23
+ * on performance if an error is thrown.
24
+ */
25
+ // import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
@@ -0,0 +1,75 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title><%= classify(name) %> Portal</title>
6
+ <base href="/" />
7
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
8
+ <link
9
+ rel="icon"
10
+ id="favicon"
11
+ type="image/x-icon"
12
+ href="assets/icons/favicon.ico"
13
+ />
14
+ <link rel="preconnect" href="https://fonts.gstatic.com" />
15
+ <link
16
+ href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600&display=swap"
17
+ rel="stylesheet"
18
+ />
19
+ <link
20
+ href="https://fonts.googleapis.com/icon?family=Material+Icons"
21
+ rel="stylesheet"
22
+ />
23
+ <link rel="manifest" href="manifest.webmanifest" />
24
+ <meta name="theme-color" content="#1976d2" />
25
+ <style>
26
+ .splash-screen {
27
+ position: absolute;
28
+ top: 0;
29
+ right: 0;
30
+ bottom: 0;
31
+ left: 0;
32
+ z-index: 9999;
33
+ background: var(--cima-splashscreen-background);
34
+ color: var(--cima-splashscreen-text);
35
+ display: flex;
36
+ justify-content: center;
37
+ align-items: center;
38
+ flex-direction: column;
39
+ }
40
+ .splash-screen .app-logo {
41
+ background-image: url(/assets/images/splash-logo.png);
42
+ background-repeat: no-repeat;
43
+ max-width: 100%;
44
+ background-position: center;
45
+ background-size: contain;
46
+ width: 70%;
47
+ height: 70%;
48
+ max-width: 300px;
49
+ max-height: 300px;
50
+ }
51
+
52
+ .splash-screen .app-loader {
53
+ background-image: url(/assets/images/three-dots.svg);
54
+ background-repeat: no-repeat;
55
+ max-width: 100%;
56
+ background-position: center;
57
+ background-size: contain;
58
+ width: 80px;
59
+ height: 80px;
60
+ margin-top: 60px;
61
+ }
62
+ </style>
63
+ </head>
64
+ <body class="mat-typography">
65
+ <app-root>
66
+ <div class="splash-screen">
67
+ <div class="app-logo"></div>
68
+ <div class="app-loader"></div>
69
+ </div>
70
+ </app-root>
71
+ <noscript
72
+ >Please enable JavaScript to continue using this application.</noscript
73
+ >
74
+ </body>
75
+ </html>
@@ -0,0 +1,12 @@
1
+ import { enableProdMode } from '@angular/core';
2
+ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3
+
4
+ import { AppModule } from './app/app.module';
5
+ import { environment } from './environments/environment';
6
+
7
+ if (environment.production) {
8
+ enableProdMode();
9
+ }
10
+
11
+ platformBrowserDynamic().bootstrapModule(AppModule)
12
+ .catch(err => console.error(err));
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "<%= dasherize(name) %>-portal",
3
+ "short_name": "<%= dasherize(name) %>-portal",
4
+ "theme_color": "#1976d2",
5
+ "background_color": "#fafafa",
6
+ "display": "standalone",
7
+ "scope": "./",
8
+ "start_url": "./",
9
+ "icons": [
10
+ {
11
+ "src": "assets/icons/icon-72x72.png",
12
+ "sizes": "72x72",
13
+ "type": "image/png",
14
+ "purpose": "maskable any"
15
+ },
16
+ {
17
+ "src": "assets/icons/icon-96x96.png",
18
+ "sizes": "96x96",
19
+ "type": "image/png",
20
+ "purpose": "maskable any"
21
+ },
22
+ {
23
+ "src": "assets/icons/icon-128x128.png",
24
+ "sizes": "128x128",
25
+ "type": "image/png",
26
+ "purpose": "maskable any"
27
+ },
28
+ {
29
+ "src": "assets/icons/icon-144x144.png",
30
+ "sizes": "144x144",
31
+ "type": "image/png",
32
+ "purpose": "maskable any"
33
+ },
34
+ {
35
+ "src": "assets/icons/icon-152x152.png",
36
+ "sizes": "152x152",
37
+ "type": "image/png",
38
+ "purpose": "maskable any"
39
+ },
40
+ {
41
+ "src": "assets/icons/icon-192x192.png",
42
+ "sizes": "192x192",
43
+ "type": "image/png",
44
+ "purpose": "maskable any"
45
+ },
46
+ {
47
+ "src": "assets/icons/icon-384x384.png",
48
+ "sizes": "384x384",
49
+ "type": "image/png",
50
+ "purpose": "maskable any"
51
+ },
52
+ {
53
+ "src": "assets/icons/icon-512x512.png",
54
+ "sizes": "512x512",
55
+ "type": "image/png",
56
+ "purpose": "maskable any"
57
+ }
58
+ ]
59
+ }