@nimbus-ds/components 5.45.0 → 5.46.0

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.
@@ -22,10 +22,10 @@ export interface PolymorphicForwardRefComponent<IntrinsicElementString, OwnProps
22
22
  * so that events are typed when using JSX.IntrinsicElements.
23
23
  */
24
24
  <As = IntrinsicElementString>(props: As extends "" ? {
25
- as: keyof JSX.IntrinsicElements;
25
+ as: keyof React.JSX.IntrinsicElements;
26
26
  } : As extends React.ComponentType<infer P> ? Merge<P, OwnProps & {
27
27
  as: As;
28
- }> : As extends keyof JSX.IntrinsicElements ? Merge<JSX.IntrinsicElements[As], OwnProps & {
28
+ }> : As extends keyof React.JSX.IntrinsicElements ? Merge<React.JSX.IntrinsicElements[As], OwnProps & {
29
29
  as: As;
30
30
  }> : never): React.ReactElement | null;
31
31
  }
@@ -36,7 +36,7 @@ declare const link: {
36
36
  fontSize?: "base" | "caption" | "highlight" | undefined;
37
37
  lineHeight?: "base" | "caption" | "highlight" | undefined;
38
38
  }) => string) & {
39
- properties: Set<"fontSize" | "textDecoration" | "lineHeight">;
39
+ properties: Set<"fontSize" | "lineHeight" | "textDecoration">;
40
40
  };
41
41
  properties: {
42
42
  textDecoration: TextDecoration[];