@mxtommy/kip 2.6.0 → 2.7.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # V 2.7.0
2
+ ## New features
3
+ * Boolean Control Panel Widget: Added Push button and Light indicator controls
4
+ * Application loading spinner animation during KIP startup replacing the blank screen visible on slow network/devices improving user experience
5
+ ## Improvements
6
+ * Boolean Control Panel Widget Options: Ability to change control position, layout clean up and enhanced responsive design
7
+ * Date & Time Widget Options: Added pre populated selection list of available Time Zones enhancing usability
8
+ * Auto Night Mode feature now based on environment.mode path aligning to latest Signal K specifications. The change is backward compatible
9
+ ## Fixes
10
+ * Improved Settings / Storage tab [object Object] error message when Signal K server's Application Storage service is not accessible from KIP
1
11
  # V 2.6.0
2
12
  ## New features
3
13
  * New Boolean Switches Widget. The first addition to a new series of multi-paths boolean Widgets
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@mxtommy/kip",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "An advanced and versatile marine instrumentation package to display Signal K data.",
5
5
  "license": "MIT",
6
+ "author": {
7
+ "name": "Thomas St.Pierre, David Godin"
8
+ },
6
9
  "contributors": [
7
10
  {
8
11
  "name": "Thomas St.Pierre",
@@ -43,9 +46,19 @@
43
46
  },
44
47
  "devDependencies": {
45
48
  "@angular-devkit/build-angular": "^14.2.13",
49
+ "@angular/animations": "14.3.0",
50
+ "@angular/cdk": "^14.2.7",
46
51
  "@angular/cli": "^14.2.13",
52
+ "@angular/common": "14.3.0",
53
+ "@angular/compiler": "14.3.0",
47
54
  "@angular/compiler-cli": "14.3.0",
55
+ "@angular/core": "14.3.0",
56
+ "@angular/forms": "14.3.0",
48
57
  "@angular/language-service": "14.3.0",
58
+ "@angular/material": "^14.2.7",
59
+ "@angular/platform-browser": "14.3.0",
60
+ "@angular/platform-browser-dynamic": "14.3.0",
61
+ "@angular/router": "14.3.0",
49
62
  "@types/canvas-gauges": "^2.1.2",
50
63
  "@types/hammerjs": "^2.0.45",
51
64
  "@types/howler": "^2.2.10",
@@ -54,50 +67,37 @@
54
67
  "@types/js-quantities": "^1.6.4",
55
68
  "@types/lodash-es": "^4.17.9",
56
69
  "@types/node": "^20.8.6",
57
- "codelyzer": "^6.0.0",
58
- "jasmine-core": "~4.0.1",
59
- "jasmine-spec-reporter": "~5.0.0",
60
- "karma": "~6.3.17",
61
- "karma-chrome-launcher": "~3.1.0",
62
- "karma-cli": "~2.0.0",
63
- "karma-coverage-istanbul-reporter": "^3.0.3",
64
- "karma-jasmine": "~4.0.0",
65
- "karma-jasmine-html-reporter": "^1.6.0",
66
- "protractor": "~7.0.0",
67
- "sass": "^1.49.9",
68
- "ts-node": "^8.10.2",
69
- "tslib": "^2.2.0",
70
- "tslint": "^6.1.3",
71
- "typescript": "^4.6.4",
72
- "pwa-asset-generator": "^6.3.1",
73
-
74
- "@angular/animations": "14.3.0",
75
- "@angular/cdk": "^14.2.7",
76
- "@angular/common": "14.3.0",
77
- "@angular/compiler": "14.3.0",
78
- "@angular/core": "14.3.0",
79
- "@angular/forms": "14.3.0",
80
- "@angular/material": "^14.2.7",
81
- "@angular/platform-browser": "14.3.0",
82
- "@angular/platform-browser-dynamic": "14.3.0",
83
- "@angular/router": "14.3.0",
84
70
  "angular-resize-event": "^3.2.0",
85
71
  "angular-split": "^14.1.0",
86
72
  "canvas-gauges": "^2.1.7",
87
73
  "chart.js": "^3.5.1",
88
74
  "chartjs-adapter-date-fns": "^3.0.0",
75
+ "codelyzer": "^6.0.0",
89
76
  "compare-versions": "^5.0.1",
90
77
  "core-js": "^3.13.1",
91
78
  "date-fns": "^2.30.0",
92
79
  "hammerjs": "^2.0.8",
93
80
  "howler": "^2.2.4",
81
+ "jasmine-core": "~4.0.1",
82
+ "jasmine-spec-reporter": "~5.0.0",
94
83
  "js-quantities": "^1.8.0",
84
+ "karma": "~6.3.17",
85
+ "karma-chrome-launcher": "~3.1.0",
86
+ "karma-cli": "~2.0.0",
87
+ "karma-coverage-istanbul-reporter": "^3.0.3",
88
+ "karma-jasmine": "~4.0.0",
89
+ "karma-jasmine-html-reporter": "^1.6.0",
95
90
  "lodash-es": "^4.17.21",
91
+ "protractor": "~7.0.0",
92
+ "pwa-asset-generator": "^6.3.1",
96
93
  "rx-dom-html": "^7.0.3",
97
94
  "rxjs": "^7.5.7",
95
+ "sass": "^1.49.9",
98
96
  "screenfull": "^6.0.2",
97
+ "ts-node": "^8.10.2",
98
+ "tslib": "^2.2.0",
99
+ "tslint": "^6.1.3",
100
+ "typescript": "^4.8.4",
99
101
  "zone.js": "~0.11.4"
100
- },
101
- "dependencies": {
102
102
  }
103
103
  }
