@commonsku/styles 1.17.48 → 1.17.50

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/index.d.ts CHANGED
@@ -2354,6 +2354,7 @@ type NotificationExtraContentProps = {
2354
2354
  learnMore?: boolean;
2355
2355
  href?: string;
2356
2356
  linkText?: string;
2357
+ target?: string;
2357
2358
  };
2358
2359
  type NotificationIconProps = {
2359
2360
  alertType?: "neutral" | "success" | "error" | "warn";
@@ -2361,7 +2362,7 @@ type NotificationIconProps = {
2361
2362
  type AlertNotificationProps = React__default.PropsWithChildren<{
2362
2363
  style?: React__default.CSSProperties;
2363
2364
  }> & NotificationIconProps & NotificationExtraContentProps & SharedStyleTypes & SizerTypes;
2364
- declare const AlertNotification: ({ href, linkText, children, alertType, learnMore, style, ...props }: AlertNotificationProps) => React__default.JSX.Element;
2365
+ declare const AlertNotification: ({ href, linkText, children, alertType, learnMore, style, target, ...props }: AlertNotificationProps) => React__default.JSX.Element;
2365
2366
  //# sourceMappingURL=AlertNotification.d.ts.map
2366
2367
 
2367
2368
  type IconFuncProps = {
@@ -2378,8 +2379,9 @@ type LinkWithIconProps = React__default.PropsWithChildren<{
2378
2379
  [key: string]: any;
2379
2380
  };
2380
2381
  style?: React__default.CSSProperties;
2382
+ target?: string;
2381
2383
  } & SharedStyleTypes & SizerTypes>;
2382
- declare function LinkWithIcon({ Icon, href, children, color, hoverColor, flexShrink, iconProps, style, ...props }: LinkWithIconProps): React__default.JSX.Element;
2384
+ declare function LinkWithIcon({ Icon, href, children, color, hoverColor, flexShrink, iconProps, style, target, ...props }: LinkWithIconProps): React__default.JSX.Element;
2383
2385
 
2384
2386
  type LocaleOptions = {
2385
2387
  maximumFractionDigits?: number;