@telegraph/tooltip 0.0.36 → 0.0.40

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 (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @telegraph/tooltip
2
2
 
3
+ ## 0.0.40
4
+
5
+ ### Patch Changes
6
+
7
+ - [#384](https://github.com/knocklabs/telegraph/pull/384) [`552fb82`](https://github.com/knocklabs/telegraph/commit/552fb82a33203c87e58715b4a52ea0c360999636) Thanks [@dependabot](https://github.com/apps/dependabot)! - upgrade typescript dep
8
+
9
+ - Updated dependencies [[`552fb82`](https://github.com/knocklabs/telegraph/commit/552fb82a33203c87e58715b4a52ea0c360999636)]:
10
+ - @telegraph/appearance@0.0.8
11
+ - @telegraph/typography@0.1.12
12
+ - @telegraph/helpers@0.0.11
13
+ - @telegraph/layout@0.1.12
14
+ - @telegraph/motion@0.0.7
15
+
16
+ ## 0.0.39
17
+
18
+ ### Patch Changes
19
+
20
+ - [#408](https://github.com/knocklabs/telegraph/pull/408) [`916d37c`](https://github.com/knocklabs/telegraph/commit/916d37cc78433eeb70a93e041b18f951d2d25bcd) Thanks [@MikeCarbone](https://github.com/MikeCarbone)! - chore: minor upgrades to react, fixes peer dependency issues
21
+
22
+ - [#409](https://github.com/knocklabs/telegraph/pull/409) [`734b5c5`](https://github.com/knocklabs/telegraph/commit/734b5c5ee2ac0484a09f534148a4ca1cf23fb3d0) Thanks [@MikeCarbone](https://github.com/MikeCarbone)! - chore: adds React 19 as a peer dependency
23
+
24
+ - Updated dependencies [[`916d37c`](https://github.com/knocklabs/telegraph/commit/916d37cc78433eeb70a93e041b18f951d2d25bcd), [`734b5c5`](https://github.com/knocklabs/telegraph/commit/734b5c5ee2ac0484a09f534148a4ca1cf23fb3d0)]:
25
+ - @telegraph/appearance@0.0.7
26
+ - @telegraph/helpers@0.0.10
27
+ - @telegraph/layout@0.1.11
28
+ - @telegraph/motion@0.0.6
29
+ - @telegraph/typography@0.1.11
30
+
3
31
  ## 0.0.36
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/tooltip",
3
- "version": "0.0.36",
3
+ "version": "0.0.40",
4
4
  "description": "A simple tooltip component ",
5
5
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/tooltip",
6
6
  "author": "@knocklabs",
@@ -34,27 +34,27 @@
34
34
  "dependencies": {
35
35
  "@radix-ui/react-tooltip": "^1.1.7",
36
36
  "@radix-ui/react-use-controllable-state": "^1.1.0",
37
- "@telegraph/appearance": "^0.0.4",
38
- "@telegraph/helpers": "^0.0.7",
39
- "@telegraph/layout": "^0.1.8",
40
- "@telegraph/motion": "^0.0.3",
41
- "@telegraph/typography": "^0.1.8"
37
+ "@telegraph/appearance": "^0.0.8",
38
+ "@telegraph/helpers": "^0.0.11",
39
+ "@telegraph/layout": "^0.1.12",
40
+ "@telegraph/motion": "^0.0.7",
41
+ "@telegraph/typography": "^0.1.12"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@knocklabs/eslint-config": "^0.0.3",
45
45
  "@knocklabs/typescript-config": "^0.0.2",
46
- "@telegraph/postcss-config": "^0.0.21",
47
- "@telegraph/prettier-config": "^0.0.6",
48
- "@telegraph/vite-config": "^0.0.13",
49
- "@types/react": "^18.2.48",
46
+ "@telegraph/postcss-config": "^0.0.23",
47
+ "@telegraph/prettier-config": "^0.0.7",
48
+ "@telegraph/vite-config": "^0.0.14",
49
+ "@types/react": "^18.3.18",
50
50
  "eslint": "^8.56.0",
51
- "react": "^18.2.0",
51
+ "react": "^18.3.1",
52
52
  "react-dom": "^18.3.1",
53
- "typescript": "^5.5.4",
53
+ "typescript": "^5.7.3",
54
54
  "vite": "^6.0.11"
55
55
  },
56
56
  "peerDependencies": {
57
- "react": "^18.2.0",
58
- "react-dom": "^18.3.1"
57
+ "react": "^18.0.0 || ^19.0.0",
58
+ "react-dom": "^18.0.0 || ^19.0.0"
59
59
  }
60
60
  }