@mekari/pixel3-theme 0.0.6 → 0.0.7

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 CHANGED
@@ -1360,7 +1360,6 @@ var textareaRecipe = (0, import_dev14.defineRecipe)({
1360
1360
  backgroundColor: "white",
1361
1361
  appearance: "none",
1362
1362
  transition: "all 250ms",
1363
- minWidth: "65",
1364
1363
  minHeight: "20",
1365
1364
  fontSize: "md",
1366
1365
  fontWeight: "regular",
@@ -1369,6 +1368,9 @@ var textareaRecipe = (0, import_dev14.defineRecipe)({
1369
1368
  paddingTop: "2",
1370
1369
  paddingBottom: "5",
1371
1370
  resize: "both",
1371
+ _isFullWidth: {
1372
+ width: "full"
1373
+ },
1372
1374
  _hover: {
1373
1375
  borderColor: "gray.400"
1374
1376
  },
@@ -1377,6 +1379,9 @@ var textareaRecipe = (0, import_dev14.defineRecipe)({
1377
1379
  boxShadow: "outer",
1378
1380
  _hover: {
1379
1381
  borderColor: "blue.500"
1382
+ },
1383
+ _invalid: {
1384
+ borderColor: "red.400"
1380
1385
  }
1381
1386
  },
1382
1387
  _disabled: {
@@ -1392,13 +1397,6 @@ var textareaRecipe = (0, import_dev14.defineRecipe)({
1392
1397
  boxShadow: "none",
1393
1398
  userSelect: "all"
1394
1399
  }
1395
- },
1396
- variants: {
1397
- isFullWidth: {
1398
- true: {
1399
- width: "100%"
1400
- }
1401
- }
1402
1400
  }
1403
1401
  });
1404
1402
 
package/dist/index.mjs CHANGED
@@ -1334,7 +1334,6 @@ var textareaRecipe = defineRecipe7({
1334
1334
  backgroundColor: "white",
1335
1335
  appearance: "none",
1336
1336
  transition: "all 250ms",
1337
- minWidth: "65",
1338
1337
  minHeight: "20",
1339
1338
  fontSize: "md",
1340
1339
  fontWeight: "regular",
@@ -1343,6 +1342,9 @@ var textareaRecipe = defineRecipe7({
1343
1342
  paddingTop: "2",
1344
1343
  paddingBottom: "5",
1345
1344
  resize: "both",
1345
+ _isFullWidth: {
1346
+ width: "full"
1347
+ },
1346
1348
  _hover: {
1347
1349
  borderColor: "gray.400"
1348
1350
  },
@@ -1351,6 +1353,9 @@ var textareaRecipe = defineRecipe7({
1351
1353
  boxShadow: "outer",
1352
1354
  _hover: {
1353
1355
  borderColor: "blue.500"
1356
+ },
1357
+ _invalid: {
1358
+ borderColor: "red.400"
1354
1359
  }
1355
1360
  },
1356
1361
  _disabled: {
@@ -1366,13 +1371,6 @@ var textareaRecipe = defineRecipe7({
1366
1371
  boxShadow: "none",
1367
1372
  userSelect: "all"
1368
1373
  }
1369
- },
1370
- variants: {
1371
- isFullWidth: {
1372
- true: {
1373
- width: "100%"
1374
- }
1375
- }
1376
1374
  }
1377
1375
  });
1378
1376
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-theme",
3
3
  "description": "Theme for mekari pixel 3",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -15,7 +15,6 @@ const textareaRecipe = defineRecipe({
15
15
  backgroundColor: 'white',
16
16
  appearance: 'none',
17
17
  transition: 'all 250ms',
18
- minWidth: '65',
19
18
  minHeight: '20',
20
19
  fontSize: 'md',
21
20
  fontWeight: 'regular',
@@ -24,6 +23,9 @@ const textareaRecipe = defineRecipe({
24
23
  paddingTop: '2',
25
24
  paddingBottom: '5',
26
25
  resize: 'both',
26
+ _isFullWidth: {
27
+ width: 'full'
28
+ },
27
29
  _hover: {
28
30
  borderColor: 'gray.400'
29
31
  },
@@ -32,6 +34,9 @@ const textareaRecipe = defineRecipe({
32
34
  boxShadow: 'outer',
33
35
  _hover: {
34
36
  borderColor: 'blue.500'
37
+ },
38
+ _invalid: {
39
+ borderColor: 'red.400'
35
40
  }
36
41
  },
37
42
  _disabled: {
@@ -47,13 +52,6 @@ const textareaRecipe = defineRecipe({
47
52
  boxShadow: 'none',
48
53
  userSelect: 'all'
49
54
  }
50
- },
51
- variants: {
52
- isFullWidth: {
53
- true: {
54
- width: '100%'
55
- }
56
- }
57
55
  }
58
56
  })
59
57