@plumeria/core 18.2.6 → 18.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/csstypes.d.ts +2 -2
- package/package.json +1 -1
package/lib/csstypes.d.ts
CHANGED
|
@@ -876,7 +876,7 @@ type outlineWidth = borderWidth;
|
|
|
876
876
|
type overflow = 'visible' | 'hidden' | 'clip' | 'scroll' | 'auto';
|
|
877
877
|
type overflowAnchor = 'auto' | 'none';
|
|
878
878
|
type overflowBlock = overflowY;
|
|
879
|
-
type
|
|
879
|
+
type overflowInline = overflowX;
|
|
880
880
|
type overflowClipMargin = number | StableString;
|
|
881
881
|
type overflowWrap = 'normal' | 'break-word' | 'anywhere';
|
|
882
882
|
type overflowX = overflow;
|
|
@@ -1611,7 +1611,7 @@ export type CSSTypes = Readonly<{
|
|
|
1611
1611
|
|
|
1612
1612
|
overflow?: all | overflow;
|
|
1613
1613
|
overflowBlock?: all | overflowBlock;
|
|
1614
|
-
|
|
1614
|
+
overflowInline?: all | overflowInline;
|
|
1615
1615
|
overflowX?: all | overflowX;
|
|
1616
1616
|
overflowY?: all | overflowY;
|
|
1617
1617
|
|