dap-design-system 0.44.9 → 0.44.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.
@@ -2834,7 +2834,9 @@ declare const DapDSFeedback_base: typeof DdsElement & {
2834
2834
  * @property {boolean} autoupload - Whether to automatically upload files after selection.
2835
2835
  * @property {number} maxFiles - The maximum number of files that can be uploaded.
2836
2836
  * @property {number} maxFileSize - The maximum size of files that can be uploaded (in bytes).
2837
+ * @property {number} maxSizePerFile - The maximum size a single file can have (in bytes).
2837
2838
  * @property {string} maxFileSizeErrorText - Text for the max file size error.
2839
+ * @property {string} maxSizePerFileErrorText - Text for the max size per file error.
2838
2840
  * @property {string} maxFileAmountErrorText - Text for the max file amount error.
2839
2841
  * @property {string} fileTypeErrorText - Text for the file type error.
2840
2842
  * @property {boolean} showDropzone - Whether to show a separate dropzone area.
@@ -2916,10 +2918,14 @@ export declare class DapDSFileInput extends GenericFormElement {
2916
2918
  fileList: DapDSFileInputList | null;
2917
2919
  /** The maximum number of files that can be uploaded */
2918
2920
  maxFiles?: number;
2919
- /** The maximum size of files that can be uploaded (in bytes) */
2921
+ /** The maximum size of files that can be uploaded (in bytes) sum of all files */
2920
2922
  maxFileSize?: number;
2923
+ /** The maximum size a single file can have (in bytes) */
2924
+ maxSizePerFile?: number;
2921
2925
  /** Text for the max file size error */
2922
2926
  maxFileSizeErrorText?: string;
2927
+ /** Text for the max size per file error */
2928
+ maxSizePerFileErrorText?: string;
2923
2929
  /** Text for the max file amount error */
2924
2930
  maxFileAmountErrorText?: string;
2925
2931
  /** Text for the file type error */