@redhq/ui 3.0.0 → 3.0.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.
@@ -6,6 +6,7 @@ import { default as CalendarTable } from './CalendarTable';
6
6
  import { default as CalendarTableHead } from './CalendarTableHead';
7
7
  import { default as CalendarTableBody } from './CalendarTableBody';
8
8
  import { default as CalendarTableRow } from './CalendarTableRow';
9
+ import { default as CalendarTableRowWrapper } from './CalendarTableRowWrapper';
9
10
  import { default as CalendarTableCell } from './CalendarTableCell';
10
11
  import { default as CalendarTableCellText } from './CalendarTableCellText';
11
12
  import { default as CalendarTableCellDate } from './CalendarTableCellDate';
@@ -13,7 +14,7 @@ import { default as CalendarTableCellItem } from './CalendarTableCellItem';
13
14
  import { default as CalendarFooter } from './CalendarFooter';
14
15
  import { default as CalendarFooterLogo } from './CalendarFooterLogo';
15
16
  import { default as CalendarFooterText } from './CalendarFooterText';
16
- import { default as CalendarGhostFooter } from './CalendarGhostFooter';
17
+ import { default as CalendarSpacer } from './CalendarSpacer';
17
18
  export default Calendar;
18
19
  declare function Calendar({ id, mode, children }: {
19
20
  id?: string;
@@ -29,6 +30,7 @@ declare namespace Calendar {
29
30
  export { CalendarTableHead as Head };
30
31
  export { CalendarTableBody as Body };
31
32
  export { CalendarTableRow as Row };
33
+ export { CalendarTableRowWrapper as RowWrapper };
32
34
  export { CalendarTableCell as Cell };
33
35
  export { CalendarTableCellText as CellText };
34
36
  export { CalendarTableCellDate as CellDate };
@@ -36,7 +38,7 @@ declare namespace Calendar {
36
38
  export { CalendarFooter as Footer };
37
39
  export { CalendarFooterLogo as FooterLogo };
38
40
  export { CalendarFooterText as FooterText };
39
- export { CalendarGhostFooter as GhostFooter };
41
+ export { CalendarSpacer as Spacer };
40
42
  export namespace propTypes {
41
43
  let id: any;
42
44
  let mode: any;
@@ -1,10 +1,10 @@
1
- export default CalendarGhostFooter;
2
- declare function CalendarGhostFooter({ style, children, ...rest }: {
1
+ export default CalendarSpacer;
2
+ declare function CalendarSpacer({ style, children, ...rest }: {
3
3
  [x: string]: any;
4
4
  style?: {};
5
5
  children: any;
6
6
  }): import("react/jsx-runtime").JSX.Element;
7
- declare namespace CalendarGhostFooter {
7
+ declare namespace CalendarSpacer {
8
8
  let displayName: string;
9
9
  namespace propTypes {
10
10
  let style: any;
@@ -1,14 +1,12 @@
1
1
  export default CalendarTableCell;
2
- declare function CalendarTableCell({ style, children, as, ...rest }: {
2
+ declare function CalendarTableCell({ style, children, ...rest }: {
3
3
  [x: string]: any;
4
4
  style?: {};
5
5
  children: any;
6
- as?: string;
7
6
  }): import("react/jsx-runtime").JSX.Element;
8
7
  declare namespace CalendarTableCell {
9
8
  let displayName: string;
10
9
  namespace propTypes {
11
- let as: any;
12
10
  let style: any;
13
11
  let children: any;
14
12
  }
@@ -0,0 +1,13 @@
1
+ export default CalendarTableRowWrapper;
2
+ declare function CalendarTableRowWrapper({ style, children, ...rest }: {
3
+ [x: string]: any;
4
+ style?: {};
5
+ children: any;
6
+ }): import("react/jsx-runtime").JSX.Element;
7
+ declare namespace CalendarTableRowWrapper {
8
+ let displayName: string;
9
+ namespace propTypes {
10
+ let style: any;
11
+ let children: any;
12
+ }
13
+ }