@nnc-digital/nnc-design-system 1.0.0-alpha56 → 1.0.0-alpha58

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 CHANGED
@@ -6681,8 +6681,7 @@ var Map$1 = function (_a) {
6681
6681
  * A Google Maps marker to be placed inside a Map component
6682
6682
  */
6683
6683
  var MapMarker = function (options) {
6684
- var _a;
6685
- var _b = React__default.default.useState(), marker = _b[0], setMarker = _b[1];
6684
+ var _a = React__default.default.useState(), marker = _a[0], setMarker = _a[1];
6686
6685
  var themeContext = React.useContext(styled.ThemeContext);
6687
6686
  var icon = {
6688
6687
  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',
@@ -6691,24 +6690,14 @@ var MapMarker = function (options) {
6691
6690
  anchor: new google.maps.Point(40, 60),
6692
6691
  labelOrigin: new google.maps.Point(21, 25),
6693
6692
  };
6694
- // Handle label configuration based on type
6695
- var labelConfig;
6696
- if (typeof options.label === 'string') {
6697
- // If label is a string, use it directly
6698
- labelConfig = options.label;
6699
- }
6700
- else if (options.label && typeof options.label === 'object') {
6701
- // If label is an object, use it but ensure text property exists
6702
- labelConfig = __assign$2(__assign$2({}, options.label), { text: (_a = options.label.text) !== null && _a !== void 0 ? _a : '' });
6703
- }
6704
- else {
6705
- // If label is undefined or null, create a basic label object
6706
- labelConfig = {
6707
- text: '',
6708
- color: 'white'
6709
- };
6693
+ var mergedOptions = __assign$2(__assign$2({}, options), { anchorPoint: new google.maps.Point(-5, -40), icon: icon, position: options.position, title: options.title, label: options.label ?
6694
+ (typeof options.label === 'string' ?
6695
+ { text: options.label, color: '#FFFFFF' } : __assign$2(__assign$2({}, options.label), { color: '#FFFFFF' })) : undefined });
6696
+ for (var key in options) {
6697
+ if (key !== 'label' && Object.prototype.hasOwnProperty.call(options, key)) {
6698
+ mergedOptions[key] = options[key];
6699
+ }
6710
6700
  }
6711
- var mergedOptions = __assign$2(__assign$2({}, options), { anchorPoint: new google.maps.Point(-5, -40), icon: icon, label: labelConfig, position: options.position, title: options.title });
6712
6701
  React__default.default.useEffect(function () {
6713
6702
  if (!marker) {
6714
6703
  setMarker(new google.maps.Marker());
@@ -31390,7 +31379,7 @@ var DirectoryServiceList = function (_a) {
31390
31379
  React__default.default.createElement(Row$1, null,
31391
31380
  React__default.default.createElement(Column, { small: "full", medium: "one-half", large: "one-third" },
31392
31381
  React__default.default.createElement(Label$1, { htmlFor: "directorySearch" }, "What are you looking for?"),
31393
- React__default.default.createElement(HintText, { text: "Enter a search word or phrase" }),
31382
+ React__default.default.createElement(HintText, { text: "Enter the name of a specific organisation" }),
31394
31383
  React__default.default.createElement(Input, { name: "directorySearch", type: "text", defaultValue: searchTerm, id: "directorySearch", onChange: function (e) {
31395
31384
  setSearchTerm(e.target.value);
31396
31385
  } })),
@@ -33295,7 +33284,7 @@ var DirectoryDocumentList = function (_a) {
33295
33284
  React__default.default.createElement(Row$1, null,
33296
33285
  React__default.default.createElement(Column, { small: "full", medium: "one-half", large: "one-third" },
33297
33286
  React__default.default.createElement(Label, { htmlFor: "directorySearch" }, "What are you looking for?"),
33298
- React__default.default.createElement(HintText, { text: "Enter a search word or phrase" }),
33287
+ React__default.default.createElement(HintText, { text: "Enter the name of a specific organisation" }),
33299
33288
  React__default.default.createElement(Input, { name: "directorySearch", type: "text", defaultValue: searchTerm, id: "directorySearch", onChange: function (e) {
33300
33289
  setSearchTerm(e.target.value);
33301
33290
  } })),