@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.
@@ -1,4 +1,32 @@
1
- import { FC, PointerEvent } from "react";
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"><path fill="#fff" d="M48.83 60.6h-37.6A11.21 11.21 0 0 1 0 49.38V11.82C0 5.62 5.02.6 11.24.6h37.53C54.98.6 60 5.61 60 11.82V49.3a11.13 11.13 0 0 1-11.17 11.3M11.24 1.8A10.02 10.02 0 0 0 1.2 11.82V49.3c0 5.58 4.52 10.02 10.04 10.02h37.53c5.58 0 10.04-4.52 10.04-10.02V11.82c0-5.58-4.52-10.02-10.04-10.02z"/><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
+ <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="#0F1A7C" d="M.57 11.82A10.7 10.7 0 0 1 11.24 1.16h37.53a10.7 10.7 0 0 1 10.67 10.66V49.3a10.7 10.7 0 0 1-10.67 10.66H11.24A10.7 10.7 0 0 1 .57 49.3z"/><path fill="#F8FAFF" d="M48.83 60.6h-37.6A11.21 11.21 0 0 1 0 49.38V11.82C0 5.62 5.02.6 11.24.6h37.53C54.98.6 60 5.61 60 11.82V49.3a11.13 11.13 0 0 1-11.17 11.3M11.24 1.8A10.02 10.02 0 0 0 1.2 11.82V49.3c0 5.58 4.52 10.02 10.04 10.02h37.53c5.58 0 10.04-4.52 10.04-10.02V11.82c0-5.58-4.52-10.02-10.04-10.02z"/><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
+ <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="316" 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="m93 39.63-.03-11.18-5.5 9.2h-1.92l-5.5-8.99v10.96H76V20.96h3.58l6.98 11.6 6.88-11.6h3.58l.03 18.67h-4.06Zm10.75-.74a7 7 0 0 1-3.83-6.44 7.07 7.07 0 0 1 3.83-6.44 8.6 8.6 0 0 1 4.07-.95c1.51 0 2.86.31 4.05.95a7.07 7.07 0 0 1 3.82 6.44 7.07 7.07 0 0 1-3.81 6.44c-1.2.63-2.55.95-4.06.95a8.6 8.6 0 0 1-4.07-.95m6.7-3.55a4.04 4.04 0 0 0 1.02-2.89c0-1.2-.34-2.18-1.02-2.9a3.47 3.47 0 0 0-2.63-1.07q-1.605 0-2.64 1.08a4 4 0 0 0-1.04 2.89 4 4 0 0 0 1.04 2.9c.7.71 1.57 1.07 2.64 1.07 1.06 0 1.94-.35 2.63-1.08m23.7.87v6.5h-3.87v-3.08H120.2v3.09h-3.86v-6.5h.58c.9-.02 1.5-.55 1.84-1.58s.55-2.5.65-4.4l.18-4.96h12.51V36.2h2.05Zm-11.32-2.1a4 4 0 0 1-.95 2.1h6.06V28.7h-4.7l-.08 1.83a25 25 0 0 1-.33 3.57Zm28.05-8.83L144.4 40.5c-.66 1.65-1.47 2.81-2.44 3.5a5.96 5.96 0 0 1-3.51 1c-.75 0-1.48-.11-2.22-.34a4.85 4.85 0 0 1-1.78-.96l1.51-2.96a3.52 3.52 0 0 0 2.35.9 2.2 2.2 0 0 0 1.38-.4c.36-.28.68-.74.97-1.38l.05-.13-6.22-14.46h4.3l4.03 9.74 4.05-9.74h4Zm14.48 0v14.35h-4.16V28.69h-4.53l-.13 2.53a26 26 0 0 1-.54 4.7 6.5 6.5 0 0 1-1.38 2.93 3.4 3.4 0 0 1-2.67 1.06c-.6 0-1.33-.1-2.16-.32l.21-3.41.61.05c.62 0 1.1-.22 1.4-.68.31-.45.52-1.03.63-1.73.1-.7.19-1.63.24-2.79l.21-5.76h12.27Zm15.79 5.85c1 .83 1.49 2 1.49 3.51 0 1.58-.55 2.81-1.66 3.7-1.12.87-2.67 1.31-4.69 1.31l-7.2-.02V25.28h4.13v4.59h3.63c1.87.01 3.3.44 4.3 1.26m-3.39 5.05c.43-.35.64-.88.64-1.6 0-.69-.2-1.2-.62-1.51a3.14 3.14 0 0 0-1.86-.51l-2.7-.03v4.16h2.7c.8.02 1.41-.15 1.84-.5Zm18.8-7.49h-7.37v10.94h-4.13V25.28h11.5zm12.9-2.04c1.2 1.06 1.79 2.65 1.79 4.79v8.18h-3.9v-1.79c-.78 1.34-2.24 2-4.37 2-1.1 0-2.06-.18-2.87-.56a4.03 4.03 0 0 1-2.5-3.79c0-1.33.5-2.38 1.51-3.14 1-.77 2.56-1.15 4.66-1.15h3.3c0-.9-.27-1.6-.82-2.1-.55-.48-1.38-.73-2.48-.73-.77 0-1.52.13-2.25.37-.74.24-1.37.56-1.88.97l-1.5-2.9a9 9 0 0 1 2.82-1.29c1.1-.3 2.21-.45 3.37-.45 2.22 0 3.93.53 5.12 1.59m-3.54 9.9a2.7 2.7 0 0 0 1.17-1.46v-1.46h-2.85c-1.71 0-2.57.56-2.57 1.68 0 .53.21.95.63 1.27.42.3 1 .46 1.72.46a3.7 3.7 0 0 0 1.9-.5Zm20.19-10.57a6.6 6.6 0 0 1 2.57 2.59 7.8 7.8 0 0 1 .93 3.88c0 1.48-.3 2.77-.93 3.88a6.6 6.6 0 0 1-2.57 2.59c-1.1.6-2.31.92-3.65.92a5.53 5.53 0 0 1-4.31-1.73v6.7h-4.16V25.27h3.97v1.65c1.03-1.24 2.53-1.87 4.5-1.87 1.34 0 2.55.31 3.65.92Zm-1.74 9.36a4.03 4.03 0 0 0 1.03-2.89c0-1.2-.34-2.18-1.03-2.9a3.47 3.47 0 0 0-2.62-1.07c-1.07 0-1.94.36-2.63 1.08a4.03 4.03 0 0 0-1.03 2.89c0 1.2.34 2.17 1.03 2.9a3.47 3.47 0 0 0 2.63 1.07c1.07 0 1.94-.35 2.63-1.08Zm19.13-8.7c1.19 1.07 1.78 2.66 1.78 4.8v8.18h-3.9v-1.79c-.78 1.34-2.23 2-4.37 2-1.1 0-2.06-.18-2.87-.56a4.02 4.02 0 0 1-2.5-3.79c0-1.33.51-2.38 1.52-3.14 1-.77 2.55-1.15 4.65-1.15h3.3c0-.9-.27-1.6-.82-2.1-.55-.48-1.38-.73-2.48-.73-.76 0-1.52.13-2.25.37-.74.24-1.37.56-1.88.97l-1.5-2.9a9 9 0 0 1 2.82-1.3c1.1-.3 2.22-.45 3.37-.45 2.23 0 3.93.53 5.13 1.59m-3.55 9.9a2.7 2.7 0 0 0 1.17-1.45v-1.46h-2.86c-1.7 0-2.56.56-2.56 1.68 0 .53.21.95.63 1.27.42.3 1 .46 1.72.46a3.7 3.7 0 0 0 1.9-.5m8.1-11.26h4.13v5.6h6.24v-5.6h4.16v14.35h-4.16v-5.37h-6.24v5.37h-4.14V25.28Zm30.55 3.41h-4.85v10.94h-4.13V28.69h-4.86v-3.41h13.84zm2.22-3.41h4.14v8.53l6.98-8.53h3.82v14.35h-4.14v-8.54l-6.96 8.54h-3.84zm18.67 0h4.13v8.53l7-8.53h3.8v14.35h-4.13v-8.54l-6.96 8.54h-3.84z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 .6h316v60H0z"/></clipPath></defs></svg>
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="316" height="61" fill="none"><g clip-path="url(#a)"><path fill="#0F1A7C" 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="m93 39.63-.03-11.18-5.5 9.2h-1.92l-5.5-8.99v10.96H76V20.96h3.58l6.98 11.6 6.88-11.6h3.58l.03 18.67h-4.06Zm10.75-.74a7 7 0 0 1-3.83-6.44 7.07 7.07 0 0 1 3.83-6.44 8.6 8.6 0 0 1 4.07-.95c1.51 0 2.86.31 4.05.95a7.07 7.07 0 0 1 3.82 6.44 7.07 7.07 0 0 1-3.81 6.44c-1.2.63-2.55.95-4.06.95a8.6 8.6 0 0 1-4.07-.95m6.7-3.55a4.04 4.04 0 0 0 1.02-2.89c0-1.2-.34-2.18-1.02-2.9a3.47 3.47 0 0 0-2.63-1.07q-1.605 0-2.64 1.08a4 4 0 0 0-1.04 2.89 4 4 0 0 0 1.04 2.9c.7.71 1.57 1.07 2.64 1.07 1.06 0 1.94-.35 2.63-1.08m23.7.87v6.5h-3.87v-3.08H120.2v3.09h-3.86v-6.5h.58c.9-.02 1.5-.55 1.84-1.58s.55-2.5.65-4.4l.18-4.96h12.51V36.2h2.05Zm-11.32-2.1a4 4 0 0 1-.95 2.1h6.06V28.7h-4.7l-.08 1.83a25 25 0 0 1-.33 3.57Zm28.05-8.83L144.4 40.5c-.66 1.65-1.47 2.81-2.44 3.5a5.96 5.96 0 0 1-3.51 1c-.75 0-1.48-.11-2.22-.34a4.85 4.85 0 0 1-1.78-.96l1.51-2.96a3.52 3.52 0 0 0 2.35.9 2.2 2.2 0 0 0 1.38-.4c.36-.28.68-.74.97-1.38l.05-.13-6.22-14.46h4.3l4.03 9.74 4.05-9.74h4Zm14.48 0v14.35h-4.16V28.69h-4.53l-.13 2.53a26 26 0 0 1-.54 4.7 6.5 6.5 0 0 1-1.38 2.93 3.4 3.4 0 0 1-2.67 1.06c-.6 0-1.33-.1-2.16-.32l.21-3.41.61.05c.62 0 1.1-.22 1.4-.68.31-.45.52-1.03.63-1.73.1-.7.19-1.63.24-2.79l.21-5.76h12.27Zm15.79 5.85c1 .83 1.49 2 1.49 3.51 0 1.58-.55 2.81-1.66 3.7-1.12.87-2.67 1.31-4.69 1.31l-7.2-.02V25.28h4.13v4.59h3.63c1.87.01 3.3.44 4.3 1.26m-3.39 5.05c.43-.35.64-.88.64-1.6 0-.69-.2-1.2-.62-1.51a3.14 3.14 0 0 0-1.86-.51l-2.7-.03v4.16h2.7c.8.02 1.41-.15 1.84-.5Zm18.8-7.49h-7.37v10.94h-4.13V25.28h11.5zm12.9-2.04c1.2 1.06 1.79 2.65 1.79 4.79v8.18h-3.9v-1.79c-.78 1.34-2.24 2-4.37 2-1.1 0-2.06-.18-2.87-.56a4.03 4.03 0 0 1-2.5-3.79c0-1.33.5-2.38 1.51-3.14 1-.77 2.56-1.15 4.66-1.15h3.3c0-.9-.27-1.6-.82-2.1-.55-.48-1.38-.73-2.48-.73-.77 0-1.52.13-2.25.37-.74.24-1.37.56-1.88.97l-1.5-2.9a9 9 0 0 1 2.82-1.29c1.1-.3 2.21-.45 3.37-.45 2.22 0 3.93.53 5.12 1.59m-3.54 9.9a2.7 2.7 0 0 0 1.17-1.46v-1.46h-2.85c-1.71 0-2.57.56-2.57 1.68 0 .53.21.95.63 1.27.42.3 1 .46 1.72.46a3.7 3.7 0 0 0 1.9-.5Zm20.19-10.57a6.6 6.6 0 0 1 2.57 2.59 7.8 7.8 0 0 1 .93 3.88c0 1.48-.3 2.77-.93 3.88a6.6 6.6 0 0 1-2.57 2.59c-1.1.6-2.31.92-3.65.92a5.53 5.53 0 0 1-4.31-1.73v6.7h-4.16V25.27h3.97v1.65c1.03-1.24 2.53-1.87 4.5-1.87 1.34 0 2.55.31 3.65.92Zm-1.74 9.36a4.03 4.03 0 0 0 1.03-2.89c0-1.2-.34-2.18-1.03-2.9a3.47 3.47 0 0 0-2.62-1.07c-1.07 0-1.94.36-2.63 1.08a4.03 4.03 0 0 0-1.03 2.89c0 1.2.34 2.17 1.03 2.9a3.47 3.47 0 0 0 2.63 1.07c1.07 0 1.94-.35 2.63-1.08Zm19.13-8.7c1.19 1.07 1.78 2.66 1.78 4.8v8.18h-3.9v-1.79c-.78 1.34-2.23 2-4.37 2-1.1 0-2.06-.18-2.87-.56a4.02 4.02 0 0 1-2.5-3.79c0-1.33.51-2.38 1.52-3.14 1-.77 2.55-1.15 4.65-1.15h3.3c0-.9-.27-1.6-.82-2.1-.55-.48-1.38-.73-2.48-.73-.76 0-1.52.13-2.25.37-.74.24-1.37.56-1.88.97l-1.5-2.9a9 9 0 0 1 2.82-1.3c1.1-.3 2.22-.45 3.37-.45 2.23 0 3.93.53 5.13 1.59m-3.55 9.9a2.7 2.7 0 0 0 1.17-1.45v-1.46h-2.86c-1.7 0-2.56.56-2.56 1.68 0 .53.21.95.63 1.27.42.3 1 .46 1.72.46a3.7 3.7 0 0 0 1.9-.5m8.1-11.26h4.13v5.6h6.24v-5.6h4.16v14.35h-4.16v-5.37h-6.24v5.37h-4.14V25.28Zm30.55 3.41h-4.85v10.94h-4.13V28.69h-4.86v-3.41h13.84zm2.22-3.41h4.14v8.53l6.98-8.53h3.82v14.35h-4.14v-8.54l-6.96 8.54h-3.84zm18.67 0h4.13v8.53l7-8.53h3.8v14.35h-4.13v-8.54l-6.96 8.54h-3.84z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 .6h316v60H0z"/></clipPath></defs></svg>
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, };