@vizbl/room-viewer 0.0.7 → 0.0.9
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.
|
@@ -1,3 +1,99 @@
|
|
|
1
|
+
/* @license
|
|
2
|
+
* Copyright 2019 Google LLC. All Rights Reserved.
|
|
3
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
4
|
+
* you may not use this file except in compliance with the License.
|
|
5
|
+
* You may obtain a copy of the License at
|
|
6
|
+
*
|
|
7
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
*
|
|
9
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
11
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
* See the License for the specific language governing permissions and
|
|
13
|
+
* limitations under the License.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/* @license
|
|
17
|
+
* Copyright 2020 Google LLC. All Rights Reserved.
|
|
18
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
19
|
+
* you may not use this file except in compliance with the License.
|
|
20
|
+
* You may obtain a copy of the License at
|
|
21
|
+
*
|
|
22
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
23
|
+
*
|
|
24
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
25
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
26
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
27
|
+
* See the License for the specific language governing permissions and
|
|
28
|
+
* limitations under the License.
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/* @license
|
|
32
|
+
* Copyright 2021 Google LLC. All Rights Reserved.
|
|
33
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
34
|
+
* you may not use this file except in compliance with the License.
|
|
35
|
+
* You may obtain a copy of the License at
|
|
36
|
+
*
|
|
37
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
38
|
+
*
|
|
39
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
40
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
41
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
42
|
+
* See the License for the specific language governing permissions and
|
|
43
|
+
* limitations under the License.
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
/* @license
|
|
47
|
+
* Copyright 2022 Google LLC. All Rights Reserved.
|
|
48
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
49
|
+
* you may not use this file except in compliance with the License.
|
|
50
|
+
* You may obtain a copy of the License at
|
|
51
|
+
*
|
|
52
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
53
|
+
*
|
|
54
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
55
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
56
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
57
|
+
* See the License for the specific language governing permissions and
|
|
58
|
+
* limitations under the License.
|
|
59
|
+
*/
|
|
60
|
+
|
|
61
|
+
/* @license
|
|
62
|
+
* Copyright 2023 Google LLC. All Rights Reserved.
|
|
63
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
64
|
+
* you may not use this file except in compliance with the License.
|
|
65
|
+
* You may obtain a copy of the License at
|
|
66
|
+
*
|
|
67
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
68
|
+
*
|
|
69
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
70
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
71
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
72
|
+
* See the License for the specific language governing permissions and
|
|
73
|
+
* limitations under the License.
|
|
74
|
+
*/
|
|
75
|
+
|
|
76
|
+
/* @license
|
|
77
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
78
|
+
* you may not use this file except in compliance with the License.
|
|
79
|
+
* You may obtain a copy of the License at
|
|
80
|
+
*
|
|
81
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
82
|
+
*
|
|
83
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
84
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
85
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
86
|
+
* See the License for the specific language governing permissions and
|
|
87
|
+
* limitations under the License.
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
/*!
|
|
91
|
+
fflate - fast JavaScript compression/decompression
|
|
92
|
+
<https://101arrowz.github.io/fflate>
|
|
93
|
+
Licensed under MIT. https://github.com/101arrowz/fflate/blob/master/LICENSE
|
|
94
|
+
version 0.8.2
|
|
95
|
+
*/
|
|
96
|
+
|
|
1
97
|
/**
|
|
2
98
|
* @license React
|
|
3
99
|
* react-reconciler.production.js
|
|
@@ -24,6 +120,24 @@
|
|
|
24
120
|
* SPDX-License-Identifier: MIT
|
|
25
121
|
*/
|
|
26
122
|
|
|
123
|
+
/**
|
|
124
|
+
* @license
|
|
125
|
+
* Copyright 2017 Google LLC
|
|
126
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @license
|
|
131
|
+
* Copyright 2019 Google LLC
|
|
132
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
133
|
+
*/
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @license
|
|
137
|
+
* Copyright 2021 Google LLC
|
|
138
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
139
|
+
*/
|
|
140
|
+
|
|
27
141
|
/**
|
|
28
142
|
* @license React
|
|
29
143
|
* react-dom-client.production.js
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizbl/room-viewer",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
7
7
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"react": "^19.2.0",
|
|
16
16
|
"react-dom": "^19.2.0",
|
|
17
|
-
"@vizbl/react-room-viewer": "0.0.
|
|
17
|
+
"@vizbl/react-room-viewer": "0.0.2"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"selector-observer": "^2.1.6"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"react-dom": "^19.2.0",
|
|
31
31
|
"typescript": "^5.9.3",
|
|
32
32
|
"@vizbl/eslint-config": "0.0.0",
|
|
33
|
-
"@vizbl/react-room-viewer": "0.0.
|
|
33
|
+
"@vizbl/react-room-viewer": "0.0.2",
|
|
34
34
|
"@vizbl/typescript-config": "0.0.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|