This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.html
4218 lines (4187 loc) · 373 KB
/
changelog.html
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>@deja-js/component documentation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top visible-xs">
<a href="./" class="navbar-brand">@deja-js/component documentation</a>
<button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button>
</div>
<div class="xs-menu menu" id="mobile-menu">
<div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu>
</div>
<div class="container-fluid main">
<div class="row main">
<div class="hidden-xs menu">
<compodoc-menu mode="normal"></compodoc-menu>
</div>
<!-- START CONTENT -->
<div class="content getting-started">
<div class="content-data">
<p><a name="4.1.2"></a></p>
<h2 id="4-1-2-2019-01-24-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.1.1...v4.1.2">4.1.2</a> (2019-01-24)</h2>
<p><a name="4.1.1"></a></p>
<h2 id="4-1-1-2019-01-24-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.1.0...v4.1.1">4.1.1</a> (2019-01-24)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaTileGroup:</strong> fix wrong imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/97b2b2d">97b2b2d</a>)</li>
</ul>
<p><a name="4.1.0"></a></p>
<h1 id="4-1-0-2019-01-23-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.5...v4.1.0">4.1.0</a> (2019-01-23)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li>package.json to reduce vulnerabilities (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4b7a492">4b7a492</a>)</li>
<li>package.json to reduce vulnerabilities (<a href="https://github.com/DSI-HUG/dejajs-components/commit/611671b">611671b</a>)</li>
<li><strong>DatePickerComponent:</strong> Component change detection is OnPush, so we must force the view to refresh when the disable state changes (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a0fb9d1">a0fb9d1</a>)</li>
<li><strong>NumericStepperComponent:</strong> Label should float is value is 0. Convert value to number if it's a number, set to null otherwise (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bb2f264">bb2f264</a>)</li>
<li><strong>TileGroup:</strong> fix imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ee405d6">ee405d6</a>)</li>
<li><strong>TileGroup:</strong> Selected border and flex issues (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c349c61">c349c61</a>)</li>
<li><strong>yarn:</strong> EventStream version issue (<a href="https://github.com/DSI-HUG/dejajs-components/commit/776064b">776064b</a>)</li>
<li><strong>Yarn:</strong> Regenerate yarn lock (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2d24776">2d24776</a>)</li>
<li><strong>Yarn:</strong> Update yarn lock (<a href="https://github.com/DSI-HUG/dejajs-components/commit/88d9e9b">88d9e9b</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>TileGroup:</strong> add border customization (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8d37930">8d37930</a>)</li>
<li><strong>TileGroup:</strong> add border positions selection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/11543b6">11543b6</a>)</li>
<li><strong>TileGroup:</strong> border customization + fix ckeditor bug (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0e74b40">0e74b40</a>)</li>
<li><strong>TileGroup:</strong> html edition (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5761268">5761268</a>)</li>
<li><strong>TileGroup:</strong> small refactoring tileGroupComponent (<a href="https://github.com/DSI-HUG/dejajs-components/commit/17ea9b7">17ea9b7</a>)</li>
<li><strong>TileGroup:</strong> use inline deja-editor for html edition (<a href="https://github.com/DSI-HUG/dejajs-components/commit/eb1b421">eb1b421</a>)</li>
</ul>
<p><a name="4.0.5"></a></p>
<h2 id="4-0-5-2018-11-20-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.4...v4.0.5">4.0.5</a> (2018-11-20)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ColorSelector:</strong> Synchronize model when selected color is set (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cfe5988">cfe5988</a>)</li>
<li><strong>ContentEditable:</strong> Fix carriage return missng at initialisation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5fda8b2">5fda8b2</a>)</li>
</ul>
<p><a name="4.0.4"></a></p>
<h2 id="4-0-4-2018-10-31-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.3...v4.0.4">4.0.4</a> (2018-10-31)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaContentEditable:</strong> Allow HTML in content editable (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0650257">0650257</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> validation with mat-form-field (<a href="https://github.com/DSI-HUG/dejajs-components/commit/733afed">733afed</a>)</li>
</ul>
<p><a name="4.0.3"></a></p>
<h2 id="4-0-3-2018-10-26-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.2...v4.0.3">4.0.3</a> (2018-10-26)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaGrid:</strong> Call ItemMatch for parent rows also (<a href="https://github.com/DSI-HUG/dejajs-components/commit/be1209e">be1209e</a>)</li>
<li><strong>ItemListService:</strong> getVisibleList only display parent items when visible != false (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ff12cc6">ff12cc6</a>)</li>
</ul>
<p><a name="4.0.2"></a></p>
<h2 id="4-0-2-2018-10-25-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.1...v4.0.2">4.0.2</a> (2018-10-25)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaDatePickerComponent:</strong> showCurrentDateButton not visible anymore when control is disabled (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4667044">4667044</a>)</li>
<li><strong>DejaMouseDragDrop:</strong> Fix icon elemnt null pointer (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c86e405">c86e405</a>)</li>
<li><strong>DejanumericStepperComponent:</strong> Display unit when label should float + add boolean to force value (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9db5ab2">9db5ab2</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> Fix input size (<a href="https://github.com/DSI-HUG/dejajs-components/commit/05e207d">05e207d</a>)</li>
<li><strong>Global:</strong> Ensure type for buttons (<a href="https://github.com/DSI-HUG/dejajs-components/commit/595f81e">595f81e</a>)</li>
<li><strong>Popup:</strong> Fix missing icons (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bae9b34">bae9b34</a>)</li>
</ul>
<p><a name="4.0.1"></a></p>
<h2 id="4-0-1-2018-10-17-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.0...v4.0.1">4.0.1</a> (2018-10-17)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ColorPicker:</strong> Possible null exception (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0353989">0353989</a>)</li>
<li><strong>DatePickerComponent:</strong> Date picker validation with mat-form-field (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4be1382">4be1382</a>)</li>
<li><strong>DatePickerComponent:</strong> DatePicker actions vertical alignment with the input field (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bd5d2f2">bd5d2f2</a>)</li>
<li><strong>DatePickerComponent:</strong> Unused import cause build failure (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c79176a">c79176a</a>)</li>
<li><strong>DejaSelect:</strong> Fix regression due to a CustomEvent polyfills modification. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5eec052">5eec052</a>)</li>
<li><strong>DejaSelect:</strong> Fix regression due to the embeded SVG implementation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9f94ea5">9f94ea5</a>)</li>
<li><strong>DejaSidenav:</strong> Fix missing button to close menu on mobile (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2f34596">2f34596</a>)</li>
<li><strong>DejaTag:</strong> Fix broken inline layout (<a href="https://github.com/DSI-HUG/dejajs-components/commit/de6b0ab">de6b0ab</a>)</li>
<li><strong>DejaTile:</strong> Fix icon centering for group (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dd8c5ed">dd8c5ed</a>)</li>
<li><strong>DejaTilesComponent:</strong> Fix regression due to a CustomEvent polyfills modifictaion. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2b810cc">2b810cc</a>)</li>
<li><strong>DejaTooltip:</strong> Allow tooltip on mobile, because raise only with mouse (<a href="https://github.com/DSI-HUG/dejajs-components/commit/472297c">472297c</a>)</li>
<li><strong>DemoApp:</strong> Fix script loading for inline demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/53f7e8d">53f7e8d</a>)</li>
<li><strong>Dependencies:</strong> Fix CustomEvent polyfill dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8280d18">8280d18</a>)</li>
<li><strong>DroppableDirective:</strong> Fix regression due to a CustomEvent polyfills modification. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b32fff2">b32fff2</a>)</li>
<li><strong>MouseDragDrop:</strong> Fix test fail sometimes on Travis (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e3b1601">e3b1601</a>)</li>
<li><strong>Theming:</strong> Not working import with sass (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d070488">d070488</a>)</li>
</ul>
<h3 id="code-refactoring">Code Refactoring</h3>
<ul>
<li><strong>DejaSideNav:</strong> Removed useless headerSvgIcon input (<a href="https://github.com/DSI-HUG/dejajs-components/commit/39a411f">39a411f</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaToolTip:</strong> Allow DejaToolTip to close ever the mouse is over if the attribute closeOnMoveOver is set (<a href="https://github.com/DSI-HUG/dejajs-components/commit/00d5281">00d5281</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>DejaSideNav:</strong> headerSvgIcon is removed from DejaSideNav. Use css override instead. Look at the demo app.component.scss for example.</li>
</ul>
<p><a name="4.0.0"></a></p>
<h1 id="4-0-0-2018-10-12-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.6...v4.0.0">4.0.0</a> (2018-10-12)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>MouseDragDrop:</strong> Fix test fail sometimes on Travis (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e3b1601">e3b1601</a>)</li>
</ul>
<p><a name="4.0.0-beta.6"></a></p>
<h1 id="4-0-0-beta-6-2018-10-11-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.5...v4.0.0-beta.6">4.0.0-beta.6</a> (2018-10-11)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaSelect:</strong> Fix regression due to a CustomEvent polyfills modification. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5eec052">5eec052</a>)</li>
<li><strong>DejaSelect:</strong> Fix regression due to the embeded SVG implementation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9f94ea5">9f94ea5</a>)</li>
<li><strong>DejaTile:</strong> Fix icon centering for group (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dd8c5ed">dd8c5ed</a>)</li>
<li><strong>DejaTilesComponent:</strong> Fix regression due to a CustomEvent polyfills modifictaion. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2b810cc">2b810cc</a>)</li>
<li><strong>DroppableDirective:</strong> Fix regression due to a CustomEvent polyfills modification. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b32fff2">b32fff2</a>)</li>
</ul>
<p><a name="4.0.0-beta.5"></a></p>
<h1 id="4-0-0-beta-5-2018-10-09-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.4...v4.0.0-beta.5">4.0.0-beta.5</a> (2018-10-09)</h1>
<h3 id="code-refactoring">Code Refactoring</h3>
<ul>
<li><strong>DejaSideNav:</strong> Removed useless headerSvgIcon input (<a href="https://github.com/DSI-HUG/dejajs-components/commit/39a411f">39a411f</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaToolTip:</strong> Allow DejaToolTip to close ever the mouse is over if the attribute closeOnMoveOver is set (<a href="https://github.com/DSI-HUG/dejajs-components/commit/00d5281">00d5281</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>DejaSideNav:</strong> headerSvgIcon is removed from DejaSideNav. Use css override instead. Look at the demo app.component.scss for example.</li>
</ul>
<p><a name="4.0.0-beta.4"></a></p>
<h1 id="4-0-0-beta-4-2018-10-08-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.3...v4.0.0-beta.4">4.0.0-beta.4</a> (2018-10-08)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Theming:</strong> Not working import with sass (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d070488">d070488</a>)</li>
</ul>
<p><a name="4.0.0-beta.3"></a></p>
<h1 id="4-0-0-beta-3-2018-10-08-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.2...v4.0.0-beta.3">4.0.0-beta.3</a> (2018-10-08)</h1>
<h3 id="code-refactoring">Code Refactoring</h3>
<ul>
<li><strong>Global:</strong> Create web font from embeded SVG in the lib instead use material-icons</li>
</ul>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ColorPicker:</strong> Possible null exception (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0353989">0353989</a>)</li>
<li><strong>DejaTooltip:</strong> Allow tooltip on mobile, because raise only with mouse (<a href="https://github.com/DSI-HUG/dejajs-components/commit/472297c">472297c</a>)</li>
</ul>
<p><a name="4.0.0-beta.2"></a></p>
<h1 id="4-0-0-beta-2-2018-09-27-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.1...v4.0.0-beta.2">4.0.0-beta.2</a> (2018-09-27)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DemoApp:</strong> Fix script loading for inline demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/53f7e8d">53f7e8d</a>)</li>
</ul>
<p><a name="4.0.0-beta.1"></a></p>
<h1 id="4-0-0-beta-1-2018-09-26-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v4.0.0-beta.0...v4.0.0-beta.1">4.0.0-beta.1</a> (2018-09-26)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaTag:</strong> Fix broken inline layout (<a href="https://github.com/DSI-HUG/dejajs-components/commit/de6b0ab">de6b0ab</a>)</li>
</ul>
<p><a name="4.0.0-beta.0"></a></p>
<h1 id="4-0-0-beta-0-2018-09-24-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.6.0...v4.0.0-beta.0">4.0.0-beta.0</a> (2018-09-24)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaSelect:</strong> Fix dropdown position when in some condition can override the input (<a href="https://github.com/DSI-HUG/dejajs-components/commit/55a7440">55a7440</a>)</li>
<li><strong>DejaSidenav:</strong> Add BrowserAnimationsModule for test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/017fb9e">017fb9e</a>)</li>
<li><strong>DejaSidenav:</strong> Add forRoot for test module injection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/fe830a3">fe830a3</a>)</li>
<li><strong>Gulp:</strong> Fix push on release script (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9d2121e">9d2121e</a>)</li>
<li><strong>SlimScroll:</strong> Fix permanent rebind from DejaSlimScrollDirective (<a href="https://github.com/DSI-HUG/dejajs-components/commit/87f763f">87f763f</a>)</li>
</ul>
<h3 id="code-refactoring">Code Refactoring</h3>
<ul>
<li><strong>DejaDatePickerComponent:</strong> cdk form-field compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/91262a5">91262a5</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> cdk form-field compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d5e8738">d5e8738</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> cdk form-field compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d2cb607">d2cb607</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> cdk form-field compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a15bb2b">a15bb2b</a>)</li>
<li><strong>DejaSelect:</strong> cdk form-field compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2d0014e">2d0014e</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaSidenav:</strong> Possibility to control sidenav from outside component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0ec86c1">0ec86c1</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>DejaDatePickerComponent:</strong> date-picker must be used inside a mat form field container.</li>
<li><strong>DejaSelect:</strong> you need to wrap deja-select inside mat-form-field tag.</li>
<li><strong>DejaNumericStepperComponent:</strong> you need to wrap deja-numeric-stepper inside mat-form-field tag</li>
</ul>
<p><a name="3.6.0"></a></p>
<h1 id="3-6-0-2018-09-24-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.5.3...v3.6.0">3.6.0</a> (2018-09-24)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaBoldQueryComponent:</strong> fix regexp parsing error with label containing regexp special chars. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ea35f9b">ea35f9b</a>)</li>
<li><strong>DejaEditorComponent:</strong> Init ckeditor even if the component is not on DOM (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3658355">3658355</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> Value can be updated when control is disabled (<a href="https://github.com/DSI-HUG/dejajs-components/commit/91d8ced">91d8ced</a>)</li>
<li><strong>DejaSelect:</strong> Fix dropdown position when in some condition can override the input (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4f435af">4f435af</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaMonacoEditorComponent:</strong> Added reactive form compatibility (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f4ec0bc">f4ec0bc</a>)</li>
</ul>
<p><a name="3.5.3"></a></p>
<h2 id="3-5-3-2018-09-04-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/2.14.0...3.5.3">3.5.3</a> (2018-09-04)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DatePicker:</strong> fixed circular dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1901ec1">1901ec1</a>)</li>
</ul>
<p><a name="3.5.2"></a></p>
<h2 id="3-5-2-2018-09-03-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.5.1...v3.5.2">3.5.2</a> (2018-09-03)</h2>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaDatePickerComponent:</strong> select time when setToCurrentDate is called (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3b5ceec">3b5ceec</a>)</li>
</ul>
<p><a name="3.5.1"></a></p>
<h2 id="3-5-1-2018-08-31-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.5.0...v3.5.1">3.5.1</a> (2018-08-31)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaNumericStepperComponent:</strong> fix AOT (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7f2a984">7f2a984</a>)</li>
</ul>
<p><a name="3.5.0"></a></p>
<h1 id="3-5-0-2018-08-30-castor-em-ch-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.4.1...v3.5.0">3.5.0</a> (2018-08-30) - Castor Eméché</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaNumericStepper:</strong> Add validation BREAKING CHANGE: NS dosn't (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cea35fc">cea35fc</a>)</li>
<li><strong>Gulp:</strong> Fix push on release script (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cf559b8">cf559b8</a>)</li>
</ul>
<p><a name="3.4.1"></a></p>
<h2 id="3-4-1-2018-08-22-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.4.0...v3.4.1">3.4.1</a> (2018-08-22)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DatePicker:</strong> Do not allow current date shortcut if free text is enabled (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6e4cb94">6e4cb94</a>)</li>
<li><strong>DatePicker:</strong> Repair D key for current date shortcut (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9120d37">9120d37</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>MonacoEditor:</strong> add OnInit output event (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ea4e747">ea4e747</a>)</li>
</ul>
<p><a name="3.4.0"></a></p>
<h1 id="3-4-0-2018-07-25-castor-d-cha-n-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.3.0...v3.4.0">3.4.0</a> (2018-07-25) - Castor Déchaîné</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaTreeListComponent:</strong> attr.keynav was set as a function and not with result of a call (<a href="https://github.com/DSI-HUG/dejajs-components/commit/627e60e">627e60e</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DatePickerComponent:</strong> Add a free entry mode to date picker (<a href="https://github.com/DSI-HUG/dejajs-components/commit/65784ff">65784ff</a>)</li>
</ul>
<p><a name="3.3.0"></a></p>
<h1 id="3-3-0-2018-07-20-castor-chanceux"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.2.0...v3.3.0">3.3.0</a> (2018-07-20) - Castor Chanceux</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaTiles:</strong> Fix an issue due to the typescript compiler in bundle only (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bca9e2a">bca9e2a</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>dejaPopUp:</strong> consumer can hide the exitFullscreenButton (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8ef5b7b">8ef5b7b</a>)</li>
</ul>
<p><a name="3.2.0"></a></p>
<h1 id="3-2-0-2018-07-17-castor-barbare"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.1.0...v3.2.0">3.2.0</a> (2018-07-17) - Castor Barbare</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaTiles:</strong> Fix tiles placement when no bounds are provided (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a908507">a908507</a>)</li>
<li><strong>Scss:</strong> Update loader size (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f902404">f902404</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaEditor:</strong> Support placeholder for editor in mat-form-field (<a href="https://github.com/DSI-HUG/dejajs-components/commit/80dfa83">80dfa83</a>)</li>
</ul>
<p><a name="3.1.0"></a></p>
<h1 id="3-1-0-2018-07-09-castor-agile"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.2...v3.1.0">3.1.0</a> (2018-07-09) - Castor Agile</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaColorSelector:</strong> Move duplicate id's to attributes (<a href="https://github.com/DSI-HUG/dejajs-components/commit/902f3c6">902f3c6</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaSelect:</strong> Add no data holder (<a href="https://github.com/DSI-HUG/dejajs-components/commit/37cde67">37cde67</a>)</li>
</ul>
<p><a name="3.0.2"></a></p>
<h2 id="3-0-2-2018-06-29-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.1...v3.0.2">3.0.2</a> (2018-06-29)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaEditor:</strong> Properly destroy CKEditor (<a href="https://github.com/DSI-HUG/dejajs-components/commit/97709ec">97709ec</a>)</li>
<li><strong>DejaTreeList:</strong> Escape special characters on treelist search and filter (<a href="https://github.com/DSI-HUG/dejajs-components/commit/73edb56">73edb56</a>)</li>
<li><strong>DejaTreeList:</strong> Fix treelist crash when empty on keyboard navigation. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bccea15">bccea15</a>)</li>
<li><strong>DejaTreeListComponent:</strong> fix ngModel not working properly with select single mode (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ed4f345">ed4f345</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>combo-list:</strong> fixed registerOnChange and registerOnTouched (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f67f44a">f67f44a</a>)</li>
</ul>
<p><a name="3.0.1"></a></p>
<h2 id="3-0-1-2018-06-11-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/3.0.0...3.0.1">3.0.1</a> (2018-06-11)</h2>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ckeditor:</strong> Use coercion (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1a42439">1a42439</a>)</li>
<li><strong>Combolist:</strong> Use coercion (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3d8e226">3d8e226</a>)</li>
<li><strong>DejaComboList:</strong> aot - no lambda functions in decorators. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/412d92e">412d92e</a>)</li>
<li><strong>DejaComboList:</strong> fix license-check errors (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a74a2e4">a74a2e4</a>)</li>
<li><strong>DejaComboList:</strong> license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2d86408">2d86408</a>)</li>
<li><strong>DejaComboList:</strong> rollup and include (<a href="https://github.com/DSI-HUG/dejajs-components/commit/19df423">19df423</a>)</li>
<li><strong>DejaEditor:</strong> Lateral scrollbar was always displayed (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f7dbc35">f7dbc35</a>)</li>
<li><strong>TextReplace:</strong> Fix get and replace text at cursor position functionnality (<a href="https://github.com/DSI-HUG/dejajs-components/commit/846dba8">846dba8</a>)</li>
<li>Revert view encapsulation modification (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cf14713">cf14713</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>combo-list:</strong> enable keyboard navigation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/98ac8a9">98ac8a9</a>)</li>
</ul>
<p><a name="3.0.0"></a></p>
<h1 id="3-0-0-2018-05-31-castor"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0">3.0.0</a> (2018-05-31) - Castor</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>SelectDemo:</strong> Fix some issues on the demo for the deja-select (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bf4a284">bf4a284</a>)</li>
</ul>
<p><a name="3.0.0-beta.26"></a></p>
<h1 id="3-0-0-beta-26-2018-05-23-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.26">3.0.0-beta.26</a> (2018-05-23)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ColorFab:</strong> Fix truncated circle in small size (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d990f7c">d990f7c</a>)</li>
<li><strong>DejaTreeList:</strong> Fix wrong left margin for items due to a previous fix for the select (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8a14e87">8a14e87</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaSelect:</strong> Default position for multiselect chips is now bellow, add selectedItemsPosition="above" in your html to place the chips between the placeholder and the input (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6e0c223">6e0c223</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>DejaSelect:</strong> Default position for multiselect chips is now bellow</li>
</ul>
<p><a name="3.0.0-beta.25"></a></p>
<h1 id="3-0-0-beta-25-2018-05-18-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.25">3.0.0-beta.25</a> (2018-05-18)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Color:</strong> Add parsing for alpha <= 1 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/766271e">766271e</a>)</li>
<li><strong>Gulp:</strong> Fix build fail due to gulp-compodoc (<a href="https://github.com/DSI-HUG/dejajs-components/commit/461225a">461225a</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaIntervalSelectorComponent:</strong> remove interval selector component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/894cf43">894cf43</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> Add current date selector button (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2dba49d">2dba49d</a>)</li>
<li><strong>DejaEditorComponent:</strong> Introduce a rich text editor component which wraps CKEditor (<a href="https://github.com/DSI-HUG/dejajs-components/commit/85f22e8">85f22e8</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>DejaIntervalSelectorComponent:</strong> removed</li>
</ul>
<p><a name="3.0.0-beta.24"></a></p>
<h1 id="3-0-0-beta-24-2018-05-15-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.24">3.0.0-beta.24</a> (2018-05-15)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Global:</strong> Fix wrong material class names after V6 update (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5279442">5279442</a>)</li>
</ul>
<p><a name="3.0.0-beta.23"></a></p>
<h1 id="3-0-0-beta-23-2018-05-14-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.23">3.0.0-beta.23</a> (2018-05-14)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>TsLint:</strong> Remove rxjs from blacklisted imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/24f6b7a">24f6b7a</a>)</li>
<li><strong>DejaTreeList:</strong> Fix null pointer for null ItemListService (<a href="https://github.com/DSI-HUG/dejajs-components/commit/772a6e6">772a6e6</a>)</li>
<li><strong>DejaDialogComponent:</strong> Move event.preventDefault (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c7f71a5">c7f71a5</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> Remove close when updating model (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3edb4f4">3edb4f4</a>)</li>
<li><strong>DejaTooltip:</strong> Fix deprecated positions for material overlay (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6b62695">6b62695</a>)</li>
</ul>
<p><a name="3.0.0-beta.22"></a></p>
<h1 id="3-0-0-beta-22-2018-05-11-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.22">3.0.0-beta.22</a> (2018-05-11)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Demo:</strong> Fix angular icon for github demo (<a href="https://github.com/DSI-HUG/dejajs-components/commit/82529f1">82529f1</a>)</li>
<li><strong>Dependencies:</strong> Remove <a href="https://github.com/angular">@angular</a>/platform-server package and downgrade minimum node version (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1c10557">1c10557</a>)</li>
</ul>
<p><a name="3.0.0-beta.21"></a></p>
<h1 id="3-0-0-beta-21-2018-05-08-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.21">3.0.0-beta.21</a> (2018-05-08)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Demo:</strong> Correct some relative paths (<a href="https://github.com/DSI-HUG/dejajs-components/commit/aae933d">aae933d</a>)</li>
<li><strong>Gulp:</strong> build theming.scss for dev (<a href="https://github.com/DSI-HUG/dejajs-components/commit/67291ed">67291ed</a>)</li>
</ul>
<p><a name="3.0.0-beta.20"></a></p>
<h1 id="3-0-0-beta-20-2018-05-08-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.20">3.0.0-beta.20</a> (2018-05-08)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>GlobalEvent:</strong> Declare interface angular style to avoid path issue on build (try) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2dfd6c5">2dfd6c5</a>)</li>
</ul>
<p><a name="3.0.0-beta.19"></a></p>
<h1 id="3-0-0-beta-19-2018-05-07-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.19">3.0.0-beta.19</a> (2018-05-07)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Global:</strong> Updated dependencies for ng6, RxJs 6 and Gulp 4 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4668352">4668352</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>Global:</strong> angular6, angular-material6 and angular-cli 6 breaking changes</li>
</ul>
<p><a name="3.0.0-beta.18"></a></p>
<h1 id="3-0-0-beta-18-2018-04-26-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.18">3.0.0-beta.18</a> (2018-04-26)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaSelect:</strong> Add Item.className to the dom (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7820e9e">7820e9e</a>)</li>
<li><strong>Dependencies:</strong> Added RxJs compat and uptaed to RxJs 6 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2e85073">2e85073</a>)</li>
</ul>
<p><a name="3.0.0-beta.17"></a></p>
<h1 id="3-0-0-beta-17-2018-04-25-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.17">3.0.0-beta.17</a> (2018-04-25)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaDateFormatPipe:</strong> Fix moment import (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c768d59">c768d59</a>)</li>
<li><strong>DejaTileGroup:</strong> Add the possibility to have a multiline label in a group (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b326b17">b326b17</a>)</li>
<li><strong>MonacoEditor:</strong> Fit to content (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a9b9a85">a9b9a85</a>)</li>
<li><strong>DejaSelect</strong> List item alignment was not preserved if the item content was too long (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b3ffd06">b3ffd06</a>)</li>
<li><strong>DejaDatePicker</strong> Set tab index to -1 for button to prevent unexpected behavior on form (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7722ce5">7722ce5</a>)</li>
</ul>
<p><a name="3.0.0-beta.16"></a></p>
<h1 id="3-0-0-beta-16-2018-04-19-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.16">3.0.0-beta.16</a> (2018-04-19)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DatePicker:</strong> Add tabIndex="-1" on buttons to avoid focus on tab (<a href="https://github.com/DSI-HUG/dejajs-components/commit/debe4a7">debe4a7</a>)</li>
<li><strong>DatePicker:</strong> Specify an overlayContainerClass to not override style of other components (DEJS-410) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bb95080">bb95080</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaOverlay:</strong> Add an input to specifiy an 'overlayContainerClass' (DEJS-409) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/78dbbcf">78dbbcf</a>)</li>
</ul>
<p><a name="3.0.0-beta.15"></a></p>
<h1 id="3-0-0-beta-15-2018-04-04-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.15">3.0.0-beta.15</a> (2018-04-04)</h1>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaTiles:</strong> SelectedTiles input can accept an array of tiles (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ef55e48">ef55e48</a>)</li>
</ul>
<p><a name="3.0.0-beta.14"></a></p>
<h1 id="3-0-0-beta-14-2018-04-03-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.14">3.0.0-beta.14</a> (2018-04-03)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DejaDateSelectorComponent:</strong> Hours was set to 0 when same date was selected (<a href="https://github.com/DSI-HUG/dejajs-components/commit/86c22be">86c22be</a>)</li>
<li><strong>DejaToolTip:</strong> Remove backdrop for deja-tooltip (<a href="https://github.com/DSI-HUG/dejajs-components/commit/59e2d62">59e2d62</a>)</li>
<li></li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DejaDatePickerComponent:</strong> Close datePicker on click and datetimepicker on doubleclick (<a href="https://github.com/DSI-HUG/dejajs-components/commit/282e0af">282e0af</a>)</li>
</ul>
<p><a name="3.0.0-beta.13"></a></p>
<h1 id="3-0-0-beta-13-2018-03-28-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.13">3.0.0-beta.13</a> (2018-03-28)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>DatePickerDemo:</strong> Replaced deprecated fxLayoutWrap (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6b3e45d">6b3e45d</a>)</li>
<li><strong>SlimScroll:</strong> Fix event mouse propagation to avoid drag on scroll (<a href="https://github.com/DSI-HUG/dejajs-components/commit/059989c">059989c</a>)</li>
<li><strong>Dependencies:</strong> Remove unused dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/fff83d4">fff83d4</a>)</li>
<li><strong>DejaTreeList:</strong> fix missing coercion for modelIsValue (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f3e0778">f3e0778</a>)</li>
<li><strong>DejaTreeList:</strong> Fix selection with simple string as model (<a href="https://github.com/DSI-HUG/dejajs-components/commit/895769b">895769b</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>IconService:</strong> service to register SVG icons to MatIconRegistry so that custom SVG icons can be used with MatIcon component, i.e <mat-icon svgIcon='deja-icon' /> (<a href="https://github.com/DSI-HUG/dejajs-components/commit/17d1938">17d1938</a>)</li>
</ul>
<p><a name="3.0.0-beta.12"></a></p>
<h1 id="3-0-0-beta-12-2018-03-21-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.12">3.0.0-beta.12</a> (2018-03-21)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Gulp:</strong> Fix locked sass file in node_modules for clean task & optimization of gulp scripts (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d60485f">d60485f</a>)</li>
<li><strong>ChangeLog:</strong> Fix cz-conventional-changelog usage (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f02f978">f02f978</a>)</li>
<li><strong>DejaPopup:</strong> Load popup mixin with theme (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2176ebf">2176ebf</a>)</li>
</ul>
<p><a name="3.0.0-beta.11"></a></p>
<h1 id="3-0-0-beta-11-2018-03-16-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.11">3.0.0-beta.11</a> (2018-03-16)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Demo:</strong> Copy theming for demo in deployment (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5ec1d44">5ec1d44</a>)</li>
</ul>
<p><a name="3.0.0-beta.10"></a></p>
<h1 id="3-0-0-beta-10-2018-03-16-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.10">3.0.0-beta.10</a> (2018-03-16)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>theming:</strong> Changed attribute deja-menu-content with a class name to fix a issue with ul and li, that make css not applied (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f618802">f618802</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>theming:</strong> deja-menu-content is now a class name instead an attribute</li>
</ul>
<p><a name="3.0.0-beta.9"></a></p>
<h1 id="3-0-0-beta-9-2018-03-16-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.9">3.0.0-beta.9</a> (2018-03-16)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>MenuMixin:</strong> Fix menu mixin was not working with ul>li (<a href="https://github.com/DSI-HUG/dejajs-components/commit/484d57c">484d57c</a>)</li>
</ul>
<p><a name="3.0.0-beta.8"></a></p>
<h1 id="3-0-0-beta-8-2018-03-15-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.8">3.0.0-beta.8</a> (2018-03-15)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>mixins:</strong> Treelist borders is now a mixin <a href="https://github.com/include">@include</a> tree-list-borders() and Fix menu mixin (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a485f91">a485f91</a>)</li>
<li><strong>NewsCard:</strong> Fix wrong image layout on demo (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4f8f720">4f8f720</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>Global:</strong> By default dejaTreeList and dejaGrid has border. To avoid borders add a noborders attribute. Removed useless _flex util files, use angular-flex-layout or display: flex instead.</li>
</ul>
<p><a name="3.0.0-beta.7"></a></p>
<h1 id="3-0-0-beta-7-2018-03-15-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.7">3.0.0-beta.7</a> (2018-03-15)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>theming:</strong> imports and mixins for global theming (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e9ab425">e9ab425</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>theming:</strong> deja-menu, deja-popup, and deja-backdrop are now mixins to import special css for the related component or feature</li>
<li><strong>Global:</strong> HUG theme form-validation and colors are now in dejajs-dpi</li>
<li><strong>BoldQuery:</strong> DejaBoldQuery don't ellipsis anymore. Add a text-ellipsis attribute to bold-query to get the ellipsis feature.</li>
<li><strong>Global:</strong> By default dejaTreeList and dejaGrid has border. To avoid borders add a noborders attribute. Removed useless _flex util files, use angular-flex-layout or display: flex instead.</li>
</ul>
<p><a name="3.0.0-beta.6"></a></p>
<h1 id="3-0-0-beta-6-2018-03-15-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.6">3.0.0-beta.6</a> (2018-03-15)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Demo:</strong> Fix assets in wrong place (<a href="https://github.com/DSI-HUG/dejajs-components/commit/46e1004">46e1004</a>)</li>
<li><strong>Global:</strong> Moving HUG theme form-validation and colors to dejajs-dpi (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5070aea">5070aea</a>)</li>
<li><strong>TsConfig:</strong> Output folders (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9b6ab0f">9b6ab0f</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>Global:</strong> HUG theme form-validation and colors are now in dejajs-dpi</li>
<li><strong>BoldQuery:</strong> DejaBoldQuery don't ellipsis anymore. Add a text-ellipsis attribute to bold-query to get the ellipsis feature.</li>
<li><strong>Global:</strong> By default dejaTreeList and dejaGrid has border. To avoid borders add a noborders attribute. Removed useless _flex util files, use angular-flex-layout or display: flex instead.</li>
</ul>
<p><a name="3.0.0-beta.5"></a></p>
<h1 id="3-0-0-beta-5-2018-03-14-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.5">3.0.0-beta.5</a> (2018-03-14)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>Global:</strong> Fix dependencies in prod (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7e0497e">7e0497e</a>)</li>
</ul>
<p><a name="3.0.0-beta.4"></a></p>
<h1 id="3-0-0-beta-4-2018-03-13-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.4">3.0.0-beta.4</a> (2018-03-13)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>gulp:</strong> Fix copy of 404.html and clean task (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1439f35">1439f35</a>)</li>
<li><strong>gulp:</strong> Fix install sequence with npm (<a href="https://github.com/DSI-HUG/dejajs-components/commit/60ad4d4">60ad4d4</a>)</li>
</ul>
<p><a name="3.0.0-beta.3"></a></p>
<h1 id="3-0-0-beta-3-2018-03-13-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.3">3.0.0-beta.3</a> (2018-03-13)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>gulp:</strong> Fix copy of 404.html and clean task (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1439f35">1439f35</a>)</li>
</ul>
<p><a name="3.0.0-beta.2"></a></p>
<h1 id="3-0-0-beta-1-2018-03-13-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/v3.0.0-beta.0...v3.0.0-beta.1">3.0.0-beta.1</a> (2018-03-13)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>BoldQuery:</strong> DejaBoldQuery force inline-style and ellipsis. This is not the role of DejaBoldQuery to decide the inline-style of his content. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4707ac3">4707ac3</a>)</li>
<li><strong>Config:</strong> Faster install, removed from warning (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3ef96b5">3ef96b5</a>)</li>
<li><strong>DejaSidenav:</strong> Fix wrong import on test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b002070">b002070</a>)</li>
<li><strong>Demo:</strong> Fix synchronisation between demo and lib in dev (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2bea4e9">2bea4e9</a>)</li>
<li><strong>Global:</strong> Link to source instead bundle (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d3f8fce">d3f8fce</a>)</li>
<li><strong>Global:</strong> SCSS concatenation in one _theming.scss file (<a href="https://github.com/DSI-HUG/dejajs-components/commit/23a5089">23a5089</a>)</li>
<li><strong>MediaService:</strong> Removed flex-layout dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a0594b4">a0594b4</a>)</li>
<li><strong>SideNav:</strong> Use MediaService instead javascript native code (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dcda8e5">dcda8e5</a>)</li>
<li><strong>Theming:</strong> Build _theming.scss for prod and demo. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c21b7c3">c21b7c3</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>BoldQuery:</strong> DejaBoldQuery don't ellipsis anymore. Add a text-ellipsis attribute to bold-query to get the ellipsis feature.</li>
<li><strong>Global:</strong> By default dejaTreeList and dejaGrid has border. To avoid borders add a noborders attribute. Removed useless _flex util files, use angular-flex-layout or display: flex instead.</li>
</ul>
<p><a name="3.0.0-beta.0"></a></p>
<h1 id="3-0-0-beta-0-2018-02-28-"><a href="https://github.com/DSI-HUG/dejajs-components/compare/2.18.1...3.0.0">3.0.0-beta.0</a> (2018-02-28)</h1>
<h3 id="bug-fixes">Bug Fixes</h3>
<ul>
<li><strong>ColorEvent:</strong> The ColorEvent class become a IColorEvent interface to fix the CustomEvent implementation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7f5179a">7f5179a</a>)</li>
<li><strong>ColorPicker:</strong> Disabled style (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3217117">3217117</a>)</li>
<li><strong>ComboList:</strong> Removed ComboList until unit test and standardization are done (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f6897e7">f6897e7</a>)</li>
<li><strong>DatePicker:</strong> conflicts with 2.18.6 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/361de34">361de34</a>)</li>
<li><strong>DatePicker:</strong> consecutives blank lines (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a7f4190">a7f4190</a>)</li>
<li><strong>DatePicker:</strong> fixed circular dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1901ec1">1901ec1</a>)</li>
<li><strong>DejaCancelableEvent:</strong> The DejaCancelableEvent class become a IDejaCancelableEvent interface to fix the CustomEvent implementation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0ac4f47">0ac4f47</a>)</li>
<li><strong>DejaChips:</strong> The DejaChipsCloseEvent class become a IDejaChipsCloseEvent interface to fix the CustomEvent implementation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c06ddb7">c06ddb7</a>)</li>
<li><strong>DejadatePickerComponent:</strong> Raise change events on keyboard navigation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d9c43cf">d9c43cf</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> <a href="https://github.com/DSI-HUG/dejajs-components/issues/94">#94</a> check mask on blur and make control invalid if mask isn't ok (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7c25cf7">7c25cf7</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> Use different way to call date and time change events. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/12295d0">12295d0</a>)</li>
<li><strong>DejaDateSelectorComponent:</strong> Hour cursor was displayed on 12 when click on 0 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bfa740d">bfa740d</a>)</li>
<li><strong>DejaGrid:</strong> Fix Object-Object displayed in the cell content when the value field is undefined (<a href="https://github.com/DSI-HUG/dejajs-components/commit/72f0b9a">72f0b9a</a>)</li>
<li><strong>DejaGrid:</strong> Header bottom line style (<a href="https://github.com/DSI-HUG/dejajs-components/commit/23fbe33">23fbe33</a>)</li>
<li><strong>DejaGridComponent:</strong> Fix missing returned type for some function (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4cabf65">4cabf65</a>), closes <a href="https://github.com/DSI-HUG/dejajs-components/issues/286">#286</a></li>
<li><strong>DejaGridGroupAreaComponent:</strong> Fix grouping refresh when to chips are inverted in the group area (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5b08c11">5b08c11</a>)</li>
<li><strong>DejaIntervalSelectorBoundaryComponent:</strong> protected access in template... (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7de6ede">7de6ede</a>)</li>
<li><strong>DejaIntervalSelectorComponent:</strong> Access private member inside template (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8583d67">8583d67</a>)</li>
<li><strong>DejaItemBase:</strong> viewPortRowHeight and viewPortRowMode don't use coercion (<a href="https://github.com/DSI-HUG/dejajs-components/commit/fc173f0">fc173f0</a>)</li>
<li><strong>DejaNumericStepperComponent:</strong> add possibility to remove value and fix onChangeCallback out of range. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/20376c3">20376c3</a>)</li>
<li><strong>DejaNumericStepperModule:</strong> Export numericStepper component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3af6735">3af6735</a>)</li>
<li><strong>DejaPopup:</strong> fix tabindex bug in demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7a0b766">7a0b766</a>)</li>
<li><strong>DejaPopup:</strong> lint fix (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6c7d488">6c7d488</a>)</li>
<li><strong>DejaPopupConfig:</strong> config.data (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3870b52">3870b52</a>)</li>
<li><strong>DejaPopupConfig:</strong> Remove config.data=this (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7ab0f6c">7ab0f6c</a>)</li>
<li><strong>DejaSelect:</strong> Autocomplete clear model when text is changed DEJS-246 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/14efbbd">14efbbd</a>)</li>
<li><strong>DejaSelect:</strong> Ensure SearchCriteria in auto-complete when min search length is set and a value already selected (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e11e666">e11e666</a>)</li>
<li><strong>DejaSelect:</strong> Hide when an element is clicked (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6236f10">6236f10</a>)</li>
<li><strong>DejaSelect:</strong> rxjs imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c0ca4ba">c0ca4ba</a>)</li>
<li><strong>DejaSelect:</strong> Width regression from material rc0 migration (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6188733">6188733</a>)</li>
<li><strong>DejaSelectComponent:</strong> Issues fixing find by unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/279f594">279f594</a>)</li>
<li><strong>DejaSelectComponent:</strong> Selection for empty or null key object in reactiveForm (<a href="https://github.com/DSI-HUG/dejajs-components/commit/baa02de">baa02de</a>)</li>
<li><strong>DejaSidenav:</strong> Removed Angular FlexLayout (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5a5e0dc">5a5e0dc</a>)</li>
<li><strong>DejaTextMetricsService:</strong> adjust text width with linux lower font ratio. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3aa8f48">3aa8f48</a>)</li>
<li><strong>DejaTextMetricsService:</strong> improve text height calculation by taking in account white space separator (<a href="https://github.com/DSI-HUG/dejajs-components/commit/41d360a">41d360a</a>)</li>
<li><strong>DejaTile:</strong> Removed useless this in html (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ef9657c">ef9657c</a>)</li>
<li><strong>DejaTile:</strong> Spinner position (Regression due to mateial spinner changes) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5b77394">5b77394</a>)</li>
<li><strong>DejaTiles:</strong> Improved event and garbage collection to avoid null pointers onDestroy (<a href="https://github.com/DSI-HUG/dejajs-components/commit/902f9cd">902f9cd</a>)</li>
<li><strong>DejaTiles:</strong> Remove selection when tiles are empties (<a href="https://github.com/DSI-HUG/dejajs-components/commit/55da608">55da608</a>)</li>
<li><strong>DejaTilesComponent:</strong> Fix a synchronization issue between tiles model and associated dictionary (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9712b18">9712b18</a>)</li>
<li><strong>DejaTilesComponent:</strong> Fix crash if model is not defined (<a href="https://github.com/DSI-HUG/dejajs-components/commit/41e2696">41e2696</a>)</li>
<li><strong>DejaTooltip:</strong> Improve alignment because overlay material can't fit into body (DEJS-302 Régression UserCard) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2283414">2283414</a>)</li>
<li><strong>DejaTooltip:</strong> Rxjs imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b44bef3">b44bef3</a>)</li>
<li><strong>DejaTreeList:</strong> Fix limited depth (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7f19da3">7f19da3</a>)</li>
<li><strong>DemoTiles:</strong> Drag cursor is missing (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cfccdeb">cfccdeb</a>)</li>
<li><strong>Depencencies:</strong> Fix dependencies management (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1b30f6d">1b30f6d</a>)</li>
<li><strong>Dependencies:</strong> Fix dependencies management (<a href="https://github.com/DSI-HUG/dejajs-components/commit/61cc9a5">61cc9a5</a>)</li>
<li><strong>Global:</strong> Correct noImplicitAny compile errors (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9351b03">9351b03</a>)</li>
<li><strong>Global:</strong> fix missing implementation for setDisabledState. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/335f3d6">335f3d6</a>)</li>
<li><strong>Global:</strong> rxjs imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/409c780">409c780</a>)</li>
<li><strong>Global:</strong> RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dd44574">dd44574</a>)</li>
<li><strong>Global:</strong> RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/751fbeb">751fbeb</a>)</li>
<li><strong>Global:</strong> RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4047f5d">4047f5d</a>)</li>
<li><strong>Global:</strong> Rxjs imports and indexation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ca911d6">ca911d6</a>)</li>
<li><strong>GlobalEventService:</strong> Fix test fail due to a missing sendaction.js script (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3fabaa5">3fabaa5</a>)</li>
<li><strong>ItemListService:</strong> Ensure pre-selection from items object DEJS-256 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7017720">7017720</a>)</li>
<li><strong>MonacoEditor:</strong> Added typings for css-element-queries (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f98362e">f98362e</a>)</li>
<li><strong>MonacoEditor:</strong> Removed css-media-queries dependency and use our ResizeListener instead (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e9b1b9a">e9b1b9a</a>)</li>
<li><strong>MonacoEditorComponent:</strong> Removed css-element-queries to fix the .d.ts compile error in prod (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0073d8e">0073d8e</a>)</li>
<li><strong>SortingService:</strong> Re-add test to check as a date when type date is specified inside SortInfo. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8a945be">8a945be</a>)</li>
<li><strong>ViewPortService:</strong> ViewportService sometimes blocked when the last item is displayed and the scoll button up is pressed (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b5ba552">b5ba552</a>)</li>
</ul>
<h3 id="code-refactoring">Code Refactoring</h3>
<ul>
<li><strong>DejaCodeViewerComponent:</strong> Removed DejaCodeViewerComponent to avoid prism.js dependency (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7b2dea8">7b2dea8</a>)</li>
<li><strong>DejaMarkdownComponent:</strong> Removed DejaMarkdownComponent to avoid prism.js dependency (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a708a02">a708a02</a>)</li>
<li><strong>SendAction:</strong> Removed SendAction from the lib (<a href="https://github.com/DSI-HUG/dejajs-components/commit/62ec4b8">62ec4b8</a>)</li>
</ul>
<h3 id="features">Features</h3>
<ul>
<li><strong>DatePicker:</strong> layout as a string (<a href="https://github.com/DSI-HUG/dejajs-components/commit/235e0f3">235e0f3</a>)</li>
<li><strong>DatePicker:</strong> time picker and time selector (<a href="https://github.com/DSI-HUG/dejajs-components/commit/142b977">142b977</a>)</li>
<li><strong>DejaBoldQueryComponent:</strong> added new properties firstOccurenceOnly, firstOccurencePerWordOnly, atTheBeginningOfWordOnly, highlightClassName. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3ccf5ca">3ccf5ca</a>)</li>
<li><strong>dejaComboList:</strong> demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6722ad2">6722ad2</a>)</li>
<li><strong>DejaComboList:</strong> component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/adf60a5">adf60a5</a>)</li>
<li><strong>DejaComboList:</strong> delete test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/85dbf34">85dbf34</a>)</li>
<li><strong>DejaComboList:</strong> fix codebeat (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0d1ebc1">0d1ebc1</a>)</li>
<li><strong>DejaComboList:</strong> fix license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/50643d9">50643d9</a>)</li>
<li><strong>DejaComboList:</strong> setup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3e820cb">3e820cb</a>)</li>
<li><strong>DejaComboList:</strong> small fixes (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dec9f5b">dec9f5b</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> Add event onDateChange and onTimeChange (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f3fa96f">f3fa96f</a>)</li>
<li><strong>DejaGrid:</strong> Add events when grouping or sorting are raised form the component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d0d1e70">d0d1e70</a>)</li>
<li><strong>DejaIntervalSelectorComponent:</strong> component used to display lower and upper boundary for lower and upper value selection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/80e549e">80e549e</a>)</li>
<li><strong>DejaItem:</strong> Add selected input to deja item DEJS-250 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c23d040">c23d040</a>)</li>
<li><strong>DejaMessageBoxComponent:</strong> add showCloseIcon property in order to display a close icon at the top and on the right of the title bar. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7867617">7867617</a>)</li>
<li><strong>DejaMonacoEditor:</strong> autosize when parent is resizing + dynamicaly change language (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4e32ab0">4e32ab0</a>)</li>
<li><strong>DejaPopup:</strong> Draggable popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/18b0d96">18b0d96</a>)</li>
<li><strong>DejaPopup:</strong> enable custom TemplateRef (<a href="https://github.com/DSI-HUG/dejajs-components/commit/64e8aa3">64e8aa3</a>)</li>
<li><strong>DejaPopup:</strong> enable insert of templateRef in advanced popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/25970c1">25970c1</a>)</li>
<li><strong>DejaTiles:</strong> Added event when refresh and binding is done (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6a90d78">6a90d78</a>)</li>
<li><strong>Global:</strong> Cloning service is deprecated, replaced by lodash._cloneDeep (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9adbe45">9adbe45</a>)</li>
<li><strong>ISortInfos:</strong> Modified to match lodash sorting (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0727177">0727177</a>)</li>
<li><strong>MonacoEditor:</strong> Monaco editor service refactored for the new architecture (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c53cac4">c53cac4</a>)</li>
<li><strong>Popup:</strong> Component injection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bfdf0f1">bfdf0f1</a>)</li>
<li><strong>Popup:</strong> DejaPopup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b68e1ee">b68e1ee</a>)</li>
<li><strong>SortingService:</strong> Usage of lodash for the sorting algorithm (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0fc1d97">0fc1d97</a>)</li>
</ul>
<h3 id="breaking-changes">BREAKING CHANGES</h3>
<ul>
<li><strong>MonacoEditor:</strong> Copy Assets in package.json must be replaced by the following line in the .angular-cli.json/apps/assets section { "glob": "<em>*/</em>", "input": "../node_modules/monaco-editor/min", "output": "./assets/monaco/" }</li>
<li><strong>SendAction:</strong> SendAction is removed from the lib</li>
<li><strong>DejaMarkdownComponent:</strong> DejaMarkdownComponent is removed from the lib and is moved to the demo</li>
<li><strong>DejaCodeViewerComponent:</strong> DejaCodeViewerComponent is removed from the lib and is moved to the demo</li>
<li><strong>DejaChips:</strong> DejaChipsCloseEvent is now IDejaChipsCloseEvent in chips.component.ts. DejaChipsComponent raise event of type IDejaChipsCloseEvent</li>
<li><strong>ColorEvent:</strong> ColorEvent in color-event.ts is now IColorEvent in color-selector.component.ts. ColorSelector raise event of type IColorEvent</li>
<li><strong>DejaCancelableEvent:</strong> DejaCancelableEvent in cancelable-event.ts is now IDejaCancelableEvent in cancelable-event.interface.ts</li>
<li><strong>SortingService:</strong> deprecated sort (returned a promise) is now a synchronous function. Compare is removed, use lodash instead.</li>
<li><strong>ISortInfos:</strong> name is mandatory and only a string and type is removed (Automatic detection of sorting type)</li>
<li><strong>DejaTreeList:</strong> Padding of the parent element can change. There is no more background gradient for
parent items</li>
</ul>
<h4 id="2-24-3-2018-02-15-">2.24.3 (2018-02-15)</h4>
<h5 id="breaking-changes">BREAKING CHANGES</h5>
<ul>
<li><p><strong>SortingService:</strong> Usage of lodash for the sorting algorithm (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0fc1d971612d93bff0c3a97b2f2723e4ce787f4c">0fc1d971</a>)
=> deprecated sort (returned a promise) is now a synchronous function. Compare is removed, use lodash instead.</p>
</li>
<li><p><strong>ISortInfos:</strong> Modified to match lodash sorting (<a href="https://github.com/DSI-HUG/dejajs-components/commit/07271772ddf2554f582988fed162e78d06568c69">07271772</a>)
=> name is mandatory and only a string and type is removed (Automatic detection of sorting type)</p>
</li>
<li><p><strong>DejaTreeList:</strong> Fix limited depth (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7f19da35906d035b617c49492c8afebd7b437a94">7f19da35</a>)
=> Fix limited padding depth to 4 and remove background gradient for parent items</p>
</li>
</ul>
<p>Padding of the parent element can change. There is no more background gradient for
parent items</p>
<p>DEJS-221</p>
<h5 id="build-system-dependencies">Build System / Dependencies</h5>
<ul>
<li><strong>Sonar:</strong> Add sonar configuration (<a href="https://github.com/DSI-HUG/dejajs-components/commit/66fc8010bcb6a034e235e6fec6d342c30cb37711">66fc8010</a>)</li>
</ul>
<h5 id="chores">Chores</h5>
<ul>
<li><strong>Dependencies:</strong> Get RXJS from Angular CLI (<a href="https://github.com/DSI-HUG/dejajs-components/commit/fbd0596b2fe0567c22c51bfc19675217aca0150f">fbd0596b</a>)</li>
</ul>
<h5 id="continuous-integration">Continuous Integration</h5>
<ul>
<li><strong>Dependencies:</strong><ul>
<li>upgrade dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/98ff0d20350f4d21379d9bb4b3a92da8579ad0a9">98ff0d20</a>)</li>
<li>upgrade dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d89174cbde226068eb06bd266bc974159cd65180">d89174cb</a>)</li>
</ul>
</li>
<li><strong>Travis:</strong><ul>
<li>Add DSI Slack notifications (<a href="https://github.com/DSI-HUG/dejajs-components/commit/00b649157cff7cc8279ab534b680946d35e8ef40">00b64915</a>)</li>
<li>Add DSI Slack notifications (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e73a8b689304dab83499104b03af2cbbc9bff144">e73a8b68</a>)</li>
</ul>
</li>
</ul>
<h5 id="documentation-changes">Documentation Changes</h5>
<ul>
<li><strong>Popup:</strong> demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/88f8c6a6e7de4a9e8fbc395161a5173cefd1b942">88f8c6a6</a>)</li>
</ul>
<h5 id="new-features">New Features</h5>
<ul>
<li><strong>DejaPopup:</strong><ul>
<li>Draggable popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/18b0d968a027c26a56f856765452275586c7c48e">18b0d968</a>)</li>
<li>enable insert of templateRef in advanced popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/25970c1fde38eca3f049842dbaaa11ccbca47812">25970c1f</a>)</li>
<li>enable custom TemplateRef (<a href="https://github.com/DSI-HUG/dejajs-components/commit/64e8aa38e10b9425e251a6828e4515220dfb3816">64e8aa38</a>)</li>
</ul>
</li>
<li><strong>DejaComboList:</strong><ul>
<li>fix codebeat (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0d1ebc198978dd25ff86132a81bd65119b73cf94">0d1ebc19</a>)</li>
<li>delete test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/85dbf34e6690df8b9ec048ec51f7c342e8ecb2e2">85dbf34e</a>)</li>
<li>fix license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/50643d91e608e3cd2993ce567f476b7a9a7f35f9">50643d91</a>)</li>
<li>small fixes (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dec9f5b01640fa74e25f37d40504f05c7a38579a">dec9f5b0</a>)</li>
<li>component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/adf60a505749d8075b467e5e5895346d33a12df0">adf60a50</a>)</li>
<li>setup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3e820cbdb05f68ff85c062ae63c2be16f23cdb79">3e820cbd</a>)</li>
</ul>
</li>
<li><strong>dejaComboList:</strong> demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6722ad2f098b74da5164278a765cc493d81a606a">6722ad2f</a>)</li>
<li><strong>DejaIntervalSelectorComponent:</strong> component used to display lower and upper boundary for lower and upper value selection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/80e549ec99290d9b3c9c8cb444736f75e9ab4666">80e549ec</a>)</li>
<li><strong>DejaMonacoEditor:</strong> autosize when parent is resizing + dynamicaly change language (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4e32ab03600404c4a4bb427d898cfcefb2007221">4e32ab03</a>)</li>
<li><strong>Popup:</strong><ul>
<li>Component injection (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bfdf0f1353ab54467b8000585858b90865334dbc">bfdf0f13</a>)</li>
<li>DejaPopup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b68e1ee54bf4375c23fd0c57cb9361b1944a522c">b68e1ee5</a>)</li>
</ul>
</li>
<li><strong>DejaGrid:</strong> Add events when grouping or sorting are raised form the component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d0d1e706dc8212b906e10dac9cc10e8e5a55e647">d0d1e706</a>)</li>
<li><strong>Global:</strong> Cloning service is deprecated, replaced by lodash._cloneDeep (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9adbe4589c493e1078a564b835485baf48afa2d5">9adbe458</a>)</li>
<li><strong>DejaTiles:</strong> Added event when refresh and binding is done (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6a90d78ed9bb9107e59bcec42ecb062701ba1844">6a90d78e</a>)</li>
<li><strong>DejaMessageBoxComponent:</strong> add showCloseIcon property in order to display a close icon at the top and on the right of the title bar. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7867617a4a9fe9323c477cea9c0f33d8a62cdd42">7867617a</a>)</li>
<li><strong>DejaDatePickerComponent:</strong> Add event onDateChange and onTimeChange (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f3fa96f31c86b1dc4cf12e46891783c53c1305cb">f3fa96f3</a>)</li>
<li><strong>DejaBoldQueryComponent:</strong> added new properties firstOccurenceOnly, firstOccurencePerWordOnly, atTheBeginningOfWordOnly, highlightClassName. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3ccf5caa1a8382d1a295c4d9323128b568509b85">3ccf5caa</a>)</li>
<li><strong>DatePicker:</strong><ul>
<li>layout as a string (<a href="https://github.com/DSI-HUG/dejajs-components/commit/235e0f376236030b430ddff710ea4be77083828a">235e0f37</a>)</li>
<li>time picker and time selector (<a href="https://github.com/DSI-HUG/dejajs-components/commit/142b977b5e9a9d3aa041bdc53027eea0a43909df">142b977b</a>)</li>
</ul>
</li>
<li><strong>DejaItem:</strong> Add selected input to deja item DEJS-250 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c23d0405125f3d0af17a50fcae8901fb73de3f3b">c23d0405</a>)</li>
</ul>
<h5 id="bug-fixes">Bug Fixes</h5>
<ul>
<li><strong>MonacoEditorComponent:</strong> Removed css-element-queries to fix the .d.ts compile error in prod (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0073d8e9821d220f5822de8aacd0cea3dee15054">0073d8e9</a>)</li>
<li><strong>Global:</strong><ul>
<li>fix missing implementation for setDisabledState. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/335f3d6d4e15eb26cfc731ed84f4bf17c064ebe6">335f3d6d</a>)</li>
<li>Correct noImplicitAny compile errors (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9351b03653231693311f85c642cb14aae47b551b">9351b036</a>)</li>
<li>rxjs imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/409c78089e43fe06e9b64ac6cf908591d28e6eb4">409c7808</a>)</li>
<li>RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/751fbebe16ae2488129c8fcbb1c00e374841cbdc">751fbebe</a>)</li>
<li>RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/dd445747d8e333428d62e24328f3a10bb0318633">dd445747</a>)</li>
<li>RxJs Imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4047f5d2074b3f608644b1255e47af969cb417a1">4047f5d2</a>)</li>
</ul>
</li>
<li><strong>DejaGrid:</strong><ul>
<li>Fix Object-Object displayed in the cell content when the value field is undefined (<a href="https://github.com/DSI-HUG/dejajs-components/commit/72f0b9a364196caddbd71ea988acd27c9cfcc919">72f0b9a3</a>)</li>
<li>Header bottom line style (<a href="https://github.com/DSI-HUG/dejajs-components/commit/23fbe33c6604e1db68bc468a49cce612e1164662">23fbe33c</a>)</li>
</ul>
</li>
<li><strong>DejaNumericStepperModule:</strong> Export numericStepper component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3af6735ab37a7bcaf84d1a80ac8e968aeb805641">3af6735a</a>)</li>
<li><strong>MonacoEditor:</strong> Added typings for css-element-queries (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f98362e40576cd314771a213610817fc29569284">f98362e4</a>)</li>
<li><strong>DejaPopup:</strong><ul>
<li>fix tabindex bug in demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7a0b7665e96dfbc8cfda1b077b9ab55a38c4b0c8">7a0b7665</a>)</li>
<li>lint fix (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6c7d4887e69a4799fbf95fbe93d77e7c72cc60b5">6c7d4887</a>)</li>
</ul>
</li>
<li><strong>DejaPopupConfig:</strong><ul>
<li>config.data (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3870b52fe54a8c41dd00b78451f683476facbb7d">3870b52f</a>)</li>
<li>Remove config.data=this (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7ab0f6caa8e4a5e1ca9b8c7af41afa011c727277">7ab0f6ca</a>)</li>
</ul>
</li>
<li><strong>DejaIntervalSelectorBoundaryComponent:</strong> protected access in template... (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7de6edec0d8400b55e2c82d6442b6cc193e5c58f">7de6edec</a>)</li>
<li><strong>DejaIntervalSelectorComponent:</strong> Access private member inside template (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8583d67b09e3e80415c6fb7870cdc22c79fea530">8583d67b</a>)</li>
<li><strong>Dependencies:</strong> Fix dependencies management (<a href="https://github.com/DSI-HUG/dejajs-components/commit/61cc9a5991e8a6dea27b257389e86a458f072c8b">61cc9a59</a>)</li>
<li><strong>Depencencies:</strong> Fix dependencies management (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1b30f6d93289d15d28c8c7ce943ed8f19b63ea46">1b30f6d9</a>)</li>
<li><strong>DejaSidenav:</strong> Removed Angular FlexLayout (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5a5e0dc488049018b87e3c17ae6e06884809f9fd">5a5e0dc4</a>)</li>
<li><strong>DejaDatePickerComponent:</strong><ul>
<li>Use different way to call date and time change events. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/12295d03c0bbe3fd13983b1f4520094743ea9409">12295d03</a>)</li>
<li>#94 check mask on blur and make control invalid if mask isn't ok (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7c25cf70cf9264aa8345270f94e1edb704f2d5c9">7c25cf70</a>)</li>
</ul>
</li>
<li><strong>DejaGridComponent:</strong> Fix missing returned type for some function (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4cabf658c9cc0fb748c2361a1d0017b1b898a78a">4cabf658</a>)</li>
<li><strong>DejaSelectComponent:</strong><ul>
<li>Selection for empty or null key object in reactiveForm (<a href="https://github.com/DSI-HUG/dejajs-components/commit/baa02debc5e07fe7a7960c9667e130b47e75d373">baa02deb</a>)</li>
<li>Issues fixing find by unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/279f59420783ca4b7c4513aa6860fc4c97157850">279f5942</a>)</li>
</ul>
</li>
<li><strong>DejaTextMetricsService:</strong><ul>
<li>improve text height calculation by taking in account white space separator (<a href="https://github.com/DSI-HUG/dejajs-components/commit/41d360a559d19c409df980f1433251111e5fb2e2">41d360a5</a>)</li>
<li>adjust text width with linux lower font ratio. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3aa8f485295d574ec8076f85d1d1e542d57402bf">3aa8f485</a>)</li>
</ul>
</li>
<li><strong>DejaGridGroupAreaComponent:</strong> Fix grouping refresh when to chips are inverted in the group area (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5b08c11b16ceecd3dcb2fccf9c0263cb335e5818">5b08c11b</a>)</li>
<li><strong>DejaTilesComponent:</strong><ul>
<li>Fix crash if model is not defined (<a href="https://github.com/DSI-HUG/dejajs-components/commit/41e269680996450f4dc6c44c2d66532b588df411">41e26968</a>)</li>
<li>Fix a synchronization issue between tiles model and associated dictionary (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9712b189872eae6ca5fce4a01e38513b9507e018">9712b189</a>)</li>
</ul>
</li>
<li><strong>GlobalEventService:</strong> Fix test fail due to a missing sendaction.js script (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3fabaa5334435b2d75362299835aa00761ebd1b1">3fabaa53</a>)</li>
<li><strong>DejaTooltip:</strong> Improve alignment because overlay material can't fit into body (DEJS-302 Régression UserCard) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/2283414438c6827b986b57be6958b7e4809b8525">22834144</a>)</li>
<li><strong>DejaTiles:</strong><ul>
<li>Improved event and garbage collection to avoid null pointers onDestroy (<a href="https://github.com/DSI-HUG/dejajs-components/commit/902f9cd7d33fb4c6c1a58cb29cb775de4d2ca1cb">902f9cd7</a>)</li>
<li>Remove selection when tiles are empties (<a href="https://github.com/DSI-HUG/dejajs-components/commit/55da6084a9b331e51a4887abe901c8fc1f101c43">55da6084</a>)</li>
</ul>
</li>
<li><strong>DejadatePickerComponent:</strong> Raise change events on keyboard navigation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d9c43cf960e129d9d6fd5ecdbc4e6eb3d5fc0e6d">d9c43cf9</a>)</li>
<li><strong>DejaDateSelectorComponent:</strong> Hour cursor was displayed on 12 when click on 0 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/bfa740d95bde9463c3e662897716d48a7b7c7ac4">bfa740d9</a>)</li>
<li><strong>DejaTile:</strong><ul>
<li>Removed useless this in html (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ef9657ca45856177b81cdfb41319fbcbeda6a25f">ef9657ca</a>)</li>
<li>Spinner position (Regression due to mateial spinner changes) (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5b773940dc7f0def46ff8997fc51ababb02c879e">5b773940</a>)</li>
</ul>
</li>
<li><strong>ViewPortService:</strong> ViewportService sometimes blocked when the last item is displayed and the scoll button up is pressed (<a href="https://github.com/DSI-HUG/dejajs-components/commit/b5ba5520025c62febb3910142cdc39add74f8c53">b5ba5520</a>)</li>
<li><strong>DejaSelect:</strong><ul>
<li>Ensure SearchCriteria in auto-complete when min search length is set and a value already selected (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e11e666bdfa0b0e8a7bdb369bb1f56f305091b0f">e11e666b</a>)</li>
<li>rxjs imports (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c0ca4ba911bed823fc152d939da889618cb1ce0e">c0ca4ba9</a>)</li>
<li>Hide when an element is clicked (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6236f108d4fe175dc3ced30e08fbcf53863a64b8">6236f108</a>)</li>
<li>Autocomplete clear model when text is changed DEJS-246 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/14efbbde2140745ea1e62f5163645d908f63255d">14efbbde</a>)</li>
<li>Width regression from material rc0 migration (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6188733fe54d2913a13b9c5990534ca40dbfcf1a">6188733f</a>)</li>
</ul>
</li>
<li><strong>DejaNumericStepperComponent:</strong> add possibility to remove value and fix onChangeCallback out of range. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/20376c3dd90597839c1a0bb38c11e99776cf14f7">20376c3d</a>)</li>
<li><strong>DatePicker:</strong><ul>
<li>conflicts with 2.18.6 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/361de340e0c7eec131f102ceb58187af71209d95">361de340</a>)</li>
<li>consecutives blank lines (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a7f4190841f84c467af188dfbc41f7fc59693d7a">a7f41908</a>)</li>
<li>fixed circular dependencies (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1901ec170db4ac834b24da251fc0cbf1aa95f0c4">1901ec17</a>)</li>
</ul>
</li>
<li><strong>DemoTiles:</strong> Drag cursor is missing (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cfccdeba2c523676bb1c820f5b4244a4c00cb86e">cfccdeba</a>)</li>
<li><strong>ColorPicker:</strong> Disabled style (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3217117d656dec93eef8c38e82b9e1ee827df23c">3217117d</a>)</li>
<li><strong>SortingService:</strong> Re-add test to check as a date when type date is specified inside SortInfo. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/8a945be78c5aa00857fffdc1feb69a668f494821">8a945be7</a>)</li>
<li><strong>ItemListService:</strong> Ensure pre-selection from items object DEJS-256 (<a href="https://github.com/DSI-HUG/dejajs-components/commit/70177209bac03daa97d4a2340b26661dc6b98b7a">70177209</a>)</li>
<li><strong>DejaItemBase:</strong> viewPortRowHeight and viewPortRowMode don't use coercion (<a href="https://github.com/DSI-HUG/dejajs-components/commit/fc173f00b5e80abbff31ef87c8cad2f20d89c9f5">fc173f00</a>)</li>
</ul>
<h5 id="refactors">Refactors</h5>
<ul>
<li><strong>DejaPopup:</strong><ul>
<li>readme and temaplate variables in component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/eb06d19e8fd7aa6f3b93a8b9991bb888bf0f79bf">eb06d19e</a>)</li>
<li>delete property isModal (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ef634308839b9da62dad92ccd3de66586823d56e">ef634308</a>)</li>
<li>merge config properties content and aContent (<a href="https://github.com/DSI-HUG/dejajs-components/commit/0fe020beac1fc276b9eb51f8d8fb35be7cf42324">0fe020be</a>)</li>
<li>removing unused code (<a href="https://github.com/DSI-HUG/dejajs-components/commit/55aecdbe4d1933c9a608cd55173a152b9a930328">55aecdbe</a>)</li>
</ul>
</li>
<li><strong>Popup:</strong><ul>
<li>added license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6b26d421e66fddac58d3c4b3ffd60b0c185d0544">6b26d421</a>)</li>
<li>added license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6303235d9164c4c72f73cf04e95355289be51743">6303235d</a>)</li>
<li>added license (<a href="https://github.com/DSI-HUG/dejajs-components/commit/248bba4a8d1052ba3c2a074c8445a12fe8d10c04">248bba4a</a>)</li>
<li>scss global style in his own file (<a href="https://github.com/DSI-HUG/dejajs-components/commit/735795a3b5d66cc307fed5d510151ed939839d56">735795a3</a>)</li>
</ul>
</li>
<li><strong>DejaGrid:</strong> Fix Lint errors and change signature observeViewPort$ (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1fad0139a05d9f6aa76b335170818c09bf7ea167">1fad0139</a>)</li>
<li><strong>DatePicker:</strong><ul>
<li>check removed for layout classname in template (<a href="https://github.com/DSI-HUG/dejajs-components/commit/04ac3db07a6eea318fe3e91d30406dfdaad65e9d">04ac3db0</a>)</li>
<li>cleanup after time picker (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1c5d7c2d931de27282ca88f531201a14464e2d46">1c5d7c2d</a>)</li>
</ul>
</li>
</ul>
<h5 id="code-style-changes">Code Style Changes</h5>
<ul>
<li><strong>NumericStepperComponent:</strong> Use change instead of blur + add tabIndex=-1 on buttons to remove tabs focus + use class.off-limits instead of ng-class (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f776987060b093fde2c2ed8dcb1daeb11ad72ec3">f7769870</a>)</li>
</ul>
<h5 id="tests">Tests</h5>
<ul>
<li><strong>accordion e2e:</strong> Fix noImplicitAny compilation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/049c236a1ff50e64eac20cce8ee79bcc88b76902">049c236a</a>)</li>
<li><strong>CodeViewer:</strong> Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/684056b4a26960dd0fd80d34da56cdedd5717d01">684056b4</a>)</li>
<li><strong>DejaTextMetricsService:</strong> test. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/574076de47fbdf9e4454c943eae0a5221a7905f5">574076de</a>)</li>
<li><strong>CloningService:</strong> Added unit lodash test to compare with the previous cloning service test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/19c88289a25a285852d9239b727f09ec99b9891a">19c88289</a>)</li>
<li><strong>DejaMouseDragDrop:</strong><ul>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d72348cbeed05eeb56eb690ffbef85c89ecce398">d72348cb</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/44e01b3c24332695c04d613db083f905dcda0db5">44e01b3c</a>)</li>
<li>Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1255c8e4163c75746be06cc87347b2a1e058e1c3">1255c8e4</a>)</li>
</ul>
</li>
<li><strong>DejaAutoSizeTextArea:</strong><ul>
<li>Improve unit test when font can differ between linux and windows (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7bbbe6c450d9962afe9ee206d33238f3767b8781">7bbbe6c4</a>)</li>
<li>Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/30501ca875045596ef43b87eb8563506b5cd7a49">30501ca8</a>)</li>
</ul>
</li>
<li><strong>DejaTiles:</strong><ul>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/af14dee2586be476b33b75daeda2f96c84c6f945">af14dee2</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d16f313da87a3436e18ce2701e3d1d1ae47fa1ff">d16f313d</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/a990c2e7fabf756572e152d713e6ab97595ca5f3">a990c2e7</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/38d2fa3681a5c425089b7c4c37b7902a348c2457">38d2fa36</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3a998fe2e0bd99360023d1e6200daeb67d4e902e">3a998fe2</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/587bda103d843ae254ef33315e751cce4bf470c6">587bda10</a>)</li>
<li>Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e2beec3cc0ddd44d55edaa2cffe35e3c7a103e9b">e2beec3c</a>)</li>
</ul>
</li>
<li><strong>DejaGrid:</strong><ul>
<li>Improve unit test, replacing timer by spyOn (<a href="https://github.com/DSI-HUG/dejajs-components/commit/cfc6fb1b1768b1e89fafd1dc74a3a5ec23a3bd28">cfc6fb1b</a>)</li>
<li>Fix travis test timing issue (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c8d7fc7b5c7f1de2d75cd8b9fd8155ad937204fd">c8d7fc7b</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/5721cc8e6ea1f79343976a3ad48920d9cfd21822">5721cc8e</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/06febec870c666d250f3be8df7d63878ebfabbdb">06febec8</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/ffcc0a066fa9e7dbf2049b27eee289c296bc0e98">ffcc0a06</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1e1ae0ceaf43f57436573bf5af8b002b59cc5b94">1e1ae0ce</a>)</li>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/72c6ac49861bd2b5695689439b39c1395f2f12e2">72c6ac49</a>)</li>
<li>Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9650633a7fd50beb924ba7d896683f78ce253289">9650633a</a>)</li>
</ul>
</li>
<li><strong>DejaSelect:</strong><ul>
<li>Improve unit test, replacing timer by spyOn (<a href="https://github.com/DSI-HUG/dejajs-components/commit/21c742d0c4290db0f188943315ed39ca23de8ed9">21c742d0</a>)</li>
<li>Improve Unit Test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/18263df459b104a9a05c79dee58cc5289ed603c4">18263df4</a>)</li>
<li>Improve Unit Test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/6eedd9f4506e1dea6d9758182c8f65df2d3f4ca2">6eedd9f4</a>)</li>
</ul>
</li>
<li><strong>DejaTreeList:</strong> Improve unit test, replacing timer by spyOn (<a href="https://github.com/DSI-HUG/dejajs-components/commit/83ede9cffba5d4fd2f5a67a944a8575d69361178">83ede9cf</a>)</li>
<li><strong>DejaBoldQueryComponent:</strong> add junit test. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/d3f33ae5b3d2d81b4430ff40921605237aaaf719">d3f33ae5</a>)</li>
<li><strong>DejaViewPort:</strong> Added one test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1ddddfa4e98e17044294906bcc202f147cea1f40">1ddddfa4</a>)</li>
<li><strong>TimeAgoPipe:</strong> Add unit test for TimeAgo pipe (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f7036292219dfa2c895f4ec7c1c99a493a16e595">f7036292</a>)</li>
<li><strong>ViewPortTest:</strong><ul>
<li>fix (<a href="https://github.com/DSI-HUG/dejajs-components/commit/835bc644e80ae5fd8c5f9dadf5d603aa56949968">835bc644</a>)</li>
<li>fix (<a href="https://github.com/DSI-HUG/dejajs-components/commit/753c95db13c78ba3e68b2f252f6bb9442a5b3906">753c95db</a>)</li>
</ul>
</li>
<li><strong>Global:</strong> Replaced deprecated function to initiate MouseEvent (<a href="https://github.com/DSI-HUG/dejajs-components/commit/e9edb056ec4b535edd7971ceeeaa4965f94acbba">e9edb056</a>)</li>
<li><strong>DejaEditable:</strong> Add unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/4d9434c378341d3f3abde8cde0de008d795dfd1f">4d9434c3</a>)</li>
<li><strong>Graphics:</strong><ul>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/99158c83ce9a9bdaca66683c26fbb1f89f83db68">99158c83</a>)</li>
<li>Add unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c943744b60dd420ab165dded9d81022111832d44">c943744b</a>)</li>
</ul>
</li>
<li><strong>DejaClipboardService:</strong> Add unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/11488b1de61254b2c19bf6dc1cea3555dad1f5a8">11488b1d</a>)</li>
<li><strong>DejaSelectComponent:</strong><ul>
<li>Improve unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/c645bdb4b3fd6cb20e4a4b4aa5978ff39a8ded83">c645bdb4</a>)</li>
<li>Added unit test (<a href="https://github.com/DSI-HUG/dejajs-components/commit/1a6c2e5a37254ce215df1ded01a6ec5238e66767">1a6c2e5a</a>)</li>
</ul>
</li>
</ul>
<h4 id="2-24-2-2018-02-14-">2.24.2 (2018-02-14)</h4>
<h5 id="bug-fixes">Bug Fixes</h5>
<ul>
<li><strong>Global:</strong><ul>
<li>fix missing implementation for setDisabledState. (<a href="https://github.com/DSI-HUG/dejajs-components/commit/335f3d6d4e15eb26cfc731ed84f4bf17c064ebe6">335f3d6d</a>)</li>
<li>Correct noImplicitAny compile errors (<a href="https://github.com/DSI-HUG/dejajs-components/commit/9351b03653231693311f85c642cb14aae47b551b">9351b036</a>)</li>
</ul>
</li>
<li><strong>DejaGrid:</strong> Fix Object-Object displayed in the cell content when the value field is undefined (<a href="https://github.com/DSI-HUG/dejajs-components/commit/72f0b9a364196caddbd71ea988acd27c9cfcc919">72f0b9a3</a>)</li>
<li><strong>DejaNumericStepperModule:</strong> Export numericStepper component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/3af6735ab37a7bcaf84d1a80ac8e968aeb805641">3af6735a</a>)</li>
<li><strong>MonacoEditor:</strong> Added typings for css-element-queries (<a href="https://github.com/DSI-HUG/dejajs-components/commit/f98362e40576cd314771a213610817fc29569284">f98362e4</a>)</li>
<li><strong>DejaPopup:</strong> fix tabindex bug in demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/7a0b7665e96dfbc8cfda1b077b9ab55a38c4b0c8">7a0b7665</a>)</li>
</ul>
<h5 id="refactors">Refactors</h5>
<ul>
<li><strong>DejaPopup:</strong> readme and temaplate variables in component (<a href="https://github.com/DSI-HUG/dejajs-components/commit/eb06d19e8fd7aa6f3b93a8b9991bb888bf0f79bf">eb06d19e</a>)</li>
</ul>
<h5 id="tests">Tests</h5>
<ul>
<li><strong>accordion e2e:</strong> Fix noImplicitAny compilation (<a href="https://github.com/DSI-HUG/dejajs-components/commit/049c236a1ff50e64eac20cce8ee79bcc88b76902">049c236a</a>)</li>
</ul>
<h4 id="2-24-1-2018-02-13-">2.24.1 (2018-02-13)</h4>
<h5 id="documentation-changes">Documentation Changes</h5>
<ul>
<li><strong>Popup:</strong> demo app (<a href="https://github.com/DSI-HUG/dejajs-components/commit/88f8c6a6e7de4a9e8fbc395161a5173cefd1b942">88f8c6a6</a>)</li>
</ul>
<h5 id="new-features">New Features</h5>
<ul>
<li><strong>DejaPopup:</strong><ul>
<li>Draggable popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/18b0d968a027c26a56f856765452275586c7c48e">18b0d968</a>)</li>
<li>enable insert of templateRef in advanced popup (<a href="https://github.com/DSI-HUG/dejajs-components/commit/25970c1fde38eca3f049842dbaaa11ccbca47812">25970c1f</a>)</li>
<li>enable custom TemplateRef (<a href="https://github.com/DSI-HUG/dejajs-components/commit/64e8aa38e10b9425e251a6828e4515220dfb3816">64e8aa38</a>)</li>
</ul>
</li>