<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mert Sincan</title>
    <description>The latest articles on DEV Community by Mert Sincan (@mertsincan).</description>
    <link>https://dev.to/mertsincan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F571932%2F629b15fb-2c49-4269-911b-5a6aeb75d6da.jpeg</url>
      <title>DEV Community: Mert Sincan</title>
      <link>https://dev.to/mertsincan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mertsincan"/>
    <language>en</language>
    <item>
      <title>Handling big data on DataTable with checkbox selection / MultiSelect</title>
      <dc:creator>Mert Sincan</dc:creator>
      <pubDate>Thu, 14 Dec 2023 09:48:25 +0000</pubDate>
      <link>https://dev.to/mertsincan/handling-big-data-on-datatable-with-checkbox-selection-multiselect-4hgc</link>
      <guid>https://dev.to/mertsincan/handling-big-data-on-datatable-with-checkbox-selection-multiselect-4hgc</guid>
      <description>&lt;p&gt;In this article, I will delve into how DataTable and MultiSelect components of Prime{NG|Vue|React} can be effectively utilized with checkbox selection features and how performance can be improved. I will try to explain this through DataTable, which is widely used and contains many features. Let's get started!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: If you lack basic knowledge about the DataTable component and its features, I recommend checking the documentation on &lt;a href="https://primeng.org/table"&gt;PrimeNg&lt;/a&gt;, &lt;a href="https://primevue.org/datatable"&gt;PrimeVue&lt;/a&gt; and &lt;a href="https://primereact.org/datatable"&gt;PrimeReact&lt;/a&gt; before proceeding.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Nowadays, almost every DataTable component incorporates a selection feature, catering to diverse user experiences. Prime libraries stand out in this regard, offering advanced modes, among which checkbox selection is a notable example.&lt;/p&gt;

&lt;p&gt;An example from &lt;a href="https://primevue.org/datatable/#checkbox_row_selection"&gt;PrimeVue&lt;/a&gt;;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;DataTable&lt;/span&gt; &lt;span class="na"&gt;:value=&lt;/span&gt;&lt;span class="s"&gt;"data"&lt;/span&gt; &lt;span class="na"&gt;dataKey=&lt;/span&gt;&lt;span class="s"&gt;"id"&lt;/span&gt; &lt;span class="na"&gt;v-model:selection=&lt;/span&gt;&lt;span class="s"&gt;"selectedItems"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;Column&lt;/span&gt; &lt;span class="na"&gt;selectionMode=&lt;/span&gt;&lt;span class="s"&gt;"multiple"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/Column&amp;gt;&lt;/span&gt;
    // other columns
&lt;span class="nt"&gt;&amp;lt;/DataTable&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When we examine this code, the crucial point in it is the &lt;code&gt;dataKey&lt;/code&gt; property. When a checkbox in a row is clicked, this property searches from the &lt;code&gt;selectedItems&lt;/code&gt; list to determine if that data has been selected before, based on the provided field name. As you know, there are many ways to detect whether two objects are the same, and the way Prime libraries recommend is to do this by using &lt;code&gt;dataKey&lt;/code&gt; property. This is the most efficient way to decide whether the objects are the same. Perhaps the main question is, is just using &lt;code&gt;dataKey&lt;/code&gt; always enough? The answer would be yes if you have small data, but if you are working with a large dataset, it will not be enough. So what should I do? Splitting the data is the best approach. DataTable has powerful features in this regard, such as &lt;code&gt;paginator&lt;/code&gt;, &lt;code&gt;virtualScroller&lt;/code&gt; and &lt;code&gt;lazy&lt;/code&gt;. These features both increase the rendering time of the DataTable and provide solutions for such selection problems. Maybe I can discuss these in more detail in another article, but I need to briefly touch on these features to explain the checkbox selection feature better.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://primevue.org/datatable/#paginator"&gt;Paginator&lt;/a&gt; divides data into groups, displaying them page by page.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://primevue.org/datatable/#virtualscroll"&gt;VirtualScroller&lt;/a&gt; separates data based on row height, loading them as the DataTable is scrolled.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://primevue.org/datatable/#lazy_load"&gt;Lazy&lt;/a&gt; processes data with callbacks to control some features of the DataTable. It does not know what data it will process next viewport. According to the information in the callbacks, you need to prepare the data that your DataTable will process. It allows us to use DataTable with larger and dynamic datasets with better performance.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These features can be used independently or combined, with &lt;code&gt;lazy&lt;/code&gt; and &lt;code&gt;paginator&lt;/code&gt; being a popular combination among Prime users. These features enhance the rendering time of the DataTable, but what will happen when the dataset of the DataTable is selected using the header checkbox? For &lt;code&gt;virtualScoller&lt;/code&gt; and &lt;code&gt;lazy&lt;/code&gt;, only the data in the viewport will be selected. With the &lt;code&gt;paginator&lt;/code&gt;, the whole dataset will be selected and this will be quite slow. We have overcome the rendering time problem, so what should we do now? It's finally time to introduce the &lt;code&gt;selectAll&lt;/code&gt; property and &lt;code&gt;selectAllChange&lt;/code&gt; callback. This gives you the authority to control the selection completely using the header checkbox. Thanks to these features, the DataTable skips all controls which decide to select or unselect the dataset. Then, you should decide what will happen when the header checkbox is clicked.&lt;/p&gt;

