@telegraph/select 0.0.29 → 0.0.34

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 +29 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @telegraph/select
2
2
 
3
+ ## 0.0.34
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`a21c8d7`](https://github.com/knocklabs/telegraph/commit/a21c8d75b02c6bd90dfc6c286f6c6bf972d95a70)]:
8
+ - @telegraph/combobox@0.0.72
9
+
10
+ ## 0.0.33
11
+
12
+ ### Patch Changes
13
+
14
+ - [#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
15
+
16
+ - Updated dependencies [[`552fb82`](https://github.com/knocklabs/telegraph/commit/552fb82a33203c87e58715b4a52ea0c360999636)]:
17
+ - @telegraph/combobox@0.0.71
18
+ - @telegraph/helpers@0.0.11
19
+
20
+ ## 0.0.32
21
+
22
+ ### Patch Changes
23
+
24
+ - [#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
25
+
26
+ - [#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
27
+
28
+ - Updated dependencies [[`916d37c`](https://github.com/knocklabs/telegraph/commit/916d37cc78433eeb70a93e041b18f951d2d25bcd), [`734b5c5`](https://github.com/knocklabs/telegraph/commit/734b5c5ee2ac0484a09f534148a4ca1cf23fb3d0)]:
29
+ - @telegraph/combobox@0.0.70
30
+ - @telegraph/helpers@0.0.10
31
+
3
32
  ## 0.0.29
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/select",
3
- "version": "0.0.29",
3
+ "version": "0.0.34",
4
4
  "description": "A simple select component built on top of @telegraph/combobox",
5
5
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/select",
6
6
  "author": "@knocklabs",
@@ -30,24 +30,24 @@
30
30
  "preview": "vite preview"
31
31
  },
32
32
  "dependencies": {
33
- "@telegraph/combobox": "0.0.67",
34
- "@telegraph/helpers": "0.0.7"
33
+ "@telegraph/combobox": "0.0.72",
34
+ "@telegraph/helpers": "0.0.11"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@knocklabs/eslint-config": "^0.0.3",
38
38
  "@knocklabs/typescript-config": "^0.0.2",
39
- "@telegraph/postcss-config": "^0.0.21",
40
- "@telegraph/prettier-config": "^0.0.6",
41
- "@telegraph/vite-config": "^0.0.13",
42
- "@types/react": "^18.2.48",
39
+ "@telegraph/postcss-config": "^0.0.23",
40
+ "@telegraph/prettier-config": "^0.0.7",
41
+ "@telegraph/vite-config": "^0.0.14",
42
+ "@types/react": "^18.3.18",
43
43
  "eslint": "^8.56.0",
44
- "react": "^18.2.0",
44
+ "react": "^18.3.1",
45
45
  "react-dom": "^18.3.1",
46
- "typescript": "^5.5.4",
46
+ "typescript": "^5.7.3",
47
47
  "vite": "^6.0.11"
48
48
  },
49
49
  "peerDependencies": {
50
- "react": "^18.2.0",
51
- "react-dom": "^18.2.0"
50
+ "react": "^18.0.0 || ^19.0.0",
51
+ "react-dom": "^18.0.0 || ^19.0.0"
52
52
  }
53
53
  }