fix(build): migrate smart config setup and align TypeScript compatibility updates
This commit is contained in:
@@ -177,11 +177,11 @@ export class SioRecorder extends DeesElement {
|
||||
public async fixPosition() {
|
||||
await this.domtoolsPromise;
|
||||
await this.domtools.convenience.smartdelay.delayFor(0);
|
||||
const playbackDiv = this.shadowRoot.querySelector('#playback') as HTMLElement;
|
||||
const replayerWrapper = this.shadowRoot.querySelector('.replayer-wrapper') as HTMLElement;
|
||||
const replayerMouse = this.shadowRoot.querySelector('.replayer-mouse') as HTMLElement;
|
||||
const replayerMouseTail = this.shadowRoot.querySelector('.replayer-mouse-tail') as HTMLElement;
|
||||
const iframe = this.shadowRoot.querySelector('iframe');
|
||||
const playbackDiv = this.shadowRoot!.querySelector('#playback') as HTMLElement;
|
||||
const replayerWrapper = this.shadowRoot!.querySelector('.replayer-wrapper') as HTMLElement;
|
||||
const replayerMouse = this.shadowRoot!.querySelector('.replayer-mouse') as HTMLElement;
|
||||
const replayerMouseTail = this.shadowRoot!.querySelector('.replayer-mouse-tail') as HTMLElement;
|
||||
const iframe = this.shadowRoot!.querySelector('iframe')!;
|
||||
replayerWrapper.style.position = 'absolute';
|
||||
replayerWrapper.style.top = '0px';
|
||||
replayerWrapper.style.left = '0px';
|
||||
|
||||
Reference in New Issue
Block a user