@breadstone/mosaik-elements-svelte 0.1.44 → 0.1.46
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 +10 -0
- package/index.mjs +6 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.1.46 (2026-07-07)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **icon:** add IconPipe and update IconNameDirective for new components ([786e6dc8bb](https://github.com/RueDeRennes/mosaik/commit/786e6dc8bb))
|
|
6
|
+
|
|
7
|
+
## 0.1.45 (2026-07-03)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
1
11
|
## 0.1.44 (2026-07-03)
|
|
2
12
|
|
|
3
13
|
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
package/index.mjs
CHANGED
|
@@ -212897,6 +212897,8 @@ xwe([
|
|
|
212897
212897
|
function Swe(e) {
|
|
212898
212898
|
return V`
|
|
212899
212899
|
<mosaik-list part="list">
|
|
212900
|
+
<slot name="caption"
|
|
212901
|
+
slot="header"></slot>
|
|
212900
212902
|
${Pb(e.source, (e) => e, (t) => V`
|
|
212901
212903
|
<mosaik-list-item>
|
|
212902
212904
|
${Pb(e.getItemDefinitions(), (e) => e.key, (e) => V`
|
|
@@ -212904,6 +212906,8 @@ function Swe(e) {
|
|
|
212904
212906
|
`)}
|
|
212905
212907
|
</mosaik-list-item>
|
|
212906
212908
|
`)}
|
|
212909
|
+
<slot name="summary"
|
|
212910
|
+
slot="footer"></slot>
|
|
212907
212911
|
</mosaik-list>
|
|
212908
212912
|
`;
|
|
212909
212913
|
}
|
|
@@ -217019,7 +217023,8 @@ function uTe(e) {
|
|
|
217019
217023
|
@columnsChanged="${e.onColumnsChanged}"
|
|
217020
217024
|
@tableSelectionChanged="${(t) => e.onTableSelectionChanged(t)}"
|
|
217021
217025
|
@tableChooseColumns="${() => e.openEditor()}">
|
|
217022
|
-
<slot
|
|
217026
|
+
<slot name="caption"
|
|
217027
|
+
slot="caption"></slot>
|
|
217023
217028
|
${U(e.allColumnsHidden, () => V`
|
|
217024
217029
|
<mosaik-banner part="banner"
|
|
217025
217030
|
slot="caption"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.46",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@breadstone/mosaik-elements": "0.1.
|
|
15
|
-
"@breadstone/mosaik-elements-foundation": "0.1.
|
|
14
|
+
"@breadstone/mosaik-elements": "0.1.46",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.46",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|