package/public/index.html CHANGED
@@ -42,8 +42,23 @@
42
42
  <link rel="apple-touch-startup-image" href="assets/apple-splash-1334-750.jpg" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)">
43
43
  <link rel="apple-touch-startup-image" href="assets/apple-splash-640-1136.jpg" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)">
44
44
  <link rel="apple-touch-startup-image" href="assets/apple-splash-1136-640.jpg" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)">
45
- <style>html,body,app-root{height:100%}body{margin:0;touch-action:none}</style><link rel="stylesheet" href="styles.f98a2c1ba7cb7018.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.f98a2c1ba7cb7018.css"></noscript></head>
45
+ <style>html,body,app-root{height:100%}body{margin:0;touch-action:none}.loader-container{height:100%;width:100%;background-color:#424242}#loader{height:175px;inset:0;margin:auto;position:absolute;width:175px}#loader .dot{height:100%;inset:0;margin:auto;position:absolute;width:87.5px}#loader .dot:before{border-radius:100%;content:"";height:87.5px;left:0;position:absolute;right:0;top:0;transform:scale(0);width:87.5px}#loader .dot:nth-child(7n+1){transform:rotate(45deg)}#loader .dot:nth-child(7n+1):before{animation:.8s linear .1s normal none infinite running load;background:#e5ab13 none repeat scroll 0 0}#loader .dot:nth-child(7n+2){transform:rotate(90deg)}#loader .dot:nth-child(7n+2):before{animation:.8s linear .2s normal none infinite running load;background:#f0ca31 none repeat scroll 0 0}#loader .dot:nth-child(7n+3){transform:rotate(135deg)}#loader .dot:nth-child(7n+3):before{animation:.8s linear .3s normal none infinite running load;background:#92c7e9 none repeat scroll 0 0}#loader .dot:nth-child(7n+4){transform:rotate(180deg)}#loader .dot:nth-child(7n+4):before{animation:.8s linear .4s normal none infinite running load;background:#63afdf none repeat scroll 0 0}#loader .dot:nth-child(7n+5){transform:rotate(225deg)}#loader .dot:nth-child(7n+5):before{animation:.8s linear .5s normal none infinite running load;background:#3586ca none repeat scroll 0 0}#loader .dot:nth-child(7n+6){transform:rotate(270deg)}#loader .dot:nth-child(7n+6):before{animation:.8s linear .6s normal none infinite running load;background:#d52626 none repeat scroll 0 0}#loader .dot:nth-child(7n+7){transform:rotate(315deg)}#loader .dot:nth-child(7n+7):before{animation:.8s linear .7s normal none infinite running load;background:#e26767 none repeat scroll 0 0}#loader .dot:nth-child(7n+8){transform:rotate(360deg)}#loader .dot:nth-child(7n+8):before{animation:.8s linear .8s normal none infinite running load;background:#f8e598 none repeat scroll 0 0}#loader .loading{background-position:50% 50%;background-repeat:no-repeat;bottom:-40px;height:20px;left:0;position:absolute;right:0;width:180px}@keyframes load{to{opacity:0;transform:scale(1)}}</style><link rel="stylesheet" href="styles.7fd0e0a82566fef7.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.7fd0e0a82566fef7.css"></noscript></head>
46
46
  <body>
47
- <app-root></app-root>
48
- <script src="runtime.e75056c32c37f59d.js" type="module"></script><script src="polyfills.64db6be9cdc8f808.js" type="module"></script><script src="main.9ac2d4dfd3811897.js" type="module"></script>
47
+ <app-root>
48
+ <div class="loader-container">
49
+ <div id="loader">
50
+ <div class="dot"></div>
51
+ <div class="dot"></div>
52
+ <div class="dot"></div>
53
+ <div class="dot"></div>
54
+ <div class="dot"></div>
55
+ <div class="dot"></div>
56
+ <div class="dot"></div>
57
+ <div class="dot"></div>
58
+ <div class="loading"></div>
59
+ </div>
60
+ </div>
61
+ </app-root>
62
+ <script src="runtime.e75056c32c37f59d.js" type="module"></script><script src="polyfills.64db6be9cdc8f808.js" type="module"></script><script src="main.983d1ca922519d80.js" type="module"></script>
63
+
49
64
  </body></html>