carbon-react 106.2.1 → 106.2.2

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,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Modal, { ModalProps } from "../modal/modal";
2
+ import { ModalProps } from "../modal/modal";
3
3
 
4
4
  export interface DialogFullScreenProps extends ModalProps {
5
5
  /** Prop to specify the aria-describedby property of the DialogFullscreen component */
@@ -18,7 +18,7 @@ export interface DialogFullScreenProps extends ModalProps {
18
18
  /** Child elements */
19
19
  children?: React.ReactNode;
20
20
  /** Reference to the scrollable content element */
21
- contentRef:
21
+ contentRef?:
22
22
  | React.MutableRefObject<HTMLElement>
23
23
  | (() => React.MutableRefObject<HTMLElement>);
24
24
  /** Disables auto focus functionality on child elements */
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Modal, { ModalProps } from "../modal/modal";
2
+ import { ModalProps } from "../modal/modal";
3
3
 
4
4
  export interface DialogFullScreenProps extends ModalProps {
5
5
  /** Prop to specify the aria-describedby property of the DialogFullscreen component */
@@ -18,7 +18,7 @@ export interface DialogFullScreenProps extends ModalProps {
18
18
  /** Child elements */
19
19
  children?: React.ReactNode;
20
20
  /** Reference to the scrollable content element */
21
- contentRef:
21
+ contentRef?:
22
22
  | React.MutableRefObject<HTMLElement>
23
23
  | (() => React.MutableRefObject<HTMLElement>);
24
24
  /** Disables auto focus functionality on child elements */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "106.2.1",
3
+ "version": "106.2.2",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {