@hortiview/shared-components 0.0.1 → 0.0.4470

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.
Files changed (30) hide show
  1. package/dist/ListAreaService-BPp_O2BH.js +67 -0
  2. package/dist/assets/BaseView.css +1 -1
  3. package/dist/assets/BasicHeading.css +1 -1
  4. package/dist/assets/BlockView.css +1 -1
  5. package/dist/assets/HashTabView.css +1 -1
  6. package/dist/assets/Iconify.css +1 -1
  7. package/dist/assets/ListAreaService.css +1 -1
  8. package/dist/assets/SearchBar.css +1 -1
  9. package/dist/assets/VerticalDivider.css +1 -1
  10. package/dist/components/BaseView/BaseView.js +8 -8
  11. package/dist/components/BaseView/BaseView.test.js +1 -1
  12. package/dist/components/BasicHeading/BasicHeading.js +27 -27
  13. package/dist/components/BasicHeading/BasicHeading.test.js +1 -1
  14. package/dist/components/BlockView/BlockView.js +21 -21
  15. package/dist/components/BlockView/BlockView.test.js +1 -1
  16. package/dist/components/EmptyView/EmptyView.test.js +1 -1
  17. package/dist/components/HashTabView/HashTabView.js +31 -31
  18. package/dist/components/HashTabView/HashTabView.test.js +1 -1
  19. package/dist/components/Iconify/Iconify.js +1 -1
  20. package/dist/components/Iconify/Iconify.test.js +1 -1
  21. package/dist/components/ListArea/ListArea.js +1 -1
  22. package/dist/components/ListArea/ListArea.test.js +2 -2
  23. package/dist/components/ListArea/ListAreaService.js +1 -1
  24. package/dist/components/SearchBar/SearchBar.js +9 -9
  25. package/dist/components/SearchBar/SearchBar.test.js +1 -1
  26. package/dist/components/VerticalDivider/VerticalDivider.js +1 -1
  27. package/dist/components/VerticalDivider/VerticalDivider.test.js +1 -1
  28. package/dist/{vi.JYQecGiw-D8gb8QJV.js → vi.JYQecGiw-8gz0k16C.js} +2306 -2313
  29. package/package.json +61 -61
  30. package/dist/ListAreaService-D16C1IfO.js +0 -67
@@ -1,26 +1,26 @@
1
1
  import "../../assets/SearchBar.css";
2
2
  import { jsx as t } from "react/jsx-runtime";
3
- import { Textfield as c, IconButton as i } from "@element/react-components";
4
- const s = "_searchbar_1fl50_1", u = {
3
+ import { Textfield as i, IconButton as l } from "@element/react-components";
4
+ const s = "_searchbar_gnvwc_1", u = {
5
5
  searchbar: s
6
- }, d = ({
6
+ }, b = ({
7
7
  className: r = "",
8
8
  dense: n = !1,
9
9
  searchTerm: a,
10
10
  setSearchTerm: o,
11
- placeholder: e
11
+ placeholder: c
12
12
  }) => /* @__PURE__ */ t(
13
- c,
13
+ i,
14
14
  {
15
15
  className: `${r ?? ""} ${u.searchbar}`,
16
16
  dense: n,
17
17
  variant: "outlined",
18
- placeholder: e,
18
+ placeholder: c,
19
19
  value: a,
20
- onChange: (l) => o(l.target.value),
20
+ onChange: (e) => o(e.target.value),
21
21
  fullWidth: !0,
22
22
  trailingIcon: /* @__PURE__ */ t(
23
- i,
23
+ l,
24
24
  {
25
25
  icon: a ? "close" : "search",
26
26
  onClick: () => a ? o("") : void 0
@@ -29,5 +29,5 @@ const s = "_searchbar_1fl50_1", u = {
29
29
  }
30
30
  );
31
31
  export {
32
- d as SearchBar
32
+ b as SearchBar
33
33
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as a } from "react/jsx-runtime";
2
- import { d as h, t as r, r as s, v as o, g as e, s as t, f as l, a as m } from "../../vi.JYQecGiw-D8gb8QJV.js";
2
+ import { d as h, t as r, r as s, v as o, g as e, s as t, f as l, a as m } from "../../vi.JYQecGiw-8gz0k16C.js";
3
3
  import { SearchBar as n } from "./SearchBar.js";
4
4
  h("SearchBar Test", () => {
5
5
  r("renders SearchBar component", () => {
@@ -1,6 +1,6 @@
1
1
  import "../../assets/VerticalDivider.css";
2
2
  import { jsx as e } from "react/jsx-runtime";
3
- const d = "_divider_dqwln_1", t = {
3
+ const d = "_divider_opvom_1", t = {
4
4
  divider: d
5
5
  }, v = ({ height: i = "2rem", className: r = "" }) => /* @__PURE__ */ e("div", { className: `${t.divider} ${r}`, style: { height: i } });
6
6
  export {
@@ -1,5 +1,5 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
- import { d, t as s, r, g as i } from "../../vi.JYQecGiw-D8gb8QJV.js";
2
+ import { d, t as s, r, g as i } from "../../vi.JYQecGiw-8gz0k16C.js";
3
3
  import { VerticalDivider as l } from "./VerticalDivider.js";
4
4
  d("VerticalDivider Test", () => {
5
5
  s("it should render with basic styling", () => {