@modul/mbui 0.0.57-beta-pv-54364-c835d430 → 0.0.57-beta-pv-54364-486b8c31

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,4 +1,5 @@
1
1
  import * as React from 'react';
2
2
  import { IMaskInputProps } from 'react-imask';
3
- declare const InputMask: React.FC<IMaskInputProps<HTMLInputElement>>;
3
+ declare type TInputMask = IMaskInputProps<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement>;
4
+ declare const InputMask: React.FC<TInputMask>;
4
5
  export { InputMask };
@@ -3,7 +3,7 @@ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputH
3
3
  value?: string;
4
4
  onChange?: (newValue: string) => unknown;
5
5
  maxLength: number;
6
- textAlign?: "center" | "right" | "left";
6
+ textAlign?: "center" | "left" | "right";
7
7
  onComplete?: (...args: any[]) => unknown;
8
8
  pushPasswordManagerStrategy?: "none" | "increase-width";
9
9
  containerClassName?: string;
@@ -15,7 +15,7 @@ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputH
15
15
  value?: string;
16
16
  onChange?: (newValue: string) => unknown;
17
17
  maxLength: number;
18
- textAlign?: "center" | "right" | "left";
18
+ textAlign?: "center" | "left" | "right";
19
19
  onComplete?: (...args: any[]) => unknown;
20
20
  pushPasswordManagerStrategy?: "none" | "increase-width";
21
21
  containerClassName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "0.0.57-beta-pv-54364-c835d430",
3
+ "version": "0.0.57-beta-pv-54364-486b8c31",
4
4
  "packageManager": "yarn@3.5.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",