waygo-maps 1.0.21 → 1.0.23
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/bundle.js +2 -1
- package/dist/style.css +31 -0
- package/package.json +18 -1
package/dist/style.css
CHANGED
|
@@ -766,6 +766,35 @@ body {
|
|
|
766
766
|
/* background-color: #e5e5e7; */
|
|
767
767
|
}
|
|
768
768
|
|
|
769
|
+
.loading-cell {
|
|
770
|
+
display: flex;
|
|
771
|
+
align-items: center;
|
|
772
|
+
justify-content: center;
|
|
773
|
+
padding: 30px;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.loading-spinner {
|
|
777
|
+
width: 20px;
|
|
778
|
+
/* Set the width of the spinner */
|
|
779
|
+
height: 20px;
|
|
780
|
+
/* Set the height of the spinner */
|
|
781
|
+
border: 2px solid rgba(0, 0, 0, 0.1);
|
|
782
|
+
/* Light border */
|
|
783
|
+
border-top-color: #434343;
|
|
784
|
+
/* Color of the rotating part */
|
|
785
|
+
border-radius: 50%;
|
|
786
|
+
/* Make it circular */
|
|
787
|
+
animation: spin 0.8s ease infinite;
|
|
788
|
+
/* Rotation animation */
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
/* Keyframes for the spin animation */
|
|
792
|
+
@keyframes spin {
|
|
793
|
+
to {
|
|
794
|
+
transform: rotate(360deg);
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
|
|
769
798
|
/* Styles for desktop view */
|
|
770
799
|
/* @media (min-width: 768px) {
|
|
771
800
|
.search-results-view {
|
|
@@ -1291,3 +1320,5 @@ body {
|
|
|
1291
1320
|
overflow-x: hidden;
|
|
1292
1321
|
}
|
|
1293
1322
|
|
|
1323
|
+
|
|
1324
|
+
/*# sourceMappingURL=style.css.map*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "waygo-maps",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"main": "dist/bundle.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/bundle.js",
|
|
@@ -16,17 +16,34 @@
|
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"description": "",
|
|
18
18
|
"dependencies": {
|
|
19
|
+
"assert": "^2.1.0",
|
|
19
20
|
"axios": "^1.7.2",
|
|
21
|
+
"browserify-zlib": "^0.2.0",
|
|
22
|
+
"buffer": "^6.0.3",
|
|
23
|
+
"constants-browserify": "^1.0.0",
|
|
24
|
+
"crypto-browserify": "^3.12.1",
|
|
25
|
+
"https-browserify": "^1.0.0",
|
|
26
|
+
"os-browserify": "^0.3.0",
|
|
27
|
+
"path-browserify": "^1.0.1",
|
|
28
|
+
"querystring-es3": "^0.2.1",
|
|
29
|
+
"stream-browserify": "^3.0.0",
|
|
30
|
+
"stream-http": "^3.2.0",
|
|
20
31
|
"style-loader": "^4.0.0",
|
|
32
|
+
"terser-webpack-plugin": "^5.3.10",
|
|
33
|
+
"url": "^0.11.4",
|
|
34
|
+
"util": "^0.12.5",
|
|
35
|
+
"vm-browserify": "^1.1.2",
|
|
21
36
|
"waygo-maps": "^1.0.0"
|
|
22
37
|
},
|
|
23
38
|
"devDependencies": {
|
|
24
39
|
"@babel/core": "^7.24.9",
|
|
25
40
|
"@babel/preset-env": "^7.25.0",
|
|
41
|
+
"@swc/core": "^1.9.1",
|
|
26
42
|
"babel-loader": "^9.1.3",
|
|
27
43
|
"css-loader": "^7.1.2",
|
|
28
44
|
"file-loader": "^6.2.0",
|
|
29
45
|
"mini-css-extract-plugin": "^2.9.1",
|
|
46
|
+
"process": "^0.11.10",
|
|
30
47
|
"url-loader": "^4.1.1",
|
|
31
48
|
"webpack": "^5.93.0",
|
|
32
49
|
"webpack-cli": "^5.1.4",
|