&lt;p&gt;An example from PrimeVue;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;DataTable&lt;/span&gt; &lt;span class="na"&gt;:value=&lt;/span&gt;&lt;span class="s"&gt;"dataset"&lt;/span&gt; &lt;span class="na"&gt;dataKey=&lt;/span&gt;&lt;span class="s"&gt;"id"&lt;/span&gt; &lt;span class="na"&gt;v-model:selection=&lt;/span&gt;&lt;span class="s"&gt;"selectedItems"&lt;/span&gt;
    &lt;span class="na"&gt;:selectAll=&lt;/span&gt;&lt;span class="s"&gt;"selectAll"&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="na"&gt;select-all-change=&lt;/span&gt;&lt;span class="s"&gt;"onSelectAllChange"&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="na"&gt;row-select=&lt;/span&gt;&lt;span class="s"&gt;"onRowSelect"&lt;/span&gt; &lt;span class="err"&gt;@&lt;/span&gt;&lt;span class="na"&gt;row-unselect=&lt;/span&gt;&lt;span class="s"&gt;"onRowUnselect"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;Column&lt;/span&gt; &lt;span class="na"&gt;selectionMode=&lt;/span&gt;&lt;span class="s"&gt;"multiple"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/Column&amp;gt;&lt;/span&gt;
    // other columns
&lt;span class="nt"&gt;&amp;lt;/DataTable&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;script&lt;/span&gt; &lt;span class="nx"&gt;setup&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;ref&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;onMounted&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;vue&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nf"&gt;onMounted&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="c1"&gt;// load dataset&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;dataset&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;ref&lt;/span&gt;&lt;span class="p"&gt;([]);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;selectedItems&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;ref&lt;/span&gt;&lt;span class="p"&gt;([]);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;selectAll&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;ref&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;onSelectAllChange&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;checked&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;selectAll&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nx"&gt;selectedItems&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="c1"&gt;// all data according to your needs &lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;selectAll&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nx"&gt;selectedItems&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[];&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;onRowSelect&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="c1"&gt;// This control can be completely managed by you.&lt;/span&gt;
  &lt;span class="nx"&gt;selectAll&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;selectedItems&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="nx"&gt;totalRecords&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;onRowUnselect&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="c1"&gt;// When a row is unchecked, the header checkbox must always be in an unchecked state.&lt;/span&gt;
  &lt;span class="nx"&gt;selectAll&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;span class="p"&gt;...&lt;/span&gt;
&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/script&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Why doesn't dataTable do all these checks? DataTable does check when you do not use the &lt;code&gt;selectAll&lt;/code&gt; property. However, these checks can be very slow on large datasets. In order to explain this part better, I will need to explain a little about DataTable and the problems faced by users. DataTable never mutates your dataset and stores it somewhere. Therefore, in every data change or action such as sorting and filtering, the original dataset is used and the target dataset is created. I mentioned above what needs to be done to improve this process. When you want to select the entire dataset using the header checkbox, it is necessary to determine whether the entire dataset is in the &lt;code&gt;selection&lt;/code&gt; list. This is costly. So why can't DataTable decide whether all the data is selected by checking the lengths of the datasets and selections as above? The answer to this question is quite simple. DataTable doesn't know whether the data has changed or not. You may have changed the data in the selection and the data in the dataset at a certain time. Or you can set certain data in the dataset to be disabled or unselectable in the DataTable. This may be one of the most used structures. Especially in PrimeReact, you can decide whether or not to have checkboxes in rows based on certain conditions using certain methods. When you consider many more possibilities like this, DataTable cannot do this by just comparing length. The length control example above is given to show that it is a condition completely determined by the user. In the real world, not everything is this simple, a UI component must consider every possibility and act accordingly. Of course, I'm not saying you shouldn't use the length comparison. This completely depends on your app and dataset. &lt;/p&gt;

&lt;p&gt;Now, let's address some frequently asked questions to enhance understanding:&lt;/p&gt;

