New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hydroxide-jsx

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hydroxide-jsx - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

2

package.json
{
"name": "hydroxide-jsx",
"description": "JSX type definitions for hydroxide framework",
"version": "0.7.0",
"version": "0.8.0",
"types": "jsx-runtime.d.ts",

@@ -6,0 +6,0 @@ "scripts": {

@@ -5,45 +5,45 @@ import { CallbackTuple, EventHandler } from '../common'

| 'copy'
| 'copyCapture'
| 'copycapture'
| 'cut'
| 'cutCapture'
| 'cutcapture'
| 'paste'
| 'pasteCapture'
| 'pastecapture'
type CompositionEvents =
| 'compositionEnd'
| 'compositionEndCapture'
| 'compositionStart'
| 'compositionStartCapture'
| 'compositionUpdate'
| 'compositionUpdateCapture?'
| 'compositionend'
| 'compositionendcapture'
| 'compositionstart'
| 'compositionstartcapture'
| 'compositionupdate'
| 'compositionupdatecapture?'
type FocusEvents = 'focus' | 'focusCapture' | 'blur' | 'blurCapture'
type FocusEvents = 'focus' | 'focuscapture' | 'blur' | 'blurcapture'
type FormEvents =
| 'change'
| 'changeCapture'
| 'beforeInput'
| 'beforeInputCapture'
| 'changecapture'
| 'beforeinput'
| 'beforeinputcapture'
| 'input'
| 'inputCapture'
| 'inputcapture'
| 'reset'
| 'resetCapture'
| 'resetcapture'
| 'submit'
| 'submitCapture'
| 'submitcapture'
| 'invalid'
| 'invalidCapture'
| 'invalidcapture'
type ImageEvents =
| 'load'
| 'loadCapture'
| 'loadcapture'
| 'error' // also a Media Event
| 'errorCapture' // also a Media Event
| 'errorcapture' // also a Media Event
type KeyBoardEvents =
| 'keyDown'
| 'keyDownCapture'
| 'keyPress'
| 'keyPressCapture'
| 'keyUp'
| 'keyUpCapture'
| 'keydown'
| 'keydowncapture'
| 'keypress'
| 'keypresscapture'
| 'keyup'
| 'keyupcapture'

@@ -53,133 +53,133 @@ // Media Events

| 'abort'
| 'abortCapture'
| 'canPlay'
| 'canPlayCapture'
| 'canPlayThrough'
| 'canPlayThroughCapture'
| 'durationChange'
| 'durationChangeCapture'
| 'abortcapture'
| 'canplay'
| 'canplaycapture'
| 'canplaythrough'
| 'canplaythroughcapture'
| 'durationchange'
| 'durationchangecapture'
| 'emptied'
| 'emptiedCapture'
| 'emptiedcapture'
| 'encrypted'
| 'encryptedCapture'
| 'encryptedcapture'
| 'ended'
| 'endedCapture'
| 'loadedData'
| 'loadedDataCapture'
| 'loadedMetadata'
| 'loadedMetadataCapture'
| 'loadStart'
| 'loadStartCapture'
| 'endedcapture'
| 'loadeddata'
| 'loadeddatacapture'
| 'loadedmetadata'
| 'loadedmetadatacapture'
| 'loadstart'
| 'loadstartcapture'
| 'pause'
| 'pauseCapture'
| 'pausecapture'
| 'play'
| 'playCapture'
| 'playcapture'
| 'playing'
| 'playingCapture'
| 'playingcapture'
| 'progress'
| 'progressCapture'
| 'rateChange'
| 'rateChangeCapture'
| 'progresscapture'
| 'ratechange'
| 'ratechangecapture'
| 'seeked'
| 'seekedCapture'
| 'seekedcapture'
| 'seeking'
| 'seekingCapture'
| 'seekingcapture'
| 'stalled'
| 'stalledCapture'
| 'stalledcapture'
| 'suspend'
| 'suspendCapture'
| 'timeUpdate'
| 'timeUpdateCapture'
| 'volumeChange'
| 'volumeChangeCapture'
| 'suspendcapture'
| 'timeupdate'
| 'timeupdatecapture'
| 'volumechange'
| 'volumechangecapture'
| 'waiting'
| 'waitingCapture'
| 'waitingcapture'
type MouseEvents =
| 'auxClick'
| 'auxClickCapture'
| 'auxclick'
| 'auxclickcapture'
| 'click'
| 'clickCapture'
| 'contextMenu'
| 'contextMenuCapture'
| 'doubleClick'
| 'doubleClickCapture'
| 'mouseDown'
| 'mouseDownCapture'
| 'mouseEnter'
| 'mouseLeave'
| 'mouseMove'
| 'mouseMoveCapture'
| 'mouseOut'
| 'mouseOutCapture'
| 'mouseOver'
| 'mouseOverCapture'
| 'mouseUp'
| 'mouseUpCapture'
| 'clickcapture'
| 'contextmenu'
| 'contextmenucapture'
| 'doubleclick'
| 'doubleclickcapture'
| 'mousedown'
| 'mousedowncapture'
| 'mouseenter'
| 'mouseleave'
| 'mousemove'
| 'mousemovecapture'
| 'mouseout'
| 'mouseoutcapture'
| 'mouseover'
| 'mouseovercapture'
| 'mouseup'
| 'mouseupcapture'
type DragEvents =
| 'drag'
| 'dragCapture'
| 'dragEnd'
| 'dragEndCapture'
| 'dragEnter'
| 'dragEnterCapture'
| 'dragExit'
| 'dragExitCapture'
| 'dragLeave'
| 'dragLeaveCapture'
| 'dragOver'
| 'dragOverCapture'
| 'dragStart'
| 'dragStartCapture'
| 'dragcapture'
| 'dragend'
| 'dragendcapture'
| 'dragenter'
| 'dragentercapture'
| 'dragexit'
| 'dragexitcapture'
| 'dragleave'
| 'dragleavecapture'
| 'dragover'
| 'dragovercapture'
| 'dragstart'
| 'dragstartcapture'
| 'drop'
| 'dropCapture'
| 'dropcapture'
type SelectionEvents = 'select' | 'selectCapture'
type SelectionEvents = 'select' | 'selectcapture'
type TouchEvents =
| 'touchCancel'
| 'touchCancelCapture'
| 'touchEnd'
| 'touchEndCapture'
| 'touchMove'
| 'touchMoveCapture'
| 'touchStart'
| 'touchStartCapture'
| 'touchcancel'
| 'touchcancelcapture'
| 'touchend'
| 'touchendcapture'
| 'touchmove'
| 'touchmovecapture'
| 'touchstart'
| 'touchstartcapture'
type PointerEvents =
| 'pointerDown'
| 'pointerDownCapture'
| 'pointerMove'
| 'pointerMoveCapture'
| 'pointerUp'
| 'pointerUpCapture'
| 'pointerCancel'
| 'pointerCancelCapture'
| 'pointerEnter'
| 'pointerEnterCapture'
| 'pointerLeave'
| 'pointerLeaveCapture'
| 'pointerOver'
| 'pointerOverCapture'
| 'pointerOut'
| 'pointerOutCapture'
| 'gotPointerCapture'
| 'gotPointerCaptureCapture'
| 'lostPointerCapture'
| 'lostPointerCaptureCapture'
| 'pointerdown'
| 'pointerdowncapture'
| 'pointermove'
| 'pointermovecapture'
| 'pointerup'
| 'pointerupcapture'
| 'pointercancel'
| 'pointercancelcapture'
| 'pointerenter'
| 'pointerentercapture'
| 'pointerleave'
| 'pointerleavecapture'
| 'pointerover'
| 'pointerovercapture'
| 'pointerout'
| 'pointeroutcapture'
| 'gotpointercapture'
| 'gotpointercapturecapture'
| 'lostpointercapture'
| 'lostpointercapturecapture'
type UIEvents = 'scroll' | 'scrollCapture'
type UIEvents = 'scroll' | 'scrollcapture'
type WheelEvents = 'wheel' | 'wheelCapture'
type WheelEvents = 'wheel' | 'wheelcapture'
type AnimationEvents =
| 'animationStart'
| 'animationStartCapture'
| 'animationEnd'
| 'animationEndCapture'
| 'animationIteration'
| 'animationIterationCapture'
| 'animationstart'
| 'animationstartcapture'
| 'animationend'
| 'animationendcapture'
| 'animationiteration'
| 'animationiterationcapture'
type TransitionEvents = 'transitionEnd' | 'transitionEndCapture'
type TransitionEvents = 'transitionend' | 'transitionendcapture'

@@ -186,0 +186,0 @@ type EventHandlerOrTuple<T> = EventHandler<T> | CallbackTuple

@@ -12,5 +12,4 @@ import { Booleanish, numOrStr, SpecialAttributes } from '../common'

class?: string
className?: string
contentEditable?: Booleanish | 'inherit'
contextMenu?: string
contenteditable?: Booleanish | 'inherit'
contextmenu?: string
dir?: string

@@ -30,3 +29,3 @@ draggable?: Booleanish

// Unknown
radioGroup?: string // <command>, <menuitem>
radiogroup?: string // <command>, <menuitem>

@@ -47,11 +46,11 @@ // WAI-ARIA

// Non-standard Attributes
autoCapitalize?: string
autoCorrect?: string
autoSave?: string
autocapitalize?: string
autocorrect?: string
autosave?: string
color?: string
itemProp?: string
itemScope?: boolean
itemType?: string
itemID?: string
itemRef?: string
itemprop?: string
itemscope?: boolean
itemtype?: string
itemid?: string
itemref?: string
results?: number

@@ -66,3 +65,3 @@ security?: string

*/
inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'

@@ -79,28 +78,31 @@ /**

accept?: string
acceptCharset?: string
acceptcharset?: string
action?: string
allowFullScreen?: boolean
allowTransparency?: boolean
allowfullScreen?: boolean
allowtransparency?: boolean
alt?: string
as?: string
async?: boolean
autoComplete?: string
autoFocus?: boolean
autoPlay?: boolean
// auto
autocomplete?: string
autofocus?: boolean
autoplay?: boolean
capture?: boolean | 'user' | 'environment'
cellPadding?: numOrStr
cellSpacing?: numOrStr
charSet?: string
cellpadding?: numOrStr
cellspacing?: numOrStr
charset?: string
challenge?: string
checked?: boolean
cite?: string
classID?: string
classid?: string
cols?: number
colSpan?: number
colspan?: number
content?: string
controls?: boolean
coords?: string
crossOrigin?: string
crossorigin?: string
data?: string
dateTime?: string
datetime?: string
default?: boolean

@@ -110,9 +112,11 @@ defer?: boolean

download?: any
encType?: string
enctype?: string
// form
form?: string
formAction?: string
formEncType?: string
formMethod?: string
formNoValidate?: boolean
formTarget?: string
formaction?: string
formcnctype?: string
formmethod?: string
formnovalidate?: boolean
formtarget?: string
frameBorder?: numOrStr

@@ -123,8 +127,8 @@ headers?: string

href?: string
hrefLang?: string
hreflang?: string
for?: string
httpEquiv?: string
httpequiv?: string
integrity?: string
keyParams?: string
keyType?: string
keyparams?: string
keytype?: string
kind?: string

@@ -136,11 +140,11 @@ label?: string

manifest?: string
marginHeight?: number
marginWidth?: number
marginheight?: number
marginwidth?: number
max?: numOrStr
maxLength?: number
maxlength?: number
media?: string
mediaGroup?: string
mediagroup?: string
method?: string
min?: numOrStr
minLength?: number
minlength?: number
multiple?: boolean

@@ -150,3 +154,3 @@ muted?: boolean

nonce?: string
noValidate?: boolean
novalidate?: boolean
open?: boolean

@@ -156,6 +160,6 @@ optimum?: number

placeholder?: string
playsInline?: boolean
playsinline?: boolean
poster?: string
preload?: string
readOnly?: boolean
readonly?: boolean
rel?: string

@@ -165,3 +169,3 @@ required?: boolean

rows?: number
rowSpan?: number
rowspan?: number
sandbox?: string

@@ -178,5 +182,5 @@ scope?: string

src?: string
srcDoc?: string
srcLang?: string
srcSet?: string
srcdoc?: string
srclang?: string
srcset?: string
start?: number

@@ -187,3 +191,3 @@ step?: numOrStr

type?: string
useMap?: string
usemap?: string
value?: string | ReadonlyArray<string> | number

@@ -190,0 +194,0 @@ width?: numOrStr

@@ -5,3 +5,3 @@ import { HTMLAttributes } from './html-attributes'

/** automatically start playing media as soon as it can do so without stopping */
autoPlay?: boolean
autoplay?: boolean

@@ -12,6 +12,6 @@ /** Specifies that media controls should be displayed (such as a play/pause button etc) */

/** returns a DOMTokenList that helps the user agent select what controls to show on the media element whenever the user agent shows its own set of controls */
controlsList?: string
controlslist?: string
/** defines how the element handles cross-origin requests */
crossOrigin?: string
crossorigin?: string

@@ -21,3 +21,3 @@ /** Specifies that the media will start over again, every time it is finished */

mediaGroup?: string
mediagroup?: string

@@ -27,3 +27,3 @@ /** Specifies that the audio output should be muted */

playsInline?: boolean
playsinline?: boolean

@@ -30,0 +30,0 @@ /** Specifies if and how the media should be loaded when the page loads */

@@ -8,3 +8,3 @@ import { Booleanish, numOrStr } from '../common'

// Attributes which also defined in HTMLAttributes
className?: string
class?: string
color?: string

@@ -26,10 +26,10 @@ height?: numOrStr

role?: AriaRole
tabIndex?: number
crossOrigin?: 'anonymous' | 'use-credentials' | ''
tabindex?: number
crossorigin?: 'anonymous' | 'use-credentials' | ''
// SVG Specific attributes
accentHeight?: numOrStr
accentheight?: numOrStr
accumulate?: 'none' | 'sum'
additive?: 'replace' | 'sum'
alignmentBaseline?:
alignmentbaseline?:
| 'auto'

@@ -49,14 +49,14 @@ | 'baseline'

| undefined
allowReorder?: 'no' | 'yes'
allowreorder?: 'no' | 'yes'
alphabetic?: numOrStr
amplitude?: numOrStr
arabicForm?: 'initial' | 'medial' | 'terminal' | 'isolated'
arabicform?: 'initial' | 'medial' | 'terminal' | 'isolated'
ascent?: numOrStr
attributeName?: string
attributeType?: string
autoReverse?: Booleanish
attributename?: string
attributetype?: string
autoreverse?: Booleanish
azimuth?: numOrStr
baseFrequency?: numOrStr
baselineShift?: numOrStr
baseProfile?: numOrStr
basefrequency?: numOrStr
baselineshift?: numOrStr
baseprofile?: numOrStr
bbox?: numOrStr

@@ -66,14 +66,14 @@ begin?: numOrStr

by?: numOrStr
calcMode?: numOrStr
capHeight?: numOrStr
calcmode?: numOrStr
capheight?: numOrStr
clip?: numOrStr
clipPath?: string
clipPathUnits?: numOrStr
clipRule?: numOrStr
colorInterpolation?: numOrStr
colorInterpolationFilters?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit'
colorProfile?: numOrStr
colorRendering?: numOrStr
contentScriptType?: numOrStr
contentStyleType?: numOrStr
clippath?: string
clippathunits?: numOrStr
cliprule?: numOrStr
colorinterpolation?: numOrStr
colorinterpolationfilters?: 'auto' | 'srgb' | 'linearrgb' | 'inherit'
colorprofile?: numOrStr
colorrendering?: numOrStr
contentscripttype?: numOrStr
contentstyletype?: numOrStr
cursor?: numOrStr

@@ -85,32 +85,32 @@ cx?: numOrStr

descent?: numOrStr
diffuseConstant?: numOrStr
diffuseconstant?: numOrStr
direction?: numOrStr
display?: numOrStr
divisor?: numOrStr
dominantBaseline?: numOrStr
dominantbaseline?: numOrStr
dur?: numOrStr
dx?: numOrStr
dy?: numOrStr
edgeMode?: numOrStr
edgemode?: numOrStr
elevation?: numOrStr
enableBackground?: numOrStr
enablebackground?: numOrStr
end?: numOrStr
exponent?: numOrStr
externalResourcesRequired?: Booleanish
externalresourcesrequired?: Booleanish
fill?: string
fillOpacity?: numOrStr
fillRule?: 'nonzero' | 'evenodd' | 'inherit'
fillopacity?: numOrStr
fillrule?: 'nonzero' | 'evenodd' | 'inherit'
filter?: string
filterRes?: numOrStr
filterUnits?: numOrStr
floodColor?: numOrStr
floodOpacity?: numOrStr
filterres?: numOrStr
filterunits?: numOrStr
floodcolor?: numOrStr
floodopacity?: numOrStr
focusable?: Booleanish | 'auto'
fontFamily?: string
fontSize?: numOrStr
fontSizeAdjust?: numOrStr
fontStretch?: numOrStr
fontStyle?: numOrStr
fontVariant?: numOrStr
fontWeight?: numOrStr
fontfamily?: string
fontsize?: numOrStr
fontsizeadjust?: numOrStr
fontstretch?: numOrStr
fontstyle?: numOrStr
fontvariant?: numOrStr
fontweight?: numOrStr
format?: numOrStr

@@ -123,14 +123,14 @@ fr?: numOrStr

g2?: numOrStr
glyphName?: numOrStr
glyphOrientationHorizontal?: numOrStr
glyphOrientationVertical?: numOrStr
glyphRef?: numOrStr
gradientTransform?: string
gradientUnits?: string
glyphname?: numOrStr
glyphorientationhorizontal?: numOrStr
glyphorientationvertical?: numOrStr
glyphref?: numOrStr
gradienttransform?: string
gradientunits?: string
hanging?: numOrStr
horizAdvX?: numOrStr
horizOriginX?: numOrStr
horizadvx?: numOrStr
horizoriginx?: numOrStr
href?: string
ideographic?: numOrStr
imageRendering?: numOrStr
imagerendering?: numOrStr
in2?: numOrStr

@@ -144,25 +144,25 @@ in?: string

k?: numOrStr
kernelMatrix?: numOrStr
kernelUnitLength?: numOrStr
kernelmatrix?: numOrStr
kernelunitlength?: numOrStr
kerning?: numOrStr
keyPoints?: numOrStr
keySplines?: numOrStr
keyTimes?: numOrStr
lengthAdjust?: numOrStr
letterSpacing?: numOrStr
lightingColor?: numOrStr
limitingConeAngle?: numOrStr
keypoints?: numOrStr
keysplines?: numOrStr
keytimes?: numOrStr
lengthadjust?: numOrStr
letterspacing?: numOrStr
lightingcolor?: numOrStr
limitingconeangle?: numOrStr
local?: numOrStr
markerEnd?: string
markerHeight?: numOrStr
markerMid?: string
markerStart?: string
markerUnits?: numOrStr
markerWidth?: numOrStr
markerend?: string
markerheight?: numOrStr
markermid?: string
markerstart?: string
markerunits?: numOrStr
markerwidth?: numOrStr
mask?: string
maskContentUnits?: numOrStr
maskUnits?: numOrStr
maskcontentunits?: numOrStr
maskunits?: numOrStr
mathematical?: numOrStr
mode?: numOrStr
numOctaves?: numOrStr
numoctaves?: numOrStr
offset?: numOrStr

@@ -176,28 +176,28 @@ opacity?: numOrStr

overflow?: numOrStr
overlinePosition?: numOrStr
overlineThickness?: numOrStr
paintOrder?: numOrStr
overlineposition?: numOrStr
overlinethickness?: numOrStr
paintorder?: numOrStr
panose1?: numOrStr
path?: string
pathLength?: numOrStr
patternContentUnits?: string
patternTransform?: numOrStr
patternUnits?: string
pointerEvents?: numOrStr
pathlength?: numOrStr
patterncontentunits?: string
patterntransform?: numOrStr
patternunits?: string
pointerevents?: numOrStr
points?: string
pointsAtX?: numOrStr
pointsAtY?: numOrStr
pointsAtZ?: numOrStr
preserveAlpha?: Booleanish
preserveAspectRatio?: string
primitiveUnits?: numOrStr
pointsatx?: numOrStr
pointsaty?: numOrStr
pointsatz?: numOrStr
preservealpha?: Booleanish
preserveaspectratio?: string
primitiveunits?: numOrStr
r?: numOrStr
radius?: numOrStr
refX?: numOrStr
refY?: numOrStr
renderingIntent?: numOrStr
repeatCount?: numOrStr
repeatDur?: numOrStr
requiredExtensions?: numOrStr
requiredFeatures?: numOrStr
refx?: numOrStr
refy?: numOrStr
renderingintent?: numOrStr
repeatcount?: numOrStr
repeatdur?: numOrStr
requiredextensions?: numOrStr
requiredfeatures?: numOrStr
restart?: numOrStr

@@ -210,36 +210,36 @@ result?: string

seed?: numOrStr
shapeRendering?: numOrStr
shaperendering?: numOrStr
slope?: numOrStr
spacing?: numOrStr
specularConstant?: numOrStr
specularExponent?: numOrStr
specularconstant?: numOrStr
specularexponent?: numOrStr
speed?: numOrStr
spreadMethod?: string
startOffset?: numOrStr
stdDeviation?: numOrStr
spreadmethod?: string
startoffset?: numOrStr
stddeviation?: numOrStr
stemh?: numOrStr
stemv?: numOrStr
stitchTiles?: numOrStr
stopColor?: string
stopOpacity?: numOrStr
strikethroughPosition?: numOrStr
strikethroughThickness?: numOrStr
stitchtiles?: numOrStr
stopcolor?: string
stopopacity?: numOrStr
strikethroughposition?: numOrStr
strikethroughthickness?: numOrStr
string?: numOrStr
stroke?: string
strokeDasharray?: numOrStr
strokeDashoffset?: numOrStr
strokeLinecap?: 'butt' | 'round' | 'square' | 'inherit'
strokeLinejoin?: 'miter' | 'round' | 'bevel' | 'inherit'
strokeMiterlimit?: numOrStr
strokeOpacity?: numOrStr
strokeWidth?: numOrStr
surfaceScale?: numOrStr
systemLanguage?: numOrStr
tableValues?: numOrStr
targetX?: numOrStr
targetY?: numOrStr
textAnchor?: string
textDecoration?: numOrStr
textLength?: numOrStr
textRendering?: numOrStr
strokedasharray?: numOrStr
strokedashoffset?: numOrStr
strokelinecap?: 'butt' | 'round' | 'square' | 'inherit'
strokelinejoin?: 'miter' | 'round' | 'bevel' | 'inherit'
strokemiterlimit?: numOrStr
strokeopacity?: numOrStr
strokewidth?: numOrStr
surfacescale?: numOrStr
systemlanguage?: numOrStr
tablevalues?: numOrStr
targetx?: numOrStr
targety?: numOrStr
textanchor?: string
textdecoration?: numOrStr
textlength?: numOrStr
textrendering?: numOrStr
to?: numOrStr

@@ -249,47 +249,47 @@ transform?: string

u2?: numOrStr
underlinePosition?: numOrStr
underlineThickness?: numOrStr
underlineposition?: numOrStr
underlinethickness?: numOrStr
unicode?: numOrStr
unicodeBidi?: numOrStr
unicodeRange?: numOrStr
unitsPerEm?: numOrStr
vAlphabetic?: numOrStr
unicodebidi?: numOrStr
unicoderange?: numOrStr
unitsperem?: numOrStr
valphabetic?: numOrStr
values?: string
vectorEffect?: numOrStr
vectoreffect?: numOrStr
version?: string
vertAdvY?: numOrStr
vertOriginX?: numOrStr
vertOriginY?: numOrStr
vHanging?: numOrStr
vIdeographic?: numOrStr
viewBox?: string
viewTarget?: numOrStr
vertadvy?: numOrStr
vertoriginx?: numOrStr
vertoriginy?: numOrStr
vhanging?: numOrStr
videographic?: numOrStr
viewbox?: string
viewtarget?: numOrStr
visibility?: numOrStr
vMathematical?: numOrStr
vmathematical?: numOrStr
widths?: numOrStr
wordSpacing?: numOrStr
writingMode?: numOrStr
wordspacing?: numOrStr
writingmode?: numOrStr
x1?: numOrStr
x2?: numOrStr
x?: numOrStr
xChannelSelector?: string
xHeight?: numOrStr
xlinkActuate?: string
xlinkArcrole?: string
xlinkHref?: string
xlinkRole?: string
xlinkShow?: string
xlinkTitle?: string
xlinkType?: string
xmlBase?: string
xmlLang?: string
xchannelselector?: string
xheight?: numOrStr
xlinkactuate?: string
xlinkarcrole?: string
xlinkhref?: string
xlinkrole?: string
xlinkshow?: string
xlinktitle?: string
xlinktype?: string
xmlbase?: string
xmllang?: string
xmlns?: string
xmlnsXlink?: string
xmlSpace?: string
xmlnsxlink?: string
xmlspace?: string
y1?: numOrStr
y2?: numOrStr
y?: numOrStr
yChannelSelector?: string
ychannelselector?: string
z?: numOrStr
zoomAndPan?: string
zoomandpan?: string
}

@@ -15,3 +15,3 @@ import {

/** Hints at the human language of the linked URL */
hrefLang?: string
hreflang?: string

@@ -34,5 +34,5 @@ /** Specifies the media or device the linked document is optimized for */

/** How much of the referrer to send when following the link. */
referrerPolicy?: HTMLAttributeReferrerPolicy
referrerpolicy?: HTMLAttributeReferrerPolicy
}
export type JSXAnchorElement = AnchorHTMLAttributes<HTMLAnchorElement>

@@ -20,3 +20,3 @@ import {

/** Hints at the human language of the linked URL */
hrefLang?: string
hreflang?: string

@@ -27,3 +27,3 @@ /** Specifies the media or device the linked document is optimized for */

/** How much of the referrer to send when following the link. */
referrerPolicy?: HTMLAttributeReferrerPolicy
referrerpolicy?: HTMLAttributeReferrerPolicy

@@ -30,0 +30,0 @@ /** defines the relationship between a linked resource and the current document */

@@ -5,3 +5,3 @@ import { HTMLAttributes } from '../attributes/html-attributes'

/** Specifies that a button should automatically get focus when the page loads */
autoFocus?: boolean
autofocus?: boolean

@@ -15,15 +15,15 @@ /** Specifies that a button should be disabled */

/** Specifies where to send the form-data when a form is submitted. Only for type="submit" */
formAction?: string
formaction?: string
/** Specifies how form-data should be encoded before sending it to a server. Only for type="submit" */
formEncType?: string
formenctype?: string
/** Specifies HTTP method to send form-data. Only for type="submit" */
formMethod?: string
formmethod?: string
/** Specifies that the form-data should not be validated on submission. Only for type="submit" */
formNoValidate?: boolean
formnovalidate?: boolean
/** Specifies where to display the response after submitting the form. Only for type="submit" */
formTarget?: string
formtarget?: string

@@ -30,0 +30,0 @@ /** Specifies a name for the button */

@@ -5,5 +5,5 @@ import { HTMLAttributes } from '../attributes/html-attributes'

cite?: string
dateTime?: string
datetime?: string
}
export type JSXDelElement = DelHTMLAttributes<HTMLElement>
import { HTMLAttributes } from '../attributes/html-attributes'
import { EventHandler } from '../common'
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
open?: boolean
onToggle?: EventHandler<T>
}
export type JSXDetailsElement = DetailsHTMLAttributes<HTMLElement>
import { HTMLAttributes } from '../attributes/html-attributes'
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
acceptCharset?: string
acceptcharset?: string
action?: string
autoComplete?: string
encType?: string
autocomplete?: string
enctype?: string
method?: string
name?: string
noValidate?: boolean
novalidate?: boolean
target?: string

