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

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.
@@ -1,11 +1,11 @@
1
1
  /// <reference types="react" />
2
- declare function Accordionpanel({ title, allOpen, setAllOpen, children }: any): JSX.Element;
2
+ declare function AccordionPanel({ title, hash, allOpen, setAllOpen, children }: any): JSX.Element;
3
3
  interface Props {
4
4
  children: any;
5
5
  open?: boolean;
6
6
  }
7
7
  declare function Accordion({ children, open }: Props): JSX.Element;
8
8
  declare namespace Accordion {
9
- var Panel: typeof Accordionpanel;
9
+ var Panel: typeof AccordionPanel;
10
10
  }
11
11
  export default Accordion;
@@ -0,0 +1,11 @@
1
+ export declare const TABLE_BACKGROUND_COLOR = "#ededed";
2
+ export declare const TABLE_ROW_ACTIVE_COLOR = "#4950FA";
3
+ export declare const TABLE_ROW_HEIGHT = 40;
4
+ export declare const TABLE_ROW_HEIGHT_MINI = 40;
5
+ export declare const TABLE_ROW_SPACING = 5;
6
+ export declare const TABLE_ROW_BORDER_RADIUS = 6;
7
+ declare const Table: import("styled-components").StyledComponent<"table", any, {
8
+ variant?: string | undefined;
9
+ readOnly?: boolean | undefined;
10
+ }, never>;
11
+ export default Table;
@@ -0,0 +1 @@
1
+ export { default } from './Table';