@sumaris-net/ngx-components 2.5.15-rc2 → 2.5.15
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/src/app/shared/validator/validators.mjs +2 -2
- package/esm2020/src/app/social/job/progression/job-progression.component.mjs +1 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +1 -3
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +1 -3
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/social/job/progression/job-progression.component.d.ts +1 -3
|
@@ -3672,7 +3672,7 @@ class SharedValidators {
|
|
|
3672
3672
|
}
|
|
3673
3673
|
static validDate(control) {
|
|
3674
3674
|
const value = control.value;
|
|
3675
|
-
const date = !value || isMoment(value) ? value : DateUtils.moment(value, DATE_ISO_PATTERN);
|
|
3675
|
+
const date = !value || isMoment(value) ? value : DateUtils.moment(value, DATE_ISO_PATTERN, true);
|
|
3676
3676
|
if (date && (!date.isValid() || date.year() < 1900)) {
|
|
3677
3677
|
return { validDate: true };
|
|
3678
3678
|
}
|
|
@@ -33026,8 +33026,6 @@ class JobProgressionComponent {
|
|
|
33026
33026
|
constructor() {
|
|
33027
33027
|
this.showName = true;
|
|
33028
33028
|
}
|
|
33029
|
-
ngOnInit() {
|
|
33030
|
-
}
|
|
33031
33029
|
}
|
|
33032
33030
|
JobProgressionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: JobProgressionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
33033
33031
|
JobProgressionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: JobProgressionComponent, selector: "app-job-progression-component", inputs: { jobProgression: "jobProgression", showName: "showName" }, ngImport: i0, template: "<ion-item class=\"ion-item-job-progression\">\n <ion-grid *ngIf=\"jobProgression\" class=\"ion-no-margin\">\n <ion-row *ngIf=\"showName\" class=\"name\">\n <ion-col>\n {{jobProgression.name}}\n </ion-col>\n </ion-row>\n <ion-row class=\"message\">\n <ion-col>\n {{jobProgression.message}}\n </ion-col>\n </ion-row>\n <ion-row class=\"progress-bar\">\n <ion-col>\n <ion-progress-bar\n [value]=\"jobProgression.total > 0 ? jobProgression.current / jobProgression.total : undefined\"\n [type]=\"jobProgression.total > 0 ? 'determinate' : 'indeterminate'\">\n </ion-progress-bar>\n </ion-col>\n </ion-row>\n </ion-grid>\n</ion-item>\n", styles: [".ion-item-job-progression{font-size:.9em}.ion-item-job-progression .message{font-style:italic}.ion-item-job-progression .progress-bar{margin-top:5px;margin-bottom:5px}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1.IonCol, selector: "ion-col", inputs: ["offset", "offsetLg", "offsetMd", "offsetSm", "offsetXl", "offsetXs", "pull", "pullLg", "pullMd", "pullSm", "pullXl", "pullXs", "push", "pushLg", "pushMd", "pushSm", "pushXl", "pushXs", "size", "sizeLg", "sizeMd", "sizeSm", "sizeXl", "sizeXs"] }, { kind: "component", type: i1.IonGrid, selector: "ion-grid", inputs: ["fixed"] }, { kind: "component", type: i1.IonItem, selector: "ion-item", inputs: ["button", "color", "counter", "counterFormatter", "detail", "detailIcon", "disabled", "download", "fill", "href", "lines", "mode", "rel", "routerAnimation", "routerDirection", "shape", "target", "type"] }, { kind: "component", type: i1.IonProgressBar, selector: "ion-progress-bar", inputs: ["buffer", "color", "mode", "reversed", "type", "value"] }, { kind: "component", type: i1.IonRow, selector: "ion-row" }] });
|