@s-libs/ng-app-state
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "@s-libs/ng-app-state", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"author": "Simonton Software", | ||
@@ -15,6 +15,6 @@ "license": "MIT", | ||
"@angular/core": "^10.2.0", | ||
"@s-libs/js-core": "^0.1.0", | ||
"@s-libs/micro-dash": "^0.1.0", | ||
"@s-libs/ng-core": "^0.1.0", | ||
"@s-libs/rxjs-core": "^0.1.0" | ||
"@s-libs/js-core": "^0.2.0", | ||
"@s-libs/micro-dash": "^0.2.0", | ||
"@s-libs/ng-core": "^0.2.0", | ||
"@s-libs/rxjs-core": "^0.2.0" | ||
}, | ||
@@ -21,0 +21,0 @@ "dependencies": { |
@@ -39,3 +39,3 @@ Painlessly integrate [`app-state`](https://github.com/simontonsoftware/s-libs/projects/app-state) into template-driven Angular forms. | ||
class AccountSettingsComponent { | ||
nameStore: StoreObject<string>; | ||
nameStore: Store<string>; | ||
@@ -48,5 +48,5 @@ constructor(myStore: MyStore) { | ||
`[nasModel]` is tested to work with all standard form controls. Except where noted, they all bind to `StoreObject<string>` objects. | ||
`[nasModel]` is tested to work with all standard form controls. Except where noted, they all bind to `Store<string>` objects. | ||
- `<input type="checkbox">` - binds to `StoreObject<boolean>` | ||
- `<input type="checkbox">` - binds to `Store<boolean>` | ||
- `<input type="color">` | ||
@@ -57,6 +57,6 @@ - `<input type="date">` | ||
- `<input type="month">` | ||
- `<input type="number">` - binds to `StoreObject<number>` | ||
- `<input type="number">` - binds to `Store<number>` | ||
- `<input type="password">` | ||
- `<input type="radio">` | ||
- `<input type="range">` - binds to `StoreObject<number>` | ||
- `<input type="range">` - binds to `Store<number>` | ||
- `<input type="search">` | ||
@@ -69,4 +69,4 @@ - `<input type="tel">` | ||
- `<input>` | ||
- `<select multiple>` - binds to `StoreObject<string[]>` | ||
- `<select multiple>` - binds to `Store<string[]>` | ||
- `<select>` | ||
- `<textarea>` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
184058