@texturehq/edges 2.4.9 → 2.4.10
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/{colors-Aab3l13k.d.cts → colors-Bau6lD37.d.cts} +10 -1
- package/dist/{colors-MuMT1nB2.d.ts → colors-C6jv9HRH.d.ts} +10 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -5
- package/dist/index.d.ts +13 -5
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
|
@@ -1948,6 +1948,15 @@ interface StaticMapProps {
|
|
|
1948
1948
|
* Optional address or location label to show in expanded view
|
|
1949
1949
|
*/
|
|
1950
1950
|
expandedMapAddressLabel?: string;
|
|
1951
|
+
/**
|
|
1952
|
+
* When no Mapbox token is available, render the designed **schematic**
|
|
1953
|
+
* placeholder (grid + centered pin + soft radius circle) instead of the bare
|
|
1954
|
+
* "Map requires Mapbox token" message. Additive: default `false` keeps the
|
|
1955
|
+
* message so existing consumers are unchanged. A real token always shows the
|
|
1956
|
+
* real map regardless of this flag.
|
|
1957
|
+
* @default false
|
|
1958
|
+
*/
|
|
1959
|
+
schematicPlaceholder?: boolean;
|
|
1951
1960
|
}
|
|
1952
1961
|
/**
|
|
1953
1962
|
* StaticMap
|
|
@@ -1957,7 +1966,7 @@ interface StaticMapProps {
|
|
|
1957
1966
|
*
|
|
1958
1967
|
* Automatically adapts to light/dark mode using the global ColorModeProvider.
|
|
1959
1968
|
*/
|
|
1960
|
-
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1969
|
+
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, schematicPlaceholder, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1961
1970
|
|
|
1962
1971
|
/**
|
|
1963
1972
|
* Represents a geographic point with coordinates
|
|
@@ -1948,6 +1948,15 @@ interface StaticMapProps {
|
|
|
1948
1948
|
* Optional address or location label to show in expanded view
|
|
1949
1949
|
*/
|
|
1950
1950
|
expandedMapAddressLabel?: string;
|
|
1951
|
+
/**
|
|
1952
|
+
* When no Mapbox token is available, render the designed **schematic**
|
|
1953
|
+
* placeholder (grid + centered pin + soft radius circle) instead of the bare
|
|
1954
|
+
* "Map requires Mapbox token" message. Additive: default `false` keeps the
|
|
1955
|
+
* message so existing consumers are unchanged. A real token always shows the
|
|
1956
|
+
* real map regardless of this flag.
|
|
1957
|
+
* @default false
|
|
1958
|
+
*/
|
|
1959
|
+
schematicPlaceholder?: boolean;
|
|
1951
1960
|
}
|
|
1952
1961
|
/**
|
|
1953
1962
|
* StaticMap
|
|
@@ -1957,7 +1966,7 @@ interface StaticMapProps {
|
|
|
1957
1966
|
*
|
|
1958
1967
|
* Automatically adapts to light/dark mode using the global ColorModeProvider.
|
|
1959
1968
|
*/
|
|
1960
|
-
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1969
|
+
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, schematicPlaceholder, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1961
1970
|
|
|
1962
1971
|
/**
|
|
1963
1972
|
* Represents a geographic point with coordinates
|