-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ [#445] Upgrade to @utrecht/components v5
Adapted the few places where we directly import the mixin for certain components, which has been moved into the package src and is no longer in the dist/css directory. Other imports have been updated to refer to the package itself, as that resolves to the CSS file inside, and we can now use the @use rule in a bunch of places rather than sticking with the deprecated @import.
- Loading branch information
1 parent
715eda1
commit 46b1e56
Showing
14 changed files
with
35 additions
and
46 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
@use '@utrecht/components/dist/document/css/index' as document; | ||
@use '@utrecht/components/dist/img/css/index' as img; | ||
@use '@utrecht/components/dist/paragraph/css/index' as paragraph; | ||
@use '@utrecht/components/dist/form-field/css/index' as form-field; | ||
@use '@utrecht/components/dist/form-fieldset/css/index' as form-fieldset; | ||
@use '@utrecht/components/dist/radio-button/css/index' as radio-button; | ||
@use '@utrecht/components/dist/alert/css/index' as alert; | ||
@use '@utrecht/components/dist/data-list/css/index' as data-list; | ||
@use '@utrecht/components/dist/unordered-list/css/index' as unordered-list; | ||
@use '@utrecht/components/dist/ordered-list/css/index' as ordered-list; | ||
@use '@utrecht/components/dist/heading-1/css/index' as heading-1; | ||
@use '@utrecht/components/dist/heading-2/css/index' as heading-2; | ||
@use '@utrecht/components/dist/heading-3/css/index' as heading-3; | ||
@use '@utrecht/components/document' as document; | ||
@use '@utrecht/components/img' as img; | ||
@use '@utrecht/components/paragraph' as paragraph; | ||
@use '@utrecht/components/form-field' as form-field; | ||
@use '@utrecht/components/form-fieldset' as form-fieldset; | ||
@use '@utrecht/components/radio-button' as radio-button; | ||
@use '@utrecht/components/alert' as alert; | ||
@use '@utrecht/components/data-list' as data-list; | ||
@use '@utrecht/components/unordered-list' as unordered-list; | ||
@use '@utrecht/components/ordered-list' as ordered-list; | ||
@use '@utrecht/components/heading-1' as heading-1; | ||
@use '@utrecht/components/heading-2' as heading-2; | ||
@use '@utrecht/components/heading-3' as heading-3; |