|
2 | 2 |
|
3 | 3 | ## Features
|
4 | 4 |
|
| 5 | +* **css:** (breaking) Remove support for vendor prefixing (#957) |
5 | 6 | * **css:** Apply hover cursor from Details component to Details element (#948)
|
6 | 7 |
|
7 | 8 | ## Bug Fixes
|
|
10 | 11 |
|
11 | 12 | ## Migration Tips
|
12 | 13 |
|
| 14 | +* This version removes mixins which added vendor-prefixes. Browser support for these is now excellent. |
| 15 | + - One migration path is to edit your code to use the unprefixed versions. |
| 16 | + - Another option is to move these utility mixins into your own code base (though, be aware they are |
| 17 | + no longer used in Protocol and this will not give you backwards compatible Protocol components). |
| 18 | + - If you need that level of vendor prefix support consider adding a tool such as |
| 19 | + [autoprefixer](https://github.com/postcss/autoprefixer) to your code base. |
| 20 | + - Affected mixins are: |
| 21 | + - `animation` |
| 22 | + - `appearance` |
| 23 | + - `background-size` |
| 24 | + - `box-decoration-break` |
| 25 | + - `box-sizing` |
| 26 | + - `flexbox`, `flex`, `flex-direction`, `flex-wrap`, `align-itmes`, `justify-content,` |
| 27 | + - `transform`, `transform-origin`, `transform-style` |
| 28 | + - `transition`, `transition-property`, `transition-duration`, `transition-delay` |
13 | 29 | * See notes for [Protocol Assets 5.4.0](https://github.com/mozilla/protocol-assets/blob/main/CHANGELOG.md#540)
|
14 | 30 |
|
15 | 31 | # 19.3.0
|
|
58 | 74 | * Update references to the `call-out` SCSS file to `callout` in any `@import` or `@use` rules.
|
59 | 75 | ** e.g. `@use 'components/call-out';` should change to `@use 'components/callout';`
|
60 | 76 | * The rebuilt Callout doesn't feature integrated brand logos. Use Logo and Wordmark components instead.
|
61 |
| -* The rebuilt Compact Callout lacks an integrated logo, so it no longer positions the logo at one end of the component. A Logo or Wordmark component should appear in the body instead. |
| 77 | +* The rebuilt Compact Callout lacks an integrated logo`, `so it no longer positions the logo at one end of the component. A Logo or Wordmark component should appear in the body instead. |
62 | 78 | * Convert any instances of the Hero component to either Split or Callout.
|
63 | 79 | * Convert any instances of the Picto Card component to Picto.
|
64 | 80 |
|
|
0 commit comments