@@ -12,0 +12,0 @@ }

@@ -8,14 +8,14 @@ import {

allow?: string
allowFullScreen?: boolean
allowTransparency?: boolean
allowfullscreen?: boolean
allowtransparency?: boolean
/** @deprecated */
frameBorder?: number | string
frameborder?: number | string
height?: number | string
loading?: 'eager' | 'lazy'
/** @deprecated */
marginHeight?: number
marginheight?: number
/** @deprecated */
marginWidth?: number
marginwidth?: number
name?: string
referrerPolicy?: HTMLAttributeReferrerPolicy
referrerpolicy?: HTMLAttributeReferrerPolicy
sandbox?: string

@@ -26,4 +26,4 @@ /** @deprecated */

src?: string
srcDoc?: string
srcdoc?: string
width?: number | string
}

@@ -9,12 +9,12 @@ import {

alt?: string
crossOrigin?: 'anonymous' | 'use-credentials' | ''
crossorigin?: 'anonymous' | 'use-credentials' | ''
decoding?: 'async' | 'auto' | 'sync'
loading?: 'eager' | 'lazy'
referrerPolicy?: HTMLAttributeReferrerPolicy
referrerpolicy?: HTMLAttributeReferrerPolicy
sizes?: string
src?: string
srcSet?: string
useMap?: string
srcset?: string
usemap?: string
width?: numOrStr
height?: numOrStr
}

