@modul/mbui 1.1.0-beta-whitebusinesslanding-20a47f34 → 1.1.0-beta-whitebusinesslanding-1b1aa108

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,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
3
  declare const chipVariants: (props?: {
4
- variant?: "primary" | "secondary" | "success" | "primary-outline" | "outline" | "ghost";
4
+ variant?: "outline" | "primary" | "secondary" | "success" | "primary-outline" | "ghost";
5
5
  size?: "lg" | "md" | "sm" | "xs" | "xxs";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface IChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof chipVariants> {
@@ -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" | "onComplete" | "textAlign" | "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" | "right" | "left";
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" | "onComplete" | "textAlign" | "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" | "right" | "left";
18
+ textAlign?: "left" | "right" | "center";
19
19
  onComplete?: (...args: any[]) => unknown;
20
20
  pushPasswordManagerStrategy?: "none" | "increase-width";
21
21
  containerClassName?: string;
@@ -1,9 +1,8 @@
1
1
  import { FC, ReactNode } from 'react';
2
- import { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation } from './components';
3
- import { ProgressBarWidget } from './components/ProgressBarWidget';
4
2
  interface IProps {
5
3
  children?: ReactNode;
6
4
  className?: string;
7
5
  }
8
6
  declare const WhiteBusinessPage: FC<IProps>;
9
- export { WhiteBusinessPage, PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget };
7
+ export { WhiteBusinessPage };
8
+ export { PageNavbar, Hero, CheckingCounterparty, ReliabilityIndicators, Consultation, ProgressBarWidget, List, ListItem } from './components';
@@ -1,2 +1,2 @@
1
- import React from 'react';
2
- export declare const CheckingCounterparty: () => React.JSX.Element;
1
+ import { FC, PropsWithChildren } from 'react';
2
+ export declare const CheckingCounterparty: FC<PropsWithChildren>;
@@ -1,2 +1,7 @@
1
1
  import React from 'react';
2
- export declare const Consultation: () => React.JSX.Element;
2
+ export declare const Consultation: {
3
+ ({ action }: {
4
+ action: any;
5
+ }): React.JSX.Element;
6
+ displayName: string;
7
+ };
@@ -0,0 +1,7 @@
1
+ import { FC, PropsWithChildren } from 'react';
2
+ interface IProps {
3
+ variant?: 'check' | 'warning' | 'critical';
4
+ }
5
+ export declare const List: FC<IProps & PropsWithChildren>;
6
+ export declare const ListItem: FC<IProps & PropsWithChildren>;
7
+ export {};
@@ -3,4 +3,6 @@ export { PageNavbar } from './PageNavbar';
3
3
  export { CheckingCounterparty } from './CheckingCounterparty';
4
4
  export { ReliabilityIndicators } from './ReliabilityIndicators';
5
5
  export { Consultation } from './Consultation';
6
+ export { ProgressBarWidget } from './ProgressBarWidget';
7
+ export { List, ListItem } from './List';
6
8
  export * from './style';