Skip to content

Releases: Byloth/vuert

v1.3.4

11 Aug 11:29
4a92410
Compare
Choose a tag to compare

Patch release

  • Fixed an issue with custom component highlighting whenever Vuert was used.
  • Migrated from yarn to pnpm.
  • Updated dependencies.

Full Changelog: v1.3.3...v1.3.4

v1.3.3

12 Jul 10:06
c86ff5e
Compare
Choose a tag to compare

Patch release

  • Updated dependencies. 💊💉

Full Changelog: v1.3.2...v1.3.3

v1.3.3-rc.1

10 Jul 15:34
b2a4f6b
Compare
Choose a tag to compare
v1.3.3-rc.1 Pre-release
Pre-release

Release Candidate

  • Updated dependencies. 💊💉

v1.3.2

17 Apr 07:45
32853b0
Compare
Choose a tag to compare

Patch release

  • Fixed the type of the AlertHandler's Context's resolve method.
    Now you can call resolve without explicitly passing a parameter.

v1.3.1

28 Mar 16:04
ac4781b
Compare
Choose a tag to compare

Patch release

  • Resolved a compatibility problem with the AlertHandler component's TypeScript types.

v1.3.0

24 Feb 18:44
b8cc623
Compare
Choose a tag to compare

Minor release

Improved AlertHandler component

It now expose a couple of new values inside its v-slot context:

  • customComponent: it no longer resides inside the alert value.
    You can now pass alert to the customComponent as a prop without also passing its own reference again.
  • queue: it's a numeric value that describes how many alerts are registered to the same AlertHandler instance.
    You can vary the display of components, for example by showing a counter like 1 of 3 or creating a "stacking" effect; note that you won't be able to access other instances of Alert instances.

Throttling Alert emission

You are now able to throttle the Alert emission (perhaps due to some application problem), avoiding spamming the UI with the same Alert hundreds of times.
This case will throw a new AlertThrottledException.

v1.2.2-rc.4

09 Feb 17:15
e951f73
Compare
Choose a tag to compare
v1.2.2-rc.4 Pre-release
Pre-release

Release candidate

  • Added missing export for AlertThrottledException class.

v1.2.2-rc.3

09 Feb 13:17
20b1482
Compare
Choose a tag to compare
v1.2.2-rc.3 Pre-release
Pre-release

Release Candidate

  • Solved a problem while throttling an emitted alert.

v1.2.2-rc.2

08 Feb 18:17
7946297
Compare
Choose a tag to compare
v1.2.2-rc.2 Pre-release
Pre-release

Release Candidate

  • Now it looks for the Alert ID before applying the throttling behaviour.

v1.2.2-rc.1

08 Feb 16:44
dd5776f
Compare
Choose a tag to compare
v1.2.2-rc.1 Pre-release
Pre-release

Release Candidate

  • Implemented throttling behaviour.