@local-logic/maps 0.1.3 → 0.1.5
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/index-BO34uKgS.js +16 -0
- package/dist/{index-Bm2KdhhT.js → index-BP_m_WyV.js} +1 -1
- package/dist/{index-J8lmJ6Xj.js → index-Bbgg2AcG.js} +205 -194
- package/dist/{index-VFglx6lb.js → index-Bp7Yr6DA.js} +2 -2
- package/dist/index-Bx7faHOu.js +41 -0
- package/dist/index-C0inY_TA.js +41 -0
- package/dist/index-COB6j_V1.js +25 -0
- package/dist/{index-NMqp09ek.js → index-Caot5InX.js} +1 -1
- package/dist/index-Cz1bOBd_.js +44 -0
- package/dist/{index-zqYpD_YN.js → index-D49Xw0s2.js} +2 -2
- package/dist/index-D4t3jFAj.js +35 -0
- package/dist/{index-Deqck8KU.js → index-DBgzG__6.js} +12 -11
- package/dist/index-DEFuc-6u.js +78 -0
- package/dist/{index-CzqD82Cl.js → index-DQ1iIFTk.js} +2 -2
- package/dist/{index-CFioISlP.js → index-DsyoZEsZ.js} +11 -10
- package/dist/{index-CyFpPXRS.js → index-aSBXZLeP.js} +12 -11
- package/dist/{index-B1dI6iqp.js → index-wmShBScF.js} +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.umd.js +62 -7
- package/dist/src/components/Map/Root/BaseMap/Testing/index.d.ts +4 -0
- package/dist/src/components/Map/Root/BaseMap/Testing/index.d.ts.map +1 -0
- package/dist/src/components/Map/Root/BaseMap/Testing/styles.d.ts +4 -0
- package/dist/src/components/Map/Root/BaseMap/Testing/styles.d.ts.map +1 -0
- package/dist/src/components/Map/Root/BaseMap/index.d.ts.map +1 -1
- package/dist/src/components/Map/Root/CenterPin/Testing/index.d.ts +4 -0
- package/dist/src/components/Map/Root/CenterPin/Testing/index.d.ts.map +1 -0
- package/dist/src/components/Map/Root/CenterPin/Testing/styles.d.ts +2 -0
- package/dist/src/components/Map/Root/CenterPin/Testing/styles.d.ts.map +1 -0
- package/dist/src/components/Map/Root/CenterPin/index.d.ts.map +1 -1
- package/dist/src/components/Map/Root/Layers/Testing/index.d.ts +4 -0
- package/dist/src/components/Map/Root/Layers/Testing/index.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Layers/Testing/styles.d.ts +9 -0
- package/dist/src/components/Map/Root/Layers/Testing/styles.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Layers/index.d.ts.map +1 -1
- package/dist/src/components/Map/Root/Markers/Testing/index.d.ts +4 -0
- package/dist/src/components/Map/Root/Markers/Testing/index.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Markers/Testing/styles.d.ts +7 -0
- package/dist/src/components/Map/Root/Markers/Testing/styles.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Markers/index.d.ts.map +1 -1
- package/dist/src/components/Map/Root/Popup/Testing/index.d.ts +4 -0
- package/dist/src/components/Map/Root/Popup/Testing/index.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Popup/Testing/styles.d.ts +5 -0
- package/dist/src/components/Map/Root/Popup/Testing/styles.d.ts.map +1 -0
- package/dist/src/components/Map/Root/Popup/index.d.ts.map +1 -1
- package/dist/src/components/Map/Root/constants.d.ts +1 -0
- package/dist/src/components/Map/Root/constants.d.ts.map +1 -1
- package/dist/src/components/Map/Root/types.d.ts +1 -1
- package/dist/src/components/Map/Root/types.d.ts.map +1 -1
- package/dist/src/components/Map/index.stories.d.ts +3 -0
- package/dist/src/components/Map/index.stories.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/{styles-J872R1eq.js → styles-C0jAgOTJ.js} +1 -1
- package/package.json +2 -1
- package/dist/index-HWDZde-a.js +0 -75
- package/dist/index-qqbvBkdn.js +0 -7
- package/dist/src/components/Map/Root/BaseMap/Empty/index.d.ts +0 -3
- package/dist/src/components/Map/Root/BaseMap/Empty/index.d.ts.map +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { HouseLineIcon as i } from "@phosphor-icons/react";
|
|
3
|
+
const o = `
|
|
4
|
+
p-2 border-b border-primary-200
|
|
5
|
+
bg-primary-100 text-white
|
|
6
|
+
flex items-center gap-2 text-xs font-mono
|
|
7
|
+
`;
|
|
8
|
+
function m({ marker: r, className: t }) {
|
|
9
|
+
return /* @__PURE__ */ n("div", { className: `${o} ${t || ""}`, children: [
|
|
10
|
+
/* @__PURE__ */ e(i, { size: 20, weight: "fill" }),
|
|
11
|
+
/* @__PURE__ */ e("span", { children: r.name || "Center" })
|
|
12
|
+
] });
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
m as default
|
|
16
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as v, jsx as C } from "react/jsx-runtime";
|
|
2
2
|
import { useState as x, useRef as Z, useCallback as h, useEffect as d } from "react";
|
|
3
3
|
import { M as B, N as L, u as T } from "./scale-control-Dsir9fWY.js";
|
|
4
|
-
import { u as M, D as p, a as z, m as A } from "./index-
|
|
4
|
+
import { u as M, D as p, a as z, m as A } from "./index-Bbgg2AcG.js";
|
|
5
5
|
import { t as E } from "./index-DscDx7HE.js";
|
|
6
6
|
const P = {
|
|
7
7
|
en: {
|