- 13 Dec, 2017 7 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
- 20 Nov, 2017 4 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
```js /* BEFORE */ { circle: "\n <circle cx=\"12\" cy=\"12\" r=\"10\"></circle>\n" } /* AFTER */ { circle: "<circle cx=\"12\" cy=\"12\" r=\"10\"></circle>" } ```
-
- 19 Nov, 2017 2 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
BREAKING CHANGE: Each icon in the `feather.icons` object is now an `Icon` object with a `name`, `contents`, `tags` and `attrs` property. ```js /* BEFORE */ feather.icons.x // '<line ... /><line ... />' /* AFTER */ feather.icons.x // { // name: 'x', // contents: '<line ... /><line ... />`, // tags: ['cancel', 'close', 'delete', 'remove'], // attrs: { // class: 'feather feather-x', // xmlns: 'http://www.w3.org/2000/svg', // width: 24, // height: 24, // viewBox: '0 0 24 24', // fill: 'none', // stroke: 'currentColor', // 'stroke-width': 2, // 'stroke-linecap': 'round', // 'stroke-linejoin': 'round', // } // } ``` `feather.toSvg()` has been deprecated in favor of `feather.icons[name].toSvg()`: ```js /* BEFORE */ feather.toSvg('x') /* AFTER */ feather.icons.x.toSvg() ``` `feather.replace()` now copies all attributes on the placeholder element (i.e. `<i>`) to the `<svg>` tag instead of just `class` and `id`: ```html <i data-feather="circle" id="my-circle" class="foo bar" stroke-width="1"></i> <!-- <i> will be replaced with: <svg id="my-circle" class="feather feather-circle foo bar" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle></svg> --> ```
-
- 13 Nov, 2017 2 commits
-
-
Cole Bemis authored
-
Oliver Dumoulin authored
-
- 10 Nov, 2017 2 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
-
- 09 Nov, 2017 1 commit
-
-
Cole Bemis authored
-
- 05 Nov, 2017 1 commit
-
-
Cole Bemis authored
-
- 01 Nov, 2017 1 commit
-
-
Anatoliy authored
-
- 11 Oct, 2017 1 commit
-
-
Brad Bohen authored
-
- 09 Oct, 2017 2 commits
-
-
Cole Bemis authored
-
LboAnn authored
The badge shows the latest lib version on CDNJS and gives a link of it.
-
- 26 Sep, 2017 1 commit
-
-
Lukas Drgon authored
-
- 23 Sep, 2017 1 commit
-
-
Cole Bemis authored
-
- 06 Sep, 2017 1 commit
-
-
Alberto Chiusole authored
As discussed in issue #176, the package has to be built using $ npm run build or $ npm run all before being able to use it.
-
- 26 Aug, 2017 1 commit
-
-
Cole Bemis authored
-
- 10 Aug, 2017 1 commit
-
-
Cole Bemis authored
-
- 04 Aug, 2017 1 commit
-
-
severn101 authored
-
- 01 Aug, 2017 4 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
-
- 30 Jul, 2017 7 commits
-
-
Cole Bemis authored
-
Cole Bemis authored
-
Cole Bemis authored
Closes #20, closes #79, closes #159
-
Cole Bemis authored
-
Cole Bemis authored
Closes #15, closes #158
-
Cole Bemis authored
Closes #152
-
Cole Bemis authored
Closes #145
-