csstype-extra 0.1.25 → 0.1.26
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/package.json +1 -1
- package/src/index.d.ts +2 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -2215,8 +2215,8 @@ export namespace Property {
|
|
|
2215
2215
|
| 'inter-character'
|
|
2216
2216
|
| Globals
|
|
2217
2217
|
| (string & {})
|
|
2218
|
-
export type Rx =
|
|
2219
|
-
export type Ry =
|
|
2218
|
+
export type Rx = TLengthPercentage | 'auto' | Globals | (string & {})
|
|
2219
|
+
export type Ry = TLengthPercentage | 'auto' | Globals | (string & {})
|
|
2220
2220
|
export type Scale = 'none' | number | Globals | (string & {})
|
|
2221
2221
|
export type ScrollBehavior = 'auto' | 'smooth' | Globals | (string & {})
|
|
2222
2222
|
export type ScrollInitialTarget = 'none' | 'nearest' | Globals | (string & {})
|