react-generic-dummy 0.0.10 → 0.0.12
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/index.d.ts +1 -1
- package/package.json +3 -9
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Mapping } from 'clientnode/type';
|
|
2
2
|
import { FunctionComponent, ReactElement, MutableRefObject } from 'react';
|
|
3
|
-
export
|
|
3
|
+
export type Props = Mapping<unknown> & {
|
|
4
4
|
children?: ReactElement;
|
|
5
5
|
};
|
|
6
6
|
export declare const reference: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-generic-dummy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Dummy react component.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dummy",
|
|
@@ -43,9 +43,6 @@
|
|
|
43
43
|
"watch": "weboptimizer build --watch"
|
|
44
44
|
},
|
|
45
45
|
"runkitExample": "require('@babel/runtime/package.json')\n\nglobalThis.window = globalThis\n\nconst {Dummy} = require('react-generic-dummy')\n\nDummy.isDummy",
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"@types/webpack": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz"
|
|
48
|
-
},
|
|
49
46
|
"devDependencies": {
|
|
50
47
|
"@babel/eslint-parser": "*",
|
|
51
48
|
"@babel/preset-react": "*",
|
|
@@ -98,11 +95,8 @@
|
|
|
98
95
|
}
|
|
99
96
|
},
|
|
100
97
|
"engines": {
|
|
101
|
-
"node": ">=
|
|
102
|
-
"npm": ">=
|
|
103
|
-
},
|
|
104
|
-
"resolutions": {
|
|
105
|
-
"@types/webpack": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz"
|
|
98
|
+
"node": ">=19",
|
|
99
|
+
"npm": ">=8"
|
|
106
100
|
},
|
|
107
101
|
"sideEffects": false,
|
|
108
102
|
"documentationWebsite": {
|