We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc081a commit 9bb190aCopy full SHA for 9bb190a
src/components/text/types/component.ts
@@ -27,4 +27,5 @@ export enum TextComponentType {
27
DL = 'dl',
28
DT = 'dt',
29
DD = 'dd',
30
+ DIV = 'div',
31
}
src/components/text/types/text.ts
@@ -20,7 +20,7 @@ export interface ITextStyled {
20
21
type TextAriaAttributes = Pick<
22
React.AriaAttributes,
23
- 'aria-label' | 'aria-labelledby' | 'aria-describedby' | 'aria-hidden'
+ 'aria-label' | 'aria-labelledby' | 'aria-describedby' | 'aria-hidden' | 'aria-level'
24
>;
25
26
export interface ITextStandAlone extends ITextStyled, TextAriaAttributes {
0 commit comments