@pandacss/preset-base
Advanced tools
Comparing version 0.0.0-dev-20230704200435 to 0.0.0-dev-20230704200504
@@ -1690,2 +1690,15 @@ "use strict"; | ||
// src/utilities/transforms.ts | ||
var positiveFractions = { | ||
"1/2": "50%", | ||
"1/3": "33.333333%", | ||
"2/3": "66.666667%", | ||
"1/4": "25%", | ||
"2/4": "50%", | ||
"3/4": "75%", | ||
full: "100%" | ||
}; | ||
var negativeFractions = Object.fromEntries( | ||
Object.entries(positiveFractions).map(([key, value]) => [`-${key}`, `-${value}`]) | ||
); | ||
var fractions = { ...positiveFractions, ...negativeFractions }; | ||
var transforms = { | ||
@@ -1731,9 +1744,3 @@ transformOrigin: { | ||
...theme("spacing"), | ||
"1/2": "50%", | ||
"1/3": "33.333333%", | ||
"2/3": "66.666667%", | ||
"1/4": "25%", | ||
"2/4": "50%", | ||
"3/4": "75%", | ||
full: "100%" | ||
...fractions | ||
}; | ||
@@ -1753,9 +1760,3 @@ }, | ||
...theme("spacing"), | ||
"1/2": "50%", | ||
"1/3": "33.333333%", | ||
"2/3": "66.666667%", | ||
"1/4": "25%", | ||
"2/4": "50%", | ||
"3/4": "75%", | ||
full: "100%" | ||
...fractions | ||
}; | ||
@@ -1762,0 +1763,0 @@ }, |
{ | ||
"name": "@pandacss/preset-base", | ||
"version": "0.0.0-dev-20230704200435", | ||
"version": "0.0.0-dev-20230704200504", | ||
"description": "The base preset for Panda CSS that contains the conditions and utilities", | ||
@@ -17,3 +17,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@pandacss/types": "0.0.0-dev-20230704200435" | ||
"@pandacss/types": "0.0.0-dev-20230704200504" | ||
}, | ||
@@ -20,0 +20,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
137062
5204
+ Added@pandacss/types@0.0.0-dev-20230704200504(transitive)
- Removed@pandacss/types@0.0.0-dev-20230704200435(transitive)