@cclr/react 0.1.28 → 0.1.30
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/lib/cjs/index.js +1 -800
- package/lib/esm/index.js +1 -787
- package/lib/type/index.d.ts +2 -1
- package/package.json +9 -9
package/lib/type/index.d.ts
CHANGED
|
@@ -132,4 +132,5 @@ interface ICommonUiProps {
|
|
|
132
132
|
children?: React.ReactNode;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
export { AdaptDomChildren,
|
|
135
|
+
export { AdaptDomChildren, createCtx, useCallbackRef, useControl, useDebounceFn, useEventListenerMultiple, useEventListenerMultipleRef, useOnceFun, useRefPro, useThrottleFn, useUpdate, useUuid };
|
|
136
|
+
export type { ICommonUiProps, IControlProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cclr/react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "react 相关功能",
|
|
5
5
|
"author": "cclr <18843152354@163.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"test": "vitest",
|
|
25
25
|
"relese": "npm run test && npm publish",
|
|
26
|
-
"build": "
|
|
26
|
+
"build": "drr build",
|
|
27
27
|
"g:test": "vitest run",
|
|
28
|
-
"g:build": "
|
|
28
|
+
"g:build": "drr build"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "d5460c73e4a84dfb5c6239ebc8cc05574d70b18b",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@cclr/front": "0.1.
|
|
33
|
-
"@cclr/lang": "0.1.
|
|
34
|
-
"@cclr/model": "0.1.
|
|
35
|
-
"@cclr/utils": "0.1.
|
|
32
|
+
"@cclr/front": "0.1.30",
|
|
33
|
+
"@cclr/lang": "0.1.30",
|
|
34
|
+
"@cclr/model": "0.1.30",
|
|
35
|
+
"@cclr/utils": "0.1.30"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/react": "^18.3.
|
|
38
|
+
"@types/react": "^18.3.26",
|
|
39
39
|
"react": "^18.3.1",
|
|
40
40
|
"react-dom": "^18.3.1"
|
|
41
41
|
}
|