@jtlan/csstype 3.1.2 → 3.1.3
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/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1731,7 +1731,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
|
1731
1731
|
*
|
|
1732
1732
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
|
|
1733
1733
|
*/
|
|
1734
|
-
flexWrap
|
|
1734
|
+
flexWrap/*;弹性换行*/?: Property.FlexWrap | undefined;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
|
|
1737
1737
|
*
|
|
@@ -18843,7 +18843,7 @@ export namespace Property {
|
|
|
18843
18843
|
|
|
18844
18844
|
export type FlexShrink = Globals | (number & {}) | (string & {});
|
|
18845
18845
|
|
|
18846
|
-
export type FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse"
|
|
18846
|
+
export type FlexWrap = Globals | "nowrap"/*;不换行*/ | "wrap"/*;换行*/ | "wrap-reverse"/*;反向换行*/;
|
|
18847
18847
|
|
|
18848
18848
|
export type Float = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
|
|
18849
18849
|
|