@omnic/widget-locations 1.0.17 → 1.0.20
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/README.md +2 -0
- package/dist/lib/locales/en/common.json.d.ts +73 -0
- package/dist/lib/locales/ru/common.json.d.ts +73 -0
- package/dist/lib/src/components/AsyncSelect/AsyncSelect.d.ts +1 -0
- package/dist/lib/src/components/CourierBalloon/index.d.ts +0 -0
- package/dist/lib/src/components/Devtool/Devtool.utils.d.ts +3 -0
- package/dist/lib/src/components/Input/Input.d.ts +7 -0
- package/dist/lib/src/components/Input/index.d.ts +1 -0
- package/dist/lib/src/components/LocationSelector/LocationSelector.d.ts +1 -0
- package/dist/lib/src/components/MapGoogle/MapGoogle.constants.d.ts +2 -0
- package/dist/lib/src/components/MapGoogle/Point.d.ts +1 -1
- package/dist/lib/src/components/MapYandex/MapYandex.constants.d.ts +1 -0
- package/dist/lib/src/components/RadioGroup/RadioGroup.d.ts +9 -0
- package/dist/lib/src/components/RadioGroup/index.d.ts +1 -0
- package/dist/lib/src/components/RangeSlider/RangeSlider.d.ts +7 -0
- package/dist/lib/src/components/RangeSlider/index.d.ts +1 -0
- package/dist/lib/src/components/TimeRangeSlider/TimeRangeSlider.d.ts +9 -0
- package/dist/lib/src/components/TimeRangeSlider/index.d.ts +1 -0
- package/dist/lib/src/components/WorkingHoursFilter/WorkingHoursFilter.d.ts +9 -0
- package/dist/lib/src/components/WorkingHoursFilter/index.d.ts +1 -0
- package/dist/lib/src/context/config.d.ts +1 -0
- package/dist/lib/src/context/filter.d.ts +1 -0
- package/dist/lib/src/context/location.d.ts +4 -3
- package/dist/lib/src/hooks/useLocation.d.ts +4 -6
- package/dist/lib/src/hooks/useMapFactory.d.ts +1 -0
- package/dist/lib/src/hooks/usePoints.d.ts +2 -3
- package/dist/lib/src/main.d.ts +0 -0
- package/dist/lib/src/services/points.d.ts +1 -3
- package/dist/lib/src/types/config.d.ts +3 -2
- package/dist/lib/style.css +1 -1
- package/dist/lib/widget.es.js +7078 -6985
- package/dist/lib/widget.umd.js +22 -40
- package/package.json +21 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnic/widget-locations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/lib/widget.umd.js",
|
|
6
6
|
"module": "./dist/lib/widget.es.js",
|
|
@@ -31,39 +31,40 @@
|
|
|
31
31
|
"react-dom": "^18.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@types/node": "^20.
|
|
35
|
-
"@types/react": "^18.2.
|
|
36
|
-
"@types/react-dom": "^18.2.
|
|
37
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
38
|
-
"@typescript-eslint/parser": "^
|
|
39
|
-
"@vitejs/plugin-react": "^4.0.
|
|
34
|
+
"@types/node": "^20.4.5",
|
|
35
|
+
"@types/react": "^18.2.17",
|
|
36
|
+
"@types/react-dom": "^18.2.7",
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
38
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
39
|
+
"@vitejs/plugin-react": "^4.0.3",
|
|
40
40
|
"cross-env": "^7.0.3",
|
|
41
|
-
"eslint": "^8.
|
|
42
|
-
"eslint-plugin-perfectionist": "^1.
|
|
41
|
+
"eslint": "^8.45.0",
|
|
42
|
+
"eslint-plugin-perfectionist": "^1.5.1",
|
|
43
43
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
44
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
45
|
-
"prettier": "^
|
|
44
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
45
|
+
"prettier": "^3.0.0",
|
|
46
46
|
"rollup-plugin-visualizer": "^5.9.2",
|
|
47
|
-
"sass": "^1.
|
|
48
|
-
"typescript": "^5.1.
|
|
49
|
-
"vite": "^4.
|
|
50
|
-
"vite-plugin-dts": "^
|
|
51
|
-
"vite-plugin-mkcert": "^1.
|
|
47
|
+
"sass": "^1.64.1",
|
|
48
|
+
"typescript": "^5.1.6",
|
|
49
|
+
"vite": "^4.4.7",
|
|
50
|
+
"vite-plugin-dts": "^3.3.1",
|
|
51
|
+
"vite-plugin-mkcert": "^1.16.0",
|
|
52
52
|
"vite-plugin-svgr": "^3.2.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@pbe/react-yandex-maps": "^1.2.4",
|
|
56
|
-
"@react-google-maps/api": "^2.
|
|
56
|
+
"@react-google-maps/api": "^2.19.2",
|
|
57
57
|
"@types/classnames": "^2.3.1",
|
|
58
58
|
"@types/react-geocode": "^0.2.1",
|
|
59
59
|
"axios": "^1.4.0",
|
|
60
60
|
"classnames": "^2.3.2",
|
|
61
|
-
"i18next": "^23.
|
|
61
|
+
"i18next": "^23.3.0",
|
|
62
62
|
"on-change": "^4.0.2",
|
|
63
63
|
"react-geocode": "^0.2.3",
|
|
64
|
-
"react-
|
|
64
|
+
"react-google-autocomplete": "^2.7.3",
|
|
65
|
+
"react-i18next": "^13.0.2",
|
|
65
66
|
"react-range-slider-input": "^3.0.7",
|
|
66
|
-
"react-select": "^5.7.
|
|
67
|
+
"react-select": "^5.7.4",
|
|
67
68
|
"yandex-maps": "^0.0.1"
|
|
68
69
|
}
|
|
69
70
|
}
|