@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/calendar/index.d.ts +3 -4
- package/dist/index.cjs.js +69 -71
- package/dist/index.d.ts +3 -3
- package/dist/index.esm.js +28 -30
- package/dist/{output-DCvuWNga.css → output-DfOH-aLb.css} +26 -26
- package/dist/{output-DOIezTPH.css → output-DjWTgiS1.css} +55 -55
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
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
|
|
475
|
-
defaultValue
|
|
474
|
+
value?: string | undefined;
|
|
475
|
+
defaultValue?: string | undefined;
|
|
476
476
|
className?: string | undefined;
|
|
477
|
-
onChange
|
|
477
|
+
onChange?: ((value: CalendarValueProps) => void) | null | undefined;
|
|
478
478
|
disabledDate?: ((date: moment$1.Moment) => boolean) | undefined;
|
|
479
479
|
} & react.RefAttributes<unknown>>;
|
|
480
480
|
|