@addsign/moje-agenda-shared-lib 2.0.45 → 2.0.47

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.
@@ -25,6 +25,7 @@ function DatatableSettings({
25
25
  className: " text-xl h-full cursor-pointer text-gray-600 hover:text-black",
26
26
  title: "Obnovit Data",
27
27
  onClick: onSuccess,
28
+ "data-cy": "datatable-refresh",
28
29
  children: /* @__PURE__ */ jsx(MdRefresh, {})
29
30
  }
30
31
  ),
@@ -34,6 +35,7 @@ function DatatableSettings({
34
35
  className: " text-xl h-full cursor-pointer text-gray-600 hover:text-black",
35
36
  title: "Obnovit výchozí nastavení tabulky",
36
37
  onClick: () => refreshTable(),
38
+ "data-cy": "datatable-refresh-default",
37
39
  children: /* @__PURE__ */ jsx(TiArrowBackOutline, {})
38
40
  }
39
41
  ),
@@ -43,6 +45,7 @@ function DatatableSettings({
43
45
  className: " text-xl h-full cursor-pointer text-gray-600 hover:text-black",
44
46
  title: "Stáhnout jako XLS soubor",
45
47
  onClick: onExport,
48
+ "data-cy": "datatable-export",
46
49
  children: /* @__PURE__ */ jsx(PiFileXlsLight, {})
47
50
  }
48
51
  ),