react-naver-maps-kit 1.0.0 → 1.0.1
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 +10 -5
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/react/components/NaverMap.d.ts.map +1 -1
- package/package.json +1 -7
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
[](LICENSE)
|
|
4
4
|
[](https://www.npmjs.com/package/react-naver-maps-kit)
|
|
5
5
|
|
|
6
|
+
🌐 **문서**: [https://react-naver-maps-kit.pages.dev](https://react-naver-maps-kit.pages.dev)
|
|
7
|
+
|
|
6
8
|
네이버 지도 SDK를 React에서 안전하고 직관적으로 사용할 수 있는 모던 툴킷입니다.
|
|
7
9
|
|
|
8
10
|
## 특징
|
|
@@ -319,11 +321,14 @@ function MapWithRef() {
|
|
|
319
321
|
|
|
320
322
|
## 문서
|
|
321
323
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
- [
|
|
325
|
-
- [
|
|
326
|
-
- [
|
|
324
|
+
📖 **전체 문서**: [https://react-naver-maps-kit.pages.dev](https://react-naver-maps-kit.pages.dev)
|
|
325
|
+
|
|
326
|
+
- [시작하기](https://react-naver-maps-kit.pages.dev/guide/getting-started)
|
|
327
|
+
- [Provider & Hook](https://react-naver-maps-kit.pages.dev/guide/provider-map-hook)
|
|
328
|
+
- [지도 통합](https://react-naver-maps-kit.pages.dev/guide/integration-map)
|
|
329
|
+
- [오버레이 통합](https://react-naver-maps-kit.pages.dev/guide/integration-overlay)
|
|
330
|
+
- [API Reference](https://react-naver-maps-kit.pages.dev/api/provider)
|
|
331
|
+
- [문제 해결](https://react-naver-maps-kit.pages.dev/troubleshooting/common-issues)
|
|
327
332
|
|
|
328
333
|
## 라이선스
|
|
329
334
|
|
package/dist/index.cjs
CHANGED
|
@@ -630,7 +630,10 @@ function getDivProps(props) {
|
|
|
630
630
|
function areNaverMapPropsEqual(previousProps, nextProps) {
|
|
631
631
|
const keys = new Set([...Object.keys(previousProps), ...Object.keys(nextProps)]);
|
|
632
632
|
for (const key of keys) {
|
|
633
|
-
if (key === "children")
|
|
633
|
+
if (key === "children") {
|
|
634
|
+
if (previousProps.children !== nextProps.children) return false;
|
|
635
|
+
continue;
|
|
636
|
+
}
|
|
634
637
|
const previousValue = previousProps[key];
|
|
635
638
|
const nextValue = nextProps[key];
|
|
636
639
|
if (typeof previousValue === "function" && typeof nextValue === "function") continue;
|