@cdmx/wappler_ag_grid 1.8.14 → 1.8.15
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.
- package/dmx-ag-grid.js +8 -4
- package/package.json +1 -1
package/dmx-ag-grid.js
CHANGED
|
@@ -2261,11 +2261,15 @@ dmx.Component('ag-grid', {
|
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
2263
|
/* Ensure to/from, next/previous are visible */
|
|
2264
|
-
.ag-paging-row-summary-panel
|
|
2264
|
+
.ag-paging-row-summary-panel {
|
|
2265
|
+
display: inline-block;
|
|
2266
|
+
width: 100%; /* Ensure it takes full width */
|
|
2267
|
+
justify-content: space-between;
|
|
2268
|
+
text-align: center;
|
|
2269
|
+
}
|
|
2265
2270
|
.ag-paging-page-summary-panel {
|
|
2266
|
-
display:
|
|
2271
|
+
display: flex;
|
|
2267
2272
|
width: 100%; /* Ensure it takes full width */
|
|
2268
|
-
flex-wrap: wrap;
|
|
2269
2273
|
justify-content: space-between;
|
|
2270
2274
|
text-align: center;
|
|
2271
2275
|
}
|
|
@@ -2274,7 +2278,7 @@ dmx.Component('ag-grid', {
|
|
|
2274
2278
|
|
|
2275
2279
|
const paginationPanelStyle = document.createElement('style');
|
|
2276
2280
|
paginationPanelStyle.innerHTML = paginationPanelCss;
|
|
2277
|
-
document.appendChild(paginationPanelStyle);
|
|
2281
|
+
document.head.appendChild(paginationPanelStyle);
|
|
2278
2282
|
|
|
2279
2283
|
// Return grid instance
|
|
2280
2284
|
return gridInstance;
|