Skip to content

Releases: Renovamen/oh-vue-icons

v1.0.0-rc3

24 Apr 19:00
Compare
Choose a tag to compare

Bug Fixes

Features

v1.0.0-rc2

27 Jan 01:00
Compare
Choose a tag to compare

Features

v1.0.0-rc1

14 Oct 06:54
Compare
Choose a tag to compare

BREAKING CHANGES

  • import paths have changed:

    Vue 3:

    - import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";
    + import { OhVueIcon, addIcons } from "oh-vue-icons";
    
    - OhVueIcon.add(FaFlag)
    + addIcons(FaFlag)

    Vue 2:

    - import OhVueIcon from "oh-vue-icons";
    + import { OhVueIcon, addIcons } from "oh-vue-icons";
    
    - OhVueIcon.add(FaFlag)
    + addIcons(FaFlag)
  • @vue/composition-api is needed for Vue 2, @nuxtjs/composition-api is needed for Nuxt 2.

Features

v0.4.7

02 Aug 10:26
Compare
Choose a tag to compare

Features

v0.4.6

24 Jul 18:39
Compare
Choose a tag to compare

Features

v0.4.5

18 Jul 07:59
Compare
Choose a tag to compare

Bug Fixes

v0.4.4

11 Jul 03:55
Compare
Choose a tag to compare

This version has been DEPRECATED (see #15), use v0.4.5 or above instead.

Features

v0.4.3

08 May 08:53
Compare
Choose a tag to compare

Features

v0.4.2

14 Apr 15:01
Compare
Choose a tag to compare

Features

v0.4.1

29 Mar 13:04
Compare
Choose a tag to compare

BREAKING CHANGES

  • expand data argument to remove need of array whem import icons (c32a79b) (#10)

  • use rollup to bundle the component in esm format (4a31c95) (#9)

  • import paths have changed:

    Icons:

    - OhVueIcon.add([FaFlag, RiZhihuFill]);
    + OhVueIcon.add(FaFlag, RiZhihuFill);

    Vue 3:

    - import OhVueIcon from "oh-vue-icons/dist/v3/icon.umd.min";
    + import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";