@mappedin/viewer 0.28.3-e764ae7.0 → 0.29.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 +8 -0
- package/README.md +3 -3
- package/dist/index.js +3848 -3835
- package/dist/types/src/lib/types/options.d.ts +4 -0
- package/dist/types/src/lib/utils/option-utils.d.ts +5 -0
- package/dist/types/src/lib/utils/options-utils.test.d.ts +1 -0
- package/dist/types/src/stores/router-store/index.d.ts +18 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.29.0](https://github.com/MappedIn/viewer/compare/viewer-v0.28.2...viewer-v0.29.0) (2024-10-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **SRV-1744:** add option to hide map ID in URL ([#338](https://github.com/MappedIn/viewer/issues/338)) ([837db57](https://github.com/MappedIn/viewer/commit/837db577e0dcc60e3f2b292569855a08645dc463))
|
|
9
|
+
* **SRV-1753:** do not show default floor in URL ([#339](https://github.com/MappedIn/viewer/issues/339)) ([e764ae7](https://github.com/MappedIn/viewer/commit/e764ae7851b0cd1de4935041a4e5bb3074b9d561))
|
|
10
|
+
|
|
3
11
|
## [0.28.2](https://github.com/MappedIn/viewer/compare/viewer-v0.28.1...viewer-v0.28.2) (2024-10-24)
|
|
4
12
|
|
|
5
13
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Mappedin Viewer
|
|
2
2
|
|
|
3
|
-
A lightweight indoor map application with first class support for maps made in [Mappedin
|
|
3
|
+
A lightweight indoor map application with first class support for maps made in [Mappedin](https://app.mappedin.com/editor).
|
|
4
4
|
|
|
5
5
|
## Getting Started
|
|
6
6
|
|
|
@@ -38,9 +38,9 @@ yarn add @mappedin/viewer
|
|
|
38
38
|
pnpm i @mappedin/viewer
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
#### Pointing at a public Mappedin
|
|
41
|
+
#### Pointing at a public Mappedin map
|
|
42
42
|
|
|
43
|
-
Import and run the default `start` method. The ID of the
|
|
43
|
+
Import and run the default `start` method. The ID of the map will be parsed from the URL.
|
|
44
44
|
|
|
45
45
|
```ts
|
|
46
46
|
import start from '@mappedin/viewer';
|