silentium-validation 0.0.2 → 0.0.3
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 +8 -0
- package/README.md +11 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.3](https://github.com/silentium-lab/silentium-validation/compare/v0.0.2...v0.0.3) (2025-12-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **main:** fix links in package json ([5e42621](https://github.com/silentium-lab/silentium-validation/commit/5e42621f10e90a334f8e45d722787e3029f034ac))
|
|
11
|
+
* **main:** readme header ([af23f16](https://github.com/silentium-lab/silentium-validation/commit/af23f168abc06789f2d634bfe4d04e3b549d9661))
|
|
12
|
+
|
|
5
13
|
### 0.0.2 (2025-12-02)
|
|
6
14
|
|
|
7
15
|
|
package/README.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://silentium-lab.github.io/silentium/#/en/" target="_blank" rel="noopener noreferrer" style="display:flex">
|
|
3
|
+
<img width="180" src="https://silentium-lab.github.io/silentium/assets/img/logo.svg" alt="logo">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
<h1 align="center">Silentium Validation</h1>
|
|
7
|
+
<br/>
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://npmjs.com/package/silentium"><img src="https://img.shields.io/npm/v/silentium-validation.svg" alt="npm package"></a>
|
|
10
|
+
</p>
|
|
11
|
+
<br/>
|
|
2
12
|
|
|
3
13
|
A reactive validation library built on the Silentium library for TypeScript applications. Provides asynchronous and reactive validation capabilities with a simple, composable API.
|
|
4
14
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silentium-validation",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Validation library based on silentium",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Silentium Lab",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"main": "dist/
|
|
9
|
-
"module": "dist/
|
|
10
|
-
"typings": "dist/
|
|
8
|
+
"main": "dist/silentium_validation.js",
|
|
9
|
+
"module": "dist/silentium_validation.mjs",
|
|
10
|
+
"typings": "dist/silentium_validation.d.ts",
|
|
11
11
|
"keywords": [
|
|
12
12
|
"validation",
|
|
13
13
|
"vanilla",
|