@natec/mef-dev-ui-kit 16.3.63 → 16.3.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -28
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# @natec/mef-dev-ui-kit
|
|
2
2
|
|
|
3
3
|
## Description
|
|
4
|
-
This is Ui-kit-lib to create plugins according to the template and visual on the platform
|
|
4
|
+
This is Ui-kit-lib to create plugins according to the template and visual on the platform with the help of ready made solutions.It provides users with the opportunity to explore and test various components and functionalities of the library before using them in their own projects.
|
|
5
|
+
The UI kit library allows users to create plugins according to templates and visuals on the [mef.dev platform](https://preview.mef.dev/). Users can explore and test various components and functionalities of the library before using them in their own projects.
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
To create your first UI package, users can follow the instructions provided [here](https://mef.dev/dev_guides/first_ui_plugin.md).
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
Users can also find a plugin with a worked library [here](https://github.com/mef-dev/tutorial-ui-plugin), which may serve as an example or template for creating their own plugins.
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
To see all the elements of the UI kit library displayed together, users can visit the [UI-kit-demo](https://mef.dev/ui_kit_demo).
|
|
12
|
+
|
|
13
|
+
These resources provide users with the necessary guidance and tools to create UI packages using the UI kit library for the mef.dev platform.
|
|
11
14
|
|
|
12
15
|
## Version control
|
|
13
16
|
You can use the library on the following versions of Angular:
|
|
@@ -24,24 +27,19 @@ You can use the library on the following versions of Angular:
|
|
|
24
27
|
|
|
25
28
|
> @natec/mef-dev-ui-kit:
|
|
26
29
|
```sh
|
|
27
|
-
npm i @natec/mef-dev-ui-kit
|
|
30
|
+
npm i @natec/mef-dev-ui-kit
|
|
28
31
|
```
|
|
29
32
|
|
|
30
33
|
> Simple table extension with sorting, filtering, paging... for Angular apps. ngx-datatable:
|
|
31
34
|
```sh
|
|
32
|
-
npm i @swimlane/ngx-datatable
|
|
35
|
+
npm i @swimlane/ngx-datatable
|
|
33
36
|
```
|
|
34
37
|
|
|
35
38
|
> Sleek, intuitive, and powerful front-end framework for faster and easier web development. bootstrap:
|
|
36
39
|
```sh
|
|
37
|
-
npm i bootstrap
|
|
40
|
+
npm i bootstrap
|
|
38
41
|
```
|
|
39
42
|
|
|
40
|
-
> Ngx-bootstrap provides Bootstrap components powered by Angular, so you don't need to include original JS components.ngx-bootstrap:
|
|
41
|
-
```sh
|
|
42
|
-
npm i ngx-bootstrap@10
|
|
43
|
-
```
|
|
44
|
-
|
|
45
43
|
> CSS font-family parser/stringifier. Font-awesome:
|
|
46
44
|
```sh
|
|
47
45
|
npm i font-awesome@4
|
|
@@ -119,23 +117,11 @@ After, you can use MefDev components in your project. Example of usage:
|
|
|
119
117
|
</mefdev-card>
|
|
120
118
|
```
|
|
121
119
|
|
|
122
|
-
### List of modules you can import in your project:
|
|
123
|
-
* MefDevCardModule
|
|
124
|
-
* MefDevCollapseModule
|
|
125
|
-
* MefDevModalModule
|
|
126
|
-
* MefDevPageLayoutsModule
|
|
127
|
-
* MefDevFilteredFieldModule
|
|
128
|
-
* MefDevHelpBlockModule
|
|
129
|
-
* MefDevProgressModule
|
|
130
|
-
* MefDevSelectModule
|
|
131
|
-
* MefDevSwitchModule
|
|
132
|
-
* MefDevTabsModule
|
|
133
|
-
|
|
134
120
|
> Examples of other components you can find in this documentation in left menubar.
|
|
135
121
|
|
|
136
122
|
### Useful links:
|
|
137
123
|
___
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
124
|
+
* Documentation of the library: https://mef.dev/ui_kit
|
|
125
|
+
* Demo of the library: https://mef.dev/ui_kit_demo
|
|
126
|
+
* Library package: https://www.npmjs.com/package/@natec/mef-dev-ui-kit
|
|
127
|
+
* Ui-kit-lib at GitHub: https://github.com/mef-dev/ui-kit-demo.git
|