Skip to content

Commit

Permalink
docs(ui5-calendar): remove public from inner components (#9769)
Browse files Browse the repository at this point in the history
removing public from documentation of private(internal) components
  • Loading branch information
tsanislavgatev authored Sep 2, 2024
1 parent bc9b290 commit 4939054
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
5 changes: 0 additions & 5 deletions packages/main/src/DayPicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,16 @@ type DayPickerNavigateEventDetail = {
})
/**
* Fired when the selected date(s) change
* @public
*/
@event("change")
/**
* Fired when the timestamp changes (user navigates with the keyboard) or clicks with the mouse
* @public
*/
@event("navigate")
class DayPicker extends CalendarPart implements ICalendarPicker {
/**
* An array of UTC timestamps representing the selected date or dates depending on the capabilities of the picker component.
* @default []
* @public
*/
@property({ type: Array })
selectedDates: Array<number> = [];
Expand All @@ -135,7 +132,6 @@ class DayPicker extends CalendarPart implements ICalendarPicker {
* - `CalendarSelectionMode.Range` - enables selection of a date range.
* - `CalendarSelectionMode.Multiple` - enables selection of multiple dates.
* @default "Single"
* @public
*/
@property()
selectionMode: `${CalendarSelectionMode}` = "Single";
Expand All @@ -146,7 +142,6 @@ class DayPicker extends CalendarPart implements ICalendarPicker {
* **Note:** For calendars other than Gregorian,
* the week numbers are not displayed regardless of what is set.
* @default false
* @public
* @since 1.0.0-rc.8
*/
@property({ type: Boolean })
Expand Down
4 changes: 0 additions & 4 deletions packages/main/src/MonthPicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,17 @@ type MonthPickerNavigateEventDetail = {
})
/**
* Fired when the user selects a month via "Space", "Enter" or click.
* @public
*/
@event("change")
/**
* Fired when the timestamp changes - the user navigates with the keyboard or clicks with the mouse.
* @since 1.0.0-rc.9
* @public
*/
@event("navigate")
class MonthPicker extends CalendarPart implements ICalendarPicker {
/**
* An array of UTC timestamps representing the selected date
* or dates depending on the capabilities of the picker component.
* @public
* @default []
*/
@property({ type: Array })
Expand All @@ -108,7 +105,6 @@ class MonthPicker extends CalendarPart implements ICalendarPicker {
*
* Note that 'CalendarSelectionMode.Multiple` is not supported for Month Picker!
* @default "Single"
* @public
* @since 2.2.0
*/
@property()
Expand Down
4 changes: 0 additions & 4 deletions packages/main/src/YearPicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,21 +76,18 @@ type YearPickerNavigateEventDetail = {
})
/**
* Fired when the user selects a year via "Space", "Enter" or click.
* @public
*/
@event("change")
/**
* Fired when the timestamp changes - the user navigates with the keyboard or clicks with the mouse.
* @since 1.0.0-rc.9
* @public
*/
@event("navigate")
class YearPicker extends CalendarPart implements ICalendarPicker {
/**
* An array of UTC timestamps representing the selected date
* or dates depending on the capabilities of the picker component.
* @default []
* @public
*/
@property({ type: Array })
selectedDates: Array<number> = [];
Expand All @@ -104,7 +101,6 @@ class YearPicker extends CalendarPart implements ICalendarPicker {
*
* Note that 'CalendarSelectionMode.Multiple` is not supported for Year Picker!
* @default "Single"
* @public
* @since 2.2.0
*/
@property()
Expand Down

0 comments on commit 4939054

Please sign in to comment.