| OLD | NEW |
| (Empty) | |
| 1 This is a highlevel overview of behaviors used by <bot-list>. |
| 2 |
| 3 ``` |
| 4 +----------------+ |
| 5 | | |
| 6 +------------->+ CommonBehavior +<-----------------+ |
| 7 | | | | |
| 8 | +------+---------+ | |
| 9 | ^ | |
| 10 | | | |
| 11 | | | |
| 12 | | | |
| 13 +--------+----------+ +----+------------+ +-------+--------------+ |
| 14 | | | | | | |
| 15 | QueryColumnFilter | | BotListBehavior | | DynamicTableBehavior | |
| 16 | | | | | | |
| 17 +-------------------+ +-----------------+ +----------------------+ |
| 18 ^ +-------------^ ^ ^ ^-------------------+ ^ |
| 19 | | | | | | |
| 20 | | | +---+ | | |
| 21 | | | | | | |
| 22 +----+--+-------+ | +-----+--------------+ +-----+------+ |
| 23 | | | | | | | |
| 24 | <bot-filters> | | | <bot-list-summary> | | <bot-list> | |
| 25 | | | | | | | |
| 26 +---------------+ | +--------------------+ +------------+ |
| 27 | +-----------------+ |
| 28 | | | |
| 29 +-----+ <bot-list-data> | |
| 30 | | |
| 31 +-----------------+ |
| 32 ``` |
| 33 |
| 34 Although methods defined in the various behaviors could be overwritten by each |
| 35 other, this is not done. |
| 36 |
| 37 `<bot-list>` is the main element and composes the others. |
| OLD | NEW |