ngx-lite-form 1.1.7-pr.16.20250819062814 → 1.1.8
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,16 +21,16 @@ A modern, lightweight Angular form components library with TypeScript support, b
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npm install
|
|
24
|
+
npm install lite-form
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Quick Usage
|
|
28
28
|
|
|
29
29
|
```typescript
|
|
30
|
-
import { LiteFormModule } from '
|
|
30
|
+
import { LiteFormModule } from 'lite-form';
|
|
31
31
|
import { FormControl, Validators } from '@angular/forms';
|
|
32
32
|
|
|
33
|
-
import { FieldDto, SelectFieldDto, MultiSelectFieldDto, RadioFieldDto, FileFieldDto } from '
|
|
33
|
+
import { FieldDto, SelectFieldDto, MultiSelectFieldDto, RadioFieldDto, FileFieldDto } from 'lite-form';
|
|
34
34
|
|
|
35
35
|
@Component({
|
|
36
36
|
standalone: true,
|
|
@@ -92,7 +92,7 @@ Date & time picker component for selecting both date and time, with custom forma
|
|
|
92
92
|
|
|
93
93
|
**Example:**
|
|
94
94
|
```typescript
|
|
95
|
-
import { FieldDto } from '
|
|
95
|
+
import { FieldDto } from 'lite-form';
|
|
96
96
|
datetimeField = new FieldDto('Event Date & Time', new FormControl(''));
|
|
97
97
|
```
|
|
98
98
|
```html
|
|
@@ -114,7 +114,7 @@ File upload component with drag & drop, badge, file management panel, and camera
|
|
|
114
114
|
|
|
115
115
|
**Example:**
|
|
116
116
|
```typescript
|
|
117
|
-
import { FileFieldDto } from '
|
|
117
|
+
import { FileFieldDto } from 'lite-form';
|
|
118
118
|
fileField = new FileFieldDto('Upload Files', new FormControl([]));
|
|
119
119
|
```
|
|
120
120
|
```html
|
|
@@ -220,7 +220,7 @@ The library includes comprehensive SCSS styling. To customize:
|
|
|
220
220
|
|
|
221
221
|
### Building the Library
|
|
222
222
|
```bash
|
|
223
|
-
ng build
|
|
223
|
+
ng build lite-form
|
|
224
224
|
```
|
|
225
225
|
|
|
226
226
|
### Publishing
|
|
@@ -231,7 +231,7 @@ npm publish
|
|
|
231
231
|
|
|
232
232
|
### Running Tests
|
|
233
233
|
```bash
|
|
234
|
-
ng test
|
|
234
|
+
ng test lite-form
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
## Browser Support
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-lite-form",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "A lightweight Angular form library with reusable input, textarea, select, multi-select, radio, checkbox, date picker and password components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|