@breadstone/mosaik-elements-svelte 0.0.128 → 0.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/index.mjs +6 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 0.0.129 (2025-08-22)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add filePicked event to AttachmentChatTool component across multiple frameworks ([1c4744bc41](https://github.com/RueDeRennes/mosaik/commit/1c4744bc41))
|
|
6
|
+
- **voice-recorder:** add event handling for recording actions and update component props ([e78be3a04d](https://github.com/RueDeRennes/mosaik/commit/e78be3a04d))
|
|
7
|
+
|
|
1
8
|
## 0.0.128 (2025-08-22)
|
|
2
9
|
|
|
3
10
|
### 🚀 Features
|
package/index.mjs
CHANGED
|
@@ -112214,7 +112214,7 @@ let wa = class extends P($y) {
|
|
|
112214
112214
|
* @public
|
|
112215
112215
|
*/
|
|
112216
112216
|
constructor() {
|
|
112217
|
-
super(), this._state = qC.Idle, this._elapsedTime = 0, this._maxDurationTime = 0, this._objectUrl = null, this._canPause = !1, this._recCancel = new at(this, "
|
|
112217
|
+
super(), this._state = qC.Idle, this._elapsedTime = 0, this._maxDurationTime = 0, this._objectUrl = null, this._canPause = !1, this._recCancel = new at(this, "recCancel"), this._recStart = new at(this, "recStart"), this._recPause = new at(this, "recPause"), this._recResume = new at(this, "recResume"), this._recStop = new at(this, "recStop");
|
|
112218
112218
|
}
|
|
112219
112219
|
// #endregion
|
|
112220
112220
|
// #region Properties
|
|
@@ -112390,23 +112390,23 @@ let wa = class extends P($y) {
|
|
|
112390
112390
|
}
|
|
112391
112391
|
};
|
|
112392
112392
|
xi([
|
|
112393
|
-
nt({ eventName: "
|
|
112393
|
+
nt({ eventName: "recCancel" }),
|
|
112394
112394
|
Pr("design:type", Object)
|
|
112395
112395
|
], wa.prototype, "_recCancel", void 0);
|
|
112396
112396
|
xi([
|
|
112397
|
-
nt({ eventName: "
|
|
112397
|
+
nt({ eventName: "recStart" }),
|
|
112398
112398
|
Pr("design:type", Object)
|
|
112399
112399
|
], wa.prototype, "_recStart", void 0);
|
|
112400
112400
|
xi([
|
|
112401
|
-
nt({ eventName: "
|
|
112401
|
+
nt({ eventName: "recPause" }),
|
|
112402
112402
|
Pr("design:type", Object)
|
|
112403
112403
|
], wa.prototype, "_recPause", void 0);
|
|
112404
112404
|
xi([
|
|
112405
|
-
nt({ eventName: "
|
|
112405
|
+
nt({ eventName: "recResume" }),
|
|
112406
112406
|
Pr("design:type", Object)
|
|
112407
112407
|
], wa.prototype, "_recResume", void 0);
|
|
112408
112408
|
xi([
|
|
112409
|
-
nt({ eventName: "
|
|
112409
|
+
nt({ eventName: "recStop" }),
|
|
112410
112410
|
Pr("design:type", Object)
|
|
112411
112411
|
], wa.prototype, "_recStop", void 0);
|
|
112412
112412
|
xi([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.129",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"vite": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
19
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.129",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.129",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|