Skip to content

Commit 39db999

Browse files
authored
chore(cem): display private classes (#13152)
Related to: #13153
1 parent 9578487 commit 39db999

22 files changed

+37
-15
lines changed

packages/ai/src/Input.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ type InputItemClickEventDetail = MenuItemClickEventDetail;
105105
/**
106106
* Fired when the user selects the version navigation buttons.
107107
*
108-
* @param {boolean} backwards - Indicates if navigation is backwards (true) or forwards (false, default)
108+
* @param { boolean } backwards The text of the currently clicked menu item.
109109
* @public
110110
*/
111111
@event("version-change")
@@ -234,9 +234,9 @@ class Input extends BaseInput {
234234
/**
235235
* Handles the version change event from the versioning component.
236236
*
237-
* @param {CustomEvent} e - The version change event
237+
* @param e - The version change event
238238
*/
239-
_handleVersionChange(e: CustomEvent<{ backwards: boolean }>) {
239+
_handleVersionChange(e: CustomEvent<InputVersionChangeEventDetail>): void {
240240
this.fireDecoratorEvent("version-change", {
241241
backwards: e.detail.backwards,
242242
});

packages/ai/src/ToolbarLabel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class ToolbarLabel extends ToolbarItem {
3434
text = "";
3535

3636
/**
37-
* @override
3837
* ToolbarLabel is not interactive.
38+
* @override
3939
*/
4040
get isInteractive(): boolean {
4141
return false;

packages/fiori/src/FlexibleColumnLayout.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,13 @@ type FCLAccessibilityAttributes = {
208208

209209
/**
210210
* Fired when the `layoutsConfiguration` changes via user interaction by dragging the separators.
211+
*
212+
* **Note:** The `layout-configuration-change` event is in an experimental state and is a subject to change.
211213
* @param {FCLLayout} layout The current layout
212214
* @param {MEDIA} media The current media type
213215
* @param {array} columnLayout The effective column layout, f.e ["67%", "33%", "0px"]
214216
* @public
215217
* @since 2.16.0
216-
* @experimental
217218
*/
218219
@event("layout-configuration-change", {
219220
bubbles: true,
@@ -288,7 +289,6 @@ class FlexibleColumnLayout extends UI5Element {
288289
* @default {}
289290
* @public
290291
* @since 2.16.0
291-
* @experimental
292292
*/
293293
@property({ type: Object })
294294
layoutsConfiguration: LayoutConfiguration = {};

packages/fiori/src/NotificationListGroupList.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { isSpace } from "@ui5/webcomponents-base/dist/Keys.js";
1010
* that is used to support keyboard navigation of the notification group internal list.
1111
*
1212
* @private
13+
* @extends List
1314
*/
1415
@customElement("ui5-notification-group-list")
1516
class NotificationListGroupList extends List {

packages/fiori/src/NotificationListInternal.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import getActiveElement from "@ui5/webcomponents-base/dist/util/getActiveElement
2121
* that is used to support keyboard navigation of the notification list internal list.
2222
*
2323
* @private
24+
* @extends List
2425
*/
2526
@customElement("ui5-notification-list-internal")
2627
class NotificationListInternal extends List {

packages/fiori/src/ShellBar.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,7 @@ export {
12121212
export type {
12131213
/* Event Types */
12141214
ShellBarProfileClickEventDetail,
1215+
ShellBarSearchButtonEventDetail,
12151216
ShellBarSearchFieldClearEventDetail,
12161217
ShellBarSearchFieldToggleEventDetail,
12171218
ShellBarProductSwitchClickEventDetail,

packages/main/src/Carousel.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ class Carousel extends UI5Element {
752752
* @since 1.0.0-rc.15
753753
* @public
754754
*/
755-
navigateTo(itemIndex: number) {
755+
navigateTo(itemIndex: number): void {
756756
if (!this.isIndexInRange(itemIndex)) {
757757
return;
758758
}
@@ -998,10 +998,10 @@ class Carousel extends UI5Element {
998998
/**
999999
* Returns only visible (non-hidden) content items.
10001000
* Items with the 'hidden' attribute are automatically excluded from carousel navigation.
1001+
* @default []
10011002
* @private
1002-
* @returns {Array<HTMLElement>}
10031003
*/
1004-
get _visibleItems() {
1004+
get _visibleItems(): Array<HTMLElement> {
10051005
return this.content.filter(x => !x.hasAttribute("hidden"));
10061006
}
10071007

packages/main/src/DateTimeInput.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { isDesktop, isPhone, isTablet } from "@ui5/webcomponents-base/dist/Devic
1111
* Intended to be used for the DateTime components.
1212
*
1313
* @class
14+
* @extends Input
1415
* @private
1516
*/
1617
@customElement({

packages/main/src/ListItemCustom.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class ListItemCustom extends ListItem {
110110

111111
/**
112112
* Checks if this element is currently being dragged
113-
* @returns {boolean} True if this element is being dragged
113+
* @returns True if this element is being dragged
114114
* @private
115115
*/
116116
_isDragging(): boolean {
@@ -143,7 +143,7 @@ class ListItemCustom extends ListItem {
143143

144144
/**
145145
* Gets delete button nodes to process for accessibility
146-
* @returns {Node[]} Array of nodes to process
146+
* @returns Array of nodes to process
147147
* @private
148148
*/
149149
private _getDeleteButtonNodes(): Node[] {

packages/main/src/dynamic-date-range-options/DateRange.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import DynamicDateRange from "../DynamicDateRange.js";
1111

1212
/**
1313
* @class
14+
* @implements {IDynamicDateRangeOption}
1415
* @constructor
1516
* @public
1617
* @since 2.11.0

0 commit comments

Comments
 (0)