primeng 18.0.5-lts → 18.0.6-lts

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/autocomplete/autocomplete.d.ts +1 -1
  2. package/chips/chips.d.ts +237 -0
  3. package/chips/chips.interface.d.ts +66 -0
  4. package/chips/index.d.ts +5 -0
  5. package/chips/public_api.d.ts +2 -0
  6. package/chips/style/chipsstyle.d.ts +69 -0
  7. package/confirmdialog/confirmdialog.d.ts +1 -0
  8. package/datepicker/datepicker.d.ts +6 -2
  9. package/esm2022/accordion/accordion.mjs +13 -12
  10. package/esm2022/autocomplete/autocomplete.mjs +56 -56
  11. package/esm2022/base/style/basestyle.mjs +5 -1
  12. package/esm2022/carousel/carousel.mjs +3 -3
  13. package/esm2022/chips/chips.interface.mjs +2 -0
  14. package/esm2022/chips/chips.mjs +827 -0
  15. package/esm2022/chips/primeng-chips.mjs +5 -0
  16. package/esm2022/chips/public_api.mjs +3 -0
  17. package/esm2022/chips/style/chipsstyle.mjs +175 -0
  18. package/esm2022/confirmdialog/confirmdialog.mjs +11 -1
  19. package/esm2022/dataview/dataview.mjs +2 -2
  20. package/esm2022/datepicker/datepicker.mjs +26 -8
  21. package/esm2022/datepicker/style/datepickerstyle.mjs +6 -2
  22. package/esm2022/dynamicdialog/dynamicdialog.mjs +6 -2
  23. package/esm2022/inputmask/inputmask.mjs +2 -1
  24. package/esm2022/inputnumber/inputnumber.mjs +13 -5
  25. package/esm2022/listbox/listbox.mjs +1 -1
  26. package/esm2022/megamenu/megamenu.mjs +6 -8
  27. package/esm2022/menu/menu.mjs +2 -1
  28. package/esm2022/menubar/menubar.mjs +3 -4
  29. package/esm2022/multiselect/multiselect.interface.mjs +1 -1
  30. package/esm2022/multiselect/multiselect.mjs +25 -10
  31. package/esm2022/overlay/overlay.mjs +14 -10
  32. package/esm2022/panel/panel.mjs +1 -2
  33. package/esm2022/picklist/picklist.mjs +261 -173
  34. package/esm2022/scroller/scroller.mjs +26 -10
  35. package/esm2022/select/select.mjs +10 -7
  36. package/esm2022/selectbutton/selectbutton.mjs +12 -5
  37. package/esm2022/splitbutton/splitbutton.mjs +9 -28
  38. package/esm2022/stepper/stepper.mjs +3 -3
  39. package/esm2022/table/style/tablestyle.mjs +2 -2
  40. package/esm2022/table/table.mjs +37 -28
  41. package/esm2022/tabs/tabs.mjs +3 -3
  42. package/esm2022/tag/tag.mjs +1 -1
  43. package/esm2022/textarea/textarea.mjs +5 -1
  44. package/esm2022/tieredmenu/style/tieredmenustyle.mjs +13 -32
  45. package/esm2022/tieredmenu/tieredmenu.mjs +8 -8
  46. package/esm2022/togglebutton/style/togglebuttonstyle.mjs +2 -2
  47. package/esm2022/tooltip/tooltip.mjs +2 -2
  48. package/esm2022/tree/tree.mjs +51 -29
  49. package/esm2022/treeselect/treeselect.mjs +8 -7
  50. package/esm2022/treetable/treetable.mjs +3 -3
  51. package/fesm2022/primeng-accordion.mjs +12 -11
  52. package/fesm2022/primeng-accordion.mjs.map +1 -1
  53. package/fesm2022/primeng-autocomplete.mjs +55 -55
  54. package/fesm2022/primeng-autocomplete.mjs.map +1 -1
  55. package/fesm2022/primeng-base.mjs +4 -0
  56. package/fesm2022/primeng-base.mjs.map +1 -1
  57. package/fesm2022/primeng-carousel.mjs +2 -2
  58. package/fesm2022/primeng-carousel.mjs.map +1 -1
  59. package/fesm2022/primeng-chips.mjs +1006 -0
  60. package/fesm2022/primeng-chips.mjs.map +1 -0
  61. package/fesm2022/primeng-confirmdialog.mjs +10 -0
  62. package/fesm2022/primeng-confirmdialog.mjs.map +1 -1
  63. package/fesm2022/primeng-dataview.mjs +1 -1
  64. package/fesm2022/primeng-dataview.mjs.map +1 -1
  65. package/fesm2022/primeng-datepicker.mjs +30 -8
  66. package/fesm2022/primeng-datepicker.mjs.map +1 -1
  67. package/fesm2022/primeng-dynamicdialog.mjs +5 -1
  68. package/fesm2022/primeng-dynamicdialog.mjs.map +1 -1
  69. package/fesm2022/primeng-inputmask.mjs +1 -0
  70. package/fesm2022/primeng-inputmask.mjs.map +1 -1
  71. package/fesm2022/primeng-inputnumber.mjs +12 -4
  72. package/fesm2022/primeng-inputnumber.mjs.map +1 -1
  73. package/fesm2022/primeng-listbox.mjs.map +1 -1
  74. package/fesm2022/primeng-megamenu.mjs +5 -7
  75. package/fesm2022/primeng-megamenu.mjs.map +1 -1
  76. package/fesm2022/primeng-menu.mjs +1 -0
  77. package/fesm2022/primeng-menu.mjs.map +1 -1
  78. package/fesm2022/primeng-menubar.mjs +2 -3
  79. package/fesm2022/primeng-menubar.mjs.map +1 -1
  80. package/fesm2022/primeng-multiselect.mjs +24 -9
  81. package/fesm2022/primeng-multiselect.mjs.map +1 -1
  82. package/fesm2022/primeng-overlay.mjs +13 -9
  83. package/fesm2022/primeng-overlay.mjs.map +1 -1
  84. package/fesm2022/primeng-panel.mjs +0 -1
  85. package/fesm2022/primeng-panel.mjs.map +1 -1
  86. package/fesm2022/primeng-picklist.mjs +260 -172
  87. package/fesm2022/primeng-picklist.mjs.map +1 -1
  88. package/fesm2022/primeng-scroller.mjs +25 -9
  89. package/fesm2022/primeng-scroller.mjs.map +1 -1
  90. package/fesm2022/primeng-select.mjs +9 -6
  91. package/fesm2022/primeng-select.mjs.map +1 -1
  92. package/fesm2022/primeng-selectbutton.mjs +11 -4
  93. package/fesm2022/primeng-selectbutton.mjs.map +1 -1
  94. package/fesm2022/primeng-splitbutton.mjs +9 -28
  95. package/fesm2022/primeng-splitbutton.mjs.map +1 -1
  96. package/fesm2022/primeng-stepper.mjs +2 -2
  97. package/fesm2022/primeng-stepper.mjs.map +1 -1
  98. package/fesm2022/primeng-table.mjs +38 -29
  99. package/fesm2022/primeng-table.mjs.map +1 -1
  100. package/fesm2022/primeng-tabs.mjs +2 -2
  101. package/fesm2022/primeng-tabs.mjs.map +1 -1
  102. package/fesm2022/primeng-tag.mjs.map +1 -1
  103. package/fesm2022/primeng-textarea.mjs +4 -0
  104. package/fesm2022/primeng-textarea.mjs.map +1 -1
  105. package/fesm2022/primeng-tieredmenu.mjs +20 -39
  106. package/fesm2022/primeng-tieredmenu.mjs.map +1 -1
  107. package/fesm2022/primeng-togglebutton.mjs +1 -1
  108. package/fesm2022/primeng-togglebutton.mjs.map +1 -1
  109. package/fesm2022/primeng-tooltip.mjs +1 -1
  110. package/fesm2022/primeng-tooltip.mjs.map +1 -1
  111. package/fesm2022/primeng-tree.mjs +50 -28
  112. package/fesm2022/primeng-tree.mjs.map +1 -1
  113. package/fesm2022/primeng-treeselect.mjs +7 -6
  114. package/fesm2022/primeng-treeselect.mjs.map +1 -1
  115. package/fesm2022/primeng-treetable.mjs +2 -2
  116. package/fesm2022/primeng-treetable.mjs.map +1 -1
  117. package/inputnumber/inputnumber.d.ts +6 -1
  118. package/listbox/listbox.d.ts +1 -1
  119. package/multiselect/multiselect.d.ts +10 -2
  120. package/multiselect/multiselect.interface.d.ts +1 -1
  121. package/package.json +321 -315
  122. package/panel/panel.d.ts +0 -1
  123. package/picklist/picklist.d.ts +2 -2
  124. package/scroller/scroller.d.ts +4 -0
  125. package/select/select.d.ts +1 -0
  126. package/selectbutton/selectbutton.d.ts +1 -0
  127. package/splitbutton/splitbutton.d.ts +4 -6
  128. package/table/table.d.ts +3 -1
  129. package/tag/tag.d.ts +1 -1
  130. package/textarea/textarea.d.ts +1 -0
  131. package/tree/tree.d.ts +7 -1
@@ -154,21 +154,21 @@ function PickList_div_1_12_Template(rf, ctx) { if (rf & 1) {
154
154
  } }
155
155
  function PickList_div_1_Template(rf, ctx) { if (rf & 1) {
156
156
  const _r2 = i0.ɵɵgetCurrentView();
157
- i0.ɵɵelementStart(0, "div", 15)(1, "button", 11);
157
+ i0.ɵɵelementStart(0, "div", 18)(1, "button", 14);
158
158
  i0.ɵɵlistener("click", function PickList_div_1_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); const sourcelist_r4 = i0.ɵɵreference(4); return i0.ɵɵresetView(ctx_r2.moveUp(sourcelist_r4, ctx_r2.source, ctx_r2.selectedItemsSource, ctx_r2.onSourceReorder, ctx_r2.SOURCE_LIST)); });
159
- i0.ɵɵtemplate(2, PickList_div_1_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 8)(3, PickList_div_1_3_Template, 1, 0, null, 16);
159
+ i0.ɵɵtemplate(2, PickList_div_1_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 11)(3, PickList_div_1_3_Template, 1, 0, null, 19);
160
160
  i0.ɵɵelementEnd();
161
- i0.ɵɵelementStart(4, "button", 11);
161
+ i0.ɵɵelementStart(4, "button", 14);
162
162
  i0.ɵɵlistener("click", function PickList_div_1_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); const sourcelist_r4 = i0.ɵɵreference(4); return i0.ɵɵresetView(ctx_r2.moveTop(sourcelist_r4, ctx_r2.source, ctx_r2.selectedItemsSource, ctx_r2.onSourceReorder, ctx_r2.SOURCE_LIST)); });
163
- i0.ɵɵtemplate(5, PickList_div_1_AngleDoubleUpIcon_5_Template, 1, 1, "AngleDoubleUpIcon", 8)(6, PickList_div_1_6_Template, 1, 0, null, 16);
163
+ i0.ɵɵtemplate(5, PickList_div_1_AngleDoubleUpIcon_5_Template, 1, 1, "AngleDoubleUpIcon", 11)(6, PickList_div_1_6_Template, 1, 0, null, 19);
164
164
  i0.ɵɵelementEnd();
165
- i0.ɵɵelementStart(7, "button", 11);
165
+ i0.ɵɵelementStart(7, "button", 14);
166
166
  i0.ɵɵlistener("click", function PickList_div_1_Template_button_click_7_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); const sourcelist_r4 = i0.ɵɵreference(4); return i0.ɵɵresetView(ctx_r2.moveDown(sourcelist_r4, ctx_r2.source, ctx_r2.selectedItemsSource, ctx_r2.onSourceReorder, ctx_r2.SOURCE_LIST)); });
