* Returns all slotted tabs and their subTabs in a flattened array. * The order of tabs is depth-first. * * @public * @default []
()
| 887 | * @default [] |
| 888 | */ |
| 889 | get allItems() : Array<ITab> { |
| 890 | return this._flatten(this.items); |
| 891 | } |
| 892 | |
| 893 | _flatten(items: Array<ITab>) { |
| 894 | const result: Array<ITab> = []; |