@praxisui/files-upload 9.0.0-beta.3 → 9.0.0-beta.5
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 +1 -42
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,44 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "Files Upload"
|
|
3
|
-
slug: "files-upload-overview"
|
|
4
|
-
description: "Public npm documentation for @praxisui/files-upload: direct and presigned uploads, validation, rate-limit feedback, form field integration and runtime authoring."
|
|
5
|
-
doc_type: "reference"
|
|
6
|
-
document_kind: "component-overview"
|
|
7
|
-
component: "files-upload"
|
|
8
|
-
category: "components"
|
|
9
|
-
audience:
|
|
10
|
-
- "frontend"
|
|
11
|
-
- "host"
|
|
12
|
-
- "architect"
|
|
13
|
-
level: "intermediate"
|
|
14
|
-
status: "active"
|
|
15
|
-
owner: "praxis-ui"
|
|
16
|
-
tags:
|
|
17
|
-
- "files-upload"
|
|
18
|
-
- "upload"
|
|
19
|
-
- "presign"
|
|
20
|
-
- "validation"
|
|
21
|
-
- "i18n"
|
|
22
|
-
order: 37
|
|
23
|
-
icon: "upload"
|
|
24
|
-
toc: true
|
|
25
|
-
sidebar: true
|
|
26
|
-
search_boost: 0.95
|
|
27
|
-
reading_time: 5
|
|
28
|
-
estimated_setup_time: 20
|
|
29
|
-
version: "1.0"
|
|
30
|
-
related_docs:
|
|
31
|
-
- "host-files-upload-integration"
|
|
32
|
-
- "consumer-integration-quickstart"
|
|
33
|
-
- "host-integration-guide"
|
|
34
|
-
keywords:
|
|
35
|
-
- "praxis files upload"
|
|
36
|
-
- "presigned upload"
|
|
37
|
-
- "upload config"
|
|
38
|
-
- "bulk upload"
|
|
39
|
-
last_updated: "2026-06-16"
|
|
40
|
-
---
|
|
41
|
-
|
|
42
1
|
# @praxisui/files-upload
|
|
43
2
|
|
|
44
3
|
`@praxisui/files-upload` provides Praxis UI components and services for enterprise upload flows. Install it when a host needs direct upload, presigned upload, bulk execution, client-side validation, quota/rate-limit feedback, dynamic-form integration and runtime-editable upload configuration.
|
|
@@ -60,7 +19,7 @@ npm i @praxisui/files-upload@latest
|
|
|
60
19
|
Peer dependencies:
|
|
61
20
|
|
|
62
21
|
- `@angular/common`, `@angular/core`, `@angular/forms`, `@angular/router`, `@angular/cdk`, `@angular/material` `^21.0.0`
|
|
63
|
-
- `@praxisui/core`, `@praxisui/dynamic-fields`, `@praxisui/settings-panel`, `@praxisui/ai` `^9.0.0-beta.
|
|
22
|
+
- `@praxisui/core`, `@praxisui/dynamic-fields`, `@praxisui/settings-panel`, `@praxisui/ai` `^9.0.0-beta.4`
|
|
64
23
|
- `rxjs` `~7.8.0`
|
|
65
24
|
|
|
66
25
|
## Standalone Upload
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/files-upload",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.5",
|
|
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": "^9.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-fields": "^9.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
10
|
+
"@praxisui/core": "^9.0.0-beta.5",
|
|
11
|
+
"@praxisui/dynamic-fields": "^9.0.0-beta.5",
|
|
12
|
+
"@praxisui/settings-panel": "^9.0.0-beta.5",
|
|
13
13
|
"@angular/forms": "^21.0.0",
|
|
14
14
|
"@angular/router": "^21.0.0",
|
|
15
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
15
|
+
"@praxisui/ai": "^9.0.0-beta.5",
|
|
16
16
|
"rxjs": "~7.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|