@react-hive/honey-layout 11.2.0 → 12.1.0

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 (29) hide show
  1. package/dist/components/HoneyLayerRegistry/HoneyLayerRegistry.d.ts +18 -0
  2. package/dist/components/HoneyLayerRegistry/HoneyLayerRegistry.types.d.ts +27 -0
  3. package/dist/components/HoneyLayerRegistry/HoneyLayerRegistryContext.d.ts +43 -0
  4. package/dist/components/HoneyLayerRegistry/hooks/index.d.ts +1 -0
  5. package/dist/components/HoneyLayerRegistry/hooks/use-honey-layer-registry-context.d.ts +9 -0
  6. package/dist/components/HoneyLayerRegistry/index.d.ts +3 -0
  7. package/dist/components/HoneyPopup/HoneyPopupContent.d.ts +1 -2
  8. package/dist/components/HoneyPopup/hooks/use-honey-popup-context.d.ts +1 -1
  9. package/dist/components/index.d.ts +1 -0
  10. package/dist/contexts/HoneyLayoutContext.d.ts +1 -1
  11. package/dist/hooks/index.d.ts +1 -1
  12. package/dist/hooks/{use-honey-document-key-up-handler.d.ts → use-honey-document-key-up.d.ts} +6 -6
  13. package/dist/hooks/use-honey-drag.d.ts +13 -13
  14. package/dist/hooks/use-honey-layout.d.ts +1 -1
  15. package/dist/hooks/use-honey-media-query.d.ts +1 -1
  16. package/dist/hooks/use-honey-overlay.d.ts +2 -2
  17. package/dist/hooks/use-honey-raf-loop.d.ts +4 -4
  18. package/dist/hooks/use-honey-synthetic-scroll.d.ts +2 -2
  19. package/dist/hooks/use-honey-timer.d.ts +2 -2
  20. package/dist/hooks/use-register-honey-overlay.d.ts +3 -3
  21. package/dist/index.cjs +13 -13
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.dev.cjs +309 -133
  24. package/dist/index.dev.cjs.map +1 -1
  25. package/dist/index.mjs +14 -14
  26. package/dist/index.mjs.map +1 -1
  27. package/dist/providers/HoneyLayoutProvider.d.ts +1 -1
  28. package/dist/providers/hooks/use-honey-overlays.d.ts +2 -2
  29. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
1
  import type { PropsWithChildren } from 'react';
2
2
  import type { HoneyStyleProviderProps } from '@react-hive/honey-style';
3
- import type { UseHoneyMediaQueryOptions } from '../hooks';
3
+ import type { UseHoneyMediaQueryOptions } from '~/hooks';
4
4
  interface HoneyLayoutProviderProps extends HoneyStyleProviderProps {
5
5
  mediaQueryOptions?: UseHoneyMediaQueryOptions;
6
6
  }
@@ -1,5 +1,5 @@
1
- import type { HoneyActiveOverlay } from '../../types';
2
- import type { HoneyRegisterOverlay, HoneyUnregisterOverlay } from '../../contexts';
1
+ import type { HoneyActiveOverlay } from '~/types';
2
+ import type { HoneyRegisterOverlay, HoneyUnregisterOverlay } from '~/contexts';
3
3
  /**
4
4
  * Hook to manage a stack of overlays, allowing registration and unregistration of overlays,
5
5
  * as well as handling keyboard events for the topmost overlay.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-hive/honey-layout",
3
- "version": "11.2.0",
3
+ "version": "12.1.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "react",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@floating-ui/dom": "1.7.4",
50
50
  "@floating-ui/react": "0.27.16",
51
- "@react-hive/honey-utils": "3.20.0",
51
+ "@react-hive/honey-utils": "3.21.0",
52
52
  "csstype": "3.2.3",
53
53
  "highlight.js": "11.11.1",
54
54
  "lodash.merge": "4.6.2",