@hi-ui/check-select 4.0.0-alpha.10
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/LICENSE +21 -0
- package/README.md +11 -0
- package/lib/cjs/CheckSelect.js +309 -0
- package/lib/cjs/CheckSelect.js.map +1 -0
- package/lib/cjs/context.js +33 -0
- package/lib/cjs/context.js.map +1 -0
- package/lib/cjs/hooks/use-search.js +154 -0
- package/lib/cjs/hooks/use-search.js.map +1 -0
- package/lib/cjs/index.js +25 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/cjs/styles/index.scss.js +22 -0
- package/lib/cjs/styles/index.scss.js.map +1 -0
- package/lib/cjs/use-check-select.js +167 -0
- package/lib/cjs/use-check-select.js.map +1 -0
- package/lib/cjs/utils/type-assertion/lib/esm/index.js +42 -0
- package/lib/cjs/utils/type-assertion/lib/esm/index.js.map +1 -0
- package/lib/esm/CheckSelect.js +268 -0
- package/lib/esm/CheckSelect.js.map +1 -0
- package/lib/esm/context.js +25 -0
- package/lib/esm/context.js.map +1 -0
- package/lib/esm/hooks/use-search.js +144 -0
- package/lib/esm/hooks/use-search.js.map +1 -0
- package/lib/esm/index.js +12 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/styles/index.scss.js +17 -0
- package/lib/esm/styles/index.scss.js.map +1 -0
- package/lib/esm/use-check-select.js +144 -0
- package/lib/esm/use-check-select.js.map +1 -0
- package/lib/esm/utils/type-assertion/lib/esm/index.js +33 -0
- package/lib/esm/utils/type-assertion/lib/esm/index.js.map +1 -0
- package/lib/types/CheckSelect.d.ts +80 -0
- package/lib/types/context.d.ts +41 -0
- package/lib/types/hooks/index.d.ts +1 -0
- package/lib/types/hooks/use-search.d.ts +9 -0
- package/lib/types/index.d.ts +3 -0
- package/lib/types/types.d.ts +26 -0
- package/lib/types/use-check-select.d.ts +83 -0
- package/package.json +72 -0
package/package.json
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
{
|
2
|
+
"name": "@hi-ui/check-select",
|
3
|
+
"version": "4.0.0-alpha.10",
|
4
|
+
"description": "A sub-package for @hi-ui/hiui.",
|
5
|
+
"keywords": [],
|
6
|
+
"author": "HIUI <mi-hiui@xiaomi.com>",
|
7
|
+
"homepage": "https://github.com/XiaoMi/hiui/tree/master/packages/ui/check-select#readme",
|
8
|
+
"license": "MIT",
|
9
|
+
"directories": {
|
10
|
+
"lib": "lib",
|
11
|
+
"test": "__tests__"
|
12
|
+
},
|
13
|
+
"files": [
|
14
|
+
"lib"
|
15
|
+
],
|
16
|
+
"main": "lib/cjs/index.js",
|
17
|
+
"module": "lib/esm/index.js",
|
18
|
+
"types": "lib/types/index.d.ts",
|
19
|
+
"typings": "lib/types/index.d.ts",
|
20
|
+
"exports": {
|
21
|
+
".": {
|
22
|
+
"require": "./lib/cjs/index.js",
|
23
|
+
"default": "./lib/esm/index.js"
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"publishConfig": {
|
27
|
+
"access": "public"
|
28
|
+
},
|
29
|
+
"repository": {
|
30
|
+
"type": "git",
|
31
|
+
"url": "git+https://github.com/XiaoMi/hiui.git"
|
32
|
+
},
|
33
|
+
"scripts": {
|
34
|
+
"test": "jest",
|
35
|
+
"clean": "rimraf lib",
|
36
|
+
"prebuild": "yarn clean",
|
37
|
+
"build:esm": "hi-build ./src/index.ts --format esm -d ./lib/esm",
|
38
|
+
"build:cjs": "hi-build ./src/index.ts --format cjs -d ./lib/cjs",
|
39
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir lib/types",
|
40
|
+
"build": "concurrently yarn:build:*"
|
41
|
+
},
|
42
|
+
"bugs": {
|
43
|
+
"url": "https://github.com/XiaoMi/hiui/issues"
|
44
|
+
},
|
45
|
+
"dependencies": {
|
46
|
+
"@hi-ui/checkbox": "^4.0.0-alpha.13",
|
47
|
+
"@hi-ui/classname": "^4.0.0-alpha.2",
|
48
|
+
"@hi-ui/core": "^4.0.0-alpha.6",
|
49
|
+
"@hi-ui/core-css": "^4.0.0-alpha.4",
|
50
|
+
"@hi-ui/env": "^4.0.0-alpha.0",
|
51
|
+
"@hi-ui/icons": "^4.0.0-alpha.11",
|
52
|
+
"@hi-ui/input": "^4.0.0-alpha.15",
|
53
|
+
"@hi-ui/popper": "^4.0.0-alpha.9",
|
54
|
+
"@hi-ui/tag-input": "^4.0.0-alpha.6",
|
55
|
+
"@hi-ui/use-check": "^4.0.0-alpha.9",
|
56
|
+
"@hi-ui/use-children": "^4.0.0-alpha.1",
|
57
|
+
"@hi-ui/use-latest": "^4.0.0-alpha.2",
|
58
|
+
"@hi-ui/use-toggle": "^4.0.0-alpha.4",
|
59
|
+
"@hi-ui/use-uncontrolled-state": "^4.0.0-alpha.7",
|
60
|
+
"rc-virtual-list": "^3.4.1"
|
61
|
+
},
|
62
|
+
"peerDependencies": {
|
63
|
+
"react": "^17.0.1",
|
64
|
+
"react-dom": "^17.0.1"
|
65
|
+
},
|
66
|
+
"devDependencies": {
|
67
|
+
"@hi-ui/hi-build": "^4.0.0-alpha.0",
|
68
|
+
"react": "^17.0.1",
|
69
|
+
"react-dom": "^17.0.1"
|
70
|
+
},
|
71
|
+
"gitHead": "f067ec47048ec498d30cdc0333c598f963a172d1"
|
72
|
+
}
|