@modul/mbui 1.0.4-beta-fixesfromdesigners-36fe9850 → 1.0.4-beta-whitebusinesslanding-5ba9b5c1
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 +12 -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 +7 -0
- package/dist/LandingPage/WhiteBusiness/components/PageNavbar.d.ts +7 -0
- package/dist/LandingPage/WhiteBusiness/components/ReliabilityIndicators.d.ts +2 -0
- package/dist/LandingPage/WhiteBusiness/components/style.d.ts +2 -0
- package/dist/LandingPage/index.d.ts +1 -0
- package/dist/LandingPage/index.js +266 -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 +38 -15
- package/dist/Toaster/index.js +1 -1
- package/dist/assets/css/global.css +1 -1
- package/dist/assets/images/icons/other/icon-contact.svg +1 -0
- package/dist/assets/images/src/assets/images/icons/other/icon-contact.svg +1 -0
- package/dist/index.js +40 -17
- 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,12 @@
|
|
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';
|
7
|
+
interface IProps {
|
8
|
+
children?: ReactNode;
|
9
|
+
className?: string;
|
10
|
+
}
|
11
|
+
declare const WhiteBusinessPage: FC<IProps>;
|
12
|
+
export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation };
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export declare const LightBlockCSS = "\n\tbg-light\n\tpx-[--page-content-padd-x]\n\tpy-6\n\trounded-[16px]\n";
|
2
|
+
export declare const PageNavbarCSS = "\n\tfixed\n\tcontainer\n\tflex\n\tjustify-between\n\tpx-[--page-content-padd-x]\n\tpt-[env(safe-area-inset-top, 10px)]\n\th-[--page-header-height]\n\tw-full\n\tbackdrop-blur-sm\n";
|
@@ -0,0 +1 @@
|
|
1
|
+
export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, } from './WhiteBusiness/WhiteBusinessPage';
|