wx-svelte-tasklist 2.1.1 → 2.2.1
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/license.txt +1 -1
- package/package.json +5 -5
- package/readme.md +7 -1
- package/whatsnew.md +10 -0
package/license.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wx-svelte-tasklist",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Simple Svelte component for adding a task list section on a page",
|
|
5
5
|
"productTag": "tasklist",
|
|
6
6
|
"productTrial": false,
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://svar.dev/svelte/core/",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"wx-tasklist-locales": "2.
|
|
35
|
+
"wx-tasklist-locales": "2.2.1",
|
|
36
36
|
"wx-lib-data-provider": "1.6.0",
|
|
37
|
-
"wx-svelte-core": "2.
|
|
38
|
-
"wx-lib-dom": "0.
|
|
39
|
-
"wx-lib-state": "1.9.
|
|
37
|
+
"wx-svelte-core": "2.2.1",
|
|
38
|
+
"wx-lib-dom": "0.9.1",
|
|
39
|
+
"wx-lib-state": "1.9.3"
|
|
40
40
|
},
|
|
41
41
|
"files": [
|
|
42
42
|
"src",
|
package/readme.md
CHANGED
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
|
|
15
15
|
</div>
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
**SVAR Svelte Tasklist** is a lightweight and intuitive Svelte UI component for managing task lists or to-do lists. It allows users to add new tasks, edit existing ones, mark tasks as completed, and remove them.
|
|
18
|
+
|
|
19
|
+
<div align="center">
|
|
20
|
+
|
|
21
|
+
<img src="https://svar.dev/images/github/github-tasklist.png" alt="SVAR Svelte TaskList" style="width: 700px;">
|
|
22
|
+
|
|
23
|
+
</div>
|
|
18
24
|
|
|
19
25
|
### How to Use
|
|
20
26
|
|