@hanzogui/tooltip 2.0.0 → 2.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzogui/tooltip",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
4
4
  "source": "src/index.tsx",
5
5
  "files": [
6
6
  "src",
@@ -36,21 +36,21 @@
36
36
  "clean:build": "hanzo-gui-build clean:build"
37
37
  },
38
38
  "dependencies": {
39
- "@hanzogui/compose-refs": "2.0.0-rc.29",
40
- "@hanzogui/core": "2.0.0-rc.29",
41
- "@hanzogui/create-context": "2.0.0-rc.29",
42
- "@hanzogui/floating": "2.0.0-rc.29",
43
- "@hanzogui/get-token": "2.0.0-rc.29",
44
- "@hanzogui/helpers": "2.0.0-rc.29",
45
- "@hanzogui/polyfill-dev": "2.0.0-rc.29",
46
- "@hanzogui/popover": "2.0.0",
47
- "@hanzogui/popper": "2.0.0",
48
- "@hanzogui/stacks": "2.0.0",
49
- "@hanzogui/text": "2.0.0",
50
- "@hanzogui/use-controllable-state": "2.0.0-rc.29"
39
+ "@hanzogui/compose-refs": "2.0.1",
40
+ "@hanzogui/core": "2.0.1",
41
+ "@hanzogui/create-context": "2.0.1",
42
+ "@hanzogui/floating": "2.0.1",
43
+ "@hanzogui/get-token": "2.0.1",
44
+ "@hanzogui/helpers": "2.0.1",
45
+ "@hanzogui/polyfill-dev": "2.0.1",
46
+ "@hanzogui/popover": "2.0.1",
47
+ "@hanzogui/popper": "2.0.1",
48
+ "@hanzogui/stacks": "2.0.1",
49
+ "@hanzogui/text": "2.0.1",
50
+ "@hanzogui/use-controllable-state": "2.0.1"
51
51
  },
52
52
  "devDependencies": {
53
- "@hanzogui/build": "2.0.0-rc.29",
53
+ "@hanzogui/build": "2.0.1",
54
54
  "react": ">=19",
55
55
  "react-native": "0.83.2"
56
56
  },
@@ -1,4 +1,4 @@
1
- import { withStaticProperties } from '@hanzogui/helpers'
1
+ import { withStaticProperties } from '@hanzo/gui-helpers'
2
2
 
3
3
  // no output on native for now
4
4
  // could have an option to long-press or similar to show in a context menu/drawer
package/src/Tooltip.tsx CHANGED
@@ -1,16 +1,16 @@
1
- import '@hanzogui/polyfill-dev'
1
+ import '@hanzo/gui-polyfill-dev'
2
2
 
3
- import { FloatingDelayGroup, useDelayGroupContext, type Delay } from '@hanzogui/floating'
4
- import type { SizeTokens, GuiElement } from '@hanzogui/core'
5
- import { useEvent } from '@hanzogui/core'
6
- import { FloatingOverrideContext } from '@hanzogui/floating'
7
- import { getSize } from '@hanzogui/get-token'
8
- import { withStaticProperties } from '@hanzogui/helpers'
3
+ import { FloatingDelayGroup, useDelayGroupContext, type Delay } from '@hanzo/gui-floating'
4
+ import type { SizeTokens, GuiElement } from '@hanzo/gui-core'
5
+ import { useEvent } from '@hanzo/gui-core'
6
+ import { FloatingOverrideContext } from '@hanzo/gui-floating'
7
+ import { getSize } from '@hanzo/gui-get-token'
8
+ import { withStaticProperties } from '@hanzo/gui-helpers'
9
9
  import type {
10
10
  PopoverAnchorProps,
11
11
  PopoverContentProps,
12
12
  PopoverTriggerProps,
13
- } from '@hanzogui/popover'
13
+ } from '@hanzo/gui-popover'
14
14
  import {
15
15
  PopoverAnchor,
16
16
  PopoverArrow,
@@ -18,10 +18,10 @@ import {
18
18
  PopoverContextProvider,
19
19
  PopoverTrigger,
20
20
  useFloatingContext,
21
- } from '@hanzogui/popover'
22
- import type { PopperArrowProps, PopperProps } from '@hanzogui/popper'
23
- import { Popper, PopperContentFrame } from '@hanzogui/popper'
24
- import { useControllableState } from '@hanzogui/use-controllable-state'
21
+ } from '@hanzo/gui-popover'
22
+ import type { PopperArrowProps, PopperProps } from '@hanzo/gui-popper'
23
+ import { Popper, PopperContentFrame } from '@hanzo/gui-popper'
24
+ import { useControllableState } from '@hanzo/gui-use-controllable-state'
25
25
  import * as React from 'react'
26
26
 
27
27
  const TOOLTIP_SCOPE = ''
@@ -1,6 +1,6 @@
1
- import { getSpace } from '@hanzogui/get-token'
2
- import type { SizableStackProps } from '@hanzogui/stacks'
3
- import { Paragraph } from '@hanzogui/text'
1
+ import { getSpace } from '@hanzo/gui-get-token'
2
+ import type { SizableStackProps } from '@hanzo/gui-stacks'
3
+ import { Paragraph } from '@hanzo/gui-text'
4
4
  import * as React from 'react'
5
5
 
6
6
  import type { TooltipProps } from './Tooltip'