Procházet zdrojové kódy

fix(types): support contenteditable="plaintext-only" (#8796)

白雾三语 před 2 roky
rodič
revize
26ca89e5cf
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      packages/runtime-dom/src/jsx.ts

+ 1 - 1
packages/runtime-dom/src/jsx.ts

@@ -244,7 +244,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
 
   // Standard HTML Attributes
   accesskey?: string
-  contenteditable?: Booleanish | 'inherit'
+  contenteditable?: Booleanish | 'inherit' | 'plaintext-only'
   contextmenu?: string
   dir?: string
   draggable?: Booleanish