@bcgov-sso/common-react-components 1.20.2 → 1.20.6

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.
@@ -2,3 +2,4 @@ export { default as Accordion } from './Accordion';
2
2
  export { default as NumberedContents } from './NumberedContents';
3
3
  export { default as Button } from './Button';
4
4
  export { default as Alert } from './Alert';
5
+ export { default as Table } from './Table';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import * as _button_inc_component_library_Button from '@button-inc/component-library/Button';
3
+ import * as styled_components from 'styled-components';
3
4
 
4
5
  declare function AccordionPanel({ title, hash, allOpen, setAllOpen, children }: any): JSX.Element;
5
6
  interface Props$2 {
@@ -32,4 +33,9 @@ interface Props {
32
33
  }
33
34
  declare const Alert: (props: Props) => JSX.Element;
34
35
 
35
- export { Accordion, Alert, Button, NumberedContents };
36
+ declare const Table: styled_components.StyledComponent<"table", any, {
37
+ variant?: string | undefined;
38
+ readOnly?: boolean | undefined;
39
+ }, never>;
40
+
41
+ export { Accordion, Alert, Button, NumberedContents, Table };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcgov-sso/common-react-components",
3
- "version": "1.20.2",
3
+ "version": "1.20.6",
4
4
  "description": "common react components",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",