@performant-software/shared-components 0.5.17 → 0.5.18-beta.0
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/package.json +3 -3
- package/src/index.js +1 -0
- package/src/types/Referrable.js +7 -0
- package/types/index.js.flow +1 -0
- package/types/types/Referrable.js.flow +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@performant-software/shared-components",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.18-beta.0",
|
|
4
4
|
"description": "A package of shared, framework agnostic, components.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"react-dom": ">= 16.13.1 < 18.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@performant-software/webpack-config": "^0.
|
|
32
|
+
"@performant-software/webpack-config": "^1.0.0",
|
|
33
33
|
"react": "^17.0.2",
|
|
34
34
|
"react-dom": "^17.0.2"
|
|
35
35
|
}
|
|
36
|
-
}
|
|
36
|
+
}
|
package/src/index.js
CHANGED
|
@@ -39,3 +39,4 @@ export { default as Timer } from './utils/Timer';
|
|
|
39
39
|
// Types
|
|
40
40
|
export type { EditContainerProps as EditModalProps } from './components/EditContainer'; // Backwards compatability
|
|
41
41
|
export type { EditContainerProps } from './components/EditContainer';
|
|
42
|
+
export type { Referrable } from './types/Referrable';
|
package/types/index.js.flow
CHANGED
|
@@ -39,3 +39,4 @@ export { default as Timer } from './utils/Timer';
|
|
|
39
39
|
// Types
|
|
40
40
|
export type { EditContainerProps as EditModalProps } from './components/EditContainer'; // Backwards compatability
|
|
41
41
|
export type { EditContainerProps } from './components/EditContainer';
|
|
42
|
+
export type { Referrable } from './types/Referrable';
|