@praxisui/files-upload 8.0.0-beta.99 → 9.0.0-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 +22 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -47,8 +47,10 @@ Components and services for integrating file uploads with the Praxis backend. Co
|
|
|
47
47
|
|
|
48
48
|
## Documentation
|
|
49
49
|
|
|
50
|
-
- Official documentation: https://praxisui.dev
|
|
50
|
+
- Official documentation: https://praxisui.dev/components/files-upload
|
|
51
51
|
- Quickstart reference app: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
52
|
+
- File management backend: https://github.com/codexrodrigues/praxis-file-management
|
|
53
|
+
- Live Praxis UI demo: https://praxis-ui-4e602.web.app
|
|
52
54
|
- Recommended for: enterprise upload flows with direct upload, presigned URLs, quotas and operational feedback
|
|
53
55
|
|
|
54
56
|
## When to use
|
|
@@ -57,6 +59,25 @@ Components and services for integrating file uploads with the Praxis backend. Co
|
|
|
57
59
|
- Support direct and presigned upload strategies from the same component set
|
|
58
60
|
- Keep upload configuration editable at runtime in Praxis-based hosts
|
|
59
61
|
|
|
62
|
+
## Install
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npm i @praxisui/files-upload@beta
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Peer dependencies:
|
|
69
|
+
- `@angular/core` `^21.0.0`
|
|
70
|
+
- `@angular/common` `^21.0.0`
|
|
71
|
+
- `@angular/forms` `^21.0.0`
|
|
72
|
+
- `@angular/router` `^21.0.0`
|
|
73
|
+
- `@angular/cdk` `^21.0.0`
|
|
74
|
+
- `@angular/material` `^21.0.0`
|
|
75
|
+
- `@praxisui/core` `^9.0.0-beta.0`
|
|
76
|
+
- `@praxisui/dynamic-fields` `^9.0.0-beta.0`
|
|
77
|
+
- `@praxisui/settings-panel` `^9.0.0-beta.0`
|
|
78
|
+
- `@praxisui/ai` `^9.0.0-beta.0`
|
|
79
|
+
- `rxjs` `~7.8.0`
|
|
80
|
+
|
|
60
81
|
## Component Overview
|
|
61
82
|
|
|
62
83
|
Main component selector: `praxis-files-upload`
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/files-upload",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0-beta.0",
|
|
4
4
|
"description": "File upload components and services for Praxis UI with presigned and direct strategies, quotas and rate-limit handling.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/cdk": "^21.0.0",
|
|
8
8
|
"@angular/core": "^21.0.0",
|
|
9
9
|
"@angular/material": "^21.0.0",
|
|
10
|
-
"@praxisui/core": "^
|
|
11
|
-
"@praxisui/dynamic-fields": "^
|
|
12
|
-
"@praxisui/settings-panel": "^
|
|
10
|
+
"@praxisui/core": "^9.0.0-beta.0",
|
|
11
|
+
"@praxisui/dynamic-fields": "^9.0.0-beta.0",
|
|
12
|
+
"@praxisui/settings-panel": "^9.0.0-beta.0",
|
|
13
13
|
"@angular/forms": "^21.0.0",
|
|
14
14
|
"@angular/router": "^21.0.0",
|
|
15
|
-
"@praxisui/ai": "^
|
|
15
|
+
"@praxisui/ai": "^9.0.0-beta.0",
|
|
16
16
|
"rxjs": "~7.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|