diff --git a/components/lib/inlinemessage/InlineMessage.d.ts b/components/lib/inlinemessage/InlineMessage.d.ts index aebfbf3e8..4b8e93dcf 100755 --- a/components/lib/inlinemessage/InlineMessage.d.ts +++ b/components/lib/inlinemessage/InlineMessage.d.ts @@ -71,6 +71,11 @@ export interface InlineMessageProps { * @deprecated since v3.27.0. Use 'icon' slot. */ icon?: string | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {InlineMessagePassThroughOptions} + */ + pt?: InlineMessagePassThroughOptions; } /** * Defines valid slots in InlineMessage slots. diff --git a/components/lib/message/Message.d.ts b/components/lib/message/Message.d.ts index a9a8c7df3..099b4c88a 100755 --- a/components/lib/message/Message.d.ts +++ b/components/lib/message/Message.d.ts @@ -106,6 +106,11 @@ export interface MessageProps { * Uses to pass all properties of the HTMLButtonElement to the close button. */ closeButtonProps?: ButtonHTMLAttributes | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {MessagePassThroughOptions} + */ + pt?: MessagePassThroughOptions; } /**