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