zaravand-ui 4.2.1 → 4.2.3
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/components/Input/Input.interface.d.ts +1 -1
- package/dist/components/Select/Select.variant.d.ts +1 -3
- package/dist/index.cjs +13 -13
- package/dist/index.css +1 -1
- package/dist/index.js +4082 -4051
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import type * as React from "react";
|
|
|
2
2
|
import type { VariantProps } from "class-variance-authority";
|
|
3
3
|
import { inputVariants } from "./Input.variant";
|
|
4
4
|
export interface InputProps extends VariantProps<typeof inputVariants> {
|
|
5
|
-
type?: "number" | "password" | "text" | "search" | "money" | "username" | "percent" | "decimal" | "year";
|
|
5
|
+
type?: "number" | "password" | "text" | "search" | "money" | "username" | "percent" | "decimal" | "year" | "phone" | "landline";
|
|
6
6
|
title?: string;
|
|
7
7
|
required?: boolean;
|
|
8
8
|
/**
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
declare const selectTriggerVariants: (props?: ({
|
|
2
2
|
size?: "sm" | "default" | "lg" | null | undefined;
|
|
3
3
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
4
|
-
declare const selectContentVariants: (props?: (
|
|
5
|
-
placement?: "top" | "bottom" | null | undefined;
|
|
6
|
-
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
4
|
+
declare const selectContentVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
7
5
|
declare const selectViewportVariants: (props?: ({
|
|
8
6
|
hasSearch?: boolean | null | undefined;
|
|
9
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|