@breadstone/mosaik-elements-svelte 0.0.268 → 0.0.269
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 +6 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 0.0.269 (2026-05-12)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **validators:** add dateNotBefore and dateNotAfter validation functions ([cea71f1773](https://github.com/RueDeRennes/mosaik/commit/cea71f1773))
|
|
6
|
+
|
|
1
7
|
## 0.0.268 (2026-05-12)
|
|
2
8
|
|
|
3
9
|
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
|
@@ -55446,15 +55446,18 @@ function cj(e) {
|
|
|
55446
55446
|
<div part="detail">
|
|
55447
55447
|
${U(e.error.trim().length, () => V`
|
|
55448
55448
|
<mosaik-error part="error"
|
|
55449
|
-
.text="${e.error}"
|
|
55449
|
+
.text="${e.error}"
|
|
55450
|
+
.textOverflow="${"wrap"}"></mosaik-error>
|
|
55450
55451
|
`)}
|
|
55451
55452
|
${U(e.validationMessage.trim().length, () => V`
|
|
55452
55453
|
<mosaik-error part="error"
|
|
55453
|
-
.text="${e.validationMessage}"
|
|
55454
|
+
.text="${e.validationMessage}"
|
|
55455
|
+
.textOverflow="${"wrap"}"></mosaik-error>
|
|
55454
55456
|
`)}
|
|
55455
55457
|
${U(e.hint.trim().length, () => V`
|
|
55456
55458
|
<mosaik-hint part="hint"
|
|
55457
|
-
.text="${e.hint}"
|
|
55459
|
+
.text="${e.hint}"
|
|
55460
|
+
.textOverflow="${"wrap"}"></mosaik-hint>
|
|
55458
55461
|
`)}
|
|
55459
55462
|
</div>
|
|
55460
55463
|
`)}
|
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.269",
|
|
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.269",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.269"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|