Skip to content
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

[OUDS] feat(css): Drop form-star-rating() mixin #2635

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scss/mixins/_deprecate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
// some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap)
@mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) {
@if ($enable-deprecation-messages != false and $ignore-warning != true) {
@warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}.";
@warn "#{$name} has been deprecated as of Bootstrap #{$deprecate-version}. It will be removed entirely in Bootstrap #{$remove-version}.";
}
}
7 changes: 0 additions & 7 deletions scss/mixins/_star-rating.scss

This file was deleted.

13 changes: 10 additions & 3 deletions site/content/docs/0.0/migration-from-boosted.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ group: migration
aliases:
- "/migration-from-boosted/"
- "/docs/migration-from-boosted/"
toc: true
---

# Migrating from Boosted

This guide provides information on how to migrate from Boosted (latest release) to OUDS Web.

## Fonts
Expand All @@ -23,9 +22,17 @@ Technically, it means that you can get rid of the following things:

## Components

### Close button

- <span class="badge text-bg-warning">Warning</span> `.btn-close-white` class has been removed as it was deprecated in Boosted v5.3.3.

### CSS and Sass variables
## Forms

### Checks & radios

- <span class="badge text-bg-warning">Warning</span> `form-star-rating()` mixin has been removed as it was deprecated in Boosted v5.3.2.

## CSS and Sass variables

- <details class="mb-2">
<summary><span class="badge text-bg-warning">Warning</span> Dropped deprecated Sass variables:</summary>
Expand Down
Loading