@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.
@@ -16,6 +16,7 @@ export declare const styles: {
16
16
  declare type Variant = 'danger' | 'success';
17
17
  interface Props {
18
18
  variant?: Variant;
19
+ content?: string;
19
20
  [key: string]: any;
20
21
  }
21
22
  declare const Alert: (props: Props) => JSX.Element;
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.6.0",
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
  }