ca-components 1.0.78 → 1.0.80
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/esm2022/lib/ca-components.module.mjs +16 -4
- package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +1 -1
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-input/base-classes/ca-input-base-helpres.mjs +237 -0
- package/esm2022/lib/components/ca-input/base-classes/ca-input-base.mjs +1020 -0
- package/esm2022/lib/components/ca-input/base-classes/ca-input-event-manager.mjs +24 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +53 -163
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +11 -17
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input/directives/caps-lock.directive.mjs +50 -0
- package/esm2022/lib/components/ca-input/directives/index.mjs +5 -1
- package/esm2022/lib/components/ca-input/directives/input-max-value.directive.mjs +53 -0
- package/esm2022/lib/components/ca-input/directives/min-max-value.directive.mjs +1 -1
- package/esm2022/lib/components/ca-input/directives/price_format.directive.mjs +41 -0
- package/esm2022/lib/components/ca-input/directives/restrict-input.directive.mjs +98 -0
- package/esm2022/lib/components/ca-input/enums/input-text-transform.enum.mjs +9 -0
- package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +175 -0
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +16 -16
- package/esm2022/lib/components/ca-input/pipes/input-datetime-picker-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +18 -15
- package/esm2022/lib/components/ca-input/pipes/input-pattern.pipe.mjs +322 -0
- package/esm2022/lib/components/ca-input/services/index.mjs +1 -2
- package/esm2022/lib/components/ca-input/utils/constants/input-constants.mjs +102 -1
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +809 -0
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +18 -18
- package/esm2022/lib/components/ca-rating-review/ca-rating-review.component.mjs +2 -2
- package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +1 -1
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +1 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/ca-components.mjs +7690 -7171
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +32 -30
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-input/base-classes/ca-input-base-helpres.d.ts +29 -0
- package/lib/components/ca-input/base-classes/ca-input-base.d.ts +82 -0
- package/lib/components/ca-input/base-classes/ca-input-event-manager.d.ts +16 -0
- package/lib/components/ca-input/ca-input.component.d.ts +30 -48
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +3 -7
- package/lib/components/ca-input/config/ca-input.config.d.ts +10 -1
- package/lib/components/ca-input/directives/caps-lock.directive.d.ts +14 -0
- package/lib/components/ca-input/directives/index.d.ts +4 -0
- package/lib/components/ca-input/directives/input-max-value.directive.d.ts +12 -0
- package/lib/components/ca-input/directives/price_format.directive.d.ts +11 -0
- package/lib/components/ca-input/directives/restrict-input.directive.d.ts +15 -0
- package/lib/components/ca-input/enums/input-text-transform.enum.d.ts +6 -0
- package/lib/components/ca-input/input-test/input-test.component.d.ts +47 -0
- package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +3 -3
- package/lib/components/ca-input/pipes/input-datetime-picker-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-pattern.pipe.d.ts +25 -0
- package/lib/components/ca-input/services/index.d.ts +0 -1
- package/lib/components/ca-input/utils/constants/input-constants.d.ts +11 -0
- package/lib/components/ca-input-datetime-picker/ca-input-datetime-picker.component.d.ts +99 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/esm2022/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +0 -100
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +0 -2173
- package/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.d.ts +0 -48
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +0 -196
|
@@ -6,37 +6,39 @@ import * as i4 from "./components/ca-app-tooltip-v2/ca-app-tooltip-v2.component"
|
|
|
6
6
|
import * as i5 from "./components/ca-details-dropdown/ca-details-dropdown.component";
|
|
7
7
|
import * as i6 from "./components/ca-filters/ca-filter.component";
|
|
8
8
|
import * as i7 from "./components/ca-input/ca-input.component";
|
|
9
|
-
import * as i8 from "./components/ca-input-
|
|
10
|
-
import * as i9 from "./components/ca-input-
|
|
11
|
-
import * as i10 from "./components/ca-
|
|
12
|
-
import * as i11 from "./components/ca-map
|
|
13
|
-
import * as i12 from "./components/ca-
|
|
14
|
-
import * as i13 from "./components/ca-note
|
|
15
|
-
import * as i14 from "./components/ca-
|
|
16
|
-
import * as i15 from "./components/ca-payroll-list-summary-overview
|
|
17
|
-
import * as i16 from "./components/ca-
|
|
18
|
-
import * as i17 from "./components/ca-
|
|
19
|
-
import * as i18 from "./components/ca-
|
|
20
|
-
import * as i19 from "./components/ca-
|
|
21
|
-
import * as i20 from "./components/ca-
|
|
22
|
-
import * as i21 from "./components/ca-
|
|
23
|
-
import * as i22 from "./components/ca-
|
|
24
|
-
import * as i23 from "./components/ca-
|
|
25
|
-
import * as i24 from "./components/ca-input-
|
|
26
|
-
import * as i25 from "./components/ca-
|
|
27
|
-
import * as i26 from "./components/ca-
|
|
28
|
-
import * as i27 from "./components/ca-
|
|
29
|
-
import * as i28 from "./components/ca-right-side-panel/components/ca-right-side-panel-
|
|
30
|
-
import * as i29 from "./components/ca-right-side-panel/ca-right-side-panel.component";
|
|
31
|
-
import * as i30 from "./components/ca-
|
|
32
|
-
import * as i31 from "./components/ca-chart
|
|
33
|
-
import * as i32 from "./components/ca-
|
|
34
|
-
import * as i33 from "./components/ca-
|
|
35
|
-
import * as i34 from "./components/ca-
|
|
36
|
-
import * as i35 from "./components/ca-
|
|
37
|
-
import * as i36 from "./components/ca-
|
|
9
|
+
import * as i8 from "./components/ca-input-datetime-picker/ca-input-datetime-picker.component";
|
|
10
|
+
import * as i9 from "./components/ca-input-radiobuttons/ca-input-radiobuttons.component";
|
|
11
|
+
import * as i10 from "./components/ca-input-dropdown/ca-input-dropdown.component";
|
|
12
|
+
import * as i11 from "./components/ca-map/ca-map.component";
|
|
13
|
+
import * as i12 from "./components/ca-map-dropdown/ca-map-dropdown.component";
|
|
14
|
+
import * as i13 from "./components/ca-note/ca-note.component";
|
|
15
|
+
import * as i14 from "./components/ca-note-container/ca-note-container.component";
|
|
16
|
+
import * as i15 from "./components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component";
|
|
17
|
+
import * as i16 from "./components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component";
|
|
18
|
+
import * as i17 from "./components/ca-pickup-delivery-block/ca-pickup-delivery-block.component";
|
|
19
|
+
import * as i18 from "./components/ca-progress-bar/ca-progress-bar.component";
|
|
20
|
+
import * as i19 from "./components/ca-search-multiple-states/ca-search-multiple-states.component";
|
|
21
|
+
import * as i20 from "./components/ca-spinner/ca-spinner.component";
|
|
22
|
+
import * as i21 from "./components/ca-todo/ca-todo.component";
|
|
23
|
+
import * as i22 from "./components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component";
|
|
24
|
+
import * as i23 from "./components/ca-period-content/ca-period-content.component";
|
|
25
|
+
import * as i24 from "./components/ca-input-note/ca-input-note.component";
|
|
26
|
+
import * as i25 from "./components/ca-input-address-dropdown/ca-input-address-dropdown.component";
|
|
27
|
+
import * as i26 from "./components/ca-main-table/ca-main-table.component";
|
|
28
|
+
import * as i27 from "./components/ca-activity-log-list/ca-activity-log-list.component";
|
|
29
|
+
import * as i28 from "./components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component";
|
|
30
|
+
import * as i29 from "./components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component";
|
|
31
|
+
import * as i30 from "./components/ca-right-side-panel/ca-right-side-panel.component";
|
|
32
|
+
import * as i31 from "./components/ca-chart/ca-chart.component";
|
|
33
|
+
import * as i32 from "./components/ca-chart-manager/ca-chart-manager.component";
|
|
34
|
+
import * as i33 from "./components/ca-dropdown-menu/ca-dropdown-menu.component";
|
|
35
|
+
import * as i34 from "./components/ca-upload-files/ca-upload-files.component";
|
|
36
|
+
import * as i35 from "./components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component";
|
|
37
|
+
import * as i36 from "./components/ca-progress-range/ca-progress-range.component";
|
|
38
|
+
import * as i37 from "./components/ca-tooltip-list/ca-tooltip-list.component";
|
|
39
|
+
import * as i38 from "./components/ca-input/input-test/input-test.component";
|
|
38
40
|
export declare class CaComponentsLibModule {
|
|
39
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaComponentsLibModule, never>;
|
|
40
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i21.CaTodoComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i25.CaInputAddressDropdownComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i38.InputTestComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputDatetimePickerComponent, typeof i9.CaInputRadiobuttonsComponent, typeof i10.CaInputDropdownComponent, typeof i11.CaMapComponent, typeof i12.CaMapDropdownComponent, typeof i13.CaNoteComponent, typeof i14.CaNoteContainerComponent, typeof i15.CaPayrollListSummaryOverviewComponent, typeof i16.CaPayrollListSummaryOverviewTableComponent, typeof i17.PickupDeliveryBlockComponent, typeof i18.ProgressBarComponent, typeof i19.CaSearchMultipleStatesComponent, typeof i20.CaSpinnerComponent, typeof i22.CaTruckTrailerProgresBarComponent, typeof i23.CaPeriodContentComponent, typeof i24.CaInputNoteComponent, typeof i26.CaMainTableComponent, typeof i27.CaActivityLogListComponent, typeof i28.CaRightSidePanelMenuComponent, typeof i29.CaRightSidePanelTopBarComponent, typeof i30.CaRightSidePanelComponent, typeof i31.CaChartComponent, typeof i32.CaChartManagerComponent, typeof i33.CaDropdownMenuComponent, typeof i34.CaUploadFilesComponent, typeof i35.CaRightSidePanelCompanyComponent, typeof i36.CaProgressRangeComponent, typeof i37.CaTooltipListComponent, typeof i25.CaInputAddressDropdownComponent, typeof i38.InputTestComponent]>;
|
|
41
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaComponentsLibModule>;
|
|
42
44
|
}
|
|
@@ -60,8 +60,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
60
60
|
addressList: AddressList[];
|
|
61
61
|
usaStates: ArrayStatus[];
|
|
62
62
|
canadaStates: ArrayStatus[];
|
|
63
|
-
setFilter: EventEmitter<
|
|
64
|
-
clearAll: EventEmitter<
|
|
63
|
+
setFilter: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
64
|
+
clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
65
65
|
private destroy$;
|
|
66
66
|
isSearchExpanded: boolean;
|
|
67
67
|
isFilterActive: boolean;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import { ICaInput } from '../config';
|
|
4
|
+
export declare abstract class CaInputBaseHelpersComponent {
|
|
5
|
+
abstract input: ElementRef;
|
|
6
|
+
abstract lastCursorSpacePosition: number;
|
|
7
|
+
abstract superControl: NgControl;
|
|
8
|
+
abstract _inputConfig: ICaInput;
|
|
9
|
+
abstract cdRef: ChangeDetectorRef;
|
|
10
|
+
numberOfConsecutivelyPoints: number;
|
|
11
|
+
numberOfPoints: number;
|
|
12
|
+
oneSpaceOnlyCounter: number;
|
|
13
|
+
inputCommandsTimeout: NodeJS.Timeout | number;
|
|
14
|
+
disableConsecutivelySpaces(event: any): void;
|
|
15
|
+
disableConsecutivelyPoints(event: KeyboardEvent): void | boolean;
|
|
16
|
+
disableMultiplePoints(event: KeyboardEvent): void | boolean;
|
|
17
|
+
enableOneSpaceOnly(event: any): boolean;
|
|
18
|
+
handlePmIncrementDecrement(action: string): void;
|
|
19
|
+
private decrementPmValue;
|
|
20
|
+
private resetPmValue;
|
|
21
|
+
private incrementPmValue;
|
|
22
|
+
setInputCursorAtTheEnd(input: any, time?: number): void;
|
|
23
|
+
handleIncrementDecrement(action: string): void;
|
|
24
|
+
handleMonths(action: string): void;
|
|
25
|
+
private decrementMonth;
|
|
26
|
+
private incrementMonth;
|
|
27
|
+
blurOnCommands(): void;
|
|
28
|
+
checkNameArray(array: string[], name: string): boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ThousandSeparatorPipe } from '../../../pipes/thousand-separator.pipe';
|
|
3
|
+
import { InputChangeValue } from '../utils';
|
|
4
|
+
import { CaInputValidationService } from '../services';
|
|
5
|
+
import { CaInputBaseHelpersComponent } from '../base-classes/ca-input-base-helpres';
|
|
6
|
+
import { EventInputManager } from './ca-input-event-manager';
|
|
7
|
+
import { CommandsEvent } from '../models';
|
|
8
|
+
import { ICaInput } from '../config';
|
|
9
|
+
export declare abstract class CaInputBaseComponent extends CaInputBaseHelpersComponent {
|
|
10
|
+
cdRef: ChangeDetectorRef;
|
|
11
|
+
thousandSeparatorPipe: ThousandSeparatorPipe;
|
|
12
|
+
abstract focusInputEvent: EventEmitter<FocusEvent>;
|
|
13
|
+
abstract handleToggleDropdownOptions: EventEmitter<void>;
|
|
14
|
+
abstract isFocusInput: boolean;
|
|
15
|
+
abstract isTouchedInput: boolean;
|
|
16
|
+
abstract isVisibleCommands: boolean;
|
|
17
|
+
abstract isEditInput: boolean;
|
|
18
|
+
abstract isDropdownToggler: boolean;
|
|
19
|
+
abstract isCapsLockOn: boolean;
|
|
20
|
+
abstract setCommandEvent: EventInputManager<CommandsEvent>;
|
|
21
|
+
abstract setClearInputEvent: EventInputManager<boolean>;
|
|
22
|
+
abstract setIncorrectInput: EventInputManager<boolean>;
|
|
23
|
+
abstract setBlurInput: EventInputManager<boolean>;
|
|
24
|
+
abstract setChangeInput: EventInputManager<InputChangeValue>;
|
|
25
|
+
abstract setShowHideDropdown: EventInputManager<boolean>;
|
|
26
|
+
abstract setDropDownKeyNavigation: EventInputManager<{
|
|
27
|
+
keyCode: number;
|
|
28
|
+
data: ICaInput | null;
|
|
29
|
+
}>;
|
|
30
|
+
inputSelection: boolean;
|
|
31
|
+
cursorInputPosition: number;
|
|
32
|
+
hasDecimalIndex: number;
|
|
33
|
+
originPriceSeparatorLimit: number | undefined;
|
|
34
|
+
timeoutCleaner: NodeJS.Timeout | number;
|
|
35
|
+
lastCursorSpacePosition: number;
|
|
36
|
+
private preventBlur;
|
|
37
|
+
passwordTimeout: NodeJS.Timeout | number;
|
|
38
|
+
isDotDeleted: boolean;
|
|
39
|
+
abstract incorrectValue: boolean;
|
|
40
|
+
showDateInput: boolean;
|
|
41
|
+
dateTimeInputDate: Date;
|
|
42
|
+
numberOfConsecutivelySpaces: number;
|
|
43
|
+
abstract caInputValidationService: CaInputValidationService;
|
|
44
|
+
constructor(cdRef: ChangeDetectorRef, thousandSeparatorPipe: ThousandSeparatorPipe);
|
|
45
|
+
transformText(value: string, isPaste?: boolean): void;
|
|
46
|
+
private handlePaste;
|
|
47
|
+
private limitInputLength;
|
|
48
|
+
private applyTextTransformation;
|
|
49
|
+
private applyThousandSeparator;
|
|
50
|
+
private applyPriceSeparator;
|
|
51
|
+
private setInputCursorPosition;
|
|
52
|
+
private formatWithDecimal;
|
|
53
|
+
private customValidation;
|
|
54
|
+
private formatWithoutDecimal;
|
|
55
|
+
private sanitizeConsecutiveSpaces;
|
|
56
|
+
private setCursorForSanitizedInput;
|
|
57
|
+
private removeLeadingZero;
|
|
58
|
+
writeValueBase(obj: InputChangeValue): void;
|
|
59
|
+
private capitalizeWords;
|
|
60
|
+
private isAllZeros;
|
|
61
|
+
onBlurBase(event?: FocusEvent): void;
|
|
62
|
+
private blurOnDropDownArrow;
|
|
63
|
+
blurOnPassword(): void;
|
|
64
|
+
checkRegexPattern(charCode: string, name: string): boolean | undefined;
|
|
65
|
+
onKeypress(event: KeyboardEvent): boolean | void;
|
|
66
|
+
onFocus(event?: FocusEvent): void;
|
|
67
|
+
onKeydown(event: KeyboardEvent): void;
|
|
68
|
+
onKeyup(event: KeyboardEvent): void;
|
|
69
|
+
private handleConfirmCancel;
|
|
70
|
+
private cancelCommand;
|
|
71
|
+
private confirmCommand;
|
|
72
|
+
clearInput(event: Event): void;
|
|
73
|
+
onCommands(e: any): void;
|
|
74
|
+
onEditInput(event: Event): void;
|
|
75
|
+
toggleDropdownOptions(): void;
|
|
76
|
+
onPlaceholderIconEvent(event: Event): void;
|
|
77
|
+
selectionChange(event: Event): void;
|
|
78
|
+
autoFocusFirstInput(): void;
|
|
79
|
+
onPopoverShown(): void;
|
|
80
|
+
onPopoverHidden(): void;
|
|
81
|
+
onInputConfigChange(): void;
|
|
82
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
export declare class EventInputManager<T> {
|
|
4
|
+
private eventEmitter;
|
|
5
|
+
private stateSubject;
|
|
6
|
+
state$: Observable<T | null>;
|
|
7
|
+
constructor(initialValue: T | null, eventEmitter: EventEmitter<T>);
|
|
8
|
+
/**
|
|
9
|
+
* Update the value and emit the event.
|
|
10
|
+
*/
|
|
11
|
+
next(newValue: T): void;
|
|
12
|
+
/**
|
|
13
|
+
* Get the current value.
|
|
14
|
+
*/
|
|
15
|
+
get value(): T | null;
|
|
16
|
+
}
|
|
@@ -1,28 +1,35 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter,
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { ICaInput } from './config';
|
|
4
4
|
import { LabelColor, CommandsEvent } from './models';
|
|
5
5
|
import { ThousandSeparatorPipe } from '../../pipes/thousand-separator.pipe';
|
|
6
|
-
import {
|
|
6
|
+
import { CaInputPlaceholderIconComponent } from './components/ca-input-placeholder-icon/ca-input-placeholder-icon.component';
|
|
7
|
+
import { CaInputValidationService } from './services';
|
|
7
8
|
import { InputChangeValue, InputSvgRoutes } from './utils';
|
|
8
9
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
9
10
|
import { InputCommandsType, InputStringEnum } from './enums';
|
|
10
11
|
import { DropdownTemplateTypeEnum } from '../ca-input-dropdown/enums';
|
|
12
|
+
import { CaInputBaseComponent } from './base-classes/ca-input-base';
|
|
13
|
+
import { EventInputManager } from './base-classes/ca-input-event-manager';
|
|
11
14
|
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class CaInputComponent implements OnInit, OnDestroy,
|
|
15
|
+
export declare class CaInputComponent extends CaInputBaseComponent implements OnInit, OnDestroy, AfterViewInit, ControlValueAccessor {
|
|
13
16
|
superControl: NgControl;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
cdRefd: ChangeDetectorRef;
|
|
18
|
+
thsep: ThousandSeparatorPipe;
|
|
19
|
+
caInputValidationService: CaInputValidationService;
|
|
17
20
|
input: ElementRef;
|
|
18
21
|
ngbMainPopover: NgbPopover;
|
|
19
|
-
|
|
22
|
+
caInputPlaceholderIconComponent: CaInputPlaceholderIconComponent;
|
|
23
|
+
_inputConfig: ICaInput;
|
|
24
|
+
set inputConfig(config: ICaInput);
|
|
25
|
+
dateTimePopover: TemplateRef<any>;
|
|
20
26
|
incorrectValue: boolean;
|
|
21
27
|
selectedDropdownLabelColor: LabelColor | null;
|
|
22
28
|
template: string;
|
|
29
|
+
handleToggleDropdownOptions: EventEmitter<void>;
|
|
23
30
|
incorrectInput: EventEmitter<boolean>;
|
|
24
31
|
blurInput: EventEmitter<boolean>;
|
|
25
|
-
focusInputEvent: EventEmitter<
|
|
32
|
+
focusInputEvent: EventEmitter<FocusEvent>;
|
|
26
33
|
changeInput: EventEmitter<InputChangeValue>;
|
|
27
34
|
commandEvent: EventEmitter<CommandsEvent>;
|
|
28
35
|
clearInputEvent: EventEmitter<boolean>;
|
|
@@ -31,70 +38,45 @@ export declare class CaInputComponent implements OnInit, OnDestroy, OnChanges, A
|
|
|
31
38
|
keyCode: number;
|
|
32
39
|
data: ICaInput | null;
|
|
33
40
|
}>;
|
|
41
|
+
isFocusInput: boolean;
|
|
34
42
|
isTouchedInput: boolean;
|
|
35
43
|
isVisibleCommands: boolean;
|
|
44
|
+
isDropdownToggler: boolean;
|
|
45
|
+
isCapsLockOn: boolean;
|
|
36
46
|
isEditInput: boolean;
|
|
47
|
+
setCommandEvent: EventInputManager<CommandsEvent>;
|
|
48
|
+
setClearInputEvent: EventInputManager<boolean>;
|
|
49
|
+
setIncorrectInput: EventInputManager<boolean>;
|
|
50
|
+
setBlurInput: EventInputManager<boolean>;
|
|
51
|
+
setChangeInput: EventInputManager<InputChangeValue>;
|
|
52
|
+
setShowHideDropdown: EventInputManager<boolean>;
|
|
53
|
+
setDropDownKeyNavigation: EventInputManager<{
|
|
54
|
+
keyCode: number;
|
|
55
|
+
data: ICaInput | null;
|
|
56
|
+
}>;
|
|
37
57
|
isTogglePassword: boolean;
|
|
38
|
-
isCapsLockOn: boolean;
|
|
39
|
-
isDropdownToggler: boolean;
|
|
40
|
-
showDateInput: boolean;
|
|
41
|
-
dateTimeInputDate: Date;
|
|
42
58
|
newInputChanged: boolean;
|
|
43
59
|
private destroy$;
|
|
44
60
|
inputSvgRoutes: typeof InputSvgRoutes;
|
|
45
|
-
isFocusInput: boolean;
|
|
46
61
|
priceSeperatorWithFilledValue: boolean;
|
|
47
62
|
inputCommandsType: typeof InputCommandsType;
|
|
48
63
|
inputStringEnum: typeof InputStringEnum;
|
|
49
64
|
dropdownTemplateTypeEnum: typeof DropdownTemplateTypeEnum;
|
|
50
|
-
constructor(superControl: NgControl,
|
|
65
|
+
constructor(superControl: NgControl, cdRefd: ChangeDetectorRef, thsep: ThousandSeparatorPipe, caInputValidationService: CaInputValidationService);
|
|
51
66
|
get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null;
|
|
52
67
|
ngOnInit(): void;
|
|
53
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
54
68
|
ngAfterViewInit(): void;
|
|
55
69
|
initStateService(): void;
|
|
56
70
|
outputListeners(): void;
|
|
57
71
|
initChangesListener(): void;
|
|
58
|
-
setStateInputs(changes: SimpleChanges): void;
|
|
59
72
|
writeValue(obj: InputChangeValue): void;
|
|
60
73
|
registerOnChange(fn: any): void;
|
|
61
74
|
onChange(_: any): void;
|
|
62
75
|
registerOnTouched(): void;
|
|
63
76
|
onBlur(event?: FocusEvent): void;
|
|
64
|
-
onFocus(event?: FocusEvent): void;
|
|
65
|
-
onKeyPress(event: KeyboardEvent): void;
|
|
66
|
-
onKeydown(event: KeyboardEvent): void;
|
|
67
|
-
onKeyup(event: KeyboardEvent): void;
|
|
68
|
-
transformText(event: Event): void;
|
|
69
|
-
clearInput(event: Event): void;
|
|
70
77
|
onTogglePassword(event: Event): void;
|
|
71
|
-
onCommands(event: {
|
|
72
|
-
event: Event;
|
|
73
|
-
type: string;
|
|
74
|
-
action: string;
|
|
75
|
-
}): void;
|
|
76
|
-
onEditInput(event: Event): void;
|
|
77
|
-
toggleDropdownOptions(): void;
|
|
78
|
-
onPlaceholderIconEvent(event: Event): void;
|
|
79
|
-
setInputCursorAtTheEnd(input: any): void;
|
|
80
|
-
selectionChange(event: Event): void;
|
|
81
|
-
onDatePaste(event: ClipboardEvent): void;
|
|
82
|
-
setSelection(event: {
|
|
83
|
-
preventDefault: () => void;
|
|
84
|
-
stopPropagation: () => void;
|
|
85
|
-
target: any;
|
|
86
|
-
}): void;
|
|
87
|
-
changeSelection(event: {
|
|
88
|
-
e: KeyboardEvent;
|
|
89
|
-
noPreventDefault: boolean;
|
|
90
|
-
}): void;
|
|
91
|
-
onPopoverShown(): void;
|
|
92
|
-
onPopoverHidden(): void;
|
|
93
|
-
closePopover(): void;
|
|
94
|
-
selectLastOneForSelection(): void;
|
|
95
|
-
selectLastOneAfterMouseUp(): void;
|
|
96
78
|
trackIdentity: (index: number) => number;
|
|
97
79
|
ngOnDestroy(): void;
|
|
98
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputComponent, [{ self: true; }, null, null, null]>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputComponent, "app-ca-input", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "incorrectInput": "incorrectEvent"; "blurInput": "blurInput"; "focusInputEvent": "focusInput"; "changeInput": "change"; "commandEvent": "commandEvent"; "clearInputEvent": "clear"; "showHideDropdownEvent": "showHideDropdown"; "dropDownKeyNavigationEvent": "dropDownKeyNavigation"; }, never, never, true, never>;
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputComponent, "app-ca-input", never, { "inputConfig": { "alias": "inputConfig"; "required": false; }; "dateTimePopover": { "alias": "dateTimePopover"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "handleToggleDropdownOptions": "handleToggleDropdownOptions"; "incorrectInput": "incorrectEvent"; "blurInput": "blurInput"; "focusInputEvent": "focusInput"; "changeInput": "change"; "commandEvent": "commandEvent"; "clearInputEvent": "clear"; "showHideDropdownEvent": "showHideDropdown"; "dropDownKeyNavigationEvent": "dropDownKeyNavigation"; }, never, never, true, never>;
|
|
100
82
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { ICaInput } from '../../config/ca-input.config';
|
|
4
4
|
import { LabelColor } from '../../models/label-color.model';
|
|
5
5
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
6
|
-
import { InputStateService } from '../../services';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class CaInputPlaceholderIconComponent
|
|
9
|
-
private inputStateService;
|
|
7
|
+
export declare class CaInputPlaceholderIconComponent {
|
|
10
8
|
inputConfig: ICaInput;
|
|
11
9
|
getSuperControl: AbstractControl<any, any> | null;
|
|
12
10
|
isFocusInput: boolean;
|
|
@@ -19,9 +17,7 @@ export declare class CaInputPlaceholderIconComponent implements OnInit, AfterVie
|
|
|
19
17
|
onPlaceholderIconEventEmitter: EventEmitter<Event>;
|
|
20
18
|
t2: NgbPopover;
|
|
21
19
|
ngbMainPopover: NgbPopover;
|
|
22
|
-
constructor(
|
|
23
|
-
ngOnInit(): void;
|
|
24
|
-
ngAfterViewInit(): void;
|
|
20
|
+
constructor();
|
|
25
21
|
onPopoverShown(): void;
|
|
26
22
|
onPopoverHidden(): void;
|
|
27
23
|
onPlaceholderIconEvent(event: Event): void;
|
|
@@ -12,6 +12,15 @@ export interface IMultipleInput {
|
|
|
12
12
|
isProgressBar?: boolean;
|
|
13
13
|
isCounter?: boolean;
|
|
14
14
|
}
|
|
15
|
+
export interface ICaInputDateTimePicker {
|
|
16
|
+
name: string;
|
|
17
|
+
isIconHidden?: boolean;
|
|
18
|
+
customClass?: string;
|
|
19
|
+
isDisabled?: boolean;
|
|
20
|
+
isFutureDateDisabled?: boolean;
|
|
21
|
+
expiredDateInvalid?: boolean;
|
|
22
|
+
isFromDate?: boolean;
|
|
23
|
+
}
|
|
15
24
|
export interface ICaInput {
|
|
16
25
|
id?: number;
|
|
17
26
|
name: string;
|
|
@@ -50,8 +59,8 @@ export interface ICaInput {
|
|
|
50
59
|
hideErrorMessage?: boolean;
|
|
51
60
|
hideDangerMark?: boolean;
|
|
52
61
|
hideDropdownArrow?: boolean;
|
|
53
|
-
errorInsideInput?: boolean;
|
|
54
62
|
requiredLabel?: boolean;
|
|
63
|
+
errorInsideInput?: boolean;
|
|
55
64
|
removeInput?: boolean;
|
|
56
65
|
readOnly?: boolean;
|
|
57
66
|
thousandSeparator?: boolean;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CapsLockDirective {
|
|
4
|
+
private el;
|
|
5
|
+
capsLockStatus: EventEmitter<boolean>;
|
|
6
|
+
private capsLockDetected;
|
|
7
|
+
constructor(el: ElementRef);
|
|
8
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
9
|
+
onKeyUP(event: KeyboardEvent): void;
|
|
10
|
+
onFocus(): void;
|
|
11
|
+
onBlur(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CapsLockDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CapsLockDirective, "[appCapsLock]", never, {}, { "capsLockStatus": "capsLockStatus"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MaxValueDirective {
|
|
4
|
+
private el;
|
|
5
|
+
appMaxValue?: number;
|
|
6
|
+
constructor(el: ElementRef);
|
|
7
|
+
onInput(event: Event): void;
|
|
8
|
+
onBlur(event: Event): void;
|
|
9
|
+
private formatNumber;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaxValueDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaxValueDirective, "[appMaxValue]", never, { "appMaxValue": { "alias": "appMaxValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PriceFormatDirective {
|
|
4
|
+
private el;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
priceSeparator?: boolean;
|
|
7
|
+
onInput(event: Event): void;
|
|
8
|
+
private formatWithCommas;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PriceFormatDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PriceFormatDirective, "[priceFormat]", never, { "priceSeparator": { "alias": "priceSeparator"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { ICaInput } from '../config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RestrictInputDirective {
|
|
5
|
+
private el;
|
|
6
|
+
private injector;
|
|
7
|
+
restrictInput: ICaInput;
|
|
8
|
+
private inputPatternPipe;
|
|
9
|
+
private lastValidInputValue;
|
|
10
|
+
constructor(el: ElementRef, injector: Injector);
|
|
11
|
+
onInput(event: InputEvent): void;
|
|
12
|
+
private getTextTransformation;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestrictInputDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RestrictInputDirective, "[restrictInput]", never, { "restrictInput": { "alias": "restrictInput"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import { ICaInput } from '../config';
|
|
4
|
+
import { InputChangeValue } from '../utils';
|
|
5
|
+
import { LabelColor } from '../models';
|
|
6
|
+
import { InputCommandsType, InputStringEnum } from '../enums';
|
|
7
|
+
import { DropdownTemplateTypeEnum } from '../../ca-input-dropdown/enums';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class InputTestComponent implements ControlValueAccessor {
|
|
10
|
+
ngControl: NgControl;
|
|
11
|
+
_inputConfig: ICaInput;
|
|
12
|
+
inputElement: ElementRef;
|
|
13
|
+
selectedDropdownLabelColor: LabelColor | null;
|
|
14
|
+
template: string;
|
|
15
|
+
incorrectValue: boolean;
|
|
16
|
+
set inputConfig(config: ICaInput);
|
|
17
|
+
isFocusInput: boolean;
|
|
18
|
+
isEditInput: boolean;
|
|
19
|
+
isDropdownToggler: boolean;
|
|
20
|
+
isVisibleCommands: boolean;
|
|
21
|
+
isTouchedInput: boolean;
|
|
22
|
+
isCapsLockOn: boolean;
|
|
23
|
+
inputCommandsType: typeof InputCommandsType;
|
|
24
|
+
inputStringEnum: typeof InputStringEnum;
|
|
25
|
+
dropdownTemplateTypeEnum: typeof DropdownTemplateTypeEnum;
|
|
26
|
+
isTogglePassword: boolean;
|
|
27
|
+
get inputConfig(): ICaInput;
|
|
28
|
+
constructor(ngControl: NgControl);
|
|
29
|
+
get control(): import("@angular/forms").AbstractControl<any, any> | null;
|
|
30
|
+
registerOnChange(fn: any): void;
|
|
31
|
+
onChange(_: any): void;
|
|
32
|
+
onTouched: () => void;
|
|
33
|
+
writeValue(obj: InputChangeValue): void;
|
|
34
|
+
registerOnTouched(fn: () => void): void;
|
|
35
|
+
handleInput(event: Event): void;
|
|
36
|
+
clearInput(event: Event): void;
|
|
37
|
+
handleInputFocus(event: FocusEvent): void;
|
|
38
|
+
handleInputBlur(event: FocusEvent): void;
|
|
39
|
+
onPopoverShown(): void;
|
|
40
|
+
onPopoverHidden(): void;
|
|
41
|
+
onTogglePassword(event: Event): void;
|
|
42
|
+
handleCapsLock(status: boolean): void;
|
|
43
|
+
identify(index: number): number;
|
|
44
|
+
onPlaceholderIconEvent(event: Event): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTestComponent, [{ optional: true; self: true; }]>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTestComponent, "ca-input-test", never, { "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PipeTransform } from
|
|
2
|
-
import { AbstractControl } from
|
|
3
|
-
import { ICaInput } from
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { AbstractControl } from '@angular/forms';
|
|
3
|
+
import { ICaInput } from '../config/ca-input.config';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputContainerClassPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, isTouchedInput: boolean, inputConfig: ICaInput, value: string): {
|
|
@@ -3,7 +3,7 @@ import { ICaInput } from '../config/ca-input.config';
|
|
|
3
3
|
import { AbstractControl } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputDatetimePickerClassPipe implements PipeTransform {
|
|
6
|
-
transform(isFocusInput: boolean, isVisibleCommands: boolean, getSuperControl: AbstractControl<any, any> | null, inputConfig: ICaInput
|
|
6
|
+
transform(isFocusInput: boolean | undefined, isVisibleCommands: boolean, getSuperControl: AbstractControl<any, any> | null, inputConfig: Partial<ICaInput>, isTouchedInput: boolean | undefined, value: string): {
|
|
7
7
|
[key: string]: boolean | undefined | number;
|
|
8
8
|
};
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDatetimePickerClassPipe, never>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputPatternPipe implements PipeTransform {
|
|
4
|
+
transform(inputName: string, ...args: any[]): {
|
|
5
|
+
regex: RegExp;
|
|
6
|
+
restrictConsecutiveSpaces: boolean;
|
|
7
|
+
restrictConsecutiveDots: boolean;
|
|
8
|
+
restrictMultipeDots: boolean;
|
|
9
|
+
isDecimalAndDotOnly?: undefined;
|
|
10
|
+
} | {
|
|
11
|
+
regex: RegExp;
|
|
12
|
+
restrictMultipeDots: boolean;
|
|
13
|
+
isDecimalAndDotOnly: boolean;
|
|
14
|
+
restrictConsecutiveSpaces?: undefined;
|
|
15
|
+
restrictConsecutiveDots?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
regex: RegExp;
|
|
18
|
+
restrictConsecutiveSpaces: boolean;
|
|
19
|
+
restrictConsecutiveDots: boolean;
|
|
20
|
+
restrictMultipeDots: boolean;
|
|
21
|
+
isDecimalAndDotOnly: boolean;
|
|
22
|
+
};
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPatternPipe, never>;
|
|
24
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InputPatternPipe, "inputPattern", true>;
|
|
25
|
+
}
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
import { InputStringEnum } from '../../enums';
|
|
1
2
|
export declare class InputConstants {
|
|
2
3
|
static readonly textTransformConfigNames: string[];
|
|
4
|
+
static readonly businessNamesArray: InputStringEnum[];
|
|
5
|
+
static readonly producerNameArray: InputStringEnum[];
|
|
6
|
+
static readonly emergencyNameArray: InputStringEnum[];
|
|
7
|
+
static readonly parkingSlotArray: InputStringEnum[];
|
|
8
|
+
static readonly addressUnitArray: InputStringEnum[];
|
|
9
|
+
static readonly prefixArray: InputStringEnum[];
|
|
10
|
+
static readonly usernameArray: InputStringEnum[];
|
|
11
|
+
static readonly perStopArray: InputStringEnum[];
|
|
12
|
+
static readonly vinNumberArray: InputStringEnum[];
|
|
13
|
+
static readonly qtyArray: InputStringEnum[];
|
|
3
14
|
}
|