We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
web
I came across this while making the DS-449:
Dropdown.ts
DropdownWrapper
data-spirit-element
data
getOptions()
Dropdown
*.dataset
spirit
data-max-file-size
: void
this.state
this
resize
load
packages/web/src/js/utils/{}tests{}/index.test.ts
js/utils
CLASS_NAME
CLASSNAME
_CLASSNAME
CLASS_NAME_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I came across this while making the DS-449:
Dropdown.ts
refers to the visual CSS classDropdownWrapper
, but should look fordata-spirit-element
data
configuration is handled: somewhere there isgetOptions()
(Dropdown
), mostly just*.dataset
directlydata
attributes do not contain aspirit
infix, e.g.data-max-file-size
: void
etc.), sometimes notthis.state
, others either not at all (but could), or put individual properties directly intothis
this.state
, but rather separate class propertiesresize
,load
, ...) are sometimes in constants, sometimes notpackages/web/src/js/utils/{}tests{}/index.test.ts
contains not only exports but also codejs/utils
usually don't have tests (or is this related to the previous point?)CLASS_NAME
,CLASSNAME
,_CLASSNAME
CLASS_NAME_
prefixes like we have eventsThe text was updated successfully, but these errors were encountered: