ids-enterprise-ng 19.6.13 → 19.6.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.
|
@@ -7777,12 +7777,12 @@ class SohoContextualActionPanelService {
|
|
|
7777
7777
|
* The panel won't necessarily be open yet, see the panel ref Api for further methods.
|
|
7778
7778
|
*
|
|
7779
7779
|
* @param component - the type of the component to instantiate; must not be null.
|
|
7780
|
-
* @param
|
|
7780
|
+
* @param _parent - The parent container; obsolete but parameter kept for backwards API compatibility. Has no effect.
|
|
7781
7781
|
* @param options - the default options for the panel; optional.
|
|
7782
7782
|
*
|
|
7783
7783
|
* @return the panel reference.
|
|
7784
7784
|
*/
|
|
7785
|
-
contextualactionpanel(component,
|
|
7785
|
+
contextualactionpanel(component, _parent, options) {
|
|
7786
7786
|
ArgumentHelper.checkNotNull('component', component);
|
|
7787
7787
|
ArgumentHelper.checkNotNull('parent', parent);
|
|
7788
7788
|
return new SohoContextualActionPanelRef(this.appRef, this.componentFactoryResolver, this.injector, this.ngZone, options, component);
|
|
@@ -11504,8 +11504,8 @@ class SohoDatePickerComponent extends BaseControlValueAccessor {
|
|
|
11504
11504
|
// in the control.
|
|
11505
11505
|
if (typeof value === 'string' && value.length > 0 && this._options.range?.useRange) {
|
|
11506
11506
|
const dates = value.split('-');
|
|
11507
|
-
const startValue = Soho.Locale.parseDate(dates[0].trim()
|
|
11508
|
-
const endValue = Soho.Locale.parseDate(dates[1].trim()
|
|
11507
|
+
const startValue = Soho.Locale.parseDate(dates[0].trim(), { pattern: this._options?.dateFormat });
|
|
11508
|
+
const endValue = Soho.Locale.parseDate(dates[1].trim(), { pattern: this._options?.dateFormat });
|
|
11509
11509
|
this.datepicker.settings.range.start = startValue;
|
|
11510
11510
|
this.datepicker.settings.range.end = endValue;
|
|
11511
11511
|
this.datepicker.setValue(startValue, false);
|
|
@@ -13413,6 +13413,7 @@ class ExpandableAreaComponent {
|
|
|
13413
13413
|
id: this.id,
|
|
13414
13414
|
disabled: this.disabled,
|
|
13415
13415
|
expanded: !this.closed,
|
|
13416
|
+
trigger: this.trigger
|
|
13416
13417
|
});
|
|
13417
13418
|
this.expandablearea = this.jQueryElement.data('expandablearea');
|
|
13418
13419
|
// Check initial values (since constructor doesn't handle it)
|
|
@@ -13544,7 +13545,7 @@ class ExpandableAreaComponent {
|
|
|
13544
13545
|
this.ngZone.run(() => this.aftercollapse.emit(event));
|
|
13545
13546
|
}
|
|
13546
13547
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ExpandableAreaComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13547
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ExpandableAreaComponent, isStandalone: false, selector: "soho-expandable-area", inputs: { id: ["soho-expandable-area", "id"], disabled: "disabled", closed: "closed", toggle: "toggle" }, outputs: { beforeexpand: "beforeexpand", beforecollapse: "beforecollapse", expand: "expand", collapse: "collapse", afterexpand: "afterexpand", aftercollapse: "aftercollapse" }, queries: [{ propertyName: "header", first: true, predicate: i0.forwardRef(() => ExpandableHeaderComponent), descendants: true, static: true }, { propertyName: "footer", first: true, predicate: i0.forwardRef(() => ExpandableFooterComponent), descendants: true, static: true }, { propertyName: "panes", predicate: i0.forwardRef(() => ExpandablePaneComponent) }], ngImport: i0, template: "<div [ngClass]=\"expandableAreaClasses\">\n\n <div *ngIf=\"header\" [ngClass]=\"headerClasses\">\n <ng-content select=\"soho-expandable-header\"></ng-content>\n </div>\n\n <div *ngIf=\"hasFixedPane\" [ngClass]=\"visiblePaneClasses\">\n <div class=\"content\">\n <ng-content select=\"soho-expandable-pane[fixed=true]\"></ng-content>\n </div>\n </div>\n\n <div [ngClass]=\"paneClasses\">\n <div class=\"content\">\n <ng-content select=\"soho-expandable-pane\"></ng-content>\n </div>\n </div>\n\n <div *ngIf=\"footer\" [ngClass]=\"footerClasses\">\n <ng-content select=\"soho-expandable-footer\"></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13548
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: ExpandableAreaComponent, isStandalone: false, selector: "soho-expandable-area", inputs: { id: ["soho-expandable-area", "id"], trigger: "trigger", disabled: "disabled", closed: "closed", toggle: "toggle" }, outputs: { beforeexpand: "beforeexpand", beforecollapse: "beforecollapse", expand: "expand", collapse: "collapse", afterexpand: "afterexpand", aftercollapse: "aftercollapse" }, queries: [{ propertyName: "header", first: true, predicate: i0.forwardRef(() => ExpandableHeaderComponent), descendants: true, static: true }, { propertyName: "footer", first: true, predicate: i0.forwardRef(() => ExpandableFooterComponent), descendants: true, static: true }, { propertyName: "panes", predicate: i0.forwardRef(() => ExpandablePaneComponent) }], ngImport: i0, template: "<div [ngClass]=\"expandableAreaClasses\">\n\n <div *ngIf=\"header\" [ngClass]=\"headerClasses\">\n <ng-content select=\"soho-expandable-header\"></ng-content>\n </div>\n\n <div *ngIf=\"hasFixedPane\" [ngClass]=\"visiblePaneClasses\">\n <div class=\"content\">\n <ng-content select=\"soho-expandable-pane[fixed=true]\"></ng-content>\n </div>\n </div>\n\n <div [ngClass]=\"paneClasses\">\n <div class=\"content\">\n <ng-content select=\"soho-expandable-pane\"></ng-content>\n </div>\n </div>\n\n <div *ngIf=\"footer\" [ngClass]=\"footerClasses\">\n <ng-content select=\"soho-expandable-footer\"></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13548
13549
|
}
|
|
13549
13550
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ExpandableAreaComponent, decorators: [{
|
|
13550
13551
|
type: Component,
|
|
@@ -13552,6 +13553,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
13552
13553
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }], propDecorators: { id: [{
|
|
13553
13554
|
type: Input,
|
|
13554
13555
|
args: ['soho-expandable-area']
|
|
13556
|
+
}], trigger: [{
|
|
13557
|
+
type: Input
|
|
13555
13558
|
}], disabled: [{
|
|
13556
13559
|
type: Input
|
|
13557
13560
|
}], closed: [{
|
|
@@ -31392,7 +31395,7 @@ class SohoVersionInitializerService {
|
|
|
31392
31395
|
* Initializes the version attribute.
|
|
31393
31396
|
*/
|
|
31394
31397
|
initialize() {
|
|
31395
|
-
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '19.6.
|
|
31398
|
+
$('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '19.6.15');
|
|
31396
31399
|
}
|
|
31397
31400
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SohoVersionInitializerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
31398
31401
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SohoVersionInitializerService, providedIn: 'root' }); }
|