Skip to content

Vue 3 - Next (beta)

Pre-release
Pre-release
Compare
Choose a tag to compare
@oleksiikhr oleksiikhr released this 02 Oct 14:08
· 2 commits to main since this release

Menu

  • Replacing the style calculation for background (#246).

before

.vsm-background {
  transform: translate(152px, 0px) scaleX(1.08421) scaleY(1.2125);
}

after

.vsm-background {
  transform: translate(246px, 10px);
  width: 409px;
  height: 485px;
}
  • Build files

before

dist/demo.html
dist/vue-stripe-menu.common.js
dist/vue-stripe-menu.common.js.map
dist/vue-stripe-menu.css
dist/vue-stripe-menu.umd.js
dist/vue-stripe-menu.umd.js.map
dist/vue-stripe-menu.umd.min.js
dist/vue-stripe-menu.umd.min.js.map

after

dist/vue-stripe-menu.css
dist/vue-stripe-menu.es.js
dist/vue-stripe-menu.umd.js

Internal

  • TypeScript added.
  • Improved ESLint configs, added Prettier and Stylelint.
  • Added Github documents: code of conduct, contributors and issue templates.
  • Installed Node.js as core 16.15.0.
  • Replaced yarn with pnpm.
  • Replaced CircleCI with Github Actions.
  • Removed build documentation files from the repository. The current build is in the gh-pages branch.
  • Added more workflows:
    • Additional code check using CodeQL.
    • Automatic publishing to npm from main branch.