@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.
- package/dist/Alert/Alert.d.ts +2 -2
- package/dist/Alert/index.js +1 -1
- package/dist/Checkbox/index.js +2 -2
- package/dist/Chip/Chip.d.ts +1 -1
- package/dist/Collapsible/index.js +1 -1
- package/dist/Counter/index.js +1 -1
- package/dist/DatePicker/index.js +1 -1
- package/dist/DrawerDatePicker/index.js +7 -7
- package/dist/Icon/icons/index.js +1 -1
- package/dist/Icon/index.js +1 -1
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/LandingPage/WhiteBusiness/WhiteBusinessPage.d.ts +9 -0
- package/dist/LandingPage/WhiteBusiness/components/CheckingCounterparty.d.ts +2 -0
- package/dist/LandingPage/WhiteBusiness/components/Consultation.d.ts +2 -0
- package/dist/LandingPage/WhiteBusiness/components/Hero.d.ts +16 -0
- package/dist/LandingPage/WhiteBusiness/components/PageNavbar.d.ts +7 -0
- package/dist/LandingPage/WhiteBusiness/components/ProgressBarWidget.d.ts +15 -0
- package/dist/LandingPage/WhiteBusiness/components/ReliabilityIndicators.d.ts +2 -0
- package/dist/LandingPage/WhiteBusiness/components/index.d.ts +6 -0
- package/dist/LandingPage/WhiteBusiness/components/index.js +262 -0
- package/dist/LandingPage/WhiteBusiness/components/style.d.ts +2 -0
- package/dist/LandingPage/index.d.ts +1 -0
- package/dist/LandingPage/index.js +262 -0
- package/dist/Loading/index.js +1 -1
- package/dist/PDFViewer/index.js +12 -12
- package/dist/Page/index.js +1 -1
- package/dist/Select/SelectDrawer/index.js +1 -1
- package/dist/Select/components/index.js +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Stepper/index.js +1 -1
- package/dist/Tabs/Tabs.d.ts +11 -1
- package/dist/Tabs/index.js +35 -15
- package/dist/Toaster/index.js +1 -1
- package/dist/assets/css/global.css +1 -1
- package/dist/assets/images/icons/banks/sprite.svg +1 -1
- package/dist/assets/images/icons/other/icon-contact.svg +1 -0
- package/dist/assets/images/src/assets/images/icons/banks/sprite.svg +1 -1
- package/dist/assets/images/src/assets/images/icons/other/icon-contact.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/bg-good.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/bg-risk.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/bg-warning.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/icon-check-circle-solid.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/icon-info-solid.svg +1 -0
- package/dist/assets/images/src/assets/images/white-business/icon-warning.svg +1 -0
- package/dist/assets/images/white-business/bg-good.svg +1 -0
- package/dist/assets/images/white-business/bg-risk.svg +1 -0
- package/dist/assets/images/white-business/bg-warning.svg +1 -0
- package/dist/assets/images/white-business/icon-check-circle-solid.svg +1 -0
- package/dist/assets/images/white-business/icon-info-solid.svg +1 -0
- package/dist/assets/images/white-business/icon-warning.svg +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +103 -69
- 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" | "
|
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?: "
|
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" | "
|
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?: "
|
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,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,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';
|