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.
- package/esm/components/definition-list/dd.component.d.ts +4 -1
- package/esm/components/definition-list/dd.component.js +1 -0
- package/esm/components/definition-list/dl.component.d.ts +4 -1
- package/esm/components/definition-list/dl.component.js +1 -0
- package/esm/components/definition-list/dt.component.d.ts +4 -1
- package/esm/components/definition-list/dt.component.js +1 -0
- package/lib/components/definition-list/dd.component.d.ts +4 -1
- package/lib/components/definition-list/dd.component.js +1 -0
- package/lib/components/definition-list/dl.component.d.ts +4 -1
- package/lib/components/definition-list/dl.component.js +1 -0
- package/lib/components/definition-list/dt.component.d.ts +4 -1
- package/lib/components/definition-list/dt.component.js +1 -0
- package/package.json +1 -1
|
@@ -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:
|
|
7
|
+
declare const Dd: {
|
|
8
|
+
({ children, ...rest }: DdProps): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
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:
|
|
8
|
+
declare const Dl: {
|
|
9
|
+
({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps): JSX.Element;
|
|
10
|
+
displayName: string;
|
|
11
|
+
};
|
|
9
12
|
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:
|
|
7
|
+
declare const Dt: {
|
|
8
|
+
({ children, ...rest }: DtProps): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
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:
|
|
7
|
+
declare const Dd: {
|
|
8
|
+
({ children, ...rest }: DdProps): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
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:
|
|
8
|
+
declare const Dl: {
|
|
9
|
+
({ children, w, dtTextAlign, ddTextAlign, asSingleColumn, ...rest }: DlProps): JSX.Element;
|
|
10
|
+
displayName: string;
|
|
11
|
+
};
|
|
9
12
|
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:
|
|
7
|
+
declare const Dt: {
|
|
8
|
+
({ children, ...rest }: DtProps): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
export default Dt;
|