@hortiview/shared-components 0.0.6193 → 0.0.6285
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/README.md +1 -5
- package/dist/assets/main.css +2 -2
- package/dist/components/AlertBanner/AlertBanner.test.js +1 -1
- package/dist/components/BaseView/BaseView.test.js +1 -1
- package/dist/components/BasicHeading/BasicHeading.test.js +1 -1
- package/dist/components/BlockView/BlockView.test.js +1 -1
- package/dist/components/ContextMenu/ContextMenu.test.js +1 -1
- package/dist/components/DeleteModal/DeleteModal.test.js +1 -1
- package/dist/components/Disclaimer/Disclaimer.test.js +1 -1
- package/dist/components/EmptyView/EmptyView.test.js +1 -1
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.test.js +1 -1
- package/dist/components/FormComponents/FormDatePicker/FormDatePicker.test.js +1 -1
- package/dist/components/FormComponents/FormRadio/FormRadio.test.js +1 -1
- package/dist/components/FormComponents/FormSelect/FormSelect.test.js +1 -1
- package/dist/components/FormComponents/FormSlider/FormSlider.test.js +1 -1
- package/dist/components/FormComponents/FormText/FormText.test.js +1 -1
- package/dist/components/GenericTable/GenericTable.test.js +21 -7
- package/dist/components/HashTabView/HashTabView.test.js +1 -1
- package/dist/components/HeaderFilter/HeaderFilter.test.js +1 -1
- package/dist/components/Iconify/Iconify.d.ts +1 -1
- package/dist/components/Iconify/Iconify.js +37 -37
- package/dist/components/Iconify/Iconify.test.js +1 -1
- package/dist/components/InfoGroup/InfoGroup.test.js +1 -1
- package/dist/components/ListArea/ListArea.test.js +1 -1
- package/dist/components/LoadingSpinner/Big/BigLoadingSpinner.test.js +1 -1
- package/dist/components/LoadingSpinner/Default/LoadingSpinner.test.js +1 -1
- package/dist/components/Scrollbar/scrollbar.test.js +1 -1
- package/dist/components/SearchBar/SearchBar.test.js +1 -1
- package/dist/components/VerticalDivider/VerticalDivider.test.js +1 -1
- package/dist/main.d.ts +3 -3
- package/dist/{react.esm-C0LtovhP.js → react.esm-D9-uytwS.js} +1658 -1652
- package/package.json +23 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { r as o, s as e } from "../../../react.esm-
|
|
2
|
+
import { r as o, s as e } from "../../../react.esm-D9-uytwS.js";
|
|
3
3
|
import { LoadingSpinner as r } from "./LoadingSpinner.js";
|
|
4
4
|
import { d as a, t as i, g as n } from "../../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
a("LoadingSpinner Test", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
-
import { r as e, s as t } from "../../react.esm-
|
|
2
|
+
import { r as e, s as t } from "../../react.esm-D9-uytwS.js";
|
|
3
3
|
import { ScrollbarY as d, ScrollbarX as l } from "./Scrollbar.js";
|
|
4
4
|
import { d as c, t as a, g as o } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
c("Scrollbar", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { r, s as t, f as h, a as l } from "../../react.esm-
|
|
2
|
+
import { r, s as t, f as h, a as l } from "../../react.esm-D9-uytwS.js";
|
|
3
3
|
import { SearchBar as s } from "./SearchBar.js";
|
|
4
4
|
import { d as m, t as o, v as n, g as e } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
m("SearchBar Test", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { r } from "../../react.esm-
|
|
2
|
+
import { r } from "../../react.esm-D9-uytwS.js";
|
|
3
3
|
import { VerticalDivider as s } from "./VerticalDivider.js";
|
|
4
4
|
import { d as o, t as l, g as i } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
o("VerticalDivider Test", () => {
|
package/dist/main.d.ts
CHANGED
|
@@ -26,9 +26,9 @@ export { FormText } from './components/FormComponents/FormText/FormText';
|
|
|
26
26
|
export { AvailableCustomIcons } from './enums/AvailableCustomIcons';
|
|
27
27
|
export { useBreakpoints } from './hooks/useBreakpoint';
|
|
28
28
|
export { capitalizeFirstLetters } from './services/UtilService';
|
|
29
|
-
export type { CellTemplate, CellTemplateProps, TableLayoutProps } from './types/GenericTable';
|
|
30
|
-
export type { FieldItem } from './components/InfoGroup/InfoGroup';
|
|
31
29
|
export type { FormSelectOption } from './components/FormComponents/FormSelect/FormSelect';
|
|
32
30
|
export type { FormTextProps } from './components/FormComponents/FormText/FormText';
|
|
31
|
+
export type { FieldItem } from './components/InfoGroup/InfoGroup';
|
|
32
|
+
export type { CellTemplate, CellTemplateProps, TableLayoutProps } from './types/GenericTable';
|
|
33
33
|
export type { HashTab } from './types/HashTab';
|
|
34
|
-
export type {
|
|
34
|
+
export type { BaseListElement, ListElement } from './types/ListElement';
|