@phila/phila-ui-map-core 0.0.3-beta.10 → 0.0.3-beta.12
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/{CyclomediaCameraIcon-BFg6ajLv.cjs → CyclomediaCameraIcon-BaGpImod.cjs} +1 -1
- package/dist/{CyclomediaCameraIcon-Dih94jl_.js → CyclomediaCameraIcon-bUnrppoR.js} +1 -1
- package/dist/{CyclomediaRecordingsLayer-CPv-EBVD.cjs → CyclomediaRecordingsLayer-CClSYxan.cjs} +1 -1
- package/dist/CyclomediaRecordingsLayer-D4FXbXr7.js +4 -0
- package/dist/{CyclomediaViewcone-DMbWu8tH.js → CyclomediaViewcone-BMzPJMaU.js} +1 -1
- package/dist/{CyclomediaViewcone-DYNIqGD4.cjs → CyclomediaViewcone-DcSbViEK.cjs} +1 -1
- package/dist/{PictometryPanel-CU4EOAl7.js → PictometryPanel-BzJN86hX.js} +114 -89
- package/dist/{PictometryPanel-B1PTlx6n.cjs → PictometryPanel-Dui9zXLp.cjs} +4 -4
- package/dist/assets/phila-ui-map-core.css +1 -1
- package/dist/components.d.ts +35 -12
- package/dist/components.js +1 -1
- package/dist/components.mjs +1 -1
- package/dist/index.d.ts +35 -12
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/CyclomediaRecordingsLayer-xsfb88j0.js +0 -4
package/dist/index.d.ts
CHANGED
|
@@ -1807,34 +1807,57 @@ declare interface MapFloatingPanelProps extends BaseProps {
|
|
|
1807
1807
|
|
|
1808
1808
|
export declare const MapIconTextPin: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<MapIconTextPinProps>, {
|
|
1809
1809
|
text: undefined;
|
|
1810
|
-
|
|
1811
|
-
|
|
1810
|
+
colorTheme: string;
|
|
1811
|
+
size: string;
|
|
1812
|
+
selected: boolean;
|
|
1812
1813
|
ariaLabel: undefined;
|
|
1813
|
-
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1814
|
+
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1815
|
+
mouseenter: (event: MouseEvent) => void;
|
|
1816
|
+
mouseleave: (event: MouseEvent) => void;
|
|
1817
|
+
click: (event: MouseEvent) => void;
|
|
1818
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<MapIconTextPinProps>, {
|
|
1814
1819
|
text: undefined;
|
|
1815
|
-
|
|
1816
|
-
|
|
1820
|
+
colorTheme: string;
|
|
1821
|
+
size: string;
|
|
1822
|
+
selected: boolean;
|
|
1817
1823
|
ariaLabel: undefined;
|
|
1818
|
-
}>>> & Readonly<{
|
|
1824
|
+
}>>> & Readonly<{
|
|
1825
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
1826
|
+
onMouseenter?: ((event: MouseEvent) => any) | undefined;
|
|
1827
|
+
onMouseleave?: ((event: MouseEvent) => any) | undefined;
|
|
1828
|
+
}>, {
|
|
1819
1829
|
ariaLabel: string;
|
|
1820
1830
|
text: string;
|
|
1821
|
-
|
|
1822
|
-
|
|
1831
|
+
size: MapIconTextPinSize;
|
|
1832
|
+
colorTheme: MapIconTextPinColorTheme;
|
|
1833
|
+
selected: boolean;
|
|
1823
1834
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1824
1835
|
|
|
1836
|
+
export declare type MapIconTextPinColorTheme = "dark-primary" | "light-primary" | "dark-purple" | "light-purple" | "dark-tertiary" | "light-tertiary" | "dark-error" | "light-error" | "dark-alert" | "light-alert";
|
|
1837
|
+
|
|
1838
|
+
export declare interface MapIconTextPinEmits {
|
|
1839
|
+
(e: "mouseenter", event: MouseEvent): void;
|
|
1840
|
+
(e: "mouseleave", event: MouseEvent): void;
|
|
1841
|
+
(e: "click", event: MouseEvent): void;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1825
1844
|
export declare interface MapIconTextPinProps extends BaseProps {
|
|
1826
1845
|
/** Font Awesome icon class, e.g. "fa-solid fa-gauge-circle-bolt" */
|
|
1827
1846
|
icon: string;
|
|
1828
1847
|
/** Label text displayed next to the icon. Omit for icon-only mode. */
|
|
1829
1848
|
text?: string;
|
|
1830
|
-
/**
|
|
1831
|
-
|
|
1832
|
-
/**
|
|
1833
|
-
|
|
1849
|
+
/** Color theme (default: "dark-primary") */
|
|
1850
|
+
colorTheme?: MapIconTextPinColorTheme;
|
|
1851
|
+
/** Pin size (default: "large") */
|
|
1852
|
+
size?: MapIconTextPinSize;
|
|
1853
|
+
/** Whether the pin is in selected state */
|
|
1854
|
+
selected?: boolean;
|
|
1834
1855
|
/** Accessible label for the pin. Sets role="img" and aria-label when provided. */
|
|
1835
1856
|
ariaLabel?: string;
|
|
1836
1857
|
}
|
|
1837
1858
|
|
|
1859
|
+
export declare type MapIconTextPinSize = "large" | "small";
|
|
1860
|
+
|
|
1838
1861
|
export declare const MapLoadingOverlay: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<{
|
|
1839
1862
|
visible: boolean;
|
|
1840
1863
|
text?: string;
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./PictometryPanel-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./PictometryPanel-Dui9zXLp.cjs"),o=require("./useMapControl-DRyRMqub.cjs"),a=require("./index-CNj5iS7C.cjs");exports.BasemapDropdown=e._sfc_main$13;exports.BasemapToggle=e._sfc_main$12;exports.CircleLayer=e._sfc_main$4;exports.CyclomediaButton=e.CyclomediaButton;exports.CyclomediaPanel=e.CyclomediaPanel;exports.CyclomediaRecordingsLayer=e._sfc_main$15;exports.DrawTool=e._sfc_main$9;exports.FillLayer=e._sfc_main$2;exports.GeolocationButton=e._sfc_main$11;exports.LineLayer=e._sfc_main$3;exports.Map=e.Map;exports.MapButton=e._sfc_main$10;exports.MapFloatingPanel=e._sfc_main$8;exports.MapIconTextPin=e.MapIconTextPin;exports.MapLoadingOverlay=e.MapLoadingOverlay;exports.MapMarker=e._sfc_main;exports.MapNavigationControl=e._sfc_main$7;exports.MapPopup=e._sfc_main$1;exports.MapSearchControl=e._sfc_main$14;exports.PictometryButton=e.PictometryButton;exports.PictometryLabelsControl=e._sfc_main$17;exports.PictometryLayerControl=e.PictometryLayerControl;exports.PictometryPanel=e.PictometryPanel;exports.PictometryParcelsControl=e._sfc_main$16;exports.RasterLayer=e._sfc_main$6;exports.SymbolLayer=e._sfc_main$5;exports.clearTokenCache=e.clearTokenCache;exports.defaultBasemapSource=e.defaultBasemapSource;exports.defaultImageryOptions=e.defaultImageryOptions;exports.defaultLabelsSource=e.defaultLabelsSource;exports.getValidToken=e.getValidToken;exports.imageryLabelsSource=e.imageryLabelsSource;exports.imageryLabelsUrl=e.imageryLabelsUrl;exports.imageryParcelOutlinesSource=e.imageryParcelOutlinesSource;exports.imagerySources=e.imagerySources;exports.isPictometryLoaded=e.isPictometryLoaded;exports.loadPictometryScript=e.loadPictometryScript;exports.validateCredentials=e.validateCredentials;exports.useMapControl=o.useMapControl;exports.fetchParcelGeometry=a.fetchParcelGeometry;exports.geocodeAddress=a.geocodeAddress;exports.queryParcelAtPoint=a.queryParcelAtPoint;
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { o, n as s, e as r, C as t, q as l, r as i, k as c, c as n, m as y, d as m, M as p, l as d, j as u, a as P, h as g, _ as L, i as C, b as M, p as f, P as B, v as S, t as b, s as x, u as T, g as h, f as k, A as v, B as q, E as w, D as A, y as D, G as F, I as G, H as I, F as O, x as R, w as j, z } from "./PictometryPanel-
|
|
1
|
+
import { o, n as s, e as r, C as t, q as l, r as i, k as c, c as n, m as y, d as m, M as p, l as d, j as u, a as P, h as g, _ as L, i as C, b as M, p as f, P as B, v as S, t as b, s as x, u as T, g as h, f as k, A as v, B as q, E as w, D as A, y as D, G as F, I as G, H as I, F as O, x as R, w as j, z } from "./PictometryPanel-BzJN86hX.js";
|
|
2
2
|
import { u as H } from "./useMapControl-JxftoDwE.js";
|
|
3
3
|
import { f as U, g as V, q as _ } from "./index-BXLyy2C_.js";
|
|
4
4
|
export {
|
package/package.json
CHANGED