@praxisui/files-upload 8.0.0-beta.30 → 8.0.0-beta.32
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/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/files-upload",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.32",
|
|
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
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/cdk": "^
|
|
8
|
-
"@angular/core": "^
|
|
9
|
-
"@angular/material": "^
|
|
10
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-fields": "^8.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^8.0.0-beta.
|
|
13
|
-
"@angular/forms": "^
|
|
14
|
-
"@angular/router": "^
|
|
15
|
-
"@praxisui/ai": "^8.0.0-beta.
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/cdk": "^21.0.0",
|
|
8
|
+
"@angular/core": "^21.0.0",
|
|
9
|
+
"@angular/material": "^21.0.0",
|
|
10
|
+
"@praxisui/core": "^8.0.0-beta.32",
|
|
11
|
+
"@praxisui/dynamic-fields": "^8.0.0-beta.32",
|
|
12
|
+
"@praxisui/settings-panel": "^8.0.0-beta.32",
|
|
13
|
+
"@angular/forms": "^21.0.0",
|
|
14
|
+
"@angular/router": "^21.0.0",
|
|
15
|
+
"@praxisui/ai": "^8.0.0-beta.32",
|
|
16
16
|
"rxjs": "~7.8.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
@@ -40,14 +40,15 @@
|
|
|
40
40
|
],
|
|
41
41
|
"sideEffects": false,
|
|
42
42
|
"module": "fesm2022/praxisui-files-upload.mjs",
|
|
43
|
-
"typings": "
|
|
43
|
+
"typings": "types/praxisui-files-upload.d.ts",
|
|
44
44
|
"exports": {
|
|
45
45
|
"./package.json": {
|
|
46
46
|
"default": "./package.json"
|
|
47
47
|
},
|
|
48
48
|
".": {
|
|
49
|
-
"types": "./
|
|
49
|
+
"types": "./types/praxisui-files-upload.d.ts",
|
|
50
50
|
"default": "./fesm2022/praxisui-files-upload.mjs"
|
|
51
51
|
}
|
|
52
|
-
}
|
|
52
|
+
},
|
|
53
|
+
"type": "module"
|
|
53
54
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import * as _praxisui_files_upload from '@praxisui/files-upload';
|
|
1
2
|
import * as i0 from '@angular/core';
|
|
2
3
|
import { InjectionToken, OnDestroy, NgZone, OnInit, OnChanges, AfterViewInit, EventEmitter, ViewContainerRef, ChangeDetectorRef, DestroyRef, Provider } from '@angular/core';
|
|
3
4
|
import { FormControl, ValidatorFn, FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
-
import { PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nService, AsyncConfigStorage, ComponentDocMeta,
|
|
5
|
+
import { PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nService, AsyncConfigStorage, ComponentDocMeta, AiCapability, AiCapabilityCategory, AiCapabilityCatalog, AiValueKind, ComponentAuthoringManifest } from '@praxisui/core';
|
|
5
6
|
import { SettingsPanelService, SettingsValueProvider } from '@praxisui/settings-panel';
|
|
6
7
|
import { HttpClient, HttpEvent, HttpHeaders } from '@angular/common/http';
|
|
7
8
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
@@ -512,7 +513,7 @@ declare class PraxisFilesUpload implements OnInit, OnChanges, AfterViewInit, OnD
|
|
|
512
513
|
enableCustomization: boolean;
|
|
513
514
|
uploadSuccess: EventEmitter<FileMetadata>;
|
|
514
515
|
bulkComplete: EventEmitter<BulkUploadResponseData>;
|
|
515
|
-
error: EventEmitter<ApiErrorEnvelope>;
|
|
516
|
+
error: EventEmitter<_praxisui_files_upload.ApiErrorEnvelope>;
|
|
516
517
|
rateLimited: EventEmitter<RateLimitInfo>;
|
|
517
518
|
uploadStart: EventEmitter<UploadStartEvent>;
|
|
518
519
|
uploadProgress: EventEmitter<UploadProgressEvent>;
|
|
@@ -754,7 +755,7 @@ declare class PraxisFilesUploadConfigEditor implements OnInit, SettingsValueProv
|
|
|
754
755
|
baseUrl?: string;
|
|
755
756
|
private state;
|
|
756
757
|
serverLoading: () => boolean;
|
|
757
|
-
serverData: () => EffectiveUploadConfig | undefined;
|
|
758
|
+
serverData: () => _praxisui_files_upload.EffectiveUploadConfig | undefined;
|
|
758
759
|
serverError: () => unknown;
|
|
759
760
|
get uiGroup(): FormGroup;
|
|
760
761
|
get dropzoneGroup(): FormGroup;
|