Open rmenner opened 1 week ago
This PR renames the ariaPressed
property to ariapressed
to prevent conflicts with HTML attributes, removes duplicate CSS imports, and improves script loading in demo files. The changes also include cleanup of initialization scripts by moving them directly into the JS files.
classDiagram
class ComponentBase {
- ariapressed: String
- tabIsActive: String
- runtimeUtils: AuroLibraryRuntimeUtils
}
class AuroHyperlink {
- ariapressed: String
+ ariaPressedState(ariapressed): String
}
ComponentBase <|-- AuroHyperlink
note for ComponentBase "ariapressed property renamed from ariaPressed"
classDiagram
class Api {
+ initHyperlinkApiExamples(initCount)
}
class Index {
+ initHyperlinkIndexExamples(initCount)
}
note for Api "initHyperlinkApiExamples moved to JS file"
note for Index "initHyperlinkIndexExamples moved to JS file"
Change | Details | Files |
---|---|---|
Renamed ariaPressed property to prevent HTML attribute conflicts |
|
src/component-base.mjs src/auro-hyperlink.js |
Improved demo page structure and script loading |
|
demo/api.html demo/index.html demo/api.js demo/index.js |
Alaska Airlines Pull Request
Type of change:
Please delete options that are not relevant.
Checklist:
By submitting this Pull Request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Pull Requests will be evaluated by their quality of update and whether it is consistent with the goals and values of this project. Any submission is to be considered a conversation between the submitter and the maintainers of this project and may require changes to your submission.
Thank you for your submission!
-- Auro Design System Team
Summary by Sourcery
Rename 'ariaPressed' to 'ariapressed' to prevent conflict with the HTML attribute and enhance demo HTML files by removing duplicate stylesheet links and deferring module script loading.
Bug Fixes:
Enhancements: