@stemy/ngx-dynamic-form 19.9.30 → 19.9.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.
|
@@ -138,7 +138,14 @@ export interface FormFieldProps extends FormlyFieldProps {
|
|
|
138
138
|
* Specifies what types of files the file upload component can accept. (.jpg, .png)
|
|
139
139
|
*/
|
|
140
140
|
accept?: string | string[];
|
|
141
|
+
/**
|
|
142
|
+
* Specifies the url the upload component uses for displaying assets (or also for upload if uploadUrl is not defined)
|
|
143
|
+
*/
|
|
141
144
|
url?: string;
|
|
145
|
+
/**
|
|
146
|
+
* Specifies the url the upload component uses for uploading assets
|
|
147
|
+
*/
|
|
148
|
+
uploadUrl?: string;
|
|
142
149
|
maxSize?: number;
|
|
143
150
|
uploadOptions?: HttpRequestOptions;
|
|
144
151
|
createUploadData?: (file: File) => UploadData | Promise<UploadData>;
|
|
@@ -147,7 +154,6 @@ export interface FormFieldProps extends FormlyFieldProps {
|
|
|
147
154
|
*/
|
|
148
155
|
multi?: boolean;
|
|
149
156
|
asFile?: boolean;
|
|
150
|
-
uploadUrl?: string;
|
|
151
157
|
/**
|
|
152
158
|
* Angular material specific props
|
|
153
159
|
*/
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stemy/ngx-dynamic-form",
|
|
3
|
-
"version": "19.9.
|
|
3
|
+
"version": "19.9.32",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"public": true,
|
|
6
6
|
"repository": "https://github.com/stemyke/ngx-dynamic-form.git",
|
|
7
7
|
"author": "stemy <balazs.stemler@metrix.co.hu>",
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@stemy/ngx-utils": ">=19.9.
|
|
9
|
+
"@stemy/ngx-utils": ">=19.9.38",
|
|
10
10
|
"@ngx-formly/core": "^7.1.0",
|
|
11
11
|
"ngx-mask": "^19.0.7",
|
|
12
12
|
"@angular/material": "^19.2.18"
|