vue-is-defined 1.0.2 → 1.0.4
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.github.md +37 -0
- package/README.md +3 -10
- package/README.npm.md +37 -0
- package/banner.svg +9 -13
- package/logo.svg +5 -24
- package/package.json +7 -15
package/README.github.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="banner.svg" alt="vue-is-defined" width="100%" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">vue-is-defined</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center"></p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/v/vue-is-defined.svg" alt="npm version" /></a>
|
|
11
|
+
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/dm/vue-is-defined.svg" alt="npm downloads" /></a>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install vue-is-defined
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
Non-nullish checking type guard for Ref.
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
import { isDefined } from 'vue-is-defined'
|
|
26
|
+
|
|
27
|
+
const example = ref(Math.random() ? 'example' : undefined) // Ref<string | undefined>
|
|
28
|
+
|
|
29
|
+
if (isDefined(example))
|
|
30
|
+
example // Ref<string>
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
36
|
+
|
|
37
|
+
Extracted from [VueUse](https://vueuse.org/) for standalone use.
|
package/README.md
CHANGED
|
@@ -4,15 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
<h1 align="center">vue-is-defined</h1>
|
|
6
6
|
|
|
7
|
-
<p align="center"
|
|
7
|
+
<p align="center"></p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/v/vue-is-defined.svg" alt="npm version" /></a>
|
|
11
11
|
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/dm/vue-is-defined.svg" alt="npm downloads" /></a>
|
|
12
|
-
<a href="https://github.com/vuefrag/vue-is-defined/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/vue-is-defined.svg" alt="license" /></a>
|
|
13
12
|
</p>
|
|
14
13
|
|
|
15
|
-
|
|
16
14
|
## Installation
|
|
17
15
|
|
|
18
16
|
```bash
|
|
@@ -21,10 +19,6 @@ npm install vue-is-defined
|
|
|
21
19
|
|
|
22
20
|
## Usage
|
|
23
21
|
|
|
24
|
-
```ts
|
|
25
|
-
import { isDefined } from 'vue-is-defined';
|
|
26
|
-
```
|
|
27
|
-
|
|
28
22
|
Non-nullish checking type guard for Ref.
|
|
29
23
|
|
|
30
24
|
```ts
|
|
@@ -36,9 +30,8 @@ if (isDefined(example))
|
|
|
36
30
|
example // Ref<string>
|
|
37
31
|
```
|
|
38
32
|
|
|
39
|
-
> Extracted from [VueUse](https://vueuse.org/) for standalone use.
|
|
40
|
-
|
|
41
|
-
|
|
42
33
|
## License
|
|
43
34
|
|
|
44
35
|
MIT
|
|
36
|
+
|
|
37
|
+
Extracted from [VueUse](https://vueuse.org/) for standalone use.
|
package/README.npm.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="logo.svg" alt="vue-is-defined" width="180" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">vue-is-defined</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center"></p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/v/vue-is-defined.svg" alt="npm version" /></a>
|
|
11
|
+
<a href="https://www.npmjs.com/package/vue-is-defined"><img src="https://img.shields.io/npm/dm/vue-is-defined.svg" alt="npm downloads" /></a>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install vue-is-defined
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
Non-nullish checking type guard for Ref.
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
import { isDefined } from 'vue-is-defined'
|
|
26
|
+
|
|
27
|
+
const example = ref(Math.random() ? 'example' : undefined) // Ref<string | undefined>
|
|
28
|
+
|
|
29
|
+
if (isDefined(example))
|
|
30
|
+
example // Ref<string>
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
36
|
+
|
|
37
|
+
Extracted from [VueUse](https://vueuse.org/) for standalone use.
|
package/banner.svg
CHANGED
|
@@ -10,27 +10,27 @@
|
|
|
10
10
|
<rect width="1280" height="640" fill="url(#banner-bg)"/>
|
|
11
11
|
|
|
12
12
|
<!-- Decorative elements -->
|
|
13
|
-
<circle cx="
|
|
14
|
-
<circle cx="
|
|
13
|
+
<circle cx="200" cy="150" r="120" fill="#3498db" opacity="0.06"/>
|
|
14
|
+
<circle cx="1150" cy="500" r="100" fill="#3498db" opacity="0.06"/>
|
|
15
15
|
|
|
16
16
|
<!-- Top accent bar -->
|
|
17
17
|
<rect x="0" y="0" width="1280" height="8" fill="#3498db"/>
|
|
18
18
|
|
|
19
|
-
<!--
|
|
19
|
+
<!-- Vuefrag badge -->
|
|
20
20
|
<g transform="translate(80, 80)">
|
|
21
21
|
<rect width="140" height="50" rx="8" fill="#3498db"/>
|
|
22
|
-
<text x="70" y="33" text-anchor="middle" font-family="system-ui, -apple-system, sans-serif" font-size="22" font-weight="700" fill="white">
|
|
22
|
+
<text x="70" y="33" text-anchor="middle" font-family="system-ui, -apple-system, sans-serif" font-size="22" font-weight="700" fill="white">Vuefrag</text>
|
|
23
23
|
</g>
|
|
24
24
|
|
|
25
25
|
<!-- Package name -->
|
|
26
26
|
<text x="80" y="280" font-family="system-ui, -apple-system, sans-serif" font-size="72" font-weight="700" fill="white">vue-is-defined</text>
|
|
27
27
|
|
|
28
28
|
<!-- Description -->
|
|
29
|
-
<text x="80" y="360" font-family="system-ui, -apple-system, sans-serif" font-size="32" fill="#94a3b8">Vue 3
|
|
29
|
+
<text x="80" y="360" font-family="system-ui, -apple-system, sans-serif" font-size="32" fill="#94a3b8">Vue 3 composable utility</text>
|
|
30
30
|
|
|
31
31
|
<!-- Install command -->
|
|
32
32
|
<g transform="translate(80, 420)">
|
|
33
|
-
<rect width="
|
|
33
|
+
<rect width="441.6" height="60" rx="8" fill="#0f172a"/>
|
|
34
34
|
<text x="20" y="40" font-family="ui-monospace, monospace" font-size="24" fill="#94a3b8">npm install</text>
|
|
35
35
|
<text x="200" y="40" font-family="ui-monospace, monospace" font-size="24" fill="#3498db">vue-is-defined</text>
|
|
36
36
|
</g>
|
|
@@ -41,12 +41,8 @@
|
|
|
41
41
|
<text x="79" y="27" text-anchor="middle" font-family="system-ui, -apple-system, sans-serif" font-size="18" fill="#3498db">Utilities</text>
|
|
42
42
|
</g>
|
|
43
43
|
|
|
44
|
-
<!--
|
|
45
|
-
<g
|
|
46
|
-
<
|
|
47
|
-
<polygon points="100,40 125,90 75,90" fill="#3498db" opacity="0.5"/>
|
|
44
|
+
<!-- Category icon (top right corner) -->
|
|
45
|
+
<g>
|
|
46
|
+
<path d="M1040 120l-40 40 40 40" fill="none" stroke="#3498db" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/><path d="M1120 120l40 40-40 40" fill="none" stroke="#3498db" stroke-width="12" stroke-linecap="round" stroke-linejoin="round"/><line x1="1105" y1="110" x2="1055" y2="190" stroke="#3498db" stroke-width="10" stroke-linecap="round"/>
|
|
48
47
|
</g>
|
|
49
|
-
|
|
50
|
-
<!-- Bottom text -->
|
|
51
|
-
<text x="1200" y="600" text-anchor="end" font-family="system-ui, -apple-system, sans-serif" font-size="18" fill="#64748b">Standalone VueUse function</text>
|
|
52
48
|
</svg>
|
package/logo.svg
CHANGED
|
@@ -1,30 +1,11 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="bg-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" style="stop-color:#2c3e50;stop-opacity:1" />
|
|
5
|
-
<stop offset="100%" style="stop-color:#1a252f;stop-opacity:1" />
|
|
6
|
-
</linearGradient>
|
|
7
|
-
</defs>
|
|
8
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="96" height="96" viewBox="0 0 96 96">
|
|
9
2
|
<!-- Background -->
|
|
10
|
-
<rect width="96" height="96" rx="16" fill="
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
<!-- Vue badge -->
|
|
14
|
-
<g transform="translate(8, 8)">
|
|
15
|
-
<rect width="18" height="9" rx="2" fill="#3498db"/>
|
|
16
|
-
<text x="9" y="6.8" text-anchor="middle" font-family="system-ui, -apple-system, sans-serif" font-size="4.5" font-weight="700" fill="white">VUE</text>
|
|
17
|
-
</g>
|
|
18
|
-
|
|
19
|
-
<!-- Category icon -->
|
|
20
|
-
<g>
|
|
21
|
-
<path d="M42 20l-8 8 8 8" fill="none" stroke="#3498db" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M54 20l8 8-8 8" fill="none" stroke="#3498db" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><line x1="51" y1="18" x2="45" y2="38" stroke="#3498db" stroke-width="2" stroke-linecap="round"/>
|
|
22
|
-
</g>
|
|
3
|
+
<rect width="96" height="96" rx="16" fill="#2c3e50"/>
|
|
23
4
|
|
|
24
|
-
<!--
|
|
25
|
-
<
|
|
5
|
+
<!-- Primary shape -->
|
|
6
|
+
<circle cx="48" cy="42" r="20" fill="#3498db"/>
|
|
26
7
|
|
|
27
|
-
<!--
|
|
8
|
+
<!-- Function name -->
|
|
28
9
|
<text x="48" y="72" text-anchor="middle" font-family="system-ui, -apple-system, sans-serif" font-size="7" fill="#3498db" opacity="0.85">Utilities</text>
|
|
29
10
|
|
|
30
11
|
<!-- Bottom accent line -->
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-is-defined",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Vue 3
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "Vue 3 composable utility",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -15,30 +15,22 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
17
|
"logo.svg",
|
|
18
|
-
"banner.svg"
|
|
18
|
+
"banner.svg",
|
|
19
|
+
"README.md"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
22
|
"build": "unbuild",
|
|
22
|
-
"prepublishOnly": "npm run build"
|
|
23
|
+
"prepublishOnly": "cp README.npm.md README.md && npm run build",
|
|
24
|
+
"postpublish": "cp README.github.md README.md"
|
|
23
25
|
},
|
|
24
26
|
"keywords": [
|
|
25
|
-
"vue",
|
|
26
|
-
"vue3",
|
|
27
|
-
"vue-3",
|
|
28
|
-
"composable",
|
|
29
|
-
"composition-api",
|
|
30
|
-
"vueuse",
|
|
31
|
-
"utility",
|
|
32
|
-
"helper",
|
|
33
|
-
"utils",
|
|
34
27
|
"defined",
|
|
35
28
|
"nullish",
|
|
36
29
|
"type-guard",
|
|
37
30
|
"typescript",
|
|
38
31
|
"check",
|
|
39
32
|
"null",
|
|
40
|
-
"undefined"
|
|
41
|
-
"isDefined"
|
|
33
|
+
"undefined"
|
|
42
34
|
],
|
|
43
35
|
"author": "VueFrag",
|
|
44
36
|
"license": "MIT",
|