Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
smalluban committed Nov 8, 2018
1 parent 2645986 commit dc1d03d
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 33 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,11 @@ After all, `class` syntax in JavaScript is only a sugar on top of the constructo

Lifecycle can be minimized with smart change detection and cache mechanism. Also, those callbacks can be applied independently in the property scope rather than globally in the component definition.

With all of that, the code becomes simple to understand and data flow is written in a declarative way. Are you sold? You can read more in the [Core Concepts](docs/core-concepts/README.md) section of the project documentation.
With all of that, the code becomes simple to understand and data flow is written in a declarative way. Are you sold? You can read more in the [Introduction](docs/core-concepts/introduction.md) section of the project documentation.

## Documentation

The hybrids documentation is available at [gitbook.io](https://hybrids.gitbook.io/hybrids) or in the [docs](docs/README.md) of this repository:

- [Core Concepts](docs/core-concepts/README.md)
- [Built-in Factories](docs/built-in-factories/README.md)
- [Templates](docs/templates.md)
- [Utils](docs/utils.md)
- [API Reference](docs/api-reference.md)
The hybrids documentation is available at [gitbook.io](https://hybrids.gitbook.io/hybrids) or in the [docs](docs/README.md) path of this repository.

### Talks & Articles

Expand Down
57 changes: 32 additions & 25 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
# Table of Contents

* [Overview](../README.md)
* [Core Concepts](core-concepts/README.md)
* [Property Descriptors](core-concepts/property-descriptors.md)
* [Factories](core-concepts/factories.md)
* [Property Translation](core-concepts/property-translation.md)
* [Simplified Lifecycle](core-concepts/simplified-lifecycle.md)
* [Component Definition](core-concepts/component-definition.md)
* [Built-in Factories](built-in-factories/README.md)
* [Property](built-in-factories/property.md)
* [Parent & Children](built-in-factories/parent-children.md)
* [Render](built-in-factories/render.md)
* [Templates](templates.md)
* [Properties & Attributes](templates.md#properties-and-attributes)
* [Event Listeners](templates.md#event-listeners)
* [Values](templates.md#values)
* [Conditions](templates.md#conditions)
* [Nested Templates](templates.md#nested-templates)
* [Arrays](templates.md#arrays)
* [Promises](templates.md#promises)
* [Resolving Dependencies](templates.md#resolving-dependencies)
* [Limitations](templates.md#limitations)
* [Utils](utils.md)
- [Overview](../README.md)

----
## Core Concepts

* [API Reference](api-reference.md)
* [Changelog](../CHANGELOG.md)
- [Introduction](core-concepts/introduction.md)
- [Property Descriptors](core-concepts/property-descriptors.md)
- [Factories](core-concepts/factories.md)
- [Property Translation](core-concepts/property-translation.md)
- [Simplified Lifecycle](core-concepts/simplified-lifecycle.md)
- [Component Definition](core-concepts/component-definition.md)

## Built-in Factories
- [Property](built-in-factories/property.md)
- [Parent & Children](built-in-factories/parent-children.md)
- [Render](built-in-factories/render.md)

## Template Engine

- [Templates](templates.md)
- [Properties & Attributes](templates.md#properties-and-attributes)
- [Event Listeners](templates.md#event-listeners)
- [Values](templates.md#values)
- [Conditions](templates.md#conditions)
- [Nested Templates](templates.md#nested-templates)
- [Arrays](templates.md#arrays)
- [Promises](templates.md#promises)
- [Resolving Dependencies](templates.md#resolving-dependencies)
- [Limitations](templates.md#limitations)

## Misc

- [Utils](utils.md)
- [API Reference](api-reference.md)
- [Changelog](../CHANGELOG.md)
1 change: 1 addition & 0 deletions docs/core-concepts/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Core Concepts

- [Introduction](introduction.md)
- [Property Descriptors](property-descriptors.md)
- [Factories](factories.md)
- [Property Translation](property-translation.md)
Expand Down
1 change: 1 addition & 0 deletions docs/core-concepts/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Introduction

0 comments on commit dc1d03d

Please sign in to comment.