Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b49707a727 | |||
2ea29cffbb |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-04-20 - 1.2.4 - fix(build)
|
||||||
|
Update build script and async function signature
|
||||||
|
|
||||||
|
- Added '--skiplibcheck' flag to the tsbuild command in package.json
|
||||||
|
- Changed startRecording return type to Promise<void> in ts_web/elements/sio-recorder.ts for proper async handling
|
||||||
|
|
||||||
## 2025-04-20 - 1.2.3 - fix(core)
|
## 2025-04-20 - 1.2.3 - fix(core)
|
||||||
Update dependency versions and adjust UI CSS for fab and combox elements
|
Update dependency versions and adjust UI CSS for fab and combox elements
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@social.io/catalog",
|
"name": "@social.io/catalog",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "catalog for social.io",
|
"description": "catalog for social.io",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tstest test/",
|
"test": "tstest test/",
|
||||||
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
|
"build": "tsbuild tsfolders --allowimplicitany --skiplibcheck && tsbundle element --production",
|
||||||
"watch": "tswatch element",
|
"watch": "tswatch element",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
|
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@social.io/catalog',
|
name: '@social.io/catalog',
|
||||||
version: '1.2.3',
|
version: '1.2.4',
|
||||||
description: 'catalog for social.io'
|
description: 'catalog for social.io'
|
||||||
}
|
}
|
||||||
|
@@ -104,7 +104,7 @@ export class SioRecorder extends DeesElement {
|
|||||||
* Starts an rrweb recording session that tracks the entire DOM,
|
* Starts an rrweb recording session that tracks the entire DOM,
|
||||||
* including canvases and cross-origin iframes (if permissible).
|
* including canvases and cross-origin iframes (if permissible).
|
||||||
*/
|
*/
|
||||||
private async startRecording(): void {
|
private async startRecording(): Promise<void> {
|
||||||
await this.domtoolsPromise;
|
await this.domtoolsPromise;
|
||||||
this.status = 'recording';
|
this.status = 'recording';
|
||||||
this.events = [];
|
this.events = [];
|
||||||
|
Reference in New Issue
Block a user