@huin-core/react-select 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +75 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # `react-select`
2
+
3
+ ## Installation
4
+
5
+ ```sh
6
+ $ yarn add @huin-core/react-select
7
+ # or
8
+ $ npm install @huin-core/react-select
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ View docs [here](https://huinhub.com/primitives/docs/components/select).
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@huin-core/react-select",
3
+ "version": "1.0.1",
4
+ "license": "MIT",
5
+ "exports": {
6
+ ".": {
7
+ "import": {
8
+ "types": "./dist/index.d.mts",
9
+ "default": "./dist/index.mjs"
10
+ },
11
+ "require": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ }
15
+ }
16
+ },
17
+ "source": "./src/index.ts",
18
+ "main": "./dist/index.js",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "clean": "rm -rf dist",
28
+ "version": "yarn version"
29
+ },
30
+ "dependencies": {
31
+ "@huin-core/number": "workspace:*",
32
+ "@huin-core/primitive": "workspace:*",
33
+ "@huin-core/react-collection": "workspace:*",
34
+ "@huin-core/react-compose-refs": "workspace:*",
35
+ "@huin-core/react-context": "workspace:*",
36
+ "@huin-core/react-direction": "workspace:*",
37
+ "@huin-core/react-dismissable-layer": "workspace:*",
38
+ "@huin-core/react-focus-guards": "workspace:*",
39
+ "@huin-core/react-focus-scope": "workspace:*",
40
+ "@huin-core/react-id": "workspace:*",
41
+ "@huin-core/react-popper": "workspace:*",
42
+ "@huin-core/react-portal": "workspace:*",
43
+ "@huin-core/react-primitive": "workspace:*",
44
+ "@huin-core/react-slot": "workspace:*",
45
+ "@huin-core/react-use-callback-ref": "workspace:*",
46
+ "@huin-core/react-use-controllable-state": "workspace:*",
47
+ "@huin-core/react-use-layout-effect": "workspace:*",
48
+ "@huin-core/react-use-previous": "workspace:*",
49
+ "@huin-core/react-visually-hidden": "workspace:*",
50
+ "aria-hidden": "^1.1.1",
51
+ "react-remove-scroll": "2.5.7"
52
+ },
53
+ "peerDependencies": {
54
+ "@types/react": "*",
55
+ "@types/react-dom": "*",
56
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
57
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
58
+ },
59
+ "peerDependenciesMeta": {
60
+ "@types/react": {
61
+ "optional": true
62
+ },
63
+ "@types/react-dom": {
64
+ "optional": true
65
+ }
66
+ },
67
+ "homepage": "https://huinhub.com/primitives",
68
+ "repository": {
69
+ "type": "git",
70
+ "url": "git+https://github.com/firatorhan/huin-core.git"
71
+ },
72
+ "bugs": {
73
+ "url": "https://github.com/firatorhan/huin-core/issues"
74
+ }
75
+ }