Skip to content

Commit

Permalink
docs: hide internal elements from API docs (#3977)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Jun 1, 2022
1 parent 49c312f commit c5f0c3d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/crud/src/vaadin-crud-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ const footerTemplate = html`
<slot name="delete-button"></slot>
`;

/**
* An extension of `<vaadin-dialog-overlay>` used internally by `<vaadin-crud>`.
* Not intended to be used separately.
* @private
*/
class CrudDialogOverlay extends DialogOverlay {
static get is() {
return 'vaadin-crud-dialog-overlay';
Expand Down Expand Up @@ -100,6 +105,11 @@ class CrudDialogOverlay extends DialogOverlay {

customElements.define('vaadin-crud-dialog-overlay', CrudDialogOverlay);

/**
* An extension of `<vaadin-dialog>` used internally by `<vaadin-crud>`.
* Not intended to be used separately.
* @private
*/
class CrudDialog extends Dialog {
/**
* Override template to provide custom overlay tag name.
Expand Down
1 change: 1 addition & 0 deletions packages/time-picker/src/vaadin-time-picker-combo-box.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
* @extends HTMLElement
* @mixes ComboBoxMixin
* @mixes ThemableMixin
* @private
*/
class TimePickerComboBox extends ComboBoxMixin(ThemableMixin(PolymerElement)) {
static get is() {
Expand Down

0 comments on commit c5f0c3d

Please sign in to comment.