@cdmx/wappler_ag_grid 0.2.2 → 0.2.3
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 +2 -0
- package/package.json +1 -1
package/dmx-ag-grid.js
CHANGED
|
@@ -118,6 +118,7 @@ dmx.Component('ag-grid', {
|
|
|
118
118
|
// Assuming `value` is a boolean representing the status
|
|
119
119
|
const checked = value==true ? "checked" : "";
|
|
120
120
|
return `
|
|
121
|
+
<div class="col pt-2 pb-1 ps-1 pe-1 d-flex justify-content-center">
|
|
121
122
|
<label class="switch switch-success">
|
|
122
123
|
<input
|
|
123
124
|
type="checkbox" class="switch-input"
|
|
@@ -133,6 +134,7 @@ dmx.Component('ag-grid', {
|
|
|
133
134
|
<i class="bx bx-x"></i>
|
|
134
135
|
</span>
|
|
135
136
|
</label>
|
|
137
|
+
</div>
|
|
136
138
|
`;
|
|
137
139
|
}
|
|
138
140
|
function actionsRenderer(params) {
|