@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
23 lines (22 loc) • 1.13 kB
TypeScript
import '@ui5/webcomponents/dist/CalendarDate.js';
import type { CommonProps, Ui5DomRef } from '@ui5/webcomponents-react-base';
interface CalendarDateAttributes {
/**
* The date formatted according to the `formatPattern` property
* of the `Calendar` that hosts the component.
*/
value?: string;
}
interface CalendarDateDomRef extends Required<CalendarDateAttributes>, Ui5DomRef {
}
interface CalendarDatePropTypes extends CalendarDateAttributes, Omit<CommonProps, keyof CalendarDateAttributes> {
}
/**
* The `CalendarDate` component defines a calendar date to be used inside `Calendar`
*
* __Note:__ This is a UI5 Web Component! [CalendarDate UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/CalendarDate) | [Repository](https://github.com/UI5/webcomponents)
* @abstract
*/
declare const CalendarDate: import("react").ForwardRefExoticComponent<CalendarDatePropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<CalendarDateDomRef>>;
export { CalendarDate };
export type { CalendarDateDomRef, CalendarDatePropTypes };