@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.
Files changed (2) hide show
  1. package/lib/csstypes.d.ts +10 -1
  2. 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 = 'none' | 'strict' | 'content' | StableString;
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/core",
3
- "version": "17.0.0",
3
+ "version": "17.0.1",
4
4
  "description": "Zero-cost abstraction layer for styling React components.",
5
5
  "author": "Refirst 11",
6
6
  "license": "MIT",