p3x-angular-compile 2024.10.104 → 2025.4.103
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 +23 -5
- package/lib/angular-compile.component.ts +6 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
# 🆖 Angular Dynamic Compile - Convert strings to Angular components
|
|
9
|
+
# 🆖 Angular Dynamic Compile - Convert strings to Angular components v2025.4.103
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
### Built on NodeJs version
|
|
21
21
|
|
|
22
22
|
```txt
|
|
23
|
-
v22.
|
|
23
|
+
v22.13.0
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
|
|
@@ -29,7 +29,7 @@ v22.3.0
|
|
|
29
29
|
# Built on Angular
|
|
30
30
|
|
|
31
31
|
```text
|
|
32
|
-
|
|
32
|
+
19.0.6
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
|
|
@@ -297,6 +297,24 @@ If you want very small bundle, use ```gzip```.
|
|
|
297
297
|
---
|
|
298
298
|
|
|
299
299
|
|
|
300
|
+
## Quick and Affordable Web Development Services
|
|
301
|
+
|
|
302
|
+
If you want to quickly and affordably develop your next digital project, visit [corifeus.hu](https://corifeus.hu) for expert solutions tailored to your needs.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## Powerful Online Networking Tool
|
|
307
|
+
|
|
308
|
+
Discover the powerful and free online networking tool at [network.corifeus.com](https://network.corifeus.com).
|
|
309
|
+
|
|
310
|
+
**Free**
|
|
311
|
+
Designed for professionals and enthusiasts, this tool provides essential features for network analysis, troubleshooting, and management.
|
|
312
|
+
Additionally, it offers tools for:
|
|
313
|
+
- Monitoring TCP, HTTP, and Ping to ensure optimal network performance and reliability.
|
|
314
|
+
- Status page management to track uptime, performance, and incidents in real time with customizable dashboards.
|
|
315
|
+
|
|
316
|
+
All these features are completely free to use.
|
|
317
|
+
|
|
300
318
|
## Support Our Open-Source Project ❤️
|
|
301
319
|
If you appreciate our work, consider starring this repository or making a donation to support server maintenance and ongoing development. Your support means the world to us—thank you!
|
|
302
320
|
|
|
@@ -304,7 +322,7 @@ If you appreciate our work, consider starring this repository or making a donati
|
|
|
304
322
|
Our server may occasionally be down, but please be patient. Typically, it will be back online within 15-30 minutes. We appreciate your understanding.
|
|
305
323
|
|
|
306
324
|
### About My Domains
|
|
307
|
-
All my domains, including [patrikx3.com](https://patrikx3.com) and [corifeus.com](https://corifeus.com), are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.
|
|
325
|
+
All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.hu](https://corifeus.hu) and [corifeus.com](https://corifeus.com), are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.
|
|
308
326
|
|
|
309
327
|
### Versioning Policy
|
|
310
328
|
**Version Structure:** We follow a Major.Minor.Patch versioning scheme:
|
|
@@ -317,7 +335,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com) and [corifeus.com
|
|
|
317
335
|
---
|
|
318
336
|
|
|
319
337
|
|
|
320
|
-
[**P3X-ANGULAR-COMPILE**](https://corifeus.com/angular-compile) Build
|
|
338
|
+
[**P3X-ANGULAR-COMPILE**](https://corifeus.com/angular-compile) Build v2025.4.103
|
|
321
339
|
|
|
322
340
|
[](https://www.npmjs.com/package/p3x-angular-compile) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [](https://www.patrikx3.com/en/front/contact) [](https://www.facebook.com/corifeus.software)
|
|
323
341
|
|
|
@@ -54,7 +54,8 @@ function nextId(): string {
|
|
|
54
54
|
<ng-container *ngIf="renderComponent">
|
|
55
55
|
<ng-container *ngComponentOutlet="dynamicComponent; ngModuleFactory: dynamicModule;"></ng-container>
|
|
56
56
|
</ng-container>
|
|
57
|
-
|
|
57
|
+
`,
|
|
58
|
+
standalone: false
|
|
58
59
|
})
|
|
59
60
|
@Injectable()
|
|
60
61
|
export class CompileAttribute implements OnChanges {
|
|
@@ -192,9 +193,10 @@ export class CompileAttribute implements OnChanges {
|
|
|
192
193
|
const selector: string = nextId()
|
|
193
194
|
|
|
194
195
|
@Component({
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
196
|
+
selector: selector,
|
|
197
|
+
template: html,
|
|
198
|
+
standalone: false
|
|
199
|
+
})
|
|
198
200
|
class DynamicComponent {
|
|
199
201
|
context: any = context;
|
|
200
202
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "p3x-angular-compile",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2025.4.103",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^13.0.0",
|
|
6
6
|
"@angular/core": "^13.0.0"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"publish": true
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"corifeus-builder": "^
|
|
13
|
+
"corifeus-builder": "^2025.4.103"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.0.0"
|