Skip to content

Commit

Permalink
Prepare for beta.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
thewebartisan7 committed Oct 30, 2022
1 parent be5a1c1 commit e7d3c09
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0-beta.11 (2022-10-30)

* Add new options to pass utilities methods to script like lodash `mergeWith` and `template`
* Allow to create a separated script file instead of `<script props>` inside component file
* Add options for set props object name passed to `<script props>`, props object name of `$slots` and props attribute name.

## 1.0.0-beta.10 (2022-10-28)

* Remove `computed:` and `merge:` by keeping this logic inside `<script props>`.
Expand Down
6 changes: 6 additions & 0 deletions docs-src/md/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0-beta.11 (2022-10-30)

* Add new options to pass utilities methods to script like lodash `mergeWith` and `template`
* Allow to create a separated script file instead of `<script props>` inside component file
* Add options for set props object name passed to `<script props>`, props object name of `$slots` and props attribute name.

## 1.0.0-beta.10 (2022-10-28)

* Remove `computed:` and `merge:` by keeping this logic inside `<script props>`.
Expand Down
2 changes: 1 addition & 1 deletion docs-src/pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
</div>

<p class="text-muted">
Currently <strong>v1.0.0-beta.10</strong>
Currently <strong>v1.0.0-beta.11</strong>
<span class="px-1">·</span>
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
</p>
Expand Down
24 changes: 24 additions & 0 deletions docs/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
1.0.0-beta.11 (2022-10-30)
</h2>
<ul>
<li>
Add new options to pass utilities methods to script like lodash
<code>mergeWith</code>
and
<code>template</code>
</li>
<li>
Allow to create a separated script file instead of
<code>&lt;script props&gt;</code>
inside component file
</li>
<li>
Add options for set props object name passed to
<code>&lt;script props&gt;</code>
, props object name of
<code>$slots</code>
and props attribute name.
</li>
</ul>
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
1.0.0-beta.10 (2022-10-28)
Expand Down
24 changes: 24 additions & 0 deletions docs/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -1488,6 +1488,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
1.0.0-beta.11 (2022-10-30)
</h2>
<ul>
<li>
Add new options to pass utilities methods to script like lodash
<code>mergeWith</code>
and
<code>template</code>
</li>
<li>
Allow to create a separated script file instead of
<code>&lt;script props&gt;</code>
inside component file
</li>
<li>
Add options for set props object name passed to
<code>&lt;script props&gt;</code>
, props object name of
<code>$slots</code>
and props attribute name.
</li>
</ul>
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
1.0.0-beta.10 (2022-10-28)
Expand Down
26 changes: 25 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
</div>
<p class="text-muted">
Currently
<strong>v1.0.0-beta.10</strong>
<strong>v1.0.0-beta.11</strong>
<span class="px-1">·</span>
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
</p>
Expand Down Expand Up @@ -93,6 +93,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
1.0.0-beta.11 (2022-10-30)
</h2>
<ul>
<li>
Add new options to pass utilities methods to script like lodash
<code>mergeWith</code>
and
<code>template</code>
</li>
<li>
Allow to create a separated script file instead of
<code>&lt;script props&gt;</code>
inside component file
</li>
<li>
Add options for set props object name passed to
<code>&lt;script props&gt;</code>
, props object name of
<code>$slots</code>
and props attribute name.
</li>
</ul>
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
1.0.0-beta.10 (2022-10-28)
Expand Down
24 changes: 24 additions & 0 deletions docs/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
</div>
<!-- /.modal-header -->
<div class="modal-body">
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
1.0.0-beta.11 (2022-10-30)
</h2>
<ul>
<li>
Add new options to pass utilities methods to script like lodash
<code>mergeWith</code>
and
<code>template</code>
</li>
<li>
Allow to create a separated script file instead of
<code>&lt;script props&gt;</code>
inside component file
</li>
<li>
Add options for set props object name passed to
<code>&lt;script props&gt;</code>
, props object name of
<code>$slots</code>
and props attribute name.
</li>
</ul>
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
1.0.0-beta.10 (2022-10-28)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posthtml-component",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "PostHTML Components Blade-like with slots, attributes as props and custom tag",
"license": "MIT",
"repository": "thewebartisan7/posthtml-components",
Expand Down

0 comments on commit e7d3c09

Please sign in to comment.