(property: string, oldValue: unknown, newValue: unknown)
| 34 | } |
| 35 | |
| 36 | override async onStateUpdate (property: string, oldValue: unknown, newValue: unknown) { |
| 37 | super.onStateUpdate(property, oldValue, newValue); |
| 38 | |
| 39 | if (property === 'progress') { |
| 40 | this.content('progress').value(newValue as string); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | override async onPropsUpdate (property: string, _oldValue: unknown, newValue: unknown) { |
| 45 | if (property === 'max') { |