@@ -7,21 +7,21 @@ import { HTMLAttributes, HTMLInputTypeAttribute } from '../attributes/html-attributes'

alt?: string
autoComplete?: string
autoFocus?: boolean
autocomplete?: string
autofocus?: boolean
capture?: boolean | 'user' | 'environment'
checked?: boolean
crossOrigin?: string
crossorigin?: string
disabled?: boolean
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'
enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'
form?: string
formAction?: string
formEncType?: string
formMethod?: string
formNoValidate?: boolean
formTarget?: string
formaction?: string
formenctype?: string
formmethod?: string
formnovalidate?: boolean
formtarget?: string
height?: number | string
list?: string
max?: number | string
maxLength?: number
maxlength?: number
min?: number | string
minLength?: number
minlength?: number
multiple?: boolean

@@ -31,3 +31,3 @@ name?: string

placeholder?: string
readOnly?: boolean
readonly?: boolean
required?: boolean

@@ -34,0 +34,0 @@ size?: number

@@ -5,5 +5,5 @@ import { HTMLAttributes } from '../attributes/html-attributes'

cite?: string
dateTime?: string
datetime?: string
}
export type JSXInsElement = InsHTMLAttributes<HTMLModElement>
import { HTMLAttributes } from '../attributes/html-attributes'
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
autoFocus?: boolean
autofocus?: boolean
challenge?: string
disabled?: boolean
form?: string
keyType?: string
keyParams?: string
keytype?: string
keyparams?: string
name?: string

