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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "csstype-extra",
3
3
  "type": "module",
4
- "version": "0.1.25",
4
+ "version": "0.1.26",
5
5
  "description": "Strict TypeScript types for style based on MDN data",
6
6
  "repository": "https://github.com/dev-five-git/csstypes",
7
7
  "author": "devfive",
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 = number | Globals | (string & {})
2219
- export type Ry = number | Globals | (string & {})
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 & {})