File tree Expand file tree Collapse file tree 5 files changed +14
-0
lines changed
packages/react/src/types/props Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @devup-ui/react " : patch
3+ ---
4+
5+ Add lineClamp, willChange
Original file line number Diff line number Diff line change 1+ ---
2+ " @devup-ui/wasm " : patch
3+ ---
4+
5+ Add lineClamp
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ static MAINTAIN_VALUE_PROPERTIES: Lazy<HashSet<String>> = Lazy::new(|| {
2525 set. insert ( "opacity" . to_string ( ) ) ;
2626 set. insert ( "flex" . to_string ( ) ) ;
2727 set. insert ( "zIndex" . to_string ( ) ) ;
28+ set. insert ( "lineClamp" . to_string ( ) ) ;
2829 set. insert ( "fontWeight" . to_string ( ) ) ;
2930 set. insert ( "scale" . to_string ( ) ) ;
3031 set. insert ( "aspectRatio" . to_string ( ) ) ;
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ export interface DevupUiTextProps {
3636
3737 content ?: ResponsiveValue < Property . Content >
3838
39+ lineClamp ?: ResponsiveValue < Property . LineClamp >
40+
3941 typography ?: TypographyKey < DevupThemeTypography >
4042}
4143
Original file line number Diff line number Diff line change @@ -18,4 +18,5 @@ export interface DevupUiUiProps {
1818 pointerEvents ?: ResponsiveValue < Property . PointerEvents >
1919 resize ?: ResponsiveValue < Property . Resize >
2020 userSelect ?: ResponsiveValue < Property . UserSelect >
21+ willChange ?: ResponsiveValue < Property . WillChange >
2122}
You can’t perform that action at this time.
0 commit comments