@plumeria/core 17.0.0 → 17.0.1
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 +10 -1
- package/package.json +1 -1
package/lib/csstypes.d.ts
CHANGED
|
@@ -295,7 +295,16 @@ type columns = columnWidth | columnCount;
|
|
|
295
295
|
type columnSpan = 'none' | 'all';
|
|
296
296
|
type columnWidth = 'auto' | number | StableString;
|
|
297
297
|
type compositeOperator = 'add' | 'subtract' | 'intersect' | 'exclude';
|
|
298
|
-
type contain =
|
|
298
|
+
type contain =
|
|
299
|
+
| 'none'
|
|
300
|
+
| 'strict'
|
|
301
|
+
| 'content'
|
|
302
|
+
| 'size'
|
|
303
|
+
| 'inline-size'
|
|
304
|
+
| 'layout'
|
|
305
|
+
| 'style'
|
|
306
|
+
| 'paint'
|
|
307
|
+
| StableString;
|
|
299
308
|
type container = number | StableString;
|
|
300
309
|
type containerName = number | StableString;
|
|
301
310
|
type containerType = 'size' | 'inline-size' | 'normal';
|