-
-
Notifications
You must be signed in to change notification settings - Fork 106
Release 2.2.2 #615
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
Release 2.2.2 #615
Conversation
…prefixing and sourcemapping into one function
…ell to initial, implemented additional is-daterange-start + is-daterange-end classes and refactored styling to use pseudo selectors on newly created classes #360
…ng text field if present #558
… display font size adjustment when rendering multiple dates
…styling as todos in scss file
…; configured confirmation buttons to render when auto submit is false #558
remove overflow from cards
This fixes also the select issue with the label placement. The impact is not tested, but in that case we should offer a relocate function to move the dropdown manually.
Fix dropdown in modal
if we use class names instead of tag elements we should be at least consistent
fix(mixins): border none is missing from new button mixin
fix(_navbar): use .nav instead of nav
includes nested .inline class for .input-fields class elements
fix(_input-fields): display inline inputs fields actually inline
fix(_range): display bar for range in chrome browser
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 57 out of 73 changed files in this pull request and generated 1 comment.
Files not reviewed (16)
- package.json: Language not supported
- sass/components/_badges.scss: Language not supported
- sass/components/_breadcrumb.scss: Language not supported
- sass/components/_buttons.scss: Language not supported
- sass/components/_cards.scss: Language not supported
- sass/components/_carousel.scss: Language not supported
- sass/components/_chips.scss: Language not supported
- sass/components/_collapsible.scss: Language not supported
- sass/components/_collection.scss: Language not supported
- sass/components/_color-classes.scss: Language not supported
- sass/components/_color-variables.scss: Language not supported
- sass/components/_datepicker.scss: Language not supported
- sass/components/_dropdown.scss: Language not supported
- sass/components/_global.scss: Language not supported
- sass/components/_grid.scss: Language not supported
- sass/components/_materialbox.scss: Language not supported
Comments suppressed due to low confidence (2)
rollup.config.ts:114
- [nitpick] There is an inconsistency between the two SCSS processor implementations (one synchronous and one asynchronous). Unifying the approach can help prevent build-time inconsistencies.
postcss([autoprefixer]).process(css, { from: 'materialize.min.css' })
rollup.config.ts:156
- Removing the substring(1) workaround might reintroduce formatting issues that the original approach was addressing; please verify that the change does not cause regression.
transform: (contents) => [bannerText, contents.toString()].join('\n') // bug => workaround
processor: (css, map) => ({ | ||
css: postcss([autoprefixer]).process(css, { from: 'materialize.min.css' }).toString(), | ||
map | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
postcss().process returns a Promise, so calling toString() immediately may result in an unexpected value. Consider using a synchronous API like processSync or handling the Promise appropriately.
processor: (css, map) => ({ | |
css: postcss([autoprefixer]).process(css, { from: 'materialize.min.css' }).toString(), | |
map | |
}) | |
processor: async (css, map) => { | |
const result = await postcss([autoprefixer]).process(css, { from: 'materialize.min.css' }); | |
return { | |
css: result.css, | |
map | |
}; | |
} |
Copilot uses AI. Check for mistakes.
Hi @wuda-io ! Thank you for the hard job ! And also kudo to all contributors. Do you know when release 2.2.2 will be online on https://materializeweb.com ? |
@AurelienTisserand The release is now online. Also we can now mange the documentation versions better. Probably we should do some sort of upgrade manuals now from version to version to prevent issues. |
Proposed changes
New Release! Please be patient and bring Materialize forward to get better and better.
Every help, support and funding is greatly appreciated!
A huge thanks to the developers who bring this project forward and test it continously in their projects.
Big Thanks to our sponsors and backers!
I hope we make this an awesome project and have a great community!
Thanks! ❤️
Types of changes
Checklist: