@vixoniccom/aqi 0.0.1 → 0.0.2-dev.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 +9 -0
- package/build/index.html +1 -1
- package/build/main.js +2 -39
- package/build/main.js.LICENSE.txt +46 -0
- package/build/test/downloads/123.ttf +0 -0
- package/build/test/downloads/7953953c-7029-4730-ae4d-cff4abd5288f.ttf +0 -0
- package/build/test/downloads/Earthquakes.png +0 -0
- package/build/test/downloads/c705a739-312e-4334-9231-e73a05e9d382.ttf +0 -0
- package/build/test/downloads/futura-font.ttf +0 -0
- package/build/test/parameters.json +36 -0
- package/build.zip +0 -0
- package/package.json +8 -8
- package/sonar-project.properties +1 -0
- package/src/App.tsx +17 -68
- package/src/components/Card.tsx +1 -1
- package/src/components/FontLoader.tsx +1 -1
- package/src/components/FormattedText.tsx +10 -11
- package/src/index.html +13 -10
- package/src/main.ts +3 -3
- package/src/services/index.ts +64 -0
- package/src/utils.ts +2 -6
- package/tsconfig.json +27 -36
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.2-dev.0](https://github.com/Vixonic/store-air-quality-index/compare/v0.0.1...v0.0.2-dev.0) (2025-08-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add sonar file ([95c76a6](https://github.com/Vixonic/store-air-quality-index/commit/95c76a6c4ad4e534d42f064ec997fc89b722180a))
|
|
11
|
+
* move data logic to services folder ([26036de](https://github.com/Vixonic/store-air-quality-index/commit/26036de1aad5534f7f6d1bb7518be370248fe521))
|
|
12
|
+
* update dependencies ([8328e08](https://github.com/Vixonic/store-air-quality-index/commit/8328e085e94d55f5811e3e1078d0676eef5babd3))
|
|
13
|
+
|
|
5
14
|
### [0.0.1](https://bitbucket.org/vixonic_dev/air-quality-index/compare/v0.0.1-dev.7...v0.0.1) (2025-01-28)
|
|
6
15
|
|
|
7
16
|
### [0.0.1-dev.7](https://bitbucket.org/vixonic_dev/air-quality-index/compare/v0.0.1-dev.6...v0.0.1-dev.7) (2025-01-13)
|
package/build/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html style="position:
|
|
1
|
+
<!doctype html><html lang="en" style="position:absolute;height:100%;width:100%;overflow:hidden"><head><title></title><meta charset="utf-8"/></head><body style="margin:0;overflow:hidden"><div id="root" style="position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden"></div><script src="./main.js"></script></body></html>
|