File tree Expand file tree Collapse file tree 3 files changed +6
-94
lines changed
storybook/provider/utilsProvider Expand file tree Collapse file tree 3 files changed +6
-94
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ type GenericDeviceTypographyType = {
23
23
text_justify ?: string ;
24
24
color ?: string ;
25
25
overflow ?: string ;
26
+ filter ?: string ;
26
27
} & TypographyCustomType &
27
28
WordWrapTypes ;
28
29
Original file line number Diff line number Diff line change @@ -461,6 +461,7 @@ export const getGenericTypographyStyles = (prop?: TypographyTypes): CSSProp => {
461
461
text_justify,
462
462
color,
463
463
overflow,
464
+ filter,
464
465
} = prop ;
465
466
466
467
return css `
@@ -482,6 +483,7 @@ export const getGenericTypographyStyles = (prop?: TypographyTypes): CSSProp => {
482
483
${ text_justify && `text-justify: ${ text_justify } ;` }
483
484
${ color && `color: ${ color } ;` }
484
485
${ overflow && `overflow: ${ overflow } ;` }
486
+ ${ filter && `filter: ${ filter } ;` }
485
487
` ;
486
488
} ;
487
489
@@ -584,9 +586,9 @@ export const getPseudoStyles = (
584
586
585
587
return css `
586
588
${ pseudoKey } {
587
- ${ isAfterOrBefore && `content: '${ content } '` }
588
- ${ getGenericStyles ( styles ) }
589
- ${ getTypographyStyles ( styles ) }
589
+ ${ isAfterOrBefore && `content: '${ content } '` } ;
590
+ ${ getGenericStyles ( styles ) } ;
591
+ ${ getTypographyStyles ( styles ) } ;
590
592
}
591
593
` ;
592
594
} ;
You can’t perform that action at this time.
0 commit comments