Closed jordanjones243 closed 1 month ago
This pull request focuses on updating the auro-dialog component to use the latest Auro design system standards and improve its implementation. The changes include updating dependencies, refactoring the component registration process, and adjusting CSS custom properties to align with the latest design tokens.
classDiagram
class RuntimeUtils {
+registerComponent(name, component)
}
class AuroDialog
class ComponentBase {
+runtimeUtils: AuroLibraryRuntimeUtils
+firstUpdated()
}
ComponentBase --> RuntimeUtils : uses
RuntimeUtils --> AuroDialog : registers
classDiagram
class CSSProperties {
--ds-auro-dialog-background-color
--ds-auro-dialog-boxshadow-color
--ds-auro-dialog-overlay-modal-background-color
--ds-auro-dialog-overlay-open-background-color
--ds-auro-dialog-text-color
}
class Tokens {
+updateProperties()
}
CSSProperties <|-- Tokens : updated
CSSProperties : -boxshadow-color-one
CSSProperties : -boxshadow-color-two
Change | Details | Files |
---|---|---|
Refactored component registration process |
|
index.js demo/index.html demo/index.md docs/partials/index.md |
Updated CSS custom properties and design tokens |
|
src/tokens.scss demo/api.md src/color.scss |
Removed outdated documentation and scripts |
|
README.md scripts/generateDocs.mjs scripts/postCss.mjs scripts/staticStyles-template.js |
Updated dependencies and version references |
|
README.md src/buttonVersion.js src/iconVersion.js |
Enhanced component base class |
|
src/componentBase.js |
:tada: This PR is included in version 2.0.0-beta.1 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Alaska Airlines Pull Request
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Resolves: # (issue, if applicable)
Summary:
Please summarize the scope of the changes you have submitted, what the intent of the work is and anything that describes the before/after state of the project.
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
Refactor component registration to utilize RuntimeUtils, update CSS variables to new design standards, and clean up documentation and unused scripts.
Enhancements:
Documentation:
Chores: