umwd-components 0.1.189 → 0.1.191

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.
@@ -166,12 +166,14 @@ function Footer(_ref) {
166
166
  }
167
167
  }, company_socials.map((company_social, index) => {
168
168
  const Icon = getIcon.default(company_social.icon);
169
- return /*#__PURE__*/React.createElement(material.IconButton, {
169
+ return /*#__PURE__*/React.createElement(MuiLink.MuiLink, {
170
+ href: company_social.url,
171
+ target: "_blank"
172
+ }, /*#__PURE__*/React.createElement(material.IconButton, {
170
173
  key: index,
171
174
  color: "inherit",
172
- href: company_social.url,
173
175
  size: "large"
174
- }, Icon !== null && /*#__PURE__*/React.createElement(Icon, null));
176
+ }, Icon !== null && /*#__PURE__*/React.createElement(Icon, null)));
175
177
  })))), /*#__PURE__*/React.createElement(material.Grid, {
176
178
  item: true,
177
179
  xs: 12
@@ -217,7 +219,8 @@ function Footer(_ref) {
217
219
  pb: "50px"
218
220
  }
219
221
  }, referal ? referal : /*#__PURE__*/React.createElement(MuiLink.MuiLink, {
220
- href: "https://atelierpaulus.nl/"
222
+ href: "https://atelierpaulus.nl/",
223
+ target: "_blank"
221
224
  }, /*#__PURE__*/React.createElement(material.Typography, {
222
225
  color: "secondary.contrastText",
223
226
  sx: {
@@ -162,12 +162,14 @@ function Footer(_ref) {
162
162
  }
163
163
  }, company_socials.map((company_social, index) => {
164
164
  const Icon = getIcon(company_social.icon);
165
- return /*#__PURE__*/React__default.createElement(IconButton, {
165
+ return /*#__PURE__*/React__default.createElement(MuiLink, {
166
+ href: company_social.url,
167
+ target: "_blank"
168
+ }, /*#__PURE__*/React__default.createElement(IconButton, {
166
169
  key: index,
167
170
  color: "inherit",
168
- href: company_social.url,
169
171
  size: "large"
170
- }, Icon !== null && /*#__PURE__*/React__default.createElement(Icon, null));
172
+ }, Icon !== null && /*#__PURE__*/React__default.createElement(Icon, null)));
171
173
  })))), /*#__PURE__*/React__default.createElement(Grid, {
172
174
  item: true,
173
175
  xs: 12
@@ -213,7 +215,8 @@ function Footer(_ref) {
213
215
  pb: "50px"
214
216
  }
215
217
  }, referal ? referal : /*#__PURE__*/React__default.createElement(MuiLink, {
216
- href: "https://atelierpaulus.nl/"
218
+ href: "https://atelierpaulus.nl/",
219
+ target: "_blank"
217
220
  }, /*#__PURE__*/React__default.createElement(Typography, {
218
221
  color: "secondary.contrastText",
219
222
  sx: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.189",
3
+ "version": "0.1.191",
4
4
  "description": "UMWD Component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -171,14 +171,11 @@ function Footer({
171
171
  {company_socials.map((company_social, index) => {
172
172
  const Icon = getIcon(company_social.icon);
173
173
  return (
174
- <IconButton
175
- key={index}
176
- color="inherit"
177
- href={company_social.url}
178
- size="large"
179
- >
180
- {Icon !== null && <Icon />}
181
- </IconButton>
174
+ <MuiLink href={company_social.url} target="_blank">
175
+ <IconButton key={index} color="inherit" size="large">
176
+ {Icon !== null && <Icon />}
177
+ </IconButton>
178
+ </MuiLink>
182
179
  );
183
180
  })}
184
181
  </Stack>
@@ -249,7 +246,7 @@ function Footer({
249
246
  {referal ? (
250
247
  referal
251
248
  ) : (
252
- <MuiLink href="https://atelierpaulus.nl/">
249
+ <MuiLink href="https://atelierpaulus.nl/" target="_blank">
253
250
  <Typography
254
251
  color="secondary.contrastText"
255
252
  sx={{