-
Notifications
You must be signed in to change notification settings - Fork 31
/
releases.json
4769 lines (4769 loc) · 489 KB
/
releases.json
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
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"scttcper/ngx-toastr": [
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v18.0.0",
"name": "v18.0.0",
"tag": "v18.0.0",
"body": "# [18.0.0](https://github.com/scttcper/ngx-toastr/compare/v17.0.2...v18.0.0) (2023-11-16)\n\n\n### Features\n\n* upgrade to angular 17 ([#1008](https://github.com/scttcper/ngx-toastr/issues/1008)) ([d6b5e6b](https://github.com/scttcper/ngx-toastr/commit/d6b5e6b5d7250b69b1e3d0439ff200b8bf7cb274))\n\n\n### BREAKING CHANGES\n\n* requires angular 17, typescript 5.2\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v17.0.2",
"name": "v17.0.2",
"tag": "v17.0.2",
"body": "## [17.0.2](https://github.com/scttcper/ngx-toastr/compare/v17.0.1...v17.0.2) (2023-05-15)\n\n\n### Bug Fixes\n\n* Move easeTime to the constructor ([e3e4b74](https://github.com/scttcper/ngx-toastr/commit/e3e4b74b4ee1af5c68dca7435f01a1a4b25868f4)), closes [#996](https://github.com/scttcper/ngx-toastr/issues/996)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v17.0.1",
"name": "v17.0.1",
"tag": "v17.0.1",
"body": "## [17.0.1](https://github.com/scttcper/ngx-toastr/compare/v17.0.0...v17.0.1) (2023-05-14)\n\n\n### Bug Fixes\n\n* add provenance ([fb2720e](https://github.com/scttcper/ngx-toastr/commit/fb2720e9e545fd0c8826b2a72c041cb008972635))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v17.0.0",
"name": "v17.0.0",
"tag": "v17.0.0",
"body": "# [17.0.0](https://github.com/scttcper/ngx-toastr/compare/v16.2.0...v17.0.0) (2023-05-14)\n\n\n### Features\n\n* Upgrade to angular 16 ([#995](https://github.com/scttcper/ngx-toastr/issues/995)) ([38a641d](https://github.com/scttcper/ngx-toastr/commit/38a641dcfbfaf4eaf9458473e214d6345d8adc87))\n\n\n### BREAKING CHANGES\n\n* requires angular >= 16\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.2.0",
"name": "v16.2.0",
"tag": "v16.2.0",
"body": "# [16.2.0](https://github.com/scttcper/ngx-toastr/compare/v16.1.1...v16.2.0) (2023-05-04)\n\n\n### Features\n\n* Add provider function, convert to standalone and use inject ([#991](https://github.com/scttcper/ngx-toastr/issues/991)) ([94dba28](https://github.com/scttcper/ngx-toastr/commit/94dba28d1abfe26525ccc74b1253b2f41f3d3698))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.1.1",
"name": "v16.1.1",
"tag": "v16.1.1",
"body": "## [16.1.1](https://github.com/scttcper/ngx-toastr/compare/v16.1.0...v16.1.1) (2023-04-14)\n\n\n### Bug Fixes\n\n* Add ng-update entry to package.json ([#988](https://github.com/scttcper/ngx-toastr/issues/988)) ([29f8537](https://github.com/scttcper/ngx-toastr/commit/29f8537e79fb66832278c85e529f53e910f9498b))\n* bump dependencies ([#989](https://github.com/scttcper/ngx-toastr/issues/989)) ([ca20a91](https://github.com/scttcper/ngx-toastr/commit/ca20a917a4bf34087b3ea7f2b71b1695e480b422))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.1.0",
"name": "v16.1.0",
"tag": "v16.1.0",
"body": "# [16.1.0](https://github.com/scttcper/ngx-toastr/compare/v16.0.2...v16.1.0) (2023-03-03)\n\n\n### Features\n\n* Add generic for payload in IndividualConfig ([#980](https://github.com/scttcper/ngx-toastr/issues/980)) ([815e1dd](https://github.com/scttcper/ngx-toastr/commit/815e1ddd8ceb4f42d53a49f8bf2b1e3fe7136e70))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.0.2",
"name": "v16.0.2",
"tag": "v16.0.2",
"body": "## [16.0.2](https://github.com/scttcper/ngx-toastr/compare/v16.0.1...v16.0.2) (2023-01-04)\n\n\n### Bug Fixes\n\n* upgrade dependencies ([efaf809](https://github.com/scttcper/ngx-toastr/commit/efaf809a05d56ecb3b7d6a9652aa0fd2ddb2dc9c))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.0.1",
"name": "v16.0.1",
"tag": "v16.0.1",
"body": "## [16.0.1](https://github.com/scttcper/ngx-toastr/compare/v16.0.0...v16.0.1) (2022-11-17)\n\n\n### Bug Fixes\n\n* Copy bs5-alert.scss to dist directory ([e007ca3](https://github.com/scttcper/ngx-toastr/commit/e007ca3bc70b10d61eda1a5144a1b0570a67f654))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v16.0.0",
"name": "v16.0.0",
"tag": "v16.0.0",
"body": "# [16.0.0](https://github.com/scttcper/ngx-toastr/compare/v15.2.2...v16.0.0) (2022-11-17)\n\n\n### Features\n\n* angular 15, add toastr-bs5-alert.scss ([#963](https://github.com/scttcper/ngx-toastr/issues/963)) ([bc77677](https://github.com/scttcper/ngx-toastr/commit/bc776777a2a5e519486cf7049e0c4320d41b61f6)), closes [#962](https://github.com/scttcper/ngx-toastr/issues/962) [#887](https://github.com/scttcper/ngx-toastr/issues/887)\n\n\n### BREAKING CHANGES\n\n* support angular 15\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v15.2.2",
"name": "v15.2.2",
"tag": "v15.2.2",
"body": "## [15.2.2](https://github.com/scttcper/ngx-toastr/compare/v15.2.1...v15.2.2) (2022-11-14)\n\n\n### Bug Fixes\n\n* Declare type for DisableTimeOut configuration. ([#959](https://github.com/scttcper/ngx-toastr/issues/959)) ([7dc1745](https://github.com/scttcper/ngx-toastr/commit/7dc17456742ff5d9fca266314f83298363f86f0f))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v15.2.1",
"name": "v15.2.1",
"tag": "v15.2.1",
"body": "## [15.2.1](https://github.com/scttcper/ngx-toastr/compare/v15.2.0...v15.2.1) (2022-10-17)\n\n\n### Bug Fixes\n\n* extendedTimeOut and mouseenter event issue ([#931](https://github.com/scttcper/ngx-toastr/issues/931)) ([1a0f6b8](https://github.com/scttcper/ngx-toastr/commit/1a0f6b8aaf17c93cfe840f68b63f82af8b54435c))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v15.2.0",
"name": "v15.2.0",
"tag": "v15.2.0",
"body": "# [15.2.0](https://github.com/scttcper/ngx-toastr/compare/v15.1.0...v15.2.0) (2022-10-03)\n\n\n### Features\n\n* use individual options value for \"newestOnTop\" ([#932](https://github.com/scttcper/ngx-toastr/issues/932)) ([c86b7a8](https://github.com/scttcper/ngx-toastr/commit/c86b7a8ad3697e5c5eeef1bb894edb943c5845d7))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v15.1.0",
"name": "v15.1.0",
"tag": "v15.1.0",
"body": "# [15.1.0](https://github.com/scttcper/ngx-toastr/compare/v15.0.0...v15.1.0) (2022-09-28)\n\n\n### Features\n\n* Remove ToastInjector use Injector.create ([#947](https://github.com/scttcper/ngx-toastr/issues/947)) ([b765833](https://github.com/scttcper/ngx-toastr/commit/b765833dabad737a3bbb501ed12f46f2eb394fe0))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v15.0.0",
"name": "v15.0.0",
"tag": "v15.0.0",
"body": "# [15.0.0](https://github.com/scttcper/ngx-toastr/compare/v14.3.0...v15.0.0) (2022-06-19)\n\n\n### Features\n\n* upgrade to angular 14 ([#942](https://github.com/scttcper/ngx-toastr/issues/942)) ([8a0a9bf](https://github.com/scttcper/ngx-toastr/commit/8a0a9bfbb044b12b7e269ae023e9bf285bdd8f5b))\n\n\n### BREAKING CHANGES\n\n* requires angular 14\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.3.0",
"name": "v14.3.0",
"tag": "v14.3.0",
"body": "# [14.3.0](https://github.com/scttcper/ngx-toastr/compare/v14.2.4...v14.3.0) (2022-04-18)\n\n\n### Features\n\n* **accessibility:** Move `aria-live=polite` to overlay container ([#934](https://github.com/scttcper/ngx-toastr/issues/934)) ([2fc890b](https://github.com/scttcper/ngx-toastr/commit/2fc890b3316d839390912463ac84049fc0ee9cc0))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.2.4",
"name": "v14.2.4",
"tag": "v14.2.4",
"body": "## [14.2.4](https://github.com/scttcper/ngx-toastr/compare/v14.2.3...v14.2.4) (2022-04-12)\n\n\n### Bug Fixes\n\n* Revert Test if active before reducing number of active toasts [#922](https://github.com/scttcper/ngx-toastr/issues/922) ([#926](https://github.com/scttcper/ngx-toastr/issues/926)) ([eb92b40](https://github.com/scttcper/ngx-toastr/commit/eb92b40dc77d7569501bd9639180d54f96a1b04d)), closes [#928](https://github.com/scttcper/ngx-toastr/issues/928)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.2.3",
"name": "v14.2.3",
"tag": "v14.2.3",
"body": "## [14.2.3](https://github.com/scttcper/ngx-toastr/compare/v14.2.2...v14.2.3) (2022-04-05)\n\n\n### Bug Fixes\n\n* Test if active before reducing number of active toasts [#922](https://github.com/scttcper/ngx-toastr/issues/922) ([#926](https://github.com/scttcper/ngx-toastr/issues/926)) ([1d96d32](https://github.com/scttcper/ngx-toastr/commit/1d96d321b6f90fb261cb92e56ab39ec612d4aa3d))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.2.2",
"name": "v14.2.2",
"tag": "v14.2.2",
"body": "## [14.2.2](https://github.com/scttcper/ngx-toastr/compare/v14.2.1...v14.2.2) (2022-03-05)\n\n\n### Bug Fixes\n\n* upgrade dependencies ([6994d25](https://github.com/scttcper/ngx-toastr/commit/6994d250e8807d7fbba08ab44b60c9ffb5e44528))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.2.1",
"name": "v14.2.1",
"tag": "v14.2.1",
"body": "## [14.2.1](https://github.com/scttcper/ngx-toastr/compare/v14.2.0...v14.2.1) (2021-11-19)\n\n\n### Bug Fixes\n\n* add css exports ([9efa4dd](https://github.com/scttcper/ngx-toastr/commit/9efa4ddd62edd7290fecea0ecd4570f372e33a9f)), closes [#912](https://github.com/scttcper/ngx-toastr/issues/912)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.2.0",
"name": "v14.2.0",
"tag": "v14.2.0",
"body": "# [14.2.0](https://github.com/scttcper/ngx-toastr/compare/v14.1.4...v14.2.0) (2021-11-13)\n\n\n### Features\n\n* upgrade to angular 13 ([#911](https://github.com/scttcper/ngx-toastr/issues/911)) ([c26c135](https://github.com/scttcper/ngx-toastr/commit/c26c13553e45a0daa2c76acad3f1f1fc5bb751f7))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.1.4",
"name": "v14.1.4",
"tag": "v14.1.4",
"body": "## [14.1.4](https://github.com/scttcper/ngx-toastr/compare/v14.1.3...v14.1.4) (2021-10-25)\n\n\n### Bug Fixes\n\n* Add payload property to the IndividualConfig Interface ([#904](https://github.com/scttcper/ngx-toastr/issues/904)) ([2b8fe58](https://github.com/scttcper/ngx-toastr/commit/2b8fe58c2456a835e3c129482b32e7cff8c89b78))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.1.3",
"name": "v14.1.3",
"tag": "v14.1.3",
"body": "## [14.1.3](https://github.com/scttcper/ngx-toastr/compare/v14.1.2...v14.1.3) (2021-09-08)\n\n\n### Bug Fixes\n\n* encoding issue for warning background image ([#902](https://github.com/scttcper/ngx-toastr/issues/902)) ([97e13cc](https://github.com/scttcper/ngx-toastr/commit/97e13cc86277e35bb72d7b50c26fef79237e546c))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.1.2",
"name": "v14.1.2",
"tag": "v14.1.2",
"body": "## [14.1.2](https://github.com/scttcper/ngx-toastr/compare/v14.1.1...v14.1.2) (2021-09-08)\n\n\n### Bug Fixes\n\n* encode svg to Base64, prevent build optimizer error ([#901](https://github.com/scttcper/ngx-toastr/issues/901)) ([900974c](https://github.com/scttcper/ngx-toastr/commit/900974c088737c94dee2f132345b62135b19f09b))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.1.1",
"name": "v14.1.1",
"tag": "v14.1.1",
"body": "## [14.1.1](https://github.com/scttcper/ngx-toastr/compare/v14.1.0...v14.1.1) (2021-09-08)\n\n\n### Bug Fixes\n\n* Add type=\"button\" to close button ([5b0ef6a](https://github.com/scttcper/ngx-toastr/commit/5b0ef6aebb4c783651bb9c658a7fb6aea1780593)), closes [#899](https://github.com/scttcper/ngx-toastr/issues/899)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.1.0",
"name": "v14.1.0",
"tag": "v14.1.0",
"body": "# [14.1.0](https://github.com/scttcper/ngx-toastr/compare/v14.0.0...v14.1.0) (2021-08-05)\n\n\n### Features\n\n* add demo bootstrap 5 custom component, upgrade dependencies ([#893](https://github.com/scttcper/ngx-toastr/issues/893)) ([f2c4c42](https://github.com/scttcper/ngx-toastr/commit/f2c4c424bc28152012519d7a52c5ebee9c84fcae))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v14.0.0",
"name": "v14.0.0",
"tag": "v14.0.0",
"body": "# [14.0.0](https://github.com/scttcper/ngx-toastr/compare/v13.2.1...v14.0.0) (2021-05-18)\n\n\n### Features\n\n* upgrade angular from 11.2.5 to 12.0.0 ([#880](https://github.com/scttcper/ngx-toastr/issues/880)) ([#884](https://github.com/scttcper/ngx-toastr/issues/884)) ([185d1dd](https://github.com/scttcper/ngx-toastr/commit/185d1ddd30ce817e489fcf27e26c3cb0178347d5))\n\n\n### BREAKING CHANGES\n\n* requires angular >= v12\nCo-authored-by: Athur Ming <[email protected]>\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v13.2.1",
"name": "v13.2.1",
"tag": "v13.2.1",
"body": "## [13.2.1](https://github.com/scttcper/ngx-toastr/compare/v13.2.0...v13.2.1) (2021-03-12)\n\n\n### Bug Fixes\n\n* upgrade dependencies ([6f52fce](https://github.com/scttcper/ngx-toastr/commit/6f52fce1c0c2b314ba597b199a7fc614c753da0a))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v13.2.0",
"name": "v13.2.0",
"tag": "v13.2.0",
"body": "# [13.2.0](https://github.com/scttcper/ngx-toastr/compare/v13.1.0...v13.2.0) (2020-12-04)\n\n\n### Features\n\n* **deps:** upgrade angular from 10.2.1 to 11.0.3 ([#872](https://github.com/scttcper/ngx-toastr/issues/872)) ([0a9ba14](https://github.com/scttcper/ngx-toastr/commit/0a9ba14bf2f0afbee1586b7d155b124495429f81))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-toastr/releases/tag/v13.1.0",
"name": "v13.1.0",
"tag": "v13.1.0",
"body": "# [13.1.0](https://github.com/scttcper/ngx-toastr/compare/v13.0.1...v13.1.0) (2020-10-06)\n\n\n### Features\n\n* Prevent title duplicates with `includeTitleDuplicates` ([#859](https://github.com/scttcper/ngx-toastr/issues/859)) ([4ec9725](https://github.com/scttcper/ngx-toastr/commit/4ec97250cfed4a087f6721de84f7a296f937d237))\n\n\n\n"
}
],
"rx-angular/rx-angular": [
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4017.3.1",
"name": null,
"tag": "[email protected]",
"body": "## [17.3.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.3.1) (2024-05-24)\n\n\n### Bug Fixes\n\n* **template:** virtual-for: properly calculate stable state ([112a299](https://github.com/rx-angular/rx-angular/commit/112a299c1d9d74ac6dc72f8f8bcf6b3671761ec7))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4017.3.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.3.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.3.0) (2024-05-23)\n\n\n### Bug Fixes\n\n* **template:** virtual-for: wait for strategy to stabilize ([32b451b](https://github.com/rx-angular/rx-angular/commit/32b451b3631d2c5d9fd58f073a76a3b35f5b6b78))\n\n\n### Features\n\n* **template:** virtual-scrolling: introduce keepScrolledIndexOnPrepend ([0cb5614](https://github.com/rx-angular/rx-angular/commit/0cb56141ed5d1c4064673c356850882b612b1fbe))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/eslint-plugin%402.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [2.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@2.1.0) (2024-05-22)\n\n\n### Features\n\n* **eslint:** update dependencies to be compatible to nx 18 ([f6b59eb](https://github.com/rx-angular/rx-angular/commit/f6b59eb687d307e1fc958f00b31487e4994a1ab1))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4017.2.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.2.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.2.0) (2024-05-19)\n\n\n### Features\n\n* **state:** add `provideRxStateConfig` function ([3ee6fda](https://github.com/rx-angular/rx-angular/commit/3ee6fda9db634d63e4555fdd946b9d5308c5878f))\n* **state:** add accumulator fn injection token ([6bb9d76](https://github.com/rx-angular/rx-angular/commit/6bb9d7666e277b8b599bcc9c42d3773ce9b335c9))\n* **state:** deprecate `setAccumulator` in favor of `withAccumulator` ([6497d6c](https://github.com/rx-angular/rx-angular/commit/6497d6caefc773656b627d230edee149c10ba79b))\n* **state:** introduce configurable scheduler ([a269ee3](https://github.com/rx-angular/rx-angular/commit/a269ee3d2d2722ceb12c8a6fc195da267bd42ca3))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4017.2.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.2.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.2.0) (2024-05-17)\n\n\n### Features\n\n* accept subscribable on rx-let input ([#1721](https://github.com/rx-angular/rx-angular/issues/1721)) ([897a5b0](https://github.com/rx-angular/rx-angular/commit/897a5b00e4101f1ab6463f4386aa7dff876dc840))\n* **template:** deprecate parent flag ([a4592e3](https://github.com/rx-angular/rx-angular/commit/a4592e3d26df6567ff4214bc907b245068ac9436))\n* **template:** implement signal support in template package ([35e7d18](https://github.com/rx-angular/rx-angular/commit/35e7d18139799a0c425652911e9a599252b9e646))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4017.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.1.0) (2024-05-17)\n\n\n### Features\n\n* **state:** add default transform function to select ([7875319](https://github.com/rx-angular/rx-angular/commit/7875319ff84a05e7706f8f6f70dc84a2234b8ebc))\n* **state:** introduce rxState asReadOnly API ([baa678f](https://github.com/rx-angular/rx-angular/commit/baa678fe264bd675c786944a2b3b60533a6235c3))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/cdk%4017.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.1.0) (2024-05-17)\n\n\n### Features\n\n* accept subscribable on rx-let input ([#1721](https://github.com/rx-angular/rx-angular/issues/1721)) ([897a5b0](https://github.com/rx-angular/rx-angular/commit/897a5b00e4101f1ab6463f4386aa7dff876dc840))\n* **template:** deprecate parent flag ([a4592e3](https://github.com/rx-angular/rx-angular/commit/a4592e3d26df6567ff4214bc907b245068ac9436))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4017.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.1.0) (2024-03-03)\n\n\n### Bug Fixes\n\n* **template:** adjust rendered range to value changes ([a9df89a](https://github.com/rx-angular/rx-angular/commit/a9df89a2e2996d2dda6b307c72e01f1fc06ce9f0))\n* **template:** properly calculate diff on update ([ce31fc5](https://github.com/rx-angular/rx-angular/commit/ce31fc520f1bb63aedc0ad52290cc82f0e74d696))\n* **template:** properly size the virtual viewport container ([13282c5](https://github.com/rx-angular/rx-angular/commit/13282c5c89974d013b883208cd2aae507fe52b1f))\n* **template:** use constructor injection for templateRef. fixes [#1616](https://github.com/rx-angular/rx-angular/issues/1616) ([25eed84](https://github.com/rx-angular/rx-angular/commit/25eed84f9252b88b732cf7f99277fdf3c46d2822))\n\n\n### Features\n\n* **template:** add a flag to disable the resizeObserver on autosize ([8091b2b](https://github.com/rx-angular/rx-angular/commit/8091b2b1790ca29d9cbece3701c4a89c13eaea28))\n* **template:** add appendOnly mode to virtual scroll strategies ([1c087fb](https://github.com/rx-angular/rx-angular/commit/1c087fb82c80010385f2552b5c7bb1ab729f36f5))\n* **template:** implement initialScrollIndex ([a81e209](https://github.com/rx-angular/rx-angular/commit/a81e20972e7b87288579ee10a9e53f134371e812))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4017.0.1",
"name": null,
"tag": "[email protected]",
"body": "## [17.0.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.1) (2024-03-03)\n\n\n### Bug Fixes\n\n* **state:** shorthand camelCase support for side effects ([c0b88e4](https://github.com/rx-angular/rx-angular/commit/c0b88e4ab51c530df887f190cc29eceee51e39f2))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/cdk%4017.0.1",
"name": null,
"tag": "[email protected]",
"body": "## [17.0.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.1) (2024-03-03)\n\n\n### Bug Fixes\n\n* **cdk:** use `globalThis` instead of `ɵglobal` in zone-config ([384c423](https://github.com/rx-angular/rx-angular/commit/384c423f999bf770a46d1d015506234abaad03a6)), closes [#1670](https://github.com/rx-angular/rx-angular/issues/1670)\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/isr%4017.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.1.0) (2024-02-05)\n\n\n### Features\n\n* add ssr-isr app for testing ([7857591](https://github.com/rx-angular/rx-angular/commit/7857591719c3237cf8988ca1bdf3356d86594230))\n* update isr to be used with application builder ([bf36e07](https://github.com/rx-angular/rx-angular/commit/bf36e0707d409e9331cc44f5545854e81cd441af))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4017.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.0) (2023-11-17)\n\n\n### Bug Fixes\n\n* bump ng-morph to v4.0.3 ([1766127](https://github.com/rx-angular/rx-angular/commit/1766127764326a471b11b4ad4c4f1b67dd12807a))\n\n\n### Features\n\n* bump Angular to v17 ([a814fb6](https://github.com/rx-angular/rx-angular/commit/a814fb66d396410e695e47a72e499a6d1cca213a))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^17.0.0`\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4017.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.0) (2023-11-17)\n\n\n### Bug Fixes\n\n* bump ng-morph to v4.0.3 ([1766127](https://github.com/rx-angular/rx-angular/commit/1766127764326a471b11b4ad4c4f1b67dd12807a))\n\n\n### Features\n\n* bump Angular to v17 ([a814fb6](https://github.com/rx-angular/rx-angular/commit/a814fb66d396410e695e47a72e499a6d1cca213a))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^17.0.0`\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/isr%4017.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.0) (2023-11-17)\n\n\n### Features\n\n* bump Angular to v17 ([a814fb6](https://github.com/rx-angular/rx-angular/commit/a814fb66d396410e695e47a72e499a6d1cca213a))\n* **isr:** add the possibility to create the cache in several variants ([#1608](https://github.com/rx-angular/rx-angular/issues/1608)) ([084f4fa](https://github.com/rx-angular/rx-angular/commit/084f4fa1f503054d9efb714b980f08f55530b09b))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^17.0.0`\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/eslint-plugin%402.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [2.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@2.0.0) (2023-11-17)\n\n\n### Features\n\n* **eslint:** migrate to `@typescript-eslint/*` v6 ([52eb431](https://github.com/rx-angular/rx-angular/commit/52eb4310e52388db74bc91a714f4feda05413b23))\n* upgrade to Angular v13 ([76ac5d3](https://github.com/rx-angular/rx-angular/commit/76ac5d3e9dbfaa2de368d7128f4c9aacb094c085))\n\n\n### BREAKING CHANGES\n\n* **eslint:** Minimum `@typescript-eslint/parser` dependency version is now set to `^6.10.0`\n* The required Angular version is now `>=13.0.0`.\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/cdk%4017.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [17.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@17.0.0) (2023-11-17)\n\n\n### Bug Fixes\n\n* bump ng-morph to v4.0.3 ([1766127](https://github.com/rx-angular/rx-angular/commit/1766127764326a471b11b4ad4c4f1b67dd12807a))\n\n\n### Features\n\n* bump Angular to v17 ([a814fb6](https://github.com/rx-angular/rx-angular/commit/a814fb66d396410e695e47a72e499a6d1cca213a))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^17.0.0`\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4016.3.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.3.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.3.0) (2023-11-01)\n\n\n### Features\n\n* expose select and get in rxState setup fn ([d04e465](https://github.com/rx-angular/rx-angular/commit/d04e4657a7e0b060895b5298cdc7a7a138474e98))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4016.2.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.2.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.2.0) (2023-11-01)\n\n\n### Bug Fixes\n\n* build errors ([e8ff6d9](https://github.com/rx-angular/rx-angular/commit/e8ff6d913a6a1a01e9bd4f9356c2649b148664b9))\n* remove eslint comment ([c166c59](https://github.com/rx-angular/rx-angular/commit/c166c59d43fcdc0d33f2790103fc9becc2d336a9))\n\n\n### Features\n\n* added computedFrom impl ([7e80dc9](https://github.com/rx-angular/rx-angular/commit/7e80dc980bd7e9ed192ef7c1f3472f55d261a362))\n* added computedFrom impl ([8e2f578](https://github.com/rx-angular/rx-angular/commit/8e2f5784cfb6b50cd440d37fc1fe30151876541d))\n* **state:** introduce signal APIs for RxState ([d42888d](https://github.com/rx-angular/rx-angular/commit/d42888d2ffeac0808af7538f240698ac5f3bf672))\n* **state:** introduce signal APIs for RxState ([ac4b5dc](https://github.com/rx-angular/rx-angular/commit/ac4b5dc21a8e4a21fd63af63abb455ca7be9daf6))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4016.1.1",
"name": null,
"tag": "[email protected]",
"body": "## [16.1.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.1.1) (2023-10-20)\n\n\n### Bug Fixes\n\n* **template:** fix view calculation in dynamic-size strategy ([f272801](https://github.com/rx-angular/rx-angular/commit/f272801e261dc929c51f7057a891ae1d592490b7))\n* **template:** properly unsubscribe from scroll event ([3e08100](https://github.com/rx-angular/rx-angular/commit/3e081001b60a0a95c9e4c1ae9eabbf90d9543e7d))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4016.1.1",
"name": null,
"tag": "[email protected]",
"body": "## [16.1.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.1.1) (2023-10-20)\n\n\n### Reverts\n\n* make state.get return readonly ([aa3425e](https://github.com/rx-angular/rx-angular/commit/aa3425e42410134f0f6eba13bb289fb79058840c))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4016.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.1.0) (2023-10-18)\n\n\n### Bug Fixes\n\n* **state:** fix build ([453127c](https://github.com/rx-angular/rx-angular/commit/453127ca395a9ff0c904ed4979c217588aad0e70))\n* **state:** fix rxEffects typing ([bf06d72](https://github.com/rx-angular/rx-angular/commit/bf06d72ec0f562cc12c145d91849e6f7c9480df1))\n* **state:** properly handle undefined ([13502e1](https://github.com/rx-angular/rx-angular/commit/13502e119919398805f8d91284f1099b5431c78a))\n\n\n### Features\n\n* **state:** expose new rxActions functional API ([9b84858](https://github.com/rx-angular/rx-angular/commit/9b84858f4e30ef4e24bc65f786eaeea7f5e62b70))\n* **state:** introduce rxEffects creation function ([226047b](https://github.com/rx-angular/rx-angular/commit/226047bd939645892976f74b5b31987765ef2244))\n* **state:** make sideEffectFn optional in ActionEffects ([22e4576](https://github.com/rx-angular/rx-angular/commit/22e45764ea310802b4c5117844eef72baffd605e))\n* **state:** make state readonly ([3067600](https://github.com/rx-angular/rx-angular/commit/3067600cb7023a2da6e6c6af284a263e9bdf42b3)), closes [#1617](https://github.com/rx-angular/rx-angular/issues/1617) [#1449](https://github.com/rx-angular/rx-angular/issues/1449)\n* **state:** only expose limited set of public API ([e264124](https://github.com/rx-angular/rx-angular/commit/e26412415ad1013791c48e1d59691575b925eb1b))\n* **template:** add `rxState` function ([26a4e0e](https://github.com/rx-angular/rx-angular/commit/26a4e0edb65f4ae658cbc2d700976d3aaacc6a87))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4016.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.1.0) (2023-08-21)\n\n\n### Features\n\n* **template:** decouple scroll-element from viewport ([9eddb36](https://github.com/rx-angular/rx-angular/commit/9eddb365a6d77a8c7a15a295c640fe151353ba4e))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4016.0.2",
"name": null,
"tag": "[email protected]",
"body": "## [16.0.2](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.0.2) (2023-07-17)\n\n\n### Bug Fixes\n\n* **template:** autosize virtual scroll handles updates with trackBy ([5d1034e](https://github.com/rx-angular/rx-angular/commit/5d1034e3a6526f684308bd29fb48dbc21f6daade))\n* **template:** virtual-scroll scrollStrategy dependency error in es2022 ([#1586](https://github.com/rx-angular/rx-angular/issues/1586)) ([45ead14](https://github.com/rx-angular/rx-angular/commit/45ead1435e1a1d881937a2d913252a9f38ed06dc))\n* **template:** virtual-scrolling rxjs 6 compat. autosize update handling ([57588ea](https://github.com/rx-angular/rx-angular/commit/57588ea236baed54086e1a3b9db340722bf7bde6))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4016.0.1",
"name": null,
"tag": "[email protected]",
"body": "## [16.0.1](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.0.1) (2023-06-22)\n\n\n### Bug Fixes\n\n* **template:** fix properties not initialized ([02b62fb](https://github.com/rx-angular/rx-angular/commit/02b62fb5da76cb3e765a35848c4961a91f96a64a)), closes [#1580](https://github.com/rx-angular/rx-angular/issues/1580)\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4016.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.0.0) (2023-06-20)\n\n\n### Bug Fixes\n\n* **template:** added tests for untracked push pipe ([5978a15](https://github.com/rx-angular/rx-angular/commit/5978a154278368aeb135bd281b64d95d5bbfb655))\n* **template:** remove `scroll` listener ([7766fbf](https://github.com/rx-angular/rx-angular/commit/7766fbf750717c9aaa5c7e42fa90ff2f679ddcd9))\n* **template:** untrack subscription and unsubscription in push pipe ([fbdbf5b](https://github.com/rx-angular/rx-angular/commit/fbdbf5b330334d46319e3790bc78265bd0a2cf74))\n\n\n### Features\n\n* bump Angular to v16 ([31621e6](https://github.com/rx-angular/rx-angular/commit/31621e6cea295a3774a7ac07b91f4df75ba95c32))\n* **template:** add migration for NgModule to standalone transition ([175a541](https://github.com/rx-angular/rx-angular/commit/175a541897e9fd1eaad82c458487ed5d9a4e5611))\n* **template:** drop ForModule ([5896d7b](https://github.com/rx-angular/rx-angular/commit/5896d7bb33ccb9e06820c703e84ad7a41108a0ef))\n* **template:** drop IfModule ([815c4ea](https://github.com/rx-angular/rx-angular/commit/815c4eac5057ae321e0f9d490b022d15390649ba))\n* **template:** drop LetModule ([6ea7361](https://github.com/rx-angular/rx-angular/commit/6ea736121785fc1cd29c3b3c0552f842d0d454d8))\n* **template:** drop PushModule ([5da7cb6](https://github.com/rx-angular/rx-angular/commit/5da7cb6c9b7c6b5c0d23777fafb0dda2d6ed7b53))\n* **template:** drop UnpatchModule ([2ab65f7](https://github.com/rx-angular/rx-angular/commit/2ab65f721352082bd31db3b3f349cc18733c96e7))\n* **template:** rename LetDirective to RxLet ([ef1e129](https://github.com/rx-angular/rx-angular/commit/ef1e1299b8af8068d289b9891634f48fe30fa27c))\n* **template:** rename PushPipe to RxPush ([808f6ff](https://github.com/rx-angular/rx-angular/commit/808f6ff85d98aebaafc6f3c59132f51d14a4cf08))\n* **template:** rename UnpatchDirective to RxUnpatch ([3a7f914](https://github.com/rx-angular/rx-angular/commit/3a7f914baa2ad3b2969a44ba572d76d9ad38f6d9))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^16.0.0`.\n* **template:** The UnpatchModule was dropped. Use the standalone import instead.\n* **template:** The UnpatchDirective was renamed to RxUnpatch\n* **template:** The PushPipe was renamed to RxPush\n* **template:** Removed PushModule, use the standalone import instead\n* **template:** Removed IfModule, use the standalone import instead\n* **template:** Removed ForModule, use the standalone import instead\n* **template:** Removed LetModule, use the standalone import instead\n* **template:** LetDirective was renamed to RxLet for consistency reasons\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/state%4016.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.0.0) (2023-06-20)\n\n\n### Features\n\n* bump Angular to v16 ([31621e6](https://github.com/rx-angular/rx-angular/commit/31621e6cea295a3774a7ac07b91f4df75ba95c32))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^16.0.0`.\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/cdk%4016.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [16.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@16.0.0) (2023-06-20)\n\n\n### Bug Fixes\n\n* **cdk:** update typing for coercing functions ([#1532](https://github.com/rx-angular/rx-angular/issues/1532)) ([cac56ab](https://github.com/rx-angular/rx-angular/commit/cac56ab631b9c408fcd11db3ba0a4f6eda083e1e)), closes [#1516](https://github.com/rx-angular/rx-angular/issues/1516)\n\n\n### Features\n\n* bump Angular to v16 ([31621e6](https://github.com/rx-angular/rx-angular/commit/31621e6cea295a3774a7ac07b91f4df75ba95c32))\n\n\n### BREAKING CHANGES\n\n* Minimum required `@angular/core` version is now `^16.0.0`.\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4015.2.0",
"name": null,
"tag": "[email protected]",
"body": "# [15.2.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.2.0) (2023-04-21)\n\n\n### Features\n\n* **template:** introduce experimental virtual-scrolling sub-package ([#1539](https://github.com/rx-angular/rx-angular/issues/1539)) ([786f87c](https://github.com/rx-angular/rx-angular/commit/786f87c24858b4cac00bb52039f48ed05588cf1d)), closes [#1542](https://github.com/rx-angular/rx-angular/issues/1542)\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4015.1.0",
"name": null,
"tag": "[email protected]",
"body": "# [15.1.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.1.0) (2023-04-13)\n\n\n### Features\n\n* **template:** migrate LetDirective to standalone API ([a342dfe](https://github.com/rx-angular/rx-angular/commit/a342dfec7ce640be6c3b6cee21accc74a9864e21))\n* **template:** migrate PushPipe to standalone API ([3ed3e97](https://github.com/rx-angular/rx-angular/commit/3ed3e973c98cc55616f1a81b07de7a6521c7d4de))\n* **template:** migrate RxFor to standalone API ([b58aa7b](https://github.com/rx-angular/rx-angular/commit/b58aa7bfe281e658b3859b4a5f80d587a1e17581))\n* **template:** migrate RxIf to standalone API ([8e2441a](https://github.com/rx-angular/rx-angular/commit/8e2441a78405bec8d49456265cfcd829c96d5f11))\n* **template:** migrate UnpatchDirective to standalone API ([caebca4](https://github.com/rx-angular/rx-angular/commit/caebca4628fe56e55e2c33216de89a366883bdcb))\n* **template:** migrate ViewportPrioDirective to standalone API ([e7c379b](https://github.com/rx-angular/rx-angular/commit/e7c379b955f2bc93b34cb383ff208298b3107db3))\n\n\n"
},
{
"link": "https://github.com/rx-angular/rx-angular/releases/tag/template%4015.0.0",
"name": null,
"tag": "[email protected]",
"body": "# [15.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.0.0) (2023-04-12)\n\n\n### Features\n\n* upgrade Angular to v15 ([a9938bc](https://github.com/rx-angular/rx-angular/commit/a9938bcb7b7df7d0557d9c682ada9cce55ad495e))\n\n\n### BREAKING CHANGES\n\n* The required `@angular/core` version is now `^15.0.0`.\n\n\n"
}
],
"scttcper/ngx-emoji-mart": [
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v9.2.0",
"name": "v9.2.0",
"tag": "v9.2.0",
"body": "# [9.2.0](https://github.com/scttcper/ngx-emoji-mart/compare/v9.1.2...v9.2.0) (2023-05-30)\n\n\n### Features\n\n* Do not trigger change detection internally on `click` ([#427](https://github.com/scttcper/ngx-emoji-mart/issues/427)) ([1291377](https://github.com/scttcper/ngx-emoji-mart/commit/1291377118b0062ae73ffab838f51cdbfc8cddf2))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v9.1.2",
"name": "v9.1.2",
"tag": "v9.1.2",
"body": "## [9.1.2](https://github.com/scttcper/ngx-emoji-mart/compare/v9.1.1...v9.1.2) (2023-05-20)\n\n\n### Bug Fixes\n\n* match sheet background function in emoji service ([16c40d5](https://github.com/scttcper/ngx-emoji-mart/commit/16c40d51ed6dd1f248bb347ba6efb996271183dc)), closes [#424](https://github.com/scttcper/ngx-emoji-mart/issues/424)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v9.1.1",
"name": "v9.1.1",
"tag": "v9.1.1",
"body": "## [9.1.1](https://github.com/scttcper/ngx-emoji-mart/compare/v9.1.0...v9.1.1) (2023-05-15)\n\n\n### Bug Fixes\n\n* number of sheetrows ([0e6488b](https://github.com/scttcper/ngx-emoji-mart/commit/0e6488b5303b74be0067ab302098004910579bd3))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v9.1.0",
"name": "v9.1.0",
"tag": "v9.1.0",
"body": "# [9.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v9.0.0...v9.1.0) (2023-05-10)\n\n\n### Features\n\n* switch to jsdelivr cdn, fix emoji sheet sizes ([f469b11](https://github.com/scttcper/ngx-emoji-mart/commit/f469b11520203a7623dbd2f2e86d98f54132a103))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v9.0.0",
"name": "v9.0.0",
"tag": "v9.0.0",
"body": "# [9.0.0](https://github.com/scttcper/ngx-emoji-mart/compare/v8.2.0...v9.0.0) (2023-05-09)\n\n\n### Features\n\n* upgrade to Angular 16 ([#421](https://github.com/scttcper/ngx-emoji-mart/issues/421)) ([bbce6c3](https://github.com/scttcper/ngx-emoji-mart/commit/bbce6c3aa32550a0258a68c5816b2cfafcea87a9))\n\n\n### BREAKING CHANGES\n\n* requires angular >16\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v8.2.0",
"name": "v8.2.0",
"tag": "v8.2.0",
"body": "# [8.2.0](https://github.com/scttcper/ngx-emoji-mart/compare/v8.1.0...v8.2.0) (2023-05-09)\n\n\n### Features\n\n* Do not trigger change detection internally on `mouseenter` ([#420](https://github.com/scttcper/ngx-emoji-mart/issues/420)) ([e574b0a](https://github.com/scttcper/ngx-emoji-mart/commit/e574b0a8aac814ee76390e84cffc4e306721a57f))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v8.1.0",
"name": "v8.1.0",
"tag": "v8.1.0",
"body": "# [8.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v8.0.0...v8.1.0) (2023-05-09)\n\n\n### Features\n\n* Do not trigger change detection internally on `mouseleave` ([#417](https://github.com/scttcper/ngx-emoji-mart/issues/417)) ([39387c8](https://github.com/scttcper/ngx-emoji-mart/commit/39387c8e0b63f0f3792212fff822395aecd01c1c))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v8.0.0",
"name": "v8.0.0",
"tag": "v8.0.0",
"body": "# [8.0.0](https://github.com/scttcper/ngx-emoji-mart/compare/v7.1.0...v8.0.0) (2023-05-09)\n\n\n### Features\n\n* upgrade to Angular 15 ([#416](https://github.com/scttcper/ngx-emoji-mart/issues/416)) ([#419](https://github.com/scttcper/ngx-emoji-mart/issues/419)) ([8bdd0f1](https://github.com/scttcper/ngx-emoji-mart/commit/8bdd0f119e84b8eed5fd7dd4e925c5120965c80b))\n\n\n### BREAKING CHANGES\n\n* requires angular 15\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v7.1.0",
"name": "v7.1.0",
"tag": "v7.1.0",
"body": "# [7.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v7.0.0...v7.1.0) (2022-11-15)\n\n\n### Features\n\n* Do not set title when undefined ([c31dda8](https://github.com/scttcper/ngx-emoji-mart/commit/c31dda82719a6f4ea47429000eb08f51c2ca31f1)), closes [#410](https://github.com/scttcper/ngx-emoji-mart/issues/410)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v7.0.0",
"name": "v7.0.0",
"tag": "v7.0.0",
"body": "# [7.0.0](https://github.com/scttcper/ngx-emoji-mart/compare/v6.2.0...v7.0.0) (2022-06-22)\n\n\n### Features\n\n* upgrade to angular 14 ([#408](https://github.com/scttcper/ngx-emoji-mart/issues/408)) ([cb8475a](https://github.com/scttcper/ngx-emoji-mart/commit/cb8475a6e9b412ea509b5ff57d7aa3e662b16f05))\n\n\n### BREAKING CHANGES\n\n* requires angular 14\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v6.2.0",
"name": "v6.2.0",
"tag": "v6.2.0",
"body": "# [6.2.0](https://github.com/scttcper/ngx-emoji-mart/compare/v6.1.1...v6.2.0) (2022-01-18)\n\n\n### Features\n\n* add css import export path ([05f16a7](https://github.com/scttcper/ngx-emoji-mart/commit/05f16a7f1832190e1d48486e7db61f1704250fc9)), closes [#400](https://github.com/scttcper/ngx-emoji-mart/issues/400)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v6.1.1",
"name": "v6.1.1",
"tag": "v6.1.1",
"body": "## [6.1.1](https://github.com/scttcper/ngx-emoji-mart/compare/v6.1.0...v6.1.1) (2021-11-15)\n\n\n### Bug Fixes\n\n* center anchor icons ([#397](https://github.com/scttcper/ngx-emoji-mart/issues/397)) ([68438a3](https://github.com/scttcper/ngx-emoji-mart/commit/68438a341f8e7b5f2782025239b1cd33669aecec))\n* Skin picker stops binding click correctly on hover ([#398](https://github.com/scttcper/ngx-emoji-mart/issues/398)) ([1b0c994](https://github.com/scttcper/ngx-emoji-mart/commit/1b0c994e282d4ebc2026d095c8c58a40fd52e827))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v6.1.0",
"name": "v6.1.0",
"tag": "v6.1.0",
"body": "# [6.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v6.0.1...v6.1.0) (2021-11-09)\n\n\n### Features\n\n* upgrade to Angular 13 and new Angular Package Format ([#394](https://github.com/scttcper/ngx-emoji-mart/issues/394)) ([b826632](https://github.com/scttcper/ngx-emoji-mart/commit/b826632fddd634bb765afe49f92d0fe9edff27fa))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v6.0.1",
"name": "v6.0.1",
"tag": "v6.0.1",
"body": "## [6.0.1](https://github.com/scttcper/ngx-emoji-mart/compare/v6.0.0...v6.0.1) (2021-08-27)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* #389 - fix: search glitch #389\r\n\r\n\r\n\r\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v6.0.0",
"name": "v6.0.0",
"tag": "v6.0.0",
"body": "# [6.0.0](https://github.com/scttcper/ngx-emoji-mart/compare/v5.1.2...v6.0.0) (2021-05-27)\n\n\n### Features\n\n* upgrade to angular 12, eslint, update emoji datasource ([6e0eba3](https://github.com/scttcper/ngx-emoji-mart/commit/6e0eba328fefdba1046ca07d5476df3b070af8f2))\n* upgrade to angular 12, eslint, update emoji datasource ([#378](https://github.com/scttcper/ngx-emoji-mart/issues/378)) ([e6fc5d7](https://github.com/scttcper/ngx-emoji-mart/commit/e6fc5d774152a7cc2195d5b608312d7bcfd5ea12))\n\n\n### BREAKING CHANGES\n\n* requires angular 12\n* adds more keywords to emojis and increases size of json\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.1.2",
"name": "v5.1.2",
"tag": "v5.1.2",
"body": "## [5.1.2](https://github.com/scttcper/ngx-emoji-mart/compare/v5.1.1...v5.1.2) (2021-05-25)\n\n\n### Bug Fixes\n\n* enable useButton flag for normally rendered emojis ([#379](https://github.com/scttcper/ngx-emoji-mart/issues/379)) ([5078454](https://github.com/scttcper/ngx-emoji-mart/commit/5078454f7e3073b243a1eca11a5f8e4807694342))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.1.1",
"name": "v5.1.1",
"tag": "v5.1.1",
"body": "## [5.1.1](https://github.com/scttcper/ngx-emoji-mart/compare/v5.1.0...v5.1.1) (2021-05-05)\n\n\n### Bug Fixes\n\n* tag recent as an input ([ab4fdab](https://github.com/scttcper/ngx-emoji-mart/commit/ab4fdab4c4b00407085ae30e85954ca7630d27b5)), closes [#374](https://github.com/scttcper/ngx-emoji-mart/issues/374)\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.1.0",
"name": "v5.1.0",
"tag": "v5.1.0",
"body": "# [5.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v5.0.2...v5.1.0) (2021-03-26)\n\n\n### Features\n\n* Optional virtualize, imageUrlFn ([#369](https://github.com/scttcper/ngx-emoji-mart/issues/369)) ([2fbbfea](https://github.com/scttcper/ngx-emoji-mart/commit/2fbbfeac31ac9f3e1d36afad2681ee5a4593acbf))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.0.2",
"name": "v5.0.2",
"tag": "v5.0.2",
"body": "## [5.0.2](https://github.com/scttcper/ngx-emoji-mart/compare/v5.0.1...v5.0.2) (2021-02-09)\n\n\n### Bug Fixes\n\n* make SSR compatible ([#367](https://github.com/scttcper/ngx-emoji-mart/issues/367)) ([3980d31](https://github.com/scttcper/ngx-emoji-mart/commit/3980d31349168237da2c2e40da971297539985e1))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.0.1",
"name": "v5.0.1",
"tag": "v5.0.1",
"body": "## [5.0.1](https://github.com/scttcper/ngx-emoji-mart/compare/v5.0.0...v5.0.1) (2021-01-31)\n\n\n### Performance Improvements\n\n* run change detection locally when emoji is mouse left ([#366](https://github.com/scttcper/ngx-emoji-mart/issues/366)) ([b57f51b](https://github.com/scttcper/ngx-emoji-mart/commit/b57f51b9f7dbefbb98727128d9bcb902a2a0b182))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v5.0.0",
"name": "v5.0.0",
"tag": "v5.0.0",
"body": "# [5.0.0](https://github.com/scttcper/ngx-emoji-mart/compare/v4.1.1...v5.0.0) (2021-01-30)\n\n\n### Bug Fixes\n\n* invoke the `handleScroll` safely ([#365](https://github.com/scttcper/ngx-emoji-mart/issues/365)) ([ef375e9](https://github.com/scttcper/ngx-emoji-mart/commit/ef375e9756214c03a9b5e712dff63d62df3e414a))\n\n\n### Performance Improvements\n\n* improve `scroll` performance ([#363](https://github.com/scttcper/ngx-emoji-mart/issues/363)) ([8b63211](https://github.com/scttcper/ngx-emoji-mart/commit/8b632119cf39d37edd8c48f494fc4751d6ee42f5))\n* run change detection locally ([#362](https://github.com/scttcper/ngx-emoji-mart/issues/362)) ([b65f6d0](https://github.com/scttcper/ngx-emoji-mart/commit/b65f6d026dcd75a935cd5d650036de050a8c35eb))\n\n\n### BREAKING CHANGES\n\n* scroll events no longer trigger change detection\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v4.1.1",
"name": "v4.1.1",
"tag": "v4.1.1",
"body": "## [4.1.1](https://github.com/scttcper/ngx-emoji-mart/compare/v4.1.0...v4.1.1) (2021-01-15)\n\n\n### Bug Fixes\n\n* EmojiService.emojiSpriteStyles' default values broken ([#360](https://github.com/scttcper/ngx-emoji-mart/issues/360)) ([80692a8](https://github.com/scttcper/ngx-emoji-mart/commit/80692a89fce0b8f41df1c968ef3e1af55b37a011))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v4.1.0",
"name": "v4.1.0",
"tag": "v4.1.0",
"body": "# [4.1.0](https://github.com/scttcper/ngx-emoji-mart/compare/v4.0.2...v4.1.0) (2020-11-06)\n\n\n### Features\n\n* Upgrade to emoji data v6 ([#353](https://github.com/scttcper/ngx-emoji-mart/issues/353)) ([b0e194d](https://github.com/scttcper/ngx-emoji-mart/commit/b0e194d9f9c20100ba0e949a623be0d27774cb36))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v4.0.2",
"name": "v4.0.2",
"tag": "v4.0.2",
"body": "## [4.0.2](https://github.com/scttcper/ngx-emoji-mart/compare/v4.0.1...v4.0.2) (2020-07-08)\n\n\n### Bug Fixes\n\n* publish to npm ([70aa8c2](https://github.com/scttcper/ngx-emoji-mart/commit/70aa8c22338066bfe2dc3824b49cb7eb28c2211b))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v4.0.1",
"name": "v4.0.1",
"tag": "v4.0.1",
"body": "## [4.0.1](https://github.com/scttcper/ngx-emoji-mart/compare/v4.0.0...v4.0.1) (2020-07-07)\n\n\n### Bug Fixes\n\n* move repo, upgrade dev dep ([76f7fbb](https://github.com/scttcper/ngx-emoji-mart/commit/76f7fbba5ca117ff6d945ca4390732d331e76f94))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v4.0.0",
"name": "v4.0.0",
"tag": "v4.0.0",
"body": "# [4.0.0](https://github.com/TypeCtrl/ngx-emoji-mart/compare/v3.1.0...v4.0.0) (2020-07-02)\n\n\n### Bug Fixes\n\n* make some types more strict ([8d3b974](https://github.com/TypeCtrl/ngx-emoji-mart/commit/8d3b9743056cbbb5ca4801ae599d01bb94a4ab52))\n\n\n### Features\n\n* upgrade to angular 10 ([15d80ae](https://github.com/TypeCtrl/ngx-emoji-mart/commit/15d80aef3d5b6ceb5ef3220628eee12aede84f9a))\n\n\n### BREAKING CHANGES\n\n* requires angular >10\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v3.1.0",
"name": "v3.1.0",
"tag": "v3.1.0",
"body": "# [3.1.0](https://github.com/TypeCtrl/ngx-emoji-mart/compare/v3.0.4...v3.1.0) (2020-04-17)\n\n\n### Features\n\n* Emoji ID added to search pool ([#328](https://github.com/TypeCtrl/ngx-emoji-mart/issues/328)) ([627ce05](https://github.com/TypeCtrl/ngx-emoji-mart/commit/627ce05fbc319c73e764abc3428617008229a473))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v3.0.4",
"name": "v3.0.4",
"tag": "v3.0.4",
"body": "## [3.0.4](https://github.com/TypeCtrl/ngx-emoji-mart/compare/v3.0.3...v3.0.4) (2020-03-24)\n\n\n### Bug Fixes\n\n* use new emoji-datasource set that matches the new emoji dataset, adjust sheet size to match closes [#316](https://github.com/TypeCtrl/ngx-emoji-mart/issues/316) ([d8bee88](https://github.com/TypeCtrl/ngx-emoji-mart/commit/d8bee8850279de01d62d9954c0765fb8ce893e96))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v3.0.3",
"name": "v3.0.3",
"tag": "v3.0.3",
"body": "## [3.0.3](https://github.com/TypeCtrl/ngx-emoji-mart/compare/v3.0.2...v3.0.3) (2020-03-17)\n\n\n### Bug Fixes\n\n* remove type=\"button\" on span emoji ([c7f3eea](https://github.com/TypeCtrl/ngx-emoji-mart/commit/c7f3eeae03f4fcd26c4d0779bccc11cc50bd5951))\n\n\n\n"
},
{
"link": "https://github.com/scttcper/ngx-emoji-mart/releases/tag/v3.0.2",
"name": "v3.0.2",
"tag": "v3.0.2",
"body": "## [3.0.2](https://github.com/TypeCtrl/ngx-emoji-mart/compare/v3.0.1...v3.0.2) (2020-03-17)\n\n\n### Bug Fixes\n\n* remove stray `console.log` ([#314](https://github.com/TypeCtrl/ngx-emoji-mart/issues/314)) ([04545c5](https://github.com/TypeCtrl/ngx-emoji-mart/commit/04545c58bb0922d8de2e2803f5179a7955f857ab))\n\n\n\n"
}
],
"ng-matero/extensions": [
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.3.2",
"name": "v17.3.2",
"tag": "v17.3.2",
"body": "### Bug Fixes\r\n\r\n- **select:** revert mat color implement"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.7",
"name": "v16.3.7",
"tag": "v16.3.7",
"body": "### Bug Fixes\r\n\r\n- fix build using Angular 17 (rebuild with Angular 16)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.6",
"name": "v16.3.6",
"tag": "v16.3.6",
"body": "- **popover:** improve panelClass implement\r\n- **grid:** use dataSource to check empty data"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.3.1",
"name": "v17.3.1",
"tag": "v17.3.1",
"body": "- **multiple:** switch to styleUrl for single stylesheets\r\n- **popover:** improve panelClass implement\r\n- **grid:** use dataSource to check empty data\r\n- **select:** use ng-select classes to add mat color"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.3.0",
"name": "v17.3.0",
"tag": "v17.3.0",
"body": "### Features\r\n\r\n- **datetimepicker:** allow calendar header customization (#302)(@CnxYankoNikolov)\r\n- **multiple:** remove dependency on NgClass\r\n- **multiple:** remove dependency on NgStyle"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.5",
"name": "v16.3.5",
"tag": "v16.3.5",
"body": "### Bug Fixes\r\n\r\n- **select**: fix `groupBy` type and add `bufferAmount` (#301)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v15.6.3",
"name": "v15.6.3",
"tag": "v15.6.3",
"body": "### Bug Fixes\r\n\r\n- **select**: fix `groupBy` type and add `bufferAmount` (#301)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v14.8.4",
"name": "v14.8.4",
"tag": "v14.8.4",
"body": "### Bug Fixes\r\n\r\n- **select**: fix `groupBy` type and add `bufferAmount` (#301)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.2.2",
"name": "v17.2.2",
"tag": "v17.2.2",
"body": "### Bug Fixes\r\n\r\n- **select**: fix `groupBy` type and add `bufferAmount` (#301)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.2.1",
"name": "v17.2.1",
"tag": "v17.2.1",
"body": "### Bug Fixes\r\n\r\n- 🚨 Move m3 styles to experimental and fix dependency error (#298)(fbb990d7b96367690f8a46f78ccdc9d5e25dd4a3)\r\n\r\nFor Material 3 themes\r\n```diff\r\n- @use '@ng-matero/extensions' as mtx;\r\n+ @use '@ng-matero/extensions/experimental' as mtx;\r\n```"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.2.0",
"name": "v17.2.0",
"tag": "v17.2.0",
"body": "### Features\r\n\r\n🎉🎉🎉 Material 3 themes (experimental) are out now! 🎉🎉🎉\r\n\r\n```scss\r\n@use '@angular/material' as mat;\r\n@use '@angular/material-experimental' as matx;\r\n@use '@ng-matero/extensions/experimental' as mtx;\r\n\r\n$light-config: (\r\n color: (\r\n theme-type: 'light',\r\n primary: matx.$m3-azure-palette,\r\n tertiary: matx.$m3-blue-palette,\r\n ),\r\n typography: ...,\r\n density: ...\r\n);\r\n\r\n// Merge the Material theme with Material Extensions theme\r\n$light-theme: mat.private-deep-merge-all(\r\n matx.define-theme($light-config),\r\n mtx.define-theme($light-config)\r\n);\r\n\r\nhtml {\r\n // Apply the base theme at the root, so it will be inherited by the whole app.\r\n @include mat.all-component-themes($light-theme);\r\n @include mtx.all-component-themes($light-theme);\r\n}\r\n```\r\n\r\n- **extensions:** support Material 3 theming and improve styles\r\n- **docs:** switch to Material 3 themes (https://ng-matero.github.io/extensions/)\r\n\r\n### BREAKING CHANGES\r\n#### rename some tokens\r\n- datetimepicker \r\n - `calendar-container-background-color` => `container-background-color`\r\n - `calendar-container-text-color` => `container-text-color`\r\n - `time-input-focus-state-border-color` => `time-input-focus-state-outline-color`\r\n - `time-input-warn-state-border-color` => `time-input-warn-state-outline-color`\r\n - `time-ampm-border-color` => `time-ampm-outline-color`\r\n- popover \r\n - `arrow-outline-color` => `outline-color`\r\n- select\r\n - `multiple-value-border-color` => `multiple-value-outline-color`"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.1.4",
"name": "v17.1.4",
"tag": "v17.1.4",
"body": "### Bug Fixes\r\n\r\n- **select:** fix error when reinit formGroup (#293)\r\n- **datetimepicker:** fix tokens and styles for m2 spec"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.4",
"name": "v16.3.4",
"tag": "v16.3.4",
"body": "### Bug Fixes\r\n\r\n- **select:** fix error when reinit formGroup\r\n- **datetimepicker:** fix tokens and styles for m2 spec"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v15.6.2",
"name": "v15.6.2",
"tag": "v15.6.2",
"body": "### Bug Fixes\r\n\r\n- **grid:** fix column checked being reset when data reload\r\n- **select:** fix error when reinit formGroup\r\n- **datetimepicker:** fix tokens and styles for m2 spec"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v14.8.3",
"name": "v14.8.3",
"tag": "v14.8.3",
"body": "### Bug Fixes\r\n\r\n- **grid:** fix column checked being reset when data reload\r\n- **select:** fix error when reinit formGroup\r\n- **datetimepicker:** fix styles for m2 spec"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.1.3",
"name": "v17.1.3",
"tag": "v17.1.3",
"body": "### Bug Fixes\r\n\r\n- fix column checked being reset when data reload (29467d3bd5dabf0ee9d3027348dd50cb36e6e447)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.3",
"name": "v16.3.3",
"tag": "v16.3.3",
"body": "### Bug Fixes\r\n\r\n- fix column checked being reset when data reload"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.1.2",
"name": "v17.1.2",
"tag": "v17.1.2",
"body": "### Bug Fixes\r\n\r\n- **core:** remove `provideNativeDateAdapter` and add `NativeDateAdapter`\r\n- **moment-adapter:** add `MomentDateAdapter`\r\n- **luxon-adapter:** add `LuxonDateAdapter`\r\n- **date-fns-adapter** add `DateFnsAdapter`"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.1.1",
"name": "v17.1.1",
"tag": "v17.1.1",
"body": "### Bug Fixes\r\n\r\n- **core:** fix the missing export `provideNativeDatetimeAdapter`\r\n- **moment-adapter:** remove `provideMomentDateAdapter`\r\n- **luxon-adapter:** remove `provideLuxonDateAdapter`\r\n- **date-fns-adapter** remove `provideDateFnsAdapter`"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.1.0",
"name": "v17.1.0",
"tag": "v17.1.0",
"body": "### Features\r\n\r\n- **multiple:** convert to standalone (#216) (dd6ccdab5ee981b009de6eba6e97ab47b6249648)\r\n- **multiple:** update APIs to be more standalone-friendly (08e762d861da290df00361c4937deb98c088de03)\r\n- **datetimepicker:** provide standalone-friendly APIs for date adapters (057de591dc756d0e854cab0230ec9a047190d8d9)\r\n - `provideMomentDatetimeAdapter` [@ng-matero/[email protected]](https://www.npmjs.com/package/@ng-matero/extensions-moment-adapter/v/17.1.0)\r\n - `provideLuxonDatetimeAdapter` [@ng-matero/[email protected]](https://www.npmjs.com/package/@ng-matero/extensions-luxon-adapter/v/17.1.0)\r\n - `provideDateFnsDatetimeAdapter` [@ng-matero/[email protected]](https://npmjs.com/package/@ng-matero/extensions-date-fns-adapter/v/17.1.0)\r\n- **select:** use mat-form-field tokens for density (0b595b1c755e1de721cbc88ea7b473adb0466187)\r\n- **docs:** convert to standalone and switch to built-in control flow\r\n- **dev-app:** convert to standalone and switch to built-in control flow"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.2",
"name": "v16.3.2",
"tag": "v16.3.2",
"body": "### Bug Fixes\r\n\r\n- **grid:** fix density for expand-button and checkbox\r\n- **grid:** fix overflow for column menu content"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v17.0.0",
"name": "v17.0.0",
"tag": "v17.0.0",
"body": "### Features\r\n\r\n- update Angular and Angular Material to v17\r\n- switch to built-in control flow\r\n- coerce boolean inputs with transform\r\n- switch to theme inspection API\r\n- add unthemable tokens\r\n- convert button loading directive to standalone (@damingerdai)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.1",
"name": "v16.3.1",
"tag": "v16.3.1",
"body": "### Bug Fixes\r\n\r\n- **select:** fix event param undefined (#271)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.3.0",
"name": "v16.3.0",
"tag": "v16.3.0",
"body": "### BREAKING CHANGES\r\n\r\n- **grid:** remove the image preview feature, you can achieve it with the directive `mtxPhotoviewer`.\r\n\r\n ```html\r\n <mtx-grid [data]=\"list\" \r\n [columns]=\"columns\" \r\n [cellTemplate]=\"{avatar: avatarTpl}\" />\r\n \r\n <ng-template #avatarTpl let-row>\r\n <img class=\"mtx-grid-img\" mtxPhotoviewer [src]=\"row.avatar\" alt=\"\">\r\n </ng-template>\r\n ```\r\n\r\n### Features\r\n\r\n- add new module `MtxPhotoviewerModule`. If you want to use the module, you should import the styles by yourself.\r\n\r\n ```ts\r\n import { MtxPhotoviewerModule } from '@ng-matero/extensions/photoviewer';\r\n ```\r\n ```scss\r\n @use 'photoviewer';\r\n ```\r\n- **grid:** add new event `rowContextMenu` ([context menu example](https://ng-matero.github.io/extensions/components/grid/overview#context-menu)) (#189)\r\n- **popover:** add new option `hideArrow` (#269)\r\n- **column-resize:** rebuild theme with tokens\r\n"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.2.0",
"name": "v16.2.0",
"tag": "v16.2.0",
"body": "### BREAKING CHANGES\r\n\r\n- remove `mtx-slider`, please use `mat-slider` instead\r\n- **grid:** remove `photoviewer` styles in theming file. If you want to use the image preview feature, you should import the styles by yourself.\r\n\r\n ```diff\r\n + @use 'photoviewer';\r\n ```\r\n- **grid:** rename `rowSelectionChange` to `rowSelectedChange`, so it supports two-way binding\r\n\r\n ```html\r\n <mtx-grid [(rowSelected)]=\"rowSelected\" />\r\n ```\r\n\r\n- **grid:** rename `cellSelectionChange` to `cellSelectedChange`\r\n\r\n\r\n### Features\r\n\r\n- **alert:** rebuild theme with tokens and improve dark colors\r\n- **colorpicker:** rebuild theme with tokens\r\n- **datetimepicker:** rebuild theme with tokens and support `mat-form-field` color\r\n- **drawer:** rebuild theme with tokens\r\n- **grid:** rebuild theme with tokens\r\n- **loader:** rebuild theme with tokens\r\n- **popover:** rebuild theme with tokens\r\n- **progress:** rebuild theme with tokens and improve dark colors\r\n- **select:** rebuild theme with tokens and support `mat-form-field` color\r\n- **split:** rebuild theme with tokens"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.1.3",
"name": "v16.1.3",
"tag": "v16.1.3",
"body": "### Bug Fixes\r\n\r\n- **grid:** fix align center issue for header cell (2f06e6dfece3dd99ac6b87809661606506f98436)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.1.2",
"name": "v16.1.2",
"tag": "v16.1.2",
"body": "- **select:** improve styles for clear and arrow icon (2131f9f1ec02d92318ca2a6cb81196ef0beb5444)"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v16.1.1",
"name": "v16.1.1",
"tag": "v16.1.1",
"body": "### Bug Fixes\r\n\r\n- **datetimepicker:** do not set time when `mtxDatetimepickerFilter` is set and disallowing the time"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v15.6.1",
"name": "v15.6.1",
"tag": "v15.6.1",
"body": "### Bug Fixes\r\n\r\n- **datetimepicker:** do not set time when `mtxDatetimepickerFilter` is set and disallowing the time"
},
{
"link": "https://github.com/ng-matero/extensions/releases/tag/v14.8.2",
"name": "v14.8.2",
"tag": "v14.8.2",
"body": "### Bug Fixes\r\n\r\n- **datetimepicker:** do not set time when `mtxDatetimepickerFilter` is set and disallowing the time"
}
],
"ng-select/ng-select": [
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.2.0",
"name": "v13.2.0",
"tag": "v13.2.0",
"body": "# [13.2.0](https://github.com/ng-select/ng-select/compare/v13.1.1...v13.2.0) (2024-05-24)\n\n\n### Features\n\n* Used new Control Flow syntax ([#2386](https://github.com/ng-select/ng-select/issues/2386)) ([6714b65](https://github.com/ng-select/ng-select/commit/6714b6535518834034bdf5d4b9a6e26b5049d546))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.1.1",
"name": "v13.1.1",
"tag": "v13.1.1",
"body": "## [13.1.1](https://github.com/ng-select/ng-select/compare/v13.1.0...v13.1.1) (2024-05-24)\n\n\n### Bug Fixes\n\n* Shift+Tab should not focus on clear icon ([#2371](https://github.com/ng-select/ng-select/issues/2371)) ([54edaad](https://github.com/ng-select/ng-select/commit/54edaad2e1eb13597987e552da5fad5d114e8e08)), closes [#2366](https://github.com/ng-select/ng-select/issues/2366)\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.1.0",
"name": "v13.1.0",
"tag": "v13.1.0",
"body": "# [13.1.0](https://github.com/ng-select/ng-select/compare/v13.0.4...v13.1.0) (2024-05-24)\n\n\n### Features\n\n* add boolean and number transformers ([#2333](https://github.com/ng-select/ng-select/issues/2333)) ([30ff11e](https://github.com/ng-select/ng-select/commit/30ff11e1f27431beb068a9bec5a86994d453e6a1))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.0.4",
"name": "v13.0.4",
"tag": "v13.0.4",
"body": "## [13.0.4](https://github.com/ng-select/ng-select/compare/v13.0.3...v13.0.4) (2024-05-23)\n\n\n### Bug Fixes\n\n* Update semantic release to 23.1.1 ([#2383](https://github.com/ng-select/ng-select/issues/2383)) ([185a364](https://github.com/ng-select/ng-select/commit/185a3641f2bfe0d25d7c375c7e20163cd726a897))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.0.3",
"name": "v13.0.3",
"tag": "v13.0.3",
"body": "## [13.0.3](https://github.com/ng-select/ng-select/compare/v13.0.2...v13.0.3) (2024-05-23)\n\n\n### Bug Fixes\n\n* allow undefined items ([#2342](https://github.com/ng-select/ng-select/issues/2342)) ([b8662ed](https://github.com/ng-select/ng-select/commit/b8662edcb603a3ae933f3f8275d905bea28dce39))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.0.2",
"name": "v13.0.2",
"tag": "v13.0.2",
"body": "## [13.0.2](https://github.com/ng-select/ng-select/compare/v13.0.1...v13.0.2) (2024-05-23)\n\n\n### Bug Fixes\n\n* **panel:** keep the panel open when scrollbar is clicked [#2091](https://github.com/ng-select/ng-select/issues/2091) ([#2359](https://github.com/ng-select/ng-select/issues/2359)) ([c02a6c4](https://github.com/ng-select/ng-select/commit/c02a6c4eebe7ea628f60a71baee187c53781d788))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.0.1",
"name": "v13.0.1",
"tag": "v13.0.1",
"body": "## [13.0.1](https://github.com/ng-select/ng-select/compare/v13.0.0...v13.0.1) (2024-05-23)\n\n\n### Bug Fixes\n\n* update public-api.ts ([74b62ff](https://github.com/ng-select/ng-select/commit/74b62ffb30a2414141cd30a5e0f1ca953560323e))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v13.0.0",
"name": "v13.0.0",
"tag": "v13.0.0",
"body": "# [13.0.0](https://github.com/ng-select/ng-select/compare/v12.0.7...v13.0.0) (2024-05-23)\r\n\r\n\r\n### Features\r\n\r\n* **core:** adds angular 18 support ([#2379](https://github.com/ng-select/ng-select/issues/2379)) ([67ee9ef](https://github.com/ng-select/ng-select/commit/67ee9ef56488df4723e036a20c0ccec494648daa)) and ([#2380](https://github.com/ng-select/ng-select/issues/2380)) ([473d28a](https://github.com/ng-select/ng-select/commit/473d28ae0fd71472245755097807a124cffa8384))\r\n\r\n\r\n\r\n### BREAKING CHANGES\r\n\r\n* **core:** adds angular 18 support\r\n\r\n\r\n\r\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.7",
"name": "v12.0.7",
"tag": "v12.0.7",
"body": "## [12.0.7](https://github.com/ng-select/ng-select/compare/v12.0.6...v12.0.7) (2024-02-05)\n\n\n### Bug Fixes\n\n* **ng-select:** isOpen is optional as noted in the README ([#2322](https://github.com/ng-select/ng-select/issues/2322)) ([9b694ba](https://github.com/ng-select/ng-select/commit/9b694bacdad16ee73a2d333c0cecfe7fc79f7f2d))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.6",
"name": "v12.0.6",
"tag": "v12.0.6",
"body": "## [12.0.6](https://github.com/ng-select/ng-select/compare/v12.0.5...v12.0.6) (2024-01-10)\n\n\n### Bug Fixes\n\n* stackblitz examples ([#2329](https://github.com/ng-select/ng-select/issues/2329)) ([5549b67](https://github.com/ng-select/ng-select/commit/5549b67ef8d0d3c532eade7c90934f80daa210e6))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.5",
"name": "v12.0.5",
"tag": "v12.0.5",
"body": "## [12.0.5](https://github.com/ng-select/ng-select/compare/v12.0.4...v12.0.5) (2024-01-10)\n\n\n### Bug Fixes\n\n* Error while scrolling when encapsulated in shadow DOM ([#2277](https://github.com/ng-select/ng-select/issues/2277)) ([2308f6d](https://github.com/ng-select/ng-select/commit/2308f6de6e73e024a8667c65a3028ac712a11f93)), closes [#2271](https://github.com/ng-select/ng-select/issues/2271)\n* revert yarn packageManager to 1.x ([c3bfd48](https://github.com/ng-select/ng-select/commit/c3bfd48acd3b77a09eabf225134c413db62e67e6))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.4",
"name": "v12.0.4",
"tag": "v12.0.4",
"body": "## [12.0.4](https://github.com/ng-select/ng-select/compare/v12.0.3...v12.0.4) (2023-11-08)\n\n\n### Bug Fixes\n\n* **docs:** updates docs relative path ([#2318](https://github.com/ng-select/ng-select/issues/2318)) ([c611d94](https://github.com/ng-select/ng-select/commit/c611d94d31dab2daf0bdf095cf74204421314d6b))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.3",
"name": "v12.0.3",
"tag": "v12.0.3",
"body": "## [12.0.3](https://github.com/ng-select/ng-select/compare/v12.0.2...v12.0.3) (2023-11-08)\n\n\n### Bug Fixes\n\n* **docs:** fixes an issue with build ([#2317](https://github.com/ng-select/ng-select/issues/2317)) ([2b57996](https://github.com/ng-select/ng-select/commit/2b5799637e1635f1cd383ba9de9cb6f7c892d1c5))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.2",
"name": "v12.0.2",
"tag": "v12.0.2",
"body": "## [12.0.2](https://github.com/ng-select/ng-select/compare/v12.0.1...v12.0.2) (2023-11-08)\n\n\n### Bug Fixes\n\n* **docs:** fixes an issue with build ([#2316](https://github.com/ng-select/ng-select/issues/2316)) ([3c88a5c](https://github.com/ng-select/ng-select/commit/3c88a5ccb106629575de607fe4a84baac200c2a7))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.1",
"name": "v12.0.1",
"tag": "v12.0.1",
"body": "## [12.0.1](https://github.com/ng-select/ng-select/compare/v12.0.0...v12.0.1) (2023-11-08)\n\n\n### Bug Fixes\n\n* **docs:** fixes docs 404 error ([#2315](https://github.com/ng-select/ng-select/issues/2315)) ([6bebf52](https://github.com/ng-select/ng-select/commit/6bebf52207d4e65c5c84c1a1736cc183ba8eee0e))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v12.0.0",
"name": "v12.0.0",
"tag": "v12.0.0",
"body": "# [12.0.0](https://github.com/ng-select/ng-select/compare/v11.2.0...v12.0.0) (2023-11-08)\n\n\n### Features\n\n* **core:** adds angular 17 support ([#2296](https://github.com/ng-select/ng-select/issues/2296)) ([765e167](https://github.com/ng-select/ng-select/commit/765e1679b2f4dca317b353a0e6756c46a275c42b))\n\n\n### BREAKING CHANGES\n\n* **core:** adds angular 17 support\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v11.2.0",
"name": "v11.2.0",
"tag": "v11.2.0",
"body": "# [11.2.0](https://github.com/ng-select/ng-select/compare/v11.1.2...v11.2.0) (2023-10-23)\n\n\n### Features\n\n* updates bootstrap 5 support and updates `@ng-bootstrap/ng-bootstrap` to v16 compatable version ([#2299](https://github.com/ng-select/ng-select/issues/2299)) ([154c45d](https://github.com/ng-select/ng-select/commit/154c45db1377b4cff2e92991dfc96f0930a81905))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v11.1.2",
"name": "v11.1.2",
"tag": "v11.1.2",
"body": "## [11.1.2](https://github.com/ng-select/ng-select/compare/v11.1.1...v11.1.2) (2023-10-22)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **fix(ng-option):** Remove event emits full ng-select model instead of direct value ([#2289](https://github.com/ng-select/ng-select/issues/2289)) ([ed429fb](https://github.com/ng-select/ng-select/commit/ed429fb9414322efd3962c79fb191f884140c120))\r\n* **fix(ng-option)**: feat: Make select with [searchable]=\"false\" focused on click and with keyboard #2229\r\n* **feat**: Add Clear Button keyboard accessibility #2245\r\n\r\n\r\n\r\n\r\n\r\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v11.1.1",
"name": "v11.1.1",
"tag": "v11.1.1",
"body": "## [11.1.1](https://github.com/ng-select/ng-select/compare/v11.1.0...v11.1.1) (2023-07-31)\n\n\n### Bug Fixes\n\n* **cicd:** updates release.yml ([#2265](https://github.com/ng-select/ng-select/issues/2265)) ([e12d9a6](https://github.com/ng-select/ng-select/commit/e12d9a6b2e4d47bacb76b51df77e3bb10b2b7c9c))\n* updates release.yml ([#2269](https://github.com/ng-select/ng-select/issues/2269)) ([3d3e093](https://github.com/ng-select/ng-select/commit/3d3e093a20e4dd7022401c73986d905e728b1fa8))\n* updates release.yml [#2268](https://github.com/ng-select/ng-select/issues/2268) ([72a1d58](https://github.com/ng-select/ng-select/commit/72a1d5867fce719a6d0068fb620b20ada17b1bcc))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v11.1.0",
"name": "v11.1.0",
"tag": "v11.1.0",
"body": "# [11.1.0](https://github.com/ng-select/ng-select/compare/v11.0.0...v11.1.0) (2023-07-31)\n\n\n### Features\n\n* deselect option from dropdown in single select ([#2175](https://github.com/ng-select/ng-select/issues/2175)) ([a4ebf0e](https://github.com/ng-select/ng-select/commit/a4ebf0ede1d00d44e473239eaa7af7ca27406910)), closes [#2053](https://github.com/ng-select/ng-select/issues/2053)\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v11.0.0",
"name": "v11.0.0",
"tag": "v11.0.0",
"body": "# [11.0.0](https://github.com/ng-select/ng-select/compare/v10.0.4...v11.0.0) (2023-05-25)\n\n\n### Bug Fixes\n\n* ng-dropdown-panel for a11y improvements ([#2199](https://github.com/ng-select/ng-select/issues/2199)) ([f5e6cc5](https://github.com/ng-select/ng-select/commit/f5e6cc5670266f36e28aa94fa8e23574d6aeb529))\n\n\n### Features\n\n* **core:** adds angular 16 support ([#2224](https://github.com/ng-select/ng-select/issues/2224)) ([b1d624f](https://github.com/ng-select/ng-select/commit/b1d624f5321aca24f9265f8ff4b0ebf24356b32c))\n\n\n### BREAKING CHANGES\n\n* **core:** adds angular 16 support\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v10.0.4",
"name": "v10.0.4",
"tag": "v10.0.4",
"body": "## [10.0.4](https://github.com/ng-select/ng-select/compare/v10.0.3...v10.0.4) (2023-03-24)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **deps:** bump dns-packet from 5.3.1 to 5.4.0 ([#2205](https://github.com/ng-select/ng-select/issues/2205)) ([1497f19](https://github.com/ng-select/ng-select/commit/1497f19df6c31580b90cb3780f005aaf2b278eed))\r\n* **fix**: setting focus to input element only if its not readonly, fixes 2133 #2134\r\n\r\n\r\n\r\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v10.0.3",
"name": "v10.0.3",
"tag": "v10.0.3",
"body": "## [10.0.3](https://github.com/ng-select/ng-select/compare/v10.0.2...v10.0.3) (2023-01-03)\n\n\n### Bug Fixes\n\n* update pkg for stackblitz examples ([ef9025b](https://github.com/ng-select/ng-select/commit/ef9025be7cc8724bb7bff190b63e6a0ab5ae4e2a))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v10.0.2",
"name": "v10.0.2",
"tag": "v10.0.2",
"body": "## [10.0.2](https://github.com/ng-select/ng-select/compare/v10.0.1...v10.0.2) (2023-01-03)\n\n\n### Bug Fixes\n\n* update pkg for stackblitz examples ([047d367](https://github.com/ng-select/ng-select/commit/047d36752dea934b029809bc9ef576632fdcb915))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v10.0.1",
"name": "v10.0.1",
"tag": "v10.0.1",
"body": "## [10.0.1](https://github.com/ng-select/ng-select/compare/v10.0.0...v10.0.1) (2022-11-25)\n\n\n### Bug Fixes\n\n* updated peerDependencies to allow angular 15.* ([#2169](https://github.com/ng-select/ng-select/issues/2169)) ([d7a3900](https://github.com/ng-select/ng-select/commit/d7a3900c777f8768e81bdba7e96bb74e1a32d881))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v10.0.0",
"name": "v10.0.0",
"tag": "v10.0.0",
"body": "# [10.0.0](https://github.com/ng-select/ng-select/compare/v9.1.0...v10.0.0) (2022-11-17)\n\n\n### Features\n\n* **core:** adds angular 15 support ([#2163](https://github.com/ng-select/ng-select/issues/2163)) ([bac7596](https://github.com/ng-select/ng-select/commit/bac7596b0e535fe94e90149c71adde72e8d448e0))\n\n\n### BREAKING CHANGES\n\n* **core:** adds angular 15 support\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v9.1.0",
"name": "v9.1.0",
"tag": "v9.1.0",
"body": "# [9.1.0](https://github.com/ng-select/ng-select/compare/v9.0.3...v9.1.0) (2022-11-14)\n\n\n### Features\n\n* **bootstrap:** adds bootstrap 5 support ([#2161](https://github.com/ng-select/ng-select/issues/2161)) ([2e87a07](https://github.com/ng-select/ng-select/commit/2e87a078a2a38b1f8d5faca494b34413452c5081))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v9.0.3",
"name": "v9.0.3",
"tag": "v9.0.3",
"body": "## [9.0.3](https://github.com/ng-select/ng-select/compare/v9.0.2...v9.0.3) (2022-11-10)\n\n\n### Bug Fixes\n\n* add css exports to package.json ([#2119](https://github.com/ng-select/ng-select/issues/2119)) ([ce2fb96](https://github.com/ng-select/ng-select/commit/ce2fb96ec81cf57201fed8116dd013c40140eefa))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v9.0.2",
"name": "v9.0.2",
"tag": "v9.0.2",
"body": "## [9.0.2](https://github.com/ng-select/ng-select/compare/v9.0.1...v9.0.2) (2022-06-27)\n\n\n### Bug Fixes\n\n* update package.json deps ([#2099](https://github.com/ng-select/ng-select/issues/2099)) ([8802333](https://github.com/ng-select/ng-select/commit/88023334b09b61b4086af0536bb8a92bc383bd91))\n\n\n\n"
},
{
"link": "https://github.com/ng-select/ng-select/releases/tag/v9.0.1",
"name": "v9.0.1",
"tag": "v9.0.1",
"body": "## [9.0.1](https://github.com/ng-select/ng-select/compare/v9.0.0...v9.0.1) (2022-06-10)\n\n\n### Bug Fixes\n\n* **docs:** fixes a bug that does not display docs ([#2096](https://github.com/ng-select/ng-select/issues/2096)) ([79eeaf3](https://github.com/ng-select/ng-select/commit/79eeaf31db5ac5782358af7a4556e4fd4b142bfd))\n\n\n\n"
}
],
"ngneat/cashew": [],
"valor-software/ngx-bootstrap": [
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v11.0.0",
"name": "v11.0.0",
"tag": "v11.0.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v10.3.0",
"name": "v10.3.0",
"tag": "v10.3.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v10.2.1",
"name": "v10.2.1",
"tag": "v10.2.1",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v10.2.0",
"name": "v10.2.0",
"tag": "v10.2.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v10.1.0",
"name": "v10.1.0",
"tag": "v10.1.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v10.0.0",
"name": "v10.0.0",
"tag": "v10.0.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v9.0.0",
"name": "v9.0.0",
"tag": "v9.0.0",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v9.0.0-RC.2",
"name": "v9.0.0-RC.2",
"tag": "v9.0.0-RC.2",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v9.0.0-RC.1",
"name": "v9.0.0-RC.1",
"tag": "v9.0.0-RC.1",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0",
"name": "v8.0.0",
"tag": "v8.0.0",
"body": "Most notable changes for v8 release:\r\n- added support for **Angular v13**, while still compatible with Angular v12, if your application is compiled in ivy mode\r\n- in v7.1 we have added a support for **Bootstrap 5** and in v8 it has become the default, you are able to continue use **Bootstrap 4** if needed\r\n- support for **Bootstrap 3** has been discontinued, however it may still be usable with v8, there are no guarantees it will work as expected, and is not suggested\r\n- the old datepicker which was deprecated since v6 version was removed for good, please use `BsDatepicker`\r\n- and last but not least, hopefully you are enjoying the new look of our documentation\r\n\r\nLike, Subscribe, Stay tuned ;)\r\n\r\nRegards, @valorkin\r\n\r\n### BREAKING CHANGES\r\n\r\n* **datepicker:** dropped old version of datepicker ([#6391](https://github.com/valor-software/ngx-bootstrap/issues/6391)) ([85f56bb](https://github.com/valor-software/ngx-bootstrap/commit/85f56bb08ae865d89e26fa6a01cf558a3693bc62))\r\n\r\n* **bootstrap:** bs5 set as default ([#6405](https://github.com/valor-software/ngx-bootstrap/issues/6405)) ([7849793](https://github.com/valor-software/ngx-bootstrap/commit/78497930c8f9e42ce91ae546b7d5560369781184))\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **datepicker:** fixed error while cleaning input for daterangepicker ([#6407](https://github.com/valor-software/ngx-bootstrap/issues/6407)) ([fc5f05c](https://github.com/valor-software/ngx-bootstrap/commit/fc5f05c4adbe44157b212b0e9c5598c2b95d0a80))\r\n* **datepicker:** fixed clear button in datepicker ([#6338](https://github.com/valor-software/ngx-bootstrap/issues/6338)) ([12e050f](https://github.com/valor-software/ngx-bootstrap/commit/12e050fab9b002169051a363a9fe2dc22edbdecc))\r\n* **datepicker:** fixed inline datepicker subscriptions ([#6339](https://github.com/valor-software/ngx-bootstrap/issues/6339)) ([2e85bac](https://github.com/valor-software/ngx-bootstrap/commit/2e85bac1c5f77a6ca61f9fce7a75a67a42c1b609))\r\n* **datepicker:** fixed enabled/diabled dates ([#6355](https://github.com/valor-software/ngx-bootstrap/issues/6355)) ([f247b18](https://github.com/valor-software/ngx-bootstrap/commit/f247b187d67eb664dc44b759acde2595a20cf69c))\r\n* **progressbar:** fixed error Cannot read properties of undefined (reading 'currentValue') ([#6409](https://github.com/valor-software/ngx-bootstrap/issues/6409)) ([df7bdba](https://github.com/valor-software/ngx-bootstrap/commit/df7bdba9f0c23be4024d9ff7524094122ffadba2))\r\n* **typeahead:** fixed exports of typeahead lib ([#6402](https://github.com/valor-software/ngx-bootstrap/issues/6402)) ([fbe749c](https://github.com/valor-software/ngx-bootstrap/commit/fbe749cbae3914178ea80d4e3e1506ca308b7815))\r\n* **component-loader:** don't remove elemenent if component is detached fix [#6358](https://github.com/valor-software/ngx-bootstrap/issues/6358) ([425db25](https://github.com/valor-software/ngx-bootstrap/commit/425db25796b504d1a2967dc6a45c860821f79799))\r\n* **build:** add manual exports for root package ([136a85e](https://github.com/valor-software/ngx-bootstrap/commit/136a85e05b78cd6104a6a96d58388782dcc731bb))\r\n* **core:** updated peer deps and added license mentions of secondary entry points (fixes [#6371](https://github.com/valor-software/ngx-bootstrap/issues/6371)) ([dfb957f](https://github.com/valor-software/ngx-bootstrap/commit/dfb957f382b51ea99890354b58c35345cca7158f))\r\n* **popover:** added a space between containerClass and checkMarginNecessity() ([#6352](https://github.com/valor-software/ngx-bootstrap/issues/6352)) ([757292b](https://github.com/valor-software/ngx-bootstrap/commit/757292b301ce47ce1802bde560c7498efbee4b61))\r\n* **build:** change build folder structure in order to work properly with nx 13 ([8bfbfa5](https://github.com/valor-software/ngx-bootstrap/commit/8bfbfa568f7eeac718438885c3003ea1c1d6f563))\r\n* **build:** fix api docs api generation ([c275900](https://github.com/valor-software/ngx-bootstrap/commit/c275900ae7151eb56b2ab3308f278be47b2c15e8))\r\n\r\n\r\n### Features\r\n\r\n* **datepicker:** prevent overflow if adaptivePosition is set to true ([#6408](https://github.com/valor-software/ngx-bootstrap/issues/6408)) ([a43f6c2](https://github.com/valor-software/ngx-bootstrap/commit/a43f6c25c977e43a04162d1cd16937c06a595184))\r\n* **schematics:** change Bootstrap version to 5 ([cf39d34](https://github.com/valor-software/ngx-bootstrap/commit/cf39d348f34318ce403edad3de1f751cd8a90165))\r\n* **datepicker:** add Spanish (Puerto Rico) [es-pr] locale ([#6374](https://github.com/valor-software/ngx-bootstrap/issues/6374)) ([13a4b92](https://github.com/valor-software/ngx-bootstrap/commit/13a4b92133746b36a93e54e680391e60b1273aa5))\r\n* **datepicker:** BREAKING CHANGE dropped old version of datepicker ([#6391](https://github.com/valor-software/ngx-bootstrap/issues/6391)) ([85f56bb](https://github.com/valor-software/ngx-bootstrap/commit/85f56bb08ae865d89e26fa6a01cf558a3693bc62))\r\n* **documentation:** updated use-cases ([#6360](https://github.com/valor-software/ngx-bootstrap/issues/6360)) ([fa365cf](https://github.com/valor-software/ngx-bootstrap/commit/fa365cf1bd7e56a0b4824b586c997a86ce5b4307)), closes [#6359](https://github.com/valor-software/ngx-bootstrap/issues/6359)\r\n* **documentation:** Documentation UI update ([#6305](https://github.com/valor-software/ngx-bootstrap/issues/6305)) ([bd81f14](https://github.com/valor-software/ngx-bootstrap/commit/bd81f14ca80fbdd5a845f828496f2ebe1efa4981)), closes [#6364](https://github.com/valor-software/ngx-bootstrap/issues/6364)\r\n\r\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0-RC.9",
"name": "v8.0.0-RC.9",
"tag": "v8.0.0-RC.9",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0-RC.8",
"name": "v8.0.0-RC.8",
"tag": "v8.0.0-RC.8",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0-RC.5",
"name": "v8.0.0-RC.5",
"tag": "v8.0.0-RC.5",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0-RC.4",
"name": "v8.0.0-RC.4",
"tag": "v8.0.0-RC.4",
"body": "\n\n\n"
},
{
"link": "https://github.com/valor-software/ngx-bootstrap/releases/tag/v8.0.0-RC.3",
"name": "v8.0.0-RC.3",