@bcgov-sso/common-react-components 1.6.0 → 1.7.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/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Alert/Alert.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Alert/Alert.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const Button: (props: _button_inc_component_library_Button.Props) => JSX
|
|
|
26
26
|
declare type Variant = 'danger' | 'success';
|
|
27
27
|
interface Props {
|
|
28
28
|
variant?: Variant;
|
|
29
|
+
content?: string;
|
|
29
30
|
[key: string]: any;
|
|
30
31
|
}
|
|
31
32
|
declare const Alert: (props: Props) => JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcgov-sso/common-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "common react components",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -62,6 +62,8 @@
|
|
|
62
62
|
"storybook-addon-designs": "^6.2.0",
|
|
63
63
|
"ts-loader": "^9.2.6",
|
|
64
64
|
"typescript": "^4.5.2",
|
|
65
|
-
"webpack-cli": "^4.9.1"
|
|
65
|
+
"webpack-cli": "^4.9.1",
|
|
66
|
+
"react": "17.0.2",
|
|
67
|
+
"react-dom": "17.0.2"
|
|
66
68
|
}
|
|
67
69
|
}
|