@qispace/vue3-player 0.1.4 → 0.1.8
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/dist/vue-components/src/components/apartmentChooser/VApartmentChooser.vue.d.ts +60 -34
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserNavigation.vue.d.ts +14 -11
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserRaster.vue.d.ts +33 -23
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserRotator.vue.d.ts +8 -6
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserSvg.vue.d.ts +33 -23
- package/dist/vue-components/src/components/apartmentChooser/types.d.ts +25 -12
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooser.vue.d.ts +2 -1
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserRaster.vue.d.ts +4 -3
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserRasterOverlay.vue.d.ts +1 -1
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserSvg.vue.d.ts +4 -3
- package/dist/vue-components/src/components/buildingPicker/types.d.ts +0 -9
- package/dist/vue-components/src/components/injectionKeys.d.ts +4 -0
- package/dist/vue-components/src/components/types.d.ts +24 -0
- package/dist/vue-components/src/components/virtualTour/VVirtualTour.vue.d.ts +3 -2
- package/dist/vue-components/src/lib/apartmentChooser/BuildingViewerModel.d.ts +6 -10
- package/dist/vue-components/src/lib/apartmentChooser/RotationStep.d.ts +3 -2
- package/dist/vue-components/src/lib/apartmentChooser/SceneRotator.d.ts +5 -5
- package/dist/vue-components/src/lib/shared/BatchLoadTracker.d.ts +5 -5
- package/dist/vue-components/src/lib/shared/I18N.d.ts +4 -3
- package/dist/vue-components/src/lib/shared/ResourceLoader.d.ts +6 -3
- package/dist/vue-components/src/vue-components.d.ts +6 -2
- package/dist/vue-components/style.css +1 -1
- package/dist/vue-components/vue3-player.js +1850 -1860
- package/dist/vue-components/vue3-player.umd.cjs +1 -1
- package/package.json +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qispace/vue3-player",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"config": {
|
|
6
6
|
"tag-version-prefix": "v"
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"release:patch": "git pull && npm version patch && git push && git push --tags"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@qispace/player-core": "1.0.
|
|
46
|
+
"@qispace/player-core": "1.0.56",
|
|
47
47
|
"axios": "^1.6.7",
|
|
48
48
|
"vue": "^3.4.15",
|
|
49
49
|
"vuetify": "^3.5.4"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@mdi/font": "^7.4.47",
|
|
53
|
-
"@qispace/player-core": "1.0.
|
|
53
|
+
"@qispace/player-core": "1.0.56",
|
|
54
54
|
"@rollup/plugin-alias": "^5.1.0",
|
|
55
55
|
"@rollup/plugin-babel": "^6.0.4",
|
|
56
56
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@vuedoc/md": "^3.2.0",
|
|
70
70
|
"@vuedoc/parser": "^3.4.0",
|
|
71
71
|
"axios": "^1.6.7",
|
|
72
|
-
"browser-fs-access": "^0.
|
|
72
|
+
"browser-fs-access": "^0.35.0",
|
|
73
73
|
"cross-env": "^7.0.3",
|
|
74
74
|
"minimist": "^1.2.8",
|
|
75
75
|
"path": "^0.12.7",
|
|
@@ -87,7 +87,6 @@
|
|
|
87
87
|
"vue-tsc": "^1.8.27"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"browser-fs-access": "^0.35.0",
|
|
91
90
|
"browser-or-node": "^2.1.1"
|
|
92
91
|
},
|
|
93
92
|
"engines": {
|