1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730# [Versions](https://mui.com/versions/)
## 0.0.30
<!-- generated comparing v0.0.29..master -->
_Jan 14, 2025_
A big thanks to the 4 contributors who made this release possible.
### `@pigment-css/react@0.0.30`
- fix: spread style object before deleting variants (#364) @brijeshb42
- fix: type CreateStyledComponent to accept string and object (#354) @FourwingsY
### `@pigment-css/theme@0.0.30`
- fix(theme): Allow listing values with number keys (#360) @brijeshb42
### `@pigment-css/vite-plugin@0.0.30`
- Bump Vite to v6 (#355) @bogdanyluk
### Core
- [docs] Fix Vale error (a538810) @oliviertassinari
All contributors of this release in alphabetical order: @bogdanyluk, @brijeshb42, @FourwingsY, @oliviertassinari
## 0.0.29
<!-- generated comparing v0.0.28..master -->
_Dec 20, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/react@0.0.29`
- Use the correct serializer based on the direction value (#350) @brijeshb42
- Fix `useTheme` return type (#338) @mnajdova
- Add react 19 as a peer dependency (#347) @brijeshb42
### `@pigment-css/theme@0.0.29`
- Implement @pigment-css/theme package (#341) @brijeshb42
### Core
- [docs]: fix quickstart command (#351) @yash49
- [examples] Fix vite example & add dark mode support (#340) @mnajdova
All contributors of this release in alphabetical order: @brijeshb42, @mnajdova, @yash49
## 0.0.28
<!-- generated comparing v0.0.27..master -->
_Nov 25, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/react@0.0.28`
- [react] Mark prop-types as direct dependency (#330) @brijeshb42
### Core
- [core] Add OpenSSF badge (#325) @oliviertassinari
- [core] Fix test_types_next job (#271) @Janpot
- [infra] Improve bug template for reproductions (e9bef97) @oliviertassinari
All contributors of this release in alphabetical order: @brijeshb42, @Janpot, @oliviertassinari
## 0.0.27
<!-- generated comparing v0.0.26..master -->
_Nov 13, 2024_
A big thanks to the 2 contributors who made this release possible.
### `@pigment-css/react@0.0.27`
- Bump wyw versions (#320) @brijeshb42
### `@pigment-css/nextjs-plugin@0.0.27`
- Fix path resolution (#310) @brijeshb42
- Bump wyw versions (#320) @brijeshb42
### Core
- [core] Fix webpack capitalization (#311) @oliviertassinari
- [core] Fix Stack Overflow mention (dea4b14) @oliviertassinari
- [docs-infra] More docs infra changes (#304) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @oliviertassinari
## 0.0.26
<!-- generated comparing v0.0.25..master -->
_Nov 8, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/react@0.0.26`
- [react] Bump package versions and fix related TS errors (#294) @brijeshb42
### `@pigment-css/nextjs-plugin@0.0.26`
- [nextjs] Fix tsconfig's path resolving (#182) @brijeshb42
### Docs
- [docs] Remove next tag from installation instructions (#292) @tschaub
- [docs] Setup a new next.js application for documentation (#299) @brijeshb42
### Core
- [core] Bump package versions (#294) @brijeshb42
- [core] Fix Tidelift reference (#306) @oliviertassinari
- [core] Increase the minimum Node.js version support to 14.0.0 (#254) @oliviertassinari
- [core] Fix tools-public.mui.com redirection @oliviertassinari
- [example] Update vite example (#300) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @oliviertassinari, @tschaub
## 0.0.25
<!-- generated comparing v0.0.24..master -->
_Oct 25, 2024_
A big thanks to the 5 contributors who made this release possible.
### `@pigment-css/react@0.0.25`
- Fix scoping issue with sx dynamic value transform (#286) @brijeshb42
### Core
- [code-infra] Remove releaseChangelog.mjs duplication (#273) @oliviertassinari
- [core] Upgrade @mui/monorepo (#274) @oliviertassinari
- [core] Remove <-- from changelog (#272) @oliviertassinari
- [core] Link to production app for bundle size @oliviertassinari
- [core] Bump npx update-browserslist-db@latest (#256) @oliviertassinari
- [docs] Fix broken link (#260) @mnajdova
- [docs] Fix syntax in JSDoc example (#261) @yoohahn
- [docs] Readme tweaks (#266) @aarongarciah
- [docs] Fix 301 redirections in docs @oliviertassinari
- [docs] Fix git diff format (#245) @oliviertassinari
- [examples] Fix webpack CLI instructions (#277) @oliviertassinari
- [examples] Avoid git diff when playing with examples @oliviertassinari
- [infra] Fix line break in Stack Overflow message @oliviertassinari
- [infra] Fix line break in Stack Overflow message @oliviertassinari
All contributors of this release in alphabetical order: @aarongarciah, @brijeshb42, @mnajdova, @oliviertassinari, @yoohahn
## 0.0.24
<!-- generated comparing v0.0.23..master -->
_Sep 25, 2024_
A big thanks to the 2 contributors who made this release possible. Here are some highlights ✨:
### `@pigment-css/react@0.0.24`
- feat: adapt to pre-processed styles (#243) @romgrk
### Docs
- [docs] Correctly configure Vale (#244) @oliviertassinari
All contributors of this release in alphabetical order: @oliviertassinari, @romgrk
## 0.0.23
<!-- generated comparing v0.0.22..master -->
_Sep 17, 2024_
A big thanks to the 5 contributors who made this release possible. This PR mainly fixes bugs with Material UI integration.
### `@pigment-css/react@0.0.23`
- Support null as a value for CSS object (#229) @siriwatknp
- [styled] Fix css extraction for transformed styled tagged-template call (#234) @brijeshb42
- [Grid] ignore RSC error (#233) @siriwatknp
### `@pigment-css/nextjs-plugin@0.0.23`
- [nextjs] Wrap all generated CSS with a cascade layer (WIP) (#226) @Janpot
- [nextjs] Fix react import check bug introduced in #228 (#236) @brijeshb42
- [nextjs] Move the import startsWith next check at end (#228) @brijeshb42
### Core
- [core] Fix 301 link to Next.js and git diff @oliviertassinari
- [core] Fix package.json repository rule @oliviertassinari
- [core] Remove legacy yarn file @oliviertassinari
- [infra] Adds reusable workflow for close issue message (#231) @michelengelen
- [infra] Adds reusable workflow for new issue cleanup (#230) @michelengelen
All contributors of this release in alphabetical order: @brijeshb42, @Janpot, @michelengelen, @oliviertassinari, @siriwatknp
## 0.0.22
<!-- generated comparing v0.0.21..master -->
_Sep 3, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/vite-plugin@0.0.22`
- Fix bug related to path separator on Windows (#218) @brijeshb42
- Fix styled-engine new internals (#220) @romgrk
### `@pigment-css/unplugin@0.0.22`
- Fix bug related to path separator on Windows (#218) @brijeshb42
- Fix styled-engine new internals (#220) @romgrk
### Core
- [core] Pin GitHub action dependency (#221) @oliviertassinari
- [core] Fix CI with fake docs (#222) @oliviertassinari
All contributors of this release in alphabetical order: @brijeshb42, @oliviertassinari, @romgrk
## 0.0.21
<!-- generated comparing v0.0.20..master -->
_Aug 29, 2024_
A big thanks to the 2 contributors who made this release possible.
### `@pigment-css/unplugin@0.0.21`
- Replace `endsWith` with `includes` to check adapter path (#214) @siriwatknp
### `@pigment-css/vite-plugin@0.0.21`
- Replace `endsWith` with `includes` to check adapter path (#214) @siriwatknp
### Docs
- [docs] Fix Stack Overflow issue canned response @oliviertassinari
- [docs] Fix outdated link to support page @oliviertassinari
- [docs] Keep contributing guide simple (#213) @oliviertassinari
- [docs] Fix description of eslint-plugin-material-ui @oliviertassinari
- [docs] Hide a bit the notion of MUI Core @oliviertassinari
All contributors of this release in alphabetical order: @oliviertassinari, @siriwatknp
## 0.0.20
<!-- generated comparing v0.0.19..master -->
_Aug 8, 2024_
A big thanks to the 1 contributors who made this release possible.
- [typescript] Fix `sx` types (#200) @siriwatknp
All contributors of this release in alphabetical order: @siriwatknp
## 0.0.19
<!-- generated comparing v0.0.18..master -->
_Aug 7, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/react@0.0.19`
- [react] Fix thrown error during eval phase (#196) @brijeshb42
- [TypeScript] Fix `sx` types and missing `style` prop from layout components (#191) @siriwatknp
### Docs
- [docs] Clarify security policy @oliviertassinari
### Core
- [core] Temporarily fallback to v5 of Material UI (#198) @brijeshb42
- [core] Fix event naming convention @oliviertassinari
All contributors of this release in alphabetical order: @brijeshb42, @oliviertassinari, @siriwatknp
## 0.0.18
<!-- generated comparing v0.0.17..master -->
_Jul 25, 2024_
A big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
## `@pigment-css/react@0.0.18`
- Replace global JSX (#183) @DiegoAndai
- Normalize rest / other to match the most common used @oliviertassinari
- Normalize rest / other to match the most common used @oliviertassinari
## `@pigment-css/unplugin@0.0.18`
- [webpack] Fix support for webpack and add example app (#174) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @DiegoAndai, @oliviertassinari
## v0.0.17
<!-- generated comparing v0.0.16..master -->
_Jul 10, 2024_
A big thanks to the 3 contributors who made this release possible.
### `@pigment-css/vite-plugin@0.0.17`
- [vite] Allow package authors to specify packages to include in vite (#172) @brijeshb42
- [vite] Pass down `transformLibraries` (#169) @siriwatknp
### `@pigment-css/unplugin@0.0.17`
- [plugin] Allow runtime libraries to have their own theme and styles css path (#165) @brijeshb42
### Core
- [core] Simpler pnpm dedupe error message to act on @oliviertassinari
- [examples] Rename next.config.js to next.config.mjs (#157) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @oliviertassinari, @siriwatknp
## v0.0.16
<!-- generated comparing v0.0.15..master -->
_Jun 25, 2024_
A big thanks to the 2 contributors who made this release possible.
### `@pigment-css/react@0.0.16`
- [Grid] Add wrap prop (#159) @mnajdova
### `@pigment-css/nextjs-plugin@0.0.16`
- Make library path check OS agnostic (#160) @brijeshb42
### `@pigment-css/vite-plugin@0.0.16`
- Make library path check OS agnostic (#160) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @mnajdova
## v0.0.15
<!-- generated comparing v0.0.14..master -->
_Jun 24, 2024_
A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
- 🚀 Added layout components (#144) @DiegoAndai, (#146) @siriwatknp, (#143) @brijeshb42, (#118) @brijeshb42
### `@pigment-css/react@0.0.15`
- Create Grid component (#144) @DiegoAndai
- Support transpiled library for `globalCss` and `keyframes` (#155) @siriwatknp
- Remove sx transform logic and leverage Emotion unitless (#149) @siriwatknp
- Export `globalCss` from index (#148) @siriwatknp
- Create Hidden component (#146) @siriwatknp
- Implement Container component (#143) @brijeshb42
- Create Stack component (#118) @brijeshb42
### `@pigment-css/unplugin@0.0.15`
- Fix misuse variable to transform libraries (#153) @siriwatknp
### Core
- [code-infra] Propagate pnpm engine in package.json (#126) @Janpot
- [core] Update package manager to 9.4.0 (#156) @siriwatknp
- [core] Update package manager to follow core repo (#150) @siriwatknp
- [infra] Add support donation button @oliviertassinari
All contributors of this release in alphabetical order: @brijeshb42, @DiegoAndai, @Janpot, @oliviertassinari, @siriwatknp
## v0.0.14
A big thanks to the 1 contributors who made this release possible:
### `@pigment-css/unplugin@0.0.14`
- Fix the path check for Windows (#136) @siriwatknp
All contributors of this release in alphabetical order: @siriwatknp
## v0.0.13
<!-- generated comparing v0.0.12..master -->
A big thanks to the 2 contributors who made this release possible:
### `@pigment-css/react@0.0.13`
- Decouple `sx` prop from system and add docs (#57) @siriwatknp
- Fix useTheme import change (#134) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @siriwatknp
## v0.0.12
<!-- generated comparing v0.0.11..master -->
_Jun 4, 2024_
A big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
- 🚀 New `globalCss` API for creating global styles (#31) @siriwatknp
- 🪄 Support configurable runtime theme (#105) @brijeshb42
### `@pigment-css/react@0.0.12`
- Add `createExtendSxProp` for Material UI integration (#112) @siriwatknp
- Add `globalCss` processor (#31) @siriwatknp
- Implement useTheme processor and runtime theme (#105) @brijeshb42
- Implement variant matching parity (#111) @DiegoAndai
- Ignore urls starting with # (#106) @brijeshb42
- Make theme optional in Pigment CSS config (#108) @brijeshb42
### Docs
- Add logo to the README (#121) @danilo-leal
- Add badges like in Material UI @oliviertassinari
- Fix styleOverrides usage in README (#110) @brijeshb42
- Improve wording (#70) @aarongarciah
- Fix roadmap link (#60) @oliviertassinari
### Core
- Remove confusing comment @oliviertassinari
- Cleanup (#63) @brijeshb42
- Add stylelint (#109) @oliviertassinari
- Use test-utils pacakge from npm (#113) @brijeshb42
- Use shared .stylelintrc.js config (#103) @oliviertassinari
- Fix instructions to run (#75) @oliviertassinari
All contributors of this release in alphabetical order: @aarongarciah, @brijeshb42, @danilo-leal, @DiegoAndai, @oliviertassinari, @siriwatknp
## v0.0.11
_May 8, 2024_
A big thanks to the 2 contributors who made this release possible. Here are some highlights ✨:
- ✨ `sx` prop is now working on any components (#37) @siriwatknp
### `@pigment-css/react@0.0.11`
- Support array for `sx` prop (#52) @siriwatknp
- Replace `sx` callback object param with `theme` (#51) @siriwatknp
- Enable `sx` prop on any components (#37) @siriwatknp
- Replace lowercase with lowerFirst (#54) @siriwatknp
- Reorder the css generation order for styled calls (#56) @brijeshb42
### Core
- Set root version to 0.0.10 (#44) @siriwatknp
All contributors of this release in alphabetical order: @@brijeshb42, @siriwatknp
## v0.0.10
<!-- generated comparing v0.0.9..master -->
_May 1, 2024_
A big thanks to the 2 contributors who made this release possible.
### `@pigment-css/react@0.0.10`
- Fix styled inheritance (#40) @siriwatknp
- Fix prop forwarding when `as` component is provided to HTML styled component (#43) @siriwatknp
### `@pigment-css/nextjs-plugin@0.0.10`
- Transform `!important` CSS to an intermediate representation (#38) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @siriwatknp
## v0.0.9
<!-- generated comparing v0.0.8..master -->
_Apr 22, 2024_
A big thanks to the 2 contributors who made this release possible.
### `@pigment-css/react@0.0.9`
- [fix] Use wildcard for exports instead of individual paths (#28) @brijeshb42
- [fix] Add `private-runtime` directory in the package.json (#33) @mnajdova
### Core
- Enable release:changelog in CI (#30) @mnajdova
All contributors of this release in alphabetical order: @brijeshb42, @mnajdova
## v0.0.8
_Apr 19, 2024_
A big thanks to the 3 contributors who made this release possible.
This release is mostly around infrastructure work related to moving the project to its own repository.
Starting with this release, all packages are going to be released under the `latest` tag, instead of `next`, in order to simplify the installation process.
### `@pigment-css/react@0.0.8`
- [core][enhancement] Disable WeakRef usage in WyW modulate evaluation (#25) @brijeshb42
- [core] Add support for sx replacement in transformed jsx calls (#22) @brijeshb42
### Docs
- [react] Add How Pigment CSS works guide (#18) @brijeshb42
- Update creating a new issue link (#20) @ZeeshanTamboli
- Fix wrong header hash in the README.md (#26) @mnajdova
### Core
- Create Circle CI config (#4) @mnajdova
- Enable the CI (#12) @mnajdova
- Enable ci/sandbox (#14) @mnajdova
- Remove paths associated with the @mui packages (#15) @mnajdova
- Add GitHub workflows (#19) @mnajdova
- Add build:ci script (#23) @mnajdova
All contributors of this release in alphabetical order: @brijeshb42, @mnajdova, @ZeeshanTamboli
## v0.0.7
_Apr 17, 2024_
A big thanks to the 2 contributors who made this release possible. Here is the highlight of this release ✨:
- 🚀 Updated the sx transformation to also support components created with emotion
### `@pigment-css/react@0.0.7`
- Implement sx transform for system components (#41861) @brijeshb42
### Docs
- [pigment-css] Fixed README typos (#41870) @MohammadShehadeh
All contributors of this release in alphabetical order: @brijeshb42, @MohammadShehadeh
## v0.0.6
_Apr 9, 2024_
A big thanks to the 3 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
### `@pigment-css/react@0.0.6`
- [core] Remove `muiName` during eval phase (#41811) @brijeshb42
### `@pigment-css/nextjs-plugin@0.0.6`
- [nextjs] Handle file references passed through imports (#41817) @brijeshb42
- [nextjs] Allow usage of url() CSS function (#41758) @brijeshb42
### Docs
- [pigment-css] Fix README typo (#41808) @aarongarciah
- [pigment-css] Fix output on dynamic styles example (#41805) @aarongarciah
### Core
- [core] Remove unused files (#41818) @mnajdova
All contributors of this release in alphabetical order: @aarongarciah, @brijeshb42, @zanivan
## v0.0.5
_Apr 5, 2024_
A big thanks to the 4 contributors who made this release possible.
### `@pigment-css/react@0.0.5`
- Improve sx prop support (#41589) @brijeshb42
- Fix Emotion styled error (#41699) @siriwatknp
- Fix propTypes removal during eval stage (#41695) @brijeshb42
- Fix props forwarding (#41688) @siriwatknp
- Fix sx prop transformation on Box (#41705) @brijeshb42
### `@pigment-css/vite-plugin@0.0.5`
- Use constant filename for pigment styles (#41667) @brijeshb42
### `@pigment-css/nextjs-plugin@0.0.5`
- Add missing RTL implementation (#41751) @brijeshb42
### Docs
- [pigment-css] Update README.md installation to use the next tag (#41649) @mnajdova
- [pigment-css] Add "Building design system components" guide with Pigment CSS (#41635) @siriwatknp
- [pigment-css] Add small edits on the README (#41646) @danilo-leal
- [pigment-css] Edit the example app's README files (#41639) @danilo-leal
### Core
- [pigment-css][examples] Add example project with Remix (#41700) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @mnajdova, @siriwatknp
## v0.0.4
_Mar 26, 2024_
A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
- ⬅️ Added RTL support in Pigment CSS (#41570) @brijeshb42
### `@pigment-css/react@0.0.4`
- Fix evaluation of undefined variables (#41569) @siriwatknp
- Fix react-modal demos location (#41560) @sai6855
- [react] RTL Support (#41570) @brijeshb42
### Docs
- [pigment-css] Update the RTL section on the readme (#41576) @danilo-leal
### Core
- [pigment-css][demo] Remove app specific pnpm workspace (#41393) @brijeshb42
All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @sai6855, @siriwatknp
## v0.0.3
_Mar 18, 2024_
A big thanks to the 3 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
### `@pigment-css/react@0.0.3`
- Add Box component (#41451) @brijeshb42
### `pigment-css/nextjs-plugin@0.0.3`
- Fix alias resolver (#41494) @brijeshb42
- Follow-up to #41494 (#41502) @brijeshb42
### Docs
- [pigment-css] Add media query guide (#41473) @siriwatknp
- [pigment-css] Fixing location of the ExtendTheme type in the docs (#41499) @jherr
All contributors of this release in alphabetical order: @brijeshb42, @jherr, @siriwatknp
## v0.0.2
_Mar 13, 2024_
A big thanks to the 4 contributors who made this release possible. Here are some highights ✨
- The Material UI free Checkout template got a design uplift (#41447) @zanivan
### `@pigment-css/react@0.0.2`
- Handle more scenarios while transforming sx prop (#41372) @brijeshb42
- Improve testing of fixtures (#41389) @brijeshb42
- Fix `keyframes` serialize styles error (#41395) @siriwatknp
- Use class selector instead of class value (#41442) @brijeshb42
- [next] Warn about unsupported turbo mode in Next.js (#41445) @brijeshb42
### Docs
- [pigment-css] Add example and guide section (#41249) @siriwatknp
- [pigment-css] Brand name nonbreaking space (#41438) @oliviertassinari
- [pigment-css] Fix import on the README (#41411) @danilo-leal
- [pigment-css] Edit starter template links on README (#41409) @danilo-leal
- [pigment-css] Tweak the examples and edit READMEs (#41408) @danilo-leal
- [pigment-css] Adjust the bit about CSS vars on the README (#41463) @danilo-leal
### Core
- [pigment-css] Make all Pigment CSS packages public (#41404) @brijeshb42
- [pigment-css] Rename directories to match package names (#41453) @brijeshb42
- [pigment-css] Example fix leading spaces (#41439) @oliviertassinari
- [examples] Add pigment-css-vite-ts starter example (#41196) @siriwatknp
- [examples] Add pigment-css-nextjs-ts starter project (#41105) @siriwatknp
All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @oliviertassinari, @siriwatknp
## v0.0.1
_Mar 5, 2024_
A big thanks to the 3 contributors who made this release possible.
This is the first public release of the zero-runtime CSS-in-JS library, Pigment CSS.
### `@pigment-css/react@0.0.1`, `@pigment-css/nextjs-plugin@0.0.1`, `@pigment-css/vite-plugin@0.0.1`, & `@pigment-css/unplugin@0.0.1`
- [pigment-css] Add support for styled tagged-template literals (#41268) @brijeshb42
- [pigment-css] Move extendTheme to already existing @pigment-css/react/utils (#41254) @brijeshb42
- [pigment-css] Remove `object` intersection from CSS Fallback (#41271) @siriwatknp
- [pigment-css] Minor wording changes in README (#41253) @brijeshb42
- [pigment-css] Prepare zero-runtime packages for public release (#41226) @brijeshb42
### Docs
- [pigment-css] Add a Why section on the README (#41284) @danilo-leal
All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @siriwatknp