integra-ng 2.1.0
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 +32 -0
- package/fesm2022/integra-ng.mjs +2632 -0
- package/fesm2022/integra-ng.mjs.map +1 -0
- package/index.d.ts +730 -0
- package/package.json +26 -0
- package/src/lib/themes/_variables.scss +4 -0
- package/src/lib/themes/color-palette.scss +158 -0
- package/src/lib/themes/color-variables.scss +33 -0
- package/src/lib/themes/colors.theme.scss +69 -0
- package/src/lib/themes/get-color.scss +16 -0
- package/src/lib/themes/scrollbar-mixins.scss +104 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# Integra NG
|
|
4
|
+
|
|
5
|
+
A modern Angular component library for enterprise apps.
|
|
6
|
+
|
|
7
|
+
## Project Website
|
|
8
|
+
|
|
9
|
+
[angular.integra.web.za](https://angular.integra.web.za)
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install integra-ng
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
Import the card component in your TypeScript:
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { ICard } from 'integra-ng';
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Use the card in your template:
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<i-card [title]="'Card Title'">
|
|
30
|
+
Card content goes here.
|
|
31
|
+
</i-card>
|
|
32
|
+
```
|