Skip to content

Commit

Permalink
Release 10.0.0 (#249)
Browse files Browse the repository at this point in the history
* bump v10.0.0

* Add modern spacing utilities from design system (#248)

* fix(css): add design system spacing utilities

* fix: replace 4+5 spacers with absolute values

* BREAKING CHANGE: nix xs breakpoint, 4 + 5 spacers

* fix: add 96px spacer

* chore: rebuild test snapshots

* fix: fix failing test

* chore(deps): update browserslist db

* fix(deps): upgrade jest

* chore(deps): npm audit fix

* chore(deps): upgrade jest-serializer-html

* chore(npm): fix engines.node

* chore(deps): install source-map to fix build issues

* chore(test): update snapshots

Co-authored-by: shawnbot <[email protected]>
  • Loading branch information
github-actions[bot] and shawnbot authored Jan 4, 2023
1 parent 977e899 commit 6d19528
Show file tree
Hide file tree
Showing 9 changed files with 6,719 additions and 3,414 deletions.
100 changes: 50 additions & 50 deletions __tests__/__snapshots__/snapshots.js.snap

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions __tests__/patch.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ describe('patch()', () => {
destroyForm(form)
})

it('adds .d-flex.flex-column-reverse.mb-4 to the element', async () => {
it('adds .d-flex.flex-column-reverse.mb-60 to the element', async () => {
const form = await createForm()
expect(Array.from(form.element.classList)).toEqual(
expect.arrayContaining(['d-flex', 'flex-column-reverse', 'mb-4'])
expect.arrayContaining(['d-flex', 'flex-column-reverse', 'mb-60'])
)
destroyForm(form)
})
Expand Down
Loading

0 comments on commit 6d19528

Please sign in to comment.