@modul/mbui 1.1.6-beta-dev-937afffc → 1.1.6-beta-dev-f5abed3e
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/LandingPage/WhiteBusiness/WhiteBusinessPage.d.ts +1 -1
- package/dist/LandingPage/WhiteBusiness/components/ProgressBarWidget.d.ts +2 -1
- package/dist/LandingPage/WhiteBusiness/components/StickyFooter.d.ts +5 -0
- package/dist/LandingPage/WhiteBusiness/components/index.d.ts +1 -0
- package/dist/LandingPage/WhiteBusiness/components/index.js +65 -75
- package/dist/LandingPage/index.d.ts +1 -1
- package/dist/LandingPage/index.js +65 -75
- package/dist/Select/SelectDrawer/index.js +18 -39
- package/dist/Select/index.js +28 -49
- package/dist/Select/types/types.d.ts +29 -30
- package/dist/assets/css/global.css +1 -1
- package/dist/assets/images/emblem-white.svg +1 -1
- package/dist/assets/images/emblem.svg +1 -1
- package/dist/assets/images/logo-white.svg +1 -1
- package/dist/assets/images/logo.svg +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +65 -75
- package/package.json +1 -1
|
@@ -1,4 +1,32 @@
|
|
|
1
|
-
import { FC, PointerEvent } from
|
|
1
|
+
import { FC, PointerEvent } from 'react';
|
|
2
|
+
export interface ISelectOption {
|
|
3
|
+
className?: string | undefined;
|
|
4
|
+
leftIcon?: React.ReactElement;
|
|
5
|
+
leftIconCSS?: string | undefined;
|
|
6
|
+
label: string;
|
|
7
|
+
labelCSS?: string | undefined;
|
|
8
|
+
rightLabel?: React.ReactNode;
|
|
9
|
+
secondLabel?: React.ReactNode;
|
|
10
|
+
secondLabelCSS?: string | undefined;
|
|
11
|
+
value: string;
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}
|
|
14
|
+
export interface IOptionWrapperProps {
|
|
15
|
+
component: React.FC<ISelectOption>;
|
|
16
|
+
optionWrapperCSS?: string;
|
|
17
|
+
option: ISelectOption;
|
|
18
|
+
isChecked?: boolean;
|
|
19
|
+
onSelect: (option: ISelectOption) => void;
|
|
20
|
+
multiple?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface ISelectValue {
|
|
23
|
+
prefixLabel?: string;
|
|
24
|
+
isClearable?: boolean;
|
|
25
|
+
onClear?: (evt: PointerEvent<HTMLButtonElement>) => void;
|
|
26
|
+
multiple?: boolean;
|
|
27
|
+
selected: ISelectOption[];
|
|
28
|
+
placeholder?: string | undefined;
|
|
29
|
+
}
|
|
2
30
|
export interface ISelectDrawerProps {
|
|
3
31
|
options?: ISelectOption[];
|
|
4
32
|
onChange?: (value: ISelectOption | ISelectOption[] | null) => void;
|
|
@@ -34,32 +62,3 @@ export interface IValueWrapper {
|
|
|
34
62
|
valueProps: ISelectValue;
|
|
35
63
|
valueComponent?: FC<ISelectValue>;
|
|
36
64
|
}
|
|
37
|
-
export interface ISelectOption {
|
|
38
|
-
className?: string | undefined;
|
|
39
|
-
leftIcon?: React.ReactElement;
|
|
40
|
-
leftIconCSS?: string | undefined;
|
|
41
|
-
label: string;
|
|
42
|
-
labelCSS?: string | undefined;
|
|
43
|
-
rightLabel?: React.ReactNode;
|
|
44
|
-
secondLabel?: React.ReactNode;
|
|
45
|
-
secondLabelCSS?: string | undefined;
|
|
46
|
-
value: string;
|
|
47
|
-
[key: string]: any;
|
|
48
|
-
}
|
|
49
|
-
export interface IOptionWrapperProps {
|
|
50
|
-
component: React.FC<ISelectOption>;
|
|
51
|
-
optionWrapperCSS?: string;
|
|
52
|
-
option: ISelectOption;
|
|
53
|
-
isChecked?: boolean;
|
|
54
|
-
onSelect: (option: ISelectOption) => void;
|
|
55
|
-
multiple?: boolean;
|
|
56
|
-
}
|
|
57
|
-
export interface ISelectValue {
|
|
58
|
-
prefixLabel?: string;
|
|
59
|
-
isClearable?: boolean;
|
|
60
|
-
onClear?: (evt: PointerEvent<HTMLButtonElement>) => void;
|
|
61
|
-
multiple?: boolean;
|
|
62
|
-
selected?: ISelectOption[];
|
|
63
|
-
placeholder?: string | undefined;
|
|
64
|
-
variant?: 'primary' | 'default';
|
|
65
|
-
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@tailwind base;@tailwind components;@tailwind utilities;@layer base{@font-face{font-display:swap;font-family:Roboto;font-stretch:75% 100%;font-style:normal;font-weight:100 900;src:url(../fonts/Roboto.woff2) format("woff2")}@font-face{font-display:swap;font-family:Roboto;font-stretch:75% 100%;font-style:italic;font-weight:100 900;src:url(../fonts/Roboto-Italic.woff2) format("woff2")}:root{font-family:Roboto,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif;--cl-white:#fff;--cl-dark:#000;--cl-blue-1:#253c77;--cl-blue-2:#4971d0;--cl-blue-3:#6b91eb;--cl-blue-4:#81a5f9;--cl-blue-5:#a7c0fb;--cl-blue-6:#d2ddfa;--cl-blue-7:#f2f6ff;--cl-graphite-1:#222733;--cl-graphite-2:#464c59;--cl-graphite-3:#777c87;--cl-graphite-4:#9b9fa8;--cl-graphite-5:#cbcdd1;--cl-graphite-6:#e6e7e9;--cl-graphite-7:#f5f5f6;--cl-green-1:#5e8c00;--cl-green-2:#6ca300;--cl-green-3:#88bd1f;--cl-green-4:#a4d73e;--cl-green-5:#c0eb69;--cl-green-6:#d4f296;--cl-green-7:#eefad4;--cl-yellow-1:#b79310;--cl-yellow-2:#d2aa0f;--cl-yellow-3:#e8c113;--cl-yellow-4:#efd04e;--cl-yellow-5:#f5de88;--cl-yellow-6:#fae6aa;--cl-yellow-7:#fcf2ce;--cl-orange-1:#c33918;--cl-orange-2:#e35f19;--cl-orange-3:#f27922;--cl-orange-4:#f99631;--cl-orange-5:#fbb26a;--cl-orange-6:#fdcf93;--cl-orange-7:#ffe8c4;--cl-red-1:#a61d1d;--cl-red-2:#bd2c2c;--cl-red-3:#d43d3d;--cl-red-4:#e36868;--cl-red-5:#f19494;--cl-red-6:#f9c1bd;--cl-red-7:#ffe9e9;--base:var(--cl-graphite-1);--primary:var(--cl-blue-2);--primary-light:var(--cl-blue-7);--success:var(--cl-green-3);--success-light:var(--cl-green-7);--light:var(--cl-graphite-3);--dark:var(--cl-graphite-2);--disabled:var(--cl-graphite-4);--bg-light:var(--cl-graphite-7);--warning:var(--cl-orange-2);--warning-light:var(--cl-yellow-7);--critical:var(--cl-red-3);--critical-light:var(--cl-red-7);--page-bg:var(--cl-white);--page-header-height:48px;--page-container-width:600px;--page-content-padd-x:20px;--page-content-padd-y:16px;--page-content-padd:var(--page-content-padd-y) var(--page-content-padd-x);--page-content-padding-x:20px;--page-content-padding-y:16px;--page-base-padding-x:20px;--page-base-padding-y:16px;--btn-primary:var(--cl-white);--btn-primary-bg:var(--cl-blue-2);--btn-primary-hover-bg:var(--cl-blue-3);--btn-primary-focus-bg:var(--cl-blue-1);--btn-primary-active-bg:var(--cl-blue-1);--btn-primary-disabled-bg:var(--cl-blue-5);--btn-secondary:var(--cl-blue-2);--btn-secondary-disabled:var(--cl-blue-5);--btn-secondary-bg:var(--cl-graphite-7);--btn-secondary-hover-bg:transparent;--btn-secondary-focus-bg:#e4e5e7;--btn-secondary-active-bg:var(--cl-graphite-6);--btn-ghost:var(--cl-blue-2);--btn-ghost-hover:var(--cl-blue-3);--btn-ghost-focus:var(--cl-blue-3);--btn-ghost-active:var(--cl-blue-1);--btn-ghost-disabled:var(--cl-blue-5);--btn-outline:var(--cl-graphite-2);--btn-outline-disabled:var(--cl-graphite-4);--btn-outline-border:var(--cl-graphite-5);--btn-outline-hover-border:var(--cl-graphite-6);--btn-outline-focus-border:var(--cl-graphite-4);--btn-outline-active-border:var(--cl-graphite-4);--btn-outline-disabled-border:var(--cl-graphite-5);--btn-txt-primary:var(--cl-blue-2);--btn-txt-primary-hover:var(--cl-blue-3);--btn-txt-primary-focus:var(--cl-blue-3);--btn-txt-primary-active:var(--cl-blue-1);--btn-widget-bg:var(--page-bg);--btn-widget-icon:var(--primary);--border-color:var(--cl-graphite-5);--border-radius-sm:4px;--border-radius-md:8px;--shadow-sm:0px 4px 14px 0px rgba(34,39,51,.05);--shadow-md:0px 6px 16px 0px rgba(34,39,51,.12);--shadow-lg:0px 8px 32px 0px rgba(34,39,51,.24);--progress-height:4px;--progress-bg:var(--cl-graphite-6);--tabs-bg:var(--cl-graphite-7);--tabs-round:4px;--tab-bg:var(--cl-white);--tab-border:var(--cl-graphite-6);--tabs-height:32px;--tab-height:30px;--drawer-overlay-bg:rgba(34,39,51,.5);--drawer-shadow:0 0 20px 44px rgba(36,48,54,.12);--payments-list-item-hover:var(--cl-graphite-7);--payments-list-item-focus:var(--cl-graphite-7);--payments-list-item-active:var(--cl-graphite-6);--radio-border-color-default:var(--cl-graphite-5);--radio-border-color-checked:var(--primary);--radio-border-width-default:2px;--radio-border-width-checked:6px;--radio-bg-disabled:var(--cl-graphite-6);--dialog-bg:var(--cl-white);--skeleton-bg:var(--cl-graphite-6);--input-otp-slot-border-bottom-color:var(--base);--bottom-navbar-height:48px}}@layer utilities{.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}}@layer components{.banks-logo-rounded{background-image:url(../images/icons/banks/unknown.svg);background-position:50%;background-repeat:no-repeat;background-size:contain}.scroll-shadow{background:linear-gradient(#fff 30%,hsla(0,0%,100%,0)) top,linear-gradient(hsla(0,0%,100%,0),#fff 70%) bottom,linear-gradient(#f7f7f8,hsla(0,0%,100%,0)) top,linear-gradient(hsla(0,0%,100%,0),#f7f7f8) bottom;background-attachment:local,local,scroll,scroll;background-color:#fff;background-repeat:no-repeat;background-size:100% 40px,100% 40px,100% 14px,100% 14px;overflow:auto}input[type=password]{font-family:monospace;font-size:16px;letter-spacing:2px}.form-input{@apply px-4 w-full h-12 border-input border file:border-0 file:bg-transparent file:font-medium file:text-sm font-normal leading-[1.17] rounded-md bg-page transition placeholder:text-light focus:ring-0 focus-visible:border-primary focus-visible:ring-1 focus-visible:ring-primary disabled:cursor-not-allowed disabled:bg-light disabled:text-dark}.form-input-error{@apply border-critical bg-critical-light focus-visible:border-critical focus-visible:ring-critical}}
|
|
1
|
+
@tailwind base;@tailwind components;@tailwind utilities;@layer base{@font-face{font-display:swap;font-family:Roboto;font-stretch:75% 100%;font-style:normal;font-weight:100 900;src:url(../fonts/Roboto.woff2) format("woff2")}@font-face{font-display:swap;font-family:Roboto;font-stretch:75% 100%;font-style:italic;font-weight:100 900;src:url(../fonts/Roboto-Italic.woff2) format("woff2")}:root{font-family:Roboto,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif;--cl-white:#fff;--cl-dark:#000;--cl-blue-1:#253c77;--cl-blue-2:#4971d0;--cl-blue-3:#6b91eb;--cl-blue-4:#81a5f9;--cl-blue-5:#a7c0fb;--cl-blue-6:#d2ddfa;--cl-blue-7:#f2f6ff;--cl-graphite-1:#222733;--cl-graphite-2:#464c59;--cl-graphite-3:#777c87;--cl-graphite-4:#9b9fa8;--cl-graphite-5:#cbcdd1;--cl-graphite-6:#e6e7e9;--cl-graphite-7:#f5f5f6;--cl-green-1:#5e8c00;--cl-green-2:#6ca300;--cl-green-3:#88bd1f;--cl-green-4:#a4d73e;--cl-green-5:#c0eb69;--cl-green-6:#d4f296;--cl-green-7:#eefad4;--cl-yellow-1:#b79310;--cl-yellow-2:#d2aa0f;--cl-yellow-3:#e8c113;--cl-yellow-4:#efd04e;--cl-yellow-5:#f5de88;--cl-yellow-6:#fae6aa;--cl-yellow-7:#fcf2ce;--cl-orange-1:#c33918;--cl-orange-2:#e35f19;--cl-orange-3:#f27922;--cl-orange-4:#f99631;--cl-orange-5:#fbb26a;--cl-orange-6:#fdcf93;--cl-orange-7:#ffe8c4;--cl-red-1:#a61d1d;--cl-red-2:#bd2c2c;--cl-red-3:#d43d3d;--cl-red-4:#e36868;--cl-red-5:#f19494;--cl-red-6:#f9c1bd;--cl-red-7:#ffe9e9;--base:var(--cl-graphite-1);--primary:var(--cl-blue-2);--primary-light:var(--cl-blue-7);--success:var(--cl-green-3);--success-light:var(--cl-green-7);--light:var(--cl-graphite-3);--dark:var(--cl-graphite-2);--disabled:var(--cl-graphite-4);--bg-light:var(--cl-graphite-7);--warning:var(--cl-orange-2);--warning-light:var(--cl-yellow-7);--critical:var(--cl-red-3);--critical-light:var(--cl-red-7);--page-bg:var(--cl-white);--page-header-height:48px;--page-container-width:600px;--page-content-padd-x:20px;--page-content-padd-y:16px;--page-content-padd:var(--page-content-padd-y) var(--page-content-padd-x);--page-content-padding-x:20px;--page-content-padding-y:16px;--page-base-padding-x:20px;--page-base-padding-y:16px;--btn-primary:var(--cl-white);--btn-primary-bg:var(--cl-blue-2);--btn-primary-hover-bg:var(--cl-blue-3);--btn-primary-focus-bg:var(--cl-blue-1);--btn-primary-active-bg:var(--cl-blue-1);--btn-primary-disabled-bg:var(--cl-blue-5);--btn-secondary:var(--cl-blue-2);--btn-secondary-disabled:var(--cl-blue-5);--btn-secondary-bg:var(--cl-graphite-7);--btn-secondary-hover-bg:transparent;--btn-secondary-focus-bg:#e4e5e7;--btn-secondary-active-bg:var(--cl-graphite-6);--btn-ghost:var(--cl-blue-2);--btn-ghost-hover:var(--cl-blue-3);--btn-ghost-focus:var(--cl-blue-3);--btn-ghost-active:var(--cl-blue-1);--btn-ghost-disabled:var(--cl-blue-5);--btn-outline:var(--cl-graphite-2);--btn-outline-disabled:var(--cl-graphite-4);--btn-outline-border:var(--cl-graphite-5);--btn-outline-hover-border:var(--cl-graphite-6);--btn-outline-focus-border:var(--cl-graphite-4);--btn-outline-active-border:var(--cl-graphite-4);--btn-outline-disabled-border:var(--cl-graphite-5);--btn-txt-primary:var(--cl-blue-2);--btn-txt-primary-hover:var(--cl-blue-3);--btn-txt-primary-focus:var(--cl-blue-3);--btn-txt-primary-active:var(--cl-blue-1);--btn-widget-bg:var(--page-bg);--btn-widget-icon:var(--primary);--border-color:var(--cl-graphite-5);--border-radius-sm:4px;--border-radius-md:8px;--shadow-sm:0px 4px 14px 0px rgba(34,39,51,.05);--shadow-md:0px 6px 16px 0px rgba(34,39,51,.12);--shadow-lg:0px 8px 32px 0px rgba(34,39,51,.24);--progress-height:4px;--progress-bg:var(--cl-graphite-6);--tabs-bg:var(--cl-graphite-7);--tabs-round:4px;--tab-bg:var(--cl-white);--tab-border:var(--cl-graphite-6);--tabs-height:32px;--tab-height:30px;--drawer-overlay-bg:rgba(34,39,51,.5);--drawer-shadow:0 0 20px 44px rgba(36,48,54,.12);--payments-list-item-hover:var(--cl-graphite-7);--payments-list-item-focus:var(--cl-graphite-7);--payments-list-item-active:var(--cl-graphite-6);--radio-border-color-default:var(--cl-graphite-5);--radio-border-color-checked:var(--primary);--radio-border-width-default:2px;--radio-border-width-checked:6px;--radio-bg-disabled:var(--cl-graphite-6);--dialog-bg:var(--cl-white);--skeleton-bg:var(--cl-graphite-6);--input-otp-slot-border-bottom-color:var(--base);--bottom-navbar-height:48px}}@layer utilities{.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}}@layer components{.banks-logo-rounded{background-image:url(../images/icons/banks/unknown.svg);background-position:50%;background-repeat:no-repeat;background-size:contain}.scroll-shadow{background:linear-gradient(#fff 30%,hsla(0,0%,100%,0)) top,linear-gradient(hsla(0,0%,100%,0),#fff 70%) bottom,linear-gradient(#f7f7f8,hsla(0,0%,100%,0)) top,linear-gradient(hsla(0,0%,100%,0),#f7f7f8) bottom;background-attachment:local,local,scroll,scroll;background-color:#fff;background-repeat:no-repeat;background-size:100% 40px,100% 40px,100% 14px,100% 14px;overflow:auto}input[type=password]{font-family:monospace;font-size:16px;letter-spacing:2px}.form-input{@apply px-4 w-full h-12 border-input border file:border-0 file:bg-transparent file:font-medium file:text-sm font-normal leading-[1.17] rounded-md bg-page transition placeholder:text-light focus:ring-0 focus-visible:border-primary focus-visible:ring-1 focus-visible:ring-primary disabled:cursor-not-allowed disabled:bg-light disabled:text-dark}.form-input-error{@apply border-critical bg-critical-light focus-visible:border-critical focus-visible:ring-critical}.hero-bg{background-position:calc(50% - 30px) -180px;background-repeat:no-repeat;background-size:600px 864px;position:relative}.hero-ok-bg{background-image:url(../images/white-business/bg-good.svg)}.hero-norm-bg{background-image:url(../images/white-business/bg-warning.svg)}.hero-fiasko-bg{background-image:url(../images/white-business/bg-risk.svg)}.hero-neutral-bg,.hero-unknown-bg{background-image:url(../images/white-business/bg-unknown.svg)}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="61" fill="none"><
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="61" fill="none"><g fill="#fff"><path d="M48.8 60.6H11.2C5 60.6 0 55.6 0 49.4V11.8C0 5.6 5 .6 11.2.6h37.6C55 .6 60 5.6 60 11.8v37.5c0 6.3-5 11.3-11.2 11.3M11.2 1.8a10 10 0 0 0-10 10v37.5a10 10 0 0 0 10 10h37.6a10 10 0 0 0 10-10V11.8a10 10 0 0 0-10-10z"/><path fill-rule="evenodd" d="M15 15.6h6v6h6v6h6v6h-6v6h-6v6h-6v-12h6v-6h-6zm18 24v-6h6v6zm6 0h6v6h-6zm-6 0h-6v6h6zm6-6v-6h-6v-6h-6v-6h12v6h6v12z" clip-rule="evenodd"/></g></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="61" fill="none"><path fill="#
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="61" fill="none"><path fill="#072da0" d="M.6 11.8C.6 6 5.4 1.2 11.2 1.2h37.6c5.8 0 10.6 4.8 10.6 10.6v37.5c0 5.9-4.8 10.7-10.6 10.7H11.2C5.4 60 .6 55.2.6 49.3z"/><path fill="#f8faff" d="M48.8 60.6H11.2C5 60.6 0 55.6 0 49.4V11.8C0 5.6 5 .6 11.2.6h37.6C55 .6 60 5.6 60 11.8v37.5c0 6.3-5 11.3-11.2 11.3M11.2 1.8a10 10 0 0 0-10 10v37.5a10 10 0 0 0 10 10h37.6a10 10 0 0 0 10-10V11.8a10 10 0 0 0-10-10z"/><path fill="#fff" fill-rule="evenodd" d="M15 15.6h6v6h6v6h6v6h-6v6h-6v6h-6v-12h6v-6h-6zm18 24v-6h6v6zm6 0h6v6h-6zm-6 0h-6v6h6zm6-6v-6h-6v-6h-6v-6h12v6h6v12z" clip-rule="evenodd"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="246" height="61" fill="none"><g fill="#fff" clip-path="url(#a)"><path d="M48.75 60.6h-37.5C5.05 60.6 0 55.55 0 49.35v-37.5C0 5.65 5.05.6 11.25.6h37.5C54.95.6 60 5.65 60 11.85v37.5c0 6.2-5.05 11.25-11.25 11.25M11.25 1.8C5.71 1.8 1.2 6.31 1.2 11.85v37.5c0 5.54 4.51 10.05 10.05 10.05h37.5c5.54 0 10.05-4.5 10.05-10.05v-37.5c0-5.54-4.51-10.05-10.05-10.05z"/><path fill-rule="evenodd" d="M15 15.6h6v6h6v6h6v6h-6v6h-6v6h-6v-12h6v-6h-6zm18 24v-6h6v6zm6 0h6v6h-6zm-6 0h-6v6h6zm6-6v-6h-6v-6h-6v-6h12v6h6v12z" clip-rule="evenodd"/><path d="m92.4 39.62-.05-10.75-5.3 8.86h-1.83l-5.3-8.65v10.54H76V21.64h3.46l6.73 11.15 6.62-11.15h3.46l.05 17.98zm14.31.2c-1.47 0-2.75-.3-3.92-.91a6.85 6.85 0 0 1-3.67-6.22 6.7 6.7 0 0 1 3.67-6.16 8.4 8.4 0 0 1 3.92-.92c1.48 0 2.75.3 3.93.92a6.73 6.73 0 0 1 3.66 6.16 6.8 6.8 0 0 1-3.66 6.22 7.7 7.7 0 0 1-3.93.91m0-3.26a3.5 3.5 0 0 0 2.55-1.02 3.94 3.94 0 0 0 1.02-2.8c0-1.17-.36-2.09-1.02-2.75a3.27 3.27 0 0 0-2.55-1.07c-1.02 0-1.88.36-2.54 1.07a3.8 3.8 0 0 0-1.02 2.75c0 1.17.35 2.09 1.02 2.8a3.5 3.5 0 0 0 2.54 1.02m25.47-.2v6.26h-3.72v-2.95h-9.78v2.95h-3.72v-6.26h.57c.86 0 1.42-.51 1.78-1.53.3-.97.5-2.4.6-4.23l.21-4.79h12.07v10.55zm-10.65-5.45a19.6 19.6 0 0 1-.35 3.46 3.8 3.8 0 0 1-.92 2.04h5.86v-7.23h-4.53zm26.8-5.1-6.27 14.67a7 7 0 0 1-2.4 3.37c-.91.66-2.03.96-3.35.96-.72 0-1.43-.1-2.14-.35-.72-.2-1.28-.51-1.73-.92l1.47-2.85a3.5 3.5 0 0 0 2.3.92c.55 0 1.01-.16 1.32-.41.35-.26.66-.72.91-1.33l.06-.15-6.01-13.9h4.12l3.87 9.37 3.92-9.38zm13.95 13.81h-4.02V29.08h-4.38l-.16 2.44a25.5 25.5 0 0 1-.5 4.53 5.76 5.76 0 0 1-1.33 2.8 3.37 3.37 0 0 1-2.6 1.02c-.56 0-1.27-.1-2.08-.3l.2-3.31c.25.05.46.05.61.05.61 0 1.07-.2 1.32-.66.31-.46.51-1.02.62-1.69.1-.66.2-1.57.25-2.7l.2-5.55h11.87v13.9Zm11.1-9.37c1.79 0 3.21.4 4.13 1.22.97.76 1.43 1.88 1.43 3.36 0 1.53-.56 2.7-1.63 3.57-1.07.81-2.55 1.27-4.49 1.27l-6.97-.05v-13.8h3.97v4.43zm-.86 6.52c.76 0 1.38-.1 1.78-.46.41-.36.61-.87.61-1.53s-.2-1.17-.6-1.48c-.41-.3-.98-.46-1.8-.5l-2.59-.06v4.03zm16.71-9.99c1.32 0 2.5.26 3.46.82a5.13 5.13 0 0 1 2.3 2.24c.55.97.8 2.09.8 3.41a6.29 6.29 0 0 1-3.66 5.86 8.86 8.86 0 0 1-3.92.81c-2.45 0-4.33-.76-5.7-2.29-1.38-1.58-2.04-3.82-2.04-6.82 0-2.75.6-5 1.78-6.62 1.22-1.69 3.1-2.76 5.6-3.26l6.57-1.33.56 3.46-5.8 1.18c-1.58.3-2.75.81-3.52 1.52a4.5 4.5 0 0 0-1.32 3.06 5.6 5.6 0 0 1 2.14-1.48c.86-.4 1.78-.56 2.75-.56m-.92 10.04c1.02 0 1.83-.36 2.5-1.02.6-.66.96-1.53.96-2.55s-.3-1.88-.97-2.5a3.35 3.35 0 0 0-2.5-.91c-1.06 0-1.88.3-2.54.92a3.38 3.38 0 0 0-.97 2.5c0 1.01.31 1.88.97 2.54a3.3 3.3 0 0 0 2.55 1.02m15.18-11.21c2.14 0 3.77.51 4.94 1.53s1.73 2.55 1.73 4.58v7.9h-3.77v-1.68c-.76 1.27-2.14 1.93-4.23 1.93-1.07 0-1.98-.2-2.8-.56a4.3 4.3 0 0 1-1.78-1.47 3.9 3.9 0 0 1-.61-2.14c0-1.28.46-2.3 1.42-3 .97-.72 2.5-1.13 4.49-1.13h3.2c0-.87-.25-1.53-.81-1.99-.5-.45-1.32-.7-2.4-.7-.7 0-1.47.1-2.18.35-.72.2-1.33.5-1.79.91l-1.42-2.8c.76-.5 1.68-.91 2.7-1.22 1.07-.36 2.19-.5 3.3-.5Zm-.36 11.56c.66 0 1.27-.15 1.83-.46.51-.3.92-.81 1.13-1.42v-1.43h-2.76c-1.63 0-2.5.56-2.5 1.63 0 .51.21.92.62 1.22.46.31 1.02.46 1.68.46m10.24-11.36h3.97v5.4h6.01v-5.4h4.03v13.8h-4.03v-5.14h-6v5.15h-3.98v-13.8Zm23.73 8.61h-2.09v5.25H231v-13.8h4.02v5.34h2.15l3.76-5.34h4.28l-4.84 6.62 5.2 7.18h-4.74l-3.72-5.25Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 .6h246v60H0z"/></clipPath></defs></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="246" height="61" fill="none"><clipPath id="a"><path d="M0 .6h246v60H0z"/></clipPath><g clip-path="url(#a)"><path fill="#072da0" d="M.6 11.85C.6 5.97 5.37 1.2 11.25 1.2h37.5c5.88 0 10.65 4.77 10.65 10.65v37.5C59.4 55.23 54.63 60 48.75 60h-37.5A10.65 10.65 0 0 1 .6 49.35z"/><path fill="#f8faff" d="M48.75 60.6h-37.5C5.05 60.6 0 55.55 0 49.35v-37.5C0 5.65 5.05.6 11.25.6h37.5C54.95.6 60 5.65 60 11.85v37.5c0 6.2-5.05 11.25-11.25 11.25M11.25 1.8C5.71 1.8 1.2 6.31 1.2 11.85v37.5c0 5.54 4.51 10.05 10.05 10.05h37.5c5.54 0 10.05-4.5 10.05-10.05v-37.5c0-5.54-4.51-10.05-10.05-10.05z"/><path fill="#fff" fill-rule="evenodd" d="M15 15.6h6v6h6v6h6v6h-6v6h-6v6h-6v-12h6v-6h-6zm18 24v-6h6v6zm6 0h6v6h-6zm-6 0h-6v6h6zm6-6v-6h-6v-6h-6v-6h12v6h6v12z" clip-rule="evenodd"/><path fill="#072da0" d="m92.4 39.62-.05-10.75-5.3 8.86h-1.83l-5.3-8.65v10.54H76V21.64h3.46l6.73 11.15 6.62-11.15h3.46l.05 17.98zm14.31.2c-1.47 0-2.75-.3-3.92-.91a6.85 6.85 0 0 1-3.67-6.22 6.7 6.7 0 0 1 3.67-6.16 8.4 8.4 0 0 1 3.92-.92c1.48 0 2.75.3 3.93.92a6.73 6.73 0 0 1 3.66 6.16 6.8 6.8 0 0 1-3.66 6.22 7.7 7.7 0 0 1-3.93.91m0-3.26a3.5 3.5 0 0 0 2.55-1.02 3.94 3.94 0 0 0 1.02-2.8c0-1.17-.36-2.09-1.02-2.75a3.27 3.27 0 0 0-2.55-1.07c-1.02 0-1.88.36-2.54 1.07a3.8 3.8 0 0 0-1.02 2.75c0 1.17.35 2.09 1.02 2.8a3.5 3.5 0 0 0 2.54 1.02m25.47-.2v6.26h-3.72v-2.95h-9.78v2.95h-3.72v-6.26h.57c.86 0 1.42-.51 1.78-1.53.3-.97.5-2.4.6-4.23l.21-4.79h12.07v10.55zm-10.65-5.45a19.6 19.6 0 0 1-.35 3.46 3.8 3.8 0 0 1-.92 2.04h5.86v-7.23h-4.53zm26.8-5.1-6.27 14.67a7 7 0 0 1-2.4 3.37c-.91.66-2.03.96-3.35.96-.72 0-1.43-.1-2.14-.35-.72-.2-1.28-.51-1.73-.92l1.47-2.85a3.5 3.5 0 0 0 2.3.92c.55 0 1.01-.16 1.32-.41.35-.26.66-.72.91-1.33l.06-.15-6.01-13.9h4.12l3.87 9.37 3.92-9.38zm13.95 13.81h-4.02V29.08h-4.38l-.16 2.44a25.5 25.5 0 0 1-.5 4.53 5.76 5.76 0 0 1-1.33 2.8 3.37 3.37 0 0 1-2.6 1.02c-.56 0-1.27-.1-2.08-.3l.2-3.31c.25.05.46.05.61.05.61 0 1.07-.2 1.32-.66.31-.46.51-1.02.62-1.69.1-.66.2-1.57.25-2.7l.2-5.55h11.87v13.9zm11.1-9.37c1.79 0 3.21.4 4.13 1.22.97.76 1.43 1.88 1.43 3.36 0 1.53-.56 2.7-1.63 3.57-1.07.81-2.55 1.27-4.49 1.27l-6.97-.05v-13.8h3.97v4.43zm-.86 6.52c.76 0 1.38-.1 1.78-.46.41-.36.61-.87.61-1.53s-.2-1.17-.6-1.48c-.41-.3-.98-.46-1.8-.5l-2.59-.06v4.03zm16.71-9.99c1.32 0 2.5.26 3.46.82a5.13 5.13 0 0 1 2.3 2.24c.55.97.8 2.09.8 3.41a6.29 6.29 0 0 1-3.66 5.86 8.86 8.86 0 0 1-3.92.81c-2.45 0-4.33-.76-5.7-2.29-1.38-1.58-2.04-3.82-2.04-6.82 0-2.75.6-5 1.78-6.62 1.22-1.69 3.1-2.76 5.6-3.26l6.57-1.33.56 3.46-5.8 1.18c-1.58.3-2.75.81-3.52 1.52a4.5 4.5 0 0 0-1.32 3.06 5.6 5.6 0 0 1 2.14-1.48c.86-.4 1.78-.56 2.75-.56m-.92 10.04c1.02 0 1.83-.36 2.5-1.02.6-.66.96-1.53.96-2.55s-.3-1.88-.97-2.5a3.35 3.35 0 0 0-2.5-.91c-1.06 0-1.88.3-2.54.92a3.38 3.38 0 0 0-.97 2.5c0 1.01.31 1.88.97 2.54a3.3 3.3 0 0 0 2.55 1.02m15.18-11.21c2.14 0 3.77.51 4.94 1.53s1.73 2.55 1.73 4.58v7.9h-3.77v-1.68c-.76 1.27-2.14 1.93-4.23 1.93-1.07 0-1.98-.2-2.8-.56a4.3 4.3 0 0 1-1.78-1.47 3.9 3.9 0 0 1-.61-2.14c0-1.28.46-2.3 1.42-3 .97-.72 2.5-1.13 4.49-1.13h3.2c0-.87-.25-1.53-.81-1.99-.5-.45-1.32-.7-2.4-.7-.7 0-1.47.1-2.18.35-.72.2-1.33.5-1.79.91l-1.42-2.8c.76-.5 1.68-.91 2.7-1.22 1.07-.36 2.19-.5 3.3-.5zm-.36 11.56c.66 0 1.27-.15 1.83-.46.51-.3.92-.81 1.13-1.42v-1.43h-2.76c-1.63 0-2.5.56-2.5 1.63 0 .51.21.92.62 1.22.46.31 1.02.46 1.68.46m10.24-11.36h3.97v5.4h6.01v-5.4h4.03v13.8h-4.03v-5.14h-6v5.15h-3.98v-13.8zm23.73 8.61h-2.09v5.25H231v-13.8h4.02v5.34h2.15l3.76-5.34h4.28l-4.84 6.62 5.2 7.18h-4.74l-3.72-5.25z"/></g></svg>
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { BottomNavigation, BottomNavigationList, BottomNavigationListItem, Botto
|
|
|
7
7
|
import * as Icon from './Icon';
|
|
8
8
|
import { Collapsible, CollapsibleTrigger, CollapsibleContent } from './Collapsible';
|
|
9
9
|
import { AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem } from './Collapsible';
|
|
10
|
-
import { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem } from './LandingPage';
|
|
10
|
+
import { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem, StickyFooter } from './LandingPage';
|
|
11
11
|
import { Button, buttonVariants, ButtonWidget } from './Button';
|
|
12
12
|
import { Audio } from './Audio';
|
|
13
13
|
import { cn } from './@/lib/utils';
|
|
@@ -47,4 +47,4 @@ import { Counter } from './Counter';
|
|
|
47
47
|
import { IconFile } from './IconFile';
|
|
48
48
|
import { PDFViewer } from './PDFViewer';
|
|
49
49
|
import { Stepper } from './Stepper';
|
|
50
|
-
export { Autocomplete, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, InputNumericFormat, InputMaskWidget, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, DrawerDescription, BottomNavigation, BottomNavigationList, BottomNavigationListItem, BottomNavigationLink, Page, Chip, Progress, Alert, Switch, Label, Textarea, SelectAccountCard, SelectAccount, SelectAsync, Select, Form, FormLabel, FormField, FormItem, FormControl, FormDescription, FormMessage, Calendar, DatePicker, InputMask, AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, MessageTyping, FavoritePaymentsList, FavoritePaymentsItem, FarvoritePaymentDescription, farvoriteLinkClasses, Badge, badgeVariants, DigitKeyPad, ButtonWidget, Toaster, toast, Checkbox, Swipe2Show, Skeleton, Carousel, CarouselContent, CarouselItem, type CarouselApi, BankCardImage, RadioGroup, RadioGroupItem, Loading, SelectDrawer, type ISelectValue, type ISelectOption, Option, SelectAccountValue, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, IconFile, PDFViewer, Stepper, WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem, };
|
|
50
|
+
export { Autocomplete, Tabs, Slider, Popover, Logo, InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator, Collapsible, CollapsibleTrigger, CollapsibleContent, AccountCollapsible, AccountCollapsibleHeader, AccountCollapsibleTrigger, AccountCollapsibleContent, AccountCollapsibleContentItem, Button, buttonVariants, InputField, InputLabel, InputNumericFormat, InputMaskWidget, Audio, cn, Icon, Drawer, DrawerTrigger, DrawerTitle, DrawerClose, DrawerContent, DrawerDescription, BottomNavigation, BottomNavigationList, BottomNavigationListItem, BottomNavigationLink, Page, Chip, Progress, Alert, Switch, Label, Textarea, SelectAccountCard, SelectAccount, SelectAsync, Select, Form, FormLabel, FormField, FormItem, FormControl, FormDescription, FormMessage, Calendar, DatePicker, InputMask, AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, MessageTyping, FavoritePaymentsList, FavoritePaymentsItem, FarvoritePaymentDescription, farvoriteLinkClasses, Badge, badgeVariants, DigitKeyPad, ButtonWidget, Toaster, toast, Checkbox, Swipe2Show, Skeleton, Carousel, CarouselContent, CarouselItem, type CarouselApi, BankCardImage, RadioGroup, RadioGroupItem, Loading, SelectDrawer, type ISelectValue, type ISelectOption, Option, SelectAccountValue, BankLogosRounded, BankCardIcon, CurrencyFlag, DrawerDatePicker, CurrencySymbol, Counter, IconFile, PDFViewer, Stepper, WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem, StickyFooter, };
|