@rzl-zone/utils-js 3.2.1-beta.0 → 3.2.3-beta.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 +27 -10
- package/dist/tailwind/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,18 +6,34 @@
|
|
|
6
6
|
🚀 <strong>Rzl Utility JavaScript</strong> 🚀<br/>
|
|
7
7
|
A lightweight, modern TypeScript utility library for Node.js & browser (via bundlers like Webpack/Vite).<br/>
|
|
8
8
|
Provides reusable helpers to simplify your JavaScript / TypeScript projects.<br/>
|
|
9
|
-
<strong>Built with ❤️ by <a href="https://github.com/rzl-app">@rzl-app</a>.</strong>
|
|
9
|
+
<strong>Built with ❤️ by <a href="https://github.com/rzl-app" target="_blank" rel="nofollow noreferrer noopener">@rzl-app</a>.</strong>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<div align="center">
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
<p>
|
|
15
|
+
<a href="https://npmjs.com/package/@rzl-zone/utils-js" target="_blank" rel="nofollow noreferrer noopener">
|
|
16
|
+
<img src="https://img.shields.io/npm/v/@rzl-zone/utils-js?color=blue&style=flat-rounded" alt="Latest Version on NPM" data-canonical-src="https://img.shields.io/npm/v/@rzl-zone/utils-js?color=blue&style=flat-rounded">
|
|
17
|
+
</a>
|
|
18
|
+
<a href="https://npmjs.com/package/@rzl-zone/utils-js" target="_blank" rel="nofollow noreferrer noopener">
|
|
19
|
+
<img src="https://img.shields.io/npm/dt/@rzl-zone/utils-js?style=flat-rounded" alt="Downloads">
|
|
20
|
+
</a>
|
|
21
|
+
<a href="https://nodejs.org/en/" target="_blank" rel="nofollow noreferrer noopener">
|
|
22
|
+
<img src="https://img.shields.io/badge/node-≥16.0.0%20%7C%20≥18.17.0-blue.svg?logo=node.js&style=flat-rounded" alt="Node.js">
|
|
23
|
+
</a>
|
|
24
|
+
<a href="https://github.com/rzl-zone/utils-js/blob/main/CONTRIBUTING.md" target="_blank" rel="nofollow noreferrer noopener">
|
|
25
|
+
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
|
|
26
|
+
</a>
|
|
27
|
+
<a href="https://github.com/rzl-zone/utils-js/blob/main/LICENSE.md" target="_blank" rel="nofollow noreferrer noopener">
|
|
28
|
+
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="GitHub license">
|
|
29
|
+
</a>
|
|
30
|
+
<a href="https://github.com/rzl-zone/utils-js" target="_blank" rel="nofollow noreferrer noopener">
|
|
31
|
+
<img src="https://img.shields.io/badge/GitHub-rzl--zone%2Futils--js-181717?logo=github" alt="GitHub">
|
|
32
|
+
</a>
|
|
33
|
+
<a href="https://github.com/rzl-app" target="_blank" rel="nofollow noreferrer noopener">
|
|
34
|
+
<img src="https://img.shields.io/badge/Repo-on%20GitHub-181717?logo=github&style=flat-rounded" alt="Repo on GitHub">
|
|
35
|
+
</a>
|
|
36
|
+
</p>
|
|
21
37
|
|
|
22
38
|
</div>
|
|
23
39
|
|
|
@@ -44,7 +60,8 @@ Provides reusable helpers to simplify your JavaScript / TypeScript projects.<br/
|
|
|
44
60
|
|
|
45
61
|
- **Node.js `≥ 16.0.0` or `≥ 18.17.0`**
|
|
46
62
|
This package leverages modern JavaScript & TypeScript features that require Node.js version 16.0.0 if not using Next.js, and for Next.js it must follow the official minimum Node.js version requirement depending on the version you use.
|
|
47
|
-
- 🔗 See official Next.js documentation:
|
|
63
|
+
- 🔗 See official Next.js documentation:
|
|
64
|
+
<a href="https://nextjs.org/docs/getting-started/installation#system-requirements" target="_blank" rel="nofollow noreferrer noopener">NextJS Installation Requirements</a>
|
|
48
65
|
|
|
49
66
|
- Works with:
|
|
50
67
|
- ✅ Node.js (16.0.0+) - Without NextJS
|
|
@@ -110,7 +127,7 @@ This package also provides utilities specially built for Next.js environments, n
|
|
|
110
127
|
|
|
111
128
|
<h2 id="detailed-features">💎 Detailed Features</h2>
|
|
112
129
|
|
|
113
|
-
### Full documentation
|
|
130
|
+
### Full documentation <a href="https://docs-rzl-utils-js.vercel.app" target="_blank" rel="nofollow noreferrer noopener">Rzl UtilsJS</a> is **currently under construction** 🏗️.
|
|
114
131
|
#### For now, explore the examples or dive into the source — all utilities are documented via **TSDoc** and typed properly.
|
|
115
132
|
|
|
116
133
|
```ts
|
package/dist/tailwind/index.d.ts
CHANGED
|
@@ -562,4 +562,4 @@ declare const twMergeDefaultV3:(options?:OptionsMergeTwClsV3)=>TwMergeDefaultFnV
|
|
|
562
562
|
* // ➔ "text-xxs" (✅ respects config)
|
|
563
563
|
* ```
|
|
564
564
|
*/
|
|
565
|
-
declare const twMergeDefaultV4:(options?:OptionsMergeTwClsV4)=>TwMergeDefaultFnV4;export{cnV3,cnV4,customCnV3,customCnV4,shouldForwardProp,twMergeDefaultV3,twMergeDefaultV4};
|
|
565
|
+
declare const twMergeDefaultV4:(options?:OptionsMergeTwClsV4)=>TwMergeDefaultFnV4;export{type ClassesValue,cnV3,cnV4,customCnV3,customCnV4,shouldForwardProp,twMergeDefaultV3,twMergeDefaultV4};
|