@andrew_l/dom 0.2.18 → 0.2.19
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/README.md +11 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# DOM Toolkit
|
|
2
2
|
|
|
3
|
-
![
|
|
4
|
-
![
|
|
5
|
-
![
|
|
3
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
4
|
+
![license][license-src]
|
|
5
|
+
[![bundle][bundle-src]][bundle-href]
|
|
6
6
|
|
|
7
7
|
This package provides a set of utility functions for common DOM tasks, including handling animations, clipboard operations, and smooth scrolling. These utilities simplify JavaScript development, making it easier to implement dynamic, interactive features while improving performance and user experience.
|
|
8
8
|
|
|
@@ -21,3 +21,11 @@ This package provides a set of utility functions for common DOM tasks, including
|
|
|
21
21
|
- **Streamlined UI Development:** Makes it faster and easier to implement common UI features like animations, clipboard handling, and smooth scrolling.
|
|
22
22
|
- **Improved User Experience:** Smooth transitions and animations enhance the usability and interactivity of your web applications.
|
|
23
23
|
- **Performance-Focused:** Built with performance in mind to ensure your web app runs smoothly even with complex DOM operations.
|
|
24
|
+
|
|
25
|
+
<!-- Badges -->
|
|
26
|
+
|
|
27
|
+
[npm-version-src]: https://img.shields.io/npm/v/@andrew_l/dom?style=flat
|
|
28
|
+
[npm-version-href]: https://npmjs.com/package/@andrew_l/dom
|
|
29
|
+
[bundle-src]: https://img.shields.io/bundlephobia/min/@andrew_l/dom?style=flat
|
|
30
|
+
[bundle-href]: https://bundlephobia.com/result?p=@andrew_l/dom
|
|
31
|
+
[license-src]: https://img.shields.io/npm/l/@andrew_l/dom?style=flat
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrew_l/dom",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19",
|
|
4
4
|
"description": "Utility functions to simplify animations, clipboard operations, and smooth scrolling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"vitest": "^2.1.3"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@andrew_l/toolkit": "0.2.
|
|
35
|
+
"@andrew_l/toolkit": "0.2.19"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "unbuild",
|