@masterteam/components 0.0.173 → 0.0.174
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/assets/common.css +1 -1
- package/fesm2022/masterteam-components-entities.mjs +16 -2
- package/fesm2022/masterteam-components-entities.mjs.map +1 -1
- package/fesm2022/masterteam-components-upload-field.mjs +49 -4
- package/fesm2022/masterteam-components-upload-field.mjs.map +1 -1
- package/fesm2022/masterteam-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/masterteam-components-entities.d.ts +2 -0
- package/types/masterteam-components-upload-field.d.ts +1 -1
- package/types/masterteam-components.d.ts +2 -2
|
@@ -14,7 +14,7 @@ declare class UploadField implements ControlValueAccessor {
|
|
|
14
14
|
readonly userImgClass: _angular_core.InputSignal<string | undefined>;
|
|
15
15
|
readonly shape: _angular_core.InputSignal<"circle" | "field" | "card">;
|
|
16
16
|
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
17
|
-
readonly accept: _angular_core.InputSignal<string | undefined>;
|
|
17
|
+
readonly accept: _angular_core.InputSignal<string | string[] | undefined>;
|
|
18
18
|
readonly isDragging: _angular_core.ModelSignal<boolean>;
|
|
19
19
|
readonly fileSizeLimit: _angular_core.InputSignal<number | undefined>;
|
|
20
20
|
readonly: _angular_core.InputSignal<boolean>;
|
|
@@ -230,7 +230,7 @@ declare class UploadFileFieldConfig extends BaseFieldConfig {
|
|
|
230
230
|
userImgClass?: string;
|
|
231
231
|
shape?: string;
|
|
232
232
|
multiple?: boolean;
|
|
233
|
-
accept?: string;
|
|
233
|
+
accept?: string | string[];
|
|
234
234
|
fileSizeLimit?: number | undefined;
|
|
235
235
|
context: HttpContext | undefined;
|
|
236
236
|
title: string;
|
|
@@ -241,7 +241,7 @@ declare class UploadFileFieldConfig extends BaseFieldConfig {
|
|
|
241
241
|
userImgClass?: string;
|
|
242
242
|
shape?: string;
|
|
243
243
|
multiple?: boolean;
|
|
244
|
-
accept?: string;
|
|
244
|
+
accept?: string | string[];
|
|
245
245
|
fileSizeLimit?: number | undefined;
|
|
246
246
|
context?: HttpContext | undefined;
|
|
247
247
|
title?: string;
|