File tree Expand file tree Collapse file tree 4 files changed +4
-20
lines changed Expand file tree Collapse file tree 4 files changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -36,15 +36,9 @@ export declare class ListMixinClass {
36
36
orientation : 'horizontal' | 'vertical' ;
37
37
38
38
/**
39
- * The list of items from which a selection can be made.
39
+ * A read-only list of items from which a selection can be made.
40
40
* It is populated from the elements passed to the light DOM,
41
41
* and updated dynamically when adding or removing items.
42
- *
43
- * The item elements must implement `Vaadin.ItemMixin`.
44
- *
45
- * Note: unlike `<vaadin-combo-box>`, this property is read-only,
46
- * so if you want to provide items by iterating array of data,
47
- * you have to use `dom-repeat` and place it to the light DOM.
48
42
*/
49
43
readonly items : Element [ ] | undefined ;
50
44
Original file line number Diff line number Diff line change @@ -56,15 +56,9 @@ export const ListMixin = (superClass) =>
56
56
} ,
57
57
58
58
/**
59
- * The list of items from which a selection can be made.
59
+ * A read-only list of items from which a selection can be made.
60
60
* It is populated from the elements passed to the light DOM,
61
61
* and updated dynamically when adding or removing items.
62
- *
63
- * The item elements must implement `Vaadin.ItemMixin`.
64
- *
65
- * Note: unlike `<vaadin-combo-box>`, this property is read-only,
66
- * so if you want to provide items by iterating array of data,
67
- * you have to use `dom-repeat` and place it to the light DOM.
68
62
* @type {!Array<!Element> | undefined }
69
63
*/
70
64
items : {
Original file line number Diff line number Diff line change @@ -21,11 +21,9 @@ export declare class TabSheetMixinClass<Tab extends HTMLElement> {
21
21
selected : number | null | undefined ;
22
22
23
23
/**
24
- * The list of `<vaadin-tab>`s from which a selection can be made.
24
+ * A read-only list of `<vaadin-tab>`s from which a selection can be made.
25
25
* It is populated from the elements passed inside the slotted
26
26
* `<vaadin-tabs>`, and updated dynamically when adding or removing items.
27
- *
28
- * Note: unlike `<vaadin-combo-box>`, this property is read-only.
29
27
*/
30
28
readonly items : Tab [ ] | undefined ;
31
29
}
Original file line number Diff line number Diff line change @@ -79,11 +79,9 @@ export const TabSheetMixin = (superClass) =>
79
79
static get properties ( ) {
80
80
return {
81
81
/**
82
- * The list of `<vaadin-tab>`s from which a selection can be made.
82
+ * A read-only list of `<vaadin-tab>`s from which a selection can be made.
83
83
* It is populated from the elements passed inside the slotted
84
84
* `<vaadin-tabs>`, and updated dynamically when adding or removing items.
85
- *
86
- * Note: unlike `<vaadin-combo-box>`, this property is read-only.
87
85
* @type {!Array<!Tab> | undefined }
88
86
*/
89
87
items : {
You can’t perform that action at this time.
0 commit comments