@nnc-digital/nnc-design-system 1.0.0-alpha53 → 1.0.0-alpha55
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/build/index.js +11 -2
- package/build/index.js.map +1 -1
- package/build/index.mjs.js +11 -2
- package/build/index.mjs.js.map +1 -1
- package/package.json +1 -1
package/build/index.mjs.js
CHANGED
|
@@ -6668,7 +6668,8 @@ var Map$1 = function (_a) {
|
|
|
6668
6668
|
* A Google Maps marker to be placed inside a Map component
|
|
6669
6669
|
*/
|
|
6670
6670
|
var MapMarker = function (options) {
|
|
6671
|
-
var _a
|
|
6671
|
+
var _a;
|
|
6672
|
+
var _b = React.useState(), marker = _b[0], setMarker = _b[1];
|
|
6672
6673
|
var themeContext = useContext(ThemeContext);
|
|
6673
6674
|
var icon = {
|
|
6674
6675
|
path: 'M19.7,5.6c-0.1,0-0.5,0.1-0.9,0.1c-3.3,0.4-6.5,2-8.9,4.4c-2.6,2.6-4.2,5.9-4.6,9.6c-0.1,1,0,3.1,0.1,4.1c0.3,2.1,1.1,4.2,2.3,6.6c0.9,1.6,1.6,2.9,4.2,7c0.9,1.4,1.9,3.1,2.6,4.2c2.3,3.9,4.1,7.9,5.4,11.9c0.2,0.6,0.3,0.8,0.6,0.9c0.5,0.2,1.1,0.1,1.4-0.3c0.1-0.1,0.2-0.5,0.4-0.9c1.1-3.3,2.5-6.5,4.2-9.5c1.2-2.2,2-3.6,4.4-7.4c1.7-2.7,2.3-3.6,2.9-4.8c1.6-2.9,2.5-5.3,2.9-7.8c0.2-1,0.2-3.1,0.1-4.1c-0.2-1.5-0.5-3-1-4.2c-2.1-5.2-6.8-8.9-12.4-9.8C22.9,5.6,20.2,5.5,19.7,5.6z',
|
|
@@ -6677,8 +6678,16 @@ var MapMarker = function (options) {
|
|
|
6677
6678
|
anchor: new google.maps.Point(40, 60),
|
|
6678
6679
|
labelOrigin: new google.maps.Point(21, 25),
|
|
6679
6680
|
};
|
|
6681
|
+
// Handle label text safely
|
|
6682
|
+
var labelText = '';
|
|
6683
|
+
if (typeof options.label === 'string') {
|
|
6684
|
+
labelText = options.label;
|
|
6685
|
+
}
|
|
6686
|
+
else if (options.label && typeof options.label === 'object' && 'text' in options.label) {
|
|
6687
|
+
labelText = (_a = options.label.text) !== null && _a !== void 0 ? _a : '';
|
|
6688
|
+
}
|
|
6680
6689
|
var mergedOptions = __assign$2(__assign$2({}, options), { anchorPoint: new google.maps.Point(-5, -40), icon: icon, label: {
|
|
6681
|
-
text:
|
|
6690
|
+
text: labelText,
|
|
6682
6691
|
color: 'white',
|
|
6683
6692
|
}, position: options.position, title: options.title });
|
|
6684
6693
|
React.useEffect(function () {
|