167
- i0.ɵɵtemplate(8, PickList_div_1_AngleDownIcon_8_Template, 1, 1, "AngleDownIcon", 8)(9, PickList_div_1_9_Template, 1, 0, null, 16);
167
+ i0.ɵɵtemplate(8, PickList_div_1_AngleDownIcon_8_Template, 1, 1, "AngleDownIcon", 11)(9, PickList_div_1_9_Template, 1, 0, null, 19);
168
168
  i0.ɵɵelementEnd();
169
- i0.ɵɵelementStart(10, "button", 11);
169
+ i0.ɵɵelementStart(10, "button", 14);
170
170
  i0.ɵɵlistener("click", function PickList_div_1_Template_button_click_10_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); const sourcelist_r4 = i0.ɵɵreference(4); return i0.ɵɵresetView(ctx_r2.moveBottom(sourcelist_r4, ctx_r2.source, ctx_r2.selectedItemsSource, ctx_r2.onSourceReorder, ctx_r2.SOURCE_LIST)); });
171
- i0.ɵɵtemplate(11, PickList_div_1_AngleDoubleDownIcon_11_Template, 1, 1, "AngleDoubleDownIcon", 8)(12, PickList_div_1_12_Template, 1, 0, null, 16);
171
+ i0.ɵɵtemplate(11, PickList_div_1_AngleDoubleDownIcon_11_Template, 1, 1, "AngleDoubleDownIcon", 11)(12, PickList_div_1_12_Template, 1, 0, null, 19);
172
172
  i0.ɵɵelementEnd()();
173
173
  } if (rf & 2) {
174
174
  const ctx_r2 = i0.ɵɵnextContext();
@@ -202,39 +202,53 @@ function PickList_div_1_Template(rf, ctx) { if (rf & 1) {
202
202
  i0.ɵɵadvance();
203
203
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.moveBottomIconTemplate || ctx_r2._moveBottomIconTemplate);
204
204
  } }
