@praxisui/files-upload 0.0.1 → 1.0.0-beta.10

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -27,7 +27,7 @@ Outputs
27
27
 
28
28
  ```ts
29
29
  import { Component } from "@angular/core";
30
- import { PraxisFilesUpload, FilesUploadConfig, FileMetadata } from "@praxis/files-upload";
30
+ import { PraxisFilesUpload, FilesUploadConfig, FileMetadata } from "@praxisui/files-upload";
31
31
 
32
32
  @Component({
33
33
  standalone: true,
@@ -133,7 +133,7 @@ As traduções padrão podem ser registradas com o objeto `FILES_UPLOAD_PT_BR`:
133
133
 
134
134
  ```ts
135
135
  import { TranslateService } from '@ngx-translate/core';
136
- import { FILES_UPLOAD_PT_BR } from '@praxis/files-upload';
136
+ import { FILES_UPLOAD_PT_BR } from '@praxisui/files-upload';
137
137
 
138
138
  constructor(private translate: TranslateService) {
139
139
  translate.setTranslation('pt-BR', FILES_UPLOAD_PT_BR, true);
@@ -143,7 +143,7 @@ constructor(private translate: TranslateService) {
143
143
  Se nenhuma tradução estiver disponível, o componente utiliza o token `FILES_UPLOAD_TEXTS` como fallback. Para sobrescrever os textos manualmente:
144
144
 
145
145
  ```ts
146
- import { FILES_UPLOAD_TEXTS } from "@praxis/files-upload";
146
+ import { FILES_UPLOAD_TEXTS } from "@praxisui/files-upload";
147
147
 
148
148
  providers: [
149
149
  {
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@praxisui/files-upload",
3
- "version": "0.0.1",
3
+ "version": "1.0.0-beta.10",
4
+ "description": "File upload components and services for Praxis UI with presigned and direct strategies, quotas and rate-limit handling.",
4
5
  "peerDependencies": {
5
6
  "@angular/common": "^20.0.0",
6
7
  "@angular/core": "^20.0.0",
7
8
  "@angular/material": "^20.0.0",
8
9
  "@ngx-translate/core": "^17.0.0",
9
- "@praxisui/settings-panel": "^0.0.1"
10
+ "@praxisui/settings-panel": "^1.0.0-beta.10"
10
11
  },
11
12
  "dependencies": {
12
13
  "tslib": "^2.3.0"
@@ -23,6 +24,13 @@
23
24
  "bugs": {
24
25
  "url": "https://github.com/codexrodrigues/praxis/issues"
25
26
  },
27
+ "keywords": [
28
+ "angular",
29
+ "praxisui",
30
+ "upload",
31
+ "files",
32
+ "ui"
33
+ ],
26
34
  "sideEffects": false,
27
35
  "module": "fesm2022/praxisui-files-upload.mjs",
28
36
  "typings": "index.d.ts",