@breadstone/mosaik-elements-svelte 0.0.162 → 0.0.164
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 +11 -0
- package/index.mjs +6 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 0.0.164 (2025-10-24)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.0.163 (2025-10-22)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- enhance ChatElement with additional slots for improved functionality ([1dfc91b4ea](https://github.com/RueDeRennes/mosaik/commit/1dfc91b4ea))
|
|
10
|
+
- add DateAgo and TimeAgo pipes, directives, and services for time-based formatting ([40c3e551ba](https://github.com/RueDeRennes/mosaik/commit/40c3e551ba))
|
|
11
|
+
|
|
1
12
|
## 0.0.162 (2025-10-22)
|
|
2
13
|
|
|
3
14
|
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
|
@@ -80811,7 +80811,9 @@ function d9(o) {
|
|
|
80811
80811
|
</div>
|
|
80812
80812
|
`)}
|
|
80813
80813
|
<slot name="header"></slot>
|
|
80814
|
-
<
|
|
80814
|
+
<div part="items">
|
|
80815
|
+
<slot></slot>
|
|
80816
|
+
</div>
|
|
80815
80817
|
<div part="empty">
|
|
80816
80818
|
<slot name="empty"></slot>
|
|
80817
80819
|
</div>
|
|
@@ -115126,6 +115128,9 @@ function HZ(o) {
|
|
|
115126
115128
|
`)}
|
|
115127
115129
|
</div>
|
|
115128
115130
|
</div>
|
|
115131
|
+
<div part="empty">
|
|
115132
|
+
<slot name="empty"></slot>
|
|
115133
|
+
</div>
|
|
115129
115134
|
<div part="footer">
|
|
115130
115135
|
<slot name="input">
|
|
115131
115136
|
<!-- <mosaik-chat-input part="chatInput"
|
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.164",
|
|
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.164",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.164",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|