@bizdoc/core 3.3.17 → 3.3.18
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/fesm2022/bizdoc-core.mjs +4 -4
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/package.json +1 -1
- /package/assets/system/{Azure.svg → azure.svg} +0 -0
- /package/assets/system/{Hadoop.svg → hadoop.svg} +0 -0
- /package/assets/system/{QAD.svg → qad.svg} +0 -0
- /package/assets/system/{Workday.svg → workday.svg} +0 -0
package/fesm2022/bizdoc-core.mjs
CHANGED
@@ -6696,8 +6696,8 @@ const FAMILY_SVG = {
|
|
6696
6696
|
'ActiveDirectory': 'windows.svg',
|
6697
6697
|
'Amazon': 'amazon.svg',
|
6698
6698
|
'Google': 'google.svg',
|
6699
|
-
'Hadoop': '
|
6700
|
-
'Workday': '
|
6699
|
+
'Hadoop': 'hadoop.svg',
|
6700
|
+
'Workday': 'workday.svg',
|
6701
6701
|
'Okta': 'okta.svg',
|
6702
6702
|
'PingOne': 'ping-identity.svg'
|
6703
6703
|
};
|
@@ -8000,11 +8000,11 @@ class CubeFilterComponent {
|
|
8000
8000
|
this._destroy.complete();
|
8001
8001
|
}
|
8002
8002
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: CubeFilterComponent, deps: [{ token: CubeService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1$3.FormBuilder }, { token: SessionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
8003
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: CubeFilterComponent, isStandalone: false, selector: "bizdoc-cube-filter", inputs: { cube: "cube", exclude: "exclude", include: "include", axes: "axes", autofocus: "autofocus" }, outputs: { axesChange: "axesChange" }, usesOnChanges: true, ngImport: i0, template: "<form [formGroup]=\"form\">\r\n
|
8003
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: CubeFilterComponent, isStandalone: false, selector: "bizdoc-cube-filter", inputs: { cube: "cube", exclude: "exclude", include: "include", axes: "axes", autofocus: "autofocus" }, outputs: { axesChange: "axesChange" }, usesOnChanges: true, ngImport: i0, template: "<form [formGroup]=\"form\">\r\n @for (a of visibleAxes; track a) {\r\n <mat-form-field [attr.data-help]=\"'axis-'+a.name\" subscriptSizing=\"dynamic\">\r\n @switch (a.selectionMode) {\r\n @case ('Pattern') {\r\n <input matInput autocomplete=\"off\" spellcheck=\"false\"\r\n [pattern]=\"pattern\" autofocus\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n @if (form.controls[a.name].invalid) {\r\n <mat-error>{{'AxisPatternErr' |translate}}</mat-error>\r\n }\r\n }\r\n @case ('Search') {\r\n <input matInput autocomplete=\"off\" spellcheck=\"false\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"displayValue\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n @for (r of sources[a.name] | async | filterBy : 'value' : inp.value | slice:0:50; track r) {\r\n <mat-option [value]=\"r\">{{r.value}}</mat-option>\r\n }\r\n </mat-autocomplete>\r\n @if (inp.value) {\r\n <button mat-icon-button matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n }\r\n @if (form.controls[a.name].invalid) {\r\n <mat-error>{{'AxisPatternErr' |translate}}</mat-error>\r\n }\r\n }\r\n @default {\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\">\r\n @if (a.selectionMode !== 'Multiple') {\r\n <mat-option>{{'All' | translate}}</mat-option>\r\n }\r\n @for (r of sources[a.name] | async; track r) {\r\n <mat-option [value]=\"r.key\">{{r.value}}</mat-option>\r\n }\r\n </mat-select>\r\n }\r\n }\r\n </mat-form-field>\r\n }\r\n</form>\r\n", styles: ["form{padding:4px;flex-flow:column wrap;box-sizing:border-box;gap:4px;display:flex}form>*{flex:1 1 100%;box-sizing:border-box}\n"], dependencies: [{ kind: "directive", type: i1$3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$3.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i1$3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i4$1.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i2$5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4$1.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "component", type: i3$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i3$1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i4$2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i8.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: i3$3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "component", type: i10.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i9.AsyncPipe, name: "async" }, { kind: "pipe", type: i9.SlicePipe, name: "slice" }, { kind: "pipe", type: TranslatePipe, name: "translate" }, { kind: "pipe", type: FilterPipe, name: "filterBy" }] }); }
|
8004
8004
|
}
|
8005
8005
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: CubeFilterComponent, decorators: [{
|
8006
8006
|
type: Component,
|
8007
|
-
args: [{ standalone: false, selector: 'bizdoc-cube-filter', template: "<form [formGroup]=\"form\">\r\n
|
8007
|
+
args: [{ standalone: false, selector: 'bizdoc-cube-filter', template: "<form [formGroup]=\"form\">\r\n @for (a of visibleAxes; track a) {\r\n <mat-form-field [attr.data-help]=\"'axis-'+a.name\" subscriptSizing=\"dynamic\">\r\n @switch (a.selectionMode) {\r\n @case ('Pattern') {\r\n <input matInput autocomplete=\"off\" spellcheck=\"false\"\r\n [pattern]=\"pattern\" autofocus\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n @if (form.controls[a.name].invalid) {\r\n <mat-error>{{'AxisPatternErr' |translate}}</mat-error>\r\n }\r\n }\r\n @case ('Search') {\r\n <input matInput autocomplete=\"off\" spellcheck=\"false\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"displayValue\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n @for (r of sources[a.name] | async | filterBy : 'value' : inp.value | slice:0:50; track r) {\r\n <mat-option [value]=\"r\">{{r.value}}</mat-option>\r\n }\r\n </mat-autocomplete>\r\n @if (inp.value) {\r\n <button mat-icon-button matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n }\r\n @if (form.controls[a.name].invalid) {\r\n <mat-error>{{'AxisPatternErr' |translate}}</mat-error>\r\n }\r\n }\r\n @default {\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\">\r\n @if (a.selectionMode !== 'Multiple') {\r\n <mat-option>{{'All' | translate}}</mat-option>\r\n }\r\n @for (r of sources[a.name] | async; track r) {\r\n <mat-option [value]=\"r.key\">{{r.value}}</mat-option>\r\n }\r\n </mat-select>\r\n }\r\n }\r\n </mat-form-field>\r\n }\r\n</form>\r\n", styles: ["form{padding:4px;flex-flow:column wrap;box-sizing:border-box;gap:4px;display:flex}form>*{flex:1 1 100%;box-sizing:border-box}\n"] }]
|
8008
8008
|
}], ctorParameters: () => [{ type: CubeService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.FormBuilder }, { type: SessionService }], propDecorators: { cube: [{
|
8009
8009
|
type: Input
|
8010
8010
|
}], exclude: [{
|