@inntechcorp/it-design 2.0.126 → 2.0.127

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
@@ -471,10 +471,10 @@ type AccordionMenuProps = AccordionProps & {
471
471
  declare const Accordion: FunctionComponent<AccordionMenuProps> & AccordionMenuSubComponents;
472
472
 
473
473
  declare const Calendar: react.ForwardRefExoticComponent<{
474
- value: string;
475
- defaultValue: string;
474
+ value?: string | undefined;
475
+ defaultValue?: string | undefined;
476
476
  className?: string | undefined;
477
- onChange: ((value: CalendarValueProps) => void) | null;
477
+ onChange?: ((value: CalendarValueProps) => void) | null | undefined;
478
478
  disabledDate?: ((date: moment$1.Moment) => boolean) | undefined;
479
479
  } & react.RefAttributes<unknown>>;
480
480