@breadstone/mosaik-elements-svelte 0.0.106 → 0.0.107
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 +6 -0
- package/index.mjs +4 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 0.0.107 (2025-08-15)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **instructions:** add guideline for using "const object + derived union" pattern chore: update release version to 0.0.106 ([28ffdf76fb](https://github.com/RueDeRennes/mosaik/commit/28ffdf76fb))
|
|
6
|
+
|
|
1
7
|
## 0.0.106 (2025-08-15)
|
|
2
8
|
|
|
3
9
|
### 🚀 Features
|
package/index.mjs
CHANGED
|
@@ -58171,7 +58171,10 @@ class x7 {
|
|
|
58171
58171
|
* @public
|
|
58172
58172
|
*/
|
|
58173
58173
|
addTranslations(t, e) {
|
|
58174
|
-
this._translations[t] =
|
|
58174
|
+
this._translations[t] = {
|
|
58175
|
+
...this._translations[t],
|
|
58176
|
+
...e
|
|
58177
|
+
};
|
|
58175
58178
|
}
|
|
58176
58179
|
/**
|
|
58177
58180
|
* Translates the given key.
|
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.107",
|
|
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.107",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.107",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|