@@ -11,0 +11,0 @@ }

@@ -8,15 +8,15 @@ import {

as?: string
crossOrigin?: string
crossorigin?: string
href?: string
hrefLang?: string
hreflang?: string
integrity?: string
media?: string
imageSrcSet?: string
referrerPolicy?: HTMLAttributeReferrerPolicy
imagesrcset?: string
referrerpolicy?: HTMLAttributeReferrerPolicy
rel?: string
sizes?: string
type?: string
charSet?: string
charset?: string
}
export type JSXLinkElement = LinkHTMLAttributes<HTMLLinkElement>
import { HTMLAttributes } from '../attributes/html-attributes'
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
charSet?: string
charset?: string
content?: string
httpEquiv?: string
httpequiv?: string
name?: string

@@ -8,0 +8,0 @@ media?: string

import { HTMLAttributes } from '../attributes/html-attributes'
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
classID?: string
classid?: string
data?: string

@@ -10,3 +10,3 @@ form?: string

type?: string
useMap?: string
usemap?: string
width?: number | string

@@ -13,0 +13,0 @@ wmode?: string

@@ -9,9 +9,9 @@ import {

/** @deprecated */
charSet?: string
crossOrigin?: string
charset?: string
crossorigin?: string
defer?: boolean
integrity?: string
noModule?: boolean
nomodule?: boolean
nonce?: string
referrerPolicy?: HTMLAttributeReferrerPolicy
referrerpolicy?: HTMLAttributeReferrerPolicy
src?: string

@@ -18,0 +18,0 @@ type?: string

import { HTMLAttributes } from '../attributes/html-attributes'
import { BindAttributes, EventHandler } from '../common'
import { BindAttributes } from '../common'
interface SelectHTMLAttributes<T> extends HTMLAttributes<T>, BindAttributes {
autoComplete?: string
autoFocus?: boolean
autocomplete?: string
autofocus?: boolean
disabled?: boolean

@@ -14,5 +14,4 @@ form?: string

value?: string | ReadonlyArray<string> | number
onChange?: EventHandler<T>
}
export type JSXSelectElement = SelectHTMLAttributes<HTMLSelectElement>

@@ -8,3 +8,3 @@ import { HTMLAttributes } from '../attributes/html-attributes'

src?: string
srcSet?: string
srcset?: string
type?: string

@@ -11,0 +11,0 @@ width?: number | string

import { HTMLAttributes } from '../attributes/html-attributes'
interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
cellPadding?: number | string
cellSpacing?: number | string
cellpadding?: number | string
cellspacing?: number | string
summary?: string

@@ -7,0 +7,0 @@ width?: number | string

@@ -5,5 +5,5 @@ import { HTMLAttributes } from '../attributes/html-attributes'

align?: 'left' | 'center' | 'right' | 'justify' | 'char'
colSpan?: number
colspan?: number
headers?: string
rowSpan?: number
rowspan?: number
scope?: string

@@ -10,0 +10,0 @@ abbr?: string

import { HTMLAttributes } from '../attributes/html-attributes'
import { EventHandler } from '../common'
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
autoComplete?: string
autoFocus?: boolean
autocomplete?: string
autofocus?: boolean
cols?: number
dirName?: string
dirname?: string
disabled?: boolean
form?: string
maxLength?: number
minLength?: number
maxlength?: number
minlength?: number
name?: string
placeholder?: string
readOnly?: boolean
readonly?: boolean
required?: boolean

@@ -20,5 +19,4 @@ rows?: number

wrap?: string
onChange?: EventHandler<T>
}
export type JSXTextAreElement = TextareaHTMLAttributes<HTMLTextAreaElement>