&lt;h4&gt;
  
  
  💭 &lt;a id="checkbox-lazy-paginator"&gt;&lt;/a&gt;DataTable in my application has checkbox selection, lazy and paginator features. When I select all data using the header checkbox, the data on the next page is not selected. How can I overcome this?
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;🔒 &lt;em&gt;Test cases; &lt;a href="https://stackblitz.com/edit/react-hh2aau-16vcfu?file=src%2FApp.js"&gt;PrimeReact&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/tq4cbz-h8ymrp?file=src%2FApp.vue"&gt;PrimeVue&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/angular-at-yaac26?file=src%2Fmain.ts"&gt;PrimeNg&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;✨ DataTable does not mutate data and when it has the &lt;code&gt;lazy&lt;/code&gt; property, everything has to be controlled by the user. In this question, DataTable with the &lt;code&gt;lazy&lt;/code&gt; property does not know what the data will be on subsequent pages. That's why it can't add them to the &lt;code&gt;selection&lt;/code&gt; list. When you go to the next page, since there is no current data in the &lt;code&gt;selection&lt;/code&gt; list, all of them are unchecked. The solution to this problem is to either set all data to the &lt;code&gt;selection&lt;/code&gt; list using the &lt;code&gt;selectAllChange&lt;/code&gt; callback or to add the data that will be displayed in the callback when the page changes to the &lt;code&gt;selection&lt;/code&gt; list. I would recommend the former, because you may want to use the &lt;code&gt;selection&lt;/code&gt; list without making any page changes. In this case, you will have the actual selected values.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🔐 &lt;em&gt;Recommended uses; &lt;a href="https://stackblitz.com/edit/react-hh2aau-s9zqgh?file=src%2FApp.js"&gt;PrimeReact&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/tq4cbz?file=src%2FApp.vue"&gt;PrimeVue&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/angular-at-yx2f5y?file=src%2Fmain.ts"&gt;PrimeNg&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h4&gt;
  
  
  💭 &lt;a id="checkbox-lazy-paginator"&gt;&lt;/a&gt;DataTable in my application has checkbox selection and virtualScroller. Even though I select all the rows one by one, the header checkbox does not appear checked. Also, when I click on the header checkbox, data selection is very slow. How can I overcome this?
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;🔒 &lt;em&gt;Test cases;&lt;/em&gt; &lt;a href="https://stackblitz.com/edit/react-omewwn?file=src%2FApp.js"&gt;PrimeReact&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/9ywajd?file=src%2FApp.vue"&gt;PrimeVue&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/angular-at-2hwjh3?file=src%2Fmain.ts"&gt;PrimeNg&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;✨ This is similar to the previous question. The only difference is that in the preloaded &lt;code&gt;virtualScroller&lt;/code&gt; feature, checking the entire dataset and updating the header checkbox is slow. In some cases, when users check and uncheck the header checkbox very quickly, they cannot realize whether this happened or not. In such cases, the best approach is to use the &lt;code&gt;selectAll&lt;/code&gt; property and &lt;code&gt;selectAllChange&lt;/code&gt; callback. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🔐 &lt;em&gt;Recommended uses; &lt;a href="https://stackblitz.com/edit/react-omewwn-zqpe5m?file=src%2FApp.js"&gt;PrimeReact&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/9ywajd-dnq98z?file=src%2FApp.vue"&gt;PrimeVue&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/angular-at-pcfxy1?file=src%2Fmain.ts"&gt;PrimeNg&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h4&gt;
  
  
  💭 &lt;a id="checkbox-condition"&gt;&lt;/a&gt;I want to use the header checkbox in the DataTable to select data according to a certain condition. How can I achieve this?
&lt;/h4&gt;

&lt;p&gt;✨ As a UI, you can hide or disable the checkbox of certain data using CSS. For example, PrimeReact has an &lt;code&gt;isDataSelectable&lt;/code&gt; prop to decide this. Assuming that you have done this somehow, you can set it to True or False according to the condition you specify by using the &lt;code&gt;selectAll&lt;/code&gt; property. You can also add data to the &lt;code&gt;selection&lt;/code&gt; list by filtering the data, just like you did with a disabled or condition. In such cases, it would be wrong to compare the lengths of the dataset and the &lt;code&gt;selection&lt;/code&gt; list, as mentioned above.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 &lt;em&gt;Example; &lt;a href="https://stackblitz.com/edit/react-hh2aau-j7brid?file=src%2FApp.js"&gt;PrimeReact&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/tq4cbz-tteow9?file=src%2FApp.vue"&gt;PrimeVue&lt;/a&gt; | &lt;a href="https://stackblitz.com/edit/angular-at-6hsnzb?file=src%2Fmain.ts"&gt;PrimeNg&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;These questions address common challenges encountered in Prime libraries. I hope this article provides valuable insights, guiding you to make informed decisions when using DataTable with the checkbox selection feature. Your opinions and suggestions are very valuable, so please do not hesitate to share them with us. I want to create an article series based on my experiences on these and similar frequently asked questions or the decisions made by Prime libraries in their updates.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

&lt;p&gt;​&lt;/p&gt;

</description>
      <category>primeng</category>
      <category>primevue</category>
      <category>primereact</category>
      <category>performance</category>
    </item>
  </channel>
</rss>
