Skip to content

Commit f700b47

Browse files
author
Kubit
committed
Add pseudoElements on interface
1 parent 648f28e commit f700b47

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/types/styles/commonStyle.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { PaddingTypes } from './padding';
99
import { PointerTypes } from './pointer';
1010
import { PositionTypes } from './position';
1111
import { BoxShadowTypes } from './shadow';
12+
import { TypographyTypes } from './typography';
1213
import { WordWrapTypes } from './wordWrap';
1314

1415
type BreakPointsStyleType = {
@@ -33,6 +34,19 @@ type PseudoElementsType = {
3334
after?: AfterOrBeforeType;
3435
before?: AfterOrBeforeType;
3536
backdrop?: GenericStyleType;
37+
placeholder?: TypographyTypes;
38+
placeholderShown?: TypographyTypes;
39+
notPlaceholderShown?: TypographyTypes;
40+
disabled?: CommonStyleType;
41+
filled?: CommonStyleType;
42+
focus?: CommonStyleType;
43+
focusVisible?: CommonStyleType;
44+
ariaInvalid?: CommonStyleType;
45+
dataTruncate?: CommonStyleType;
46+
dataFilled?: CommonStyleType;
47+
passwordRevealButton?: CommonStyleType;
48+
webkitInnerSpinButton?: CommonStyleType;
49+
webkitOuterSpinButton?: CommonStyleType;
3650
};
3751

3852
export type CommonStyleType = GenericStyleType & BreakPointsStyleType & PseudoElementsType;

0 commit comments

Comments
 (0)