@eo-sdk/client 10.0.0-rc.3 → 10.0.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/app/eo-client/about-state/about-state.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/date/date.component.d.ts +1 -0
- package/app/eo-framework/form-elements/date/date.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts +2 -1
- package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts.map +1 -1
- package/esm2020/app/eo-client/about-state/about-state.component.mjs +3 -3
- package/esm2020/app/eo-framework/actions/actions/workflow-action/workflow/workflow.component.mjs +3 -3
- package/esm2020/app/eo-framework/form-elements/date/date.component.mjs +7 -5
- package/esm2020/app/eo-framework/form-elements/datetime-range/datetime-range.component.mjs +39 -24
- package/esm2020/app/eo-framework/grid/filters/datetime-filter.component.mjs +3 -3
- package/fesm2015/eo-sdk-client.mjs +50 -33
- package/fesm2015/eo-sdk-client.mjs.map +1 -1
- package/fesm2020/eo-sdk-client.mjs +50 -33
- package/fesm2020/eo-sdk-client.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -5278,13 +5278,15 @@ class DateComponent {
|
|
|
5278
5278
|
this.withTime = false;
|
|
5279
5279
|
this.readonly = false;
|
|
5280
5280
|
this.value = null;
|
|
5281
|
+
this.locale = this.translate.currentLang;
|
|
5281
5282
|
this.propagateChange = (_) => { };
|
|
5282
5283
|
this.validationChange = () => { };
|
|
5283
5284
|
this.datePipe = new LocaleDatePipe(translate);
|
|
5284
|
-
this._setLabels(this.
|
|
5285
|
+
this._setLabels(this.locale);
|
|
5285
5286
|
this._sub = this.translate.onLangChange.subscribe({
|
|
5286
5287
|
next: (lang) => {
|
|
5287
|
-
this.
|
|
5288
|
+
this.locale = lang.lang;
|
|
5289
|
+
this._setLabels(this.locale);
|
|
5288
5290
|
}
|
|
5289
5291
|
});
|
|
5290
5292
|
}
|
|
@@ -5323,7 +5325,7 @@ DateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
|
5323
5325
|
useExisting: forwardRef(() => DateComponent),
|
|
5324
5326
|
multi: true,
|
|
5325
5327
|
}
|
|
5326
|
-
], ngImport: i0, template: "<yvc-datepicker [calendar]=\"true\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"], dependencies: [{ kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.Datepicker, selector: "yvc-datepicker", inputs: ["calendar", "readonly", "hour12", "locale", "labels", "withTime", "onlyFutureDates", "minDate", "maxDate", "disabled"] }] });
|
|
5328
|
+
], ngImport: i0, template: "<yvc-datepicker [calendar]=\"true\" [locale]=\"locale\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"], dependencies: [{ kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.Datepicker, selector: "yvc-datepicker", inputs: ["calendar", "readonly", "hour12", "locale", "labels", "withTime", "onlyFutureDates", "minDate", "maxDate", "disabled"] }] });
|
|
5327
5329
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImport: i0, type: DateComponent, decorators: [{
|
|
5328
5330
|
type: Component,
|
|
5329
5331
|
args: [{ selector: 'eo-date', providers: [
|
|
@@ -5332,7 +5334,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
5332
5334
|
useExisting: forwardRef(() => DateComponent),
|
|
5333
5335
|
multi: true,
|
|
5334
5336
|
}
|
|
5335
|
-
], template: "<yvc-datepicker [calendar]=\"true\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"] }]
|
|
5337
|
+
], template: "<yvc-datepicker [calendar]=\"true\" [locale]=\"locale\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"] }]
|
|
5336
5338
|
}], ctorParameters: function () { return [{ type: i1.TranslateService }]; }, propDecorators: { withTime: [{
|
|
5337
5339
|
type: Input
|
|
5338
5340
|
}], readonly: [{
|
|
@@ -5367,26 +5369,7 @@ class DatetimeRangeComponent {
|
|
|
5367
5369
|
this.rangeForm.valueChanges.subscribe(() => this.onValueChange());
|
|
5368
5370
|
}
|
|
5369
5371
|
writeValue(value) {
|
|
5370
|
-
|
|
5371
|
-
let match = this.availableSearchOptions.find((o) => o.value === value.operator);
|
|
5372
|
-
this.searchOption = match ? match.value : this.availableSearchOptions[0].value;
|
|
5373
|
-
this.value = value;
|
|
5374
|
-
if (!value.secondValue) {
|
|
5375
|
-
this.rangeForm.patchValue({
|
|
5376
|
-
dateValue: value.firstValue ? new Date(value.firstValue) : null
|
|
5377
|
-
});
|
|
5378
|
-
}
|
|
5379
|
-
else {
|
|
5380
|
-
this.rangeForm.patchValue({
|
|
5381
|
-
dateValueFrom: value.firstValue ? new Date(value.firstValue) : null,
|
|
5382
|
-
dateValue: value.secondValue ? new Date(value.secondValue) : null
|
|
5383
|
-
});
|
|
5384
|
-
}
|
|
5385
|
-
}
|
|
5386
|
-
else {
|
|
5387
|
-
this.value = null;
|
|
5388
|
-
this.rangeForm.reset();
|
|
5389
|
-
}
|
|
5372
|
+
this._setValue(value);
|
|
5390
5373
|
}
|
|
5391
5374
|
registerOnChange(fn) {
|
|
5392
5375
|
this.propagateChange = fn;
|
|
@@ -5396,20 +5379,54 @@ class DatetimeRangeComponent {
|
|
|
5396
5379
|
onValueChange() {
|
|
5397
5380
|
let dateValue = this.formatDate(this.rangeForm.get('dateValue').value);
|
|
5398
5381
|
if (this.searchOption === SearchFilter.OPERATOR.INTERVAL_INCLUDE_BOTH) {
|
|
5399
|
-
let dateValueFrom = this.formatDate(this.rangeForm.get('dateValueFrom').value);
|
|
5382
|
+
let dateValueFrom = this.formatDate(this.rangeForm.get('dateValueFrom').value) || new Date().toISOString();
|
|
5400
5383
|
if (dateValueFrom || dateValue) {
|
|
5401
5384
|
this.isValid = this.rangeForm.valid && !!dateValueFrom && !!dateValue;
|
|
5402
5385
|
this.swapInputs = dateValueFrom && dateValue && dateValueFrom > dateValue;
|
|
5403
|
-
this.
|
|
5386
|
+
this._setValue(!this.isValid ? null : new RangeValue(this.searchOption, this.swapInputs ? dateValue : dateValueFrom, this.swapInputs ? dateValueFrom : dateValue));
|
|
5404
5387
|
}
|
|
5405
5388
|
}
|
|
5406
5389
|
else {
|
|
5407
5390
|
this.swapInputs = false;
|
|
5408
5391
|
this.isValid = this.rangeForm.valid;
|
|
5409
|
-
this.
|
|
5392
|
+
this._setValue(!this.isValid || !dateValue ? null : new RangeValue(this.searchOption, dateValue));
|
|
5410
5393
|
}
|
|
5411
5394
|
this.propagateChange(this.value);
|
|
5412
5395
|
}
|
|
5396
|
+
_setValue(value, emitEvent = false) {
|
|
5397
|
+
if (JSON.stringify(this.value) === JSON.stringify(value))
|
|
5398
|
+
return;
|
|
5399
|
+
if (value && value instanceof RangeValue && (value.firstValue || value.secondValue)) {
|
|
5400
|
+
let match = this.availableSearchOptions.find((o) => o.value === value.operator);
|
|
5401
|
+
this.searchOption = match ? match.value : this.availableSearchOptions[0].value;
|
|
5402
|
+
const fV = value.firstValue ? new Date(value.firstValue) : null;
|
|
5403
|
+
const sV = value.secondValue ? new Date(value.secondValue) : null;
|
|
5404
|
+
this.value = value;
|
|
5405
|
+
if (!value.secondValue) {
|
|
5406
|
+
if (JSON.stringify(this.rangeForm.value.dateValue) !== JSON.stringify(fV)) {
|
|
5407
|
+
this.rangeForm.patchValue({
|
|
5408
|
+
dateValue: fV
|
|
5409
|
+
}, { emitEvent });
|
|
5410
|
+
}
|
|
5411
|
+
}
|
|
5412
|
+
else {
|
|
5413
|
+
if (JSON.stringify(this.rangeForm.value.dateValueFrom) !== JSON.stringify(fV)) {
|
|
5414
|
+
this.rangeForm.patchValue({
|
|
5415
|
+
dateValueFrom: fV
|
|
5416
|
+
}, { emitEvent });
|
|
5417
|
+
}
|
|
5418
|
+
if (JSON.stringify(this.rangeForm.value.dateValue) !== JSON.stringify(sV)) {
|
|
5419
|
+
this.rangeForm.patchValue({
|
|
5420
|
+
dateValue: sV
|
|
5421
|
+
}, { emitEvent });
|
|
5422
|
+
}
|
|
5423
|
+
}
|
|
5424
|
+
}
|
|
5425
|
+
else {
|
|
5426
|
+
this.value = null;
|
|
5427
|
+
this.rangeForm.reset();
|
|
5428
|
+
}
|
|
5429
|
+
}
|
|
5413
5430
|
formatDate(value) {
|
|
5414
5431
|
return !value ? null :
|
|
5415
5432
|
this.withTime ? value.toISOString().replace(':00.000', '') : this.datePipe.transform(value, 'yyyy-MM-dd');
|
|
@@ -8880,10 +8897,10 @@ class WorkflowComponent {
|
|
|
8880
8897
|
}
|
|
8881
8898
|
}
|
|
8882
8899
|
WorkflowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.2", ngImport: i0, type: WorkflowComponent, deps: [{ token: i1.BpmService }, { token: PendingChangesService }, { token: i1.TranslateService }, { token: i1.NotificationsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8883
|
-
WorkflowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.2", type: WorkflowComponent, selector: "eo-workflow", inputs: { executableProcess: "executableProcess" }, viewQueries: [{ propertyName: "dialog", first: true, predicate: ["dialog"], descendants: true }, { propertyName: "bpmForm", first: true, predicate: ["bpmForm"], descendants: true }], ngImport: i0, template: "<eo-dialog [title]=\"headerTitle\"\n [subtitle]=\"headerDescription\"\n [visible]=\"true\"\n [dirtyCheck]=\"pendingTaskIds\"\n [minWidth]=\"1000\"\n [
|
|
8900
|
+
WorkflowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.2", type: WorkflowComponent, selector: "eo-workflow", inputs: { executableProcess: "executableProcess" }, viewQueries: [{ propertyName: "dialog", first: true, predicate: ["dialog"], descendants: true }, { propertyName: "bpmForm", first: true, predicate: ["bpmForm"], descendants: true }], ngImport: i0, template: "<eo-dialog [title]=\"headerTitle\"\n [subtitle]=\"headerDescription\"\n [visible]=\"true\"\n [dirtyCheck]=\"pendingTaskIds\"\n [minWidth]=\"1000\"\n [styleClass]=\"'process-form-dialog'\" #dialog>\n\n <section class=\"process-form form-container\">\n <div class=\"form\">\n <eo-object-form [formOptions]=\"formOptions\" #bpmForm\n (statusChanged)=\"onIndexDataChanged($event)\">\n </eo-object-form>\n </div>\n\n <div class=\"actions\">\n <div *ngIf=\"form?.invalid\" class=\"invalid\" translate>eo.object.indexdata.form.invalid</div>\n <eo-cta [active]=\"true\" class=\"cta-wrapper\">\n <button *ngIf=\"form?.dirty\" (click)=\"bpmForm.resetForm()\" class=\"button-reset\" translate>eo.object.indexdata.reset</button>\n <button (click)=\"cancel()\" class=\"button-cancel\" translate>eo.resubmission.cancel</button>\n <button (click)=\"saveForm()\" [disabled]=\"form?.invalid || processingRequest\" class=\"primary\" translate>eo.executable.processes.execute</button>\n </eo-cta>\n </div>\n\n </section>\n</eo-dialog>\n", styles: ["::ng-deep .process-form-dialog--content{display:flex;flex:1;flex-direction:column;min-height:0;min-width:0}::ng-deep .process-form-dialog--content .process-form{display:flex;flex:1;flex-direction:column;min-height:0;min-width:0}::ng-deep .process-form-dialog--content .process-form .form{overflow:auto;flex:1}::ng-deep .process-form-dialog--content .process-form .invalid{color:var(--color-error)}::ng-deep .process-form-dialog--content .process-form .actions{display:flex;flex:0;flex-direction:row;min-height:0;min-width:0;align-items:center;justify-content:flex-end;margin:0 var(--app-pane-padding) var(--app-pane-padding);min-height:3em}::ng-deep .process-form-dialog--content .process-form .actions button{white-space:nowrap}::ng-deep .process-form-dialog--content .process-form .actions eo-cta{display:flex;justify-content:flex-end}::ng-deep .process-form-dialog--content .process-form .actions eo-cta button:nth-child(odd){margin:0 5px}@media screen and (max-width: 800px){::ng-deep .process-form-dialog--content .process-form .actions{flex-direction:column;align-items:flex-end}}::ng-deep .eo-object-form>.core{padding:16px 16px 5px}::ng-deep .eo-object-form>.data{padding:0 20px;margin:0 5px}::ng-deep .eo-object-form>.data>eo-form-group>.form-element.o2mGroupStack{border-top:none}::ng-deep .eo-object-form>.data>eo-form-group>.form-element.o2mGroupStack>eo-form-group>.o2mGroup{border:1px solid rgba(var(--color-black-rgb),.1)}\n"], dependencies: [{ kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: EoDialogComponent, selector: "eo-dialog", inputs: ["hasPreviewFile", "title", "subtitle", "styleClass", "dirtyCheck", "minWidth", "minHeight", "height", "width", "focusOnShow", "align", "isFormTable", "showPreview", "visible"], outputs: ["onTogglePreview", "visibleChange", "hide", "show"] }, { kind: "component", type: ObjectFormComponent, selector: "eo-object-form", inputs: ["isInnerTableForm", "formOptions"], outputs: ["statusChanged", "onFormReady"] }, { kind: "component", type: CtaComponent, selector: "eo-cta", inputs: ["active"] }] });
|
|
8884
8901
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImport: i0, type: WorkflowComponent, decorators: [{
|
|
8885
8902
|
type: Component,
|
|
8886
|
-
args: [{ selector: 'eo-workflow', template: "<eo-dialog [title]=\"headerTitle\"\n [subtitle]=\"headerDescription\"\n [visible]=\"true\"\n [dirtyCheck]=\"pendingTaskIds\"\n [minWidth]=\"1000\"\n [
|
|
8903
|
+
args: [{ selector: 'eo-workflow', template: "<eo-dialog [title]=\"headerTitle\"\n [subtitle]=\"headerDescription\"\n [visible]=\"true\"\n [dirtyCheck]=\"pendingTaskIds\"\n [minWidth]=\"1000\"\n [styleClass]=\"'process-form-dialog'\" #dialog>\n\n <section class=\"process-form form-container\">\n <div class=\"form\">\n <eo-object-form [formOptions]=\"formOptions\" #bpmForm\n (statusChanged)=\"onIndexDataChanged($event)\">\n </eo-object-form>\n </div>\n\n <div class=\"actions\">\n <div *ngIf=\"form?.invalid\" class=\"invalid\" translate>eo.object.indexdata.form.invalid</div>\n <eo-cta [active]=\"true\" class=\"cta-wrapper\">\n <button *ngIf=\"form?.dirty\" (click)=\"bpmForm.resetForm()\" class=\"button-reset\" translate>eo.object.indexdata.reset</button>\n <button (click)=\"cancel()\" class=\"button-cancel\" translate>eo.resubmission.cancel</button>\n <button (click)=\"saveForm()\" [disabled]=\"form?.invalid || processingRequest\" class=\"primary\" translate>eo.executable.processes.execute</button>\n </eo-cta>\n </div>\n\n </section>\n</eo-dialog>\n", styles: ["::ng-deep .process-form-dialog--content{display:flex;flex:1;flex-direction:column;min-height:0;min-width:0}::ng-deep .process-form-dialog--content .process-form{display:flex;flex:1;flex-direction:column;min-height:0;min-width:0}::ng-deep .process-form-dialog--content .process-form .form{overflow:auto;flex:1}::ng-deep .process-form-dialog--content .process-form .invalid{color:var(--color-error)}::ng-deep .process-form-dialog--content .process-form .actions{display:flex;flex:0;flex-direction:row;min-height:0;min-width:0;align-items:center;justify-content:flex-end;margin:0 var(--app-pane-padding) var(--app-pane-padding);min-height:3em}::ng-deep .process-form-dialog--content .process-form .actions button{white-space:nowrap}::ng-deep .process-form-dialog--content .process-form .actions eo-cta{display:flex;justify-content:flex-end}::ng-deep .process-form-dialog--content .process-form .actions eo-cta button:nth-child(odd){margin:0 5px}@media screen and (max-width: 800px){::ng-deep .process-form-dialog--content .process-form .actions{flex-direction:column;align-items:flex-end}}::ng-deep .eo-object-form>.core{padding:16px 16px 5px}::ng-deep .eo-object-form>.data{padding:0 20px;margin:0 5px}::ng-deep .eo-object-form>.data>eo-form-group>.form-element.o2mGroupStack{border-top:none}::ng-deep .eo-object-form>.data>eo-form-group>.form-element.o2mGroupStack>eo-form-group>.o2mGroup{border:1px solid rgba(var(--color-black-rgb),.1)}\n"] }]
|
|
8887
8904
|
}], ctorParameters: function () { return [{ type: i1.BpmService }, { type: PendingChangesService }, { type: i1.TranslateService }, { type: i1.NotificationsService }]; }, propDecorators: { dialog: [{
|
|
8888
8905
|
type: ViewChild,
|
|
8889
8906
|
args: ['dialog']
|
|
@@ -11234,10 +11251,10 @@ class DatetimeFilterComponent extends DateComponent {
|
|
|
11234
11251
|
}
|
|
11235
11252
|
}
|
|
11236
11253
|
DatetimeFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.2", ngImport: i0, type: DatetimeFilterComponent, deps: [{ token: i1.TranslateService }, { token: i1.EventService }], target: i0.ɵɵFactoryTarget.Component });
|
|
11237
|
-
DatetimeFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.2", type: DatetimeFilterComponent, selector: "eo-datetime-custom", viewQueries: [{ propertyName: "eoDialog", first: true, predicate: EoDialogComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<yvc-datepicker [calendar]=\"true\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"], dependencies: [{ kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.Datepicker, selector: "yvc-datepicker", inputs: ["calendar", "readonly", "hour12", "locale", "labels", "withTime", "onlyFutureDates", "minDate", "maxDate", "disabled"] }] });
|
|
11254
|
+
DatetimeFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.2", type: DatetimeFilterComponent, selector: "eo-datetime-custom", viewQueries: [{ propertyName: "eoDialog", first: true, predicate: EoDialogComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<yvc-datepicker [calendar]=\"true\" [locale]=\"locale\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"], dependencies: [{ kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3$1.Datepicker, selector: "yvc-datepicker", inputs: ["calendar", "readonly", "hour12", "locale", "labels", "withTime", "onlyFutureDates", "minDate", "maxDate", "disabled"] }] });
|
|
11238
11255
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImport: i0, type: DatetimeFilterComponent, decorators: [{
|
|
11239
11256
|
type: Component,
|
|
11240
|
-
args: [{ selector: 'eo-datetime-custom', template: "<yvc-datepicker [calendar]=\"true\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"] }]
|
|
11257
|
+
args: [{ selector: 'eo-datetime-custom', template: "<yvc-datepicker [calendar]=\"true\" [locale]=\"locale\" [withTime]=\"withTime\" [labels]=\"labels\" [ngModelOptions]=\"{standalone: true}\"\n [(ngModel)]=\"value\" (ngModelChange)=\"onValueChange($event)\"></yvc-datepicker>", styles: [":host yvc-datepicker{border:0;outline:0;box-sizing:border-box}\n"] }]
|
|
11241
11258
|
}], ctorParameters: function () { return [{ type: i1.TranslateService }, { type: i1.EventService }]; }, propDecorators: { eoDialog: [{
|
|
11242
11259
|
type: ViewChild,
|
|
11243
11260
|
args: [EoDialogComponent]
|
|
@@ -21962,10 +21979,10 @@ class AboutStateComponent {
|
|
|
21962
21979
|
this.backend = backend;
|
|
21963
21980
|
this.userService = userService;
|
|
21964
21981
|
this.config = config;
|
|
21965
|
-
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/cdk", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/common", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/compiler", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/core", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/forms", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/router", "version": "15.2.2", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "10.0.0
|
|
21982
|
+
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/cdk", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/common", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/compiler", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/core", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/forms", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "15.2.2", "license": "MIT" }, { "name": "@angular/router", "version": "15.2.2", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "10.0.0", "license": "MIT" }, { "name": "@ngneat/until-destroy", "version": "10.0.0", "license": "MIT" }, { "name": "@ngx-pwa/local-storage", "version": "15.0.0", "license": "MIT" }, { "name": "@ngx-translate/core", "version": "14.0.0", "license": "MIT" }, { "name": "@types/lodash", "version": "4.14.88", "license": "MIT" }, { "name": "@yuuvis/components", "version": "0.0.50", "license": "MIT" }, { "name": "@yuuvis/widget-grid", "version": "0.4.6", "license": "MIT" }, { "name": "core-js", "version": "2.6.12", "license": "MIT" }, { "name": "file-saver", "version": "2.0.5", "license": "MIT" }, { "name": "font-awesome", "version": "4.7.0", "license": "(OFL-1.1 AND MIT)" }, { "name": "moment", "version": "2.29.4", "license": "MIT" }, { "name": "ngx-toastr", "version": "16.0.2", "license": "MIT" }, { "name": "rxjs", "version": "7.5.7", "license": "Apache-2.0" }, { "name": "tslib", "version": "2.6.1", "license": "0BSD" }, { "name": "zone.js", "version": "0.11.8", "license": "MIT" }];
|
|
21966
21983
|
this.ctrl = {
|
|
21967
21984
|
componentName: 'yuuvis® RAD client',
|
|
21968
|
-
componentVersion: '10.0.0
|
|
21985
|
+
componentVersion: '10.0.0',
|
|
21969
21986
|
productName: '',
|
|
21970
21987
|
productVersion: ''
|
|
21971
21988
|
};
|