@d4k-ui/nbx-inputs 21.0.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 +14 -0
- package/fesm2022/d4k-ui-nbx-inputs.mjs +1342 -0
- package/fesm2022/d4k-ui-nbx-inputs.mjs.map +1 -0
- package/package.json +28 -0
- package/types/d4k-ui-nbx-inputs.d.ts +382 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Nebular extended form with validation errors and some extensions
|
|
2
|
+
|
|
3
|
+
## Works only on Angular 19 and above
|
|
4
|
+
## For correct operation you need to specify the root provider in your application:
|
|
5
|
+
- NbThemeModule.forRoot(),
|
|
6
|
+
- NbEvaIconsModule,
|
|
7
|
+
- NbDatepickerModule.forRoot(),
|
|
8
|
+
- NbToastrModule.forRoot(),
|
|
9
|
+
- NbTimepickerModule.forRoot(),
|
|
10
|
+
- NbDialogModule.forRoot(),
|
|
11
|
+
|
|
12
|
+
## License
|
|
13
|
+
|
|
14
|
+
[MIT](LICENSE.txt) license.
|