wonderful-panda/vue-tsx-support

IframeHTMLAttributes is missing properties

moonquddus opened this issue · 0 comments

Current IframeHTMLAttributes

export interface IframeHTMLAttributes extends HTMLAttributes {
  allowfullscreen?: boolean;
  allowtransparency?: boolean;
  frameborder?: number | string;
  height?: number | string;
  marginheight?: number;
  marginwidth?: number;
  name?: string;
  sandbox?: string;
  scrolling?: string;
  seamless?: boolean;
  src?: string;
  srcdoc?: string;
  width?: number | string;
}

It's missing the following attributes:

Just as a side-note, allowfullscreen is now a legacy attribute, allow="fullscreen" is preferred