@mekari/pixel3-theme 0.1.1-dev.0 → 0.1.1
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.js +8 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
- package/src/recipes/divider.ts +8 -0
package/dist/index.js
CHANGED
|
@@ -2355,6 +2355,14 @@ var dividerRecipe = (0, import_dev25.defineRecipe)({
|
|
|
2355
2355
|
color: "rgb(208, 214, 221)"
|
|
2356
2356
|
},
|
|
2357
2357
|
variants: {
|
|
2358
|
+
variant: {
|
|
2359
|
+
solid: {
|
|
2360
|
+
borderStyle: "solid"
|
|
2361
|
+
},
|
|
2362
|
+
dashed: {
|
|
2363
|
+
borderStyle: "dashed"
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2358
2366
|
orientation: {
|
|
2359
2367
|
horizontal: {
|
|
2360
2368
|
borderBottom: "0.0625rem solid",
|
package/dist/index.mjs
CHANGED
|
@@ -2329,6 +2329,14 @@ var dividerRecipe = defineRecipe11({
|
|
|
2329
2329
|
color: "rgb(208, 214, 221)"
|
|
2330
2330
|
},
|
|
2331
2331
|
variants: {
|
|
2332
|
+
variant: {
|
|
2333
|
+
solid: {
|
|
2334
|
+
borderStyle: "solid"
|
|
2335
|
+
},
|
|
2336
|
+
dashed: {
|
|
2337
|
+
borderStyle: "dashed"
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2332
2340
|
orientation: {
|
|
2333
2341
|
horizontal: {
|
|
2334
2342
|
borderBottom: "0.0625rem solid",
|
package/package.json
CHANGED
package/src/recipes/divider.ts
CHANGED
|
@@ -9,6 +9,14 @@ const dividerRecipe = defineRecipe({
|
|
|
9
9
|
color: 'rgb(208, 214, 221)'
|
|
10
10
|
},
|
|
11
11
|
variants: {
|
|
12
|
+
variant: {
|
|
13
|
+
solid: {
|
|
14
|
+
borderStyle: 'solid',
|
|
15
|
+
},
|
|
16
|
+
dashed: {
|
|
17
|
+
borderStyle: 'dashed'
|
|
18
|
+
}
|
|
19
|
+
},
|
|
12
20
|
orientation: {
|
|
13
21
|
horizontal: {
|
|
14
22
|
borderBottom: '0.0625rem solid',
|