ngx-vector-components 5.43.0 → 5.45.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/CHANGELOG.md +13 -0
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/esm2022/lib/utils/validation.util.mjs +22 -1
- package/fesm2022/ngx-vector-components.mjs +23 -0
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/models/profile.model.d.ts +3 -1
- package/lib/utils/validation.util.d.ts +1 -0
- package/package.json +1 -1
|
@@ -450,5 +450,7 @@ export declare enum ProfileModuleActionType {
|
|
|
450
450
|
SHOW_WAITING_LINES = "Show Waiting Lines",
|
|
451
451
|
CALL_DRIVER_WAITING_LINES = "Call Driver Waiting Lines",
|
|
452
452
|
MONITORING_HANDLE_EVENT = "Monitoring Handle Event",
|
|
453
|
-
MONITORING_JUSTIFY_EVENT = "Monitoring Justify Event"
|
|
453
|
+
MONITORING_JUSTIFY_EVENT = "Monitoring Justify Event",
|
|
454
|
+
APPROVE_POOL_BIDDING_CLOSURE = "Aprovar Encerramento Pool Bidding",
|
|
455
|
+
APPROVE_POOL_BIDDING_LESSER_VALUE = "Aprovar Bidding Pool Com Valor Maior Que Menor Valor"
|
|
454
456
|
}
|
|
@@ -14,4 +14,5 @@ export declare class ValidationUtil {
|
|
|
14
14
|
static notSequentialNumbers(length: number): ValidatorFn;
|
|
15
15
|
static firstLetterIsUppercase(control: AbstractControl): ValidationErrors | null;
|
|
16
16
|
static containsLettersAndNumbers(control: AbstractControl): ValidationErrors | null;
|
|
17
|
+
static greaterThanTo(lowerControlName: string): ValidatorFn;
|
|
17
18
|
}
|