205
- function PickList_ng_container_5_ng_template_1_0_ng_template_0_Template(rf, ctx) { }
206
- function PickList_ng_container_5_ng_template_1_0_Template(rf, ctx) { if (rf & 1) {
207
- i0.ɵɵtemplate(0, PickList_ng_container_5_ng_template_1_0_ng_template_0_Template, 0, 0, "ng-template");
205
+ function PickList_ng_container_5_ng_template_1_div_0_Template(rf, ctx) { if (rf & 1) {
206
+ i0.ɵɵelementStart(0, "div", 20);
207
+ i0.ɵɵtext(1);
208
+ i0.ɵɵelementEnd();
209
+ } if (rf & 2) {
210
+ const ctx_r2 = i0.ɵɵnextContext(3);
211
+ i0.ɵɵadvance();
212
+ i0.ɵɵtextInterpolate(ctx_r2.sourceHeader);
213
+ } }
214
+ function PickList_ng_container_5_ng_template_1_1_ng_template_0_Template(rf, ctx) { }
215
+ function PickList_ng_container_5_ng_template_1_1_Template(rf, ctx) { if (rf & 1) {
216
+ i0.ɵɵtemplate(0, PickList_ng_container_5_ng_template_1_1_ng_template_0_Template, 0, 0, "ng-template");
208
217
  } }
209
218
  function PickList_ng_container_5_ng_template_1_Template(rf, ctx) { if (rf & 1) {
210
- i0.ɵɵtemplate(0, PickList_ng_container_5_ng_template_1_0_Template, 1, 0, null, 16);
219
+ i0.ɵɵtemplate(0, PickList_ng_container_5_ng_template_1_div_0_Template, 2, 1, "div", 12)(1, PickList_ng_container_5_ng_template_1_1_Template, 1, 0, null, 19);
211
220
  } if (rf & 2) {
212
221
  const ctx_r2 = i0.ɵɵnextContext(2);
222
+ i0.ɵɵproperty("ngIf", !ctx_r2.sourceHeaderTemplate && !ctx_r2._sourceHeaderTemplate);
223
+ i0.ɵɵadvance();
213
224
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.sourceHeaderTemplate || ctx_r2._sourceHeaderTemplate);
214
225
  } }
215
226
  function PickList_ng_container_5_Template(rf, ctx) { if (rf & 1) {
216
227
  i0.ɵɵelementContainerStart(0);
217
- i0.ɵɵtemplate(1, PickList_ng_container_5_ng_template_1_Template, 1, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
228
+ i0.ɵɵtemplate(1, PickList_ng_container_5_ng_template_1_Template, 2, 2, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
218
229
  i0.ɵɵelementContainerEnd();
219
230
  } }
220
- function PickList_ng_container_6_ng_container_1_Template(rf, ctx) { if (rf & 1) {
221
- i0.ɵɵelementContainer(0);
231
+ function PickList_ng_container_6_ng_template_1_0_ng_template_0_Template(rf, ctx) { }
232
+ function PickList_ng_container_6_ng_template_1_0_Template(rf, ctx) { if (rf & 1) {
233
+ i0.ɵɵtemplate(0, PickList_ng_container_6_ng_template_1_0_ng_template_0_Template, 0, 0, "ng-template");
234
+ } }
235
+ function PickList_ng_container_6_ng_template_1_Template(rf, ctx) { if (rf & 1) {
236
+ i0.ɵɵtemplate(0, PickList_ng_container_6_ng_template_1_0_Template, 1, 0, null, 15);
237
+ } if (rf & 2) {
238
+ const ctx_r2 = i0.ɵɵnextContext(2);
239
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.sourceFilterTemplate || ctx_r2._sourceFilterTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(2, _c23, ctx_r2.sourceFilterOptions));
222
240
  } }
223
241
  function PickList_ng_container_6_Template(rf, ctx) { if (rf & 1) {
224
242
  i0.ɵɵelementContainerStart(0);
225
- i0.ɵɵtemplate(1, PickList_ng_container_6_ng_container_1_Template, 1, 0, "ng-container", 12);
243
+ i0.ɵɵtemplate(1, PickList_ng_container_6_ng_template_1_Template, 1, 4, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
226
244
  i0.ɵɵelementContainerEnd();
227
- } if (rf & 2) {
228
- const ctx_r2 = i0.ɵɵnextContext();
229
- i0.ɵɵadvance();
230
- i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.sourceFilterTemplate || ctx_r2._sourceFilterTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(2, _c23, ctx_r2.sourceFilterOptions));
231
245
  } }
232
246
  function PickList_ng_container_7_ng_container_1_Template(rf, ctx) { if (rf & 1) {
233
247
  i0.ɵɵelementContainer(0);
234
248
  } }
235
249
  function PickList_ng_container_7_Template(rf, ctx) { if (rf & 1) {
236
250
  i0.ɵɵelementContainerStart(0);
237
- i0.ɵɵtemplate(1, PickList_ng_container_7_ng_container_1_Template, 1, 0, "ng-container", 16);
251
+ i0.ɵɵtemplate(1, PickList_ng_container_7_ng_container_1_Template, 1, 0, "ng-container", 19);
238
252
  i0.ɵɵelementContainerEnd();
239
253
  } if (rf & 2) {
240
254
  const ctx_r2 = i0.ɵɵnextContext();
@@ -242,7 +256,7 @@ function PickList_ng_container_7_Template(rf, ctx) { if (rf & 1) {
242
256
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.sourceFilterIconTemplate || ctx_r2._sourceFilterIconTemplate);
243
257
  } }
244
258
  function PickList_div_8_Template(rf, ctx) { if (rf & 1) {
245
- i0.ɵɵelementStart(0, "div", 17);
259
+ i0.ɵɵelementStart(0, "div", 20);
246
260
  i0.ɵɵtext(1);
247
261
  i0.ɵɵelementEnd();
248
262
  } if (rf & 2) {
@@ -254,7 +268,7 @@ function PickList_ng_container_9_ng_template_1_ng_container_0_Template(rf, ctx)
254
268
  i0.ɵɵelementContainer(0);
255
269
  } }
256
270
  function PickList_ng_container_9_ng_template_1_Template(rf, ctx) { if (rf & 1) {
257
- i0.ɵɵtemplate(0, PickList_ng_container_9_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 12);
271
+ i0.ɵɵtemplate(0, PickList_ng_container_9_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 15);
258
272
  } if (rf & 2) {
259
273
  const item_r5 = ctx.$implicit;
260
274
  const index_r6 = ctx.index;
@@ -264,34 +278,50 @@ function PickList_ng_container_9_ng_template_1_Template(rf, ctx) { if (rf & 1) {
264
278
  } }
265
279
  function PickList_ng_container_9_Template(rf, ctx) { if (rf & 1) {
266
280
  i0.ɵɵelementContainerStart(0);
267
- i0.ɵɵtemplate(1, PickList_ng_container_9_ng_template_1_Template, 1, 6, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
281
+ i0.ɵɵtemplate(1, PickList_ng_container_9_ng_template_1_Template, 1, 6, "ng-template", null, 4, i0.ɵɵtemplateRefExtractor);
268
282
  i0.ɵɵelementContainerEnd();
269
283
  } }
270
- function PickList_ng_container_10_ng_container_1_Template(rf, ctx) { if (rf & 1) {
284
+ function PickList_ng_container_10_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
271
285
  i0.ɵɵelementContainer(0);
272
286
  } }
287
+ function PickList_ng_container_10_ng_template_1_Template(rf, ctx) { if (rf & 1) {
288
+ i0.ɵɵtemplate(0, PickList_ng_container_10_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 19);
289
+ } if (rf & 2) {
290
+ const ctx_r2 = i0.ɵɵnextContext(2);
291
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyMessageSourceTemplate || ctx_r2._emptyMessageSourceTemplate);
292
+ } }
273
293
  function PickList_ng_container_10_Template(rf, ctx) { if (rf & 1) {
274
294
  i0.ɵɵelementContainerStart(0);
275
- i0.ɵɵtemplate(1, PickList_ng_container_10_ng_container_1_Template, 1, 0, "ng-container", 16);
295
+ i0.ɵɵtemplate(1, PickList_ng_container_10_ng_template_1_Template, 1, 1, "ng-template", null, 5, i0.ɵɵtemplateRefExtractor);
276
296
  i0.ɵɵelementContainerEnd();
297
+ } }
298
+ function PickList_ng_container_11_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
299
+ i0.ɵɵelementContainer(0);
300
+ } }
301
+ function PickList_ng_container_11_ng_template_1_Template(rf, ctx) { if (rf & 1) {
302
+ i0.ɵɵtemplate(0, PickList_ng_container_11_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 19);
277
303
  } if (rf & 2) {
278
- const ctx_r2 = i0.ɵɵnextContext();
279
- i0.ɵɵadvance();
280
- i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyFilterMessageSourceTemplate || ctx_r2._emptyFilterMessageSourceTemplate || ctx_r2.emptyMessageSourceTemplate || ctx_r2._emptyMessageSourceTemplate);
304
+ const ctx_r2 = i0.ɵɵnextContext(2);
305
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyFilterMessageSourceTemplate || ctx_r2._emptyFilterMessageSourceTemplate);
306
+ } }
307
+ function PickList_ng_container_11_Template(rf, ctx) { if (rf & 1) {
308
+ i0.ɵɵelementContainerStart(0);
309
+ i0.ɵɵtemplate(1, PickList_ng_container_11_ng_template_1_Template, 1, 1, "ng-template", null, 6, i0.ɵɵtemplateRefExtractor);
310
+ i0.ɵɵelementContainerEnd();
281
311
  } }
282
- function PickList_ng_container_13_AngleRightIcon_1_Template(rf, ctx) { if (rf & 1) {
312
+ function PickList_ng_container_14_AngleRightIcon_1_Template(rf, ctx) { if (rf & 1) {
283
313
  i0.ɵɵelement(0, "AngleRightIcon");
284
314
  } if (rf & 2) {
285
315
  i0.ɵɵattribute("data-pc-section", "movetotargeticon");
286
316
  } }
287
- function PickList_ng_container_13_AngleDownIcon_2_Template(rf, ctx) { if (rf & 1) {
317
+ function PickList_ng_container_14_AngleDownIcon_2_Template(rf, ctx) { if (rf & 1) {
288
318
  i0.ɵɵelement(0, "AngleDownIcon");
289
319
  } if (rf & 2) {
290
320
  i0.ɵɵattribute("data-pc-section", "movetotargeticon");
291
321
  } }
292
- function PickList_ng_container_13_Template(rf, ctx) { if (rf & 1) {
322
+ function PickList_ng_container_14_Template(rf, ctx) { if (rf & 1) {
293
323
  i0.ɵɵelementContainerStart(0);
294
- i0.ɵɵtemplate(1, PickList_ng_container_13_AngleRightIcon_1_Template, 1, 1, "AngleRightIcon", 8)(2, PickList_ng_container_13_AngleDownIcon_2_Template, 1, 1, "AngleDownIcon", 8);
324
+ i0.ɵɵtemplate(1, PickList_ng_container_14_AngleRightIcon_1_Template, 1, 1, "AngleRightIcon", 11)(2, PickList_ng_container_14_AngleDownIcon_2_Template, 1, 1, "AngleDownIcon", 11);
295
325
  i0.ɵɵelementContainerEnd();
296
326
  } if (rf & 2) {
297
327
  const ctx_r2 = i0.ɵɵnextContext();
@@ -300,23 +330,23 @@ function PickList_ng_container_13_Template(rf, ctx) { if (rf & 1) {
300
330
  i0.ɵɵadvance();
301
331
  i0.ɵɵproperty("ngIf", ctx_r2.viewChanged);
302
332
  } }
303
- function PickList_14_ng_template_0_Template(rf, ctx) { }
304
- function PickList_14_Template(rf, ctx) { if (rf & 1) {
305
- i0.ɵɵtemplate(0, PickList_14_ng_template_0_Template, 0, 0, "ng-template");
333
+ function PickList_15_ng_template_0_Template(rf, ctx) { }
334
+ function PickList_15_Template(rf, ctx) { if (rf & 1) {
335
+ i0.ɵɵtemplate(0, PickList_15_ng_template_0_Template, 0, 0, "ng-template");
306
336
  } }
307
- function PickList_ng_container_16_AngleDoubleRightIcon_1_Template(rf, ctx) { if (rf & 1) {
337
+ function PickList_ng_container_17_AngleDoubleRightIcon_1_Template(rf, ctx) { if (rf & 1) {
308
338
  i0.ɵɵelement(0, "AngleDoubleRightIcon");
309
339
  } if (rf & 2) {
310
340
  i0.ɵɵattribute("data-pc-section", "movealltotargeticon");
311
341
  } }
312
- function PickList_ng_container_16_AngleDoubleDownIcon_2_Template(rf, ctx) { if (rf & 1) {
342
+ function PickList_ng_container_17_AngleDoubleDownIcon_2_Template(rf, ctx) { if (rf & 1) {
313
343
  i0.ɵɵelement(0, "AngleDoubleDownIcon");
314
344
  } if (rf & 2) {
315
345
  i0.ɵɵattribute("data-pc-section", "movealltotargeticon");
316
346
  } }
317
- function PickList_ng_container_16_Template(rf, ctx) { if (rf & 1) {
347
+ function PickList_ng_container_17_Template(rf, ctx) { if (rf & 1) {
318
348
  i0.ɵɵelementContainerStart(0);
319
- i0.ɵɵtemplate(1, PickList_ng_container_16_AngleDoubleRightIcon_1_Template, 1, 1, "AngleDoubleRightIcon", 8)(2, PickList_ng_container_16_AngleDoubleDownIcon_2_Template, 1, 1, "AngleDoubleDownIcon", 8);
349
+ i0.ɵɵtemplate(1, PickList_ng_container_17_AngleDoubleRightIcon_1_Template, 1, 1, "AngleDoubleRightIcon", 11)(2, PickList_ng_container_17_AngleDoubleDownIcon_2_Template, 1, 1, "AngleDoubleDownIcon", 11);
320
350
  i0.ɵɵelementContainerEnd();
321
351
  } if (rf & 2) {
322
352
  const ctx_r2 = i0.ɵɵnextContext();
@@ -325,23 +355,23 @@ function PickList_ng_container_16_Template(rf, ctx) { if (rf & 1) {
325
355
  i0.ɵɵadvance();
326
356
  i0.ɵɵproperty("ngIf", ctx_r2.viewChanged);
327
357
  } }
328
- function PickList_17_ng_template_0_Template(rf, ctx) { }
329
- function PickList_17_Template(rf, ctx) { if (rf & 1) {
330
- i0.ɵɵtemplate(0, PickList_17_ng_template_0_Template, 0, 0, "ng-template");
358
+ function PickList_18_ng_template_0_Template(rf, ctx) { }
359
+ function PickList_18_Template(rf, ctx) { if (rf & 1) {
360
+ i0.ɵɵtemplate(0, PickList_18_ng_template_0_Template, 0, 0, "ng-template");
331
361
  } }
332
- function PickList_ng_container_19_AngleLeftIcon_1_Template(rf, ctx) { if (rf & 1) {
362
+ function PickList_ng_container_20_AngleLeftIcon_1_Template(rf, ctx) { if (rf & 1) {
333
363
  i0.ɵɵelement(0, "AngleLeftIcon");
334
364
  } if (rf & 2) {
335
365
  i0.ɵɵattribute("data-pc-section", "movedownsourceticon");
336
366
  } }
337
- function PickList_ng_container_19_AngleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
367
+ function PickList_ng_container_20_AngleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
338
368
  i0.ɵɵelement(0, "AngleUpIcon");
339
369
  } if (rf & 2) {
340
370
  i0.ɵɵattribute("data-pc-section", "movedownsourceticon");
341
371
  } }
342
- function PickList_ng_container_19_Template(rf, ctx) { if (rf & 1) {
372
+ function PickList_ng_container_20_Template(rf, ctx) { if (rf & 1) {
343
373
  i0.ɵɵelementContainerStart(0);
344
- i0.ɵɵtemplate(1, PickList_ng_container_19_AngleLeftIcon_1_Template, 1, 1, "AngleLeftIcon", 8)(2, PickList_ng_container_19_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 8);
374
+ i0.ɵɵtemplate(1, PickList_ng_container_20_AngleLeftIcon_1_Template, 1, 1, "AngleLeftIcon", 11)(2, PickList_ng_container_20_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 11);
345
375
  i0.ɵɵelementContainerEnd();
346
376
  } if (rf & 2) {
347
377
  const ctx_r2 = i0.ɵɵnextContext();
@@ -350,23 +380,23 @@ function PickList_ng_container_19_Template(rf, ctx) { if (rf & 1) {
350
380
  i0.ɵɵadvance();
351
381
  i0.ɵɵproperty("ngIf", ctx_r2.viewChanged);
352
382
  } }
353
- function PickList_20_ng_template_0_Template(rf, ctx) { }
354
- function PickList_20_Template(rf, ctx) { if (rf & 1) {
355
- i0.ɵɵtemplate(0, PickList_20_ng_template_0_Template, 0, 0, "ng-template");
383
+ function PickList_21_ng_template_0_Template(rf, ctx) { }
384
+ function PickList_21_Template(rf, ctx) { if (rf & 1) {
385
+ i0.ɵɵtemplate(0, PickList_21_ng_template_0_Template, 0, 0, "ng-template");
356
386
  } }
357
- function PickList_ng_container_22_AngleDoubleLeftIcon_1_Template(rf, ctx) { if (rf & 1) {
387
+ function PickList_ng_container_23_AngleDoubleLeftIcon_1_Template(rf, ctx) { if (rf & 1) {
358
388
  i0.ɵɵelement(0, "AngleDoubleLeftIcon");
359
389
  } if (rf & 2) {
360
390
  i0.ɵɵattribute("data-pc-section", "movealltosourceticon");
361
391
  } }
362
- function PickList_ng_container_22_AngleDoubleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
392
+ function PickList_ng_container_23_AngleDoubleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
363
393
  i0.ɵɵelement(0, "AngleDoubleUpIcon");
364
394
  } if (rf & 2) {
365
395
  i0.ɵɵattribute("data-pc-section", "movealltosourceticon");
366
396
  } }
367
- function PickList_ng_container_22_Template(rf, ctx) { if (rf & 1) {
397
+ function PickList_ng_container_23_Template(rf, ctx) { if (rf & 1) {
368
398
  i0.ɵɵelementContainerStart(0);
369
- i0.ɵɵtemplate(1, PickList_ng_container_22_AngleDoubleLeftIcon_1_Template, 1, 1, "AngleDoubleLeftIcon", 8)(2, PickList_ng_container_22_AngleDoubleUpIcon_2_Template, 1, 1, "AngleDoubleUpIcon", 8);
399
+ i0.ɵɵtemplate(1, PickList_ng_container_23_AngleDoubleLeftIcon_1_Template, 1, 1, "AngleDoubleLeftIcon", 11)(2, PickList_ng_container_23_AngleDoubleUpIcon_2_Template, 1, 1, "AngleDoubleUpIcon", 11);
370
400
  i0.ɵɵelementContainerEnd();
371
401
  } if (rf & 2) {
372
402
  const ctx_r2 = i0.ɵɵnextContext();
@@ -375,51 +405,65 @@ function PickList_ng_container_22_Template(rf, ctx) { if (rf & 1) {
375
405
  i0.ɵɵadvance();
376
406
  i0.ɵɵproperty("ngIf", ctx_r2.viewChanged);
377
407
  } }
378
- function PickList_23_ng_template_0_Template(rf, ctx) { }
379
- function PickList_23_Template(rf, ctx) { if (rf & 1) {
380
- i0.ɵɵtemplate(0, PickList_23_ng_template_0_Template, 0, 0, "ng-template");
408
+ function PickList_24_ng_template_0_Template(rf, ctx) { }
409
+ function PickList_24_Template(rf, ctx) { if (rf & 1) {
410
+ i0.ɵɵtemplate(0, PickList_24_ng_template_0_Template, 0, 0, "ng-template");
381
411
  } }
382
- function PickList_ng_container_27_ng_template_1_0_ng_template_0_Template(rf, ctx) { }
383
- function PickList_ng_container_27_ng_template_1_0_Template(rf, ctx) { if (rf & 1) {
384
- i0.ɵɵtemplate(0, PickList_ng_container_27_ng_template_1_0_ng_template_0_Template, 0, 0, "ng-template");
412
+ function PickList_ng_container_28_ng_template_1_div_0_Template(rf, ctx) { if (rf & 1) {
413
+ i0.ɵɵelementStart(0, "div", 20);
414
+ i0.ɵɵtext(1);
415
+ i0.ɵɵelementEnd();
416
+ } if (rf & 2) {
417
+ const ctx_r2 = i0.ɵɵnextContext(3);
418
+ i0.ɵɵadvance();
419
+ i0.ɵɵtextInterpolate(ctx_r2.targetHeader);
420
+ } }
421
+ function PickList_ng_container_28_ng_template_1_1_ng_template_0_Template(rf, ctx) { }
422
+ function PickList_ng_container_28_ng_template_1_1_Template(rf, ctx) { if (rf & 1) {
423
+ i0.ɵɵtemplate(0, PickList_ng_container_28_ng_template_1_1_ng_template_0_Template, 0, 0, "ng-template");
385
424
  } }
386
- function PickList_ng_container_27_ng_template_1_Template(rf, ctx) { if (rf & 1) {
387
- i0.ɵɵtemplate(0, PickList_ng_container_27_ng_template_1_0_Template, 1, 0, null, 16);
425
+ function PickList_ng_container_28_ng_template_1_Template(rf, ctx) { if (rf & 1) {
426
+ i0.ɵɵtemplate(0, PickList_ng_container_28_ng_template_1_div_0_Template, 2, 1, "div", 12)(1, PickList_ng_container_28_ng_template_1_1_Template, 1, 0, null, 19);
388
427
  } if (rf & 2) {
389
428
  const ctx_r2 = i0.ɵɵnextContext(2);
429
+ i0.ɵɵproperty("ngIf", !ctx_r2.targetHeaderTemplate && !ctx_r2._targetHeaderTemplate);
430
+ i0.ɵɵadvance();
390
431
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.targetHeaderTemplate || ctx_r2._targetHeaderTemplate);
391
432
  } }
392
- function PickList_ng_container_27_Template(rf, ctx) { if (rf & 1) {
433
+ function PickList_ng_container_28_Template(rf, ctx) { if (rf & 1) {
393
434
  i0.ɵɵelementContainerStart(0);
394
- i0.ɵɵtemplate(1, PickList_ng_container_27_ng_template_1_Template, 1, 1, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
435
+ i0.ɵɵtemplate(1, PickList_ng_container_28_ng_template_1_Template, 2, 2, "ng-template", null, 2, i0.ɵɵtemplateRefExtractor);
395
436
  i0.ɵɵelementContainerEnd();
396
437
  } }
397
- function PickList_ng_container_28_ng_container_1_Template(rf, ctx) { if (rf & 1) {
398
- i0.ɵɵelementContainer(0);
438
+ function PickList_ng_container_29_ng_template_1_0_ng_template_0_Template(rf, ctx) { }
439
+ function PickList_ng_container_29_ng_template_1_0_Template(rf, ctx) { if (rf & 1) {
440
+ i0.ɵɵtemplate(0, PickList_ng_container_29_ng_template_1_0_ng_template_0_Template, 0, 0, "ng-template");
399
441
  } }
400
- function PickList_ng_container_28_Template(rf, ctx) { if (rf & 1) {
401
- i0.ɵɵelementContainerStart(0);
402
- i0.ɵɵtemplate(1, PickList_ng_container_28_ng_container_1_Template, 1, 0, "ng-container", 12);
403
- i0.ɵɵelementContainerEnd();
442
+ function PickList_ng_container_29_ng_template_1_Template(rf, ctx) { if (rf & 1) {
443
+ i0.ɵɵtemplate(0, PickList_ng_container_29_ng_template_1_0_Template, 1, 0, null, 15);
404
444
  } if (rf & 2) {
405
- const ctx_r2 = i0.ɵɵnextContext();
406
- i0.ɵɵadvance();
445
+ const ctx_r2 = i0.ɵɵnextContext(2);
407
446
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.targetFilterTemplate || ctx_r2._targetFilterTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(2, _c23, ctx_r2.targetFilterOptions));
408
447
  } }
409
- function PickList_ng_container_29_ng_container_1_Template(rf, ctx) { if (rf & 1) {
448
+ function PickList_ng_container_29_Template(rf, ctx) { if (rf & 1) {
449
+ i0.ɵɵelementContainerStart(0);
450
+ i0.ɵɵtemplate(1, PickList_ng_container_29_ng_template_1_Template, 1, 4, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
451
+ i0.ɵɵelementContainerEnd();
452
+ } }
453
+ function PickList_ng_container_30_ng_container_1_Template(rf, ctx) { if (rf & 1) {
410
454
  i0.ɵɵelementContainer(0);
411
455
  } }
412
- function PickList_ng_container_29_Template(rf, ctx) { if (rf & 1) {
456
+ function PickList_ng_container_30_Template(rf, ctx) { if (rf & 1) {
413
457
  i0.ɵɵelementContainerStart(0);
414
- i0.ɵɵtemplate(1, PickList_ng_container_29_ng_container_1_Template, 1, 0, "ng-container", 16);
458
+ i0.ɵɵtemplate(1, PickList_ng_container_30_ng_container_1_Template, 1, 0, "ng-container", 19);
415
459
  i0.ɵɵelementContainerEnd();
416
460
  } if (rf & 2) {
417
461
  const ctx_r2 = i0.ɵɵnextContext();
418
462
  i0.ɵɵadvance();
419
463
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.targetFilterIconTemplate || ctx_r2._targetFilterIconTemplate);
420
464
  } }
421
- function PickList_div_30_Template(rf, ctx) { if (rf & 1) {
422
- i0.ɵɵelementStart(0, "div", 17);
465
+ function PickList_div_31_Template(rf, ctx) { if (rf & 1) {
466
+ i0.ɵɵelementStart(0, "div", 20);
423
467
  i0.ɵɵtext(1);
424
468
  i0.ɵɵelementEnd();
425
469
  } if (rf & 2) {
@@ -427,11 +471,11 @@ function PickList_div_30_Template(rf, ctx) { if (rf & 1) {
427
471
  i0.ɵɵadvance();
428
472
  i0.ɵɵtextInterpolate(ctx_r2.targetHeader);
429
473
  } }
430
- function PickList_ng_container_31_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
474
+ function PickList_ng_container_32_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
431
475
  i0.ɵɵelementContainer(0);
432
476
  } }
433
- function PickList_ng_container_31_ng_template_1_Template(rf, ctx) { if (rf & 1) {
434
- i0.ɵɵtemplate(0, PickList_ng_container_31_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 12);
477
+ function PickList_ng_container_32_ng_template_1_Template(rf, ctx) { if (rf & 1) {
478
+ i0.ɵɵtemplate(0, PickList_ng_container_32_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 15);
435
479
  } if (rf & 2) {
436
480
  const item_r8 = ctx.$implicit;
437
481
  const index_r9 = ctx.index;
@@ -439,76 +483,92 @@ function PickList_ng_container_31_ng_template_1_Template(rf, ctx) { if (rf & 1)
439
483
  const ctx_r2 = i0.ɵɵnextContext(2);
440
484
  i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.itemTemplate || ctx_r2._itemTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction3(2, _c24, item_r8, index_r9, selected_r10));
441
485
  } }
442
- function PickList_ng_container_31_Template(rf, ctx) { if (rf & 1) {
486
+ function PickList_ng_container_32_Template(rf, ctx) { if (rf & 1) {
443
487
  i0.ɵɵelementContainerStart(0);
444
- i0.ɵɵtemplate(1, PickList_ng_container_31_ng_template_1_Template, 1, 6, "ng-template", null, 3, i0.ɵɵtemplateRefExtractor);
488
+ i0.ɵɵtemplate(1, PickList_ng_container_32_ng_template_1_Template, 1, 6, "ng-template", null, 4, i0.ɵɵtemplateRefExtractor);
445
489
  i0.ɵɵelementContainerEnd();
446
490
  } }
447
- function PickList_ng_container_32_ng_container_1_Template(rf, ctx) { if (rf & 1) {
491
+ function PickList_ng_container_33_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
448
492
  i0.ɵɵelementContainer(0);
449
493
  } }
450
- function PickList_ng_container_32_Template(rf, ctx) { if (rf & 1) {
494
+ function PickList_ng_container_33_ng_template_1_Template(rf, ctx) { if (rf & 1) {
495
+ i0.ɵɵtemplate(0, PickList_ng_container_33_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 19);
496
+ } if (rf & 2) {
497
+ const ctx_r2 = i0.ɵɵnextContext(2);
498
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyMessageTargetTemplate || ctx_r2._emptyMessageTargetTemplate);
499
+ } }
500
+ function PickList_ng_container_33_Template(rf, ctx) { if (rf & 1) {
451
501
  i0.ɵɵelementContainerStart(0);
452
- i0.ɵɵtemplate(1, PickList_ng_container_32_ng_container_1_Template, 1, 0, "ng-container", 16);
502
+ i0.ɵɵtemplate(1, PickList_ng_container_33_ng_template_1_Template, 1, 1, "ng-template", null, 5, i0.ɵɵtemplateRefExtractor);
453
503
  i0.ɵɵelementContainerEnd();
504
+ } }
505
+ function PickList_ng_container_34_ng_template_1_ng_container_0_Template(rf, ctx) { if (rf & 1) {
506
+ i0.ɵɵelementContainer(0);
507
+ } }
508
+ function PickList_ng_container_34_ng_template_1_Template(rf, ctx) { if (rf & 1) {
509
+ i0.ɵɵtemplate(0, PickList_ng_container_34_ng_template_1_ng_container_0_Template, 1, 0, "ng-container", 19);
454
510
  } if (rf & 2) {
455
- const ctx_r2 = i0.ɵɵnextContext();
456
- i0.ɵɵadvance();
457
- i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyFilterMessageTargetTemplate || ctx_r2._emptyFilterMessageTargetTemplate || ctx_r2.emptyMessageTargetTemplate || ctx_r2._emptyMessageTargetTemplate);
511
+ const ctx_r2 = i0.ɵɵnextContext(2);
512
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.emptyFilterMessageTargetTemplate || ctx_r2._emptyFilterMessageTargetTemplate);
458
513
  } }
459
- function PickList_div_33_AngleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
514
+ function PickList_ng_container_34_Template(rf, ctx) { if (rf & 1) {
515
+ i0.ɵɵelementContainerStart(0);
516
+ i0.ɵɵtemplate(1, PickList_ng_container_34_ng_template_1_Template, 1, 1, "ng-template", null, 6, i0.ɵɵtemplateRefExtractor);
517
+ i0.ɵɵelementContainerEnd();
518
+ } }
519
+ function PickList_div_35_AngleUpIcon_2_Template(rf, ctx) { if (rf & 1) {
460
520
  i0.ɵɵelement(0, "AngleUpIcon");
461
521
  } if (rf & 2) {
462
522
  i0.ɵɵattribute("data-pc-section", "moveupicon");
463
523
  } }
464
- function PickList_div_33_3_ng_template_0_Template(rf, ctx) { }
465
- function PickList_div_33_3_Template(rf, ctx) { if (rf & 1) {
466
- i0.ɵɵtemplate(0, PickList_div_33_3_ng_template_0_Template, 0, 0, "ng-template");
524
+ function PickList_div_35_3_ng_template_0_Template(rf, ctx) { }
525
+ function PickList_div_35_3_Template(rf, ctx) { if (rf & 1) {
526
+ i0.ɵɵtemplate(0, PickList_div_35_3_ng_template_0_Template, 0, 0, "ng-template");
467
527
  } }
468
- function PickList_div_33_AngleDoubleUpIcon_5_Template(rf, ctx) { if (rf & 1) {
528
+ function PickList_div_35_AngleDoubleUpIcon_5_Template(rf, ctx) { if (rf & 1) {
469
529
  i0.ɵɵelement(0, "AngleDoubleUpIcon");
470
530
  } if (rf & 2) {
471
531
  i0.ɵɵattribute("data-pc-section", "movetopicon");
472
532
  } }
473
- function PickList_div_33_6_ng_template_0_Template(rf, ctx) { }
474
- function PickList_div_33_6_Template(rf, ctx) { if (rf & 1) {
475
- i0.ɵɵtemplate(0, PickList_div_33_6_ng_template_0_Template, 0, 0, "ng-template");
533
+ function PickList_div_35_6_ng_template_0_Template(rf, ctx) { }
534
+ function PickList_div_35_6_Template(rf, ctx) { if (rf & 1) {
535
+ i0.ɵɵtemplate(0, PickList_div_35_6_ng_template_0_Template, 0, 0, "ng-template");
476
536
  } }
477
- function PickList_div_33_AngleDownIcon_8_Template(rf, ctx) { if (rf & 1) {
537
+ function PickList_div_35_AngleDownIcon_8_Template(rf, ctx) { if (rf & 1) {
478
538
  i0.ɵɵelement(0, "AngleDownIcon");
479
539
  } if (rf & 2) {
480
540
  i0.ɵɵattribute("data-pc-section", "movedownicon");
481
541
  } }
482
- function PickList_div_33_9_ng_template_0_Template(rf, ctx) { }
483
- function PickList_div_33_9_Template(rf, ctx) { if (rf & 1) {
484
- i0.ɵɵtemplate(0, PickList_div_33_9_ng_template_0_Template, 0, 0, "ng-template");
542
+ function PickList_div_35_9_ng_template_0_Template(rf, ctx) { }
543
+ function PickList_div_35_9_Template(rf, ctx) { if (rf & 1) {
544
+ i0.ɵɵtemplate(0, PickList_div_35_9_ng_template_0_Template, 0, 0, "ng-template");
485
545
  } }
486
- function PickList_div_33_AngleDoubleDownIcon_11_Template(rf, ctx) { if (rf & 1) {
546
+ function PickList_div_35_AngleDoubleDownIcon_11_Template(rf, ctx) { if (rf & 1) {
487
547
  i0.ɵɵelement(0, "AngleDoubleDownIcon");
488
548
  } if (rf & 2) {
489
549
  i0.ɵɵattribute("data-pc-section", "movebottomicon");
490
550
  } }
491
- function PickList_div_33_12_ng_template_0_Template(rf, ctx) { }
492
- function PickList_div_33_12_Template(rf, ctx) { if (rf & 1) {
493
- i0.ɵɵtemplate(0, PickList_div_33_12_ng_template_0_Template, 0, 0, "ng-template");
551
+ function PickList_div_35_12_ng_template_0_Template(rf, ctx) { }
552
+ function PickList_div_35_12_Template(rf, ctx) { if (rf & 1) {
553
+ i0.ɵɵtemplate(0, PickList_div_35_12_ng_template_0_Template, 0, 0, "ng-template");
494
554
  } }
495
- function PickList_div_33_Template(rf, ctx) { if (rf & 1) {
555
+ function PickList_div_35_Template(rf, ctx) { if (rf & 1) {
496
556
  const _r11 = i0.ɵɵgetCurrentView();
497
- i0.ɵɵelementStart(0, "div", 18)(1, "button", 11);
498
- i0.ɵɵlistener("click", function PickList_div_33_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(26); return i0.ɵɵresetView(ctx_r2.moveUp(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
499
- i0.ɵɵtemplate(2, PickList_div_33_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 8)(3, PickList_div_33_3_Template, 1, 0, null, 16);
557
+ i0.ɵɵelementStart(0, "div", 21)(1, "button", 14);
558
+ i0.ɵɵlistener("click", function PickList_div_35_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(27); return i0.ɵɵresetView(ctx_r2.moveUp(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
559
+ i0.ɵɵtemplate(2, PickList_div_35_AngleUpIcon_2_Template, 1, 1, "AngleUpIcon", 11)(3, PickList_div_35_3_Template, 1, 0, null, 19);
500
560
  i0.ɵɵelementEnd();
501
- i0.ɵɵelementStart(4, "button", 11);
502
- i0.ɵɵlistener("click", function PickList_div_33_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(26); return i0.ɵɵresetView(ctx_r2.moveTop(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
503
- i0.ɵɵtemplate(5, PickList_div_33_AngleDoubleUpIcon_5_Template, 1, 1, "AngleDoubleUpIcon", 8)(6, PickList_div_33_6_Template, 1, 0, null, 16);
561
+ i0.ɵɵelementStart(4, "button", 14);
562
+ i0.ɵɵlistener("click", function PickList_div_35_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(27); return i0.ɵɵresetView(ctx_r2.moveTop(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
563
+ i0.ɵɵtemplate(5, PickList_div_35_AngleDoubleUpIcon_5_Template, 1, 1, "AngleDoubleUpIcon", 11)(6, PickList_div_35_6_Template, 1, 0, null, 19);
504
564
  i0.ɵɵelementEnd();
505
- i0.ɵɵelementStart(7, "button", 11);
506
- i0.ɵɵlistener("click", function PickList_div_33_Template_button_click_7_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(26); return i0.ɵɵresetView(ctx_r2.moveDown(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
507
- i0.ɵɵtemplate(8, PickList_div_33_AngleDownIcon_8_Template, 1, 1, "AngleDownIcon", 8)(9, PickList_div_33_9_Template, 1, 0, null, 16);
565
+ i0.ɵɵelementStart(7, "button", 14);
566
+ i0.ɵɵlistener("click", function PickList_div_35_Template_button_click_7_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(27); return i0.ɵɵresetView(ctx_r2.moveDown(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
567
+ i0.ɵɵtemplate(8, PickList_div_35_AngleDownIcon_8_Template, 1, 1, "AngleDownIcon", 11)(9, PickList_div_35_9_Template, 1, 0, null, 19);
508
568
  i0.ɵɵelementEnd();
509
- i0.ɵɵelementStart(10, "button", 11);
510
- i0.ɵɵlistener("click", function PickList_div_33_Template_button_click_10_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(26); return i0.ɵɵresetView(ctx_r2.moveBottom(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
511
- i0.ɵɵtemplate(11, PickList_div_33_AngleDoubleDownIcon_11_Template, 1, 1, "AngleDoubleDownIcon", 8)(12, PickList_div_33_12_Template, 1, 0, null, 16);
569
+ i0.ɵɵelementStart(10, "button", 14);
570
+ i0.ɵɵlistener("click", function PickList_div_35_Template_button_click_10_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(); const targetlist_r12 = i0.ɵɵreference(27); return i0.ɵɵresetView(ctx_r2.moveBottom(targetlist_r12, ctx_r2.target, ctx_r2.selectedItemsTarget, ctx_r2.onTargetReorder, ctx_r2.TARGET_LIST)); });
571
+ i0.ɵɵtemplate(11, PickList_div_35_AngleDoubleDownIcon_11_Template, 1, 1, "AngleDoubleDownIcon", 11)(12, PickList_div_35_12_Template, 1, 0, null, 19);
512
572
  i0.ɵɵelementEnd()();
513
573
  } if (rf & 2) {
514
574
  const ctx_r2 = i0.ɵɵnextContext();
@@ -1221,14 +1281,14 @@ class PickList extends BaseComponent {
1221
1281
  return;
1222
1282
  }
1223
1283
  this.moveRight();
1224
- this.viewChildMarkForCheck();
1284
+ this.triggerChangeDetection();
1225
1285
  }
1226
1286
  onTargetItemDblClick() {
1227
1287
  if (this.disabled) {
1228
1288
  return;
1229
1289
  }
1230
1290
  this.moveLeft();
1231
- this.viewChildMarkForCheck();
1291
+ this.triggerChangeDetection();
1232
1292
  }
1233
1293
  onFilter(event, listType) {
1234
1294
  let query = event.target.value;
@@ -1289,9 +1349,9 @@ class PickList extends BaseComponent {
1289
1349
  sortByIndexInList(items, list) {
1290
1350
  return items.sort((item1, item2) => findIndexInList(item1, list) - findIndexInList(item2, list));
1291
1351
  }
1292
- viewChildMarkForCheck() {
1293
- this.listViewSourceChild.cd.markForCheck();
1294
- this.listViewTargetChild.cd.markForCheck();
1352
+ triggerChangeDetection() {
1353
+ this.source = [...this.source];
1354
+ this.target = [...this.target];
1295
1355
  }
1296
1356
  moveUp(listElement, list, selectedItems, callback, listType) {
1297
1357
  if (selectedItems && selectedItems.length) {
@@ -1314,7 +1374,7 @@ class PickList extends BaseComponent {
1314
1374
  this.movedUp = true;
1315
1375
  this.reorderedListElement = listElement;
1316
1376
  callback.emit({ items: selectedItems });
1317
- this.viewChildMarkForCheck();
1377
+ this.triggerChangeDetection();
1318
1378
  }
1319
1379
  }
1320
1380
  moveTop(listElement, list, selectedItems, callback, listType) {
@@ -1335,7 +1395,7 @@ class PickList extends BaseComponent {
1335
1395
  this.filter(list, listType);
1336
1396
  listElement.scrollTop = 0;
1337
1397
  callback.emit({ items: selectedItems });
1338
- this.viewChildMarkForCheck();
1398
+ this.triggerChangeDetection();
1339
1399
  }
1340
1400
  }
1341
1401
  moveDown(listElement, list, selectedItems, callback, listType) {
@@ -1359,7 +1419,7 @@ class PickList extends BaseComponent {
1359
1419
  this.movedDown = true;
1360
1420
  this.reorderedListElement = listElement;
1361
1421
  callback.emit({ items: selectedItems });
1362
- this.viewChildMarkForCheck();
1422
+ this.triggerChangeDetection();
1363
1423
  }
1364
1424
  }
1365
1425
  moveBottom(listElement, list, selectedItems, callback, listType) {
@@ -1380,7 +1440,7 @@ class PickList extends BaseComponent {
1380
1440
  this.filter(list, listType);
1381
1441
  listElement.scrollTop = listElement.scrollHeight;
1382
1442
  callback.emit({ items: selectedItems });
1383
- this.viewChildMarkForCheck();
1443
+ this.triggerChangeDetection();
1384
1444
  }
1385
1445
  }
1386
1446
  moveRight() {
@@ -1406,7 +1466,7 @@ class PickList extends BaseComponent {
1406
1466
  if (this.filterValueTarget) {
1407
1467
  this.filter(this.target, this.TARGET_LIST);
1408
1468
  }
1409
- this.viewChildMarkForCheck();
1469
+ this.triggerChangeDetection();
1410
1470
  }
1411
1471
  }
1412
1472
  moveAllRight() {
@@ -1431,7 +1491,7 @@ class PickList extends BaseComponent {
1431
1491
  this.filter(this.target, this.TARGET_LIST);
1432
1492
  }
1433
1493
  this.visibleOptionsSource = [];
1434
- this.viewChildMarkForCheck();
1494
+ this.triggerChangeDetection();
1435
1495
  }
1436
1496
  }
1437
1497
  moveLeft() {
@@ -1457,7 +1517,7 @@ class PickList extends BaseComponent {
1457
1517
  if (this.filterValueSource) {
1458
1518
  this.filter(this.source, this.SOURCE_LIST);
1459
1519
  }
1460
- this.viewChildMarkForCheck();
1520
+ this.triggerChangeDetection();
1461
1521
  }
1462
1522
  }
1463
1523
  moveAllLeft() {
@@ -1482,7 +1542,7 @@ class PickList extends BaseComponent {
1482
1542
  this.filter(this.source, this.SOURCE_LIST);
1483
1543
  }
1484
1544
  this.visibleOptionsTarget = [];
1485
- this.viewChildMarkForCheck();
1545
+ this.triggerChangeDetection();
1486
1546
  }
1487
1547
  }
1488
1548
  isSelected(item, selectedItems) {
@@ -1869,41 +1929,41 @@ class PickList extends BaseComponent {
1869
1929
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.listViewTargetChild = _t.first);
1870
1930
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sourceFilterViewChild = _t.first);
1871
1931
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.targetFilterViewChild = _t.first);
1872
- } }, inputs: { source: "source", target: "target", sourceHeader: "sourceHeader", tabindex: [2, "tabindex", "tabindex", numberAttribute], rightButtonAriaLabel: "rightButtonAriaLabel", leftButtonAriaLabel: "leftButtonAriaLabel", allRightButtonAriaLabel: "allRightButtonAriaLabel", allLeftButtonAriaLabel: "allLeftButtonAriaLabel", upButtonAriaLabel: "upButtonAriaLabel", downButtonAriaLabel: "downButtonAriaLabel", topButtonAriaLabel: "topButtonAriaLabel", bottomButtonAriaLabel: "bottomButtonAriaLabel", targetHeader: "targetHeader", responsive: [2, "responsive", "responsive", booleanAttribute], filterBy: "filterBy", filterLocale: "filterLocale", trackBy: "trackBy", sourceTrackBy: "sourceTrackBy", targetTrackBy: "targetTrackBy", showSourceFilter: [2, "showSourceFilter", "showSourceFilter", booleanAttribute], showTargetFilter: [2, "showTargetFilter", "showTargetFilter", booleanAttribute], metaKeySelection: [2, "metaKeySelection", "metaKeySelection", booleanAttribute], dragdrop: [2, "dragdrop", "dragdrop", booleanAttribute], style: "style", styleClass: "styleClass", sourceStyle: "sourceStyle", targetStyle: "targetStyle", showSourceControls: [2, "showSourceControls", "showSourceControls", booleanAttribute], showTargetControls: [2, "showTargetControls", "showTargetControls", booleanAttribute], sourceFilterPlaceholder: "sourceFilterPlaceholder", targetFilterPlaceholder: "targetFilterPlaceholder", disabled: [2, "disabled", "disabled", booleanAttribute], ariaSourceFilterLabel: "ariaSourceFilterLabel", ariaTargetFilterLabel: "ariaTargetFilterLabel", filterMatchMode: "filterMatchMode", stripedRows: [2, "stripedRows", "stripedRows", booleanAttribute], keepSelection: [2, "keepSelection", "keepSelection", booleanAttribute], scrollHeight: "scrollHeight", autoOptionFocus: [2, "autoOptionFocus", "autoOptionFocus", booleanAttribute], buttonProps: "buttonProps", moveUpButtonProps: "moveUpButtonProps", moveTopButtonProps: "moveTopButtonProps", moveDownButtonProps: "moveDownButtonProps", moveBottomButtonProps: "moveBottomButtonProps", moveToTargetProps: "moveToTargetProps", moveAllToTargetProps: "moveAllToTargetProps", moveToSourceProps: "moveToSourceProps", moveAllToSourceProps: "moveAllToSourceProps", breakpoint: "breakpoint" }, outputs: { onMoveToSource: "onMoveToSource", onMoveAllToSource: "onMoveAllToSource", onMoveAllToTarget: "onMoveAllToTarget", onMoveToTarget: "onMoveToTarget", onSourceReorder: "onSourceReorder", onTargetReorder: "onTargetReorder", onSourceSelect: "onSourceSelect", onTargetSelect: "onTargetSelect", onSourceFilter: "onSourceFilter", onTargetFilter: "onTargetFilter", onFocus: "onFocus", onBlur: "onBlur" }, standalone: true, features: [i0.ɵɵProvidersFeature([PickListStyle]), i0.ɵɵInputTransformsFeature, i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], decls: 34, vars: 93, consts: [["sourcelist", ""], ["targetlist", ""], ["header", ""], ["item", ""], ["cdkDropListGroup", "", 3, "ngStyle", "ngClass"], ["class", "p-picklist-controls p-picklist-source-controls", 4, "ngIf"], [1, "p-picklist-list-container", "p-picklist-source-list-container"], ["optionLabel", "name", 3, "ngModelChange", "onFocus", "onBlur", "keydown", "onDblClick", "multiple", "options", "ngModel", "id", "ngStyle", "striped", "tabindex", "disabled", "metaKeySelection", "scrollHeight", "autoOptionFocus", "filter", "filterBy", "filterLocale", "filterPlaceHolder"], [4, "ngIf"], ["class", "p-picklist-title", 4, "ngIf"], [1, "p-picklist-controls", "p-picklist-transfer-controls"], ["type", "button", "pButton", "", "pRipple", "", "severity", "secondary", 1, "p-button-icon-only", 3, "click", "disabled", "buttonProps"], [4, "ngTemplateOutlet", "ngTemplateOutletContext"], [1, "p-picklist-list-container", "p-picklist-target-list-container"], ["class", "p-picklist-controls p-picklist-target-controls", 4, "ngIf"], [1, "p-picklist-controls", "p-picklist-source-controls"], [4, "ngTemplateOutlet"], [1, "p-picklist-title"], [1, "p-picklist-controls", "p-picklist-target-controls"]], template: function PickList_Template(rf, ctx) { if (rf & 1) {
1932
+ } }, inputs: { source: "source", target: "target", sourceHeader: "sourceHeader", tabindex: [2, "tabindex", "tabindex", numberAttribute], rightButtonAriaLabel: "rightButtonAriaLabel", leftButtonAriaLabel: "leftButtonAriaLabel", allRightButtonAriaLabel: "allRightButtonAriaLabel", allLeftButtonAriaLabel: "allLeftButtonAriaLabel", upButtonAriaLabel: "upButtonAriaLabel", downButtonAriaLabel: "downButtonAriaLabel", topButtonAriaLabel: "topButtonAriaLabel", bottomButtonAriaLabel: "bottomButtonAriaLabel", targetHeader: "targetHeader", responsive: [2, "responsive", "responsive", booleanAttribute], filterBy: "filterBy", filterLocale: "filterLocale", trackBy: "trackBy", sourceTrackBy: "sourceTrackBy", targetTrackBy: "targetTrackBy", showSourceFilter: [2, "showSourceFilter", "showSourceFilter", booleanAttribute], showTargetFilter: [2, "showTargetFilter", "showTargetFilter", booleanAttribute], metaKeySelection: [2, "metaKeySelection", "metaKeySelection", booleanAttribute], dragdrop: [2, "dragdrop", "dragdrop", booleanAttribute], style: "style", styleClass: "styleClass", sourceStyle: "sourceStyle", targetStyle: "targetStyle", showSourceControls: [2, "showSourceControls", "showSourceControls", booleanAttribute], showTargetControls: [2, "showTargetControls", "showTargetControls", booleanAttribute], sourceFilterPlaceholder: "sourceFilterPlaceholder", targetFilterPlaceholder: "targetFilterPlaceholder", disabled: [2, "disabled", "disabled", booleanAttribute], ariaSourceFilterLabel: "ariaSourceFilterLabel", ariaTargetFilterLabel: "ariaTargetFilterLabel", filterMatchMode: "filterMatchMode", stripedRows: [2, "stripedRows", "stripedRows", booleanAttribute], keepSelection: [2, "keepSelection", "keepSelection", booleanAttribute], scrollHeight: "scrollHeight", autoOptionFocus: [2, "autoOptionFocus", "autoOptionFocus", booleanAttribute], buttonProps: "buttonProps", moveUpButtonProps: "moveUpButtonProps", moveTopButtonProps: "moveTopButtonProps", moveDownButtonProps: "moveDownButtonProps", moveBottomButtonProps: "moveBottomButtonProps", moveToTargetProps: "moveToTargetProps", moveAllToTargetProps: "moveAllToTargetProps", moveToSourceProps: "moveToSourceProps", moveAllToSourceProps: "moveAllToSourceProps", breakpoint: "breakpoint" }, outputs: { onMoveToSource: "onMoveToSource", onMoveAllToSource: "onMoveAllToSource", onMoveAllToTarget: "onMoveAllToTarget", onMoveToTarget: "onMoveToTarget", onSourceReorder: "onSourceReorder", onTargetReorder: "onTargetReorder", onSourceSelect: "onSourceSelect", onTargetSelect: "onTargetSelect", onSourceFilter: "onSourceFilter", onTargetFilter: "onTargetFilter", onFocus: "onFocus", onBlur: "onBlur" }, standalone: true, features: [i0.ɵɵProvidersFeature([PickListStyle]), i0.ɵɵInputTransformsFeature, i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], decls: 36, vars: 97, consts: [["sourcelist", ""], ["targetlist", ""], ["header", ""], ["filter", ""], ["item", ""], ["empty", ""], ["emptyfilter", ""], ["cdkDropListGroup", "", 3, "ngStyle", "ngClass"], ["class", "p-picklist-controls p-picklist-source-controls", 4, "ngIf"], [1, "p-picklist-list-container", "p-picklist-source-list-container"], ["optionLabel", "name", 3, "ngModelChange", "onFocus", "onBlur", "keydown", "onDblClick", "onFilter", "multiple", "options", "ngModel", "id", "ngStyle", "striped", "tabindex", "disabled", "metaKeySelection", "scrollHeight", "autoOptionFocus", "filter", "filterBy", "filterLocale", "filterMatchMode", "filterPlaceHolder"], [4, "ngIf"], ["class", "p-picklist-title", 4, "ngIf"], [1, "p-picklist-controls", "p-picklist-transfer-controls"], ["type", "button", "pButton", "", "pRipple", "", "severity", "secondary", 1, "p-button-icon-only", 3, "click", "disabled", "buttonProps"], [4, "ngTemplateOutlet", "ngTemplateOutletContext"], [1, "p-picklist-list-container", "p-picklist-target-list-container"], ["class", "p-picklist-controls p-picklist-target-controls", 4, "ngIf"], [1, "p-picklist-controls", "p-picklist-source-controls"], [4, "ngTemplateOutlet"], [1, "p-picklist-title"], [1, "p-picklist-controls", "p-picklist-target-controls"]], template: function PickList_Template(rf, ctx) { if (rf & 1) {
1873
1933
  const _r1 = i0.ɵɵgetCurrentView();
1874
- i0.ɵɵelementStart(0, "div", 4);
1875
- i0.ɵɵtemplate(1, PickList_div_1_Template, 13, 26, "div", 5);
1876
- i0.ɵɵelementStart(2, "div", 6)(3, "p-listbox", 7, 0);
1934
+ i0.ɵɵelementStart(0, "div", 7);
1935
+ i0.ɵɵtemplate(1, PickList_div_1_Template, 13, 26, "div", 8);
1936
+ i0.ɵɵelementStart(2, "div", 9)(3, "p-listbox", 10, 0);
1877
1937
  i0.ɵɵtwoWayListener("ngModelChange", function PickList_Template_p_listbox_ngModelChange_3_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.selectedItemsSource, $event) || (ctx.selectedItemsSource = $event); return i0.ɵɵresetView($event); });
1878
- i0.ɵɵlistener("onFocus", function PickList_Template_p_listbox_onFocus_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListFocus($event, ctx.SOURCE_LIST)); })("onBlur", function PickList_Template_p_listbox_onBlur_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListBlur($event, ctx.SOURCE_LIST)); })("keydown", function PickList_Template_p_listbox_keydown_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onItemKeyDown($event, ctx.selectedItemsSource, ctx.onSourceSelect, ctx.SOURCE_LIST)); })("onDblClick", function PickList_Template_p_listbox_onDblClick_3_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onSourceItemDblClick()); });
1879
- i0.ɵɵtemplate(5, PickList_ng_container_5_Template, 3, 0, "ng-container", 8)(6, PickList_ng_container_6_Template, 2, 4, "ng-container", 8)(7, PickList_ng_container_7_Template, 2, 1, "ng-container", 8)(8, PickList_div_8_Template, 2, 1, "div", 9)(9, PickList_ng_container_9_Template, 3, 0, "ng-container", 8)(10, PickList_ng_container_10_Template, 2, 1, "ng-container", 8);
1938
+ i0.ɵɵlistener("onFocus", function PickList_Template_p_listbox_onFocus_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListFocus($event, ctx.SOURCE_LIST)); })("onBlur", function PickList_Template_p_listbox_onBlur_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListBlur($event, ctx.SOURCE_LIST)); })("keydown", function PickList_Template_p_listbox_keydown_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onItemKeyDown($event, ctx.selectedItemsSource, ctx.onSourceSelect, ctx.SOURCE_LIST)); })("onDblClick", function PickList_Template_p_listbox_onDblClick_3_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onSourceItemDblClick()); })("onFilter", function PickList_Template_p_listbox_onFilter_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onFilter($event.originalEvent, ctx.SOURCE_LIST)); });
1939
+ i0.ɵɵtemplate(5, PickList_ng_container_5_Template, 3, 0, "ng-container", 11)(6, PickList_ng_container_6_Template, 3, 0, "ng-container", 11)(7, PickList_ng_container_7_Template, 2, 1, "ng-container", 11)(8, PickList_div_8_Template, 2, 1, "div", 12)(9, PickList_ng_container_9_Template, 3, 0, "ng-container", 11)(10, PickList_ng_container_10_Template, 3, 0, "ng-container", 11)(11, PickList_ng_container_11_Template, 3, 0, "ng-container", 11);
1880
1940
  i0.ɵɵelementEnd()();
1881
- i0.ɵɵelementStart(11, "div", 10)(12, "button", 11);
1882
- i0.ɵɵlistener("click", function PickList_Template_button_click_12_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveRight()); });
1883
- i0.ɵɵtemplate(13, PickList_ng_container_13_Template, 3, 2, "ng-container", 8)(14, PickList_14_Template, 1, 0, null, 12);
1941
+ i0.ɵɵelementStart(12, "div", 13)(13, "button", 14);
1942
+ i0.ɵɵlistener("click", function PickList_Template_button_click_13_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveRight()); });
1943
+ i0.ɵɵtemplate(14, PickList_ng_container_14_Template, 3, 2, "ng-container", 11)(15, PickList_15_Template, 1, 0, null, 15);
1884
1944
  i0.ɵɵelementEnd();
1885
- i0.ɵɵelementStart(15, "button", 11);
1886
- i0.ɵɵlistener("click", function PickList_Template_button_click_15_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveAllRight()); });
1887
- i0.ɵɵtemplate(16, PickList_ng_container_16_Template, 3, 2, "ng-container", 8)(17, PickList_17_Template, 1, 0, null, 12);
1945
+ i0.ɵɵelementStart(16, "button", 14);
1946
+ i0.ɵɵlistener("click", function PickList_Template_button_click_16_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveAllRight()); });
1947
+ i0.ɵɵtemplate(17, PickList_ng_container_17_Template, 3, 2, "ng-container", 11)(18, PickList_18_Template, 1, 0, null, 15);
1888
1948
  i0.ɵɵelementEnd();
1889
- i0.ɵɵelementStart(18, "button", 11);
1890
- i0.ɵɵlistener("click", function PickList_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveLeft()); });
1891
- i0.ɵɵtemplate(19, PickList_ng_container_19_Template, 3, 2, "ng-container", 8)(20, PickList_20_Template, 1, 0, null, 12);
1949
+ i0.ɵɵelementStart(19, "button", 14);
1950
+ i0.ɵɵlistener("click", function PickList_Template_button_click_19_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveLeft()); });
1951
+ i0.ɵɵtemplate(20, PickList_ng_container_20_Template, 3, 2, "ng-container", 11)(21, PickList_21_Template, 1, 0, null, 15);
1892
1952
  i0.ɵɵelementEnd();
1893
- i0.ɵɵelementStart(21, "button", 11);
1894
- i0.ɵɵlistener("click", function PickList_Template_button_click_21_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveAllLeft()); });
1895
- i0.ɵɵtemplate(22, PickList_ng_container_22_Template, 3, 2, "ng-container", 8)(23, PickList_23_Template, 1, 0, null, 12);
1953
+ i0.ɵɵelementStart(22, "button", 14);
1954
+ i0.ɵɵlistener("click", function PickList_Template_button_click_22_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.moveAllLeft()); });
1955
+ i0.ɵɵtemplate(23, PickList_ng_container_23_Template, 3, 2, "ng-container", 11)(24, PickList_24_Template, 1, 0, null, 15);
1896
1956
  i0.ɵɵelementEnd()();
1897
- i0.ɵɵelementStart(24, "div", 13)(25, "p-listbox", 7, 1);
1898
- i0.ɵɵtwoWayListener("ngModelChange", function PickList_Template_p_listbox_ngModelChange_25_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.selectedItemsTarget, $event) || (ctx.selectedItemsTarget = $event); return i0.ɵɵresetView($event); });
1899
- i0.ɵɵlistener("onFocus", function PickList_Template_p_listbox_onFocus_25_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListFocus($event, ctx.TARGET_LIST)); })("onBlur", function PickList_Template_p_listbox_onBlur_25_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListBlur($event, ctx.TARGET_LIST)); })("keydown", function PickList_Template_p_listbox_keydown_25_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onItemKeyDown($event, ctx.selectedItemsTarget, ctx.onTargetSelect, ctx.TARGET_LIST)); })("onDblClick", function PickList_Template_p_listbox_onDblClick_25_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onTargetItemDblClick()); });
1900
- i0.ɵɵtemplate(27, PickList_ng_container_27_Template, 3, 0, "ng-container", 8)(28, PickList_ng_container_28_Template, 2, 4, "ng-container", 8)(29, PickList_ng_container_29_Template, 2, 1, "ng-container", 8)(30, PickList_div_30_Template, 2, 1, "div", 9)(31, PickList_ng_container_31_Template, 3, 0, "ng-container", 8)(32, PickList_ng_container_32_Template, 2, 1, "ng-container", 8);
1957
+ i0.ɵɵelementStart(25, "div", 16)(26, "p-listbox", 10, 1);
1958
+ i0.ɵɵtwoWayListener("ngModelChange", function PickList_Template_p_listbox_ngModelChange_26_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.selectedItemsTarget, $event) || (ctx.selectedItemsTarget = $event); return i0.ɵɵresetView($event); });
1959
+ i0.ɵɵlistener("onFocus", function PickList_Template_p_listbox_onFocus_26_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListFocus($event, ctx.TARGET_LIST)); })("onBlur", function PickList_Template_p_listbox_onBlur_26_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onListBlur($event, ctx.TARGET_LIST)); })("keydown", function PickList_Template_p_listbox_keydown_26_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onItemKeyDown($event, ctx.selectedItemsTarget, ctx.onTargetSelect, ctx.TARGET_LIST)); })("onDblClick", function PickList_Template_p_listbox_onDblClick_26_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onTargetItemDblClick()); })("onFilter", function PickList_Template_p_listbox_onFilter_26_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onFilter($event.originalEvent, ctx.TARGET_LIST)); });
1960
+ i0.ɵɵtemplate(28, PickList_ng_container_28_Template, 3, 0, "ng-container", 11)(29, PickList_ng_container_29_Template, 3, 0, "ng-container", 11)(30, PickList_ng_container_30_Template, 2, 1, "ng-container", 11)(31, PickList_div_31_Template, 2, 1, "div", 12)(32, PickList_ng_container_32_Template, 3, 0, "ng-container", 11)(33, PickList_ng_container_33_Template, 3, 0, "ng-container", 11)(34, PickList_ng_container_34_Template, 3, 0, "ng-container", 11);
1901
1961
  i0.ɵɵelementEnd()();
1902
- i0.ɵɵtemplate(33, PickList_div_33_Template, 13, 26, "div", 14);
1962
+ i0.ɵɵtemplate(35, PickList_div_35_Template, 13, 26, "div", 17);
1903
1963
  i0.ɵɵelementEnd();
1904
1964
  } if (rf & 2) {
1905
1965
  i0.ɵɵclassMap(ctx.styleClass);
1906
- i0.ɵɵproperty("ngStyle", ctx.style)("ngClass", i0.ɵɵpureFunction0(84, _c21));
1966
+ i0.ɵɵproperty("ngStyle", ctx.style)("ngClass", i0.ɵɵpureFunction0(88, _c21));
1907
1967
  i0.ɵɵattribute("data-pc-name", "picklist")("data-pc-section", "root");
1908
1968
  i0.ɵɵadvance();
1909
1969
  i0.ɵɵproperty("ngIf", ctx.showSourceControls);
@@ -1912,9 +1972,9 @@ class PickList extends BaseComponent {
1912
1972
  i0.ɵɵadvance();
1913
1973
  i0.ɵɵproperty("multiple", true)("options", ctx.source);
1914
1974
  i0.ɵɵtwoWayProperty("ngModel", ctx.selectedItemsSource);
1915
- i0.ɵɵproperty("id", ctx.idSource + "_list")("ngStyle", ctx.sourceStyle)("striped", ctx.stripedRows)("tabindex", ctx.tabindex)("disabled", ctx.disabled)("metaKeySelection", ctx.metaKeySelection)("scrollHeight", ctx.scrollHeight)("autoOptionFocus", ctx.autoOptionFocus)("filter", ctx.filterBy)("filterBy", ctx.filterBy)("filterLocale", ctx.filterLocale)("filterPlaceHolder", ctx.sourceFilterPlaceholder);
1975
+ i0.ɵɵproperty("id", ctx.idSource + "_list")("ngStyle", ctx.sourceStyle)("striped", ctx.stripedRows)("tabindex", ctx.tabindex)("disabled", ctx.disabled)("metaKeySelection", ctx.metaKeySelection)("scrollHeight", ctx.scrollHeight)("autoOptionFocus", ctx.autoOptionFocus)("filter", ctx.filterBy)("filterBy", ctx.filterBy)("filterLocale", ctx.filterLocale)("filterMatchMode", ctx.filterMatchMode)("filterPlaceHolder", ctx.sourceFilterPlaceholder);
1916
1976
  i0.ɵɵadvance(2);
1917
- i0.ɵɵproperty("ngIf", ctx.sourceHeaderTemplate || ctx._sourceHeaderTemplate);
1977
+ i0.ɵɵproperty("ngIf", ctx.sourceHeaderTemplate || ctx._sourceHeaderTemplate || ctx.sourceHeader);
1918
1978
  i0.ɵɵadvance();
1919
1979
  i0.ɵɵproperty("ngIf", ctx.sourceFilterTemplate || ctx._sourceFilterTemplate);
1920
1980
  i0.ɵɵadvance();
@@ -1924,7 +1984,9 @@ class PickList extends BaseComponent {
1924
1984
  i0.ɵɵadvance();
1925
1985
  i0.ɵɵproperty("ngIf", ctx.itemTemplate || ctx._itemTemplate);
1926
1986
  i0.ɵɵadvance();
1927
- i0.ɵɵproperty("ngIf", ctx.emptyFilterMessageSourceTemplate || ctx._emptyFilterMessageSourceTemplate || ctx.emptyMessageSourceTemplate || ctx._emptyMessageSourceTemplate);
1987
+ i0.ɵɵproperty("ngIf", ctx.emptyMessageSourceTemplate || ctx._emptyMessageSourceTemplate);
1988
+ i0.ɵɵadvance();
1989
+ i0.ɵɵproperty("ngIf", ctx.emptyFilterMessageSourceTemplate || ctx._emptyFilterMessageSourceTemplate);
1928
1990
  i0.ɵɵadvance();
1929
1991
  i0.ɵɵattribute("data-pc-section", "buttons")("data-pc-group-section", "controls");
1930
1992
  i0.ɵɵadvance();
@@ -1933,36 +1995,36 @@ class PickList extends BaseComponent {
1933
1995
  i0.ɵɵadvance();
1934
1996
  i0.ɵɵproperty("ngIf", !ctx.moveToTargetIconTemplate && !ctx._moveToTargetIconTemplate);
1935
1997
  i0.ɵɵadvance();
1936
- i0.ɵɵproperty("ngTemplateOutlet", ctx.moveToTargetIconTemplate || ctx._moveToTargetIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(85, _c22, ctx.viewChanged));
1998
+ i0.ɵɵproperty("ngTemplateOutlet", ctx.moveToTargetIconTemplate || ctx._moveToTargetIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(89, _c22, ctx.viewChanged));
1937
1999
  i0.ɵɵadvance();
1938
2000
  i0.ɵɵproperty("disabled", ctx.moveAllRightDisabled())("buttonProps", ctx.getButtonProps("movealltotarget"));
1939
2001
  i0.ɵɵattribute("aria-label", ctx.moveAllToTargetAriaLabel)("data-pc-section", "moveAllToTargetButton");
1940
2002
  i0.ɵɵadvance();
1941
2003
  i0.ɵɵproperty("ngIf", !ctx.moveAllToTargetIconTemplate && !ctx._moveAllToTargetIconTemplate);
1942
2004
  i0.ɵɵadvance();
1943
- i0.ɵɵproperty("ngTemplateOutlet", ctx.moveAllToTargetIconTemplate || ctx._moveAllToTargetIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(87, _c22, ctx.viewChanged));
2005
+ i0.ɵɵproperty("ngTemplateOutlet", ctx.moveAllToTargetIconTemplate || ctx._moveAllToTargetIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(91, _c22, ctx.viewChanged));
1944
2006
  i0.ɵɵadvance();
1945
2007
  i0.ɵɵproperty("disabled", ctx.moveLeftDisabled())("buttonProps", ctx.getButtonProps("movetosource"));
1946
2008
  i0.ɵɵattribute("aria-label", ctx.moveToSourceAriaLabel)("data-pc-section", "moveToSourceButton");
1947
2009
  i0.ɵɵadvance();
1948
2010
  i0.ɵɵproperty("ngIf", !ctx.moveToSourceIconTemplate && !ctx._moveToSourceIconTemplate);
1949
2011
  i0.ɵɵadvance();
1950
- i0.ɵɵproperty("ngTemplateOutlet", ctx.moveToSourceIconTemplate || ctx._moveToSourceIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(89, _c22, ctx.viewChanged));
2012
+ i0.ɵɵproperty("ngTemplateOutlet", ctx.moveToSourceIconTemplate || ctx._moveToSourceIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(93, _c22, ctx.viewChanged));
1951
2013
  i0.ɵɵadvance();
1952
2014
  i0.ɵɵproperty("disabled", ctx.moveAllLeftDisabled())("buttonProps", ctx.getButtonProps("movealltosource"));
1953
2015
  i0.ɵɵattribute("aria-label", ctx.moveAllToSourceAriaLabel)("data-pc-section", "moveAllToSourceButton");
1954
2016
  i0.ɵɵadvance();
1955
2017
  i0.ɵɵproperty("ngIf", !ctx.moveAllToSourceIconTemplate && !ctx._moveAllToSourceIconTemplate);
1956
2018
  i0.ɵɵadvance();
1957
- i0.ɵɵproperty("ngTemplateOutlet", ctx.moveAllToSourceIconTemplate || ctx._moveAllToSourceIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(91, _c22, ctx.viewChanged));
2019
+ i0.ɵɵproperty("ngTemplateOutlet", ctx.moveAllToSourceIconTemplate || ctx._moveAllToSourceIconTemplate)("ngTemplateOutletContext", i0.ɵɵpureFunction1(95, _c22, ctx.viewChanged));
1958
2020
  i0.ɵɵadvance();
1959
2021
  i0.ɵɵattribute("data-pc-section", "targetWrapper")("data-pc-group-section", "listwrapper");
1960
2022
  i0.ɵɵadvance();
1961
2023
  i0.ɵɵproperty("multiple", true)("options", ctx.target);
1962
2024
  i0.ɵɵtwoWayProperty("ngModel", ctx.selectedItemsTarget);
1963
- i0.ɵɵproperty("id", ctx.idTarget + "_list")("ngStyle", ctx.targetStyle)("striped", ctx.stripedRows)("tabindex", ctx.tabindex)("disabled", ctx.disabled)("metaKeySelection", ctx.metaKeySelection)("scrollHeight", ctx.scrollHeight)("autoOptionFocus", ctx.autoOptionFocus)("filter", ctx.filterBy)("filterBy", ctx.filterBy)("filterLocale", ctx.filterLocale)("filterPlaceHolder", ctx.targetFilterPlaceholder);
2025
+ i0.ɵɵproperty("id", ctx.idTarget + "_list")("ngStyle", ctx.targetStyle)("striped", ctx.stripedRows)("tabindex", ctx.tabindex)("disabled", ctx.disabled)("metaKeySelection", ctx.metaKeySelection)("scrollHeight", ctx.scrollHeight)("autoOptionFocus", ctx.autoOptionFocus)("filter", ctx.filterBy)("filterBy", ctx.filterBy)("filterLocale", ctx.filterLocale)("filterMatchMode", ctx.filterMatchMode)("filterPlaceHolder", ctx.targetFilterPlaceholder);
1964
2026
  i0.ɵɵadvance(2);
1965
- i0.ɵɵproperty("ngIf", ctx.targetHeaderTemplate || ctx._targetHeaderTemplate);
2027
+ i0.ɵɵproperty("ngIf", ctx.targetHeaderTemplate || ctx._targetHeaderTemplate || ctx.targetHeader);
1966
2028
  i0.ɵɵadvance();
1967
2029
  i0.ɵɵproperty("ngIf", ctx.targetFilterTemplate || ctx._targetFilterTemplate);
1968
2030
  i0.ɵɵadvance();
@@ -1972,7 +2034,9 @@ class PickList extends BaseComponent {
1972
2034
  i0.ɵɵadvance();
1973
2035
  i0.ɵɵproperty("ngIf", ctx.itemTemplate || ctx._itemTemplate);
1974
2036
  i0.ɵɵadvance();
1975
- i0.ɵɵproperty("ngIf", ctx.emptyFilterMessageTargetTemplate || ctx._emptyFilterMessageTargetTemplate || ctx.emptyMessageTargetTemplate || ctx._emptyMessageTargetTemplate);
2037
+ i0.ɵɵproperty("ngIf", ctx.emptyMessageTargetTemplate || ctx._emptyMessageTargetTemplate);
2038
+ i0.ɵɵadvance();
2039
+ i0.ɵɵproperty("ngIf", ctx.emptyFilterMessageTargetTemplate || ctx._emptyFilterMessageTargetTemplate);
1976
2040
  i0.ɵɵadvance();
1977
2041
  i0.ɵɵproperty("ngIf", ctx.showTargetControls);
1978
2042
  } }, dependencies: [CommonModule, i1.NgClass, i1.NgIf, i1.NgTemplateOutlet, i1.NgStyle, ButtonDirective, Ripple, DragDropModule, i2.CdkDropListGroup, AngleDoubleDownIcon, AngleDoubleLeftIcon, AngleDoubleRightIcon, AngleDoubleUpIcon, AngleDownIcon, AngleLeftIcon, AngleRightIcon, AngleUpIcon, Listbox, FormsModule, i3.NgControlStatus, i3.NgModel, SharedModule], encapsulation: 2, changeDetection: 0 });
@@ -2069,15 +2133,20 @@ class PickList extends BaseComponent {
2069
2133
  [filter]="filterBy"
2070
2134
  [filterBy]="filterBy"
2071
2135
  [filterLocale]="filterLocale"
2136
+ [filterMatchMode]="filterMatchMode"
2072
2137
  [filterPlaceHolder]="sourceFilterPlaceholder"
2138
+ (onFilter)="onFilter($event.originalEvent, SOURCE_LIST)"
2073
2139
  >
2074
- <ng-container *ngIf="sourceHeaderTemplate || _sourceHeaderTemplate">
2140
+ <ng-container *ngIf="sourceHeaderTemplate || _sourceHeaderTemplate || sourceHeader">
2075
2141
  <ng-template #header>
2142
+ <div class="p-picklist-title" *ngIf="!sourceHeaderTemplate && !_sourceHeaderTemplate">{{ sourceHeader }}</div>
2076
2143
  <ng-template *ngTemplateOutlet="sourceHeaderTemplate || _sourceHeaderTemplate"></ng-template>
2077
2144
  </ng-template>
2078
2145
  </ng-container>
2079
2146
  <ng-container *ngIf="sourceFilterTemplate || _sourceFilterTemplate">
2080
- <ng-container *ngTemplateOutlet="sourceFilterTemplate || _sourceFilterTemplate; context: { options: sourceFilterOptions }"></ng-container>
2147
+ <ng-template #filter>
2148
+ <ng-template *ngTemplateOutlet="sourceFilterTemplate || _sourceFilterTemplate; context: { options: sourceFilterOptions }"></ng-template>
2149
+ </ng-template>
2081
2150
  </ng-container>
2082
2151
  <ng-container *ngIf="sourceFilterIconTemplate || _sourceFilterIconTemplate">
2083
2152
  <ng-container *ngTemplateOutlet="sourceFilterIconTemplate || _sourceFilterIconTemplate"></ng-container>
@@ -2088,8 +2157,15 @@ class PickList extends BaseComponent {
2088
2157
  <ng-container *ngTemplateOutlet="itemTemplate || _itemTemplate; context: { $implicit: item, index: index, selected: selected }"></ng-container>
2089
2158
  </ng-template>
2090
2159
  </ng-container>
2091
- <ng-container *ngIf="emptyFilterMessageSourceTemplate || _emptyFilterMessageSourceTemplate || emptyMessageSourceTemplate || _emptyMessageSourceTemplate">
2092
- <ng-container *ngTemplateOutlet="emptyFilterMessageSourceTemplate || _emptyFilterMessageSourceTemplate || emptyMessageSourceTemplate || _emptyMessageSourceTemplate"></ng-container>
2160
+ <ng-container *ngIf="emptyMessageSourceTemplate || _emptyMessageSourceTemplate">
2161
+ <ng-template #empty>
2162
+ <ng-container *ngTemplateOutlet="emptyMessageSourceTemplate || _emptyMessageSourceTemplate"></ng-container>
2163
+ </ng-template>
2164
+ </ng-container>
2165
+ <ng-container *ngIf="emptyFilterMessageSourceTemplate || _emptyFilterMessageSourceTemplate">
2166
+ <ng-template #emptyfilter>
2167
+ <ng-container *ngTemplateOutlet="emptyFilterMessageSourceTemplate || _emptyFilterMessageSourceTemplate"></ng-container>
2168
+ </ng-template>
2093
2169
  </ng-container>
2094
2170
  </p-listbox>
2095
2171
  </div>
@@ -2189,15 +2265,20 @@ class PickList extends BaseComponent {
2189
2265
  [filter]="filterBy"
2190
2266
  [filterBy]="filterBy"
2191
2267
  [filterLocale]="filterLocale"
2268
+ [filterMatchMode]="filterMatchMode"
2192
2269
  [filterPlaceHolder]="targetFilterPlaceholder"
2270
+ (onFilter)="onFilter($event.originalEvent, TARGET_LIST)"
2193
2271
  >
2194
- <ng-container *ngIf="targetHeaderTemplate || _targetHeaderTemplate">
2272
+ <ng-container *ngIf="targetHeaderTemplate || _targetHeaderTemplate || targetHeader">
2195
2273
  <ng-template #header>
2274
+ <div class="p-picklist-title" *ngIf="!targetHeaderTemplate && !_targetHeaderTemplate">{{ targetHeader }}</div>
2196
2275
  <ng-template *ngTemplateOutlet="targetHeaderTemplate || _targetHeaderTemplate"></ng-template>
2197
2276
  </ng-template>
2198
2277
  </ng-container>
2199
2278
  <ng-container *ngIf="targetFilterTemplate || _targetFilterTemplate">
2200
- <ng-container *ngTemplateOutlet="targetFilterTemplate || _targetFilterTemplate; context: { options: targetFilterOptions }"></ng-container>
2279
+ <ng-template #filter>
2280
+ <ng-template *ngTemplateOutlet="targetFilterTemplate || _targetFilterTemplate; context: { options: targetFilterOptions }"></ng-template>
2281
+ </ng-template>
2201
2282
  </ng-container>
2202
2283
  <ng-container *ngIf="targetFilterIconTemplate || _targetFilterIconTemplate">
2203
2284
  <ng-container *ngTemplateOutlet="targetFilterIconTemplate || _targetFilterIconTemplate"></ng-container>
@@ -2208,8 +2289,15 @@ class PickList extends BaseComponent {
2208
2289
  <ng-container *ngTemplateOutlet="itemTemplate || _itemTemplate; context: { $implicit: item, index: index, selected: selected }"></ng-container>
2209
2290
  </ng-template>
2210
2291
  </ng-container>
2211
- <ng-container *ngIf="emptyFilterMessageTargetTemplate || _emptyFilterMessageTargetTemplate || emptyMessageTargetTemplate || _emptyMessageTargetTemplate">
2212
- <ng-container *ngTemplateOutlet="emptyFilterMessageTargetTemplate || _emptyFilterMessageTargetTemplate || emptyMessageTargetTemplate || _emptyMessageTargetTemplate"></ng-container>
2292
+ <ng-container *ngIf="emptyMessageTargetTemplate || _emptyMessageTargetTemplate">
2293
+ <ng-template #empty>
2294
+ <ng-container *ngTemplateOutlet="emptyMessageTargetTemplate || _emptyMessageTargetTemplate"></ng-container>
2295
+ </ng-template>
2296
+ </ng-container>
2297
+ <ng-container *ngIf="emptyFilterMessageTargetTemplate || _emptyFilterMessageTargetTemplate">
2298
+ <ng-template #emptyfilter>
2299
+ <ng-container *ngTemplateOutlet="emptyFilterMessageTargetTemplate || _emptyFilterMessageTargetTemplate"></ng-container>
2300
+ </ng-template>
2213
2301
  </ng-container>
2214
2302
  </p-listbox>
2215
2303
  </div>