@helpwave/hightide 0.1.36 → 0.1.37

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 (33) hide show
  1. package/dist/components/dialog/ConfirmDialog.js.map +1 -1
  2. package/dist/components/dialog/ConfirmDialog.mjs.map +1 -1
  3. package/dist/components/dialog/Dialog.js +1 -0
  4. package/dist/components/dialog/Dialog.js.map +1 -1
  5. package/dist/components/dialog/Dialog.mjs +2 -0
  6. package/dist/components/dialog/Dialog.mjs.map +1 -1
  7. package/dist/components/dialog/DiscardChangesDialog.js.map +1 -1
  8. package/dist/components/dialog/DiscardChangesDialog.mjs.map +1 -1
  9. package/dist/components/dialog/InputDialog.js.map +1 -1
  10. package/dist/components/dialog/InputDialog.mjs.map +1 -1
  11. package/dist/components/dialog/LanguageDialog.js.map +1 -1
  12. package/dist/components/dialog/LanguageDialog.mjs.map +1 -1
  13. package/dist/components/dialog/ThemeDialog.js.map +1 -1
  14. package/dist/components/dialog/ThemeDialog.mjs.map +1 -1
  15. package/dist/components/dialog/index.js.map +1 -1
  16. package/dist/components/dialog/index.mjs.map +1 -1
  17. package/dist/components/index.d.mts +1 -1
  18. package/dist/components/index.d.ts +1 -1
  19. package/dist/components/index.js.map +1 -1
  20. package/dist/components/index.mjs.map +1 -1
  21. package/dist/components/navigation/Navigation.d.mts +4 -4
  22. package/dist/components/navigation/Navigation.d.ts +4 -4
  23. package/dist/components/navigation/Navigation.js.map +1 -1
  24. package/dist/components/navigation/Navigation.mjs.map +1 -1
  25. package/dist/components/navigation/index.d.mts +1 -1
  26. package/dist/components/navigation/index.d.ts +1 -1
  27. package/dist/components/navigation/index.js.map +1 -1
  28. package/dist/components/navigation/index.mjs.map +1 -1
  29. package/dist/index.d.mts +1 -1
  30. package/dist/index.d.ts +1 -1
  31. package/dist/index.js.map +1 -1
  32. package/dist/index.mjs.map +1 -1
  33. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { HTMLAttributes, ReactNode } from 'react';
2
+ import { ReactNode, HTMLAttributes } from 'react';
3
3
 
4
4
  type SimpleNavigationItem = {
5
5
  label: ReactNode;
@@ -10,12 +10,12 @@ type SubItemNavigationItem = {
10
10
  label: ReactNode;
11
11
  items?: SimpleNavigationItem[];
12
12
  };
13
- type NavigationItem = SimpleNavigationItem | SubItemNavigationItem;
13
+ type NavigationItemType = SimpleNavigationItem | SubItemNavigationItem;
14
14
  type NavigationItemListProps = Omit<HTMLAttributes<HTMLElement>, 'children'> & {
15
- items: NavigationItem[];
15
+ items: NavigationItemType[];
16
16
  };
17
17
  declare const NavigationItemList: ({ items, ...restProps }: NavigationItemListProps) => react_jsx_runtime.JSX.Element;
18
18
  type NavigationProps = NavigationItemListProps;
19
19
  declare const Navigation: ({ ...props }: NavigationProps) => react_jsx_runtime.JSX.Element;
20
20
 
21
- export { Navigation, NavigationItemList, type NavigationItemListProps, type NavigationProps };
21
+ export { Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps };
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { HTMLAttributes, ReactNode } from 'react';
2
+ import { ReactNode, HTMLAttributes } from 'react';
3
3
 
4
4
  type SimpleNavigationItem = {
5
5
  label: ReactNode;
@@ -10,12 +10,12 @@ type SubItemNavigationItem = {
10
10
  label: ReactNode;
11
11
  items?: SimpleNavigationItem[];
12
12
  };
13
- type NavigationItem = SimpleNavigationItem | SubItemNavigationItem;
13
+ type NavigationItemType = SimpleNavigationItem | SubItemNavigationItem;
14
14
  type NavigationItemListProps = Omit<HTMLAttributes<HTMLElement>, 'children'> & {
15
- items: NavigationItem[];
15
+ items: NavigationItemType[];
16
16
  };
17
17
  declare const NavigationItemList: ({ items, ...restProps }: NavigationItemListProps) => react_jsx_runtime.JSX.Element;
18
18
  type NavigationProps = NavigationItemListProps;
19
19
  declare const Navigation: ({ ...props }: NavigationProps) => react_jsx_runtime.JSX.Element;
20
20
 
21
- export { Navigation, NavigationItemList, type NavigationItemListProps, type NavigationProps };
21
+ export { Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps };