@mappedin/viewer 0.30.10-fd0aa08.0 → 0.31.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 +19 -0
- package/dist/index.js +27140 -23625
- package/dist/types/src/components/pumpkin-button/index.d.ts +3 -2
- package/dist/types/src/components/pumpkin-button/pumpkin-button.stories.d.ts +1 -0
- package/dist/types/src/components/snowflake-button/index.d.ts +5 -0
- package/dist/types/src/components/snowflake-button/snowfall.d.ts +2 -0
- package/dist/types/src/components/snowflake-button/snowflake-button.stories.d.ts +4 -0
- package/dist/types/src/components/snowflake-button/snowflake.d.ts +6 -0
- package/dist/types/src/components/theme-button/index.d.ts +14 -0
- package/dist/types/src/lib/hooks/use-feature-flag.d.ts +3 -0
- package/dist/types/src/lib/hooks/use-feature-flag.test.d.ts +1 -0
- package/dist/types/src/lib/hooks/use-temporary-theme.d.ts +9 -0
- package/dist/types/src/lib/hooks/use-temporary-theme.test.d.ts +1 -0
- package/dist/types/src/lib/theme/theme.stories.d.ts +2 -0
- package/dist/types/src/lib/theme/utils.d.ts +3 -1
- package/dist/types/src/lib/theme/variants/index.d.ts +7 -0
- package/dist/types/src/lib/theme/variants/winter.d.ts +3 -0
- package/dist/types/src/lib/types/theme.d.ts +1 -0
- package/dist/types/src/lib/utils/color-utils.d.ts +1 -0
- package/dist/types/src/lib/utils/process-places.d.ts +2 -1
- package/dist/types/src/stores/feature-flag-store/index.d.ts +2 -0
- package/dist/types/src/stores/map-store/controllers/camera.d.ts +9 -0
- package/dist/types/src/stores/map-store/controllers/camera.test.d.ts +1 -0
- package/dist/types/src/stores/map-store/index.d.ts +3 -0
- package/dist/types/src/stores/message-store/index.d.ts +33 -0
- package/dist/types/src/stores/message-store/message-store.test.d.ts +1 -0
- package/dist/types/src/stores/message-store/utils.d.ts +82 -0
- package/dist/types/src/stores/root-store/index.d.ts +13 -6
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.31.0](https://github.com/MappedIn/viewer/compare/viewer-v0.30.9...viewer-v0.31.0) (2024-12-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **SRV-1873:** new safety icons ([#375](https://github.com/MappedIn/viewer/issues/375)) ([25e2416](https://github.com/MappedIn/viewer/commit/25e24162835d7f5b017a3b4d95d7743d8e9067ed))
|
|
9
|
+
* **SRV-1882:** add keyboard camera controls ([#370](https://github.com/MappedIn/viewer/issues/370)) ([d2c275e](https://github.com/MappedIn/viewer/commit/d2c275e2bd92ee47beda15f436831a99135426a5))
|
|
10
|
+
* **SRV-1882:** enable keyboard navigation ([#367](https://github.com/MappedIn/viewer/issues/367)) ([2ec27f0](https://github.com/MappedIn/viewer/commit/2ec27f093793a1fc754a3c627ae13e85df6e237d))
|
|
11
|
+
* **SRV-1891:** add message API ([#374](https://github.com/MappedIn/viewer/issues/374)) ([06c11c4](https://github.com/MappedIn/viewer/commit/06c11c4cf49829826e05cdee9c2fd2c45d5dd055))
|
|
12
|
+
* **SRV-1895:** winter mode ([#376](https://github.com/MappedIn/viewer/issues/376)) ([3d65ff1](https://github.com/MappedIn/viewer/commit/3d65ff188afbe0a05e7aa08ba9bd1fff677c6f6d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **SRV-1882:** improve keyboard navigation of images ([#368](https://github.com/MappedIn/viewer/issues/368)) ([4bb1806](https://github.com/MappedIn/viewer/commit/4bb18068de629862f2d31a5c4a07e1ab7ae3c37b))
|
|
18
|
+
* **SRV-1882:** improve keyboard navigation of lists ([#369](https://github.com/MappedIn/viewer/issues/369)) ([fd0aa08](https://github.com/MappedIn/viewer/commit/fd0aa08d90a0d1fed3b92e408de22cf4ddc330d0))
|
|
19
|
+
* **SRV-1890:** fix viewer embedded mobile styling ([#372](https://github.com/MappedIn/viewer/issues/372)) ([7543892](https://github.com/MappedIn/viewer/commit/7543892d9fec2e94320918016571727f9df7e36e))
|
|
20
|
+
* **SRV-1895:** correctly revert temporary themes ([f9fd9ef](https://github.com/MappedIn/viewer/commit/f9fd9efbe38e14ebf816cc6eb60ccec40ac249b4))
|
|
21
|
+
|
|
3
22
|
## [0.30.9](https://github.com/MappedIn/viewer/compare/viewer-v0.30.8...viewer-v0.30.9) (2024-12-02)
|
|
4
23
|
|
|
5
24
|
|