innoboxrr-vue-datatable 1.2.26 → 1.2.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innoboxrr-vue-datatable",
3
- "version": "1.2.26",
3
+ "version": "1.2.27",
4
4
  "description": "Datatable para vue3",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -135,7 +135,9 @@
135
135
  emits: ['sortColumn', 'actionButtonClicked', 'actionClicked'],
136
136
  setup(props) {
137
137
  // Registrar componentes dinámicos
138
- const components = shallowRef(props.dataTableComponents);
138
+ const components = shallowRef({
139
+ ...props.dataTableComponents
140
+ });
139
141
 
140
142
  // Resolver el componente dinámico desde el mapeo
141
143
  const getComponent = (componentName) => {