Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reports all HTML Attributes, Elements, and Events #17

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/DOM/Erumu/HTML.purs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module DOM.Erumu.HTML
, module Events
) where

import DOM.Erumu.HTML.Attributes (action, alt, ariaControls, ariaOrientation, ariaExpanded, ariaHaspopup, ariaHidden, ariaLabelledby, ariaModal, autocomplete, autofocus, cRadius, checked, classN_, class_, classes, clipRule, colSpan, cxCoord, cyCoord, data_, defaultValue, defer, dims, disabled, enctype, fill, fillRule, fontFamily, fontSize, for, gradientUnits, height, href, id_, method, name, noop, offset, placeholder, points, role, rows, rx, selected, spellcheck, src, stroke, strokeLinecap, strokeLinejoin, strokeWidth, style, tabindex, target, title, transform, type_, value, viewBox, width, x1Coord, x2Coord, xCoord, xmlns, y1Coord, y2Coord, yCoord) as Attributes
import DOM.Erumu.HTML.Elements (ElementFn, a, address, aside, br, button, circle, code, dd, div_, dl, dt, em, embed, fieldset, footer, form, graphic, h1, h2, h3, h4, h5, header, hr, i, iframe, img, input, label, legend, li, line, linearGradient, main, nav, noscript, object, ol, option, p, path, polygon, rect, script, section, select, span, stop, strong, svg, table, tbody, td, text, textArea, th, thead, time, tr, ul) as Elements
import DOM.Erumu.HTML.Events (clickawayfn, onblur, onclick, onfocus, oninput, onmouseenter, onmouseleave, preventDefaultOnclick, terminalOnclick) as Events
import DOM.Erumu.HTML.Attributes as Attributes
import DOM.Erumu.HTML.Elements as Elements
import DOM.Erumu.HTML.Events as Events
Loading