@modul/mbui 1.0.4-beta-whitebusinesslanding-5ba9b5c1 → 1.0.4-beta-whitebusinesslanding-c58b386d

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.
Files changed (27) hide show
  1. package/dist/LandingPage/WhiteBusiness/WhiteBusinessPage.d.ts +3 -6
  2. package/dist/LandingPage/WhiteBusiness/components/Hero.d.ts +10 -1
  3. package/dist/LandingPage/WhiteBusiness/components/ProgressBarWidget.d.ts +15 -0
  4. package/dist/LandingPage/WhiteBusiness/components/index.d.ts +6 -0
  5. package/dist/LandingPage/WhiteBusiness/components/index.js +262 -0
  6. package/dist/LandingPage/WhiteBusiness/components/style.d.ts +1 -1
  7. package/dist/LandingPage/index.d.ts +1 -1
  8. package/dist/LandingPage/index.js +6 -10
  9. package/dist/Tabs/Tabs.d.ts +1 -1
  10. package/dist/Tabs/index.js +2 -5
  11. package/dist/assets/images/icons/banks/sprite.svg +1 -1
  12. package/dist/assets/images/src/assets/images/icons/banks/sprite.svg +1 -1
  13. package/dist/assets/images/src/assets/images/white-business/bg-good.svg +1 -0
  14. package/dist/assets/images/src/assets/images/white-business/bg-risk.svg +1 -0
  15. package/dist/assets/images/src/assets/images/white-business/bg-warning.svg +1 -0
  16. package/dist/assets/images/src/assets/images/white-business/icon-check-circle-solid.svg +1 -0
  17. package/dist/assets/images/src/assets/images/white-business/icon-info-solid.svg +1 -0
  18. package/dist/assets/images/src/assets/images/white-business/icon-warning.svg +1 -0
  19. package/dist/assets/images/white-business/bg-good.svg +1 -0
  20. package/dist/assets/images/white-business/bg-risk.svg +1 -0
  21. package/dist/assets/images/white-business/bg-warning.svg +1 -0
  22. package/dist/assets/images/white-business/icon-check-circle-solid.svg +1 -0
  23. package/dist/assets/images/white-business/icon-info-solid.svg +1 -0
  24. package/dist/assets/images/white-business/icon-warning.svg +1 -0
  25. package/dist/index.d.ts +2 -1
  26. package/dist/index.js +72 -61
  27. package/package.json +1 -1
@@ -1,12 +1,9 @@
1
1
  import { FC, ReactNode } from 'react';
2
- import { PageNavbar } from './components/PageNavbar';
3
- import { Hero } from './components/Hero';
4
- import { CheckingCounterparty } from './components/CheckingCounterparty';
5
- import { ReliabilityIndicators } from './components/ReliabilityIndicators';
6
- import { Consultation } from './components/Consultation';
2
+ import { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation } from './components';
3
+ import { ProgressBarWidget } from './components/ProgressBarWidget';
7
4
  interface IProps {
8
5
  children?: ReactNode;
9
6
  className?: string;
10
7
  }
11
8
  declare const WhiteBusinessPage: FC<IProps>;
12
- export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation };
9
+ export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget };
@@ -1,7 +1,16 @@
1
1
  import { FC } from 'react';
2
+ import { TStatus } from './ProgressBarWidget';
2
3
  interface IProps {
3
- value?: any;
4
4
  level?: any;
5
+ status: TStatus;
6
+ value: number;
7
+ description: string;
8
+ date: string;
5
9
  }
10
+ export declare const progressColor: {
11
+ Ok: string;
12
+ Norm: string;
13
+ Fiasko: string;
14
+ };
6
15
  export declare const Hero: FC<IProps>;
7
16
  export {};
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ export declare type TStatus = 'Ok' | 'Norm' | 'Fiasko' | 'Unknown';
3
+ interface IProgressBarWidget {
4
+ status: TStatus;
5
+ title: string;
6
+ description: string;
7
+ value: number;
8
+ content: {
9
+ title: string;
10
+ text: string;
11
+ caption: string;
12
+ };
13
+ }
14
+ export declare const ProgressBarWidget: React.FC<IProgressBarWidget>;
15
+ export {};
@@ -0,0 +1,6 @@
1
+ export { Hero } from './Hero';
2
+ export { PageNavbar } from './PageNavbar';
3
+ export { CheckingCounterparty } from './CheckingCounterparty';
4
+ export { ReliabilityIndicators } from './ReliabilityIndicators';
5
+ export { Consultation } from './Consultation';
6
+ export * from './style';