diff --git a/docs/index.md b/docs/index.md
index 9c3b14fd..a2026876 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -14,7 +14,7 @@ It allows, in addition to translation, to localize numbers and dates of your app
---
-> Library version: 4.1.2 - [Changelog](https://github.com/robisim74/angular-l10n/releases)
+> Library version: 4.1.3 - [Changelog](https://github.com/robisim74/angular-l10n/releases)
@@ -64,4 +64,4 @@ and use global `ng.l10n` namespace.
---
### AoT compilation, Server Side Rendering & strict
-This library is compatible with AoT compilation & Server Side Rendering. It also supports the `strict` TypeScript compiler option.
+This library is compatible with AoT compilation & [Server Side Rendering](quick-start/#appendix-d-using-angular-universal). It also supports the `strict` TypeScript compiler option.
diff --git a/docs/quick-start.md b/docs/quick-start.md
index a4d546eb..53ca1bd4 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -326,9 +326,9 @@ import { Component, OnInit } from '@angular/core';
Subtitle
-{{ today }}
-{{ pi }}
-{{ value }}
+{{ today }}
+{{ pi }}
+{{ value }}
` diff --git a/docs/spec/api.md b/docs/spec/api.md index 6b64edb0..05dc66aa 100644 --- a/docs/spec/api.md +++ b/docs/spec/api.md @@ -36,7 +36,7 @@ Method | Function ### L10nLoader Method | Function ------ | -------- -`load(): PromiseUser notifications
+User notifications
```{{ today }}
-{{ today }}
+{{ today }}
{{ value }}
-{{ value }}
+{{ value }}
{{ value }}
-{{ value }}
+{{ value }}
{{ value }}
-{{ value }}
+{{ value }}
```User notifications
+User notifications
``` _Json_: ``` diff --git a/docs/spec/library-structure.md b/docs/spec/library-structure.md index 0f3572f3..a8276196 100644 --- a/docs/spec/library-structure.md +++ b/docs/spec/library-structure.md @@ -34,6 +34,6 @@ Class | Contract ### Main class-interfaces Class | Contract ----- | -------- -`LocaleStorage` | Class-interface to create a custom storage for default locale & currency +`LocaleStorage` | Class-interface to create a custom storage for default locale, currency & timezone `TranslationProvider` | Class-interface to create a custom provider for translation data `TranslationHandler` | Class-interface to create a custom handler for translated values diff --git a/docs/spec/validation.md b/docs/spec/validation.md index a6f79691..5bc37ab7 100644 --- a/docs/spec/validation.md +++ b/docs/spec/validation.md @@ -24,15 +24,15 @@ Directive | Selectors Directive | Validator | Options | Errors --------- | --------- | ------- | ------ -`L10nNumberValidator` | `l10nValidateNumber=[digitInfo]` | `[minValue]` `[maxValue]` | `format` or `minValue` or `maxValue` +`L10nNumberValidator` | `digits=[digitInfo]` | `[minValue]` `[maxValue]` | `format` or `minValue` or `maxValue` where `digitInfo` has the following format: `{minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}`, and `minValue` and `maxValue` attributes are optional: ```Html - + ``` or, if you use variables: ```Html - + ``` The number can be entered with or without the thousands separator.