Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 1932ecf

Browse files
release: docs v1.0.0-alpha.18 and lazy-img v1.0.0-alpha.8
1 parent b637664 commit 1932ecf

File tree

10 files changed

+36
-5
lines changed

10 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
<a name="1.0.0-beta.48"></a>
2+
# [1.0.0-beta.48](https://github.com/deckgo/deckdeckgo/compare/v1.0.0-beta.47...v1.0.0-beta.48) (2019-06-27)
3+
4+
### Applications
5+
6+
* docs: v1.0.0-alpha.18 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/docs/CHANGELOG.md))
7+
8+
### Web Components
9+
10+
* lazy-img: v1.0.0-alpha.8 ([CHANGELOG](https://github.com/deckgo/deckdeckgo/blob/master/webcomponents/lazy-img/CHANGELOG.md))
11+
112
<a name="1.0.0-beta.47"></a>
213
# [1.0.0-beta.47](https://github.com/deckgo/deckdeckgo/compare/v1.0.0-beta.46-3...v1.0.0-beta.47) (2019-06-24)
314

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The [DeckDeckGo website](https://github.com/deckgo/deckdeckgo-website) is a full
2929

3030
| Project | Version | Online | Links |
3131
| ------- | ------- | ------- |:-----:|
32-
| **Documentation** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.0.0-alpha.17&color=success)](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README.md`](docs/README.md)
32+
| **Documentation** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.0.0-alpha.18&color=success)](https://docs.deckdeckgo.com) | [https://docs.deckdeckgo.com](https://docs.deckdeckgo.com) | [`README.md`](docs/README.md)
3333
| **Remote control** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.0.0-alpha.12&color=success)](https://deckdeckgo.app) | [https://deckdeckgo.app](https://deckdeckgo.app) | [`README.md`](remote/README.md)
3434
| **Studio** | ![version](https://img.shields.io/static/v1.svg?label=in%20development&message=v1.0.0-alpha.2&color=orange) | | [`README.md`](studio/README.md)
3535
| **Website** | [![version](https://img.shields.io/static/v1.svg?label=production&message=v1.0.0-beta.15&color=success)](https://deckdeckgo.com) | [https://deckdeckgo.com](https://deckdeckgo.com) | [`Repo`](https://github.com/deckgo/deckdeckgo-website/)

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="1.0.0-alpha.18"></a>
2+
# 1.0.0-alpha.18 (2019-06-27)
3+
4+
### Features
5+
6+
* new `lazy-img` component error image option
7+
18
<a name="1.0.0-alpha.17"></a>
29
# 1.0.0-alpha.17 (2019-06-24)
310

docs/docs/components/app-components-lazy-img/app-components-lazy-img.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ This component offers the following options which could be set using attributes:
3535
| -------------------------- |-----------------|-----------------|-----------------|
3636
| img-src | string | | The image source (= URI) to lazy load |
3737
| img-src-set | string | | The attribute "srcset" (= multiple URI) to lazy load in case you would like to provide multiple images for responsiveness |
38+
| img-error-src | string | | An optional image which could be displayed in case the main image would not be resolved |
3839
| img-sizes | string | | The set of media conditions to indicates what image size would be best to choose |
3940
| img-alt | string | | The image alternate text |
4041
| observer-root-margin | string | 100px 0px | A string which specifies a set of offsets to add to the root's bounding_box when calculating intersections, effectively shrinking or growing the root for calculation purposes. [More info.](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/IntersectionObserver) |

docs/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckdeckgo-docs",
3-
"version": "1.0.0-alpha.17",
3+
"version": "1.0.0-alpha.18",
44
"description": "The Progressive Web App alternative for simple presentations",
55
"license": "MIT",
66
"files": [

docs/src/app/pages/docs/components/app-components-lazy-img/app-components-lazy-img.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ export class AppComponentsLazyImg {
7575
<td>The attribute &quot;srcset&quot; (= multiple URI) to lazy load in case you would like to provide multiple images for responsiveness</td>
7676
</tr>
7777
<tr>
78+
<td>img-error-src</td>
79+
<td>string</td>
80+
<td></td>
81+
<td>An optional image which could be displayed in case the main image would not be resolved</td>
82+
</tr>
83+
<tr>
7884
<td>img-sizes</td>
7985
<td>string</td>
8086
<td></td>

webcomponents/lazy-img/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<a name="1.0.0-alpha.8"></a>
2+
# 1.0.0-alpha.8 (2019-06-27)
3+
4+
* don't display alt while loading
5+
* add an `imgErrorSrc` which could be displayed in case the image would not be resolved
6+
17
<a name="1.0.0-alpha.7"></a>
28
# 1.0.0-alpha.7 (2019-06-04)
39

webcomponents/lazy-img/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webcomponents/lazy-img/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deckdeckgo/lazy-img",
3-
"version": "1.0.0-alpha.7",
3+
"version": "1.0.0-alpha.8",
44
"description": "A dead simple Web Component to lazy load images",
55
"module": "dist/index.mjs",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)