@code-name-jack/ngx-linkifyjs 15.0.1 → 16.0.1
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 +6 -6
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
Do you have any question or suggestion ? Please do not hesitate to contact us!
|
|
23
23
|
Alternatively, provide a PR | open an appropriate issue [here](https://github.com/anthonynahas/ngx-linkifyjs/issues)
|
|
24
24
|
|
|
25
|
-
If you like this project, support [ngx-linkifyjs](https://github.com/anthonynahas/ngx-linkifyjs)
|
|
25
|
+
If you like this project, support [ngx-linkifyjs](https://github.com/anthonynahas/ngx-linkifyjs)
|
|
26
26
|
by starring :star: and sharing it :loudspeaker:
|
|
27
27
|
|
|
28
28
|
|
|
@@ -65,7 +65,7 @@ Now add the library via the `angular schematics`
|
|
|
65
65
|
ng add ngx-linkifyjs
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
## 2. Install via *npm*. (Alternative)
|
|
68
|
+
## 2. Install via *npm*. (Alternative)
|
|
69
69
|
|
|
70
70
|
Now install `ngx-linkifyjs` via:
|
|
71
71
|
```shell
|
|
@@ -164,8 +164,8 @@ import { NgxLinkifyOptions } from 'ngx-linkifyjs';
|
|
|
164
164
|
|
|
165
165
|
if you prefer to provide your own option to the `pipe`, you can use it like the following:
|
|
166
166
|
|
|
167
|
-
- `{{text | linkify: 'options' }}`
|
|
168
|
-
- `{{text | linkify: '{/*your options*/}' }}`
|
|
167
|
+
- `{{text | linkify: 'options' }}`
|
|
168
|
+
- `{{text | linkify: '{/*your options*/}' }}`
|
|
169
169
|
- `{{text | linkify: '{target {url: "_self" }}' }}`
|
|
170
170
|
|
|
171
171
|
|
|
@@ -387,8 +387,8 @@ $ npm i && npm start
|
|
|
387
387
|
+ Drop an email to: [Anthony Nahas](mailto:anthony.na@hotmail.de)
|
|
388
388
|
+ or open an appropriate [issue](https://github.com/anthonynahas/ngx-linkifyjs/issues)
|
|
389
389
|
+ let us chat on [Gitter](https://gitter.im/angular-material-extensions/Lobby)
|
|
390
|
-
|
|
391
|
-
|
|
390
|
+
|
|
391
|
+
Built by and for developers :heart: we will help you :punch:
|
|
392
392
|
|
|
393
393
|
---
|
|
394
394
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-name-jack/ngx-linkifyjs",
|
|
3
3
|
"description": "Angular wrapper for linkifyjs(v4) - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "16.0.1",
|
|
5
5
|
"homepage": "https://github.com/code-name-jack/ngx-linkifyjs-v2",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Code Name Jack",
|
|
@@ -30,12 +30,20 @@
|
|
|
30
30
|
"bugs": {
|
|
31
31
|
"url": "https://github.com/code-name-jack/ngx-linkifyjs-v2/issues"
|
|
32
32
|
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=16.0.0"
|
|
35
|
+
},
|
|
33
36
|
"peerDependencies": {
|
|
34
|
-
"@angular/common": "
|
|
35
|
-
"@angular/core": "
|
|
37
|
+
"@angular/common": "~16.x",
|
|
38
|
+
"@angular/core": "~16.x",
|
|
39
|
+
"@schematics/angular": "~16.x"
|
|
36
40
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"linkify-plugin-hashtag": "^4.0.2",
|
|
43
|
+
"linkify-plugin-mention": "^4.0.2",
|
|
44
|
+
"linkify-string": "^4.0.2",
|
|
45
|
+
"linkifyjs": "^4.0.2",
|
|
46
|
+
"tslib": "^2.4.1"
|
|
39
47
|
},
|
|
40
48
|
"release-it": {
|
|
41
49
|
"github": {
|
|
@@ -99,13 +107,6 @@
|
|
|
99
107
|
"rollup-plugin-uglify"
|
|
100
108
|
]
|
|
101
109
|
},
|
|
102
|
-
"dependencies": {
|
|
103
|
-
"tslib": "^2.4.1",
|
|
104
|
-
"linkifyjs": "^4.0.2",
|
|
105
|
-
"linkify-plugin-hashtag": "^4.0.2",
|
|
106
|
-
"linkify-plugin-mention": "^4.0.2",
|
|
107
|
-
"linkify-string": "^4.0.2"
|
|
108
|
-
},
|
|
109
110
|
"commitplease": {
|
|
110
111
|
"style": "angular",
|
|
111
112
|
"types": [
|