@ngflux/ngflux 1.0.6 → 2.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/README.md +38 -9
- package/fesm2022/ngflux-ngflux.mjs +407 -352
- package/fesm2022/ngflux-ngflux.mjs.map +1 -1
- package/lib/components/dialog/boxes/alert/alert.dialog.scss +8 -0
- package/package.json +3 -3
- package/types/ngflux-ngflux.d.ts +23 -21
- package/lib/components/root/root.component.scss +0 -0
package/README.md
CHANGED
|
@@ -1,21 +1,46 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">NgFlux - A Powerful Angular Toolkit</h1>
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="projects/docs//public/assets/images/icon.png" alt="angular-logo" height="120px" />
|
|
5
|
+
<br>
|
|
6
|
+
<em>NgFlux is a powerful, comprehensive toolkit for Angular developers. It provides a robust collection of pre-built UI components, utility services, reusable directives, custom pipes, and functional route guards designed to eliminate boilerplate and accelerate the development of awesome web applications.</em>
|
|
7
|
+
<br>
|
|
8
|
+
</p>
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
<p align="center">
|
|
11
|
+
<a href="https://ngflux.cybos.dev">ngflux.cybos.dev</a>
|
|
12
|
+
</p>
|
|
8
13
|
|
|
9
|
-
|
|
14
|
+
<p align="center">
|
|
15
|
+
<a href="https://www.npmjs.com/package/@ngflux/ngflux" title="NPM version"><img src="https://img.shields.io/npm/v/@ngflux/ngflux.svg?style=flat" alt="" /></a>
|
|
16
|
+
<a href="https://npmcharts.com/compare/@ngflux/ngflux?minimal=true" title="NPM downloads"><img src="https://img.shields.io/npm/dw/@ngflux/ngflux" alt="" /></a>
|
|
17
|
+
<a href="LICENSE" title="MIT License"><img src="https://img.shields.io/github/license/NgFlux/ngflux" alt="" /></a>
|
|
18
|
+
<a href="https://github.com/NgFlux/ngflux/blob/master/CONTRIBUTING.md" title="PRs Welcome"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square" alt="" /></a>
|
|
19
|
+
</p>
|
|
10
20
|
|
|
11
|
-
|
|
12
|
-
|
|
21
|
+
<hr>
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- **Premium Components:** Sleek, customizable, and accessible UI building blocks.
|
|
26
|
+
- **Smart Services:** Utility services that streamline state, notifications, and device detection.
|
|
27
|
+
- **Reusable Directives:** Enhance DOM behavior effortlessly (e.g., click-outside, infinite scroll, tooltips).
|
|
28
|
+
- **Custom Pipes:** Performance-optimized text formatting, date manipulation, and data transformation utilities.
|
|
29
|
+
- **Secure Guards:** Functional route guards to handle authentication, role-based access control (RBAC), and form deactivation.
|
|
30
|
+
- **Modern Angular Native:** Fully built for Modern Angular, supporting Standalone Components, Signals, and RxJS reactive patterns.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Getting Started
|
|
35
|
+
|
|
36
|
+
Visit our [Documentation][wiki-url] for more info.
|
|
13
37
|
|
|
14
38
|
## License
|
|
15
39
|
|
|
16
40
|
NgFlux is freely distributable under the terms of the [MIT license][license-url].
|
|
17
41
|
|
|
18
|
-
|
|
42
|
+
|
|
43
|
+
[wiki-url]: https://ngflux.cybos.dev
|
|
19
44
|
[blog-url]: https://www.cyberpull.com/blog/tag/ngflux
|
|
20
45
|
|
|
21
46
|
[license-image]: https://img.shields.io/github/license/NgFlux/ngflux
|
|
@@ -26,3 +51,7 @@ NgFlux is freely distributable under the terms of the [MIT license][license-url]
|
|
|
26
51
|
|
|
27
52
|
[npm-downloads-image]: https://img.shields.io/npm/dw/@ngflux/ngflux
|
|
28
53
|
[npm-downloads-url]: https://npmcharts.com/compare/@ngflux/ngflux?minimal=true
|
|
54
|
+
|
|
55
|
+
[contrib-image]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
|
|
56
|
+
[contrib-url]: https://github.com/NgFlux/ngflux/blob/main/CONTRIBUTING.md
|
|
57
|
+
|