@4science_ng-dynamic-forms/ui-ng-bootstrap 19.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/LICENSE +13 -0
- package/README.md +57 -0
- package/esm2022/lib/calendar/dynamic-ng-bootstrap-calendar.component.mjs +59 -0
- package/esm2022/lib/checkbox/dynamic-ng-bootstrap-checkbox.component.mjs +53 -0
- package/esm2022/lib/checkbox-group/dynamic-ng-bootstrap-checkbox-group.component.mjs +60 -0
- package/esm2022/lib/datepicker/dynamic-ng-bootstrap-datepicker.component.mjs +62 -0
- package/esm2022/lib/dynamic-ng-bootstrap-form-control-container.component.mjs +201 -0
- package/esm2022/lib/dynamic-ng-bootstrap-form.component.mjs +59 -0
- package/esm2022/lib/input/dynamic-ng-bootstrap-input.component.mjs +54 -0
- package/esm2022/lib/radio-group/dynamic-ng-bootstrap-radio-group.component.mjs +53 -0
- package/esm2022/lib/rating/dynamic-ng-bootstrap-rating.component.mjs +62 -0
- package/esm2022/lib/select/dynamic-ng-bootstrap-select.component.mjs +53 -0
- package/esm2022/lib/switch/dynamic-ng-bootstrap-switch.component.mjs +53 -0
- package/esm2022/lib/textarea/dynamic-ng-bootstrap-textarea.component.mjs +53 -0
- package/esm2022/lib/timepicker/dynamic-ng-bootstrap-timepicker.component.mjs +59 -0
- package/esm2022/lib/ui-ng-bootstrap.mjs +29 -0
- package/esm2022/public-api.mjs +17 -0
- package/esm2022/ui-ng-bootstrap.mjs +5 -0
- package/fesm2022/ui-ng-bootstrap.mjs +820 -0
- package/fesm2022/ui-ng-bootstrap.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/calendar/dynamic-ng-bootstrap-calendar.component.d.ts +21 -0
- package/lib/checkbox/dynamic-ng-bootstrap-checkbox.component.d.ts +18 -0
- package/lib/checkbox-group/dynamic-ng-bootstrap-checkbox-group.component.d.ts +20 -0
- package/lib/datepicker/dynamic-ng-bootstrap-datepicker.component.d.ts +22 -0
- package/lib/dynamic-ng-bootstrap-form-control-container.component.d.ts +65 -0
- package/lib/dynamic-ng-bootstrap-form.component.d.ts +21 -0
- package/lib/input/dynamic-ng-bootstrap-input.component.d.ts +18 -0
- package/lib/radio-group/dynamic-ng-bootstrap-radio-group.component.d.ts +18 -0
- package/lib/rating/dynamic-ng-bootstrap-rating.component.d.ts +22 -0
- package/lib/select/dynamic-ng-bootstrap-select.component.d.ts +18 -0
- package/lib/switch/dynamic-ng-bootstrap-switch.component.d.ts +18 -0
- package/lib/textarea/dynamic-ng-bootstrap-textarea.component.d.ts +18 -0
- package/lib/timepicker/dynamic-ng-bootstrap-timepicker.component.d.ts +21 -0
- package/lib/ui-ng-bootstrap.d.ts +13 -0
- package/package.json +58 -0
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { UntypedFormGroup } from "@angular/forms";
|
|
3
|
+
import { NgbTimepicker, NgbTimepickerConfig } from "@ng-bootstrap/ng-bootstrap";
|
|
4
|
+
import { DynamicFormControlComponent, DynamicFormControlLayout, DynamicFormLayout, DynamicFormLayoutService, DynamicFormValidationService, DynamicTimePickerModel } from "@ng-dynamic-forms/core";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicNGBootstrapTimePickerComponent extends DynamicFormControlComponent {
|
|
7
|
+
protected layoutService: DynamicFormLayoutService;
|
|
8
|
+
protected validationService: DynamicFormValidationService;
|
|
9
|
+
config: NgbTimepickerConfig;
|
|
10
|
+
formLayout?: DynamicFormLayout;
|
|
11
|
+
group: UntypedFormGroup;
|
|
12
|
+
layout?: DynamicFormControlLayout;
|
|
13
|
+
model: DynamicTimePickerModel;
|
|
14
|
+
blur: EventEmitter<any>;
|
|
15
|
+
change: EventEmitter<any>;
|
|
16
|
+
focus: EventEmitter<any>;
|
|
17
|
+
ngbTimePicker: NgbTimepicker;
|
|
18
|
+
constructor(layoutService: DynamicFormLayoutService, validationService: DynamicFormValidationService, config: NgbTimepickerConfig);
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicNGBootstrapTimePickerComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicNGBootstrapTimePickerComponent, "dynamic-ng-bootstrap-timepicker", never, { "formLayout": { "alias": "formLayout"; "required": false; }; "group": { "alias": "group"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "blur": "blur"; "change": "change"; "focus": "focus"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./calendar/dynamic-ng-bootstrap-calendar.component";
|
|
2
|
+
export * from "./checkbox/dynamic-ng-bootstrap-checkbox.component";
|
|
3
|
+
export * from "./checkbox-group/dynamic-ng-bootstrap-checkbox-group.component";
|
|
4
|
+
export * from "./datepicker/dynamic-ng-bootstrap-datepicker.component";
|
|
5
|
+
export * from "./input/dynamic-ng-bootstrap-input.component";
|
|
6
|
+
export * from "./radio-group/dynamic-ng-bootstrap-radio-group.component";
|
|
7
|
+
export * from "./rating/dynamic-ng-bootstrap-rating.component";
|
|
8
|
+
export * from "./select/dynamic-ng-bootstrap-select.component";
|
|
9
|
+
export * from "./switch/dynamic-ng-bootstrap-switch.component";
|
|
10
|
+
export * from "./textarea/dynamic-ng-bootstrap-textarea.component";
|
|
11
|
+
export * from "./timepicker/dynamic-ng-bootstrap-timepicker.component";
|
|
12
|
+
export * from "./dynamic-ng-bootstrap-form.component";
|
|
13
|
+
export * from "./dynamic-ng-bootstrap-form-control-container.component";
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@4science_ng-dynamic-forms/ui-ng-bootstrap",
|
|
3
|
+
"version": "19.0.0",
|
|
4
|
+
"description": "NG Bootstrap UI package for NG Dynamic Forms",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"bootstrap",
|
|
8
|
+
"dynamic forms",
|
|
9
|
+
"forms",
|
|
10
|
+
"ng dynamic forms",
|
|
11
|
+
"ng-bootstrap",
|
|
12
|
+
"reactive forms",
|
|
13
|
+
"ui"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/udos86/ng-dynamic-forms#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/udos86/ng-dynamic-forms/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Udo Schöfer",
|
|
22
|
+
"email": "ng2-dynamic-forms@udos86.de",
|
|
23
|
+
"url": "https://github.com/udos86/ng-dynamic-forms"
|
|
24
|
+
},
|
|
25
|
+
"main": "./bundles/ui-ng-bootstrap.umd.js",
|
|
26
|
+
"module": "fesm2022/ui-ng-bootstrap.mjs",
|
|
27
|
+
"typings": "index.d.ts",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/udos86/ng-dynamic-forms.git"
|
|
31
|
+
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"@ng-bootstrap/ng-bootstrap": "^15.1.2",
|
|
34
|
+
"@4science_ng-dynamic-forms/core": "^19.0.0",
|
|
35
|
+
"ngx-mask": "^13.0.0",
|
|
36
|
+
"bootstrap": "^5.3.2"
|
|
37
|
+
},
|
|
38
|
+
"es2015": "./fesm2015/ui-ng-bootstrap.js",
|
|
39
|
+
"esm2015": "./esm2015/ui-ng-bootstrap.js",
|
|
40
|
+
"esm5": "./esm5/ui-ng-bootstrap.js",
|
|
41
|
+
"fesm2015": "./fesm2015/ui-ng-bootstrap.js",
|
|
42
|
+
"fesm5": "./fesm5/ui-ng-bootstrap.js",
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"tslib": "^2.0.0"
|
|
46
|
+
},
|
|
47
|
+
"exports": {
|
|
48
|
+
"./package.json": {
|
|
49
|
+
"default": "./package.json"
|
|
50
|
+
},
|
|
51
|
+
".": {
|
|
52
|
+
"types": "./index.d.ts",
|
|
53
|
+
"esm2022": "./esm2022/ui-ng-bootstrap.mjs",
|
|
54
|
+
"esm": "./esm2022/ui-ng-bootstrap.mjs",
|
|
55
|
+
"default": "./fesm2022/ui-ng-bootstrap.mjs"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./lib/ui-ng-bootstrap";
|