@niibase/uniwind 1.4.1 → 1.5.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/CHANGELOG.md +1173 -0
- package/dist/common/common/consts.js +18 -0
- package/dist/common/components/native/Pressable.js +13 -2
- package/dist/common/components/native/TouchableHighlight.js +11 -1
- package/dist/common/components/native/TouchableOpacity.js +11 -1
- package/dist/common/components/web/ActivityIndicator.js +3 -1
- package/dist/common/components/web/Button.js +3 -1
- package/dist/common/components/web/FlatList.js +3 -1
- package/dist/common/components/web/Image.js +3 -1
- package/dist/common/components/web/ImageBackground.js +3 -1
- package/dist/common/components/web/KeyboardAvoidingView.js +3 -1
- package/dist/common/components/web/Modal.js +3 -1
- package/dist/common/components/web/Pressable.js +3 -1
- package/dist/common/components/web/RefreshControl.js +3 -1
- package/dist/common/components/web/SafeAreaView.js +3 -1
- package/dist/common/components/web/ScrollView.js +3 -1
- package/dist/common/components/web/SectionList.js +3 -1
- package/dist/common/components/web/Switch.js +3 -1
- package/dist/common/components/web/Text.js +3 -1
- package/dist/common/components/web/TextInput.js +3 -1
- package/dist/common/components/web/TouchableHighlight.js +3 -1
- package/dist/common/components/web/TouchableOpacity.js +3 -1
- package/dist/common/components/web/TouchableWithoutFeedback.js +3 -1
- package/dist/common/components/web/View.js +2 -0
- package/dist/common/components/web/VirtualizedList.js +3 -1
- package/dist/common/components/web/generateDataSet.js +18 -0
- package/dist/common/core/native/store.js +19 -2
- package/dist/common/core/web/cssListener.js +58 -6
- package/dist/common/core/web/getWebStyles.js +20 -18
- package/dist/common/css/extraUtilities.js +19 -0
- package/dist/common/css/index.js +2 -3
- package/dist/common/css/insets.js +2 -2
- package/dist/common/css/overwrite.js +2 -2
- package/dist/common/css/variants.js +3 -3
- package/dist/metro/index.cjs +2 -2
- package/dist/metro/index.d.ts +1 -0
- package/dist/metro/index.mjs +1 -1
- package/dist/metro/metro-transformer.cjs +44 -11
- package/dist/metro/metro-transformer.mjs +42 -9
- package/dist/module/common/consts.d.ts +11 -0
- package/dist/module/common/consts.js +12 -0
- package/dist/module/components/native/Pressable.d.ts +5 -0
- package/dist/module/components/native/Pressable.js +12 -2
- package/dist/module/components/native/TouchableHighlight.js +11 -1
- package/dist/module/components/native/TouchableOpacity.js +11 -1
- package/dist/module/components/web/ActivityIndicator.js +3 -1
- package/dist/module/components/web/Button.js +3 -1
- package/dist/module/components/web/FlatList.js +3 -1
- package/dist/module/components/web/Image.js +3 -1
- package/dist/module/components/web/ImageBackground.js +3 -1
- package/dist/module/components/web/KeyboardAvoidingView.js +3 -1
- package/dist/module/components/web/Modal.js +3 -1
- package/dist/module/components/web/Pressable.js +3 -1
- package/dist/module/components/web/RefreshControl.js +3 -1
- package/dist/module/components/web/SafeAreaView.js +3 -1
- package/dist/module/components/web/ScrollView.js +3 -1
- package/dist/module/components/web/SectionList.js +3 -1
- package/dist/module/components/web/Switch.js +3 -1
- package/dist/module/components/web/Text.js +3 -1
- package/dist/module/components/web/TextInput.js +3 -1
- package/dist/module/components/web/TouchableHighlight.js +3 -1
- package/dist/module/components/web/TouchableOpacity.js +3 -1
- package/dist/module/components/web/TouchableWithoutFeedback.js +3 -1
- package/dist/module/components/web/View.js +2 -0
- package/dist/module/components/web/VirtualizedList.js +3 -1
- package/dist/module/components/web/generateDataSet.d.ts +32 -0
- package/dist/module/components/web/generateDataSet.js +9 -0
- package/dist/module/core/native/parsers/gradient.d.ts +1 -1
- package/dist/module/core/native/store.d.ts +1 -0
- package/dist/module/core/native/store.js +19 -2
- package/dist/module/core/web/cssListener.d.ts +6 -1
- package/dist/module/core/web/cssListener.js +58 -6
- package/dist/module/core/web/getWebStyles.js +21 -18
- package/dist/module/css/extraUtilities.d.ts +1 -0
- package/dist/module/css/extraUtilities.js +20 -0
- package/dist/module/css/index.js +8 -8
- package/dist/module/css/insets.d.ts +1 -1
- package/dist/module/css/insets.js +2 -1
- package/dist/module/css/overwrite.d.ts +1 -1
- package/dist/module/css/overwrite.js +1 -1
- package/dist/module/css/variants.d.ts +1 -1
- package/dist/module/css/variants.js +3 -2
- package/dist/shared/uniwind.B5q8hBGv.cjs +18 -0
- package/dist/shared/{uniwind.D7C2Zt-r.cjs → uniwind.BZyFsest.cjs} +29 -7
- package/dist/shared/{uniwind.B_j3NcHy.mjs → uniwind.C-rHhHOg.mjs} +29 -7
- package/dist/shared/uniwind.JSWK3vHl.mjs +14 -0
- package/dist/vite/index.cjs +1 -1
- package/dist/vite/index.mjs +1 -1
- package/package.json +18 -11
- package/readme.md +1 -1
- package/src/common/consts.ts +12 -0
- package/src/components/native/Pressable.tsx +17 -1
- package/src/components/native/TouchableHighlight.tsx +10 -0
- package/src/components/native/TouchableOpacity.tsx +10 -0
- package/src/components/web/ActivityIndicator.tsx +2 -0
- package/src/components/web/Button.tsx +2 -0
- package/src/components/web/FlatList.tsx +2 -0
- package/src/components/web/Image.tsx +2 -0
- package/src/components/web/ImageBackground.tsx +2 -0
- package/src/components/web/KeyboardAvoidingView.tsx +2 -0
- package/src/components/web/Modal.tsx +2 -0
- package/src/components/web/Pressable.tsx +2 -0
- package/src/components/web/RefreshControl.tsx +2 -0
- package/src/components/web/SafeAreaView.tsx +2 -0
- package/src/components/web/ScrollView.tsx +2 -0
- package/src/components/web/SectionList.tsx +2 -0
- package/src/components/web/Switch.tsx +2 -0
- package/src/components/web/Text.tsx +2 -0
- package/src/components/web/TextInput.tsx +2 -0
- package/src/components/web/TouchableHighlight.tsx +2 -0
- package/src/components/web/TouchableOpacity.tsx +2 -0
- package/src/components/web/TouchableWithoutFeedback.tsx +2 -0
- package/src/components/web/View.tsx +2 -0
- package/src/components/web/VirtualizedList.tsx +2 -0
- package/src/components/web/generateDataSet.ts +52 -0
- package/src/core/config/config.common.ts +1 -2
- package/src/core/native/parsers/gradient.ts +1 -1
- package/src/core/native/store.ts +24 -2
- package/src/core/web/cssListener.ts +73 -6
- package/src/core/web/getWebStyles.ts +26 -25
- package/src/css/extraUtilities.ts +26 -0
- package/src/css/index.ts +8 -8
- package/src/css/insets.ts +3 -1
- package/src/css/overwrite.ts +1 -1
- package/src/css/variants.ts +4 -2
- package/src/metro/addMetaToStylesTemplate.ts +9 -3
- package/src/metro/compileVirtual.ts +2 -1
- package/src/metro/index.d.ts +1 -0
- package/src/metro/metro-transformer.ts +19 -2
- package/src/metro/processor/mq.ts +12 -2
- package/src/metro/processor/processor.ts +3 -2
- package/src/metro/processor/rn.ts +10 -0
- package/src/metro/types.ts +2 -7
- package/src/metro/withUniwindConfig.ts +2 -1
- package/uniwind.css +13 -2
- package/dist/shared/uniwind.BZIuaszw.cjs +0 -11
- package/dist/shared/uniwind.CyoRUwOj.mjs +0 -9
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1173 @@
|
|
|
1
|
+
## What's Changed in 1.5.1
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### 🚀 Features
|
|
6
|
+
|
|
7
|
+
* border circular by @Brentlok
|
|
8
|
+
* built in border-continuous (#444) by @Brentlok
|
|
9
|
+
|
|
10
|
+
### 🐛 Bug Fixes
|
|
11
|
+
|
|
12
|
+
* pass data attributes correctly to RNW (#443) by @Brentlok
|
|
13
|
+
* getWebStyles not return default html styles (#440) by @Brentlok
|
|
14
|
+
|
|
15
|
+
### 🧪 Testing
|
|
16
|
+
|
|
17
|
+
* setup playwright tests (#437) by @Brentlok
|
|
18
|
+
|
|
19
|
+
### 🏠 Chores
|
|
20
|
+
|
|
21
|
+
* fix cliff template error (#442) by @Brentlok
|
|
22
|
+
* update deps, update expo to 55 (#436) by @Brentlok
|
|
23
|
+
* changelog order (#435) by @Brentlok
|
|
24
|
+
* add emojis to changelog (#434) by @Brentlok
|
|
25
|
+
|
|
26
|
+
### 📦 Other
|
|
27
|
+
|
|
28
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.5.0...v1.5.1
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## What's Changed in 1.5.0
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### 🚀 Features
|
|
39
|
+
|
|
40
|
+
* tv selectors, focus: selector for pressables (#425) by @Brentlok
|
|
41
|
+
|
|
42
|
+
### 🐛 Bug Fixes
|
|
43
|
+
|
|
44
|
+
* invalid platform and unwind import by @divineniiquaye
|
|
45
|
+
* guard against display: box from line-clamp-* classes (#424) by @a16n-dev
|
|
46
|
+
|
|
47
|
+
### 📚 Documentation
|
|
48
|
+
|
|
49
|
+
* update npm description by @divineniiquaye
|
|
50
|
+
* update readme note by @divineniiquaye
|
|
51
|
+
|
|
52
|
+
### 🧪 Testing
|
|
53
|
+
|
|
54
|
+
* setup playwright tests (#437) by @Brentlok
|
|
55
|
+
|
|
56
|
+
### 🏠 Chores
|
|
57
|
+
|
|
58
|
+
* update deps, update expo to 55 (#436) by @Brentlok
|
|
59
|
+
* changelog order (#435) by @Brentlok
|
|
60
|
+
* add emojis to changelog (#434) by @Brentlok
|
|
61
|
+
* bump version to 1.4.1 by @github-actions[bot]
|
|
62
|
+
|
|
63
|
+
### 📦 Other
|
|
64
|
+
|
|
65
|
+
* add Playwright install; update release & changelog by @divineniiquaye
|
|
66
|
+
* Merge branch 'next' by @divineniiquaye
|
|
67
|
+
* release action using release-it (#426) by @Brentlok
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.4.1...v1.5.0
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## What's Changed in 1.4.1
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### 🚀 Features
|
|
78
|
+
|
|
79
|
+
* add platformSelect custom css function by @divineniiquaye
|
|
80
|
+
|
|
81
|
+
### 🐛 Bug Fixes
|
|
82
|
+
|
|
83
|
+
* move theme selector out of the root, and remove nulls (#420) by @Brentlok
|
|
84
|
+
|
|
85
|
+
### 📚 Documentation
|
|
86
|
+
|
|
87
|
+
* uniwind readme by @divineniiquaye
|
|
88
|
+
|
|
89
|
+
### 🏠 Chores
|
|
90
|
+
|
|
91
|
+
* bump version to 1.4.1 by @github-actions[bot]
|
|
92
|
+
* bump version to 1.4.0 by @github-actions[bot]
|
|
93
|
+
|
|
94
|
+
### 📦 Other
|
|
95
|
+
|
|
96
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.4.0...v1.4.1
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
## What's Changed in 1.4.0
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### 🚀 Features
|
|
107
|
+
|
|
108
|
+
* scoped theme (#393) by @Brentlok
|
|
109
|
+
|
|
110
|
+
### 🐛 Bug Fixes
|
|
111
|
+
|
|
112
|
+
* merge border colors parsing (#414) by @Brentlok
|
|
113
|
+
* css animations not working for android text input by @divineniiquaye
|
|
114
|
+
* test failing issues due to scoped theme feature by @divineniiquaye
|
|
115
|
+
* treat invalid js expression as plain string (#410) by @Brentlok
|
|
116
|
+
* gradient parsing with % and variables (#403) by @Brentlok
|
|
117
|
+
* fontScale and pixelRatio without arguments (#388) by @Brentlok
|
|
118
|
+
* preserve start/end spacing properties (#383) by @khaled-hamam
|
|
119
|
+
|
|
120
|
+
### 🏠 Chores
|
|
121
|
+
|
|
122
|
+
* bump version to 1.4.0 by @github-actions[bot]
|
|
123
|
+
* fix cleanup css visitor on hot reload (#412) by @Brentlok
|
|
124
|
+
* bump version to 1.3.2 by @github-actions[bot]
|
|
125
|
+
|
|
126
|
+
### 📦 Other
|
|
127
|
+
|
|
128
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
129
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
130
|
+
|
|
131
|
+
### New Contributors
|
|
132
|
+
* @khaled-hamam made their first contribution
|
|
133
|
+
|
|
134
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.11...v1.4.0
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
## What's Changed in 1.1.11
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### 🐛 Bug Fixes
|
|
142
|
+
|
|
143
|
+
* subscribe to updates before triggering listeners (#379) by @Brentlok
|
|
144
|
+
* withUniwind merge with inline (#378) by @Brentlok
|
|
145
|
+
* remove mjs export for metro config (#376) by @Brentlok
|
|
146
|
+
* apply RNW stylesheet patch in build (#368) by @dannyhw
|
|
147
|
+
|
|
148
|
+
### 🔨 Refactoring
|
|
149
|
+
|
|
150
|
+
* reorganize media query tests into native directory by @divineniiquaye
|
|
151
|
+
|
|
152
|
+
### 🏠 Chores
|
|
153
|
+
|
|
154
|
+
* bump version to 1.1.11 by @github-actions[bot]
|
|
155
|
+
* bump version to 1.3.1 by @github-actions[bot]
|
|
156
|
+
|
|
157
|
+
### 📦 Other
|
|
158
|
+
|
|
159
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
160
|
+
|
|
161
|
+
### New Contributors
|
|
162
|
+
* @dannyhw made their first contribution
|
|
163
|
+
|
|
164
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.10...v1.1.11
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
## What's Changed in 1.1.10
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### 🐛 Bug Fixes
|
|
172
|
+
|
|
173
|
+
* custom insets parsing (#355) by @Brentlok
|
|
174
|
+
|
|
175
|
+
### 🏠 Chores
|
|
176
|
+
|
|
177
|
+
* bump version to 1.1.10 by @github-actions[bot]
|
|
178
|
+
* bump version to 1.3.0 by @github-actions[bot]
|
|
179
|
+
* mention Reanimated 4 in package description by @divineniiquaye
|
|
180
|
+
|
|
181
|
+
### 📦 Other
|
|
182
|
+
|
|
183
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.9...v1.1.10
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
## What's Changed in 1.1.9
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### 🚀 Features
|
|
194
|
+
|
|
195
|
+
* add Wrapper component to Uniwind `<Uniwind.Wrapper />` by @divineniiquaye
|
|
196
|
+
|
|
197
|
+
### 🏠 Chores
|
|
198
|
+
|
|
199
|
+
* bump version to 1.1.9 by @github-actions[bot]
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.8...v1.1.9
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
## What's Changed in 1.1.8
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### 🚀 Features
|
|
210
|
+
|
|
211
|
+
* improve performance of handling animations on runtime by @divineniiquaye
|
|
212
|
+
* support data attributes (#339) by @Brentlok
|
|
213
|
+
|
|
214
|
+
### 🐛 Bug Fixes
|
|
215
|
+
|
|
216
|
+
* remove Reanimated Babel plugin note from READMEs by @divineniiquaye
|
|
217
|
+
* support for postinstall in monorepo setup by @divineniiquaye
|
|
218
|
+
* Image size, TextInput placeholder color and disabled:, Pressable disabled: not working on web (#349) by @Brentlok
|
|
219
|
+
* updateCSSVariables only for the same theme (#345) by @Brentlok
|
|
220
|
+
* patch rnw to wrap default styles with css layer (#337) by @Brentlok
|
|
221
|
+
* resolve Animated components (#322) by @burakgormek
|
|
222
|
+
* support both new and old ColorSchemeName in RN (#331) by @Brentlok
|
|
223
|
+
|
|
224
|
+
### 🔨 Refactoring
|
|
225
|
+
|
|
226
|
+
* update useStyle to support componentProps parameter by @divineniiquaye
|
|
227
|
+
|
|
228
|
+
### 🏠 Chores
|
|
229
|
+
|
|
230
|
+
* bump version to 1.1.8 by @github-actions[bot]
|
|
231
|
+
* handle simple data attributes by @Brentlok
|
|
232
|
+
* bump version to 1.2.7 by @github-actions[bot]
|
|
233
|
+
|
|
234
|
+
### 📦 Other
|
|
235
|
+
|
|
236
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.7...v1.1.8
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
## What's Changed in 1.1.7
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### 🚀 Features
|
|
247
|
+
|
|
248
|
+
* update text components with press state and animated styles by @divineniiquaye
|
|
249
|
+
* refactor touchable components with press state animations by @divineniiquaye
|
|
250
|
+
* update indicator components with state-driven animations by @divineniiquaye
|
|
251
|
+
* update list components to support animated variants by @divineniiquaye
|
|
252
|
+
* update container components to support animated variants by @divineniiquaye
|
|
253
|
+
* refactor useStyle hook to support animated components by @divineniiquaye
|
|
254
|
+
* add keyframe serialization and animation store management by @divineniiquaye
|
|
255
|
+
* extend metro processor with animation and transform support by @divineniiquaye
|
|
256
|
+
* implement CSS animation and transition parsers for React Native by @divineniiquaye
|
|
257
|
+
* integrate reanimated easing and keyframes into core runtime by @divineniiquaye
|
|
258
|
+
* add react-native-reanimated dependency and configuration by @divineniiquaye
|
|
259
|
+
* improved class-name caching using 3-bit number for boolean state by @divineniiquaye
|
|
260
|
+
* support custom spacings in safe area utilities (#313) by @Brentlok
|
|
261
|
+
* add parseColor runtime and metro support for it (#312) by @Brentlok
|
|
262
|
+
|
|
263
|
+
### 🐛 Bug Fixes
|
|
264
|
+
|
|
265
|
+
* use isPressed instead of isFocused for Switch value state by @divineniiquaye
|
|
266
|
+
* handle missing Platform.constants in react-native-web by @divineniiquaye
|
|
267
|
+
* remove scaleZ from scale3d processing by @divineniiquaye
|
|
268
|
+
* enable preserve mode for keyframe transforms and handle custom properties by @divineniiquaye
|
|
269
|
+
* improve transform and filter function processing for reanimated by @divineniiquaye
|
|
270
|
+
* remove translateZ from translate3d processing by @divineniiquaye
|
|
271
|
+
* add preserve mode to transform parsing for reanimated by @divineniiquaye
|
|
272
|
+
* support both new and old ColorSchemeName in RN by @divineniiquaye
|
|
273
|
+
* replace useReducer with useState to prevent state inversion by @divineniiquaye
|
|
274
|
+
* remove props type from react-native section component by @divineniiquaye
|
|
275
|
+
* custom animation timing function & update default to linear by @divineniiquaye
|
|
276
|
+
* metro crash on Appearance when set to system theme #1 by @divineniiquaye
|
|
277
|
+
* check for resolver internal path (#321) by @Brentlok
|
|
278
|
+
* resolve react native directories that are not node_modules (#319) by @Brentlok
|
|
279
|
+
* prevent maximum call stack size exceeded in metro (#314) by @jpudysz
|
|
280
|
+
|
|
281
|
+
### 🔨 Refactoring
|
|
282
|
+
|
|
283
|
+
* return CSS filter strings instead of camelCased objects by @divineniiquaye
|
|
284
|
+
|
|
285
|
+
### 📚 Documentation
|
|
286
|
+
|
|
287
|
+
* update README with animation & transition features by @divineniiquaye
|
|
288
|
+
|
|
289
|
+
### 🧪 Testing
|
|
290
|
+
|
|
291
|
+
* update animation tests to match timing function structure by @divineniiquaye
|
|
292
|
+
* add comprehensive test coverage for animation and transition parsers by @divineniiquaye
|
|
293
|
+
* add react-native-reanimated mocks for Jest test environment by @divineniiquaye
|
|
294
|
+
|
|
295
|
+
### 🏠 Chores
|
|
296
|
+
|
|
297
|
+
* bump version to 1.1.7 by @github-actions[bot]
|
|
298
|
+
* bump version to 1.2.6 by @github-actions[bot]
|
|
299
|
+
* bump version to 1.2.5 by @github-actions[bot]
|
|
300
|
+
|
|
301
|
+
### 📦 Other
|
|
302
|
+
|
|
303
|
+
* feat: add CSS animations and transitions using reanimated 4 by @divineniiquaye in [#3](https://github.com/divineniiquaye/uniwind/pull/3)
|
|
304
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.6...v1.1.7
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
## What's Changed in 1.1.6
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
### 🐛 Bug Fixes
|
|
315
|
+
|
|
316
|
+
* exclude Animated from skipping custom resolver (#295) by @Brentlok
|
|
317
|
+
* dont add whitespace around dot (#294) by @Brentlok
|
|
318
|
+
* make onThemeChange protected property (#288) by @Brentlok
|
|
319
|
+
* join borderWidth styles if duplicated (#285) by @Brentlok
|
|
320
|
+
|
|
321
|
+
### 🏠 Chores
|
|
322
|
+
|
|
323
|
+
* bump version to 1.1.6 by @github-actions[bot]
|
|
324
|
+
* bump version to 1.2.4 by @github-actions[bot]
|
|
325
|
+
|
|
326
|
+
### 📦 Other
|
|
327
|
+
|
|
328
|
+
* Merge branch 'orig' by @divineniiquaye
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.5...v1.1.6
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
## What's Changed in 1.1.5
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
### 🚀 Features
|
|
339
|
+
|
|
340
|
+
* more built in safe area utilities (#280) by @Brentlok
|
|
341
|
+
|
|
342
|
+
### 🐛 Bug Fixes
|
|
343
|
+
|
|
344
|
+
* use absolute URL for banner image in README (#284) by @jpudysz
|
|
345
|
+
* update nativeResolver to exclude @react-native paths for resolution (#283) by @jpudysz
|
|
346
|
+
* enhance nativeResolver to exclude react-native internals (#279) by @jpudysz
|
|
347
|
+
|
|
348
|
+
### 🏠 Chores
|
|
349
|
+
|
|
350
|
+
* bump version to 1.1.5 by @github-actions[bot]
|
|
351
|
+
* bump version to 1.2.3 by @github-actions[bot]
|
|
352
|
+
|
|
353
|
+
### 📦 Other
|
|
354
|
+
|
|
355
|
+
* Merge branch 'fix-07' by @divineniiquaye
|
|
356
|
+
* Merge branch 'uni-stack:main' into fix-07 by @divineniiquaye
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.4...v1.1.5
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
## What's Changed in 1.1.4
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### 🐛 Bug Fixes
|
|
367
|
+
|
|
368
|
+
* remove style resolution for react-native-svg by @divineniiquaye
|
|
369
|
+
|
|
370
|
+
### 🏠 Chores
|
|
371
|
+
|
|
372
|
+
* bump version to 1.1.4 by @github-actions[bot]
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.3...v1.1.4
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
## What's Changed in 1.1.3
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### 🚀 Features
|
|
383
|
+
|
|
384
|
+
* add Wrapper component to Uniwind `<Uniwind.Wrapper />` by @divineniiquaye
|
|
385
|
+
|
|
386
|
+
### 🔨 Refactoring
|
|
387
|
+
|
|
388
|
+
* simplify package name resolution in resolvers by @divineniiquaye
|
|
389
|
+
|
|
390
|
+
### 🏠 Chores
|
|
391
|
+
|
|
392
|
+
* bump version to 1.1.3 by @github-actions[bot]
|
|
393
|
+
|
|
394
|
+
### 📦 Other
|
|
395
|
+
|
|
396
|
+
* Revert "feat: make Uniwind work as both config builder and component" by @divineniiquaye
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.2...v1.1.3
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
## What's Changed in 1.1.2
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### 🐛 Bug Fixes
|
|
407
|
+
|
|
408
|
+
* package root & node_modules detection in postinstall by @divineniiquaye
|
|
409
|
+
|
|
410
|
+
### 🏠 Chores
|
|
411
|
+
|
|
412
|
+
* bump version to 1.1.2 by @github-actions[bot]
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.1...v1.1.2
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
## What's Changed in 1.1.1
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
### 🚀 Features
|
|
423
|
+
|
|
424
|
+
* make Uniwind work as both config builder and component by @divineniiquaye
|
|
425
|
+
* improve support for media queries variables by @divineniiquaye
|
|
426
|
+
|
|
427
|
+
### 🐛 Bug Fixes
|
|
428
|
+
|
|
429
|
+
* media query context loss for multiple nested rules in @media blocks by @divineniiquaye
|
|
430
|
+
* CSS variables with media queries handling by @divineniiquaye
|
|
431
|
+
* fix: improve package name & react native gesture handler detection by @divineniiquaye
|
|
432
|
+
* media query tests & update min-width CSS by @divineniiquaye
|
|
433
|
+
* closing and opening parenthesis should be serialized (#271) by @Brentlok
|
|
434
|
+
|
|
435
|
+
### 🏠 Chores
|
|
436
|
+
|
|
437
|
+
* bump version to 1.1.1 by @github-actions[bot]
|
|
438
|
+
|
|
439
|
+
### 📦 Other
|
|
440
|
+
|
|
441
|
+
* Merge branch 'fix-07' by @divineniiquaye
|
|
442
|
+
* Revert "refactor: improve package name detection and update related modules" by @divineniiquaye
|
|
443
|
+
* Merge branch 'fix-10' by @divineniiquaye
|
|
444
|
+
* Merge branch 'fix-07' by @divineniiquaye
|
|
445
|
+
* Merge branch 'uni-stack:main' into fix-07 by @divineniiquaye
|
|
446
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.14...v1.1.1
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
## What's Changed in 1.0.14
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### 🐛 Bug Fixes
|
|
457
|
+
|
|
458
|
+
* exclude @niibase/uniwind from dependency processing by @divineniiquaye
|
|
459
|
+
|
|
460
|
+
### 🏠 Chores
|
|
461
|
+
|
|
462
|
+
* bump version to 1.0.14 by @github-actions[bot]
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.13...v1.0.14
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
## What's Changed in 1.0.13
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
### 🚀 Features
|
|
473
|
+
|
|
474
|
+
* add react-native-svg native component wrapper by @divineniiquaye
|
|
475
|
+
|
|
476
|
+
### 🔨 Refactoring
|
|
477
|
+
|
|
478
|
+
* improve package name detection and update related modules by @divineniiquaye
|
|
479
|
+
|
|
480
|
+
### 🏠 Chores
|
|
481
|
+
|
|
482
|
+
* bump version to 1.0.13 by @github-actions[bot]
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.11...v1.0.13
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
## What's Changed in 1.0.11
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
### 🐛 Bug Fixes
|
|
493
|
+
|
|
494
|
+
* detect package name at runtime for alias installations by @divineniiquaye
|
|
495
|
+
|
|
496
|
+
### 🔨 Refactoring
|
|
497
|
+
|
|
498
|
+
* reorganize react-native-gesture-handler & react-native-svg by @divineniiquaye
|
|
499
|
+
|
|
500
|
+
### 🏠 Chores
|
|
501
|
+
|
|
502
|
+
* bump version to 1.0.11 by @github-actions[bot]
|
|
503
|
+
|
|
504
|
+
### 📦 Other
|
|
505
|
+
|
|
506
|
+
* Merge branch 'fix-09' by @divineniiquaye
|
|
507
|
+
* Merge branch 'fix-08' by @divineniiquaye
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.10...v1.0.11
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
## What's Changed in 1.0.10
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
### 🚀 Features
|
|
518
|
+
|
|
519
|
+
* add new peer dependencies to uniwind package by @divineniiquaye
|
|
520
|
+
* add react-native-svg components with className support by @divineniiquaye
|
|
521
|
+
* react-native-safe-area-context& use initialWindowMetrics by @divineniiquaye
|
|
522
|
+
* add react-native-gesture-handler components with className support by @divineniiquaye
|
|
523
|
+
* add support for media queries by @divineniiquaye
|
|
524
|
+
|
|
525
|
+
### 🐛 Bug Fixes
|
|
526
|
+
|
|
527
|
+
* improve performance for media query processing by @divineniiquaye
|
|
528
|
+
* add cjs dirname for storybook (#260) by @burakgormek
|
|
529
|
+
* useUniwind type with moduleSuffixes (#256) by @Brentlok
|
|
530
|
+
* filter out contextType when copying component properties (#252) by @divineniiquaye
|
|
531
|
+
* compare css contents correctly (#250) by @a16n-dev
|
|
532
|
+
* include license (#223) by @chimame
|
|
533
|
+
* resolve external css imports (#218) by @burakgormek
|
|
534
|
+
|
|
535
|
+
### 🔨 Refactoring
|
|
536
|
+
|
|
537
|
+
* migrate css tests to @niibase/uniwind package by @divineniiquaye
|
|
538
|
+
* migrate to @niibase/uniwind package by @divineniiquaye
|
|
539
|
+
|
|
540
|
+
### 📚 Documentation
|
|
541
|
+
|
|
542
|
+
* add contribution guideline in readme by @Brentlok
|
|
543
|
+
|
|
544
|
+
### 🧪 Testing
|
|
545
|
+
|
|
546
|
+
* rename css-variables-media-queries test to variables by @divineniiquaye
|
|
547
|
+
* jest tests for parsing media queries by @divineniiquaye
|
|
548
|
+
* jest tests for parsing styles and native components (#230) by @Brentlok
|
|
549
|
+
|
|
550
|
+
### 🏠 Chores
|
|
551
|
+
|
|
552
|
+
* bump version to 1.0.10 by @github-actions[bot]
|
|
553
|
+
* update workflows, package config, and README.md by @divineniiquaye
|
|
554
|
+
* improve listener disposing by @Brentlok
|
|
555
|
+
* copy assets to build by @Brentlok
|
|
556
|
+
* bump version to 1.2.2 by @github-actions[bot]
|
|
557
|
+
|
|
558
|
+
### 📦 Other
|
|
559
|
+
|
|
560
|
+
* Merge branch 'fix-09' by @divineniiquaye
|
|
561
|
+
* Merge branch 'fix-09' by @divineniiquaye
|
|
562
|
+
* Merge branch 'fix-08' by @divineniiquaye
|
|
563
|
+
* Merge branch 'fix-08' by @divineniiquaye
|
|
564
|
+
* Merge branch 'fix-07' by @divineniiquaye
|
|
565
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
566
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
567
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
568
|
+
|
|
569
|
+
### New Contributors
|
|
570
|
+
* @a16n-dev made their first contribution
|
|
571
|
+
* @chimame made their first contribution
|
|
572
|
+
|
|
573
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.2.1...v1.0.10
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
## What's Changed in 1.2.1
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
### 🚀 Features
|
|
581
|
+
|
|
582
|
+
* add mising support for tvOS, windows and macOS by @jpudysz
|
|
583
|
+
|
|
584
|
+
### 🏠 Chores
|
|
585
|
+
|
|
586
|
+
* bump version to 1.2.1 by @github-actions[bot]
|
|
587
|
+
|
|
588
|
+
### 📦 Other
|
|
589
|
+
|
|
590
|
+
* Merge pull request #217 from uni-stack/feature/tv-os by @jpudysz
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.2.0...v1.2.1
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
## What's Changed in 1.2.0
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
### 🚀 Features
|
|
601
|
+
|
|
602
|
+
* add updateInsets public function to uniwind (#211) by @divineniiquaye
|
|
603
|
+
* add support for extraComponents in metro by @divineniiquaye
|
|
604
|
+
* add updateInsets public function to uniwind by @divineniiquaye
|
|
605
|
+
* add Vite support (#182) by @burakgormek
|
|
606
|
+
|
|
607
|
+
### 🐛 Bug Fixes
|
|
608
|
+
|
|
609
|
+
* react compiler auto-memoization in native components (#210) by @divineniiquaye
|
|
610
|
+
* process baseline-position (#213) by @burakgormek
|
|
611
|
+
* update useStyle to use specific state properties by @divineniiquaye
|
|
612
|
+
* react compiler auto-memoization in native components useStyle by @divineniiquaye
|
|
613
|
+
|
|
614
|
+
### ⚡ Performance
|
|
615
|
+
|
|
616
|
+
* optimize cssListener for rapid stylesheet additions (#209) by @ForestSpark
|
|
617
|
+
|
|
618
|
+
### 🏠 Chores
|
|
619
|
+
|
|
620
|
+
* bump version to 1.2.0 by @github-actions[bot]
|
|
621
|
+
|
|
622
|
+
### 📦 Other
|
|
623
|
+
|
|
624
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
625
|
+
* Merge branch 'uni-stack:main' into main by @divineniiquaye
|
|
626
|
+
|
|
627
|
+
### New Contributors
|
|
628
|
+
* @divineniiquaye made their first contribution
|
|
629
|
+
* @burakgormek made their first contribution
|
|
630
|
+
* @ForestSpark made their first contribution
|
|
631
|
+
|
|
632
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.1.0...v1.2.0
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
## What's Changed in 1.1.0
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
### 🚀 Features
|
|
640
|
+
|
|
641
|
+
* css variables listener (#204) by @Brentlok
|
|
642
|
+
* parsing unresolved color (#203) by @Brentlok
|
|
643
|
+
* dynamic themes (#193) by @Brentlok
|
|
644
|
+
|
|
645
|
+
### 🐛 Bug Fixes
|
|
646
|
+
|
|
647
|
+
* infer component in withUniwind to forward ref type properly (#208) by @Brentlok
|
|
648
|
+
* deep equal check (#202) by @Brentlok
|
|
649
|
+
|
|
650
|
+
### 🏠 Chores
|
|
651
|
+
|
|
652
|
+
* bump version to 1.1.0 by @github-actions[bot]
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.5...v1.1.0
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
## What's Changed in 1.0.5
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
### 🚀 Features
|
|
663
|
+
|
|
664
|
+
* allow for array in useCSSVariable by @Brentlok
|
|
665
|
+
* support text-shadow by @Brentlok
|
|
666
|
+
|
|
667
|
+
### 🐛 Bug Fixes
|
|
668
|
+
|
|
669
|
+
* remove duplicated styles parsed styles (#192) by @Brentlok
|
|
670
|
+
|
|
671
|
+
### 🏠 Chores
|
|
672
|
+
|
|
673
|
+
* bump version to 1.0.5 by @github-actions[bot]
|
|
674
|
+
* update repository name by @Brentlok
|
|
675
|
+
* bump version to 1.0.5 by @github-actions[bot]
|
|
676
|
+
* move theme injection to __reinit callback (#190) by @Brentlok
|
|
677
|
+
* fix banner image in package README by @Simek
|
|
678
|
+
|
|
679
|
+
### 📦 Other
|
|
680
|
+
|
|
681
|
+
* Merge pull request #180 from Unistyles-OSS/feat/text-shadow by @Brentlok
|
|
682
|
+
* Merge pull request #176 from Simek/patch-1 by @jpudysz
|
|
683
|
+
|
|
684
|
+
### New Contributors
|
|
685
|
+
* @Simek made their first contribution
|
|
686
|
+
|
|
687
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.4...v1.0.5
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
## What's Changed in 1.0.4
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
### 🐛 Bug Fixes
|
|
695
|
+
|
|
696
|
+
* document is undefined on server by @Brentlok
|
|
697
|
+
|
|
698
|
+
### 🏠 Chores
|
|
699
|
+
|
|
700
|
+
* bump version to 1.0.4 by @github-actions[bot]
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.3...v1.0.4
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
## What's Changed in 1.0.3
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
### 🚀 Features
|
|
711
|
+
|
|
712
|
+
* shared listener (#166) by @Brentlok
|
|
713
|
+
|
|
714
|
+
### 🐛 Bug Fixes
|
|
715
|
+
|
|
716
|
+
* dont parse % mixed with other units by @Brentlok
|
|
717
|
+
* add missing spaces before this in more cases by @Brentlok
|
|
718
|
+
* skew parsing by @Brentlok
|
|
719
|
+
|
|
720
|
+
### 🏠 Chores
|
|
721
|
+
|
|
722
|
+
* bump version to 1.0.3 by @github-actions[bot]
|
|
723
|
+
* log error when theme variables are missing by @Brentlok
|
|
724
|
+
* always log errors, hide warnings with debug flag by @Brentlok
|
|
725
|
+
|
|
726
|
+
### 📦 Other
|
|
727
|
+
|
|
728
|
+
* Merge pull request #169 from Unistyles-OSS/fix/parsing by @Brentlok
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.2...v1.0.3
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
## What's Changed in 1.0.2
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
### 🐛 Bug Fixes
|
|
739
|
+
|
|
740
|
+
* always use screen width for breakpoints check by @Brentlok
|
|
741
|
+
* unnecessary rerenders caused by setting system theme (#160) by @Brentlok
|
|
742
|
+
* minor parsing improvements (#159) by @Brentlok
|
|
743
|
+
|
|
744
|
+
### 🏠 Chores
|
|
745
|
+
|
|
746
|
+
* bump version to 1.0.2 by @github-actions[bot]
|
|
747
|
+
* filter out drop-shadow and track-list from parsing by @Brentlok
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.1...v1.0.2
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
## What's Changed in 1.0.1
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
### 🚀 Features
|
|
758
|
+
|
|
759
|
+
* change native components color while using light and dark theme by @jpudysz
|
|
760
|
+
|
|
761
|
+
### 🐛 Bug Fixes
|
|
762
|
+
|
|
763
|
+
* always recalculate styles on theme change (#158) by @Brentlok
|
|
764
|
+
* add missing spaces after " (#157) by @Brentlok
|
|
765
|
+
* serializing undefined (#147) by @Brentlok
|
|
766
|
+
* condition for Appearance when enabling adaptive themes by @jpudysz
|
|
767
|
+
* dont camelize css vars (#137) by @Brentlok
|
|
768
|
+
|
|
769
|
+
### 🏠 Chores
|
|
770
|
+
|
|
771
|
+
* bump version to 1.0.1 by @github-actions[bot]
|
|
772
|
+
* patch tests by @Brentlok
|
|
773
|
+
* move lightningcss to dependency, remove chokidar (#146) by @Brentlok
|
|
774
|
+
* remove postcss and chalk from peerDeps, use unstable_transformerPath (#139) by @Brentlok
|
|
775
|
+
|
|
776
|
+
### 📦 Other
|
|
777
|
+
|
|
778
|
+
* Merge pull request #140 from Unistyles-OSS/feature/color-scheme by @jpudysz
|
|
779
|
+
* Merge pull request #138 from Unistyles-OSS/feature/color-scheme by @jpudysz
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0...v1.0.1
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
## What's Changed in 1.0.0
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
### 🐛 Bug Fixes
|
|
790
|
+
|
|
791
|
+
* hot reloading css (#132) by @Brentlok
|
|
792
|
+
|
|
793
|
+
### 🏠 Chores
|
|
794
|
+
|
|
795
|
+
* bump version to 1.0.0 by @github-actions[bot]
|
|
796
|
+
* change next to latest by @jpudysz
|
|
797
|
+
* metro logs behind a debug flag (#131) by @Brentlok
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.8...v1.0.0
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
## What's Changed in 1.0.0-rc.8
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
### 🐛 Bug Fixes
|
|
808
|
+
|
|
809
|
+
* parse absolute css dependencies (#129) by @Brentlok
|
|
810
|
+
* process only entry css file (#128) by @Brentlok
|
|
811
|
+
* importing css variants (#126) by @Brentlok
|
|
812
|
+
* use live colorScheme getter and emit change when adaptive flag toggles (#119) by @Brentlok
|
|
813
|
+
|
|
814
|
+
### 🏠 Chores
|
|
815
|
+
|
|
816
|
+
* bump version to 1.0.0-rc.8 by @github-actions[bot]
|
|
817
|
+
* update dependencies, and use catalog's (#125) by @Brentlok
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.7...v1.0.0-rc.8
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
## What's Changed in 1.0.0-rc.7
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
### 🚀 Features
|
|
828
|
+
|
|
829
|
+
* new simpler js serializer (#115) by @Brentlok
|
|
830
|
+
|
|
831
|
+
### 🐛 Bug Fixes
|
|
832
|
+
|
|
833
|
+
* css base path passed to tailwind compiler (#117) by @Brentlok
|
|
834
|
+
|
|
835
|
+
### 🏠 Chores
|
|
836
|
+
|
|
837
|
+
* bump version to 1.0.0-rc.7 by @github-actions[bot]
|
|
838
|
+
* minor serializer improvements by @Brentlok
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.6...v1.0.0-rc.7
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
## What's Changed in 1.0.0-rc.6
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
### 🚀 Features
|
|
849
|
+
|
|
850
|
+
* support specific colors (#114) by @Brentlok
|
|
851
|
+
|
|
852
|
+
### 🐛 Bug Fixes
|
|
853
|
+
|
|
854
|
+
* useCSSVariable not reactive (#112) by @Brentlok
|
|
855
|
+
* handle outline styles (#111) by @Brentlok
|
|
856
|
+
* disable metro cache (#106) by @Brentlok
|
|
857
|
+
|
|
858
|
+
### 🏠 Chores
|
|
859
|
+
|
|
860
|
+
* bump version to 1.0.0-rc.6 by @github-actions[bot]
|
|
861
|
+
* minor parsing improvements by @Brentlok
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.5...v1.0.0-rc.6
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
## What's Changed in 1.0.0-rc.5
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
### 🚀 Features
|
|
872
|
+
|
|
873
|
+
* useCSSVariable hook (#103) by @Brentlok
|
|
874
|
+
* add reactive has adaptive themes by @jpudysz
|
|
875
|
+
* preserve component prototype chain when copying properties in uniwind utils by @jpudysz
|
|
876
|
+
|
|
877
|
+
### 🐛 Bug Fixes
|
|
878
|
+
|
|
879
|
+
* keep css code on web, and dont always recreate uniwind files (#101) by @Brentlok
|
|
880
|
+
* improve matching units regex in tryEval (#97) by @Brentlok
|
|
881
|
+
|
|
882
|
+
### 🏠 Chores
|
|
883
|
+
|
|
884
|
+
* bump version to 1.0.0-rc.5 by @github-actions[bot]
|
|
885
|
+
* revert uniwind.css by @jpudysz
|
|
886
|
+
|
|
887
|
+
### 📦 Other
|
|
888
|
+
|
|
889
|
+
* Merge pull request #104 from Unistyles-OSS/feature/add-reactive-has-adaptive-themes by @jpudysz
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.4...v1.0.0-rc.5
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
## What's Changed in 1.0.0-rc.4
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
### 🚀 Features
|
|
900
|
+
|
|
901
|
+
* add cache to metro-transformer by @Brentlok
|
|
902
|
+
* add support for windows builds by @jpudysz
|
|
903
|
+
* major vars refactor to resolve vars using another vars (#90) by @Brentlok
|
|
904
|
+
* metro transformer and patch bare metro (#87) by @Brentlok
|
|
905
|
+
|
|
906
|
+
### 🐛 Bug Fixes
|
|
907
|
+
|
|
908
|
+
* useResolveClassName on web collect styles that were affected by className (#88) by @Brentlok
|
|
909
|
+
|
|
910
|
+
### 🏠 Chores
|
|
911
|
+
|
|
912
|
+
* bump version to 1.0.0-rc.4 by @github-actions[bot]
|
|
913
|
+
* support cursor css by @Brentlok
|
|
914
|
+
* display for what className there are unsupported css values by @Brentlok
|
|
915
|
+
|
|
916
|
+
### 📦 Other
|
|
917
|
+
|
|
918
|
+
* Merge pull request #92 from Unistyles-OSS/feature/windows by @jpudysz
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.3...v1.0.0-rc.4
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
## What's Changed in 1.0.0-rc.3
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
### 🐛 Bug Fixes
|
|
929
|
+
|
|
930
|
+
* return function instead of promise from withUniwindConfig by @Brentlok
|
|
931
|
+
|
|
932
|
+
### 🏠 Chores
|
|
933
|
+
|
|
934
|
+
* bump version to 1.0.0-rc.3 by @github-actions[bot]
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.2...v1.0.0-rc.3
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
## What's Changed in 1.0.0-rc.2
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
### 🐛 Bug Fixes
|
|
945
|
+
|
|
946
|
+
* some styles parsing after performance improvements (#80) by @Brentlok
|
|
947
|
+
|
|
948
|
+
### 📚 Documentation
|
|
949
|
+
|
|
950
|
+
* update install command to use uniwind@next instead of beta tag by @jpudysz
|
|
951
|
+
|
|
952
|
+
### 🏠 Chores
|
|
953
|
+
|
|
954
|
+
* bump version to 1.0.0-rc.2 by @github-actions[bot]
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-rc.1...v1.0.0-rc.2
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
## What's Changed in 1.0.0-rc.1
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
### 🏠 Chores
|
|
965
|
+
|
|
966
|
+
* bump version to 1.0.0-rc.1 by @github-actions[bot]
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0.rc.1...v1.0.0-rc.1
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
## What's Changed in 1.0.0.rc.1
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
### 🚀 Features
|
|
977
|
+
|
|
978
|
+
* performance improvements (#75) by @Brentlok
|
|
979
|
+
|
|
980
|
+
### 🐛 Bug Fixes
|
|
981
|
+
|
|
982
|
+
* always replace inline and block padding and margin by @Brentlok
|
|
983
|
+
* bundle virtual files at metro start by @Brentlok
|
|
984
|
+
* translate inline to horizontal and block to vertical for better support by @Brentlok
|
|
985
|
+
* error caused by changing deps size in withAutoUniwind by @Brentlok
|
|
986
|
+
|
|
987
|
+
### 🏠 Chores
|
|
988
|
+
|
|
989
|
+
* bump version to 1.0.0.rc.1 by @github-actions[bot]
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
**Full Changelog**: https://github.com/divineniiquaye/uniwind/compare/v1.0.0-beta.8...v1.0.0.rc.1
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
## What's Changed in 1.0.0-beta.8
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
### 🚀 Features
|
|
1000
|
+
|
|
1001
|
+
* add rem polyfill to withUniwindConfig (#71) by @Brentlok
|
|
1002
|
+
* support platform vars (#59) by @Brentlok
|
|
1003
|
+
* support active, focused, disabled (#47) by @Brentlok
|
|
1004
|
+
* parse font variant numeric by @Brentlok
|
|
1005
|
+
* support percentage length type in units by @Brentlok
|
|
1006
|
+
* custom css functions (#44) by @Brentlok
|
|
1007
|
+
* support light-dark css function by @Brentlok
|
|
1008
|
+
* add extraThemes and remove themes by @Brentlok
|
|
1009
|
+
* support nested media queries by @Brentlok
|
|
1010
|
+
* support @source by @Brentlok
|
|
1011
|
+
* support lin-style by @Brentlok
|
|
1012
|
+
* support hash by @Brentlok
|
|
1013
|
+
* inject code for web by @Brentlok
|
|
1014
|
+
* support absolute font-weight by @Brentlok
|
|
1015
|
+
* metro resolver (#36) by @Brentlok
|
|
1016
|
+
* replace adaptive themes with system theme by @Brentlok
|
|
1017
|
+
* useUniwind for both platforms by @Brentlok
|
|
1018
|
+
* generate improved themes on hot reload by @Brentlok
|
|
1019
|
+
* add useUniwind support by @jpudysz
|
|
1020
|
+
* auto generate theme variants and types using metro by @Brentlok
|
|
1021
|
+
* uniwind config (#23) by @Brentlok
|
|
1022
|
+
* listeners based on dependencies by @Brentlok
|
|
1023
|
+
* support more native components by @Brentlok
|
|
1024
|
+
* use original color props with higer priority by @Brentlok
|
|
1025
|
+
* parser improvements by @Brentlok
|
|
1026
|
+
* simpler box shadow parsing by @Brentlok
|
|
1027
|
+
* support em by @Brentlok
|
|
1028
|
+
* withUniwind hoc by @Brentlok
|
|
1029
|
+
* useResolveClassNames (#21) by @Brentlok
|
|
1030
|
+
* optimize virtual bundling by @Brentlok
|
|
1031
|
+
* typed withUniwind by @Brentlok
|
|
1032
|
+
* resolve styles based on complexity by @Brentlok
|
|
1033
|
+
* improve metro change updates by @Brentlok
|
|
1034
|
+
* new parser that handles important (#20) by @Brentlok
|
|
1035
|
+
* more css friendly parser by @Brentlok
|
|
1036
|
+
* process word colors by @Brentlok
|
|
1037
|
+
* remove postcss, compile tailwind in metro by @Brentlok
|
|
1038
|
+
* linear gradients by @Brentlok
|
|
1039
|
+
* support more classes by @Brentlok
|
|
1040
|
+
* process math functions by @Brentlok
|
|
1041
|
+
* handle calc by @Brentlok
|
|
1042
|
+
* update unsupported web accents by @Brentlok
|
|
1043
|
+
* trackColor and colors by @Brentlok
|
|
1044
|
+
* separated components (#18) by @Brentlok
|
|
1045
|
+
* useUniwindAccent (#17) by @Brentlok
|
|
1046
|
+
* dependencies by @Brentlok
|
|
1047
|
+
* unit tests (#16) by @Brentlok
|
|
1048
|
+
* handle % in calc by @Brentlok
|
|
1049
|
+
* handle css max function by @Brentlok
|
|
1050
|
+
* parser improvements by @Brentlok
|
|
1051
|
+
* process transitions by @Brentlok
|
|
1052
|
+
* handle transforms in parser by @Brentlok
|
|
1053
|
+
* handle env and time by @Brentlok
|
|
1054
|
+
* lightning css parser by @Brentlok
|
|
1055
|
+
* platform resolve by @Brentlok
|
|
1056
|
+
* resolve nested variants by @Brentlok
|
|
1057
|
+
* nested variants (#11) by @Brentlok
|
|
1058
|
+
* dir to rtl boolean by @Brentlok
|
|
1059
|
+
* resolve color-scheme and writing-direction (#10) by @Brentlok
|
|
1060
|
+
* basic dependencies (#9) by @Brentlok
|
|
1061
|
+
* update to expo 54 and create bare RN example (#8) by @Brentlok
|
|
1062
|
+
* handle color-mix alpha (#7) by @Brentlok
|
|
1063
|
+
* css to RN (#6) by @Brentlok
|
|
1064
|
+
* handle local vars by @Brentlok
|
|
1065
|
+
* multiplatform createUniwindComponent by @Brentlok
|
|
1066
|
+
* convert css styles to rn by @Brentlok
|
|
1067
|
+
* dont parse web to rn stylesheets by @Brentlok
|
|
1068
|
+
* dev hot reload by @Brentlok
|
|
1069
|
+
* stylesheet and variables computed in runtime by @Brentlok
|
|
1070
|
+
* convert css to rn by @Brentlok
|
|
1071
|
+
* breakpoints by @Brentlok
|
|
1072
|
+
* parse colors by @Brentlok
|
|
1073
|
+
* babel plugin by @Brentlok
|
|
1074
|
+
* expo example by @Brentlok
|
|
1075
|
+
* components by @Brentlok
|
|
1076
|
+
* virtual module for each platform by @Brentlok
|
|
1077
|
+
* monorepo by @Brentlok
|
|
1078
|
+
|
|
1079
|
+
### 🐛 Bug Fixes
|
|
1080
|
+
|
|
1081
|
+
* pass an empty style to rnw when there's not class (#60) by @Brentlok
|
|
1082
|
+
* create empty virtual files by @Brentlok
|
|
1083
|
+
* dont force pressable Text on native by @Brentlok
|
|
1084
|
+
* percentage unit calculation by @Brentlok
|
|
1085
|
+
* setting theme to light doesnt disable adaptive themes by @Brentlok
|
|
1086
|
+
* hide types for components by @Brentlok
|
|
1087
|
+
* improve evals by @Brentlok
|
|
1088
|
+
* no em NaN error by @Brentlok
|
|
1089
|
+
* withUniwind crash caused because of chaning deps size on native by @Brentlok
|
|
1090
|
+
* useUniwind theme type by @Brentlok
|
|
1091
|
+
* dont inject js for web by @Brentlok
|
|
1092
|
+
* border, padding, margin parsing by @Brentlok
|
|
1093
|
+
* calc % parsing by @Brentlok
|
|
1094
|
+
* parse transform origin by @Brentlok
|
|
1095
|
+
* border styles by @Brentlok
|
|
1096
|
+
* babel filename check by @Brentlok
|
|
1097
|
+
* improve parser by @Brentlok
|
|
1098
|
+
* add cubicBezier empty function to runtime by @Brentlok
|
|
1099
|
+
* always serialize className to string by @Brentlok
|
|
1100
|
+
* color mix always in runtime by @Brentlok
|
|
1101
|
+
* handle colors in function by @Brentlok
|
|
1102
|
+
* clear rtl and theme when parsing by @Brentlok
|
|
1103
|
+
* withUniwind styleProperty extend by @Brentlok
|
|
1104
|
+
* parse borderColor for directions by @Brentlok
|
|
1105
|
+
* improve withUniwind auto types by @Brentlok
|
|
1106
|
+
* move rnw styles to rnw layer by @Brentlok
|
|
1107
|
+
* dont treat numbers as colors by @Brentlok
|
|
1108
|
+
* parsing loop by @Brentlok
|
|
1109
|
+
* remove dir if exists by @Brentlok
|
|
1110
|
+
|
|
1111
|
+
### 🔨 Refactoring
|
|
1112
|
+
|
|
1113
|
+
* separate web and native core's by @Brentlok
|
|
1114
|
+
* flat vars by @Brentlok
|
|
1115
|
+
|
|
1116
|
+
### 📚 Documentation
|
|
1117
|
+
|
|
1118
|
+
* add readme to uniwind package by @Brentlok
|
|
1119
|
+
* readme (#53) by @Brentlok
|
|
1120
|
+
|
|
1121
|
+
### 🏠 Chores
|
|
1122
|
+
|
|
1123
|
+
* bump version to 1.0.0-beta.8 by @github-actions[bot]
|
|
1124
|
+
* add expo-router example (#56) by @needim
|
|
1125
|
+
* beta7 by @Brentlok
|
|
1126
|
+
* handle sticky type by @Brentlok
|
|
1127
|
+
* beta5 by @Brentlok
|
|
1128
|
+
* update dependencies by @Brentlok
|
|
1129
|
+
* beta4 release by @Brentlok
|
|
1130
|
+
* rename default uniwind.d.ts by @Brentlok
|
|
1131
|
+
* expose withUniwind types by @Brentlok
|
|
1132
|
+
* minor fixes by @Brentlok
|
|
1133
|
+
* beta2 by @Brentlok
|
|
1134
|
+
* rename withUniwind prop to fromClassName by @Brentlok
|
|
1135
|
+
* remove configure and expose hasAdaptiveThemes by @Brentlok
|
|
1136
|
+
* add color scheme style dependency by @Brentlok
|
|
1137
|
+
* rename withUniwindConfig params by @Brentlok
|
|
1138
|
+
* error when no initial theme by @Brentlok
|
|
1139
|
+
* build css to uniwind.css by @Brentlok
|
|
1140
|
+
* dark and light as default themes by @Brentlok
|
|
1141
|
+
* handle currentColor in color by @Brentlok
|
|
1142
|
+
* handle more color types by @Brentlok
|
|
1143
|
+
* trigger theme update on hot reload by @Brentlok
|
|
1144
|
+
* improve initial uniwind config by @Brentlok
|
|
1145
|
+
* parse additional colors by @Brentlok
|
|
1146
|
+
* improve withUniwind types by @Brentlok
|
|
1147
|
+
* alpha-5 by @Brentlok
|
|
1148
|
+
* use watcher instead of haste by @Brentlok
|
|
1149
|
+
* alpha 2 release by @Brentlok
|
|
1150
|
+
* first alpha release by @Brentlok
|
|
1151
|
+
* trigger rerender by @Brentlok
|
|
1152
|
+
* replace css infinity by @Brentlok
|
|
1153
|
+
* improve checking for computed properties by @Brentlok
|
|
1154
|
+
* only check for dark dependency by @Brentlok
|
|
1155
|
+
* reorganize screen dimensions under nested screen object in UniwindRuntime by @jpudysz
|
|
1156
|
+
* minor improvements by @Brentlok
|
|
1157
|
+
* fix implementation by @Brentlok
|
|
1158
|
+
* update native rem to 14 by @Brentlok
|
|
1159
|
+
* move eslint config by @Brentlok
|
|
1160
|
+
|
|
1161
|
+
### 📦 Other
|
|
1162
|
+
|
|
1163
|
+
* Merge pull request #24 from Unistyles-OSS/feature/useUniwind by @jpudysz
|
|
1164
|
+
* Insets (#12) by @Brentlok
|
|
1165
|
+
* Merge pull request #5 from Unistyles-OSS/feature/runtime by @jpudysz
|
|
1166
|
+
* Merge pull request #3 from Unistyles-OSS/feat/handle-local-vars by @Brentlok
|
|
1167
|
+
* Merge pull request #2 from Unistyles-OSS/feat/createUniwindComponent by @Brentlok
|
|
1168
|
+
|
|
1169
|
+
### New Contributors
|
|
1170
|
+
* @github-actions[bot] made their first contribution
|
|
1171
|
+
* @needim made their first contribution
|
|
1172
|
+
|
|
1173
|
+
<!-- generated by git-cliff -->
|