Commit graph

11 commits

Author SHA1 Message Date
erik
978af941ba fix(icon): single pronounciation in JAWS/FF 2020-10-22 11:18:12 +02:00
Joren Broekema
87740606bc chore: remove live/demos section from readmes 2020-06-03 13:49:47 +02:00
Thijs Louisse
6b1698f90f chore: updated dep versions and made compatible 2020-05-29 17:01:15 +02:00
Thomas Allmer
bcd074d1fb feat: use markdown javascript (mdjs) for documentation
Co-authored-by: CubLion <alex.ghiu@ing.com>
2020-05-29 17:01:15 +02:00
Thomas Allmer
a8fb94edca chore: remove pilot phase header 2020-04-29 10:05:06 +02:00
Thijs Louisse
e564223708
chore(icon): update icon story for icon sets (#626)
* chore(icon): update docs (icon story for icon sets and readme)
2020-03-05 13:20:42 +01:00
Thomas Allmer
89b835a799 feat: improved storybook demos
Co-authored-by: Joren Broekema <Joren.Broekema@ing.com>
Co-authored-by: Alex Ghiu <Alex.Ghiu@ing.com>
Co-authored-by: Thijs Louisse <Thijs.Louisse@ing.com>
2020-01-13 13:58:03 +01:00
Mikhail Bashkirov
2de378391c chore: fix style of markdown files 2019-07-24 15:20:19 +02:00
Mikhail Bashkirov
738774e82b chore: fix prepublish pattern format 2019-07-23 17:03:37 +02:00
Mikhail Bashkirov
a6b0780d4f feat(icon): enforce icon security using tagged templates
BREAKING: Icon definition requires a function using a tag passed via arguments:

```js
// myicon.svg.js

// before
export default '<svg>...</svg>';

// after
export default tag => tag`<svg>...</svg>`;
```

Application developers have an alternative shortcut to use in-place with lit-html:

```js
// MyComponent.js

// before
render() {
  return html`
    <lion-icon .svg="${'<svg>...</svg>'}"></lion-icon>
  `;
}

// after
render() {
  return html`
    <lion-icon .svg="${html`<svg>...</svg>`}"></lion-icon>
  `;
}
```
2019-07-01 17:48:05 +02:00
Thomas Allmer
ec8da8f12c feat: release inital public lion version
Co-authored-by: Mikhail Bashkirov <mikhail.bashkirov@ing.com>
Co-authored-by: Thijs Louisse <thijs.louisse@ing.com>
Co-authored-by: Joren Broekema <joren.broekema@ing.com>
Co-authored-by: Gerjan van Geest <gerjan.van.geest@ing.com>
Co-authored-by: Erik Kroes <erik.kroes@ing.com>
Co-authored-by: Lars den Bakker <lars.den.bakker@ing.com>
2019-04-26 10:37:57 +02:00