moralis-ui
Advanced tools
Comparing version 0.0.8 to 0.0.10
export { default as Checkboxes } from './Checkboxes'; | ||
export type { ICheckboxesProps } from './types'; | ||
export type { ICheckboxesProps, TCheckboxOption, TValidateCheckboxes } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import { ReactNode } from 'react'; | ||
import { LegacyRef, ReactNode } from 'react'; | ||
import { TFlexDirection } from 'src/types'; | ||
@@ -26,2 +26,6 @@ export type TValidateCheckboxes = { | ||
label: string | ReactNode; | ||
/** | ||
* ref call back used with react hook form | ||
*/ | ||
ref?: LegacyRef<HTMLInputElement>; | ||
}; | ||
@@ -74,6 +78,2 @@ export interface ICheckboxesProps extends TValidateCheckboxes { | ||
/** | ||
* ref call back used with react hook form | ||
*/ | ||
ref?: any; | ||
/** | ||
* apply custom CSS | ||
@@ -80,0 +80,0 @@ */ |
@@ -9,4 +9,5 @@ export * from './Button'; | ||
export * from './Select'; | ||
export * from './SelectionCard'; | ||
export * from './Toggle'; | ||
export * from './VerifyCode'; | ||
//# sourceMappingURL=index.d.ts.map |
export { default as Input } from './Input'; | ||
export type { IInputProps } from './types'; | ||
export type { IInputProps, TValidateInput } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
export { default as Radios } from './Radios'; | ||
export type { IRadiosProps, TRadioOption } from './types'; | ||
export type { IRadiosProps, TRadioOption, TValidateRadios } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
export { default as RangeSlider } from './RangeSlider'; | ||
export type { IRangeSliderProps } from './types'; | ||
export type { IRangeSliderProps, TValidateRangeSlider } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
export { default as Select } from './Select'; | ||
export type { ISelectProps, TSelectOption } from './types'; | ||
export type { ISelectProps, TSelectOption, TValidateSelect } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
export { default as SelectionCard } from './SelectionCard'; | ||
export type { ISelectionCardProps } from './types'; | ||
export type { ISelectionCardProps, TSelectCardOption } from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
import { ReactNode } from 'react'; | ||
import { TValidateRadios } from '../Radios/types'; | ||
import { TFlexDirection } from 'src/types'; | ||
export type TSelectCarOption = { | ||
export type TSelectCardOption = { | ||
/** | ||
@@ -54,2 +54,6 @@ * selection card checked (selected) by default | ||
/** | ||
* allow user to select more than one | ||
*/ | ||
multiSelect?: boolean; | ||
/** | ||
* name text for selection card accessibility | ||
@@ -76,3 +80,3 @@ */ | ||
*/ | ||
options: TSelectCarOption[]; | ||
options: TSelectCardOption[]; | ||
/** | ||
@@ -79,0 +83,0 @@ * ref call back used with react hook form |
{ | ||
"name": "moralis-ui", | ||
"version": "0.0.8", | ||
"version": "0.0.10", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "husky": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
505382
8613