@annalib/anna-core 20.0.13 → 20.0.14
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/anna-core-shared-lib/models/anna-manage-users.model.mjs +8 -0
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +4 -2
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/annalib-anna-core.mjs +11 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +11 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-manage-users.model.d.ts +6 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -2430,6 +2430,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2430
2430
|
}]
|
|
2431
2431
|
}], ctorParameters: function () { return [{ type: AnnaDateTimeFormatService }, { type: AnnaSortService }]; } });
|
|
2432
2432
|
|
|
2433
|
+
var UserActivationStatus;
|
|
2434
|
+
(function (UserActivationStatus) {
|
|
2435
|
+
UserActivationStatus["activationEmailSent"] = "ActivationEmailSent";
|
|
2436
|
+
UserActivationStatus["activationEmailReSent"] = "ActivationEmailResent";
|
|
2437
|
+
UserActivationStatus["ResendActivationEmail"] = "ResendActivationEmail";
|
|
2438
|
+
UserActivationStatus["lastSignedIn"] = "LastSignedIn";
|
|
2439
|
+
})(UserActivationStatus || (UserActivationStatus = {}));
|
|
2440
|
+
|
|
2433
2441
|
// Angular import statements
|
|
2434
2442
|
//Add onChange push change detection
|
|
2435
2443
|
class AnnaSortComponent {
|
|
@@ -3508,6 +3516,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3508
3516
|
this.start = 0;
|
|
3509
3517
|
this.end = this.limit + this.start;
|
|
3510
3518
|
this.isNoDataToDisplaySubject$ = new BehaviorSubject(false);
|
|
3519
|
+
this.UserActivationStatus = UserActivationStatus;
|
|
3511
3520
|
this.textActionTooltip = [];
|
|
3512
3521
|
this.tooltipContainingTable = null;
|
|
3513
3522
|
this.tableBottomBorderClass = null;
|
|
@@ -4086,7 +4095,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
4086
4095
|
}
|
|
4087
4096
|
changesMadeInEditableInputBox(event, editedObject, pasteEvent) {
|
|
4088
4097
|
let enteredValue = pasteEvent ? event.clipboardData.getData('text') : event.key;
|
|
4089
|
-
if (event.keyCode != 8 &&
|
|
4098
|
+
if (event.keyCode != 8 && !(event.keyCode >= 37 && event.keyCode <= 40) &&
|
|
4090
4099
|
(!editedObject?.allowSpecialCharacters && !(/[`0-9.]/.test(enteredValue)) ||
|
|
4091
4100
|
(editedObject.isDecimalPointCheckRequired && editedObject.value.indexOf(".") >= 0
|
|
4092
4101
|
&& ((editedObject.value.length - ((editedObject.value.indexOf(".")) + 1)) >= editedObject.maxDecimalPointsAllowed)))) {
|
|
@@ -5767,5 +5776,5 @@ OrderSources.WOZ = "WOZ";
|
|
|
5767
5776
|
* Generated bundle index. Do not edit.
|
|
5768
5777
|
*/
|
|
5769
5778
|
|
|
5770
|
-
export { AllSelectedStatus, AnnaBuyerApprovalIconTemplateComponent, AnnaCalendarFilterComponent, AnnaColumnCheckboxFilterComponent, AnnaColumnDateRangeFilterComponent, AnnaColumnSliderFilterComponent, AnnaColumnTimeFilterComponent, AnnaConvertZeroOrNullOrUndefinedPipe, AnnaCoreModule, AnnaDateFormatterPipe, AnnaDateTimeFormatService, AnnaDeletedOrderIconTemplateComponent, AnnaFilterSearchedTextPipe, AnnaFilterService, AnnaFixedRowSizeTableVirtualScrollStrategy, AnnaFixedRowSizeTableVirtualScrollStrategyDirective, AnnaGlobalConfigService, AnnaGtHelperService, AnnaIconColumnComponent, AnnaLiveIconTemplateComponent, AnnaNoDataComponent, AnnaNonEditableGenericTableComponent, AnnaNotifyIconTemplateComponent, AnnaNumberFormatService, AnnaPayForPerformanceIconTemplateComponent, AnnaPersistingFilterService, AnnaRejectedIconTemplateComponent, AnnaReplaceCharPipe, AnnaSortComponent, AnnaSortService, AnnaTableVirtualScrollViewportComponent, AnnaTypeofDataPipe, AnnaVirtualTableDirective, AnnaWeekCalendarComponent, ClickableItem, Constants, Days, DigitOnlyDirective, ErrorCodes, FixedRowsPopupTableDirective, OrderSources, SortTypeEnum, TooltipModel, fixedSizeVirtualScrollStrategyFactory, radioButtonModel, showEllipsisTextOnHoverDirective, tooltipModelForColumnLevelFiltering };
|
|
5779
|
+
export { AllSelectedStatus, AnnaBuyerApprovalIconTemplateComponent, AnnaCalendarFilterComponent, AnnaColumnCheckboxFilterComponent, AnnaColumnDateRangeFilterComponent, AnnaColumnSliderFilterComponent, AnnaColumnTimeFilterComponent, AnnaConvertZeroOrNullOrUndefinedPipe, AnnaCoreModule, AnnaDateFormatterPipe, AnnaDateTimeFormatService, AnnaDeletedOrderIconTemplateComponent, AnnaFilterSearchedTextPipe, AnnaFilterService, AnnaFixedRowSizeTableVirtualScrollStrategy, AnnaFixedRowSizeTableVirtualScrollStrategyDirective, AnnaGlobalConfigService, AnnaGtHelperService, AnnaIconColumnComponent, AnnaLiveIconTemplateComponent, AnnaNoDataComponent, AnnaNonEditableGenericTableComponent, AnnaNotifyIconTemplateComponent, AnnaNumberFormatService, AnnaPayForPerformanceIconTemplateComponent, AnnaPersistingFilterService, AnnaRejectedIconTemplateComponent, AnnaReplaceCharPipe, AnnaSortComponent, AnnaSortService, AnnaTableVirtualScrollViewportComponent, AnnaTypeofDataPipe, AnnaVirtualTableDirective, AnnaWeekCalendarComponent, ClickableItem, Constants, Days, DigitOnlyDirective, ErrorCodes, FixedRowsPopupTableDirective, OrderSources, SortTypeEnum, TooltipModel, UserActivationStatus, fixedSizeVirtualScrollStrategyFactory, radioButtonModel, showEllipsisTextOnHoverDirective, tooltipModelForColumnLevelFiltering };
|
|
5771
5780
|
//# sourceMappingURL=annalib-anna-core.mjs.map
|