@modul/mbui 1.1.6-beta-dev-66cce32f → 1.1.6-beta-dev-a0ddb49b

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.
@@ -5,4 +5,4 @@ interface IProps {
5
5
  }
6
6
  declare const WhiteBusinessPage: FC<IProps>;
7
7
  export { WhiteBusinessPage };
8
- export { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem } from './components';
8
+ export { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem, StickyFooter } from './components';
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { FC, ReactNode } from 'react';
2
2
  export declare type TStatus = 'Ok' | 'Norm' | 'Fiasko' | 'Unknown' | 'Neutral';
3
3
  interface IProgressBarWidget {
4
4
  status: TStatus;
@@ -7,10 +7,11 @@ interface IProgressBarWidget {
7
7
  value: number | boolean;
8
8
  content: {
9
9
  title: string;
10
- text: string;
10
+ text?: string | ReactNode;
11
11
  caption: string;
12
12
  };
13
- blocked: boolean;
13
+ blocked?: boolean;
14
+ onSubscribe?: () => void;
14
15
  }
15
- export declare const ProgressBarWidget: React.FC<IProgressBarWidget>;
16
+ export declare const ProgressBarWidget: FC<IProgressBarWidget>;
16
17
  export {};
@@ -0,0 +1,5 @@
1
+ import React, { FC } from 'react';
2
+ declare const StickyFooter: FC<{
3
+ children: React.ReactNode;
4
+ }>;
5
+ export { StickyFooter };
@@ -5,4 +5,5 @@ export { ReliabilityIndicators } from './ReliabilityIndicators';
5
5
  export { Consultation } from './Consultation';
6
6
  export { ProgressBarWidget } from './ProgressBarWidget';
7
7
  export { List, ListItem } from './List';
8
+ export { StickyFooter } from './StickyFooter';
8
9
  export * from './style';