@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.
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
|
-
|
|
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 };
|