@mekari/pixel3-styled-system 0.1.2-dev.5 → 0.1.3-dev.0
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/CHANGELOG.md +71 -0
- package/package.json +1 -1
- package/recipes/button-recipe.mjs +16 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
# @mekari/pixel3-styled-system
|
|
2
2
|
|
|
3
|
+
## 0.1.3-dev.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 28f1adb: - Update divider recipe.
|
|
8
|
+
- 7b100db: Fix visual disabled state
|
|
9
|
+
|
|
10
|
+
## 0.1.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- f6207fe: - Updated recipe for `MpAvatar`.
|
|
15
|
+
- f6207fe: Fix all lint & code format
|
|
16
|
+
- f6207fe: Generated styled
|
|
17
|
+
- f6207fe: Generated style-system
|
|
18
|
+
- f6207fe: - Updated recipe for `MpInput`.
|
|
19
|
+
- f6207fe: Update styled system
|
|
20
|
+
- f6207fe: Fix position close button when size sm
|
|
21
|
+
- f6207fe: - Update recipe for MpDivider.
|
|
22
|
+
- f6207fe: - Update styled system
|
|
23
|
+
- f6207fe: - Added new `aireneButtonSlotRecipe` recipe.
|
|
24
|
+
- Added new token `vibrantPurple`.
|
|
25
|
+
- f6207fe: - Updated recipe for `MpTag`.
|
|
26
|
+
- Updated recipe for `MpSegmentedControl`.
|
|
27
|
+
- f6207fe: - Update New Token Pixel 2.4 :
|
|
28
|
+
- `Accordion`
|
|
29
|
+
- `AutoColete`
|
|
30
|
+
- `Avatar`
|
|
31
|
+
- `Banner`
|
|
32
|
+
- `Broadcast`
|
|
33
|
+
- `Button`
|
|
34
|
+
- `Carousel`
|
|
35
|
+
- `Chart`
|
|
36
|
+
- `ColorPicker`
|
|
37
|
+
- `DatePicker`
|
|
38
|
+
- `Divider`
|
|
39
|
+
- `Dropzone`
|
|
40
|
+
- `FormControl`
|
|
41
|
+
- `InputTag`
|
|
42
|
+
- `Input`
|
|
43
|
+
- `Modal`
|
|
44
|
+
- `PopOver`
|
|
45
|
+
- `Progress`
|
|
46
|
+
- `Radio`
|
|
47
|
+
- `RichTextEditor`
|
|
48
|
+
- `SegmentedControl`
|
|
49
|
+
- `Select`
|
|
50
|
+
- `Slider`
|
|
51
|
+
- `Table`
|
|
52
|
+
- `Tabs`
|
|
53
|
+
- `Tag`
|
|
54
|
+
- `Texarea`
|
|
55
|
+
- `Timeline`
|
|
56
|
+
- `Toast`
|
|
57
|
+
- `Toggle`
|
|
58
|
+
- `ToolTip`
|
|
59
|
+
- `Upload`
|
|
60
|
+
- f6207fe: - Updated recipe for `MpToast`.
|
|
61
|
+
- f6207fe: - Update toast recipe.
|
|
62
|
+
- f6207fe: Generate new styled-system
|
|
63
|
+
- f6207fe: Fix Types
|
|
64
|
+
- f6207fe: - Update airene button recipe.
|
|
65
|
+
- f6207fe: - Update styled system.
|
|
66
|
+
- f6207fe: - Update tag recipe.
|
|
67
|
+
- f6207fe: - Update broadcast recipe.
|
|
68
|
+
- f6207fe: - Updated recipe for `MpText`.
|
|
69
|
+
- Updated recipe for `MpBanner`.
|
|
70
|
+
- Updated recipe for `MpIcon`.
|
|
71
|
+
- f6207fe: - Update `theme` global css with new token
|
|
72
|
+
- f6207fe: - Update recipe.
|
|
73
|
+
|
|
3
74
|
## 0.1.2-dev.5
|
|
4
75
|
|
|
5
76
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -66,13 +66,17 @@ const buttonRecipeFn = /* @__PURE__ */ createRecipe('button', {
|
|
|
66
66
|
"background": "gray.50",
|
|
67
67
|
"borderColor": "gray.50",
|
|
68
68
|
"_hasIcon": {
|
|
69
|
-
"
|
|
70
|
-
|
|
69
|
+
"&:not([data-has-label=true])": {
|
|
70
|
+
"background": "transparent",
|
|
71
|
+
"borderColor": "transparent"
|
|
72
|
+
}
|
|
71
73
|
}
|
|
72
74
|
},
|
|
73
75
|
"_hasIcon": {
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
+
"&:not([data-has-label=true])": {
|
|
77
|
+
"background": "transparent",
|
|
78
|
+
"borderColor": "transparent"
|
|
79
|
+
}
|
|
76
80
|
},
|
|
77
81
|
"_nextTheme": {
|
|
78
82
|
"color": "text.disabled",
|
|
@@ -82,13 +86,17 @@ const buttonRecipeFn = /* @__PURE__ */ createRecipe('button', {
|
|
|
82
86
|
"background": "background.disabled",
|
|
83
87
|
"borderColor": "background.disabled",
|
|
84
88
|
"_hasIcon": {
|
|
85
|
-
"
|
|
86
|
-
|
|
89
|
+
"&:not([data-has-label=true])": {
|
|
90
|
+
"background": "transparent",
|
|
91
|
+
"borderColor": "transparent"
|
|
92
|
+
}
|
|
87
93
|
}
|
|
88
94
|
},
|
|
89
95
|
"_hasIcon": {
|
|
90
|
-
"
|
|
91
|
-
|
|
96
|
+
"&:not([data-has-label=true])": {
|
|
97
|
+
"background": "transparent",
|
|
98
|
+
"borderColor": "transparent"
|
|
99
|
+
}
|
|
92
100
|
}
|
|
93
101
|
}
|
|
94
102
|
}
|