@apipass/inputs 1.0.7 → 1.0.9
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/ace-editor/component.d.ts +52 -52
- package/ace-editor/directive.d.ts +39 -39
- package/assets/css/colors.scss +34 -34
- package/assets/css/fonts.scss +24 -24
- package/assets/css/inputs.scss +245 -245
- package/assets/css/pt_sans.scss +143 -143
- package/assets/css/spacing.scss +28 -28
- package/assets/css/texts.scss +18 -18
- package/custom-select/custom-select-item.d.ts +5 -5
- package/custom-select/custom-select.component.d.ts +51 -51
- package/debounce-model-directive/debouceInput.directive.d.ts +14 -14
- package/esm2022/ace-editor/component.mjs +200 -0
- package/esm2022/ace-editor/directive.mjs +153 -0
- package/{esm2020 → esm2022}/apipass-inputs.mjs +4 -4
- package/esm2022/custom-select/custom-select-item.mjs +9 -0
- package/esm2022/custom-select/custom-select.component.mjs +213 -0
- package/esm2022/debounce-model-directive/debouceInput.directive.mjs +34 -0
- package/esm2022/field/field.component.mjs +56 -0
- package/esm2022/input-avatar/input-avatar.component.mjs +91 -0
- package/esm2022/input-boolean/input-boolean.component.mjs +54 -0
- package/esm2022/input-file/input-file.component.mjs +82 -0
- package/esm2022/input-number/input-number.component.mjs +60 -0
- package/esm2022/input-password/input-password.component.mjs +94 -0
- package/esm2022/input-text/input-text.component.mjs +60 -0
- package/esm2022/inputs.module.mjs +150 -0
- package/{esm2020 → esm2022}/public-api.mjs +17 -17
- package/esm2022/select-box/mat-select-infinite-scroll.directive.mjs +91 -0
- package/esm2022/select-box/select-box.component.mjs +226 -0
- package/esm2022/select-enum/select-enum.component.mjs +47 -0
- package/esm2022/select-interpolation/select-interpolation.component.mjs +177 -0
- package/esm2022/value-acessor-base.mjs +30 -0
- package/fesm2022/apipass-inputs.mjs +1711 -0
- package/fesm2022/apipass-inputs.mjs.map +1 -0
- package/field/field.component.d.ts +15 -15
- package/index.d.ts +5 -5
- package/input-avatar/input-avatar.component.d.ts +29 -29
- package/input-boolean/input-boolean.component.d.ts +15 -15
- package/input-file/input-file.component.d.ts +31 -31
- package/input-number/input-number.component.d.ts +17 -17
- package/input-password/input-password.component.d.ts +28 -28
- package/input-text/input-text.component.d.ts +17 -17
- package/inputs.module.d.ts +36 -36
- package/package.json +28 -25
- package/public-api.d.ts +16 -16
- package/select-box/mat-select-infinite-scroll.directive.d.ts +26 -26
- package/select-box/select-box.component.d.ts +57 -57
- package/select-enum/select-enum.component.d.ts +12 -12
- package/select-interpolation/select-interpolation.component.d.ts +44 -44
- package/value-acessor-base.d.ts +13 -13
- package/esm2020/ace-editor/component.mjs +0 -195
- package/esm2020/ace-editor/directive.mjs +0 -148
- package/esm2020/custom-select/custom-select-item.mjs +0 -7
- package/esm2020/custom-select/custom-select.component.mjs +0 -204
- package/esm2020/debounce-model-directive/debouceInput.directive.mjs +0 -31
- package/esm2020/field/field.component.mjs +0 -51
- package/esm2020/input-avatar/input-avatar.component.mjs +0 -92
- package/esm2020/input-boolean/input-boolean.component.mjs +0 -56
- package/esm2020/input-file/input-file.component.mjs +0 -82
- package/esm2020/input-number/input-number.component.mjs +0 -62
- package/esm2020/input-password/input-password.component.mjs +0 -96
- package/esm2020/input-text/input-text.component.mjs +0 -62
- package/esm2020/inputs.module.mjs +0 -149
- package/esm2020/select-box/mat-select-infinite-scroll.directive.mjs +0 -86
- package/esm2020/select-box/select-box.component.mjs +0 -225
- package/esm2020/select-enum/select-enum.component.mjs +0 -48
- package/esm2020/select-interpolation/select-interpolation.component.mjs +0 -169
- package/esm2020/value-acessor-base.mjs +0 -31
- package/fesm2015/apipass-inputs.mjs +0 -1706
- package/fesm2015/apipass-inputs.mjs.map +0 -1
- package/fesm2020/apipass-inputs.mjs +0 -1696
- package/fesm2020/apipass-inputs.mjs.map +0 -1
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ValueAccessorBase } from '../value-acessor-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InputPasswordComponent extends ValueAccessorBase<string> {
|
|
5
|
-
label: string;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
showPasswordRuleDetails: boolean;
|
|
8
|
-
showPasswordLengthDetails: boolean;
|
|
9
|
-
enableLengthRule: boolean;
|
|
10
|
-
enableLowerCaseLetterRule: boolean;
|
|
11
|
-
enableUpperCaseLetterRule: boolean;
|
|
12
|
-
enableDigitRule: boolean;
|
|
13
|
-
enableSpecialCharRule: boolean;
|
|
14
|
-
minLength: number;
|
|
15
|
-
maxLength: number;
|
|
16
|
-
strengthToValid: number;
|
|
17
|
-
lowerCaseCriteriaMsg: string;
|
|
18
|
-
upperCaseCriteriaMsg: string;
|
|
19
|
-
digitsCriteriaMsg: string;
|
|
20
|
-
specialCharsCriteriaMsg: string;
|
|
21
|
-
minCharsCriteriaMsg: string;
|
|
22
|
-
onValidPassword: EventEmitter<boolean>;
|
|
23
|
-
onKeyDown(event: any): void;
|
|
24
|
-
onStrengthChanged(strength: number): void;
|
|
25
|
-
private getStrength;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "input-password", never, { "label": "label"; "disabled": "disabled"; "showPasswordRuleDetails": "showPasswordRuleDetails"; "showPasswordLengthDetails": "showPasswordLengthDetails"; "enableLengthRule": "enableLengthRule"; "enableLowerCaseLetterRule": "enableLowerCaseLetterRule"; "enableUpperCaseLetterRule": "enableUpperCaseLetterRule"; "enableDigitRule": "enableDigitRule"; "enableSpecialCharRule": "enableSpecialCharRule"; "minLength": "minLength"; "maxLength": "maxLength"; "strengthToValid": "strengthToValid"; "lowerCaseCriteriaMsg": "lowerCaseCriteriaMsg"; "upperCaseCriteriaMsg": "upperCaseCriteriaMsg"; "digitsCriteriaMsg": "digitsCriteriaMsg"; "specialCharsCriteriaMsg": "specialCharsCriteriaMsg"; "minCharsCriteriaMsg": "minCharsCriteriaMsg"; }, { "onValidPassword": "onValidPassword"; }, never, never, false, never>;
|
|
28
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ValueAccessorBase } from '../value-acessor-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputPasswordComponent extends ValueAccessorBase<string> {
|
|
5
|
+
label: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
showPasswordRuleDetails: boolean;
|
|
8
|
+
showPasswordLengthDetails: boolean;
|
|
9
|
+
enableLengthRule: boolean;
|
|
10
|
+
enableLowerCaseLetterRule: boolean;
|
|
11
|
+
enableUpperCaseLetterRule: boolean;
|
|
12
|
+
enableDigitRule: boolean;
|
|
13
|
+
enableSpecialCharRule: boolean;
|
|
14
|
+
minLength: number;
|
|
15
|
+
maxLength: number;
|
|
16
|
+
strengthToValid: number;
|
|
17
|
+
lowerCaseCriteriaMsg: string;
|
|
18
|
+
upperCaseCriteriaMsg: string;
|
|
19
|
+
digitsCriteriaMsg: string;
|
|
20
|
+
specialCharsCriteriaMsg: string;
|
|
21
|
+
minCharsCriteriaMsg: string;
|
|
22
|
+
onValidPassword: EventEmitter<boolean>;
|
|
23
|
+
onKeyDown(event: any): void;
|
|
24
|
+
onStrengthChanged(strength: number): void;
|
|
25
|
+
private getStrength;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "input-password", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showPasswordRuleDetails": { "alias": "showPasswordRuleDetails"; "required": false; }; "showPasswordLengthDetails": { "alias": "showPasswordLengthDetails"; "required": false; }; "enableLengthRule": { "alias": "enableLengthRule"; "required": false; }; "enableLowerCaseLetterRule": { "alias": "enableLowerCaseLetterRule"; "required": false; }; "enableUpperCaseLetterRule": { "alias": "enableUpperCaseLetterRule"; "required": false; }; "enableDigitRule": { "alias": "enableDigitRule"; "required": false; }; "enableSpecialCharRule": { "alias": "enableSpecialCharRule"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "strengthToValid": { "alias": "strengthToValid"; "required": false; }; "lowerCaseCriteriaMsg": { "alias": "lowerCaseCriteriaMsg"; "required": false; }; "upperCaseCriteriaMsg": { "alias": "upperCaseCriteriaMsg"; "required": false; }; "digitsCriteriaMsg": { "alias": "digitsCriteriaMsg"; "required": false; }; "specialCharsCriteriaMsg": { "alias": "specialCharsCriteriaMsg"; "required": false; }; "minCharsCriteriaMsg": { "alias": "minCharsCriteriaMsg"; "required": false; }; }, { "onValidPassword": "onValidPassword"; }, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ValueAccessorBase } from '../value-acessor-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class InputTextComponent extends ValueAccessorBase<string> {
|
|
5
|
-
label: string;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
iconSuffix: string;
|
|
8
|
-
iconPrefix: string;
|
|
9
|
-
autoComplete: string;
|
|
10
|
-
suffixIconClick: EventEmitter<boolean>;
|
|
11
|
-
prefixIconClick: EventEmitter<boolean>;
|
|
12
|
-
onKeyDown(event: any): void;
|
|
13
|
-
prefixClick(): void;
|
|
14
|
-
suffixClick(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "input-text", never, { "label": "label"; "disabled": "disabled"; "iconSuffix": "iconSuffix"; "iconPrefix": "iconPrefix"; "autoComplete": "autoComplete"; }, { "suffixIconClick": "suffixIconClick"; "prefixIconClick": "prefixIconClick"; }, never, never, false, never>;
|
|
17
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ValueAccessorBase } from '../value-acessor-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputTextComponent extends ValueAccessorBase<string> {
|
|
5
|
+
label: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
iconSuffix: string;
|
|
8
|
+
iconPrefix: string;
|
|
9
|
+
autoComplete: string;
|
|
10
|
+
suffixIconClick: EventEmitter<boolean>;
|
|
11
|
+
prefixIconClick: EventEmitter<boolean>;
|
|
12
|
+
onKeyDown(event: any): void;
|
|
13
|
+
prefixClick(): void;
|
|
14
|
+
suffixClick(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "input-text", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "iconSuffix": { "alias": "iconSuffix"; "required": false; }; "iconPrefix": { "alias": "iconPrefix"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; }, { "suffixIconClick": "suffixIconClick"; "prefixIconClick": "prefixIconClick"; }, never, never, false, never>;
|
|
17
|
+
}
|
package/inputs.module.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select-box/mat-select-infinite-scroll.directive";
|
|
3
|
-
import * as i2 from "./select-box/select-box.component";
|
|
4
|
-
import * as i3 from "./select-enum/select-enum.component";
|
|
5
|
-
import * as i4 from "./input-text/input-text.component";
|
|
6
|
-
import * as i5 from "./input-number/input-number.component";
|
|
7
|
-
import * as i6 from "./input-boolean/input-boolean.component";
|
|
8
|
-
import * as i7 from "./input-password/input-password.component";
|
|
9
|
-
import * as i8 from "./input-avatar/input-avatar.component";
|
|
10
|
-
import * as i9 from "./input-file/input-file.component";
|
|
11
|
-
import * as i10 from "./custom-select/custom-select.component";
|
|
12
|
-
import * as i11 from "./select-interpolation/select-interpolation.component";
|
|
13
|
-
import * as i12 from "./field/field.component";
|
|
14
|
-
import * as i13 from "./ace-editor/component";
|
|
15
|
-
import * as i14 from "./ace-editor/directive";
|
|
16
|
-
import * as i15 from "./debounce-model-directive/debouceInput.directive";
|
|
17
|
-
import * as i16 from "@angular/router";
|
|
18
|
-
import * as i17 from "@angular/common";
|
|
19
|
-
import * as i18 from "@angular/forms";
|
|
20
|
-
import * as i19 from "@angular/material/form-field";
|
|
21
|
-
import * as i20 from "@angular/material/input";
|
|
22
|
-
import * as i21 from "@angular-material-extensions/password-strength";
|
|
23
|
-
import * as i22 from "@angular/material/select";
|
|
24
|
-
import * as i23 from "@ng-select/ng-select";
|
|
25
|
-
import * as i24 from "@apipass/pipes";
|
|
26
|
-
import * as i25 from "@angular/material/icon";
|
|
27
|
-
import * as i26 from "@apipass/icons";
|
|
28
|
-
import * as i27 from "@angular/material/tooltip";
|
|
29
|
-
import * as i28 from "ngx-drag-drop";
|
|
30
|
-
import * as i29 from "@apipass/buttons";
|
|
31
|
-
import * as i30 from "@angular/cdk/overlay";
|
|
32
|
-
export declare class InputsModule {
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, [typeof i1.MatSelectInfiniteScrollDirective, typeof i2.SelectBoxComponent, typeof i3.SelectEnumComponent, typeof i4.InputTextComponent, typeof i5.InputNumberComponent, typeof i6.InputBooleanComponent, typeof i7.InputPasswordComponent, typeof i8.InputAvatarComponent, typeof i9.InputFileComponent, typeof i10.CustomSelectComponent, typeof i11.SelectInterpolationComponent, typeof i12.FieldComponent, typeof i13.AceEditorComponent, typeof i14.AceEditorDirective, typeof i15.DebouceInputDirective], [typeof i16.RouterModule, typeof i17.CommonModule, typeof i18.FormsModule, typeof i19.MatFormFieldModule, typeof i20.MatInputModule, typeof i21.MatPasswordStrengthModule, typeof i22.MatSelectModule, typeof i23.NgSelectModule, typeof i24.PipeModule, typeof i25.MatIconModule, typeof i26.IconsModule, typeof i27.MatTooltipModule, typeof i28.DndModule, typeof i29.ButtonsModule, typeof i30.OverlayModule], [typeof i2.SelectBoxComponent, typeof i3.SelectEnumComponent, typeof i4.InputTextComponent, typeof i5.InputNumberComponent, typeof i6.InputBooleanComponent, typeof i7.InputPasswordComponent, typeof i8.InputAvatarComponent, typeof i9.InputFileComponent, typeof i10.CustomSelectComponent, typeof i11.SelectInterpolationComponent, typeof i12.FieldComponent, typeof i13.AceEditorComponent, typeof i14.AceEditorDirective, typeof i15.DebouceInputDirective]>;
|
|
35
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
|
|
36
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select-box/mat-select-infinite-scroll.directive";
|
|
3
|
+
import * as i2 from "./select-box/select-box.component";
|
|
4
|
+
import * as i3 from "./select-enum/select-enum.component";
|
|
5
|
+
import * as i4 from "./input-text/input-text.component";
|
|
6
|
+
import * as i5 from "./input-number/input-number.component";
|
|
7
|
+
import * as i6 from "./input-boolean/input-boolean.component";
|
|
8
|
+
import * as i7 from "./input-password/input-password.component";
|
|
9
|
+
import * as i8 from "./input-avatar/input-avatar.component";
|
|
10
|
+
import * as i9 from "./input-file/input-file.component";
|
|
11
|
+
import * as i10 from "./custom-select/custom-select.component";
|
|
12
|
+
import * as i11 from "./select-interpolation/select-interpolation.component";
|
|
13
|
+
import * as i12 from "./field/field.component";
|
|
14
|
+
import * as i13 from "./ace-editor/component";
|
|
15
|
+
import * as i14 from "./ace-editor/directive";
|
|
16
|
+
import * as i15 from "./debounce-model-directive/debouceInput.directive";
|
|
17
|
+
import * as i16 from "@angular/router";
|
|
18
|
+
import * as i17 from "@angular/common";
|
|
19
|
+
import * as i18 from "@angular/forms";
|
|
20
|
+
import * as i19 from "@angular/material/form-field";
|
|
21
|
+
import * as i20 from "@angular/material/input";
|
|
22
|
+
import * as i21 from "@angular-material-extensions/password-strength";
|
|
23
|
+
import * as i22 from "@angular/material/select";
|
|
24
|
+
import * as i23 from "@ng-select/ng-select";
|
|
25
|
+
import * as i24 from "@apipass/pipes";
|
|
26
|
+
import * as i25 from "@angular/material/icon";
|
|
27
|
+
import * as i26 from "@apipass/icons";
|
|
28
|
+
import * as i27 from "@angular/material/tooltip";
|
|
29
|
+
import * as i28 from "ngx-drag-drop";
|
|
30
|
+
import * as i29 from "@apipass/buttons";
|
|
31
|
+
import * as i30 from "@angular/cdk/overlay";
|
|
32
|
+
export declare class InputsModule {
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
|
|
34
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, [typeof i1.MatSelectInfiniteScrollDirective, typeof i2.SelectBoxComponent, typeof i3.SelectEnumComponent, typeof i4.InputTextComponent, typeof i5.InputNumberComponent, typeof i6.InputBooleanComponent, typeof i7.InputPasswordComponent, typeof i8.InputAvatarComponent, typeof i9.InputFileComponent, typeof i10.CustomSelectComponent, typeof i11.SelectInterpolationComponent, typeof i12.FieldComponent, typeof i13.AceEditorComponent, typeof i14.AceEditorDirective, typeof i15.DebouceInputDirective], [typeof i16.RouterModule, typeof i17.CommonModule, typeof i18.FormsModule, typeof i19.MatFormFieldModule, typeof i20.MatInputModule, typeof i21.MatPasswordStrengthModule, typeof i22.MatSelectModule, typeof i23.NgSelectModule, typeof i24.PipeModule, typeof i25.MatIconModule, typeof i26.IconsModule, typeof i27.MatTooltipModule, typeof i28.DndModule, typeof i29.ButtonsModule, typeof i30.OverlayModule], [typeof i2.SelectBoxComponent, typeof i3.SelectEnumComponent, typeof i4.InputTextComponent, typeof i5.InputNumberComponent, typeof i6.InputBooleanComponent, typeof i7.InputPasswordComponent, typeof i8.InputAvatarComponent, typeof i9.InputFileComponent, typeof i10.CustomSelectComponent, typeof i11.SelectInterpolationComponent, typeof i12.FieldComponent, typeof i13.AceEditorComponent, typeof i14.AceEditorDirective, typeof i15.DebouceInputDirective]>;
|
|
35
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
|
|
36
|
+
}
|
package/package.json
CHANGED
|
@@ -1,36 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apipass/inputs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/animations": "
|
|
6
|
-
"@angular/cdk": "
|
|
7
|
-
"@angular/common": "
|
|
8
|
-
"@angular/core": "
|
|
9
|
-
"@angular/forms": "
|
|
10
|
-
"@angular/material": "
|
|
5
|
+
"@angular/animations": "16.0.2",
|
|
6
|
+
"@angular/cdk": "16.0.1",
|
|
7
|
+
"@angular/common": "16.0.2",
|
|
8
|
+
"@angular/core": "16.0.2",
|
|
9
|
+
"@angular/forms": "16.0.2",
|
|
10
|
+
"@angular/material": "16.0.1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"ace-builds": "1.4.14",
|
|
14
14
|
"brace": "^0.11.1",
|
|
15
15
|
"@angular-material-extensions/password-strength": "12.1.0",
|
|
16
|
-
"@apipass/buttons": "1.0.
|
|
17
|
-
"@apipass/icons": "1.0.
|
|
18
|
-
"@apipass/pipes": "1.0.
|
|
19
|
-
"@ng-select/ng-select": "
|
|
20
|
-
"@ngx-translate/core": "
|
|
21
|
-
"@ngx-translate/http-loader": "
|
|
16
|
+
"@apipass/buttons": "1.0.8",
|
|
17
|
+
"@apipass/icons": "1.0.8",
|
|
18
|
+
"@apipass/pipes": "1.0.8",
|
|
19
|
+
"@ng-select/ng-select": "11.0.0",
|
|
20
|
+
"@ngx-translate/core": "15.0.0",
|
|
21
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
22
22
|
"jquery": "^3.5.1",
|
|
23
23
|
"lodash": "^4.17.14",
|
|
24
24
|
"moment": "^2.29.1",
|
|
25
|
-
"ngx-drag-drop": "
|
|
25
|
+
"ngx-drag-drop": "16.0.0",
|
|
26
26
|
"tinycolor2": "1.6.0",
|
|
27
|
-
"tslib": "2.5.
|
|
27
|
+
"tslib": "2.5.2"
|
|
28
28
|
},
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
"overrides": {
|
|
30
|
+
"@angular-material-extensions/password-strength": {
|
|
31
|
+
"@angular/common": "^16.0.2",
|
|
32
|
+
"@angular/cdk": "^16.0.1",
|
|
33
|
+
"@angular/core": "^16.0.2",
|
|
34
|
+
"@angular/forms": "^16.0.2",
|
|
35
|
+
"@angular/material": "^16.0.1"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"module": "fesm2022/apipass-inputs.mjs",
|
|
34
39
|
"typings": "index.d.ts",
|
|
35
40
|
"exports": {
|
|
36
41
|
"./package.json": {
|
|
@@ -38,11 +43,9 @@
|
|
|
38
43
|
},
|
|
39
44
|
".": {
|
|
40
45
|
"types": "./index.d.ts",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"node": "./fesm2015/apipass-inputs.mjs",
|
|
45
|
-
"default": "./fesm2020/apipass-inputs.mjs"
|
|
46
|
+
"esm2022": "./esm2022/apipass-inputs.mjs",
|
|
47
|
+
"esm": "./esm2022/apipass-inputs.mjs",
|
|
48
|
+
"default": "./fesm2022/apipass-inputs.mjs"
|
|
46
49
|
}
|
|
47
50
|
},
|
|
48
51
|
"sideEffects": false
|
package/public-api.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from './inputs.module';
|
|
2
|
-
export * from './select-interpolation/select-interpolation.component';
|
|
3
|
-
export * from './custom-select/custom-select.component';
|
|
4
|
-
export * from './custom-select/custom-select-item';
|
|
5
|
-
export * from './field/field.component';
|
|
6
|
-
export * from './input-avatar/input-avatar.component';
|
|
7
|
-
export * from './input-file/input-file.component';
|
|
8
|
-
export * from './input-password/input-password.component';
|
|
9
|
-
export * from './input-text/input-text.component';
|
|
10
|
-
export * from './input-number/input-number.component';
|
|
11
|
-
export * from './input-boolean/input-boolean.component';
|
|
12
|
-
export * from './select-box/select-box.component';
|
|
13
|
-
export * from './select-enum/select-enum.component';
|
|
14
|
-
export * from './ace-editor/directive';
|
|
15
|
-
export * from './ace-editor/component';
|
|
16
|
-
export * from './debounce-model-directive/debouceInput.directive';
|
|
1
|
+
export * from './inputs.module';
|
|
2
|
+
export * from './select-interpolation/select-interpolation.component';
|
|
3
|
+
export * from './custom-select/custom-select.component';
|
|
4
|
+
export * from './custom-select/custom-select-item';
|
|
5
|
+
export * from './field/field.component';
|
|
6
|
+
export * from './input-avatar/input-avatar.component';
|
|
7
|
+
export * from './input-file/input-file.component';
|
|
8
|
+
export * from './input-password/input-password.component';
|
|
9
|
+
export * from './input-text/input-text.component';
|
|
10
|
+
export * from './input-number/input-number.component';
|
|
11
|
+
export * from './input-boolean/input-boolean.component';
|
|
12
|
+
export * from './select-box/select-box.component';
|
|
13
|
+
export * from './select-enum/select-enum.component';
|
|
14
|
+
export * from './ace-editor/directive';
|
|
15
|
+
export * from './ace-editor/component';
|
|
16
|
+
export * from './debounce-model-directive/debouceInput.directive';
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { MatSelect } from '@angular/material/select';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MatSelectInfiniteScrollDirective implements OnInit, OnDestroy, AfterViewInit {
|
|
5
|
-
private readonly matSelect;
|
|
6
|
-
private readonly ngZone;
|
|
7
|
-
threshold: string;
|
|
8
|
-
debounceTime: number;
|
|
9
|
-
complete: boolean;
|
|
10
|
-
infiniteScroll: EventEmitter<void>;
|
|
11
|
-
private panel;
|
|
12
|
-
private thrPx;
|
|
13
|
-
private thrPc;
|
|
14
|
-
private singleOptionHeight;
|
|
15
|
-
private readonly destroyed$;
|
|
16
|
-
constructor(matSelect: MatSelect, ngZone: NgZone);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
ngAfterViewInit(): void;
|
|
19
|
-
ngOnDestroy(): void;
|
|
20
|
-
evaluateThreshold(): void;
|
|
21
|
-
registerScrollListener(): void;
|
|
22
|
-
handleScrollEvent(event: any): void;
|
|
23
|
-
getSelectItemHeightPx(): number;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatSelectInfiniteScrollDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSelectInfiniteScrollDirective, "[msInfiniteScroll]", never, { "threshold": "threshold"; "debounceTime": "debounceTime"; "complete": "complete"; }, { "infiniteScroll": "infiniteScroll"; }, never, never, false, never>;
|
|
26
|
-
}
|
|
1
|
+
import { AfterViewInit, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { MatSelect } from '@angular/material/select';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MatSelectInfiniteScrollDirective implements OnInit, OnDestroy, AfterViewInit {
|
|
5
|
+
private readonly matSelect;
|
|
6
|
+
private readonly ngZone;
|
|
7
|
+
threshold: string;
|
|
8
|
+
debounceTime: number;
|
|
9
|
+
complete: boolean;
|
|
10
|
+
infiniteScroll: EventEmitter<void>;
|
|
11
|
+
private panel;
|
|
12
|
+
private thrPx;
|
|
13
|
+
private thrPc;
|
|
14
|
+
private singleOptionHeight;
|
|
15
|
+
private readonly destroyed$;
|
|
16
|
+
constructor(matSelect: MatSelect, ngZone: NgZone);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
evaluateThreshold(): void;
|
|
21
|
+
registerScrollListener(): void;
|
|
22
|
+
handleScrollEvent(event: any): void;
|
|
23
|
+
getSelectItemHeightPx(): number;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatSelectInfiniteScrollDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSelectInfiniteScrollDirective, "[msInfiniteScroll]", never, { "threshold": { "alias": "threshold"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "complete": { "alias": "complete"; "required": false; }; }, { "infiniteScroll": "infiniteScroll"; }, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import { EventEmitter, type OnDestroy, type OnInit } from '@angular/core';
|
|
2
|
-
import { Subject } from 'rxjs';
|
|
3
|
-
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
-
import { ValueAccessorBase } from '../value-acessor-base';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SelectBoxComponent extends ValueAccessorBase<any> implements OnInit, OnDestroy {
|
|
7
|
-
placeholder: string;
|
|
8
|
-
searchPlaceHolder: string;
|
|
9
|
-
clearText: string;
|
|
10
|
-
notFoundText: string;
|
|
11
|
-
enabledSearch: boolean;
|
|
12
|
-
data: any[];
|
|
13
|
-
disabled: boolean;
|
|
14
|
-
selectedItem: any;
|
|
15
|
-
selectProperty: any;
|
|
16
|
-
bindImageUrl: string;
|
|
17
|
-
bindKey: string;
|
|
18
|
-
bindValue: string;
|
|
19
|
-
limitItens: number;
|
|
20
|
-
showAddNewItem: boolean;
|
|
21
|
-
addNewItemText: string;
|
|
22
|
-
addNewItemIcon: string;
|
|
23
|
-
addNewItemClickCloseSelect: boolean;
|
|
24
|
-
closeOnBodyScroll: boolean;
|
|
25
|
-
initializing: boolean;
|
|
26
|
-
loadingText: string;
|
|
27
|
-
onOpenSelectBox: EventEmitter<any>;
|
|
28
|
-
onCloseSelectBox: EventEmitter<any>;
|
|
29
|
-
onSelectChange: EventEmitter<any>;
|
|
30
|
-
onSelectClear: EventEmitter<any>;
|
|
31
|
-
onAddNewItemClick: EventEmitter<any>;
|
|
32
|
-
ngSelectComponent: NgSelectComponent | undefined;
|
|
33
|
-
visibleItens: any[];
|
|
34
|
-
loading: boolean;
|
|
35
|
-
inputFilter: Subject<string>;
|
|
36
|
-
lastSearchTerm: string;
|
|
37
|
-
ngOnInit(): void;
|
|
38
|
-
private readonly onBodyScroll;
|
|
39
|
-
ngOnDestroy(): void;
|
|
40
|
-
onSearch(): void;
|
|
41
|
-
onScroll({ end }: {
|
|
42
|
-
end: any;
|
|
43
|
-
}): void;
|
|
44
|
-
onScrollToEnd(): void;
|
|
45
|
-
fetchMore(): void;
|
|
46
|
-
onKeyDown(event: any): void;
|
|
47
|
-
onSelectionChange(event: Event): void;
|
|
48
|
-
openSelectBox($event: any): void;
|
|
49
|
-
compareFn(a: any, b: any): boolean;
|
|
50
|
-
onClear(): void;
|
|
51
|
-
onClose($event?: any): void;
|
|
52
|
-
onAddNewItem(): void;
|
|
53
|
-
writeValue(value: any): void;
|
|
54
|
-
findSelectedItem(value: any): void;
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBoxComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBoxComponent, "select-box", never, { "placeholder": "placeholder"; "searchPlaceHolder": "searchPlaceHolder"; "clearText": "clearText"; "notFoundText": "notFoundText"; "enabledSearch": "enabledSearch"; "data": "data"; "disabled": "disabled"; "selectedItem": "selectedItem"; "selectProperty": "selectProperty"; "bindImageUrl": "bindImageUrl"; "bindKey": "bindKey"; "bindValue": "bindValue"; "limitItens": "limitItens"; "showAddNewItem": "showAddNewItem"; "addNewItemText": "addNewItemText"; "addNewItemIcon": "addNewItemIcon"; "addNewItemClickCloseSelect": "addNewItemClickCloseSelect"; "closeOnBodyScroll": "closeOnBodyScroll"; "initializing": "initializing"; "loadingText": "loadingText"; }, { "onOpenSelectBox": "onOpenSelectBox"; "onCloseSelectBox": "onCloseSelectBox"; "onSelectChange": "onSelectChange"; "onSelectClear": "onSelectClear"; "onAddNewItemClick": "onAddNewItemClick"; }, never, never, false, never>;
|
|
57
|
-
}
|
|
1
|
+
import { EventEmitter, type OnDestroy, type OnInit } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
+
import { ValueAccessorBase } from '../value-acessor-base';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SelectBoxComponent extends ValueAccessorBase<any> implements OnInit, OnDestroy {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
searchPlaceHolder: string;
|
|
9
|
+
clearText: string;
|
|
10
|
+
notFoundText: string;
|
|
11
|
+
enabledSearch: boolean;
|
|
12
|
+
data: any[];
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
selectedItem: any;
|
|
15
|
+
selectProperty: any;
|
|
16
|
+
bindImageUrl: string;
|
|
17
|
+
bindKey: string;
|
|
18
|
+
bindValue: string;
|
|
19
|
+
limitItens: number;
|
|
20
|
+
showAddNewItem: boolean;
|
|
21
|
+
addNewItemText: string;
|
|
22
|
+
addNewItemIcon: string;
|
|
23
|
+
addNewItemClickCloseSelect: boolean;
|
|
24
|
+
closeOnBodyScroll: boolean;
|
|
25
|
+
initializing: boolean;
|
|
26
|
+
loadingText: string;
|
|
27
|
+
onOpenSelectBox: EventEmitter<any>;
|
|
28
|
+
onCloseSelectBox: EventEmitter<any>;
|
|
29
|
+
onSelectChange: EventEmitter<any>;
|
|
30
|
+
onSelectClear: EventEmitter<any>;
|
|
31
|
+
onAddNewItemClick: EventEmitter<any>;
|
|
32
|
+
ngSelectComponent: NgSelectComponent | undefined;
|
|
33
|
+
visibleItens: any[];
|
|
34
|
+
loading: boolean;
|
|
35
|
+
inputFilter: Subject<string>;
|
|
36
|
+
lastSearchTerm: string;
|
|
37
|
+
ngOnInit(): void;
|
|
38
|
+
private readonly onBodyScroll;
|
|
39
|
+
ngOnDestroy(): void;
|
|
40
|
+
onSearch(): void;
|
|
41
|
+
onScroll({ end }: {
|
|
42
|
+
end: any;
|
|
43
|
+
}): void;
|
|
44
|
+
onScrollToEnd(): void;
|
|
45
|
+
fetchMore(): void;
|
|
46
|
+
onKeyDown(event: any): void;
|
|
47
|
+
onSelectionChange(event: Event): void;
|
|
48
|
+
openSelectBox($event: any): void;
|
|
49
|
+
compareFn(a: any, b: any): boolean;
|
|
50
|
+
onClear(): void;
|
|
51
|
+
onClose($event?: any): void;
|
|
52
|
+
onAddNewItem(): void;
|
|
53
|
+
writeValue(value: any): void;
|
|
54
|
+
findSelectedItem(value: any): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBoxComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBoxComponent, "select-box", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "searchPlaceHolder": { "alias": "searchPlaceHolder"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "enabledSearch": { "alias": "enabledSearch"; "required": false; }; "data": { "alias": "data"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; "selectProperty": { "alias": "selectProperty"; "required": false; }; "bindImageUrl": { "alias": "bindImageUrl"; "required": false; }; "bindKey": { "alias": "bindKey"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "limitItens": { "alias": "limitItens"; "required": false; }; "showAddNewItem": { "alias": "showAddNewItem"; "required": false; }; "addNewItemText": { "alias": "addNewItemText"; "required": false; }; "addNewItemIcon": { "alias": "addNewItemIcon"; "required": false; }; "addNewItemClickCloseSelect": { "alias": "addNewItemClickCloseSelect"; "required": false; }; "closeOnBodyScroll": { "alias": "closeOnBodyScroll"; "required": false; }; "initializing": { "alias": "initializing"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; }, { "onOpenSelectBox": "onOpenSelectBox"; "onCloseSelectBox": "onCloseSelectBox"; "onSelectChange": "onSelectChange"; "onSelectClear": "onSelectClear"; "onAddNewItemClick": "onAddNewItemClick"; }, never, never, false, never>;
|
|
57
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ValueAccessorBase } from '../value-acessor-base';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SelectEnumComponent extends ValueAccessorBase<string> {
|
|
4
|
-
placeholder: string;
|
|
5
|
-
enabledSearch: boolean;
|
|
6
|
-
data: any;
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
search: string;
|
|
9
|
-
onKeyDown(event: any): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectEnumComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectEnumComponent, "select-enum", never, { "placeholder": "placeholder"; "enabledSearch": "enabledSearch"; "data": "data"; "disabled": "disabled"; }, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
1
|
+
import { ValueAccessorBase } from '../value-acessor-base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SelectEnumComponent extends ValueAccessorBase<string> {
|
|
4
|
+
placeholder: string;
|
|
5
|
+
enabledSearch: boolean;
|
|
6
|
+
data: any;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
search: string;
|
|
9
|
+
onKeyDown(event: any): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectEnumComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectEnumComponent, "select-enum", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "enabledSearch": { "alias": "enabledSearch"; "required": false; }; "data": { "alias": "data"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
import { type AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { CustomSelectItem } from '../custom-select/custom-select-item';
|
|
4
|
-
import { ScrollStrategy, ScrollStrategyOptions } from '@angular/cdk/overlay';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class SelectInterpolationComponent implements ControlValueAccessor, AfterViewInit {
|
|
7
|
-
private readonly sso;
|
|
8
|
-
private innerValue;
|
|
9
|
-
private edited;
|
|
10
|
-
scrollStrategy: ScrollStrategy;
|
|
11
|
-
_triggerRect: ClientRect | undefined;
|
|
12
|
-
selectedItem: CustomSelectItem | undefined;
|
|
13
|
-
selectedItemLabel: string;
|
|
14
|
-
searchText: string;
|
|
15
|
-
opened: boolean;
|
|
16
|
-
disabled: boolean;
|
|
17
|
-
items: CustomSelectItem[];
|
|
18
|
-
placeHolder: string;
|
|
19
|
-
findPlaceHolder: string;
|
|
20
|
-
onSelect: EventEmitter<CustomSelectItem>;
|
|
21
|
-
trigger: ElementRef | undefined;
|
|
22
|
-
input: ElementRef | undefined;
|
|
23
|
-
constructor(sso: ScrollStrategyOptions);
|
|
24
|
-
tabindex: string;
|
|
25
|
-
onBlur(target: any): void;
|
|
26
|
-
ngAfterViewInit(): void;
|
|
27
|
-
setInitialState(): void;
|
|
28
|
-
private setTriggerRect;
|
|
29
|
-
selectItem(item: CustomSelectItem): void;
|
|
30
|
-
keyPress(): any;
|
|
31
|
-
clicked(): void;
|
|
32
|
-
private onTouchedCallback;
|
|
33
|
-
private onChangeCallback;
|
|
34
|
-
get value(): any;
|
|
35
|
-
set value(value: any);
|
|
36
|
-
writeValue(value: any): void;
|
|
37
|
-
registerOnChange(fn: any): void;
|
|
38
|
-
registerOnTouched(fn: any): void;
|
|
39
|
-
setDisabledState(isDisabled: boolean): void;
|
|
40
|
-
arrowClick(event: any): void;
|
|
41
|
-
onDrop($event: any): void;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInterpolationComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInterpolationComponent, "select-interpolation", never, { "disabled": "disabled"; "items": "items"; "placeHolder": "placeHolder"; "findPlaceHolder": "findPlaceHolder"; }, { "onSelect": "onSelect"; }, never, never, false, never>;
|
|
44
|
-
}
|
|
1
|
+
import { type AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { CustomSelectItem } from '../custom-select/custom-select-item';
|
|
4
|
+
import { ScrollStrategy, ScrollStrategyOptions } from '@angular/cdk/overlay';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SelectInterpolationComponent implements ControlValueAccessor, AfterViewInit {
|
|
7
|
+
private readonly sso;
|
|
8
|
+
private innerValue;
|
|
9
|
+
private edited;
|
|
10
|
+
scrollStrategy: ScrollStrategy;
|
|
11
|
+
_triggerRect: ClientRect | undefined;
|
|
12
|
+
selectedItem: CustomSelectItem | undefined;
|
|
13
|
+
selectedItemLabel: string;
|
|
14
|
+
searchText: string;
|
|
15
|
+
opened: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
items: CustomSelectItem[];
|
|
18
|
+
placeHolder: string;
|
|
19
|
+
findPlaceHolder: string;
|
|
20
|
+
onSelect: EventEmitter<CustomSelectItem>;
|
|
21
|
+
trigger: ElementRef | undefined;
|
|
22
|
+
input: ElementRef | undefined;
|
|
23
|
+
constructor(sso: ScrollStrategyOptions);
|
|
24
|
+
tabindex: string;
|
|
25
|
+
onBlur(target: any): void;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
setInitialState(): void;
|
|
28
|
+
private setTriggerRect;
|
|
29
|
+
selectItem(item: CustomSelectItem): void;
|
|
30
|
+
keyPress(): any;
|
|
31
|
+
clicked(): void;
|
|
32
|
+
private onTouchedCallback;
|
|
33
|
+
private onChangeCallback;
|
|
34
|
+
get value(): any;
|
|
35
|
+
set value(value: any);
|
|
36
|
+
writeValue(value: any): void;
|
|
37
|
+
registerOnChange(fn: any): void;
|
|
38
|
+
registerOnTouched(fn: any): void;
|
|
39
|
+
setDisabledState(isDisabled: boolean): void;
|
|
40
|
+
arrowClick(event: any): void;
|
|
41
|
+
onDrop($event: any): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInterpolationComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInterpolationComponent, "select-interpolation", never, { "disabled": { "alias": "disabled"; "required": false; }; "items": { "alias": "items"; "required": false; }; "placeHolder": { "alias": "placeHolder"; "required": false; }; "findPlaceHolder": { "alias": "findPlaceHolder"; "required": false; }; }, { "onSelect": "onSelect"; }, never, never, false, never>;
|
|
44
|
+
}
|
package/value-acessor-base.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
-
export declare abstract class ValueAccessorBase<T> implements ControlValueAccessor {
|
|
3
|
-
private innerValue;
|
|
4
|
-
onChange: any;
|
|
5
|
-
onTouched: any;
|
|
6
|
-
get value(): T;
|
|
7
|
-
set value(value: T);
|
|
8
|
-
protected changeValue(value: T): T;
|
|
9
|
-
writeValue(value: T): void;
|
|
10
|
-
registerOnChange(fn: any): void;
|
|
11
|
-
registerOnTouched(fn: any): void;
|
|
12
|
-
touch(): void;
|
|
13
|
-
}
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
export declare abstract class ValueAccessorBase<T> implements ControlValueAccessor {
|
|
3
|
+
private innerValue;
|
|
4
|
+
onChange: any;
|
|
5
|
+
onTouched: any;
|
|
6
|
+
get value(): T;
|
|
7
|
+
set value(value: T);
|
|
8
|
+
protected changeValue(value: T): T;
|
|
9
|
+
writeValue(value: T): void;
|
|
10
|
+
registerOnChange(fn: any): void;
|
|
11
|
+
registerOnTouched(fn: any): void;
|
|
12
|
+
touch(): void;
|
|
13
|
+
}
|