@coreui/angular-pro 5.1.7 → 5.1.11
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 +9 -7
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
Before you begin, make sure your development environment includes `Node.js®` and `npm` package manager.
|
|
71
71
|
|
|
72
72
|
###### Node.js
|
|
73
|
-
[**Angular 17**](https://angular.io/guide/what-is-angular) requires `Node.js` LTS version `^18.13` or `^20.9`.
|
|
73
|
+
[**Angular 17**](https://v17.angular.io/guide/what-is-angular) requires `Node.js` LTS version `^18.13` or `^20.9`.
|
|
74
74
|
|
|
75
75
|
- To check your version, run `node -v` in a terminal/console window.
|
|
76
76
|
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
|
|
@@ -84,10 +84,12 @@ npm install -g @angular/cli
|
|
|
84
84
|
|
|
85
85
|
### Installation
|
|
86
86
|
Several quick start options are available (pick one):
|
|
87
|
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
87
|
+
- Add CoreUI to your Angular project:
|
|
88
|
+
- Install with [Angular CLI](https://angular.dev/cli/add): `ng add @coreui/angular-pro`
|
|
89
|
+
- Install with [npm](https://www.npmjs.com/): `npm install @coreui/angular-pro @coreui/icons-angular @coreui/coreui-pro`
|
|
90
|
+
- Get the source code:
|
|
91
|
+
- [Download the latest release](https://coreui.io/download)
|
|
92
|
+
- Clone the repo: `git clone https://github.com/coreui/coreui-angular-pro.git`
|
|
91
93
|
|
|
92
94
|
Read the [Getting started page](https://coreui.io/angular/docs/) for information on the framework contents, templates and examples, and more.
|
|
93
95
|
|
|
@@ -96,13 +98,13 @@ Read the [Getting started page](https://coreui.io/angular/docs/) for information
|
|
|
96
98
|
##### Installation
|
|
97
99
|
|
|
98
100
|
```bash
|
|
99
|
-
npm install @coreui/coreui --save
|
|
101
|
+
npm install @coreui/coreui-pro --save
|
|
100
102
|
```
|
|
101
103
|
|
|
102
104
|
##### Basic usage
|
|
103
105
|
|
|
104
106
|
```scss
|
|
105
|
-
@import "@coreui/coreui/scss/coreui";
|
|
107
|
+
@import "@coreui/coreui-pro/scss/coreui";
|
|
106
108
|
```
|
|
107
109
|
|
|
108
110
|
#### Bootstrap CSS files
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.11",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@angular/core": "^17.3.0",
|
|
29
29
|
"@angular/forms": "^17.3.0",
|
|
30
30
|
"@angular/router": "^17.3.0",
|
|
31
|
-
"@coreui/coreui-pro": "^5.
|
|
32
|
-
"@coreui/icons-angular": "~5.
|
|
31
|
+
"@coreui/coreui-pro": "^5.3.0",
|
|
32
|
+
"@coreui/icons-angular": "~5.1.11",
|
|
33
33
|
"rxjs": "^7.8.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
@@ -50,6 +50,10 @@
|
|
|
50
50
|
"components"
|
|
51
51
|
],
|
|
52
52
|
"eslintConfig": {},
|
|
53
|
+
"schematics": "./schematics/collection.json",
|
|
54
|
+
"ng-add": {
|
|
55
|
+
"save": true
|
|
56
|
+
},
|
|
53
57
|
"module": "fesm2022/coreui-angular-pro.mjs",
|
|
54
58
|
"typings": "index.d.ts",
|
|
55
59
|
"exports": {
|