@inntechcorp/it-design 2.0.213 → 2.0.215

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/index.d.ts CHANGED
@@ -745,19 +745,20 @@ type AccordionItemProps = {
745
745
  children?: null | ChildrenProps;
746
746
  };
747
747
 
748
- type InputVariant = "default" | "filled" | "dashed";
749
748
  declare enum InputTypes {
750
749
  TEXT = "text",
751
750
  NUMBER = "number",
752
751
  CURRENCY = "currency",
753
752
  PASSWORD = "password"
754
753
  }
754
+ type InputType = `${InputTypes}`;
755
+ type InputVariant = "default" | "filled" | "dashed";
755
756
  type InputProps = {
756
757
  id?: string;
757
758
  placeholder?: string;
758
759
  value?: string;
759
760
  defaultValue?: string;
760
- type?: InputTypes;
761
+ type?: InputType;
761
762
  className?: string;
762
763
  size?: ITDSize;
763
764
  variant?: InputVariant;