@zykj2024/much-library 1.1.9-beta.2 → 1.1.9
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.
@@ -187,6 +187,6 @@ export interface McContainerRef<T = any> {
|
|
187
187
|
resetQueryParams: () => void;
|
188
188
|
}
|
189
189
|
declare const McContainer: <T>(props: McContainerProps<T> & {
|
190
|
-
ref?: React.ForwardedRef<McContainerRef<T
|
190
|
+
ref?: React.ForwardedRef<McContainerRef<T> | undefined>;
|
191
191
|
}) => JSX.Element;
|
192
192
|
export default McContainer;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zykj2024/much-library",
|
3
|
-
"version": "1.1.9
|
3
|
+
"version": "1.1.9",
|
4
4
|
"description": "react library",
|
5
5
|
"license": "MIT",
|
6
6
|
"module": "dist/index.js",
|
@@ -22,6 +22,7 @@
|
|
22
22
|
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
23
23
|
"prepare": "husky install && dumi setup",
|
24
24
|
"prepublishOnly": "father doctor && npm run build",
|
25
|
+
"publish": "npm publish",
|
25
26
|
"publish-dev": "npm publish --tag beta",
|
26
27
|
"start": "npm run dev"
|
27
28
|
},
|