-
Notifications
You must be signed in to change notification settings - Fork 320
chore: adds lion-input-amount-dropdown #2505
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
base: master
Are you sure you want to change the base?
chore: adds lion-input-amount-dropdown #2505
Conversation
🦋 Changeset detectedLatest commit: 2bbccc4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @thatdudemanguy great progress!
Keep up the good work 💪
packages/ui/components/input-amount-dropdown/test-suites/LionInputAmountDropdown.suite.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/test-suites/LionInputAmountDropdown.suite.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/test-suites/LionInputAmountDropdown.suite.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/src/currencyUtil.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/src/LionInputAmountDropdown.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/test-suites/LionInputAmountDropdown.suite.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/test-suites/LionInputAmountDropdown.suite.js
Show resolved
Hide resolved
Co-authored-by: gerjanvangeest <gerjanvangeest@users.noreply.github.com>
...gram/analyzers/e2e/find-classes_-_importing-target-project_0.0.2-target-mock__868447312.json
Outdated
Show resolved
Hide resolved
static properties = { | ||
preferredCurrencies: { type: Array }, | ||
allowedCurrencies: { type: Array }, | ||
__dropdownSlot: { type: String }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Private properties should be written with a #. We are slowly applying this throughout the lion repo.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_properties
__dropdownSlot: { type: String }, | |
#dropdownSlot: { type: String }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah I agree, however; last time I checked using # in lit properties didn't work.
packages/ui/components/input-amount-dropdown/src/LionInputAmountDropdown.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/src/LionInputAmountDropdown.js
Outdated
Show resolved
Hide resolved
packages/ui/components/input-amount-dropdown/src/LionInputAmountDropdown.js
Outdated
Show resolved
Hide resolved
…ntDropdown.js Co-authored-by: gerjanvangeest <gerjanvangeest@users.noreply.github.com>
What I did
input-amount-dropdown
test cases and suite to define the spec of the new component, according to the pre-existinginput-tel-dropdown
structure.input-amount-dropdown
component according to the test cases.