@okshaun/components 0.5.3 → 0.5.4
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/dist/index.d.ts +44 -0
- package/dist/index.js +173 -32
- package/dist/index.js.map +1 -1
- package/dist/panda.buildinfo.json +2 -2
- package/dist/preset.js +8 -2
- package/dist/preset.js.map +1 -1
- package/dist/sprite.symbol.html +1 -1
- package/package.json +1 -1
|
@@ -179,8 +179,6 @@
|
|
|
179
179
|
"color]___[value:text.brand",
|
|
180
180
|
"cursor]___[value:pointer",
|
|
181
181
|
"fontWeight]___[value:medium",
|
|
182
|
-
"width]___[value:24",
|
|
183
|
-
"height]___[value:24",
|
|
184
182
|
"gap]___[value:6",
|
|
185
183
|
"gap]___[value:2",
|
|
186
184
|
"gap]___[value:3",
|
|
@@ -199,6 +197,8 @@
|
|
|
199
197
|
"height]___[value:12",
|
|
200
198
|
"gap]___[value:12",
|
|
201
199
|
"marginInline]___[value:16",
|
|
200
|
+
"width]___[value:24",
|
|
201
|
+
"height]___[value:24",
|
|
202
202
|
"width]___[value:20",
|
|
203
203
|
"height]___[value:20",
|
|
204
204
|
"width]___[value:32",
|
package/dist/preset.js
CHANGED
|
@@ -6698,15 +6698,21 @@ const chipBase = {
|
|
|
6698
6698
|
verticalAlign: "middle",
|
|
6699
6699
|
cursor: "pointer",
|
|
6700
6700
|
transitionDuration: "fast",
|
|
6701
|
-
transitionProperty: "background,
|
|
6701
|
+
transitionProperty: "background, color",
|
|
6702
6702
|
transitionTimingFunction: "default",
|
|
6703
6703
|
userSelect: "none",
|
|
6704
|
+
border: "none",
|
|
6704
6705
|
outlineWidth: 2,
|
|
6705
6706
|
outlineStyle: "solid",
|
|
6706
6707
|
outlineColor: "transparent",
|
|
6707
6708
|
bg: "bg.neutral",
|
|
6708
6709
|
color: "text",
|
|
6709
|
-
icon: {
|
|
6710
|
+
icon: {
|
|
6711
|
+
fill: "icon.decorative",
|
|
6712
|
+
transitionDuration: "fast",
|
|
6713
|
+
transitionProperty: "fill",
|
|
6714
|
+
transitionTimingFunction: "default"
|
|
6715
|
+
},
|
|
6710
6716
|
_hover: {
|
|
6711
6717
|
bg: "bg.neutral.hovered",
|
|
6712
6718
|
icon: { fill: "icon.decorative.hovered" }
|