UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

23 lines (22 loc) 1.08 kB
import '@ui5/webcomponents/dist/CalendarDate.js'; import type { CommonProps, Ui5DomRef } from '../../types/index.js'; 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! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * @abstract */ declare const CalendarDate: import("react").ForwardRefExoticComponent<CalendarDatePropTypes & import("../../internal/withWebComponent.js").WithWebComponentPropTypes & import("react").RefAttributes<CalendarDateDomRef>>; export { CalendarDate }; export type { CalendarDateDomRef, CalendarDatePropTypes };