@festo-ui/angular 5.0.0-dev.120 → 5.0.0-dev.140
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/esm2020/lib/forms/select/select.component.mjs +3 -3
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +3 -3
- package/esm2020/lib/forms/text-input/text-input.component.mjs +7 -7
- package/esm2020/lib/modals/modals.module.mjs +7 -5
- package/esm2020/lib/modals/prompt/prompt.component.mjs +5 -3
- package/fesm2015/festo-ui-angular.mjs +224 -223
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +224 -223
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/lib/forms/text-input/text-input.component.d.ts +6 -6
- package/lib/modals/modals.module.d.ts +3 -1
- package/lib/modals/prompt/prompt.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -18,11 +18,11 @@ export declare class FngTextInputComponent implements OnInit, ControlValueAccess
|
|
|
18
18
|
get readonly(): boolean;
|
|
19
19
|
set readonly(value: boolean);
|
|
20
20
|
private innerReadonly;
|
|
21
|
-
step: number;
|
|
22
|
-
min: number;
|
|
23
|
-
max: number;
|
|
24
|
-
tabindex: number;
|
|
25
|
-
placeholder: string;
|
|
21
|
+
step: number | undefined;
|
|
22
|
+
min: number | undefined;
|
|
23
|
+
max: number | undefined;
|
|
24
|
+
tabindex: number | undefined;
|
|
25
|
+
placeholder: string | undefined;
|
|
26
26
|
name: string;
|
|
27
27
|
/**
|
|
28
28
|
* When true the control's disabled attribute is set
|
|
@@ -53,7 +53,7 @@ export declare class FngTextInputComponent implements OnInit, ControlValueAccess
|
|
|
53
53
|
/**
|
|
54
54
|
* Hint description when valid.
|
|
55
55
|
*/
|
|
56
|
-
hint: string;
|
|
56
|
+
hint: string | undefined;
|
|
57
57
|
inputElement: ElementRef | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* When true the text input has focus.
|
|
@@ -3,13 +3,15 @@ import * as i1 from "./alert/alert.component";
|
|
|
3
3
|
import * as i2 from "./confirm/confirm.component";
|
|
4
4
|
import * as i3 from "./prompt/prompt.component";
|
|
5
5
|
import * as i4 from "./custom-modal/custom-modal.component";
|
|
6
|
+
import * as i5 from "./image-gallery/image-gallery.component";
|
|
6
7
|
export * from './index';
|
|
7
8
|
export * from './alert/alert.component';
|
|
8
9
|
export * from './confirm/confirm.component';
|
|
9
10
|
export * from './prompt/prompt.component';
|
|
10
11
|
export * from './custom-modal/custom-modal.component';
|
|
12
|
+
export * from './image-gallery/image-gallery.component';
|
|
11
13
|
export declare class FestoAngularModalsModule {
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularModalsModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModalsModule, never, [typeof i1.FngAlertComponent, typeof i2.FngConfirmComponent, typeof i3.FngPromptComponent, typeof i4.FngCustomModalComponent], [typeof i1.FngAlertComponent, typeof i2.FngConfirmComponent, typeof i3.FngPromptComponent, typeof i4.FngCustomModalComponent]>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModalsModule, never, [typeof i1.FngAlertComponent, typeof i2.FngConfirmComponent, typeof i3.FngPromptComponent, typeof i4.FngCustomModalComponent, typeof i5.FngImageGalleryComponent], [typeof i1.FngAlertComponent, typeof i2.FngConfirmComponent, typeof i3.FngPromptComponent, typeof i4.FngCustomModalComponent, typeof i5.FngImageGalleryComponent]>;
|
|
14
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularModalsModule>;
|
|
15
17
|
}
|
|
@@ -13,6 +13,7 @@ export interface FngPromptData {
|
|
|
13
13
|
cancel?: string;
|
|
14
14
|
ok?: string;
|
|
15
15
|
value?: string;
|
|
16
|
+
placeholder?: string;
|
|
16
17
|
validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null;
|
|
17
18
|
asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null;
|
|
18
19
|
}
|
package/package.json
CHANGED