Skip to content

Releases: dyaskur/vue-spin-the-wheel

v2.1.0

21 Jul 06:14
3a09a05
Compare
Choose a tag to compare

Remove lodash and improve TypeScript compability

By removing the lodash dependency, the package size is reduced by approximately 20KB, resulting in a Vue library that does not rely on any external libraries, except for those used in the development environment.

Full Changelog: v2.0.0...v2.1.0

v2.0.0

20 Jul 07:17
573c21e
Compare
Choose a tag to compare

Breaking Changes:

In previous versions, you could import the component using:

import SpinTheWheel from 'vue-spin-the-wheel'

With the release of v2.0.0, you must now use curly braces to import the component:

import {SpinTheWheel} from 'vue-spin-the-wheel'

Additionally, you can now import TypeScript types as follows:

import { SpinTheWheel, type PrizeConfig } from 'vue-spin-the-wheel'

1.0.1

13 Jul 15:38
c250581
Compare
Choose a tag to compare

New feature: onUpdated event. This event allows the wheel item to spin and can be updated using reactive and dynamic values.

1.0.0

13 Jul 15:31
4307f43
Compare
Choose a tag to compare

Initial fork: dependencies updated and code refactored. The application retains original functionality with no additional changes.