refactor: improve props description for adding online document references
All checks were successful
Publish to npm / publish (push) Successful in 26s
All checks were successful
Publish to npm / publish (push) Successful in 26s
This commit is contained in:
parent
cd0d6d1cba
commit
777c715184
|
@ -6,15 +6,7 @@ export default () => {
|
||||||
|
|
||||||
return (<div className='app'>
|
return (<div className='app'>
|
||||||
<div className="border">
|
<div className="border">
|
||||||
<SingleDatePicker availableRange={[{
|
<SingleDatePicker />
|
||||||
year: 2025,
|
|
||||||
month: 1,
|
|
||||||
day: 15
|
|
||||||
}, {
|
|
||||||
year: 2025,
|
|
||||||
month: 11,
|
|
||||||
day: 15
|
|
||||||
}]} />
|
|
||||||
</div>
|
</div>
|
||||||
</div>)
|
</div>)
|
||||||
}
|
}
|
|
@ -3,10 +3,15 @@ import { getCalendarDates, getL10Weekday, generateUniqueId, applyColor } from '.
|
||||||
|
|
||||||
export interface SingleDatePickerProps {
|
export interface SingleDatePickerProps {
|
||||||
/**
|
/**
|
||||||
* Control the selected
|
* Value of the selected date.
|
||||||
|
*
|
||||||
|
* @description Control the selected
|
||||||
* date programmatically, including situations like provide a default value or control the selected
|
* date programmatically, including situations like provide a default value or control the selected
|
||||||
* date by parent component. Use 1-12 for month, instead of 0-11, if you are using object to set the
|
* date by parent component. Use 1-12 for month, instead of 0-11, if you are using object to set the
|
||||||
* value.
|
* value.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#value}
|
||||||
|
*
|
||||||
* @example { year: 2025, month: 1, day: 1 }
|
* @example { year: 2025, month: 1, day: 1 }
|
||||||
* @example new Date(2025, 0, 1)
|
* @example new Date(2025, 0, 1)
|
||||||
* @default new Date()
|
* @default new Date()
|
||||||
|
@ -14,7 +19,12 @@ export interface SingleDatePickerProps {
|
||||||
value?: Date | { year: number, month: number, day: number }
|
value?: Date | { year: number, month: number, day: number }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A callback function that will be called when a date is selected inside the panel.
|
* Event handler when a date is selected.
|
||||||
|
* @description A callback function that will be called when a date is selected inside the panel.
|
||||||
|
* The returned month and day are 1-12 instead of 0-11.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#onselect-date-void}
|
||||||
|
*
|
||||||
* @param {{ year: number, month: number, day: number }} - The date user selected.
|
* @param {{ year: number, month: number, day: number }} - The date user selected.
|
||||||
* @example { year: 2025, month: 1, day: 1 } // User selected 1 Jan 2025
|
* @example { year: 2025, month: 1, day: 1 } // User selected 1 Jan 2025
|
||||||
*/
|
*/
|
||||||
|
@ -25,62 +35,82 @@ export interface SingleDatePickerProps {
|
||||||
}) => void
|
}) => void
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The language code that will be used to localize the panel.
|
* Localization
|
||||||
|
* @description The language code that will be used to localize the panel.
|
||||||
|
*
|
||||||
* Accept standard ISO 639-1 language code, such as 'zh-CN', 'en-US', 'ja-JP', etc. Note
|
* Accept standard ISO 639-1 language code, such as 'zh-CN', 'en-US', 'ja-JP', etc. Note
|
||||||
* that it will not effect to the screen reader, but the screen reader will still read the
|
* that it will not effect to the screen reader, but the screen reader will still read the
|
||||||
* date in the user’s language.
|
* date in the user’s language.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#localization}
|
||||||
* @default navigator.language
|
* @default navigator.language
|
||||||
*/
|
*/
|
||||||
localization?: string
|
localization?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* User requires to close the panel without select a specific date. Note that the close button is not
|
* Event handler when the panel is closed.
|
||||||
* visible, but can be read by screen reader. The close button for the screen reader is only available
|
* @description User requires to close the panel without select a specific date. Note
|
||||||
* when this prop is not `undefined`.
|
* that the close button is not visible, but can be read by screen reader. The close
|
||||||
|
* button for the screen reader is only available when this prop is not `undefined`.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#onclose-void}
|
||||||
|
*
|
||||||
* @default undefined
|
* @default undefined
|
||||||
*/
|
*/
|
||||||
onClose?: () => void
|
onClose?: () => void
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The main color of the panel, including the text color and the border color.
|
* Main color of the panel
|
||||||
*@default '#000000'
|
* @description The main color of the panel, including the text color and the border color.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#maincolor}
|
||||||
|
*
|
||||||
|
* @default '#000000'
|
||||||
*/
|
*/
|
||||||
mainColor?: string
|
mainColor?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The accent color of the panel, including the background color of the selected date.
|
* Accent color of the panel
|
||||||
*@default '#000000'
|
* @description The accent color of the panel, including the background color of the selected date.
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#accentcolor}
|
||||||
|
* @default '#000000'
|
||||||
*/
|
*/
|
||||||
accentColor?: string
|
accentColor?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The reversed color of the panel, including the text color of the selected date.
|
* Reversed color of the panel
|
||||||
*@default '#ffffff'
|
* @description The reversed color of the panel, including the text color of the selected date.
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#reversedcolor}
|
||||||
|
* @default '#ffffff'
|
||||||
*/
|
*/
|
||||||
reversedColor?: string
|
reversedColor?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The hover color of the panel, including the hover background color of the date.
|
* Hover color of the panel
|
||||||
*@default '#00000017'
|
* @description The hover color of the panel, including the hover background color of the date.
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#hovercolor}
|
||||||
|
* @default '#00000017'
|
||||||
*/
|
*/
|
||||||
hoverColor?: string
|
hoverColor?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The border color of the panel, including the divider color between the header and the body.
|
* Border color of the panel
|
||||||
*@default '#e0e0e0'
|
* @description The border color of the panel, including the divider color between the header and the body.
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#bordercolor}
|
||||||
|
* @default '#e0e0e0'
|
||||||
*/
|
*/
|
||||||
borderColor?: string
|
borderColor?: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Limit a range of dates that can be selected. It should be an array of two dates, which the first
|
* Available range of dates
|
||||||
|
*
|
||||||
|
* @description Limit a range of dates that can be selected. It should be an array of two dates, which the first
|
||||||
* one is the available range start date, and the second one is the available range end date.
|
* one is the available range start date, and the second one is the available range end date.
|
||||||
*
|
*
|
||||||
* If the first one is null, it means that the all dates after the second one is not available. If the second
|
|
||||||
* one is null, it means that the all dates before the first one is not available.
|
|
||||||
*
|
|
||||||
* If the first one is behind the second one, Datenel will exchange them automatically.
|
|
||||||
*
|
|
||||||
* The parameter will be ignored if the array length is not 2.
|
* The parameter will be ignored if the array length is not 2.
|
||||||
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html#availablerange}
|
||||||
|
*
|
||||||
* @example [new Date(2025, 0, 1), new Date(2025, 11, 31)]
|
* @example [new Date(2025, 0, 1), new Date(2025, 11, 31)]
|
||||||
* @example [new Date(2025, 0, 1), null]
|
* @example [new Date(2025, 0, 1), null]
|
||||||
* @example [null, new Date(2025, 11, 31)]
|
* @example [null, new Date(2025, 11, 31)]
|
||||||
|
@ -92,10 +122,13 @@ export interface SingleDatePickerProps {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SingleDatePicker
|
* SingleDatePicker
|
||||||
* A panel that allows users to select a date.
|
* @description A panel that allows users to select a date. Check out the online documentation for
|
||||||
|
* interactive examples and more details.
|
||||||
*
|
*
|
||||||
* @component
|
* @component
|
||||||
*
|
*
|
||||||
|
* @see {@link https://datenel.js.org/guide/react/components/SingleDatePicker.html}
|
||||||
|
*
|
||||||
* @param {SingleDatePickerProps} props
|
* @param {SingleDatePickerProps} props
|
||||||
*/
|
*/
|
||||||
const SingleDatePicker: React.FC<SingleDatePickerProps> = ({ value, onSelect, localization, onClose, mainColor = '#000000', accentColor = '#000000', reversedColor = '#ffffff', hoverColor = '#00000017', borderColor = '#e0e0e0', availableRange: inputAvailableRange }: SingleDatePickerProps) => {
|
const SingleDatePicker: React.FC<SingleDatePickerProps> = ({ value, onSelect, localization, onClose, mainColor = '#000000', accentColor = '#000000', reversedColor = '#ffffff', hoverColor = '#00000017', borderColor = '#e0e0e0', availableRange: inputAvailableRange }: SingleDatePickerProps) => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user