carbon-react 110.2.3 → 110.2.4

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.
@@ -4,5 +4,8 @@ export interface DdProps extends SpaceProps {
4
4
  /** Prop for what will render in the `<Dd></Dd>` tags */
5
5
  children: React.ReactNode;
6
6
  }
7
- declare const Dd: ({ children, ...rest }: DdProps) => JSX.Element;
7
+ declare const Dd: {
8
+ ({ children, ...rest }: DdProps): JSX.Element;
9
+ displayName: string;
10
+ };
8
11
  export default Dd;
@@ -327,4 +327,5 @@ Dd.propTypes = {
327
327
  "valueOf": PropTypes.func.isRequired
328
328
  }), PropTypes.string])
329
329
  };
330
+ Dd.displayName = "Dd";
330
331
  export default Dd;
@@ -5,5 +5,8 @@ export interface DlProps extends SpaceProps, StyledDlProps, StyledDtDivProps, St
5
5
  /** prop to render children. */
6
6
  children: React.ReactNode;
7
7
  }
8
- declare const Dl: ({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps) => JSX.Element;
8
+ declare const Dl: {
9
+ ({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps): JSX.Element;
10
+ displayName: string;
11
+ };
9
12
  export default Dl;
@@ -385,4 +385,5 @@ Dl.propTypes = {
385
385
  }), PropTypes.string]),
386
386
  "w": PropTypes.number
387
387
  };
388
+ Dl.displayName = "Dl";
388
389
  export default Dl;
@@ -4,5 +4,8 @@ export interface DtProps extends SpaceProps {
4
4
  /** Prop for what will render in the `<Dd></Dd>` tags */
5
5
  children: React.ReactNode;
6
6
  }
7
- declare const Dt: ({ children, ...rest }: DtProps) => JSX.Element;
7
+ declare const Dt: {
8
+ ({ children, ...rest }: DtProps): JSX.Element;
9
+ displayName: string;
10
+ };
8
11
  export default Dt;
@@ -334,4 +334,5 @@ Dt.propTypes = {
334
334
  "valueOf": PropTypes.func.isRequired
335
335
  }), PropTypes.string])
336
336
  };
337
+ Dt.displayName = "Dt";
337
338
  export default Dt;
@@ -4,5 +4,8 @@ export interface DdProps extends SpaceProps {
4
4
  /** Prop for what will render in the `<Dd></Dd>` tags */
5
5
  children: React.ReactNode;
6
6
  }
7
- declare const Dd: ({ children, ...rest }: DdProps) => JSX.Element;
7
+ declare const Dd: {
8
+ ({ children, ...rest }: DdProps): JSX.Element;
9
+ displayName: string;
10
+ };
8
11
  export default Dd;
@@ -338,5 +338,6 @@ Dd.propTypes = {
338
338
  "valueOf": _propTypes.default.func.isRequired
339
339
  }), _propTypes.default.string])
340
340
  };
341
+ Dd.displayName = "Dd";
341
342
  var _default = Dd;
342
343
  exports.default = _default;
@@ -5,5 +5,8 @@ export interface DlProps extends SpaceProps, StyledDlProps, StyledDtDivProps, St
5
5
  /** prop to render children. */
6
6
  children: React.ReactNode;
7
7
  }
8
- declare const Dl: ({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps) => JSX.Element;
8
+ declare const Dl: {
9
+ ({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps): JSX.Element;
10
+ displayName: string;
11
+ };
9
12
  export default Dl;
@@ -404,5 +404,6 @@ Dl.propTypes = {
404
404
  }), _propTypes.default.string]),
405
405
  "w": _propTypes.default.number
406
406
  };
407
+ Dl.displayName = "Dl";
407
408
  var _default = Dl;
408
409
  exports.default = _default;
@@ -4,5 +4,8 @@ export interface DtProps extends SpaceProps {
4
4
  /** Prop for what will render in the `<Dd></Dd>` tags */
5
5
  children: React.ReactNode;
6
6
  }
7
- declare const Dt: ({ children, ...rest }: DtProps) => JSX.Element;
7
+ declare const Dt: {
8
+ ({ children, ...rest }: DtProps): JSX.Element;
9
+ displayName: string;
10
+ };
8
11
  export default Dt;
@@ -350,5 +350,6 @@ Dt.propTypes = {
350
350
  "valueOf": _propTypes.default.func.isRequired
351
351
  }), _propTypes.default.string])
352
352
  };
353
+ Dt.displayName = "Dt";
353
354
  var _default = Dt;
354
355
  exports.default = _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-react",
3
- "version": "110.2.3",
3
+ "version": "110.2.4",
4
4
  "description": "A library of reusable React components for easily building user interfaces.",
5
5
  "engineStrict": true,
6
6
  "engines": {