diff --git a/components/lib/message/Message.d.ts b/components/lib/message/Message.d.ts index b2e43cec9..2b7394e81 100755 --- a/components/lib/message/Message.d.ts +++ b/components/lib/message/Message.d.ts @@ -52,9 +52,9 @@ export interface MessagePassThroughOptions { */ root?: MessagePassThroughOptionType; /** - * Used to pass attributes to the wrapper's DOM element. + * Used to pass attributes to the content's DOM element. */ - wrapper?: MessagePassThroughOptionType; + content?: MessagePassThroughOptionType; /** * Used to pass attributes to the icon's DOM element. */ diff --git a/components/lib/message/Message.vue b/components/lib/message/Message.vue index e7266fc81..212dd0d2f 100755 --- a/components/lib/message/Message.vue +++ b/components/lib/message/Message.vue @@ -2,7 +2,7 @@
-
+
diff --git a/components/lib/toast/Toast.d.ts b/components/lib/toast/Toast.d.ts index 98bbe17ac..635c8d76f 100755 --- a/components/lib/toast/Toast.d.ts +++ b/components/lib/toast/Toast.d.ts @@ -75,21 +75,17 @@ export interface ToastPassThroughOptions { */ message?: ToastPassThroughOptionType; /** - * Used to pass attributes to the container's DOM element. + * Used to pass attributes to the message content's DOM element. */ - container?: ToastPassThroughOptionType; + messageContent?: ToastPassThroughOptionType; /** - * Used to pass attributes to the content's DOM element. + * Used to pass attributes to the message icon's DOM element. */ - content?: ToastPassThroughOptionType; + messageIcon?: ToastPassThroughOptionType; /** - * Used to pass attributes to the icon's DOM element. + * Used to pass attributes to the message text's DOM element. */ - icon?: ToastPassThroughOptionType; - /** - * Used to pass attributes to the text's DOM element. - */ - text?: ToastPassThroughOptionType; + messageText?: ToastPassThroughOptionType; /** * Used to pass attributes to the summary's DOM element. */ diff --git a/components/lib/toast/ToastMessage.vue b/components/lib/toast/ToastMessage.vue index 0ed084fc3..3b7ca298a 100755 --- a/components/lib/toast/ToastMessage.vue +++ b/components/lib/toast/ToastMessage.vue @@ -1,10 +1,10 @@