@@ -5,5 +5,5 @@ import { HTMLAttributes } from '../attributes/html-attributes'

align?: 'left' | 'center' | 'right' | 'justify' | 'char'
colSpan?: number
colspan?: number
headers?: string
rowSpan?: number
rowspan?: number
scope?: string

@@ -10,0 +10,0 @@ abbr?: string

import { HTMLAttributes } from '../attributes/html-attributes'
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
dateTime?: string
datetime?: string
}
export type JSXTimeElement = TimeHTMLAttributes<HTMLElement>

@@ -8,5 +8,5 @@ import { HTMLAttributes } from '../attributes/html-attributes'

src?: string
srcLang?: string
srclang?: string
}
export type JSXTrackElement = TrackHTMLAttributes<HTMLTrackElement>

@@ -5,9 +5,9 @@ import { MediaHTMLAttributes } from '../attributes/media-attributes'

height?: number | string
playsInline?: boolean
playsinline?: boolean
poster?: string
width?: number | string
disablePictureInPicture?: boolean
disableRemotePlayback?: boolean
disablepictureinpicture?: boolean
disableremoteplayback?: boolean
}
export type JSXVideoElement = VideoHTMLAttributes<HTMLVideoElement>
import { HTMLAttributes } from '../attributes/html-attributes'
interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
allowFullScreen?: boolean
allowfullscreen?: boolean
allowpopups?: boolean
autoFocus?: boolean
autofocus?: boolean
autosize?: boolean

@@ -8,0 +8,0 @@ blinkfeatures?: string

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc