reactive-bulma 4.3.9 → 4.3.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. package/dist/components/atoms/Block/index.js +8 -8
  2. package/dist/components/atoms/Box/index.js +8 -8
  3. package/dist/components/atoms/BreadcrumbItem/index.js +9 -9
  4. package/dist/components/atoms/Button/index.js +27 -27
  5. package/dist/components/atoms/Checkbox/index.js +22 -22
  6. package/dist/components/atoms/Column/index.js +5 -5
  7. package/dist/components/atoms/Delete/index.js +5 -5
  8. package/dist/components/atoms/DropdownItem/index.js +20 -20
  9. package/dist/components/atoms/DropdownTrigger/index.js +17 -17
  10. package/dist/components/atoms/File/index.js +17 -17
  11. package/dist/components/atoms/Icon/index.js +16 -16
  12. package/dist/components/atoms/Image/index.js +18 -18
  13. package/dist/components/atoms/Input/index.js +26 -26
  14. package/dist/components/atoms/LevelHeader/index.js +11 -11
  15. package/dist/components/atoms/MenuItem/index.js +14 -14
  16. package/dist/components/atoms/NavBarItem/index.js +17 -17
  17. package/dist/components/atoms/PaginationItem/index.js +10 -10
  18. package/dist/components/atoms/ProgressBar/index.js +19 -19
  19. package/dist/components/atoms/RadioButton/index.js +13 -13
  20. package/dist/components/atoms/Select/index.js +30 -30
  21. package/dist/components/atoms/TabItem/index.js +22 -22
  22. package/dist/components/atoms/TableCell/index.js +9 -9
  23. package/dist/components/atoms/TableHeadCell/index.js +11 -11
  24. package/dist/components/atoms/Tag/index.js +40 -40
  25. package/dist/components/atoms/TextArea/index.js +31 -31
  26. package/dist/components/atoms/Tile/index.js +9 -9
  27. package/dist/components/atoms/Title/index.js +11 -11
  28. package/dist/components/molecules/Breadcrumbs/index.js +22 -22
  29. package/dist/components/molecules/ButtonGroup/index.js +18 -18
  30. package/dist/components/molecules/ColumnGroup/index.js +18 -18
  31. package/dist/components/molecules/Dropdown/index.js +10 -10
  32. package/dist/components/molecules/Footer/index.js +8 -8
  33. package/dist/components/molecules/FormFieldInput/index.js +8 -8
  34. package/dist/components/molecules/InputControl/index.js +21 -21
  35. package/dist/components/molecules/LevelItem/index.js +5 -5
  36. package/dist/components/molecules/Media/index.js +6 -6
  37. package/dist/components/molecules/Menu/index.js +11 -11
  38. package/dist/components/molecules/MenuList/index.js +7 -7
  39. package/dist/components/molecules/Message/index.js +7 -7
  40. package/dist/components/molecules/Modal/index.js +9 -9
  41. package/dist/components/molecules/NavBarBrand/index.js +9 -9
  42. package/dist/components/molecules/NavBarDropdown/index.js +18 -18
  43. package/dist/components/molecules/Notification/index.js +4 -4
  44. package/dist/components/molecules/Pagination/index.js +28 -28
  45. package/dist/components/molecules/PanelBlock/index.js +22 -22
  46. package/dist/components/molecules/PanelTabs/index.js +13 -13
  47. package/dist/components/molecules/Section/index.js +6 -6
  48. package/dist/components/molecules/TableRow/index.js +19 -19
  49. package/dist/components/molecules/Tabs/index.js +17 -17
  50. package/dist/components/molecules/TileBox/index.js +15 -15
  51. package/dist/components/organisms/Card/index.js +24 -24
  52. package/dist/components/organisms/Hero/index.js +13 -13
  53. package/dist/components/organisms/Level/index.js +8 -8
  54. package/dist/components/organisms/NavBar/index.js +20 -20
  55. package/dist/components/organisms/Panel/index.js +4 -4
  56. package/dist/components/organisms/Table/index.js +10 -10
  57. package/dist/components/organisms/TileGroup/index.js +16 -16
  58. package/package.json +27 -27
@@ -1,26 +1,26 @@
1
1
  import { jsx as a } from "react/jsx-runtime";
2
- import { parseClasses as d, parseTestId as o } from "../../../functions/parsers.js";
2
+ import { parseClasses as o, parseTestId as d } from "../../../functions/parsers.js";
3
3
  import { generateKey as c } from "../../../functions/generators.js";
4
- const f = ({
5
- testId: n = null,
6
- cssClasses: t = null,
7
- style: l = null,
4
+ const v = ({
5
+ testId: t = null,
6
+ cssClasses: l = null,
7
+ style: n = null,
8
8
  tabList: i
9
9
  }) => {
10
- const s = d(["panel-tabs", t]), r = n ?? o({ tag: "panel-tabs", parsedClasses: s });
10
+ const e = o(["panel-tabs", l]), r = t ?? d({ tag: "panel-tabs", parsedClasses: e });
11
11
  return /* @__PURE__ */ a(
12
12
  "section",
13
13
  {
14
14
  "data-testid": r,
15
- className: s,
16
- style: l ?? void 0,
17
- children: i.map((e) => /* @__PURE__ */ a(
15
+ className: e,
16
+ style: n ?? void 0,
17
+ children: i.map((s) => /* @__PURE__ */ a(
18
18
  "a",
19
19
  {
20
- className: e.isActive ? "is-active" : void 0,
20
+ className: s.isActive ? "is-active" : void 0,
21
21
  "aria-hidden": "true",
22
- onClick: e.onClick ?? void 0,
23
- children: e.text
22
+ onClick: s.onClick ?? void 0,
23
+ children: s.text
24
24
  },
25
25
  `tab-item-${c()}`
26
26
  ))
@@ -28,5 +28,5 @@ const f = ({
28
28
  );
29
29
  };
30
30
  export {
31
- f as default
31
+ v as default
32
32
  };
@@ -1,10 +1,10 @@
1
1
  import { jsx as c } from "react/jsx-runtime";
2
2
  import { parseClasses as i, parseTestId as r } from "../../../functions/parsers.js";
3
- const p = ({
3
+ const u = ({
4
4
  testId: e = null,
5
5
  cssClasses: t = null,
6
- style: n = null,
7
- content: l,
6
+ style: l = null,
7
+ content: n,
8
8
  size: o = null
9
9
  }) => {
10
10
  const s = i(["section", o, t]), a = e ?? r({ tag: "section", parsedClasses: s });
@@ -13,11 +13,11 @@ const p = ({
13
13
  {
14
14
  "data-testid": a,
15
15
  className: s,
16
- style: n ?? void 0,
17
- children: l
16
+ style: l ?? void 0,
17
+ children: n
18
18
  }
19
19
  );
20
20
  };
21
21
  export {
22
- p as default
22
+ u as default
23
23
  };
@@ -1,35 +1,35 @@
1
- import { jsxs as p, jsx as s } from "react/jsx-runtime";
2
- import { parseClasses as u, parseTestId as f } from "../../../functions/parsers.js";
1
+ import { jsxs as d, jsx as s } from "react/jsx-runtime";
2
+ import { parseClasses as u, parseTestId as b } from "../../../functions/parsers.js";
3
3
  import "react";
4
- import b from "../../atoms/TableHeadCell/index.js";
5
- import c from "../../atoms/TableCell/index.js";
4
+ import c from "../../atoms/TableHeadCell/index.js";
5
+ import f from "../../atoms/TableCell/index.js";
6
6
  import { generateKey as w } from "../../../functions/generators.js";
7
- const y = ({
7
+ const v = ({
8
8
  testId: t = null,
9
9
  cssClasses: a = null,
10
- style: r = null,
11
- headCell: e = null,
12
- listOfCells: o,
10
+ style: o = null,
11
+ headCell: l = null,
12
+ listOfCells: r,
13
13
  isSelected: n = !1,
14
14
  onClick: m = null
15
15
  }) => {
16
- const l = u([
16
+ const e = u([
17
17
  n ? "is-selected" : null,
18
18
  a
19
- ]), d = t ?? f({ tag: "table-row", parsedClasses: l });
20
- return /* @__PURE__ */ p(
19
+ ]), i = t ?? b({ tag: "table-row", parsedClasses: e });
20
+ return /* @__PURE__ */ d(
21
21
  "tr",
22
22
  {
23
- "data-testid": d,
24
- className: l,
25
- style: r ?? void 0,
23
+ "data-testid": i,
24
+ className: e,
25
+ style: o ?? void 0,
26
26
  onClick: m ?? void 0,
27
27
  children: [
28
- e ? /* @__PURE__ */ s(b, { ...e }) : null,
29
- o.map((i) => /* @__PURE__ */ s(
30
- c,
28
+ l ? /* @__PURE__ */ s(c, { ...l }) : null,
29
+ r.map((p) => /* @__PURE__ */ s(
30
+ f,
31
31
  {
32
- ...i
32
+ ...p
33
33
  },
34
34
  `table-row-${w()}`
35
35
  ))
@@ -38,5 +38,5 @@ const y = ({
38
38
  );
39
39
  };
40
40
  export {
41
- y as default
41
+ v as default
42
42
  };
@@ -1,39 +1,39 @@
1
1
  import { jsx as l } from "react/jsx-runtime";
2
- import { parseClasses as p, parseTestId as f } from "../../../functions/parsers.js";
2
+ import { parseClasses as p, parseTestId as b } from "../../../functions/parsers.js";
3
3
  import "react";
4
- import b from "../../atoms/TabItem/index.js";
4
+ import f from "../../atoms/TabItem/index.js";
5
5
  import { generateKey as h } from "../../../functions/generators.js";
6
6
  const y = ({
7
- testId: t = null,
7
+ testId: e = null,
8
8
  cssClasses: a = null,
9
- style: n = null,
10
- tabs: i,
11
- alignment: r = null,
12
- size: u = null,
13
- format: d = null,
14
- isRounded: o = null,
9
+ style: i = null,
10
+ tabs: r,
11
+ alignment: n = null,
12
+ size: o = null,
13
+ format: u = null,
14
+ isRounded: d = null,
15
15
  isFullWidth: m = null
16
16
  }) => {
17
17
  const s = p([
18
18
  "tabs",
19
- r,
19
+ n,
20
+ o,
20
21
  u,
21
- d,
22
- o ? "is-toggle-rounded" : null,
22
+ d ? "is-toggle-rounded" : null,
23
23
  m ? "is-fullwidth" : null,
24
24
  a
25
- ]), c = t ?? f({ tag: "tabs", parsedClasses: s });
25
+ ]), c = e ?? b({ tag: "tabs", parsedClasses: s });
26
26
  return /* @__PURE__ */ l(
27
27
  "section",
28
28
  {
29
29
  "data-testid": c,
30
30
  className: s,
31
- style: n ?? void 0,
32
- children: /* @__PURE__ */ l("ul", { children: i.map((e) => /* @__PURE__ */ l(
31
+ style: i ?? void 0,
32
+ children: /* @__PURE__ */ l("ul", { children: r.map((t) => /* @__PURE__ */ l(
33
33
  "li",
34
34
  {
35
- className: e.isActive ? "is-active" : void 0,
36
- children: /* @__PURE__ */ l(b, { ...e })
35
+ className: t.isActive ? "is-active" : void 0,
36
+ children: /* @__PURE__ */ l(f, { ...t })
37
37
  },
38
38
  `tab-item-${h()}`
39
39
  )) })
@@ -1,25 +1,25 @@
1
- import { jsx as d } from "react/jsx-runtime";
2
- import { parseClasses as u, parseTestId as x } from "../../../functions/parsers.js";
1
+ import { jsx as x } from "react/jsx-runtime";
2
+ import { parseClasses as d, parseTestId as m } from "../../../functions/parsers.js";
3
3
  import "react";
4
- import m from "../../atoms/Tile/index.js";
4
+ import u from "../../atoms/Tile/index.js";
5
5
  const T = ({
6
- testId: s = null,
6
+ testId: r = null,
7
7
  cssClasses: l = "box",
8
- style: n = null,
9
- children: o = null,
8
+ style: s = null,
9
+ children: n = null,
10
10
  context: t = "is-child",
11
11
  size: i,
12
12
  color: e,
13
- isVertical: r
13
+ isVertical: o
14
14
  }) => {
15
- const a = u([
15
+ const a = d([
16
16
  "tileBox",
17
17
  t,
18
18
  i,
19
19
  e ? `notification ${e}` : null,
20
- r ? "is-vertical" : null,
20
+ o ? "is-vertical" : null,
21
21
  l
22
- ]), p = s ?? x({
22
+ ]), p = r ?? m({
23
23
  tag: "tileBox",
24
24
  parsedClasses: a,
25
25
  rules: [
@@ -33,17 +33,17 @@ const T = ({
33
33
  }
34
34
  ]
35
35
  });
36
- return /* @__PURE__ */ d(
37
- m,
36
+ return /* @__PURE__ */ x(
37
+ u,
38
38
  {
39
39
  testId: p,
40
40
  cssClasses: l,
41
- style: n ?? void 0,
42
- isVertical: r,
41
+ style: s ?? void 0,
42
+ isVertical: o,
43
43
  context: t,
44
44
  size: i,
45
45
  color: e,
46
- children: o ?? void 0
46
+ children: n ?? void 0
47
47
  }
48
48
  );
49
49
  };
@@ -1,38 +1,38 @@
1
- import { jsxs as i, jsx as e } from "react/jsx-runtime";
2
- import { parseClasses as p, parseTestId as N } from "../../../functions/parsers.js";
1
+ import { jsxs as i, jsx as a } from "react/jsx-runtime";
2
+ import { parseClasses as u, parseTestId as N } from "../../../functions/parsers.js";
3
3
  import "react";
4
- import f from "../../atoms/Image/index.js";
4
+ import $ from "../../atoms/Image/index.js";
5
5
  import { generateKey as o } from "../../../functions/generators.js";
6
6
  const I = ({
7
7
  testId: m = null,
8
8
  cssClasses: h = null,
9
- style: u = null,
10
- headerText: d = null,
11
- image: c = null,
9
+ style: p = null,
10
+ headerText: c = null,
11
+ image: d = null,
12
12
  content: s,
13
13
  footerLinks: l = null
14
14
  }) => {
15
- const n = p(["card", h]), a = m ?? N({ tag: "card", parsedClasses: n });
15
+ const n = u(["card", h]), e = m ?? N({ tag: "card", parsedClasses: n });
16
16
  return /* @__PURE__ */ i(
17
17
  "section",
18
18
  {
19
- "data-testid": a,
19
+ "data-testid": e,
20
20
  className: n,
21
- style: u ?? void 0,
21
+ style: p ?? void 0,
22
22
  children: [
23
- d ? /* @__PURE__ */ i(
23
+ c ? /* @__PURE__ */ i(
24
24
  "header",
25
25
  {
26
- "data-testid": `${a}-header`,
26
+ "data-testid": `${e}-header`,
27
27
  className: "card-header",
28
28
  children: [
29
- /* @__PURE__ */ e("p", { className: "card-header-title", children: d }),
30
- /* @__PURE__ */ e(
29
+ /* @__PURE__ */ a("p", { className: "card-header-title", children: c }),
30
+ /* @__PURE__ */ a(
31
31
  "button",
32
32
  {
33
33
  className: "card-header-icon",
34
34
  "aria-label": "more options",
35
- children: /* @__PURE__ */ e("span", { className: "icon", children: /* @__PURE__ */ e(
35
+ children: /* @__PURE__ */ a("span", { className: "icon", children: /* @__PURE__ */ a(
36
36
  "i",
37
37
  {
38
38
  className: "fas fa-angle-down",
@@ -44,34 +44,34 @@ const I = ({
44
44
  ]
45
45
  }
46
46
  ) : null,
47
- c ? /* @__PURE__ */ e(
47
+ d ? /* @__PURE__ */ a(
48
48
  "section",
49
49
  {
50
- "data-testid": `${a}-image`,
50
+ "data-testid": `${e}-image`,
51
51
  className: "card-image",
52
- children: /* @__PURE__ */ e(f, { ...c })
52
+ children: /* @__PURE__ */ a($, { ...d })
53
53
  }
54
54
  ) : null,
55
- /* @__PURE__ */ e(
55
+ /* @__PURE__ */ a(
56
56
  "section",
57
57
  {
58
- "data-testid": `${a}-content`,
58
+ "data-testid": `${e}-content`,
59
59
  className: "card-content",
60
- children: Array.isArray(s) ? s.map((t, r) => /* @__PURE__ */ e(
60
+ children: Array.isArray(s) ? s.map((t, r) => /* @__PURE__ */ a(
61
61
  "section",
62
62
  {
63
- "data-testid": `${a}-content-item-${r}`,
63
+ "data-testid": `${e}-content-item-${r}`,
64
64
  className: "content",
65
65
  children: t
66
66
  },
67
67
  `card-content-item-${o()}`
68
- )) : /* @__PURE__ */ e("section", { className: "content", children: s })
68
+ )) : /* @__PURE__ */ a("section", { className: "content", children: s })
69
69
  }
70
70
  ),
71
- l ? /* @__PURE__ */ e("section", { className: "card-footer", children: l.map((t, r) => /* @__PURE__ */ e(
71
+ l ? /* @__PURE__ */ a("section", { className: "card-footer", children: l.map((t, r) => /* @__PURE__ */ a(
72
72
  "a",
73
73
  {
74
- "data-testid": `${a}-footer-item-${r}`,
74
+ "data-testid": `${e}-footer-item-${r}`,
75
75
  className: "card-footer-item",
76
76
  "aria-hidden": "true",
77
77
  onClick: t.onClick ?? void 0,
@@ -1,23 +1,23 @@
1
1
  import { jsxs as h, jsx as i } from "react/jsx-runtime";
2
- import { parseClasses as f, parseTestId as m } from "../../../functions/parsers.js";
3
- const r = (o, e, t, n) => e === "body" || n === "is-fullheight" ? /* @__PURE__ */ i(
2
+ import { parseClasses as m, parseTestId as f } from "../../../functions/parsers.js";
3
+ const n = (o, s, t, r) => s === "body" || r === "is-fullheight" ? /* @__PURE__ */ i(
4
4
  "section",
5
5
  {
6
- "data-testid": `${t}-${e}`,
7
- className: `hero-${e}`,
6
+ "data-testid": `${t}-${s}`,
7
+ className: `hero-${s}`,
8
8
  children: o
9
9
  }
10
10
  ) : null, C = ({
11
11
  testId: o = null,
12
- cssClasses: e = null,
12
+ cssClasses: s = null,
13
13
  style: t = null,
14
- header: n = null,
14
+ header: r = null,
15
15
  body: d,
16
- footer: u = null,
17
- color: c = null,
18
- size: s = null
16
+ footer: c = null,
17
+ color: u = null,
18
+ size: e = null
19
19
  }) => {
20
- const a = f(["hero", c, s, e]), l = o ?? m({ tag: "hero", parsedClasses: a });
20
+ const a = m(["hero", u, e, s]), l = o ?? f({ tag: "hero", parsedClasses: a });
21
21
  return /* @__PURE__ */ h(
22
22
  "section",
23
23
  {
@@ -25,9 +25,9 @@ const r = (o, e, t, n) => e === "body" || n === "is-fullheight" ? /* @__PURE__ *
25
25
  className: a,
26
26
  style: t ?? void 0,
27
27
  children: [
28
- r(n, "head", l, s),
29
- r(d, "body", l, s),
30
- r(u, "foot", l, s)
28
+ n(r, "head", l, e),
29
+ n(d, "body", l, e),
30
+ n(c, "foot", l, e)
31
31
  ]
32
32
  }
33
33
  );
@@ -1,9 +1,9 @@
1
- import { jsxs as c, jsx as n } from "react/jsx-runtime";
1
+ import { jsxs as u, jsx as t } from "react/jsx-runtime";
2
2
  import { parseClasses as v, parseTestId as p } from "../../../functions/parsers.js";
3
3
  import "react";
4
4
  import { generateKey as d } from "../../../functions/generators.js";
5
5
  import f from "../../molecules/LevelItem/index.js";
6
- const s = (l) => l.map((e) => /* @__PURE__ */ n(
6
+ const s = (l) => l.map((e) => /* @__PURE__ */ t(
7
7
  f,
8
8
  {
9
9
  ...e
@@ -13,7 +13,7 @@ const s = (l) => l.map((e) => /* @__PURE__ */ n(
13
13
  testId: l = null,
14
14
  cssClasses: e = null,
15
15
  style: m = null,
16
- leftSide: t = null,
16
+ leftSide: n = null,
17
17
  centerSide: a = null,
18
18
  rightSide: r = null,
19
19
  isMobile: i = !1
@@ -22,17 +22,17 @@ const s = (l) => l.map((e) => /* @__PURE__ */ n(
22
22
  "level",
23
23
  i ? "is-mobile" : null,
24
24
  e
25
- ]), u = l ?? p({ tag: "level", parsedClasses: o });
26
- return /* @__PURE__ */ c(
25
+ ]), c = l ?? p({ tag: "level", parsedClasses: o });
26
+ return /* @__PURE__ */ u(
27
27
  "nav",
28
28
  {
29
- "data-testid": u,
29
+ "data-testid": c,
30
30
  className: o,
31
31
  style: m ?? void 0,
32
32
  children: [
33
- t ? /* @__PURE__ */ n("section", { className: "level-left", children: s(t) }) : null,
33
+ n ? /* @__PURE__ */ t("section", { className: "level-left", children: s(n) }) : null,
34
34
  a ? s(a) : null,
35
- r ? /* @__PURE__ */ n("section", { className: "level-right", children: s(r) }) : null
35
+ r ? /* @__PURE__ */ t("section", { className: "level-right", children: s(r) }) : null
36
36
  ]
37
37
  }
38
38
  );
@@ -1,18 +1,18 @@
1
1
  import { jsxs as d, jsx as s } from "react/jsx-runtime";
2
- import { parseClasses as f, parseTestId as h } from "../../../functions/parsers.js";
2
+ import { parseClasses as h, parseTestId as B } from "../../../functions/parsers.js";
3
3
  import "react";
4
- import B from "../../atoms/NavBarItem/index.js";
4
+ import $ from "../../atoms/NavBarItem/index.js";
5
5
  import { generateKey as o } from "../../../functions/generators.js";
6
- import $ from "../../molecules/NavBarBrand/index.js";
6
+ import f from "../../molecules/NavBarBrand/index.js";
7
7
  import x from "../../molecules/NavBarDropdown/index.js";
8
- const p = (e, a, l) => e ? /* @__PURE__ */ s(
8
+ const p = (l, a, e) => l ? /* @__PURE__ */ s(
9
9
  "section",
10
10
  {
11
- "data-testid": `${l}-${a}`,
11
+ "data-testid": `${e}-${a}`,
12
12
  className: `navbar-${a}`,
13
- children: e.itemList.map(
13
+ children: l.itemList.map(
14
14
  (r) => r.children !== void 0 ? /* @__PURE__ */ s(
15
- B,
15
+ $,
16
16
  {
17
17
  ...r
18
18
  },
@@ -27,27 +27,27 @@ const p = (e, a, l) => e ? /* @__PURE__ */ s(
27
27
  )
28
28
  }
29
29
  ) : null, D = ({
30
- testId: e = null,
30
+ testId: l = null,
31
31
  cssClasses: a = null,
32
- style: l = null,
32
+ style: e = null,
33
33
  brandConfig: r = null,
34
- itemsAtStart: c = null,
35
- itemsAtEnd: i = null,
36
- fixedPosition: m = null,
37
- color: v = null,
34
+ itemsAtStart: v = null,
35
+ itemsAtEnd: c = null,
36
+ fixedPosition: i = null,
37
+ color: m = null,
38
38
  isTransparent: u = !1,
39
39
  isSpaced: b = !1,
40
40
  hasShadow: N = !1
41
41
  }) => {
42
- const t = f([
42
+ const t = h([
43
43
  "navbar",
44
+ i,
44
45
  m,
45
- v,
46
46
  u ? "is-transparent" : null,
47
47
  b ? "is-spaced" : null,
48
48
  N ? "has-shadow" : null,
49
49
  a
50
- ]), n = e ?? h({
50
+ ]), n = l ?? B({
51
51
  tag: "navbar",
52
52
  parsedClasses: t,
53
53
  rules: [
@@ -60,19 +60,19 @@ const p = (e, a, l) => e ? /* @__PURE__ */ s(
60
60
  {
61
61
  "data-testid": n,
62
62
  className: t,
63
- style: l ?? void 0,
63
+ style: e ?? void 0,
64
64
  children: [
65
65
  r ? /* @__PURE__ */ s(
66
66
  "section",
67
67
  {
68
68
  "data-testid": "navbar-brand",
69
69
  className: "navbar-brand",
70
- children: /* @__PURE__ */ s($, { ...r })
70
+ children: /* @__PURE__ */ s(f, { ...r })
71
71
  }
72
72
  ) : null,
73
73
  /* @__PURE__ */ d("section", { className: "navbar-menu", children: [
74
- p(c, "start", n),
75
- p(i, "end", n)
74
+ p(v, "start", n),
75
+ p(c, "end", n)
76
76
  ] })
77
77
  ]
78
78
  }
@@ -1,5 +1,5 @@
1
- import { jsxs as d, jsx as l } from "react/jsx-runtime";
2
- import { parseClasses as c, parseTestId as u } from "../../../functions/parsers.js";
1
+ import { jsxs as c, jsx as l } from "react/jsx-runtime";
2
+ import { parseClasses as d, parseTestId as u } from "../../../functions/parsers.js";
3
3
  import "react";
4
4
  import { generateKey as f } from "../../../functions/generators.js";
5
5
  import g from "../../molecules/PanelBlock/index.js";
@@ -13,8 +13,8 @@ const x = (e) => /* @__PURE__ */ l("p", { className: "panel-heading", children:
13
13
  blockList: o,
14
14
  color: p = null
15
15
  }) => {
16
- const s = c(["panel", p, n]), m = e ?? u({ tag: "panel", parsedClasses: s });
17
- return /* @__PURE__ */ d(
16
+ const s = d(["panel", p, n]), m = e ?? u({ tag: "panel", parsedClasses: s });
17
+ return /* @__PURE__ */ c(
18
18
  "article",
19
19
  {
20
20
  "data-testid": m,
@@ -4,7 +4,7 @@ import "react";
4
4
  import x from "../../atoms/TableHeadCell/index.js";
5
5
  import { generateKey as i } from "../../../functions/generators.js";
6
6
  import g from "../../molecules/TableRow/index.js";
7
- const o = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE__ */ e(
7
+ const n = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE__ */ e(
8
8
  x,
9
9
  {
10
10
  ...s
@@ -19,8 +19,8 @@ const o = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE_
19
19
  foot: r = null,
20
20
  isBordered: c = !1,
21
21
  isStriped: f = !1,
22
- isNarrow: u = !1,
23
- isHoverable: p = !1,
22
+ isNarrow: p = !1,
23
+ isHoverable: u = !1,
24
24
  isFullwidth: h = !1,
25
25
  isContained: T = !1
26
26
  }) => {
@@ -28,18 +28,18 @@ const o = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE_
28
28
  "table",
29
29
  c ? "is-bordered" : null,
30
30
  f ? "is-striped" : null,
31
- u ? "is-narrow" : null,
32
- p ? "is-hoverable" : null,
31
+ p ? "is-narrow" : null,
32
+ u ? "is-hoverable" : null,
33
33
  h ? "is-fullwidth" : null,
34
34
  a
35
- ]), l = t ?? w({ tag: "table", parsedClasses: d }), n = () => /* @__PURE__ */ y(
35
+ ]), l = t ?? w({ tag: "table", parsedClasses: d }), o = () => /* @__PURE__ */ y(
36
36
  "table",
37
37
  {
38
38
  "data-testid": l,
39
39
  className: d,
40
40
  style: s ?? void 0,
41
41
  children: [
42
- /* @__PURE__ */ e("thead", { "data-testid": `${l}-head`, children: o("head", b) }),
42
+ /* @__PURE__ */ e("thead", { "data-testid": `${l}-head`, children: n("head", b) }),
43
43
  /* @__PURE__ */ e("tbody", { "data-testid": `${l}-body`, children: m.map(($) => /* @__PURE__ */ e(
44
44
  g,
45
45
  {
@@ -47,7 +47,7 @@ const o = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE_
47
47
  },
48
48
  `table-body-item-${i()}`
49
49
  )) }),
50
- r ? /* @__PURE__ */ e("tfoot", { "data-testid": `${l}-foot`, children: o("foot", r) }) : null
50
+ r ? /* @__PURE__ */ e("tfoot", { "data-testid": `${l}-foot`, children: n("foot", r) }) : null
51
51
  ]
52
52
  }
53
53
  );
@@ -56,9 +56,9 @@ const o = (t, a) => /* @__PURE__ */ e("tr", { children: a.map((s) => /* @__PURE_
56
56
  {
57
57
  "data-testid": `${l}-container`,
58
58
  className: "table-container",
59
- children: /* @__PURE__ */ e(n, {})
59
+ children: /* @__PURE__ */ e(o, {})
60
60
  }
61
- ) : /* @__PURE__ */ e(n, {});
61
+ ) : /* @__PURE__ */ e(o, {});
62
62
  };
63
63
  export {
64
64
  K as default