diff --git a/components/lib/dialog/Dialog.d.ts b/components/lib/dialog/Dialog.d.ts index a7ac0af51..59f734ee6 100755 --- a/components/lib/dialog/Dialog.d.ts +++ b/components/lib/dialog/Dialog.d.ts @@ -75,9 +75,9 @@ export interface DialogPassThroughOptions { */ title?: DialogPassThroughOptionType; /** - * Used to pass attributes to the header icons' DOM element. + * Used to pass attributes to the header actions' DOM element. */ - icons?: DialogPassThroughOptionType; + headerActions?: DialogPassThroughOptionType; /** * Used to pass attributes to the maximizable Button component. * @see {@link ButtonPassThroughOptions} diff --git a/components/lib/dialog/Dialog.vue b/components/lib/dialog/Dialog.vue index 3bafd5389..87919b8f2 100755 --- a/components/lib/dialog/Dialog.vue +++ b/components/lib/dialog/Dialog.vue @@ -9,7 +9,7 @@ {{ header }} -
+
diff --git a/components/lib/fileupload/FileUpload.d.ts b/components/lib/fileupload/FileUpload.d.ts index 3ab950ae8..65a1b7938 100755 --- a/components/lib/fileupload/FileUpload.d.ts +++ b/components/lib/fileupload/FileUpload.d.ts @@ -203,9 +203,9 @@ export interface FileUploadPassThroughOptions { */ input?: FileUploadPassThroughOptionType; /** - * Used to pass attributes to the buttonbar's DOM element. + * Used to pass attributes to the header's DOM element. */ - buttonbar?: FileUploadPassThroughOptionType; + header?: FileUploadPassThroughOptionType; /** * Used to pass attributes to the choose button's DOM element. * @see {@link ButtonPassThroughOptions} @@ -239,13 +239,13 @@ export interface FileUploadPassThroughOptions { */ file?: FileUploadPassThroughOptionType; /** - * Used to pass attributes to the thumbnail's DOM element. + * Used to pass attributes to the file thumbnail's DOM element. */ - thumbnail?: FileUploadPassThroughOptionType; + fileThumbnail?: FileUploadPassThroughOptionType; /** - * Used to pass attributes to the details's DOM element. + * Used to pass attributes to the file info's DOM element. */ - details?: FileUploadPassThroughOptionType; + fileInfo?: FileUploadPassThroughOptionType; /** * Used to pass attributes to the fileName's DOM element. */ @@ -258,16 +258,16 @@ export interface FileUploadPassThroughOptions { * Used to pass attributes to the Badge component. * @see {@link BadgePassThroughOptions} */ - badge?: BadgePassThroughOptions; + fileBadge?: BadgePassThroughOptions; /** - * Used to pass attributes to the actions's DOM element. + * Used to pass attributes to the file actions' DOM element. */ - actions?: FileUploadPassThroughOptionType; + fileActions?: FileUploadPassThroughOptionType; /** - * Used to pass attributes to the remove button's DOM element. + * Used to pass attributes to the file remove button's DOM element. * @see {@link ButtonPassThroughOptions} */ - removeButton?: ButtonPassThroughOptions; + fileRemoveButton?: ButtonPassThroughOptions; /** * Used to pass attributes to the empty's DOM element. */ diff --git a/components/lib/fileupload/FileUpload.vue b/components/lib/fileupload/FileUpload.vue index 9840c92cb..3c409c17b 100755 --- a/components/lib/fileupload/FileUpload.vue +++ b/components/lib/fileupload/FileUpload.vue @@ -1,23 +1,23 @@