Skip to content

Commit 2d8305d

Browse files
authored
docs: update JSDoc for internal Lit based custom elements (#9147)
1 parent c23a5e8 commit 2d8305d

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

packages/grid-pro/src/vaadin-lit-grid-pro-edit-checkbox.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ import { Checkbox } from '@vaadin/checkbox/src/vaadin-lit-checkbox.js';
1212
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
1313

1414
/**
15-
* LitElement based version of `<vaadin-grid-pro-edit-checkbox>` web component.
15+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
1616
*
17-
* ## Disclaimer
18-
*
19-
* This component is an experiment and not yet a part of Vaadin platform.
20-
* There is no ETA regarding specific Vaadin version where it'll land.
17+
* @customElement
18+
* @extends Checkbox
19+
* @private
2120
*/
2221
class GridProEditCheckbox extends Checkbox {
2322
static get is() {

packages/grid-pro/src/vaadin-lit-grid-pro-edit-select.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ import { Select } from '@vaadin/select/src/vaadin-lit-select.js';
1313
import { GridProEditSelectMixin } from './vaadin-grid-pro-edit-select-mixin.js';
1414

1515
/**
16-
* LitElement based version of `<vaadin-grid-pro-edit-select>` web component.
16+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
1717
*
18-
* ## Disclaimer
19-
*
20-
* This component is an experiment and not yet a part of Vaadin platform.
21-
* There is no ETA regarding specific Vaadin version where it'll land.
18+
* @customElement
19+
* @extends Select
20+
* @mixes GridProEditSelectMixin
21+
* @private
2222
*/
2323
class GridProEditSelect extends GridProEditSelectMixin(Select) {
2424
static get is() {

packages/grid-pro/src/vaadin-lit-grid-pro-edit-text-field.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ import { defineCustomElement } from '@vaadin/component-base/src/define.js';
1212
import { TextField } from '@vaadin/text-field/src/vaadin-lit-text-field.js';
1313

1414
/**
15-
* LitElement based version of `<vaadin-grid-pro-edit-text-field>` web component.
15+
* An element used internally by `<vaadin-grid-pro>`. Not intended to be used separately.
1616
*
17-
* ## Disclaimer
18-
*
19-
* This component is an experiment and not yet a part of Vaadin platform.
20-
* There is no ETA regarding specific Vaadin version where it'll land.
17+
* @customElement
18+
* @extends TextField
19+
* @private
2120
*/
2221
class GridProEditText extends TextField {
2322
static get is() {

0 commit comments

Comments
 (0)