@modul/mbui 1.0.4-beta-fixesfromdesigners-36fe9850 → 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 (53) hide show
  1. package/dist/Alert/Alert.d.ts +2 -2
  2. package/dist/Alert/index.js +1 -1
  3. package/dist/Checkbox/index.js +2 -2
  4. package/dist/Chip/Chip.d.ts +1 -1
  5. package/dist/Collapsible/index.js +1 -1
  6. package/dist/Counter/index.js +1 -1
  7. package/dist/DatePicker/index.js +1 -1
  8. package/dist/DrawerDatePicker/index.js +7 -7
  9. package/dist/Icon/icons/index.js +1 -1
  10. package/dist/Icon/index.js +1 -1
  11. package/dist/Input-OTP/Input.d.ts +4 -4
  12. package/dist/LandingPage/WhiteBusiness/WhiteBusinessPage.d.ts +9 -0
  13. package/dist/LandingPage/WhiteBusiness/components/CheckingCounterparty.d.ts +2 -0
  14. package/dist/LandingPage/WhiteBusiness/components/Consultation.d.ts +2 -0
  15. package/dist/LandingPage/WhiteBusiness/components/Hero.d.ts +16 -0
  16. package/dist/LandingPage/WhiteBusiness/components/PageNavbar.d.ts +7 -0
  17. package/dist/LandingPage/WhiteBusiness/components/ProgressBarWidget.d.ts +15 -0
  18. package/dist/LandingPage/WhiteBusiness/components/ReliabilityIndicators.d.ts +2 -0
  19. package/dist/LandingPage/WhiteBusiness/components/index.d.ts +6 -0
  20. package/dist/LandingPage/WhiteBusiness/components/index.js +262 -0
  21. package/dist/LandingPage/WhiteBusiness/components/style.d.ts +2 -0
  22. package/dist/LandingPage/index.d.ts +1 -0
  23. package/dist/LandingPage/index.js +262 -0
  24. package/dist/Loading/index.js +1 -1
  25. package/dist/PDFViewer/index.js +12 -12
  26. package/dist/Page/index.js +1 -1
  27. package/dist/Select/SelectDrawer/index.js +1 -1
  28. package/dist/Select/components/index.js +1 -1
  29. package/dist/Select/index.js +1 -1
  30. package/dist/Stepper/index.js +1 -1
  31. package/dist/Tabs/Tabs.d.ts +11 -1
  32. package/dist/Tabs/index.js +35 -15
  33. package/dist/Toaster/index.js +1 -1
  34. package/dist/assets/css/global.css +1 -1
  35. package/dist/assets/images/icons/banks/sprite.svg +1 -1
  36. package/dist/assets/images/icons/other/icon-contact.svg +1 -0
  37. package/dist/assets/images/src/assets/images/icons/banks/sprite.svg +1 -1
  38. package/dist/assets/images/src/assets/images/icons/other/icon-contact.svg +1 -0
  39. package/dist/assets/images/src/assets/images/white-business/bg-good.svg +1 -0
  40. package/dist/assets/images/src/assets/images/white-business/bg-risk.svg +1 -0
  41. package/dist/assets/images/src/assets/images/white-business/bg-warning.svg +1 -0
  42. package/dist/assets/images/src/assets/images/white-business/icon-check-circle-solid.svg +1 -0
  43. package/dist/assets/images/src/assets/images/white-business/icon-info-solid.svg +1 -0
  44. package/dist/assets/images/src/assets/images/white-business/icon-warning.svg +1 -0
  45. package/dist/assets/images/white-business/bg-good.svg +1 -0
  46. package/dist/assets/images/white-business/bg-risk.svg +1 -0
  47. package/dist/assets/images/white-business/bg-warning.svg +1 -0
  48. package/dist/assets/images/white-business/icon-check-circle-solid.svg +1 -0
  49. package/dist/assets/images/white-business/icon-info-solid.svg +1 -0
  50. package/dist/assets/images/white-business/icon-warning.svg +1 -0
  51. package/dist/index.d.ts +2 -1
  52. package/dist/index.js +103 -69
  53. package/package.json +1 -1
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
- declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
2
+ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "textAlign" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
3
3
  value?: string;
4
4
  onChange?: (newValue: string) => unknown;
5
5
  maxLength: number;
6
- textAlign?: "center" | "left" | "right";
6
+ textAlign?: "left" | "right" | "center";
7
7
  onComplete?: (...args: any[]) => unknown;
8
8
  pushPasswordManagerStrategy?: "none" | "increase-width";
9
9
  containerClassName?: string;
@@ -11,11 +11,11 @@ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputH
11
11
  } & {
12
12
  render: (props: import("input-otp").RenderProps) => React.ReactNode;
13
13
  children?: never;
14
- } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
14
+ } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "textAlign" | "maxLength" | "onComplete" | "pushPasswordManagerStrategy" | "containerClassName" | "noScriptCSSFallback"> & {
15
15
  value?: string;
16
16
  onChange?: (newValue: string) => unknown;
17
17
  maxLength: number;
18
- textAlign?: "center" | "left" | "right";
18
+ textAlign?: "left" | "right" | "center";
19
19
  onComplete?: (...args: any[]) => unknown;
20
20
  pushPasswordManagerStrategy?: "none" | "increase-width";
21
21
  containerClassName?: string;
@@ -0,0 +1,9 @@
1
+ import { FC, ReactNode } from 'react';
2
+ import { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation } from './components';
3
+ import { ProgressBarWidget } from './components/ProgressBarWidget';
4
+ interface IProps {
5
+ children?: ReactNode;
6
+ className?: string;
7
+ }
8
+ declare const WhiteBusinessPage: FC<IProps>;
9
+ export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget };
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const CheckingCounterparty: () => React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const Consultation: () => React.JSX.Element;
@@ -0,0 +1,16 @@
1
+ import { FC } from 'react';
2
+ import { TStatus } from './ProgressBarWidget';
3
+ interface IProps {
4
+ level?: any;
5
+ status: TStatus;
6
+ value: number;
7
+ description: string;
8
+ date: string;
9
+ }
10
+ export declare const progressColor: {
11
+ Ok: string;
12
+ Norm: string;
13
+ Fiasko: string;
14
+ };
15
+ export declare const Hero: FC<IProps>;
16
+ export {};
@@ -0,0 +1,7 @@
1
+ import { FC, ReactNode } from 'react';
2
+ interface IProps {
3
+ className?: string;
4
+ children: ReactNode;
5
+ }
6
+ export declare const PageNavbar: FC<IProps>;
7
+ 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,2 @@
1
+ import React from 'react';
2
+ export declare const ReliabilityIndicators: () => React.JSX.Element;
@@ -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';