@xylabs/sdk-react 2.11.7 → 2.11.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.
@@ -1,4 +1,4 @@
1
1
  import { ReactNode } from 'react';
2
2
  export declare type WithChildren<T = unknown> = Omit<T, 'children'> & {
3
- children?: ReactNode;
3
+ children?: ReactNode | ReactNode[];
4
4
  };
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import { BoxProps } from '@mui/material';
3
3
  import { BusyProps } from '../../BusyProps';
4
- export interface BusyBoxProps extends BusyProps, BoxProps {
4
+ import { WithChildren } from '../../WithChildren';
5
+ export interface BusyBoxProps extends BusyProps, WithChildren<BoxProps> {
5
6
  paper?: boolean;
6
7
  background?: boolean;
7
8
  }
@@ -2223,7 +2223,7 @@ const ExperimentsDebugger = (_a) => {
2223
2223
  const LinkEx = (_a) => {
2224
2224
  var { to } = _a, props = __rest(_a, ["to"]);
2225
2225
  if (to) {
2226
- return jsx(Link, Object.assign({ component: Link$1, to: to }, props));
2226
+ return jsx(Link, Object.assign({ rel: "noopener noreferrer", component: Link$1, to: to }, props));
2227
2227
  }
2228
2228
  else {
2229
2229
  return jsx(Link, Object.assign({}, props));