@fest-lib/dom 0.1.0
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 +21 -0
- package/README.md +57 -0
- package/dist/dom.js +1703 -0
- package/package.json +68 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 unite-2.ts
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<h1 align="center">🏠 DOM.ts 🏠</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<b>Powerful DOM management & manipulation library pack</b>
|
|
5
|
+
</p>
|
|
6
|
+
<p align="center">
|
|
7
|
+
<a href="https://github.com/fest-live/dom.ts"><img src="https://img.shields.io/github/stars/fest-live/dom.ts?style=flat-square" alt="GitHub stars"></a>
|
|
8
|
+
<a href="https://github.com/fest-live/dom.ts/actions"><img src="https://img.shields.io/github/workflow/status/fest-live/dom.ts/CI?style=flat-square" alt="Build Status"></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/dom.ts"><img src="https://img.shields.io/npm/v/dom.ts?style=flat-square" alt="NPM version"></a>
|
|
10
|
+
<a href="https://github.com/fest-live/dom.ts/blob/main/LICENSE"><img src="https://img.shields.io/github/license/fest-live/dom.ts?style=flat-square" alt="License"></a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 🚀 Features
|
|
16
|
+
|
|
17
|
+
- ⚡️ **Ultra-fast** DOM manipulation
|
|
18
|
+
- 🧩 **Modular** architecture
|
|
19
|
+
- 🧰 **Generic API** for flexible usage
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 📦 Installation
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @fest-lib/dom.ts
|
|
27
|
+
# or
|
|
28
|
+
yarn add @fest-lib/dom.ts
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 🔌 Generic API
|
|
34
|
+
|
|
35
|
+
> _API documentation coming soon!_
|
|
36
|
+
|
|
37
|
+
- [ ] **Comprehensive API Reference**
|
|
38
|
+
- [ ] **Usage Examples**
|
|
39
|
+
- [ ] **TypeScript Support**
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 🤝 Contributing
|
|
44
|
+
|
|
45
|
+
Pull requests, issues, and suggestions are welcome!
|
|
46
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
<p align="center">
|
|
51
|
+
<a href="https://github.com/fest-live/dom.ts">
|
|
52
|
+
<img src="https://img.shields.io/badge/Star%20on-GitHub-24292f?logo=github&style=for-the-badge" alt="Star on GitHub"/>
|
|
53
|
+
</a>
|
|
54
|
+
<a href="https://www.npmjs.com/package/dom.ts">
|
|
55
|
+
<img src="https://img.shields.io/badge/View%20on-npm-cc3534?logo=npm&style=for-the-badge" alt="View on npm"/>
|
|
56
|
+
</a>
|
|
57
|
+
</p>
|