keevo-components 1.5.13 → 1.5.14

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.
@@ -1032,7 +1032,8 @@ class TableComponent {
1032
1032
  let tooltip = this.retornarCampo(action, data, 'tooltip');
1033
1033
  let label = this.retornarCampo(action, data, 'label');
1034
1034
  let command = this.retornarCampo(action, data, 'command');
1035
- menuInsert = { label, icon, tooltip, command };
1035
+ let disabled = this.retornarCampo(action, data, 'disabled');
1036
+ menuInsert = { label, icon, tooltip, command, disabled };
1036
1037
  }
1037
1038
  let menuUpdate;
1038
1039
  let index;