innoboxrr-react-datatable 2.1.0 → 2.2.0

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-react-datatable",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "Gemelo React de innoboxrr-vue-datatable: el mismo contrato de modelo, la misma tabla.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -41,7 +41,7 @@
41
41
  "axios": "^1.7.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "innoboxrr-form-core": "^2.1.0",
44
+ "innoboxrr-form-core": "^2.2.0",
45
45
  "react": "^19.0.0",
46
46
  "react-dom": "^19.0.0",
47
47
  "react-router-dom": "^7.0.0"
@@ -13,7 +13,8 @@ export default function DisabledLinkComponent({ icon = '', text }) {
13
13
  href="#"
14
14
  aria-disabled="true"
15
15
  className="disabled-link block px-4 py-2 dark:hover:text-white dark:text-slate-400"
16
- uk-tooltip="title: This action is not authorized; pos:right"
16
+ data-tooltip="This action is not authorized"
17
+ data-tooltip-pos="right"
17
18
  onClick={(event) => event.preventDefault()}>
18
19
  {showIcon ? <DatatableIcon icon={icon} /> : null}
19
20
  <span>{text}</span>