@tetacom/ng-components 1.1.17 → 1.1.19
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/assets/icons.svg +726 -950
- package/component/property-grid/property-grid/property-grid-group/property-grid-group.component.d.ts +10 -7
- package/component/property-grid/property-grid/property-grid-item/property-grid-item.component.d.ts +8 -8
- package/component/property-grid/property-grid/property-grid.component.d.ts +3 -4
- package/component/table/contract/i-cell-instance.d.ts +4 -0
- package/component/table/contract/table-column.d.ts +3 -9
- package/component/table/service/table.service.d.ts +0 -2
- package/component/table/table-head/visibility-dropdown-tab/visibility-dropdown-tab.component.d.ts +6 -7
- package/component/three/public-api.d.ts +1 -0
- package/component/three/three-chart/axes-3d/axes-3d.component.d.ts +1 -0
- package/component/three/three-chart/canvas/canvas.component.d.ts +11 -0
- package/component/three/three-chart/directive/canvas-3d-host.d.ts +19 -0
- package/component/three/three-chart/directive/public-api.d.ts +1 -0
- package/component/three/three-chart/service/chart-3d.service.d.ts +0 -1
- package/component/three/three-chart/three-chart.component.d.ts +4 -1
- package/esm2022/component/property-grid/property-grid/property-grid-group/property-grid-group.component.mjs +32 -11
- package/esm2022/component/property-grid/property-grid/property-grid-item/property-grid-item.component.mjs +15 -10
- package/esm2022/component/property-grid/property-grid/property-grid.component.mjs +10 -5
- package/esm2022/component/table/base/cell-component-base.mjs +4 -3
- package/esm2022/component/table/contract/i-cell-instance.mjs +1 -1
- package/esm2022/component/table/contract/table-column.mjs +1 -7
- package/esm2022/component/table/service/table.service.mjs +6 -19
- package/esm2022/component/table/table-head/visibility-dropdown-tab/visibility-dropdown-tab.component.mjs +10 -12
- package/esm2022/component/three/public-api.mjs +2 -1
- package/esm2022/component/three/three-chart/axes-3d/axes-3d.component.mjs +10 -7
- package/esm2022/component/three/three-chart/canvas/canvas.component.mjs +24 -0
- package/esm2022/component/three/three-chart/directive/canvas-3d-host.mjs +49 -0
- package/esm2022/component/three/three-chart/directive/public-api.mjs +2 -1
- package/esm2022/component/three/three-chart/scene/scene.component.mjs +3 -3
- package/esm2022/component/three/three-chart/service/chart-3d.service.mjs +4 -9
- package/esm2022/component/three/three-chart/three-chart.component.mjs +8 -5
- package/esm2022/util/bool-or-func.mjs +13 -0
- package/esm2022/util/is-function.mjs +4 -0
- package/esm2022/util/public-api.mjs +4 -2
- package/fesm2022/tetacom-ng-components.mjs +154 -70
- package/fesm2022/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
- package/util/bool-or-func.d.ts +1 -0
- package/util/is-function.d.ts +1 -0
- package/util/public-api.d.ts +3 -1
|
@@ -6934,6 +6934,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImpor
|
|
|
6934
6934
|
}]
|
|
6935
6935
|
}] });
|
|
6936
6936
|
|
|
6937
|
+
function isFunction(obj) {
|
|
6938
|
+
return !!(obj && obj?.constructor && obj?.call && obj?.apply);
|
|
6939
|
+
}
|
|
6940
|
+
|
|
6941
|
+
function boolOrFuncCallback(variable) {
|
|
6942
|
+
return (args) => {
|
|
6943
|
+
if (typeof variable === 'boolean') {
|
|
6944
|
+
return variable;
|
|
6945
|
+
}
|
|
6946
|
+
else if (isFunction(variable)) {
|
|
6947
|
+
return variable(args);
|
|
6948
|
+
}
|
|
6949
|
+
return true;
|
|
6950
|
+
};
|
|
6951
|
+
}
|
|
6952
|
+
|
|
6937
6953
|
class FormsUtil {
|
|
6938
6954
|
static validateAllFormFields(formGroup) {
|
|
6939
6955
|
formGroup.updateValueAndValidity();
|
|
@@ -7144,7 +7160,7 @@ class PropertyGridItemComponent {
|
|
|
7144
7160
|
item;
|
|
7145
7161
|
itemTemplates;
|
|
7146
7162
|
get template() {
|
|
7147
|
-
return this.itemTemplates.find(
|
|
7163
|
+
return this.itemTemplates.find(item => item.name === this.column.name);
|
|
7148
7164
|
}
|
|
7149
7165
|
get formGroup() {
|
|
7150
7166
|
if (this._formGroup instanceof FormGroup) {
|
|
@@ -7155,6 +7171,12 @@ class PropertyGridItemComponent {
|
|
|
7155
7171
|
}
|
|
7156
7172
|
return null;
|
|
7157
7173
|
}
|
|
7174
|
+
get editable() {
|
|
7175
|
+
return boolOrFuncCallback(this.column.editable)({
|
|
7176
|
+
column: this.column,
|
|
7177
|
+
row: this.formGroup?.getRawValue(),
|
|
7178
|
+
});
|
|
7179
|
+
}
|
|
7158
7180
|
horizontal;
|
|
7159
7181
|
controlValueChange = new EventEmitter();
|
|
7160
7182
|
align = Align;
|
|
@@ -7198,8 +7220,6 @@ class PropertyGridItemComponent {
|
|
|
7198
7220
|
});
|
|
7199
7221
|
}
|
|
7200
7222
|
}
|
|
7201
|
-
ngOnInit() {
|
|
7202
|
-
}
|
|
7203
7223
|
ngOnDestroy() {
|
|
7204
7224
|
this._alive = false;
|
|
7205
7225
|
this._formSub?.unsubscribe();
|
|
@@ -7210,7 +7230,7 @@ class PropertyGridItemComponent {
|
|
|
7210
7230
|
this._formSub?.unsubscribe();
|
|
7211
7231
|
this._formSub = this.formGroup?.controls[this.column.name]?.valueChanges
|
|
7212
7232
|
.pipe(takeWhile(() => this._alive))
|
|
7213
|
-
.subscribe(
|
|
7233
|
+
.subscribe(_ => {
|
|
7214
7234
|
this.controlValueChange.emit({
|
|
7215
7235
|
id: _,
|
|
7216
7236
|
name: this.column.name,
|
|
@@ -7219,11 +7239,11 @@ class PropertyGridItemComponent {
|
|
|
7219
7239
|
}
|
|
7220
7240
|
}
|
|
7221
7241
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridItemComponent, deps: [{ token: i1$2.TranslocoService }, { token: i3.ControlContainer, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
7222
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridItemComponent, selector: "teta-property-grid-item", inputs: { column: "column", hideNonEditable: "hideNonEditable", dict: "dict", decimalPart: "decimalPart", item: "item", itemTemplates: "itemTemplates", horizontal: "horizontal" }, outputs: { controlValueChange: "controlValueChange" }, usesOnChanges: true, ngImport: i0, template: "<teta-input [label]=\"caption\"\n [hint]=\"column.hint\"\n [formGroup]=\"formGroup\"\n [horizontal]=\"horizontal\"\n [required]=\"column.required\"\n *ngIf=\"
|
|
7242
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridItemComponent, selector: "teta-property-grid-item", inputs: { column: "column", hideNonEditable: "hideNonEditable", dict: "dict", decimalPart: "decimalPart", item: "item", itemTemplates: "itemTemplates", horizontal: "horizontal" }, outputs: { controlValueChange: "controlValueChange" }, usesOnChanges: true, ngImport: i0, template: "<teta-input [label]=\"caption\"\n [hint]=\"column.hint\"\n [formGroup]=\"formGroup\"\n [horizontal]=\"horizontal\"\n [required]=\"column.required\"\n *ngIf=\"editable || !hideNonEditable\">\n <ng-container *ngIf=\"template; else default\">\n <ng-container *ngTemplateOutlet=\"template.template;context: {$implicit: formGroup?.get(column.name)}\"></ng-container>\n </ng-container>\n <ng-template #default>\n <ng-container [ngSwitch]=\"column.filterType\"\n *ngIf=\"formGroup?.get(column.name)\">\n <teta-select class=\"row_auto\"\n *ngSwitchCase=\"filterTypeEnum.list\"\n [searchRef]=\"getDict()?.length > 10 ? 'name' : ''\"\n [allowNull]=\"!column.required\"\n [appendToBody]=\"true\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"\n [options]=\"getDict()\"\n [valueRef]=\"'id'\"\n [textRef]=\"'name'\"\n [multiple]=\"false\"></teta-select>\n <teta-date-picker *ngSwitchCase=\"filterTypeEnum.date\"\n class=\"row_auto\"\n [appendToBody]=\"true\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"></teta-date-picker>\n <teta-toggle *ngSwitchCase=\"filterTypeEnum.boolean\"\n [formControlName]=\"column.name\">\n {{column.caption}}\n </teta-toggle>\n <teta-text-field class=\"row_auto\"\n *ngSwitchDefault\n [decimalPart]=\"column.filterType === filterTypeEnum.number ? decimalPart : null\"\n [onlyNumber]=\"column.filterType === filterTypeEnum.number\"\n [placeholder]=\"column.caption\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"></teta-text-field>\n </ng-container>\n </ng-template>\n <div *ngIf=\"controlIsInvalid(column.name)\"\n ngProjectAs=\"message\"\n class=\"color-red-50\">\n {{getError(column)}}\n </div>\n</teta-input>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "component", type: DatePickerComponent, selector: "teta-date-picker", inputs: ["date", "locale", "showTime", "minDate", "maxDate", "invalid", "disabled", "align", "verticalAlign", "viewType", "appendToBody", "backdrop", "allowNull", "firstDayOfWeek", "disabledDates", "disabledPeriods", "disabledDays", "minYearDate", "maxYearDate"], outputs: ["selectDate"] }, { kind: "component", type: SelectComponent, selector: "teta-select", inputs: ["multiple", "options", "invalid", "align", "verticalAlign", "autoClose", "autoCloseIgnore", "disabled", "itemSize", "virtual", "icon", "placeholder", "appendToBody", "allowNull", "viewType", "notFoundText", "valueRef", "textRef", "searchRef"] }, { kind: "component", type: InputComponent, selector: "teta-input", inputs: ["label", "hint", "viewType", "horizontal", "required"] }, { kind: "component", type: TextFieldComponent, selector: "teta-text-field", inputs: ["placeholder", "leftIconName", "disabled", "onlyNumber", "decimalPart", "invalid"] }, { kind: "component", type: ToggleComponent, selector: "teta-toggle", inputs: ["palette", "noLabel", "disabled"] }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], viewProviders: [FormsUtil.formProvider] });
|
|
7223
7243
|
}
|
|
7224
7244
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridItemComponent, decorators: [{
|
|
7225
7245
|
type: Component,
|
|
7226
|
-
args: [{ selector: 'teta-property-grid-item', viewProviders: [FormsUtil.formProvider], template: "<teta-input [label]=\"caption\"\n [hint]=\"column.hint\"\n [formGroup]=\"formGroup\"\n [horizontal]=\"horizontal\"\n [required]=\"column.required\"\n *ngIf=\"
|
|
7246
|
+
args: [{ selector: 'teta-property-grid-item', viewProviders: [FormsUtil.formProvider], template: "<teta-input [label]=\"caption\"\n [hint]=\"column.hint\"\n [formGroup]=\"formGroup\"\n [horizontal]=\"horizontal\"\n [required]=\"column.required\"\n *ngIf=\"editable || !hideNonEditable\">\n <ng-container *ngIf=\"template; else default\">\n <ng-container *ngTemplateOutlet=\"template.template;context: {$implicit: formGroup?.get(column.name)}\"></ng-container>\n </ng-container>\n <ng-template #default>\n <ng-container [ngSwitch]=\"column.filterType\"\n *ngIf=\"formGroup?.get(column.name)\">\n <teta-select class=\"row_auto\"\n *ngSwitchCase=\"filterTypeEnum.list\"\n [searchRef]=\"getDict()?.length > 10 ? 'name' : ''\"\n [allowNull]=\"!column.required\"\n [appendToBody]=\"true\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"\n [options]=\"getDict()\"\n [valueRef]=\"'id'\"\n [textRef]=\"'name'\"\n [multiple]=\"false\"></teta-select>\n <teta-date-picker *ngSwitchCase=\"filterTypeEnum.date\"\n class=\"row_auto\"\n [appendToBody]=\"true\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"></teta-date-picker>\n <teta-toggle *ngSwitchCase=\"filterTypeEnum.boolean\"\n [formControlName]=\"column.name\">\n {{column.caption}}\n </teta-toggle>\n <teta-text-field class=\"row_auto\"\n *ngSwitchDefault\n [decimalPart]=\"column.filterType === filterTypeEnum.number ? decimalPart : null\"\n [onlyNumber]=\"column.filterType === filterTypeEnum.number\"\n [placeholder]=\"column.caption\"\n [invalid]=\"controlIsInvalid(column.name)\"\n [formControlName]=\"column.name\"></teta-text-field>\n </ng-container>\n </ng-template>\n <div *ngIf=\"controlIsInvalid(column.name)\"\n ngProjectAs=\"message\"\n class=\"color-red-50\">\n {{getError(column)}}\n </div>\n</teta-input>\n" }]
|
|
7227
7247
|
}], ctorParameters: function () { return [{ type: i1$2.TranslocoService }, { type: i3.ControlContainer, decorators: [{
|
|
7228
7248
|
type: Optional
|
|
7229
7249
|
}] }]; }, propDecorators: { column: [{
|
|
@@ -7245,6 +7265,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImpor
|
|
|
7245
7265
|
}] } });
|
|
7246
7266
|
|
|
7247
7267
|
class PropertyGridGroupComponent {
|
|
7268
|
+
_formGroup;
|
|
7248
7269
|
column;
|
|
7249
7270
|
hideNonEditable;
|
|
7250
7271
|
dict;
|
|
@@ -7253,20 +7274,36 @@ class PropertyGridGroupComponent {
|
|
|
7253
7274
|
controlValueChange = new EventEmitter();
|
|
7254
7275
|
decimalPart;
|
|
7255
7276
|
itemTemplates;
|
|
7256
|
-
|
|
7277
|
+
get formGroup() {
|
|
7278
|
+
if (this._formGroup instanceof FormGroup) {
|
|
7279
|
+
return this._formGroup;
|
|
7280
|
+
}
|
|
7281
|
+
if (this._formGroup instanceof NgForm) {
|
|
7282
|
+
return this._formGroup.form;
|
|
7283
|
+
}
|
|
7284
|
+
return null;
|
|
7257
7285
|
}
|
|
7258
|
-
|
|
7286
|
+
get editable() {
|
|
7287
|
+
return boolOrFuncCallback(this.column.editable)({
|
|
7288
|
+
column: this.column,
|
|
7289
|
+
row: this.formGroup?.getRawValue(),
|
|
7290
|
+
});
|
|
7291
|
+
}
|
|
7292
|
+
constructor(_formGroup) {
|
|
7293
|
+
this._formGroup = _formGroup;
|
|
7259
7294
|
}
|
|
7260
7295
|
trackColumns(index, column) {
|
|
7261
7296
|
return column.name;
|
|
7262
7297
|
}
|
|
7263
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7264
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridGroupComponent, selector: "teta-property-grid-group", inputs: { column: "column", hideNonEditable: "hideNonEditable", dict: "dict", item: "item", horizontal: "horizontal", decimalPart: "decimalPart", itemTemplates: "itemTemplates" }, outputs: { controlValueChange: "controlValueChange" }, ngImport: i0, template: "<teta-expand-item>\n <span ngProjectAs='head'>\n {{column.caption}}\n </span>\n <div class=\"form-container\">\n <ng-container *ngFor=\"let col of column.columns; trackBy: trackColumns\">\n <ng-container *ngIf=\"col.columns?.length < 1\">\n <teta-property-grid-item *ngIf=\"column.editable || !hideNonEditable\"\n [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n (controlValueChange)=\"controlValueChange.emit($event)\"\n [horizontal]=\"horizontal\"></teta-property-grid-item>\n </ng-container>\n <ng-container *ngIf=\"col.columns?.length > 0\">\n <teta-property-grid-group [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n [horizontal]=\"horizontal\"\n (controlValueChange)=\"controlValueChange.emit($event)\"></teta-property-grid-group>\n </ng-container>\n </ng-container>\n </div>\n</teta-expand-item>\n", styles: [":host{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ExpandItemComponent, selector: "teta-expand-item", inputs: ["open"], outputs: ["openChange"], exportAs: ["expand-item"] }, { kind: "component", type: PropertyGridGroupComponent, selector: "teta-property-grid-group", inputs: ["column", "hideNonEditable", "dict", "item", "horizontal", "decimalPart", "itemTemplates"], outputs: ["controlValueChange"] }, { kind: "component", type: PropertyGridItemComponent, selector: "teta-property-grid-item", inputs: ["column", "hideNonEditable", "dict", "decimalPart", "item", "itemTemplates", "horizontal"], outputs: ["controlValueChange"] }] });
|
|
7298
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridGroupComponent, deps: [{ token: i3.ControlContainer, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
7299
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridGroupComponent, selector: "teta-property-grid-group", inputs: { column: "column", hideNonEditable: "hideNonEditable", dict: "dict", item: "item", horizontal: "horizontal", decimalPart: "decimalPart", itemTemplates: "itemTemplates" }, outputs: { controlValueChange: "controlValueChange" }, ngImport: i0, template: "<teta-expand-item>\n <span ngProjectAs='head'>\n {{column.caption}}\n </span>\n <div class=\"form-container\">\n <ng-container *ngFor=\"let col of column.columns; trackBy: trackColumns\">\n <ng-container *ngIf=\"col.columns?.length < 1\">\n <teta-property-grid-item *ngIf=\"column.editable || !hideNonEditable\"\n [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n (controlValueChange)=\"controlValueChange.emit($event)\"\n [horizontal]=\"horizontal\"></teta-property-grid-item>\n </ng-container>\n <ng-container *ngIf=\"col.columns?.length > 0\">\n <teta-property-grid-group [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n [horizontal]=\"horizontal\"\n (controlValueChange)=\"controlValueChange.emit($event)\"></teta-property-grid-group>\n </ng-container>\n </ng-container>\n </div>\n</teta-expand-item>\n", styles: [":host{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ExpandItemComponent, selector: "teta-expand-item", inputs: ["open"], outputs: ["openChange"], exportAs: ["expand-item"] }, { kind: "component", type: PropertyGridGroupComponent, selector: "teta-property-grid-group", inputs: ["column", "hideNonEditable", "dict", "item", "horizontal", "decimalPart", "itemTemplates"], outputs: ["controlValueChange"] }, { kind: "component", type: PropertyGridItemComponent, selector: "teta-property-grid-item", inputs: ["column", "hideNonEditable", "dict", "decimalPart", "item", "itemTemplates", "horizontal"], outputs: ["controlValueChange"] }], viewProviders: [FormsUtil.formProvider] });
|
|
7265
7300
|
}
|
|
7266
7301
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridGroupComponent, decorators: [{
|
|
7267
7302
|
type: Component,
|
|
7268
|
-
args: [{ selector: 'teta-property-grid-group', template: "<teta-expand-item>\n <span ngProjectAs='head'>\n {{column.caption}}\n </span>\n <div class=\"form-container\">\n <ng-container *ngFor=\"let col of column.columns; trackBy: trackColumns\">\n <ng-container *ngIf=\"col.columns?.length < 1\">\n <teta-property-grid-item *ngIf=\"column.editable || !hideNonEditable\"\n [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n (controlValueChange)=\"controlValueChange.emit($event)\"\n [horizontal]=\"horizontal\"></teta-property-grid-item>\n </ng-container>\n <ng-container *ngIf=\"col.columns?.length > 0\">\n <teta-property-grid-group [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n [horizontal]=\"horizontal\"\n (controlValueChange)=\"controlValueChange.emit($event)\"></teta-property-grid-group>\n </ng-container>\n </ng-container>\n </div>\n</teta-expand-item>\n", styles: [":host{display:flex;flex-direction:column}\n"] }]
|
|
7269
|
-
}], ctorParameters: function () { return [
|
|
7303
|
+
args: [{ selector: 'teta-property-grid-group', viewProviders: [FormsUtil.formProvider], template: "<teta-expand-item>\n <span ngProjectAs='head'>\n {{column.caption}}\n </span>\n <div class=\"form-container\">\n <ng-container *ngFor=\"let col of column.columns; trackBy: trackColumns\">\n <ng-container *ngIf=\"col.columns?.length < 1\">\n <teta-property-grid-item *ngIf=\"column.editable || !hideNonEditable\"\n [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n (controlValueChange)=\"controlValueChange.emit($event)\"\n [horizontal]=\"horizontal\"></teta-property-grid-item>\n </ng-container>\n <ng-container *ngIf=\"col.columns?.length > 0\">\n <teta-property-grid-group [id]=\"col.name\"\n [dict]=\"dict\"\n [column]=\"col\"\n [item]=\"item\"\n [itemTemplates]=\"itemTemplates\"\n [decimalPart]=\"decimalPart\"\n [hideNonEditable]=\"hideNonEditable\"\n [horizontal]=\"horizontal\"\n (controlValueChange)=\"controlValueChange.emit($event)\"></teta-property-grid-group>\n </ng-container>\n </ng-container>\n </div>\n</teta-expand-item>\n", styles: [":host{display:flex;flex-direction:column}\n"] }]
|
|
7304
|
+
}], ctorParameters: function () { return [{ type: i3.ControlContainer, decorators: [{
|
|
7305
|
+
type: Optional
|
|
7306
|
+
}] }]; }, propDecorators: { column: [{
|
|
7270
7307
|
type: Input
|
|
7271
7308
|
}], hideNonEditable: [{
|
|
7272
7309
|
type: Input
|
|
@@ -7319,6 +7356,12 @@ class PropertyGridComponent {
|
|
|
7319
7356
|
constructor(_formGroup) {
|
|
7320
7357
|
this._formGroup = _formGroup;
|
|
7321
7358
|
}
|
|
7359
|
+
getEditable(column) {
|
|
7360
|
+
return boolOrFuncCallback(column.editable)({
|
|
7361
|
+
column: column,
|
|
7362
|
+
row: this.formGroup?.getRawValue(),
|
|
7363
|
+
});
|
|
7364
|
+
}
|
|
7322
7365
|
onControlValueChange(event) {
|
|
7323
7366
|
const affected = this.columns.filter(_ => _.parentName === event.name);
|
|
7324
7367
|
if (affected?.length) {
|
|
@@ -7336,7 +7379,6 @@ class PropertyGridComponent {
|
|
|
7336
7379
|
}
|
|
7337
7380
|
this.controlValueChange.emit(event);
|
|
7338
7381
|
}
|
|
7339
|
-
ngOnInit() { }
|
|
7340
7382
|
ngOnDestroy() {
|
|
7341
7383
|
this._alive = false;
|
|
7342
7384
|
}
|
|
@@ -7346,13 +7388,12 @@ class PropertyGridComponent {
|
|
|
7346
7388
|
getDictValue(value, name) {
|
|
7347
7389
|
return this.dict[name]?.find(_ => _.id === value);
|
|
7348
7390
|
}
|
|
7349
|
-
ngAfterViewInit() { }
|
|
7350
7391
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridComponent, deps: [{ token: i3.ControlContainer, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
7351
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridComponent, selector: "teta-property-grid", inputs: { hideNonEditable: "hideNonEditable", columns: "columns", dict: "dict", item: "item", horizontal: "horizontal", decimalPart: "decimalPart" }, outputs: { controlValueChange: "controlValueChange" }, host: { properties: { "class.form-container": "this.formClass" } }, queries: [{ propertyName: "itemTemplates", predicate: PropertyGridItemDescriptionDirective }], ngImport: i0, template: "<ng-container *ngIf
|
|
7392
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: PropertyGridComponent, selector: "teta-property-grid", inputs: { hideNonEditable: "hideNonEditable", columns: "columns", dict: "dict", item: "item", horizontal: "horizontal", decimalPart: "decimalPart" }, outputs: { controlValueChange: "controlValueChange" }, host: { properties: { "class.form-container": "this.formClass" } }, queries: [{ propertyName: "itemTemplates", predicate: PropertyGridItemDescriptionDirective }], ngImport: i0, template: "<ng-container *ngIf='columns?.length'>\n <ng-container *ngFor='let column of columns; trackBy: trackColumns'>\n <teta-property-grid-item *ngIf='column.columns?.length < 1 && (getEditable(column) || !hideNonEditable)'\n [dict]='dict'\n [column]='column'\n [item]='item'\n [id]='column.name'\n [itemTemplates]='itemTemplates'\n [decimalPart]='decimalPart'\n [formGroup]='formGroup'\n [horizontal]='horizontal'\n (controlValueChange)='onControlValueChange($event)'\n [hideNonEditable]='hideNonEditable'></teta-property-grid-item>\n <teta-property-grid-group *ngIf='column.columns?.length > 0 && (getEditable(column) || !hideNonEditable)'\n [id]='column.name'\n [dict]='dict'\n [column]='column'\n [item]='item'\n [itemTemplates]='itemTemplates'\n [decimalPart]='decimalPart'\n [formGroup]='formGroup'\n [horizontal]='horizontal'\n (controlValueChange)='onControlValueChange($event)'\n [hideNonEditable]='hideNonEditable'></teta-property-grid-group>\n </ng-container>\n</ng-container>\n", styles: [":host{padding:12px 8px}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: PropertyGridGroupComponent, selector: "teta-property-grid-group", inputs: ["column", "hideNonEditable", "dict", "item", "horizontal", "decimalPart", "itemTemplates"], outputs: ["controlValueChange"] }, { kind: "component", type: PropertyGridItemComponent, selector: "teta-property-grid-item", inputs: ["column", "hideNonEditable", "dict", "decimalPart", "item", "itemTemplates", "horizontal"], outputs: ["controlValueChange"] }], viewProviders: [FormsUtil.formProvider] });
|
|
7352
7393
|
}
|
|
7353
7394
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: PropertyGridComponent, decorators: [{
|
|
7354
7395
|
type: Component,
|
|
7355
|
-
args: [{ selector: 'teta-property-grid', viewProviders: [FormsUtil.formProvider], template: "<ng-container *ngIf
|
|
7396
|
+
args: [{ selector: 'teta-property-grid', viewProviders: [FormsUtil.formProvider], template: "<ng-container *ngIf='columns?.length'>\n <ng-container *ngFor='let column of columns; trackBy: trackColumns'>\n <teta-property-grid-item *ngIf='column.columns?.length < 1 && (getEditable(column) || !hideNonEditable)'\n [dict]='dict'\n [column]='column'\n [item]='item'\n [id]='column.name'\n [itemTemplates]='itemTemplates'\n [decimalPart]='decimalPart'\n [formGroup]='formGroup'\n [horizontal]='horizontal'\n (controlValueChange)='onControlValueChange($event)'\n [hideNonEditable]='hideNonEditable'></teta-property-grid-item>\n <teta-property-grid-group *ngIf='column.columns?.length > 0 && (getEditable(column) || !hideNonEditable)'\n [id]='column.name'\n [dict]='dict'\n [column]='column'\n [item]='item'\n [itemTemplates]='itemTemplates'\n [decimalPart]='decimalPart'\n [formGroup]='formGroup'\n [horizontal]='horizontal'\n (controlValueChange)='onControlValueChange($event)'\n [hideNonEditable]='hideNonEditable'></teta-property-grid-group>\n </ng-container>\n</ng-container>\n", styles: [":host{padding:12px 8px}\n"] }]
|
|
7356
7397
|
}], ctorParameters: function () { return [{ type: i3.ControlContainer, decorators: [{
|
|
7357
7398
|
type: Optional
|
|
7358
7399
|
}] }]; }, propDecorators: { formClass: [{
|
|
@@ -7961,16 +8002,10 @@ class TableColumn extends FilterItem {
|
|
|
7961
8002
|
* Стобец закреплен
|
|
7962
8003
|
*/
|
|
7963
8004
|
locked;
|
|
7964
|
-
/**
|
|
7965
|
-
* Название столбца в строке результатов
|
|
7966
|
-
*/
|
|
7967
8005
|
/**
|
|
7968
8006
|
* Название столбца родителя
|
|
7969
8007
|
*/
|
|
7970
8008
|
parentName;
|
|
7971
|
-
/**
|
|
7972
|
-
* Название столбца для заголовка таблицы
|
|
7973
|
-
*/
|
|
7974
8009
|
/**
|
|
7975
8010
|
* Единицы измерения
|
|
7976
8011
|
*/
|
|
@@ -8579,7 +8614,7 @@ class TableService {
|
|
|
8579
8614
|
this._currentEditCell = cellEvent;
|
|
8580
8615
|
}
|
|
8581
8616
|
else {
|
|
8582
|
-
if (
|
|
8617
|
+
if (boolOrFuncCallback(!!this.rowEditable)(this.getRowByIndex(cellEvent?.row)?.data)) {
|
|
8583
8618
|
this._editRowStart.next(cellEvent);
|
|
8584
8619
|
this._currentEditCell = cellEvent;
|
|
8585
8620
|
}
|
|
@@ -8593,7 +8628,7 @@ class TableService {
|
|
|
8593
8628
|
this._editCellStop.next(this._currentEditCell);
|
|
8594
8629
|
}
|
|
8595
8630
|
const column = this.getColumnByName(cellEvent?.column);
|
|
8596
|
-
if (
|
|
8631
|
+
if (boolOrFuncCallback(column?.editable)({
|
|
8597
8632
|
row: this.getRowByIndex(cellEvent?.row),
|
|
8598
8633
|
column: column,
|
|
8599
8634
|
})) {
|
|
@@ -8731,7 +8766,7 @@ class TableService {
|
|
|
8731
8766
|
return null;
|
|
8732
8767
|
}
|
|
8733
8768
|
const column = this.getColumnByName(nextCell?.column);
|
|
8734
|
-
if (
|
|
8769
|
+
if (boolOrFuncCallback(column.editable)({
|
|
8735
8770
|
row: this.getRowByIndex(nextCell.row),
|
|
8736
8771
|
column,
|
|
8737
8772
|
})) {
|
|
@@ -8745,7 +8780,7 @@ class TableService {
|
|
|
8745
8780
|
return null;
|
|
8746
8781
|
}
|
|
8747
8782
|
const column = this.getColumnByName(prevCell?.column);
|
|
8748
|
-
if (
|
|
8783
|
+
if (boolOrFuncCallback(column.editable)({
|
|
8749
8784
|
row: this.getRowByIndex(prevCell.row),
|
|
8750
8785
|
column,
|
|
8751
8786
|
})) {
|
|
@@ -8824,17 +8859,6 @@ class TableService {
|
|
|
8824
8859
|
this._scrollIndex.next(null);
|
|
8825
8860
|
this._scrollIndex.next(index);
|
|
8826
8861
|
}
|
|
8827
|
-
boolOrFuncCallback(variable) {
|
|
8828
|
-
return (args) => {
|
|
8829
|
-
if (typeof variable === 'boolean') {
|
|
8830
|
-
return variable;
|
|
8831
|
-
}
|
|
8832
|
-
else if (this.isFunction(variable)) {
|
|
8833
|
-
return variable(args);
|
|
8834
|
-
}
|
|
8835
|
-
return true;
|
|
8836
|
-
};
|
|
8837
|
-
}
|
|
8838
8862
|
getVisibleColumns() {
|
|
8839
8863
|
const visible = ArrayUtil.flatten(this._columns.value, 'columns', true).filter(_ => this._hiddenColumns.value.indexOf(_.name) < 0);
|
|
8840
8864
|
return visible.sort((a, b) => Number(b.locked) - Number(a.locked));
|
|
@@ -8885,9 +8909,6 @@ class TableService {
|
|
|
8885
8909
|
getTableElement(element) {
|
|
8886
8910
|
return element.closest('teta-table');
|
|
8887
8911
|
}
|
|
8888
|
-
isFunction(obj) {
|
|
8889
|
-
return !!(obj && obj?.constructor && obj?.call && obj?.apply);
|
|
8890
|
-
}
|
|
8891
8912
|
setColumnAutoWidth(column, table) {
|
|
8892
8913
|
const cells = table.querySelectorAll(`teta-cell[data-column="${column.name}"] .cell-text`);
|
|
8893
8914
|
let maxWidth = 0;
|
|
@@ -10061,7 +10082,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10061
10082
|
hiddenColumns;
|
|
10062
10083
|
get openItems() {
|
|
10063
10084
|
if (this._openItems == null) {
|
|
10064
|
-
this._openItems = this.columns.map(
|
|
10085
|
+
this._openItems = this.columns.map(_ => _);
|
|
10065
10086
|
}
|
|
10066
10087
|
return this._openItems;
|
|
10067
10088
|
}
|
|
@@ -10080,8 +10101,8 @@ class VisibilityDropdownTabComponent {
|
|
|
10080
10101
|
this._cdr = _cdr;
|
|
10081
10102
|
this.locale = this._config.locale;
|
|
10082
10103
|
this._svc.hiddenColumns
|
|
10083
|
-
.pipe(takeWhile(
|
|
10084
|
-
.subscribe(
|
|
10104
|
+
.pipe(takeWhile(_ => this._alive), map(_ => [..._]))
|
|
10105
|
+
.subscribe(_ => {
|
|
10085
10106
|
this.hiddenColumns = _;
|
|
10086
10107
|
});
|
|
10087
10108
|
}
|
|
@@ -10093,7 +10114,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10093
10114
|
return true;
|
|
10094
10115
|
}
|
|
10095
10116
|
const columns = ArrayUtil.flatten(this.columns, 'columns');
|
|
10096
|
-
const notHidden = columns.find(
|
|
10117
|
+
const notHidden = columns.find(_ => this.hiddenColumns.indexOf(_.name) < 0);
|
|
10097
10118
|
if (!notHidden) {
|
|
10098
10119
|
return false;
|
|
10099
10120
|
}
|
|
@@ -10104,7 +10125,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10104
10125
|
this.hiddenColumns = [];
|
|
10105
10126
|
}
|
|
10106
10127
|
else {
|
|
10107
|
-
this.hiddenColumns = ArrayUtil.flatten(this.columns, 'columns').map(
|
|
10128
|
+
this.hiddenColumns = ArrayUtil.flatten(this.columns, 'columns').map(_ => _.name);
|
|
10108
10129
|
}
|
|
10109
10130
|
}
|
|
10110
10131
|
setColumnsVisibility() {
|
|
@@ -10123,7 +10144,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10123
10144
|
this.hideColumn(column, hiddenColumns);
|
|
10124
10145
|
}
|
|
10125
10146
|
if (column.columns) {
|
|
10126
|
-
column.columns.forEach(
|
|
10147
|
+
column.columns.forEach(x => {
|
|
10127
10148
|
this.setChildrenVisibility(x, visible, hiddenColumns);
|
|
10128
10149
|
});
|
|
10129
10150
|
}
|
|
@@ -10148,7 +10169,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10148
10169
|
if (parent &&
|
|
10149
10170
|
!this.columnIsHidden(parent) &&
|
|
10150
10171
|
parent.columns &&
|
|
10151
|
-
parent.columns.every(
|
|
10172
|
+
parent.columns.every(_ => this.columnIsHidden(_))) {
|
|
10152
10173
|
this.hideColumn(parent, hiddenColumns);
|
|
10153
10174
|
this.hideParents(parent, hiddenColumns);
|
|
10154
10175
|
}
|
|
@@ -10160,9 +10181,7 @@ class VisibilityDropdownTabComponent {
|
|
|
10160
10181
|
hiddenColumns.splice(hiddenColumns.indexOf(column.name), 1);
|
|
10161
10182
|
}
|
|
10162
10183
|
findParentColumn(column, columns) {
|
|
10163
|
-
return ArrayUtil.findRecursive(columns,
|
|
10164
|
-
}
|
|
10165
|
-
ngOnInit() {
|
|
10184
|
+
return ArrayUtil.findRecursive(columns, iterableNode => iterableNode.columns?.indexOf(column) >= 0, 'columns');
|
|
10166
10185
|
}
|
|
10167
10186
|
ngOnDestroy() {
|
|
10168
10187
|
this._alive = false;
|
|
@@ -10620,9 +10639,9 @@ class CellComponentBase {
|
|
|
10620
10639
|
return this._edit && this.editable;
|
|
10621
10640
|
}
|
|
10622
10641
|
get editable() {
|
|
10623
|
-
return
|
|
10642
|
+
return boolOrFuncCallback(this.column.editable)({
|
|
10624
10643
|
column: this.column,
|
|
10625
|
-
row: this.row,
|
|
10644
|
+
row: this.row.data,
|
|
10626
10645
|
});
|
|
10627
10646
|
}
|
|
10628
10647
|
get index() {
|
|
@@ -12090,16 +12109,12 @@ class Chart3dService {
|
|
|
12090
12109
|
minMax;
|
|
12091
12110
|
data;
|
|
12092
12111
|
scales;
|
|
12093
|
-
minMax$ = new ReplaySubject(1);
|
|
12094
12112
|
data$ = new ReplaySubject(1);
|
|
12095
12113
|
constructor() {
|
|
12096
12114
|
this.data = this.data$.asObservable();
|
|
12097
|
-
this.minMax = this.
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
this.minMax$.next(this.getAxesMinMax(_));
|
|
12101
|
-
}))
|
|
12102
|
-
.subscribe();
|
|
12115
|
+
this.minMax = this.data.pipe(map$1(_ => {
|
|
12116
|
+
return this.getAxesMinMax(_);
|
|
12117
|
+
}));
|
|
12103
12118
|
this.scales = this.minMax.pipe(map$1(minMax => {
|
|
12104
12119
|
return this.getScales(minMax);
|
|
12105
12120
|
}), shareReplay(1));
|
|
@@ -12282,13 +12297,13 @@ class Axes3dComponent {
|
|
|
12282
12297
|
}));
|
|
12283
12298
|
}
|
|
12284
12299
|
createAxes(scales, minMax) {
|
|
12285
|
-
const axisZ = this.generateTicks(minMax.z, 12).map(
|
|
12300
|
+
const axisZ = this.generateTicks(minMax.z, 12).map(_ => {
|
|
12286
12301
|
return { value: _.toFixed(1), position: scales.z(_) };
|
|
12287
12302
|
});
|
|
12288
|
-
const axisY = this.generateTicks(minMax.y, 12).map(
|
|
12303
|
+
const axisY = this.generateTicks(minMax.y, 12).map(_ => {
|
|
12289
12304
|
return { value: _.toFixed(1), position: scales.y(_) };
|
|
12290
12305
|
});
|
|
12291
|
-
const axisX = this.generateTicks(minMax.x, 4).map(
|
|
12306
|
+
const axisX = this.generateTicks(minMax.x, 4).map(_ => {
|
|
12292
12307
|
return { value: _.toFixed(1), position: scales.x(_) };
|
|
12293
12308
|
});
|
|
12294
12309
|
return { z: axisZ, y: axisY, x: axisX };
|
|
@@ -12298,18 +12313,21 @@ class Axes3dComponent {
|
|
|
12298
12313
|
const tickStep = (max - min) / count;
|
|
12299
12314
|
const ticks = d3
|
|
12300
12315
|
.range(min, max + tickStep, tickStep)
|
|
12301
|
-
.filter(
|
|
12316
|
+
.filter(step => step <= max);
|
|
12302
12317
|
return ticks;
|
|
12303
12318
|
}
|
|
12319
|
+
trackBy(i) {
|
|
12320
|
+
return i;
|
|
12321
|
+
}
|
|
12304
12322
|
ngOnDestroy() {
|
|
12305
12323
|
this._alive = false;
|
|
12306
12324
|
}
|
|
12307
12325
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: Axes3dComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12308
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: Axes3dComponent, isStandalone: true, selector: "teta-axes-3d", inputs: { rotation: "rotation" }, ngImport: i0, template: "<ng-container *ngIf=\"{axes:axes|async}as data\">\n
|
|
12326
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: Axes3dComponent, isStandalone: true, selector: "teta-axes-3d", inputs: { rotation: "rotation" }, ngImport: i0, template: "<ng-container *ngIf=\"{axes:axes|async}as data\">\n<ngts-text *ngFor=\"let tick of data.axes?.y;let i=index; trackBy: trackBy\" [text]=\"tick.value+'-'\"\n [color]=\"'var(--color-text-90)'\"\n [rotation]=\"rotation\"\n [fontSize]=\"2.5\"\n [position]=\"[0,tick.position,50]\"\n [anchorX]=\"'right'\"\n [anchorY]=\"'middle'\"\n [textAlign]=\"'right'\"\n></ngts-text>\n<ngts-text *ngFor=\"let tick of data.axes?.z;let i=index; trackBy: trackBy\" [text]=\"tick.value\"\n [color]=\"'var(--color-text-90)'\"\n [rotation]=\"rotation\"\n [fontSize]=\"2.5\"\n [position]=\"[25,-50,tick.position]\"\n ></ngts-text>\n</ng-container>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "component", type: NgtsText, selector: "ngts-text[text]", inputs: ["textRef", "text", "characters", "font", "anchorX", "anchorY"], outputs: ["sync"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12309
12327
|
}
|
|
12310
12328
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: Axes3dComponent, decorators: [{
|
|
12311
12329
|
type: Component,
|
|
12312
|
-
args: [{ selector: 'teta-axes-3d', standalone: true, imports: [CommonModule, NgtsText], schemas: [CUSTOM_ELEMENTS_SCHEMA], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"{axes:axes|async}as data\">\n
|
|
12330
|
+
args: [{ selector: 'teta-axes-3d', standalone: true, imports: [CommonModule, NgtsText], schemas: [CUSTOM_ELEMENTS_SCHEMA], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"{axes:axes|async}as data\">\n<ngts-text *ngFor=\"let tick of data.axes?.y;let i=index; trackBy: trackBy\" [text]=\"tick.value+'-'\"\n [color]=\"'var(--color-text-90)'\"\n [rotation]=\"rotation\"\n [fontSize]=\"2.5\"\n [position]=\"[0,tick.position,50]\"\n [anchorX]=\"'right'\"\n [anchorY]=\"'middle'\"\n [textAlign]=\"'right'\"\n></ngts-text>\n<ngts-text *ngFor=\"let tick of data.axes?.z;let i=index; trackBy: trackBy\" [text]=\"tick.value\"\n [color]=\"'var(--color-text-90)'\"\n [rotation]=\"rotation\"\n [fontSize]=\"2.5\"\n [position]=\"[25,-50,tick.position]\"\n ></ngts-text>\n</ng-container>\n" }]
|
|
12313
12331
|
}], ctorParameters: function () { return []; }, propDecorators: { rotation: [{
|
|
12314
12332
|
type: Input
|
|
12315
12333
|
}] } });
|
|
@@ -12479,7 +12497,7 @@ class SceneComponent {
|
|
|
12479
12497
|
this.rotation = this.store.get('camera').rotation;
|
|
12480
12498
|
}
|
|
12481
12499
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SceneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12482
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: SceneComponent, isStandalone: true, selector: "teta-scene", ngImport: i0, template: "<ng-container *ngIf=\"{data:data|async} as config\">\n <ngt-scene>\n <ngts-orbit-controls [minAzimuthAngle]=\"0\" [maxAzimuthAngle]=\"Math.PI/2\" [maxZoom]=\"15\" [minZoom]=\"4\"\n (change)=\"setRotation()\"></ngts-orbit-controls>\n </ngt-scene>\n <teta-area-3d></teta-area-3d>\n <ng-container *ngFor=\"let s of config.data
|
|
12500
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: SceneComponent, isStandalone: true, selector: "teta-scene", ngImport: i0, template: "<ng-container *ngIf=\"{data:data|async} as config\">\n <ngt-scene>\n <ngts-orbit-controls [minAzimuthAngle]=\"0\" [maxAzimuthAngle]=\"Math.PI/2\" [maxZoom]=\"15\" [minZoom]=\"4\"\n (change)=\"setRotation()\"></ngts-orbit-controls>\n </ngt-scene>\n <teta-area-3d></teta-area-3d>\n <ng-container *ngFor=\"let s of config.data?.series;\">\n <div teta-series-3d-host [series]=\"s\"></div>\n </ng-container>\n <teta-axes-3d [rotation]=\"rotation\"></teta-axes-3d>\n</ng-container>\n\n\n", dependencies: [{ kind: "component", type: NgtsOrbitControls, selector: "ngts-orbit-controls", inputs: ["controlsRef", "camera", "domElement", "makeDefault", "regress", "target", "enableDamping"], outputs: ["change", "start", "end"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "component", type: Area3dComponent, selector: "teta-area-3d" }, { kind: "component", type: Axes3dComponent, selector: "teta-axes-3d", inputs: ["rotation"] }, { kind: "component", type: Series3dHost, selector: "[teta-series-3d-host]", inputs: ["series"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12483
12501
|
}
|
|
12484
12502
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: SceneComponent, decorators: [{
|
|
12485
12503
|
type: Component,
|
|
@@ -12491,15 +12509,81 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImpor
|
|
|
12491
12509
|
Axes3dComponent,
|
|
12492
12510
|
Block3dComponent,
|
|
12493
12511
|
Series3dHost,
|
|
12494
|
-
], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<ng-container *ngIf=\"{data:data|async} as config\">\n <ngt-scene>\n <ngts-orbit-controls [minAzimuthAngle]=\"0\" [maxAzimuthAngle]=\"Math.PI/2\" [maxZoom]=\"15\" [minZoom]=\"4\"\n (change)=\"setRotation()\"></ngts-orbit-controls>\n </ngt-scene>\n <teta-area-3d></teta-area-3d>\n <ng-container *ngFor=\"let s of config.data
|
|
12512
|
+
], schemas: [CUSTOM_ELEMENTS_SCHEMA], template: "<ng-container *ngIf=\"{data:data|async} as config\">\n <ngt-scene>\n <ngts-orbit-controls [minAzimuthAngle]=\"0\" [maxAzimuthAngle]=\"Math.PI/2\" [maxZoom]=\"15\" [minZoom]=\"4\"\n (change)=\"setRotation()\"></ngts-orbit-controls>\n </ngt-scene>\n <teta-area-3d></teta-area-3d>\n <ng-container *ngFor=\"let s of config.data?.series;\">\n <div teta-series-3d-host [series]=\"s\"></div>\n </ng-container>\n <teta-axes-3d [rotation]=\"rotation\"></teta-axes-3d>\n</ng-container>\n\n\n" }]
|
|
12495
12513
|
}], ctorParameters: function () { return []; } });
|
|
12496
12514
|
|
|
12515
|
+
class CanvasComponent {
|
|
12516
|
+
scene;
|
|
12517
|
+
camera;
|
|
12518
|
+
data;
|
|
12519
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CanvasComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12520
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: CanvasComponent, isStandalone: true, selector: "teta-canvas", inputs: { scene: "scene", camera: "camera", data: "data" }, providers: [NgtStore], ngImport: i0, template: "<ngt-canvas *ngIf=\"data?.series?.length;else noData\" [sceneGraph]=\"scene\"\n [camera]=\"camera\">\n</ngt-canvas>\n<ng-template #noData>\n <p>{{data?.noDataText || 'no data'}}</p>\n</ng-template>\n", styles: [":host{width:100%;height:100%}\n"], dependencies: [{ kind: "component", type: NgtCanvas, selector: "ngt-canvas", inputs: ["sceneGraph", "sceneGraphInputs", "compoundPrefixes", "linear", "legacy", "flat", "orthographic", "frameloop", "dpr", "raycaster", "shadows", "camera", "gl", "eventSource", "eventPrefix", "lookAt", "performance"], outputs: ["created", "pointerMissed"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12521
|
+
}
|
|
12522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: CanvasComponent, decorators: [{
|
|
12523
|
+
type: Component,
|
|
12524
|
+
args: [{ selector: 'teta-canvas', standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], changeDetection: ChangeDetectionStrategy.OnPush, providers: [NgtStore], imports: [NgtCanvas, SceneComponent, CommonModule], template: "<ngt-canvas *ngIf=\"data?.series?.length;else noData\" [sceneGraph]=\"scene\"\n [camera]=\"camera\">\n</ngt-canvas>\n<ng-template #noData>\n <p>{{data?.noDataText || 'no data'}}</p>\n</ng-template>\n", styles: [":host{width:100%;height:100%}\n"] }]
|
|
12525
|
+
}], propDecorators: { scene: [{
|
|
12526
|
+
type: Input
|
|
12527
|
+
}], camera: [{
|
|
12528
|
+
type: Input
|
|
12529
|
+
}], data: [{
|
|
12530
|
+
type: Input
|
|
12531
|
+
}] } });
|
|
12532
|
+
|
|
12533
|
+
class Canvas3dHost {
|
|
12534
|
+
viewContainerRef;
|
|
12535
|
+
scene;
|
|
12536
|
+
camera;
|
|
12537
|
+
data;
|
|
12538
|
+
_init = false;
|
|
12539
|
+
_componentRef;
|
|
12540
|
+
constructor(viewContainerRef) {
|
|
12541
|
+
this.viewContainerRef = viewContainerRef;
|
|
12542
|
+
}
|
|
12543
|
+
ngOnInit() {
|
|
12544
|
+
this.createCanvas();
|
|
12545
|
+
this._init = true;
|
|
12546
|
+
}
|
|
12547
|
+
ngOnChanges() {
|
|
12548
|
+
if (this._init) {
|
|
12549
|
+
this.createCanvas();
|
|
12550
|
+
this._componentRef.injector.get(ChangeDetectorRef).detectChanges();
|
|
12551
|
+
}
|
|
12552
|
+
}
|
|
12553
|
+
createCanvas() {
|
|
12554
|
+
this.viewContainerRef.clear();
|
|
12555
|
+
this._componentRef = this.viewContainerRef.createComponent(CanvasComponent);
|
|
12556
|
+
this._componentRef.instance.scene = this.scene;
|
|
12557
|
+
this._componentRef.instance.camera = this.camera;
|
|
12558
|
+
this._componentRef.instance.data = this.data;
|
|
12559
|
+
}
|
|
12560
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: Canvas3dHost, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
12561
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: Canvas3dHost, isStandalone: true, selector: "[teta-canvas-3d-host]", inputs: { scene: "scene", camera: "camera", data: "data" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12562
|
+
}
|
|
12563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: Canvas3dHost, decorators: [{
|
|
12564
|
+
type: Component,
|
|
12565
|
+
args: [{
|
|
12566
|
+
selector: '[teta-canvas-3d-host]',
|
|
12567
|
+
template: '',
|
|
12568
|
+
standalone: true,
|
|
12569
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
12570
|
+
}]
|
|
12571
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { scene: [{
|
|
12572
|
+
type: Input
|
|
12573
|
+
}], camera: [{
|
|
12574
|
+
type: Input
|
|
12575
|
+
}], data: [{
|
|
12576
|
+
type: Input
|
|
12577
|
+
}] } });
|
|
12578
|
+
|
|
12497
12579
|
extend(THREE);
|
|
12498
12580
|
class ThreeChartComponent {
|
|
12499
12581
|
data;
|
|
12500
12582
|
scene;
|
|
12501
12583
|
camera;
|
|
12502
12584
|
chartService = inject(Chart3dService);
|
|
12585
|
+
store = inject(NgtStore);
|
|
12586
|
+
cdr = inject(ChangeDetectorRef);
|
|
12503
12587
|
ngOnInit() {
|
|
12504
12588
|
this.scene = SceneComponent;
|
|
12505
12589
|
this.camera = new OrthographicCamera(20, 20, 20, 20, 0.1, 1000);
|
|
@@ -12513,11 +12597,11 @@ class ThreeChartComponent {
|
|
|
12513
12597
|
}
|
|
12514
12598
|
}
|
|
12515
12599
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ThreeChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12516
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: ThreeChartComponent, isStandalone: true, selector: "teta-three-chart", inputs: { data: "data" }, providers: [NgtStore], usesOnChanges: true, ngImport: i0, template: "<div
|
|
12600
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.1", type: ThreeChartComponent, isStandalone: true, selector: "teta-three-chart", inputs: { data: "data" }, providers: [NgtStore], usesOnChanges: true, ngImport: i0, template: "<div class=\"column_auto column justify-content-center align-center\" style=\"height: 100%;width: 100%;\">\n <div teta-canvas-3d-host [camera]=\"camera\" [data]=\"data\" [scene]=\"scene\"></div>\n</div>\n", styles: [":host{width:100%;height:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: Canvas3dHost, selector: "[teta-canvas-3d-host]", inputs: ["scene", "camera", "data"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12517
12601
|
}
|
|
12518
12602
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.1", ngImport: i0, type: ThreeChartComponent, decorators: [{
|
|
12519
12603
|
type: Component,
|
|
12520
|
-
args: [{ selector: 'teta-three-chart', standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], changeDetection: ChangeDetectionStrategy.OnPush, providers: [NgtStore], imports: [NgtCanvas, SceneComponent, CommonModule], template: "<div
|
|
12604
|
+
args: [{ selector: 'teta-three-chart', standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], changeDetection: ChangeDetectionStrategy.OnPush, providers: [NgtStore], imports: [NgtCanvas, SceneComponent, CommonModule, CanvasComponent, Canvas3dHost], template: "<div class=\"column_auto column justify-content-center align-center\" style=\"height: 100%;width: 100%;\">\n <div teta-canvas-3d-host [camera]=\"camera\" [data]=\"data\" [scene]=\"scene\"></div>\n</div>\n", styles: [":host{width:100%;height:100%}\n"] }]
|
|
12521
12605
|
}], propDecorators: { data: [{
|
|
12522
12606
|
type: Input
|
|
12523
12607
|
}] } });
|
|
@@ -14206,5 +14290,5 @@ const ruLocale = {
|
|
|
14206
14290
|
* Generated bundle index. Do not edit.
|
|
14207
14291
|
*/
|
|
14208
14292
|
|
|
14209
|
-
export { ANIMATION_FRAME, AccordionComponent, AccordionContentDirective, AccordionHeadComponent, AccordionItemComponent, AccordionModule, AggregationType, Align, Area3dComponent, ArrayUtil, AutoPositionDirective, AutoPositionModule, AutocompleteComponent, AutocompleteModule, AvatarComponent, AvatarModule, Axes3dComponent, Base3dSeriesComponent, Block3dComponent, BooleanCellComponent, BooleanFilter, BooleanFilterComponent, ButtonComponent, ButtonModule, CHECKBOX_CONTROL_VALUE_ACCESSOR, CellComponent, CellComponentBase, CellHostComponent, Chart3dComponent, Chart3dModule, Chart3dOptions, CheckboxComponent, CheckboxModule, ClickOutsideDirective, ClickOutsideModule, ClickService, ColorInputComponent, ColumnReorderEvent, ColumnResizeEvent, ContextMenuDirective, ContextMenuModule, CurrentModal, CustomSeriesComponent, DATE_PICKER_CONTROL_VALUE_ACCESSOR, DATE_Range_CONTROL_VALUE_ACCESSOR, DateCalendarComponent, DateCellComponent, DateFilter, DateFilterComponent, DateFilterValue, DatePeriod, DatePickerComponent, DatePickerMode, DatePickerModule, DateRangeComponent, DateTimeCellComponent, DateUtil, DayModel, DelimiterComponent, DelimiterModule, DetailComponentBase, DialogComponent, DialogService, DisableControlDirective, DisableControlModule, DividerComponent, DividerModule, DomUtil, DragContainerDirective, DragContainerInstance, DragDirective, DragDropModule, DragDropService, DragInstance, DragPlaceholderDirective, DragPreviewDirective, DragSortContainerDirective, DragSortItemDirective, DragSortModule, DropdownComponent, DropdownContentDirective, DropdownDirective, DropdownHeadDirective, DropdownModule, DynamicComponentModule, DynamicComponentService, DynamicContentBaseDirective, DynamicData, EditEvent, EditType, ExpandCardComponent, ExpandCardModule, ExpandItemComponent, ExpandPanelComponent, ExpandPanelContentDirective, ExpandPanelHeadDirective, ExpandPanelModule, ExportType, FileItemComponent, FileUploadAreaComponent, FileUploadModule, FilterBase, FilterComponentBase, FilterHostComponent, FilterItem, FilterModule, FilterState, FilterType, FormGroupTitleComponent, FormsUtil, HeadCellComponentBase, HeadCellHostComponent, HighlightDirective, HighlightModule, HintDirective, HintModule, IconComponent, IconFileComponent, IconFileModule, IconModule, IconService, IconSpriteDirective, InputComponent, InputModule, LetContext, LetDirective, LetModule, Line3dComponent, ListCellComponent, ListFilter, ListFilterComponent, ListFilterType, LoaderDirective, LoaderModule, Message, MessageComponent, MessageHostComponent, MessageModule, MessageService, ModalCloseReason, ModalContainerComponent, ModalInstance, ModalModule, ModalService, NoAutofillDirective, NoAutofillModule, NumberPipe, NumberPipeModule, NumericCellComponent, NumericFilter, NumericFilterComponent, NumericFilterValue, OnlyNumberDirective, OnlyNumberModule, OverlayContainerService, PagerComponent, PagerModule, PagerState, PagerUtil, PanelComponent, PanelModule, PopupContentComponent, PositionUtil, ProgressBarComponent, ProgressBarModule, PropertyGridComponent, PropertyGridItemDescriptionDirective, PropertyGridModule, RadioButtonComponent, RadioComponent, RadioModule, RangeCalendarComponent, ResizeDragDirective, ResizeDragModule, ResizePanelComponent, ResizePanelModule, SLIDER_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, SceneComponent, ScrollIntoViewDirective, ScrollIntoViewModule, ScrollableComponent, ScrollableDirective, ScrollableModule, SelectComponent, SelectModule, SelectOptionDirective, SelectType, SelectValueDirective, Series3dHost, Series3dType, SidebarComponent, SidebarModule, SidebarPosition, SortEvent, SortParam, StateUtil, StringCellComponent, StringFilter, StringFilterComponent, StringFilterType, StringUtil, SwitchButtonComponent, SwitchComponent, SwitchModule, TOGGLE_CONTROL_VALUE_ACCESSOR, TabComponent, TabContentDirective, TabTitleDirective, TableBodyComponent, TableColumn, TableColumnStore, TableComponent, TableHeadComponent, TableModule, TableRow, TableService, TableUtil, TabsComponent, TabsModule, TetaConfigService, TetaContentRef, TetaDatePipe, TetaDatePipeModule, TetaSize, TetaTemplateDirective, TetaTemplateModule, TextFieldComponent, ThemeSwitchComponent, ThemeSwitchModule, ThemeSwitchService, ThreeChartComponent, ToggleComponent, ToggleModule, ToolbarComponent, ToolbarModule, TooltipDirective, TooltipModule, TreeComponent, TreeItemToggleComponent, TreeModule, TreeService, VerticalAlign, WINDOW, enLocale, exportDomToImage, formatNumber, getCellComponent, getPrecision, prependZero, ruLocale, tetaZoneFree, tetaZoneFull, tetaZoneOptimized };
|
|
14293
|
+
export { ANIMATION_FRAME, AccordionComponent, AccordionContentDirective, AccordionHeadComponent, AccordionItemComponent, AccordionModule, AggregationType, Align, Area3dComponent, ArrayUtil, AutoPositionDirective, AutoPositionModule, AutocompleteComponent, AutocompleteModule, AvatarComponent, AvatarModule, Axes3dComponent, Base3dSeriesComponent, Block3dComponent, BooleanCellComponent, BooleanFilter, BooleanFilterComponent, ButtonComponent, ButtonModule, CHECKBOX_CONTROL_VALUE_ACCESSOR, Canvas3dHost, CanvasComponent, CellComponent, CellComponentBase, CellHostComponent, Chart3dComponent, Chart3dModule, Chart3dOptions, CheckboxComponent, CheckboxModule, ClickOutsideDirective, ClickOutsideModule, ClickService, ColorInputComponent, ColumnReorderEvent, ColumnResizeEvent, ContextMenuDirective, ContextMenuModule, CurrentModal, CustomSeriesComponent, DATE_PICKER_CONTROL_VALUE_ACCESSOR, DATE_Range_CONTROL_VALUE_ACCESSOR, DateCalendarComponent, DateCellComponent, DateFilter, DateFilterComponent, DateFilterValue, DatePeriod, DatePickerComponent, DatePickerMode, DatePickerModule, DateRangeComponent, DateTimeCellComponent, DateUtil, DayModel, DelimiterComponent, DelimiterModule, DetailComponentBase, DialogComponent, DialogService, DisableControlDirective, DisableControlModule, DividerComponent, DividerModule, DomUtil, DragContainerDirective, DragContainerInstance, DragDirective, DragDropModule, DragDropService, DragInstance, DragPlaceholderDirective, DragPreviewDirective, DragSortContainerDirective, DragSortItemDirective, DragSortModule, DropdownComponent, DropdownContentDirective, DropdownDirective, DropdownHeadDirective, DropdownModule, DynamicComponentModule, DynamicComponentService, DynamicContentBaseDirective, DynamicData, EditEvent, EditType, ExpandCardComponent, ExpandCardModule, ExpandItemComponent, ExpandPanelComponent, ExpandPanelContentDirective, ExpandPanelHeadDirective, ExpandPanelModule, ExportType, FileItemComponent, FileUploadAreaComponent, FileUploadModule, FilterBase, FilterComponentBase, FilterHostComponent, FilterItem, FilterModule, FilterState, FilterType, FormGroupTitleComponent, FormsUtil, HeadCellComponentBase, HeadCellHostComponent, HighlightDirective, HighlightModule, HintDirective, HintModule, IconComponent, IconFileComponent, IconFileModule, IconModule, IconService, IconSpriteDirective, InputComponent, InputModule, LetContext, LetDirective, LetModule, Line3dComponent, ListCellComponent, ListFilter, ListFilterComponent, ListFilterType, LoaderDirective, LoaderModule, Message, MessageComponent, MessageHostComponent, MessageModule, MessageService, ModalCloseReason, ModalContainerComponent, ModalInstance, ModalModule, ModalService, NoAutofillDirective, NoAutofillModule, NumberPipe, NumberPipeModule, NumericCellComponent, NumericFilter, NumericFilterComponent, NumericFilterValue, OnlyNumberDirective, OnlyNumberModule, OverlayContainerService, PagerComponent, PagerModule, PagerState, PagerUtil, PanelComponent, PanelModule, PopupContentComponent, PositionUtil, ProgressBarComponent, ProgressBarModule, PropertyGridComponent, PropertyGridItemDescriptionDirective, PropertyGridModule, RadioButtonComponent, RadioComponent, RadioModule, RangeCalendarComponent, ResizeDragDirective, ResizeDragModule, ResizePanelComponent, ResizePanelModule, SLIDER_CONTROL_VALUE_ACCESSOR, SWITCH_CONTROL_VALUE_ACCESSOR, SceneComponent, ScrollIntoViewDirective, ScrollIntoViewModule, ScrollableComponent, ScrollableDirective, ScrollableModule, SelectComponent, SelectModule, SelectOptionDirective, SelectType, SelectValueDirective, Series3dHost, Series3dType, SidebarComponent, SidebarModule, SidebarPosition, SortEvent, SortParam, StateUtil, StringCellComponent, StringFilter, StringFilterComponent, StringFilterType, StringUtil, SwitchButtonComponent, SwitchComponent, SwitchModule, TOGGLE_CONTROL_VALUE_ACCESSOR, TabComponent, TabContentDirective, TabTitleDirective, TableBodyComponent, TableColumn, TableColumnStore, TableComponent, TableHeadComponent, TableModule, TableRow, TableService, TableUtil, TabsComponent, TabsModule, TetaConfigService, TetaContentRef, TetaDatePipe, TetaDatePipeModule, TetaSize, TetaTemplateDirective, TetaTemplateModule, TextFieldComponent, ThemeSwitchComponent, ThemeSwitchModule, ThemeSwitchService, ThreeChartComponent, ToggleComponent, ToggleModule, ToolbarComponent, ToolbarModule, TooltipDirective, TooltipModule, TreeComponent, TreeItemToggleComponent, TreeModule, TreeService, VerticalAlign, WINDOW, boolOrFuncCallback, enLocale, exportDomToImage, formatNumber, getCellComponent, getPrecision, isFunction, prependZero, ruLocale, tetaZoneFree, tetaZoneFull, tetaZoneOptimized };
|
|
14210
14294
|
//# sourceMappingURL=tetacom-ng-components.mjs.map
|