Skip to content

Commit

Permalink
chore(release): 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Dec 15, 2018
1 parent 56ab3bc commit ed8a059
Show file tree
Hide file tree
Showing 10 changed files with 1,522 additions and 24 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="0.3.0"></a>

# [0.3.0](https://github.com/simontonsoftware/s-ng-utils/compare/v0.2.0...v0.3.0) (2018-12-15)

### Features

- `FormControlSuperclass` now extends `DirectiveSuperclass` ([f23a535](https://github.com/simontonsoftware/s-ng-utils/commit/f23a535))
- add `DirectiveSuperclass` ([b2d0213](https://github.com/simontonsoftware/s-ng-utils/commit/b2d0213))

<a name="0.2.0"></a>

# [0.2.0](https://github.com/simontonsoftware/s-ng-utils/compare/v0.1.0...v0.2.0) (2018-11-12)
Expand Down
2 changes: 1 addition & 1 deletion docs/typedoc/assets/js/search.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions docs/typedoc/classes/autodestroyable.html
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,9 @@
</li>
</ul>
</li>
<li class=" tsd-kind-class">
<a href="directivesuperclass.html" class="tsd-kind-icon">Directive<wbr>Superclass</a>
</li>
<li class=" tsd-kind-class tsd-has-type-parameter">
<a href="formcontrolsuperclass.html" class="tsd-kind-icon">Form<wbr>Control<wbr>Superclass</a>
</li>
Expand All @@ -913,8 +916,8 @@
<p>Use as the superclass for anything managed by angular&#39;s dependency injection for care-free use of <code>subscribeTo()</code>. It simply calls <code>unsubscribe()</code> during <code>ngOnDestroy()</code>. If you override <code>ngOnDestroy()</code> in your subclass, be sure to invoke the super implementation.</p>
</div>
<pre><code class="language-ts"><span class="hljs-meta">@Injectable</span>()
<span class="hljs-comment">// or @Component()</span>
<span class="hljs-comment">// or @Directive()</span>
<span class="hljs-comment">// or @Component() (also consider DirectiveSuperclass)</span>
<span class="hljs-comment">// or @Directive() (also consider DirectiveSuperclass)</span>
<span class="hljs-comment">// or @Pipe()</span>
<span class="hljs-keyword">class</span> MyThing <span class="hljs-keyword">extends</span> AutoDestroyable {
<span class="hljs-keyword">constructor</span>(<span class="hljs-params">somethingObservable: Observable</span>) {
Expand All @@ -939,7 +942,7 @@ <h3>Hierarchy</h3>
<span class="target">AutoDestroyable</span>
<ul class="tsd-hierarchy">
<li>
<a href="formcontrolsuperclass.html" class="tsd-signature-type">FormControlSuperclass</a>
<a href="directivesuperclass.html" class="tsd-signature-type">DirectiveSuperclass</a>
</li>
</ul>
</li>
Expand Down
1,263 changes: 1,263 additions & 0 deletions docs/typedoc/classes/directivesuperclass.html

Large diffs are not rendered by default.

136 changes: 123 additions & 13 deletions docs/typedoc/classes/formcontrolsuperclass.html

Large diffs are not rendered by default.

117 changes: 113 additions & 4 deletions docs/typedoc/classes/wrappedformcontrolsuperclass.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/typedoc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,9 @@
<li class=" tsd-kind-class">
<a href="classes/autodestroyable.html" class="tsd-kind-icon">Auto<wbr>Destroyable</a>
</li>
<li class=" tsd-kind-class">
<a href="classes/directivesuperclass.html" class="tsd-kind-icon">Directive<wbr>Superclass</a>
</li>
<li class=" tsd-kind-class tsd-has-type-parameter">
<a href="classes/formcontrolsuperclass.html" class="tsd-kind-icon">Form<wbr>Control<wbr>Superclass</a>
</li>
Expand Down Expand Up @@ -904,6 +907,7 @@ <h2>Index</h2>
<h3>Classes</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-class"><a href="classes/autodestroyable.html" class="tsd-kind-icon">Auto<wbr>Destroyable</a></li>
<li class="tsd-kind-class"><a href="classes/directivesuperclass.html" class="tsd-kind-icon">Directive<wbr>Superclass</a></li>
<li class="tsd-kind-class tsd-has-type-parameter"><a href="classes/formcontrolsuperclass.html" class="tsd-kind-icon">Form<wbr>Control<wbr>Superclass</a></li>
<li class="tsd-kind-class tsd-has-type-parameter"><a href="classes/wrappedformcontrolsuperclass.html" class="tsd-kind-icon">Wrapped<wbr>Form<wbr>Control<wbr>Superclass</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s-ng-utils-platform",
"version": "0.2.0",
"version": "0.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion projects/s-ng-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s-ng-utils",
"version": "0.2.0",
"version": "0.3.0",
"author": "Simonton Software",
"repository": "simontonsoftware/s-ng-utils",
"license": "MIT",
Expand Down

0 comments on commit ed8a059

Please sign in to comment.