Skip to content

Commit e7d3c09

Browse files
Prepare for beta.11 release
1 parent be5a1c1 commit e7d3c09

File tree

8 files changed

+111
-3
lines changed

8 files changed

+111
-3
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.0-beta.11 (2022-10-30)
2+
3+
* Add new options to pass utilities methods to script like lodash `mergeWith` and `template`
4+
* Allow to create a separated script file instead of `<script props>` inside component file
5+
* Add options for set props object name passed to `<script props>`, props object name of `$slots` and props attribute name.
6+
17
## 1.0.0-beta.10 (2022-10-28)
28

39
* Remove `computed:` and `merge:` by keeping this logic inside `<script props>`.

docs-src/md/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.0-beta.11 (2022-10-30)
2+
3+
* Add new options to pass utilities methods to script like lodash `mergeWith` and `template`
4+
* Allow to create a separated script file instead of `<script props>` inside component file
5+
* Add options for set props object name passed to `<script props>`, props object name of `$slots` and props attribute name.
6+
17
## 1.0.0-beta.10 (2022-10-28)
28

39
* Remove `computed:` and `merge:` by keeping this logic inside `<script props>`.

docs-src/pages/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
1414
</div>
1515

1616
<p class="text-muted">
17-
Currently <strong>v1.0.0-beta.10</strong>
17+
Currently <strong>v1.0.0-beta.11</strong>
1818
<span class="px-1">·</span>
1919
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
2020
</p>

docs/demo.html

+24
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
7777
</div>
7878
<!-- /.modal-header -->
7979
<div class="modal-body">
80+
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
81+
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
82+
1.0.0-beta.11 (2022-10-30)
83+
</h2>
84+
<ul>
85+
<li>
86+
Add new options to pass utilities methods to script like lodash
87+
<code>mergeWith</code>
88+
and
89+
<code>template</code>
90+
</li>
91+
<li>
92+
Allow to create a separated script file instead of
93+
<code>&lt;script props&gt;</code>
94+
inside component file
95+
</li>
96+
<li>
97+
Add options for set props object name passed to
98+
<code>&lt;script props&gt;</code>
99+
, props object name of
100+
<code>$slots</code>
101+
and props attribute name.
102+
</li>
103+
</ul>
80104
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
81105
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
82106
1.0.0-beta.10 (2022-10-28)

docs/docs.html

+24
Original file line numberDiff line numberDiff line change
@@ -1488,6 +1488,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
14881488
</div>
14891489
<!-- /.modal-header -->
14901490
<div class="modal-body">
1491+
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
1492+
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
1493+
1.0.0-beta.11 (2022-10-30)
1494+
</h2>
1495+
<ul>
1496+
<li>
1497+
Add new options to pass utilities methods to script like lodash
1498+
<code>mergeWith</code>
1499+
and
1500+
<code>template</code>
1501+
</li>
1502+
<li>
1503+
Allow to create a separated script file instead of
1504+
<code>&lt;script props&gt;</code>
1505+
inside component file
1506+
</li>
1507+
<li>
1508+
Add options for set props object name passed to
1509+
<code>&lt;script props&gt;</code>
1510+
, props object name of
1511+
<code>$slots</code>
1512+
and props attribute name.
1513+
</li>
1514+
</ul>
14911515
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
14921516
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
14931517
1.0.0-beta.10 (2022-10-28)

docs/index.html

+25-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h1 class="display-1 fw-bold mb-4">Build the web with PostHTML</h1>
5959
</div>
6060
<p class="text-muted">
6161
Currently
62-
<strong>v1.0.0-beta.10</strong>
62+
<strong>v1.0.0-beta.11</strong>
6363
<span class="px-1">·</span>
6464
<a href="#" class="link-secondary" data-bs-toggle="modal" data-bs-target="#modalWithComponents">Changelog</a>
6565
</p>
@@ -93,6 +93,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
9393
</div>
9494
<!-- /.modal-header -->
9595
<div class="modal-body">
96+
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
97+
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
98+
1.0.0-beta.11 (2022-10-30)
99+
</h2>
100+
<ul>
101+
<li>
102+
Add new options to pass utilities methods to script like lodash
103+
<code>mergeWith</code>
104+
and
105+
<code>template</code>
106+
</li>
107+
<li>
108+
Allow to create a separated script file instead of
109+
<code>&lt;script props&gt;</code>
110+
inside component file
111+
</li>
112+
<li>
113+
Add options for set props object name passed to
114+
<code>&lt;script props&gt;</code>
115+
, props object name of
116+
<code>$slots</code>
117+
and props attribute name.
118+
</li>
119+
</ul>
96120
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
97121
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
98122
1.0.0-beta.10 (2022-10-28)

docs/test.html

+24
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,30 @@ <h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5>
221221
</div>
222222
<!-- /.modal-header -->
223223
<div class="modal-body">
224+
<h2 id="1.0.0-beta.11-(2022-10-30)" tabindex="-1">
225+
<a class="header-anchor" href="#1.0.0-beta.11-(2022-10-30)">#</a>
226+
1.0.0-beta.11 (2022-10-30)
227+
</h2>
228+
<ul>
229+
<li>
230+
Add new options to pass utilities methods to script like lodash
231+
<code>mergeWith</code>
232+
and
233+
<code>template</code>
234+
</li>
235+
<li>
236+
Allow to create a separated script file instead of
237+
<code>&lt;script props&gt;</code>
238+
inside component file
239+
</li>
240+
<li>
241+
Add options for set props object name passed to
242+
<code>&lt;script props&gt;</code>
243+
, props object name of
244+
<code>$slots</code>
245+
and props attribute name.
246+
</li>
247+
</ul>
224248
<h2 id="1.0.0-beta.10-(2022-10-28)" tabindex="-1">
225249
<a class="header-anchor" href="#1.0.0-beta.10-(2022-10-28)">#</a>
226250
1.0.0-beta.10 (2022-10-28)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posthtml-component",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "PostHTML Components Blade-like with slots, attributes as props and custom tag",
55
"license": "MIT",
66
"repository": "thewebartisan7/posthtml-components",

0 commit comments

Comments
 (0)