@okshaun/components 0.4.4 → 0.4.5
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/panda.buildinfo.json +4 -0
- package/dist/preset.js +2 -1
- package/dist/preset.js.map +1 -1
- package/dist/sprite.symbol.html +1 -1
- package/package.json +1 -1
|
@@ -158,6 +158,7 @@
|
|
|
158
158
|
"color]___[value:tan.90]___[cond:_dark",
|
|
159
159
|
"background]___[value:tan.60",
|
|
160
160
|
"background]___[value:tan.40]___[cond:_dark",
|
|
161
|
+
"color]___[value:yellow.60",
|
|
161
162
|
"marginBottom]___[value:12",
|
|
162
163
|
"marginBottom]___[value:8",
|
|
163
164
|
"marginTop]___[value:12",
|
|
@@ -293,6 +294,9 @@
|
|
|
293
294
|
"divider": [
|
|
294
295
|
"direction]___[value:horizontal]___[recipe:divider",
|
|
295
296
|
"weight]___[value:thin]___[recipe:divider",
|
|
297
|
+
"weight]___[value:medium]___[recipe:divider",
|
|
298
|
+
"weight]___[value:thick]___[recipe:divider",
|
|
299
|
+
"weight]___[value:thicker]___[recipe:divider",
|
|
296
300
|
"direction]___[value:vertical]___[recipe:divider"
|
|
297
301
|
],
|
|
298
302
|
"label": [
|
package/dist/preset.js
CHANGED
|
@@ -5195,7 +5195,6 @@ const spinnerRecipe = defineRecipe({
|
|
|
5195
5195
|
});
|
|
5196
5196
|
const dividerBase = {
|
|
5197
5197
|
"--divider-weight": "sizes.1",
|
|
5198
|
-
borderStyle: "solid",
|
|
5199
5198
|
color: { base: "gray.20", _dark: "gray.80" },
|
|
5200
5199
|
borderColor: "current",
|
|
5201
5200
|
minWidth: "1",
|
|
@@ -5205,10 +5204,12 @@ const dividerVariants = {
|
|
|
5205
5204
|
direction: {
|
|
5206
5205
|
horizontal: {
|
|
5207
5206
|
width: "full",
|
|
5207
|
+
borderTopStyle: "solid",
|
|
5208
5208
|
borderTopWidth: "var(--divider-weight)"
|
|
5209
5209
|
},
|
|
5210
5210
|
vertical: {
|
|
5211
5211
|
height: "full",
|
|
5212
|
+
borderLeftStyle: "solid",
|
|
5212
5213
|
borderLeftWidth: "var(--divider-weight)"
|
|
5213
5214
|
}
|
|
5214
5215
|
},
|