Skip to content

Commit e67980f

Browse files
committed
version update and readme reference fixes
1 parent fe645c0 commit e67980f

File tree

8 files changed

+21
-25
lines changed

8 files changed

+21
-25
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ngx-dynamic-components
22

3-
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms and any other web or mobile-friendly layouts.
3+
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms or any other mobile-friendly web layouts.
44

5-
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods to tap into key events in the lifecycle of a component.
5+
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods.
66

7-
We have three libraries to consider
8-
- [**@ngx-dynamic-components\core**](./projects/core/readme.md) - a core dynamic rendering engine with no dependencies to external library. It contains a basic HTML components.
9-
- [**@ngx-dynamic-components\bootstrap**](./projects/bootstrap/readme.md) - a set of bootstrap based components. This project has dependencies to the [ngx-bootstrap](https://valor-software.com/ngx-bootstrap)
10-
- [**@ngx-dynamic-components\material**](./projects/material/readme.md) - a set of [Angular Material Components](https://material.angular.io/)
7+
We have three libraries to offer
8+
- [**@ngx-dynamic-components\core**](https://github.com/FalconSoft/ngx-dynamic-components/blob/master/projects/core/README.md) - a core dynamic rendering engine with no dependencies to any external library. And contains all basic HTML components.
9+
- [**@ngx-dynamic-components\bootstrap**](https://github.com/FalconSoft/ngx-dynamic-components/blob/master/projects/bootstrap/readme.md) - a set of bootstrap based components. This project has dependencies to the [ngx-bootstrap](https://valor-software.com/ngx-bootstrap)
10+
- [**@ngx-dynamic-components\material**](https://github.com/FalconSoft/ngx-dynamic-components/blob/master/projects/material/readme.md) - a set of [Angular Material Components](https://material.angular.io/)
1111

1212
## Getting started
1313

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-dynamic-components",
3-
"version": "0.1.20",
4-
"description": "NGX Dynamic Components is a dynamic configuration driven web page builder. It is designed to build anything from a single one form web page to more complex web app.",
3+
"version": "0.2.0",
4+
"description": "NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms or any other mobile-friendly web layouts.",
55
"author": "FalconSoft Ltd",
66
"repository": {
77
"type": "git",

projects/bootstrap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# @ngx-dynamic-components/bootstrap
22

3-
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms and any other web or mobile-friendly layouts.
3+
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms or any other mobile-friendly web layouts.
44

5-
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods to tap into key events in the lifecycle of a component.
5+
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods.
66

77
**@ngx-dynamic-components\bootstrap** - a set of bootstrap based components. This project has dependencies to the [ngx-bootstrap](https://valor-software.com/ngx-bootstrap)
88

projects/bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-dynamic-components/bootstrap",
3-
"version": "0.1.20",
3+
"version": "0.2.0",
44
"private": false,
55
"description": "@ngx-dynamic-components/bootstrap is Angular 7+ library what contains a bootstrap interfaces to build a configuration driven web pages and workflows.",
66
"author": "FalconSoft Ltd <info@falconsoft-ltd.com>",
@@ -21,7 +21,7 @@
2121
"peerDependencies": {
2222
"@angular/common": "^10.0.8",
2323
"@angular/core": "^10.0.8",
24-
"@ngx-dynamic-components/core": ">=0.1.20",
24+
"@ngx-dynamic-components/core": ">=0.2.0",
2525
"bootstrap-scss": "^4.4.1",
2626
"ngx-bootstrap": "^6.0.0"
2727
}

projects/core/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# @ngx-dynamic-components/core
22

3-
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms and any other web or mobile-friendly layouts.
3+
NGX Dynamic Components is a configuration based dynamic components library for Angular. That allows you to rapidly create dynamic forms or any other mobile-friendly web layouts.
44

5-
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods to tap into key events in the lifecycle of a component.
5+
Any web content can be dynamically rendered from JSON or XML based configuration with a full support of lifecycle hook methods.
66

7-
We have three libraries to consider
8-
9-
**@ngx-dynamic-components\core** - a core dynamic rendering engine with no dependencies to external library. It contains a basic HTML components.
7+
**@ngx-dynamic-components\core** - a core dynamic rendering engine with no dependencies to any external library. It contains all basic HTML components.
108

119
## Getting started
1210

@@ -118,8 +116,6 @@ From the example above you see that have four main properties:
118116
- **dataModel** - data object what you can bind to
119117
- **eventHandlers** - event handlers function where you can subscribe to any events
120118

121-
## FAQ
122-
123119
### Why would you use it.
124120

125121
Composing and maintaining web forms and responsive web layouts can be tedious job. You will always have similar components with similar design patterns and requirements are usually changing frequently. While ngx-dynamic-components will allow you to:
@@ -147,4 +143,4 @@ ngx-dynamic-components was build to power a [Worksheet Systems](https://workshee
147143

148144
## License
149145

150-
A permissive MIT (c) - [FalconSoft Ltd](https://falconsoft-ltd.com)
146+
A permissive MIT (c) - [FalconSoft Ltd](https://falconsoft-ltd.com)

projects/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-dynamic-components/core",
3-
"version": "0.1.20",
3+
"version": "0.2.0",
44
"private": false,
55
"description": "@ngx-dynamic-components/core is Angular 7+ library what contains a core interfaces to build a configuration driven web pages and workflows.",
66
"author": "FalconSoft Ltd <info@falconsoft-ltd.com>",

projects/material/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"@angular/core": "^9.0.1",
2626
"@angular/flex-layout": "^9.0.0-beta.29",
2727
"@angular/material": "^9.0.0",
28-
"@ngx-dynamic-components/core": ">=0.1.20"
28+
"@ngx-dynamic-components/core": ">=0.2.0"
2929
}
3030
}

projects/tools/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-dynamic-components/tools",
3-
"version": "0.1.20",
3+
"version": "0.2.0",
44
"private": false,
55
"description": "@ngx-dynamic-components/tools is Angular 7+ library what contains a core interfaces to build a configuration driven web pages.",
66
"author": "FalconSoft Ltd <info@falconsoft-ltd.com>",
@@ -23,8 +23,8 @@
2323
"@angular/core": "^10.0.8",
2424
"@angular/flex-layout": "^10.0.0-beta.32",
2525
"@angular/material": "^10.1.2",
26-
"@ngx-dynamic-components/bootstrap": ">=0.1.20",
27-
"@ngx-dynamic-components/core": ">=0.1.20",
26+
"@ngx-dynamic-components/bootstrap": ">=0.2.0",
27+
"@ngx-dynamic-components/core": ">=0.2.0",
2828
"@ngx-dynamic-components/material": ">=0.0.45",
2929
"ace-builds": "^1.4.12",
3030
"angular-split": "^4.0.0"

0 commit comments

Comments
 (0)