1 | import * as React from 'react';
|
2 | export interface BreakpointModifiers {
|
3 | default?: string;
|
4 | md?: string;
|
5 | lg?: string;
|
6 | xl?: string;
|
7 | '2xl'?: string;
|
8 | }
|
9 | export interface DescriptionListProps extends Omit<React.HTMLProps<HTMLDListElement>, 'type'> {
|
10 |
|
11 | children?: React.ReactNode;
|
12 |
|
13 | className?: string;
|
14 |
|
15 | isAutoFit?: boolean;
|
16 |
|
17 | isHorizontal?: boolean;
|
18 |
|
19 | isAutoColumnWidths?: boolean;
|
20 |
|
21 | isInlineGrid?: boolean;
|
22 |
|
23 | isCompact?: boolean;
|
24 |
|
25 | isFluid?: boolean;
|
26 |
|
27 | isFillColumns?: boolean;
|
28 |
|
29 | columnModifier?: {
|
30 | default?: '1Col' | '2Col' | '3Col';
|
31 | sm?: '1Col' | '2Col' | '3Col';
|
32 | md?: '1Col' | '2Col' | '3Col';
|
33 | lg?: '1Col' | '2Col' | '3Col';
|
34 | xl?: '1Col' | '2Col' | '3Col';
|
35 | '2xl'?: '1Col' | '2Col' | '3Col';
|
36 | };
|
37 |
|
38 | orientation?: {
|
39 | sm?: 'vertical' | 'horizontal';
|
40 | md?: 'vertical' | 'horizontal';
|
41 | lg?: 'vertical' | 'horizontal';
|
42 | xl?: 'vertical' | 'horizontal';
|
43 | '2xl'?: 'vertical' | 'horizontal';
|
44 | };
|
45 |
|
46 | autoFitMinModifier?: {
|
47 | default?: string;
|
48 | sm?: string;
|
49 | md?: string;
|
50 | lg?: string;
|
51 | xl?: string;
|
52 | '2xl'?: string;
|
53 | };
|
54 |
|
55 | horizontalTermWidthModifier?: {
|
56 | default?: string;
|
57 | sm?: string;
|
58 | md?: string;
|
59 | lg?: string;
|
60 | xl?: string;
|
61 | '2xl'?: string;
|
62 | };
|
63 | }
|
64 | export declare const DescriptionList: React.FunctionComponent<DescriptionListProps>;
|
65 |
|
\ | No newline at end of file |