ontimize-web-ngx 15.7.1 → 15.8.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/esm2020/lib/components/app-sidenav/o-app-sidenav.component.mjs +1 -1
- package/esm2020/lib/components/filter-builder/o-filter-builder.component.mjs +1 -1
- package/esm2020/lib/components/o-service-base-component.class.mjs +1 -1
- package/esm2020/lib/components/o-service-component.class.mjs +1 -1
- package/esm2020/lib/components/table/column/cell-renderer/cell-renderer.mjs +11 -4
- package/esm2020/lib/components/table/column/cell-renderer/chip/o-table-cell-renderer-chip.component.mjs +65 -0
- package/esm2020/lib/components/table/column/cell-renderer/index.mjs +3 -1
- package/esm2020/lib/components/table/column/cell-renderer/list/o-table-cell-renderer-list.component.mjs +41 -0
- package/esm2020/lib/components/table/column/o-table-column.component.mjs +8 -2
- package/esm2020/lib/components/table/extensions/dialog/filter-by-column/o-table-filter-by-column-data-dialog.component.mjs +3 -3
- package/esm2020/lib/components/table/extensions/header/table-header-select-all/o-table-header-select-all.component.mjs +3 -1
- package/esm2020/lib/components/table/o-table.component.mjs +262 -71
- package/esm2020/lib/components/table/o-table.module.mjs +35 -33
- package/esm2020/lib/interfaces/column-filter-change-event.interface.mjs +2 -0
- package/esm2020/lib/interfaces/index.mjs +2 -1
- package/esm2020/lib/layouts/form-layout/o-form-layout-manager.component.mjs +1 -1
- package/esm2020/lib/types/table/o-table-global-config.type.mjs +1 -1
- package/fesm2015/ontimize-web-ngx.mjs +376 -78
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +374 -78
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/lib/components/app-sidenav/o-app-sidenav.component.d.ts +1 -1
- package/lib/components/filter-builder/o-filter-builder.component.d.ts +1 -1
- package/lib/components/o-service-base-component.class.d.ts +1 -1
- package/lib/components/o-service-component.class.d.ts +1 -1
- package/lib/components/table/column/cell-renderer/cell-renderer.d.ts +5 -1
- package/lib/components/table/column/cell-renderer/chip/o-table-cell-renderer-chip.component.d.ts +23 -0
- package/lib/components/table/column/cell-renderer/index.d.ts +2 -0
- package/lib/components/table/column/cell-renderer/list/o-table-cell-renderer-list.component.d.ts +14 -0
- package/lib/components/table/column/o-table-column.component.d.ts +2 -1
- package/lib/components/table/extensions/header/table-header-select-all/o-table-header-select-all.component.d.ts +2 -1
- package/lib/components/table/o-table.component.d.ts +22 -3
- package/lib/components/table/o-table.module.d.ts +48 -46
- package/lib/interfaces/column-filter-change-event.interface.d.ts +6 -0
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/types/table/o-table-global-config.type.d.ts +2 -0
- package/package.json +1 -1
- package/theme.scss +0 -2
|
@@ -51,7 +51,7 @@ export declare class OAppSidenavComponent extends OAppSidenavComponentStateServi
|
|
|
51
51
|
getRouteKey(): string;
|
|
52
52
|
beforeunloadHandler(): void;
|
|
53
53
|
protected registerLocalStorageServiceRouteChange(): void;
|
|
54
|
-
|
|
54
|
+
updateStateStorage(): void;
|
|
55
55
|
refreshMenuRoots(): void;
|
|
56
56
|
onResize(): void;
|
|
57
57
|
get layoutMode(): OAppLayoutMode;
|
|
@@ -55,7 +55,7 @@ export declare class OFilterBuilderComponent implements AfterViewInit, OnDestroy
|
|
|
55
55
|
getDataToStore(): OFilterBuilderComponentStateClass;
|
|
56
56
|
getComponentKey(): string;
|
|
57
57
|
storeFilterInState(arg: OFilterDefinition): void;
|
|
58
|
-
|
|
58
|
+
updateStateStorage(): void;
|
|
59
59
|
getRouteKey(): string;
|
|
60
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<OFilterBuilderComponent, never>;
|
|
61
61
|
static ɵcmp: i0.ɵɵComponentDeclaration<OFilterBuilderComponent, "o-filter-builder", never, { "filters": "filters"; "targetCmp": "target"; "expressionBuilder": "expression-builder"; "queryOnChange": "query-on-change"; "queryOnChangeDelay": "query-on-change-delay"; "queryOnChangeEventType": "query-on-change-event-type"; "oattr": "attr"; }, { "onFilter": "onFilter"; "onClear": "onClear"; }, never, never, false, never>;
|
|
@@ -110,7 +110,7 @@ export declare abstract class AbstractOServiceBaseComponent<T extends AbstractCo
|
|
|
110
110
|
getForm(): OFormComponent;
|
|
111
111
|
getParentKeysEquivalence(): {};
|
|
112
112
|
getDataService(): BaseService<ServiceResponse>;
|
|
113
|
-
|
|
113
|
+
updateStateStorage(): void;
|
|
114
114
|
protected setData(data: any, sqlTypes?: any, replace?: boolean): void;
|
|
115
115
|
protected registerLocalStorageServiceRouteChange(): void;
|
|
116
116
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractOServiceBaseComponent<any>, never>;
|
|
@@ -74,7 +74,7 @@ export declare abstract class AbstractOServiceComponent<T extends AbstractCompon
|
|
|
74
74
|
onDoubleClick: EventEmitter<any>;
|
|
75
75
|
onDataLoaded: EventEmitter<any>;
|
|
76
76
|
onPaginatedDataLoaded: EventEmitter<any>;
|
|
77
|
-
onSearch: EventEmitter<
|
|
77
|
+
onSearch: EventEmitter<string>;
|
|
78
78
|
filterBuilder: OFilterBuilderComponent;
|
|
79
79
|
protected _selection: SelectionModel<any>;
|
|
80
80
|
get selection(): SelectionModel<any>;
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { OTableCellRendererActionComponent } from './action/o-table-cell-renderer-action.component';
|
|
2
2
|
import { OTableCellRendererBooleanComponent } from './boolean/o-table-cell-renderer-boolean.component';
|
|
3
|
+
import { OTableCellRendererChipComponent } from './chip/o-table-cell-renderer-chip.component';
|
|
3
4
|
import { OTableCellRendererCurrencyComponent } from './currency/o-table-cell-renderer-currency.component';
|
|
4
5
|
import { OTableCellRendererDateComponent } from './date/o-table-cell-renderer-date.component';
|
|
5
6
|
import { OTableCellRendererImageComponent } from './image/o-table-cell-renderer-image.component';
|
|
6
7
|
import { OTableCellRendererIntegerComponent } from './integer/o-table-cell-renderer-integer.component';
|
|
8
|
+
import { OTableCellRendererListComponent } from './list/o-table-cell-renderer-list.component';
|
|
7
9
|
import { OTableCellRendererPercentageComponent } from './percentage/o-table-cell-renderer-percentage.component';
|
|
8
10
|
import { OTableCellRendererRealComponent } from './real/o-table-cell-renderer-real.component';
|
|
9
11
|
import { OTableCellRendererServiceComponent } from './service/o-table-cell-renderer-service.component';
|
|
10
12
|
import { OTableCellRendererTimeComponent } from './time/o-table-cell-renderer-time.component';
|
|
11
13
|
import { OTableCellRendererTranslateComponent } from './translate/o-table-cell-renderer-translate.component';
|
|
12
|
-
export declare const O_TABLE_CELL_RENDERERS: (typeof OTableCellRendererActionComponent | typeof OTableCellRendererBooleanComponent | typeof OTableCellRendererIntegerComponent | typeof OTableCellRendererCurrencyComponent | typeof OTableCellRendererDateComponent | typeof OTableCellRendererImageComponent | typeof OTableCellRendererServiceComponent | typeof OTableCellRendererTimeComponent | typeof OTableCellRendererTranslateComponent)[];
|
|
14
|
+
export declare const O_TABLE_CELL_RENDERERS: (typeof OTableCellRendererActionComponent | typeof OTableCellRendererBooleanComponent | typeof OTableCellRendererChipComponent | typeof OTableCellRendererIntegerComponent | typeof OTableCellRendererCurrencyComponent | typeof OTableCellRendererDateComponent | typeof OTableCellRendererImageComponent | typeof OTableCellRendererListComponent | typeof OTableCellRendererServiceComponent | typeof OTableCellRendererTimeComponent | typeof OTableCellRendererTranslateComponent)[];
|
|
13
15
|
export declare const O_TABLE_CELL_RENDERERS_INPUTS: string[];
|
|
14
16
|
export declare const O_TABLE_CELL_RENDERERS_OUTPUTS: string[];
|
|
15
17
|
export declare const renderersMapping: {
|
|
@@ -24,4 +26,6 @@ export declare const renderersMapping: {
|
|
|
24
26
|
service: typeof OTableCellRendererServiceComponent;
|
|
25
27
|
translate: typeof OTableCellRendererTranslateComponent;
|
|
26
28
|
time: typeof OTableCellRendererTimeComponent;
|
|
29
|
+
chip: typeof OTableCellRendererChipComponent;
|
|
30
|
+
list: typeof OTableCellRendererListComponent;
|
|
27
31
|
};
|
package/lib/components/table/column/cell-renderer/chip/o-table-cell-renderer-chip.component.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Injector, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { OBaseTableCellRenderer } from '../o-base-table-cell-renderer.class';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const DEFAULT_INPUTS_O_TABLE_CELL_RENDERER_CHIP: string[];
|
|
5
|
+
export declare class OTableCellRendererChipComponent extends OBaseTableCellRenderer implements OnInit {
|
|
6
|
+
protected injector: Injector;
|
|
7
|
+
templateref: TemplateRef<any>;
|
|
8
|
+
iconPosition: string;
|
|
9
|
+
svgIcon: string;
|
|
10
|
+
icon: string;
|
|
11
|
+
translate: boolean;
|
|
12
|
+
constructor(injector: Injector);
|
|
13
|
+
initialize(): void;
|
|
14
|
+
getCellData(value: any): any;
|
|
15
|
+
isArray(value: any): boolean;
|
|
16
|
+
isIconPositionLeft(): boolean;
|
|
17
|
+
isIconPositionRight(): boolean;
|
|
18
|
+
isSvgIconPositionRight(): boolean;
|
|
19
|
+
isSvgIconPositionLeft(): boolean;
|
|
20
|
+
shouldTranslate(): boolean;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OTableCellRendererChipComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OTableCellRendererChipComponent, "o-table-cell-renderer-chip", never, { "icon": "icon"; "svgIcon": "svg-icon"; "iconPosition": "icon-position"; "translate": "boolean"; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -10,3 +10,5 @@ export * from './real/o-table-cell-renderer-real.component';
|
|
|
10
10
|
export * from './service/o-table-cell-renderer-service.component';
|
|
11
11
|
export * from './time/o-table-cell-renderer-time.component';
|
|
12
12
|
export * from './translate/o-table-cell-renderer-translate.component';
|
|
13
|
+
export * from './chip/o-table-cell-renderer-chip.component';
|
|
14
|
+
export * from './list/o-table-cell-renderer-list.component';
|
package/lib/components/table/column/cell-renderer/list/o-table-cell-renderer-list.component.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Injector, TemplateRef } from '@angular/core';
|
|
2
|
+
import { OBaseTableCellRenderer } from '../o-base-table-cell-renderer.class';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const O_TABLE_CELL_RENDERER_LIST: string[];
|
|
5
|
+
export declare class OTableCellRendererListComponent extends OBaseTableCellRenderer {
|
|
6
|
+
protected injector: Injector;
|
|
7
|
+
templateref: TemplateRef<any>;
|
|
8
|
+
constructor(injector: Injector);
|
|
9
|
+
initialize(): void;
|
|
10
|
+
getCellData(cellvalue: any): string;
|
|
11
|
+
getTooltip(cellValue: any): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OTableCellRendererListComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OTableCellRendererListComponent, "o-table-cell-renderer-list", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -74,6 +74,7 @@ export declare class OTableColumnComponent implements OTableColumn, OnDestroy, O
|
|
|
74
74
|
oDateFormat: string;
|
|
75
75
|
oHourFormat: number;
|
|
76
76
|
valueBase: OPercentageValueBaseType;
|
|
77
|
+
protected svgIcon: string;
|
|
77
78
|
protected orequired: boolean;
|
|
78
79
|
showPlaceHolder: boolean;
|
|
79
80
|
olabel: string;
|
|
@@ -126,5 +127,5 @@ export declare class OTableColumnComponent implements OTableColumn, OnDestroy, O
|
|
|
126
127
|
set filterSource(val: string);
|
|
127
128
|
get filterSource(): string;
|
|
128
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTableColumnComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OTableColumnComponent, "o-table-column", never, { "attr": "attr"; "title": "title"; "titleAlign": "title-align"; "contentAlign": "content-align"; "orderable": "orderable"; "searchable": "searchable"; "groupable": "groupable"; "type": "type"; "editable": "editable"; "width": "width"; "minWidth": "min-width"; "maxWidth": "max-width"; "asyncLoad": "async-load"; "sqlType": "sql-type"; "tooltip": "tooltip"; "tooltipValue": "tooltip-value"; "tooltipFunction": "tooltip-function"; "multiline": "multiline"; "resizable": "resizable"; "filterExpressionFunction": "filter-expression-function"; "class": "class"; "angularValidatorsFn": "validators"; "angularValidatorsFnErrors": "validators-errors"; "angularAsyncValidatorsFn": "async-validators"; "valueColumn": "value-column"; "trueValue": "true-value"; "falseValue": "false-value"; "booleanType": "boolean-type"; "renderTrueValue": "render-true-value"; "renderFalseValue": "render-false-value"; "renderType": "render-type"; "grouping": "grouping"; "thousandSeparator": "thousand-separator"; "decimalSeparator": "decimal-separator"; "minDecimalDigits": "min-decimal-digits"; "maxDecimalDigits": "max-decimal-digits"; "currencySymbol": "currency-symbol"; "currencySymbolPosition": "currency-symbol-position"; "format": "format"; "imageType": "image-type"; "emptyImage": "empty-image"; "avatar": "avatar"; "icon": "icon"; "svgIcon": "svg-icon"; "action": "action"; "text": "text"; "iconPosition": "icon-position"; "entity": "entity"; "service": "service"; "columns": "columns"; "translate": "translate"; "valueColumnType": "value-column-type"; "parentKeys": "parent-keys"; "queryMethod": "query-method"; "serviceType": "service-type"; "translateArgsFn": "translate-params"; "configureServiceArgs": "configure-service-args"; "orequired": "required"; "showPlaceHolder": "show-placeholder"; "olabel": "label"; "updateRecordOnEdit": "update-record-on-edit"; "showNotificationOnEdit": "show-notification-on-edit"; "enabled": "enabled"; "min": "min"; "max": "max"; "step": "step"; "locale": "locale"; "oStartView": "start-view"; "oTouchUi": "touch-ui"; "startAt": "start-at"; "filterDate": "filter-date"; "dateValueType": "date-value-type"; "oDateFormat": "date-format"; "oDateLocale": "date-locale"; "oDateStartView": "date-start-view"; "oMinDate": "date-min"; "oMaxDate": "date-max"; "oDateTouchUi": "date-touch-ui"; "oDateStartAt": "date-start-at"; "oHourFormat": "hour-format"; "oHourMin": "hour-min"; "oHourMax": "hour-max"; "oHourPlaceholder": "hour-placeholder"; "oDatePlaceholder": "date-placeholder"; }, { "onClick": "onClick"; "onDataLoaded": "onDataLoaded"; "editionStarted": "editionStarted"; "editionCancelled": "editionCancelled"; "editionCommitted": "editionCommitted"; "onPostUpdateRecord": "onPostUpdateRecord"; }, never, never, false, never>;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OTableColumnComponent, "o-table-column", never, { "attr": "attr"; "title": "title"; "titleAlign": "title-align"; "contentAlign": "content-align"; "orderable": "orderable"; "searchable": "searchable"; "groupable": "groupable"; "type": "type"; "editable": "editable"; "width": "width"; "minWidth": "min-width"; "maxWidth": "max-width"; "asyncLoad": "async-load"; "sqlType": "sql-type"; "tooltip": "tooltip"; "tooltipValue": "tooltip-value"; "tooltipFunction": "tooltip-function"; "multiline": "multiline"; "resizable": "resizable"; "filterExpressionFunction": "filter-expression-function"; "class": "class"; "angularValidatorsFn": "validators"; "angularValidatorsFnErrors": "validators-errors"; "angularAsyncValidatorsFn": "async-validators"; "valueColumn": "value-column"; "trueValue": "true-value"; "falseValue": "false-value"; "booleanType": "boolean-type"; "renderTrueValue": "render-true-value"; "renderFalseValue": "render-false-value"; "renderType": "render-type"; "grouping": "grouping"; "thousandSeparator": "thousand-separator"; "decimalSeparator": "decimal-separator"; "minDecimalDigits": "min-decimal-digits"; "maxDecimalDigits": "max-decimal-digits"; "currencySymbol": "currency-symbol"; "currencySymbolPosition": "currency-symbol-position"; "valueBase": "value-base"; "format": "format"; "imageType": "image-type"; "emptyImage": "empty-image"; "avatar": "avatar"; "icon": "icon"; "svgIcon": "svg-icon"; "action": "action"; "text": "text"; "iconPosition": "icon-position"; "entity": "entity"; "service": "service"; "columns": "columns"; "translate": "translate"; "valueColumnType": "value-column-type"; "parentKeys": "parent-keys"; "queryMethod": "query-method"; "serviceType": "service-type"; "translateArgsFn": "translate-params"; "configureServiceArgs": "configure-service-args"; "orequired": "required"; "showPlaceHolder": "show-placeholder"; "olabel": "label"; "updateRecordOnEdit": "update-record-on-edit"; "showNotificationOnEdit": "show-notification-on-edit"; "enabled": "enabled"; "min": "min"; "max": "max"; "step": "step"; "locale": "locale"; "oStartView": "start-view"; "oTouchUi": "touch-ui"; "startAt": "start-at"; "filterDate": "filter-date"; "dateValueType": "date-value-type"; "oDateFormat": "date-format"; "oDateLocale": "date-locale"; "oDateStartView": "date-start-view"; "oMinDate": "date-min"; "oMaxDate": "date-max"; "oDateTouchUi": "date-touch-ui"; "oDateStartAt": "date-start-at"; "oHourFormat": "hour-format"; "oHourMin": "hour-min"; "oHourMax": "hour-max"; "oHourPlaceholder": "hour-placeholder"; "oDatePlaceholder": "date-placeholder"; }, { "onClick": "onClick"; "onDataLoaded": "onDataLoaded"; "editionStarted": "editionStarted"; "editionCancelled": "editionCancelled"; "editionCommitted": "editionCommitted"; "onPostUpdateRecord": "onPostUpdateRecord"; }, never, never, false, never>;
|
|
130
131
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { AfterViewInit } from "@angular/core";
|
|
1
2
|
import { OTableHeaderComponent } from "../table-header/o-table-header.component";
|
|
2
3
|
import { BehaviorSubject, Subscription } from "rxjs";
|
|
3
4
|
import type { OColumn } from "../../../column/o-column.class";
|
|
4
5
|
import { OTableBase } from "../../../o-table-base.class";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class OTableHeaderSelectAllComponent extends OTableHeaderComponent {
|
|
7
|
+
export declare class OTableHeaderSelectAllComponent extends OTableHeaderComponent implements AfterViewInit {
|
|
7
8
|
table: OTableBase;
|
|
8
9
|
column: OColumn;
|
|
9
10
|
resizable: boolean;
|
|
@@ -57,6 +57,7 @@ import { OQueryParams } from '../../types/query-params.type';
|
|
|
57
57
|
import { MatRow, MatTable } from '@angular/material/table';
|
|
58
58
|
import { PaginationData } from '../../interfaces/pagination-data.interface';
|
|
59
59
|
import { OTableLoadingService } from './o-table-loading.service';
|
|
60
|
+
import { ColumnFilterChangeEvent } from '../../interfaces/column-filter-change-event.interface';
|
|
60
61
|
import * as i0 from "@angular/core";
|
|
61
62
|
export declare const DEFAULT_INPUTS_O_TABLE: string[];
|
|
62
63
|
export declare const DEFAULT_OUTPUTS_O_TABLE: string[];
|
|
@@ -118,6 +119,7 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
118
119
|
showResetWidthOption: boolean;
|
|
119
120
|
readOnly: boolean;
|
|
120
121
|
showNotificationOfReadOnly: boolean;
|
|
122
|
+
selectionOnRowClick: boolean;
|
|
121
123
|
showExpandableIconFunction: (row: any, rowIndex: number) => boolean | Promise<boolean> | Observable<boolean>;
|
|
122
124
|
readOnlyFunction: (configuration: any) => boolean;
|
|
123
125
|
readOnlyConfiguration: any;
|
|
@@ -191,7 +193,8 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
191
193
|
onRowDeleted: EventEmitter<any>;
|
|
192
194
|
onReinitialize: EventEmitter<any>;
|
|
193
195
|
onContentChange: EventEmitter<any>;
|
|
194
|
-
onFilterByColumnChange: EventEmitter<
|
|
196
|
+
onFilterByColumnChange: EventEmitter<ColumnFilterChangeEvent>;
|
|
197
|
+
onSortChange: EventEmitter<SQLOrder[]>;
|
|
195
198
|
protected selectionChangeSubscription: Subscription;
|
|
196
199
|
oTableFilterByColumnDataDialogComponent: OTableFilterByColumnDataDialogComponent;
|
|
197
200
|
oTableColumnsFilterComponent: OTableColumnsFilterComponent;
|
|
@@ -239,6 +242,7 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
239
242
|
quickfilterContentChild: OTableQuickfilter;
|
|
240
243
|
exportOptsTemplate: QueryList<OTableExportButtonComponent>;
|
|
241
244
|
tableColumnSelectAllContentChild: OTableColumnSelectAllDirective;
|
|
245
|
+
private savedScrollPosition;
|
|
242
246
|
groupedColumnsArray: string[];
|
|
243
247
|
updateScrolledState(): void;
|
|
244
248
|
protected _isColumnFiltersActive: boolean;
|
|
@@ -300,7 +304,7 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
300
304
|
registerTabListener(): void;
|
|
301
305
|
protected insideTabBugWorkaround(): void;
|
|
302
306
|
registerSortListener(): void;
|
|
303
|
-
protected
|
|
307
|
+
protected handleSortChange(sortArray: any[]): void;
|
|
304
308
|
setDatasource(): void;
|
|
305
309
|
protected registerDataSourceListeners(): void;
|
|
306
310
|
getExpandedRowContainerClass(rowIndex: number): string;
|
|
@@ -343,6 +347,10 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
343
347
|
reloadDataWithClearExpandableRows(clearSelectedItems?: boolean, clearExpandableItems?: boolean): void;
|
|
344
348
|
handleClick(row: any, column: OColumn, rowIndex: number, cellRef: ElementRef, event: MouseEvent): void;
|
|
345
349
|
doHandleClick(row: any, column: string, rowIndex: number, $event: MouseEvent): void;
|
|
350
|
+
private handleOtherSelectionModes;
|
|
351
|
+
private handleDetailModeClick;
|
|
352
|
+
private handleMultipleSelectionCtrl;
|
|
353
|
+
private handleMultipleSelectionShift;
|
|
346
354
|
handleMultipleSelection(item: any): void;
|
|
347
355
|
protected saveDataNavigationInLocalStorage(): void;
|
|
348
356
|
handleDoubleClick(row: any, column: OColumn, rowIndex: number, cellRef: ElementRef, event: MouseEvent): void;
|
|
@@ -361,12 +369,16 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
361
369
|
selectAll(): void;
|
|
362
370
|
selectionCheckboxToggle(event: MatCheckboxChange, row: any): void;
|
|
363
371
|
selectedRow(row: any): void;
|
|
372
|
+
private setSelectedMultiple;
|
|
373
|
+
selectedMultiplesRows(rows: any[]): void;
|
|
364
374
|
clearSelection(): void;
|
|
365
375
|
setSelected(item: any): void;
|
|
366
376
|
setSelectedByKeys(keyValues: Array<any>): void;
|
|
367
377
|
setSelectedByMultipleKeys(keyValues: Array<Object>): void;
|
|
368
378
|
setSelectedByRowIds(rowIds: Array<number>): void;
|
|
369
379
|
get showDeleteButton(): boolean;
|
|
380
|
+
private canSelectRow;
|
|
381
|
+
private filterValidRowsForSelection;
|
|
370
382
|
getTrackByFunction(): (index: number, item: any) => string;
|
|
371
383
|
queryRowAsyncData(rowIndex: number, rowData: any): void;
|
|
372
384
|
getValue(): any[];
|
|
@@ -421,6 +433,8 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
421
433
|
hasTabGroupChangeSubscription(): boolean;
|
|
422
434
|
isEmpty(value: any): boolean;
|
|
423
435
|
setFiltersConfiguration(storage?: OTableComponentStateClass): void;
|
|
436
|
+
getColumnValueFilters(): OColumnValueFilter[];
|
|
437
|
+
getColumnValueFilterByAttr(attr: string): OColumnValueFilter;
|
|
424
438
|
onStoreConfigurationClicked(): void;
|
|
425
439
|
onApplyConfigurationClicked(): void;
|
|
426
440
|
applyDefaultConfiguration(): void;
|
|
@@ -444,6 +458,9 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
444
458
|
getThWidthFromOColumn(oColumn: OColumn): any;
|
|
445
459
|
getColumnInsertable(name: any): string;
|
|
446
460
|
isRowSelected(row: any): boolean;
|
|
461
|
+
toggleRowSelection(row: any): void;
|
|
462
|
+
removeFromSelection(rows: any[]): void;
|
|
463
|
+
addToSelection(rows: any[]): void;
|
|
447
464
|
getColumnWidthFromState(colDef: OColumn): string;
|
|
448
465
|
refreshColumnsWidthFromLocalStorage(): void;
|
|
449
466
|
refreshColumnsWidthFromOriginalDefinition(): void;
|
|
@@ -497,7 +514,9 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
497
514
|
attr: string;
|
|
498
515
|
title: string;
|
|
499
516
|
}[]): void;
|
|
517
|
+
private saveScrollPosition;
|
|
518
|
+
private restoreScrollPosition;
|
|
500
519
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTableComponent, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
501
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OTableComponent, "o-table", never, { "visibleColumns": "visible-columns"; "defaultVisibleColumns": "default-visible-columns"; "sortColumns": "sort-columns"; "quickFilterCallback": "quick-filter-function"; "deleteButton": "delete-button"; "refreshButton": "refresh-button"; "columnsVisibilityButton": "columns-visibility-button"; "exportButton": "export-button"; "showConfigurationOption": "show-configuration-option"; "showButtonsText": "show-buttons-text"; "selectAllCheckbox": "select-all-checkbox"; "paginationControls": "pagination-controls"; "fixedHeader": "fixed-header"; "showTitle": "show-title"; "editionMode": "edition-mode"; "selectionMode": "selection-mode"; "horizontalScroll": "horizontal-scroll"; "showPaginatorFirstLastButtons": "show-paginator-first-last-buttons"; "autoAlignTitles": "auto-align-titles"; "multipleSort": "multiple-sort"; "selectAllCheckboxVisible": "select-all-checkbox-visible"; "orderable": "orderable"; "resizable": "resizable"; "keepSelectedItems": "keep-selected-items"; "exportMode": "export-mode"; "exportServiceType": "export-service-type"; "autoAdjust": "auto-adjust"; "showFilterOption": "show-filter-option"; "visibleExportDialogButtons": "visible-export-dialog-buttons"; "rowClass": "row-class"; "filterColumnActiveByDefault": "filter-column-active-by-default"; "groupedColumns": "grouped-columns"; "groupable": "groupable"; "expandGroupsSameLevel": "expand-groups-same-level"; "collapseGroupedColumns": "collapse-grouped-columns"; "virtualScroll": "virtual-scroll"; "contextMenu": "context-menu"; "showExpandableIconFunction": "show-expandable-icon-function"; "showReportOnDemandOption": "show-report-on-demand-option"; "showChartsOnDemandOption": "show-charts-on-demand-option"; "showResetWidthOption": "show-reset-width-option"; "disableSelectionFunction": "disable-selection-function"; "nonHidableColumns": "non-hidable-columns"; "readOnly": "read-only"; "readOnlyConfiguration": "read-only-configuration"; "showNotificationOfReadOnly": "show-notification-of-read-only"; }, { "onRowSelected": "onRowSelected"; "onRowDeselected": "onRowDeselected"; "onRowDeleted": "onRowDeleted"; }, ["tableRowExpandable", "quickfilterContentChild", "tableColumnSelectAllContentChild", "contextMenuContentChild", "tableOptions", "tableButtons", "exportOptsTemplate"], ["o-table-button", "[o-table-toolbar][position=start]", "[o-table-toolbar][position=end]", "[o-table-toolbar]", "o-table-quickfilter", "o-table-option"], false, never>;
|
|
520
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OTableComponent, "o-table", never, { "visibleColumns": "visible-columns"; "defaultVisibleColumns": "default-visible-columns"; "sortColumns": "sort-columns"; "quickFilterCallback": "quick-filter-function"; "deleteButton": "delete-button"; "refreshButton": "refresh-button"; "columnsVisibilityButton": "columns-visibility-button"; "exportButton": "export-button"; "showConfigurationOption": "show-configuration-option"; "showButtonsText": "show-buttons-text"; "selectAllCheckbox": "select-all-checkbox"; "paginationControls": "pagination-controls"; "fixedHeader": "fixed-header"; "showTitle": "show-title"; "editionMode": "edition-mode"; "selectionMode": "selection-mode"; "horizontalScroll": "horizontal-scroll"; "showPaginatorFirstLastButtons": "show-paginator-first-last-buttons"; "autoAlignTitles": "auto-align-titles"; "multipleSort": "multiple-sort"; "selectAllCheckboxVisible": "select-all-checkbox-visible"; "orderable": "orderable"; "resizable": "resizable"; "keepSelectedItems": "keep-selected-items"; "exportMode": "export-mode"; "exportServiceType": "export-service-type"; "autoAdjust": "auto-adjust"; "showFilterOption": "show-filter-option"; "visibleExportDialogButtons": "visible-export-dialog-buttons"; "rowClass": "row-class"; "filterColumnActiveByDefault": "filter-column-active-by-default"; "groupedColumns": "grouped-columns"; "groupable": "groupable"; "expandGroupsSameLevel": "expand-groups-same-level"; "collapseGroupedColumns": "collapse-grouped-columns"; "virtualScroll": "virtual-scroll"; "contextMenu": "context-menu"; "showExpandableIconFunction": "show-expandable-icon-function"; "showReportOnDemandOption": "show-report-on-demand-option"; "showChartsOnDemandOption": "show-charts-on-demand-option"; "showResetWidthOption": "show-reset-width-option"; "disableSelectionFunction": "disable-selection-function"; "nonHidableColumns": "non-hidable-columns"; "readOnly": "read-only"; "readOnlyConfiguration": "read-only-configuration"; "showNotificationOfReadOnly": "show-notification-of-read-only"; "selectionOnRowClick": "selection-on-row-click"; }, { "onRowSelected": "onRowSelected"; "onRowDeselected": "onRowDeselected"; "onRowDeleted": "onRowDeleted"; "onFilterByColumnChange": "onFilterByColumnChange"; "onSortChange": "onSortChange"; "onSearch": "onSearch"; }, ["tableRowExpandable", "quickfilterContentChild", "tableColumnSelectAllContentChild", "contextMenuContentChild", "tableOptions", "tableButtons", "exportOptsTemplate"], ["o-table-button", "[o-table-toolbar][position=start]", "[o-table-toolbar][position=end]", "[o-table-toolbar]", "o-table-quickfilter", "o-table-option"], false, never>;
|
|
502
521
|
}
|
|
503
522
|
export {};
|
|
@@ -18,53 +18,55 @@ import * as i16 from "./column/cell-renderer/percentage/o-table-cell-renderer-pe
|
|
|
18
18
|
import * as i17 from "./column/cell-renderer/service/o-table-cell-renderer-service.component";
|
|
19
19
|
import * as i18 from "./column/cell-renderer/translate/o-table-cell-renderer-translate.component";
|
|
20
20
|
import * as i19 from "./column/cell-renderer/time/o-table-cell-renderer-time.component";
|
|
21
|
-
import * as i20 from "./column/cell-
|
|
22
|
-
import * as i21 from "./column/cell-
|
|
23
|
-
import * as i22 from "./column/cell-editor/
|
|
24
|
-
import * as i23 from "./column/cell-editor/
|
|
25
|
-
import * as i24 from "./column/cell-editor/
|
|
26
|
-
import * as i25 from "./column/cell-editor/
|
|
27
|
-
import * as i26 from "./column/cell-editor/
|
|
28
|
-
import * as i27 from "./
|
|
29
|
-
import * as i28 from "./
|
|
30
|
-
import * as i29 from "./extensions/dialog/
|
|
31
|
-
import * as i30 from "./extensions/dialog/
|
|
32
|
-
import * as i31 from "./extensions/dialog/
|
|
33
|
-
import * as i32 from "./extensions/dialog/
|
|
34
|
-
import * as i33 from "./extensions/
|
|
35
|
-
import * as i34 from "./extensions/
|
|
36
|
-
import * as i35 from "./extensions/header/table-
|
|
37
|
-
import * as i36 from "./extensions/header/table-
|
|
38
|
-
import * as i37 from "./extensions/header/table-
|
|
39
|
-
import * as i38 from "./extensions/header/table-
|
|
40
|
-
import * as i39 from "./extensions/header/table-
|
|
41
|
-
import * as i40 from "./extensions/header/table-
|
|
42
|
-
import * as i41 from "./extensions/header/table-
|
|
43
|
-
import * as i42 from "./extensions/header/table-
|
|
44
|
-
import * as i43 from "./extensions/header/table-
|
|
45
|
-
import * as i44 from "./extensions/header/table-
|
|
46
|
-
import * as i45 from "./extensions/header/table-
|
|
47
|
-
import * as i46 from "./extensions/header/table-
|
|
48
|
-
import * as i47 from "./extensions/header/table-
|
|
49
|
-
import * as i48 from "./extensions/
|
|
50
|
-
import * as i49 from "./extensions/
|
|
51
|
-
import * as i50 from "./extensions/
|
|
52
|
-
import * as i51 from "./extensions/
|
|
53
|
-
import * as i52 from "
|
|
54
|
-
import * as i53 from "
|
|
55
|
-
import * as i54 from "@angular/
|
|
56
|
-
import * as i55 from "
|
|
57
|
-
import * as i56 from "@angular/cdk/
|
|
58
|
-
import * as i57 from "
|
|
59
|
-
import * as i58 from "
|
|
60
|
-
import * as i59 from "
|
|
61
|
-
import * as i60 from "
|
|
62
|
-
import * as i61 from "
|
|
63
|
-
import * as i62 from "
|
|
64
|
-
import * as i63 from "
|
|
65
|
-
import * as i64 from "../
|
|
21
|
+
import * as i20 from "./column/cell-renderer/chip/o-table-cell-renderer-chip.component";
|
|
22
|
+
import * as i21 from "./column/cell-renderer/list/o-table-cell-renderer-list.component";
|
|
23
|
+
import * as i22 from "./column/cell-editor/boolean/o-table-cell-editor-boolean.component";
|
|
24
|
+
import * as i23 from "./column/cell-editor/date/o-table-cell-editor-date.component";
|
|
25
|
+
import * as i24 from "./column/cell-editor/integer/o-table-cell-editor-integer.component";
|
|
26
|
+
import * as i25 from "./column/cell-editor/real/o-table-cell-editor-real.component";
|
|
27
|
+
import * as i26 from "./column/cell-editor/text/o-table-cell-editor-text.component";
|
|
28
|
+
import * as i27 from "./column/cell-editor/email/o-table-cell-editor-email.component";
|
|
29
|
+
import * as i28 from "./column/cell-editor/time/o-table-cell-editor-time.component";
|
|
30
|
+
import * as i29 from "./extensions/dialog/apply-configuration/o-table-apply-configuration-dialog.component";
|
|
31
|
+
import * as i30 from "./extensions/dialog/export/o-table-export-dialog.component";
|
|
32
|
+
import * as i31 from "./extensions/dialog/store-configuration/o-table-store-configuration-dialog.component";
|
|
33
|
+
import * as i32 from "./extensions/dialog/visible-columns/o-table-visible-columns-dialog.component";
|
|
34
|
+
import * as i33 from "./extensions/dialog/filter-by-column/o-table-filter-by-column-data-dialog.component";
|
|
35
|
+
import * as i34 from "./extensions/dialog/group-by-columns/o-table-group-by-columns-dialog.component";
|
|
36
|
+
import * as i35 from "./extensions/header/table-button/o-table-button.component";
|
|
37
|
+
import * as i36 from "./extensions/header/table-buttons/o-table-buttons.component";
|
|
38
|
+
import * as i37 from "./extensions/header/table-column-resizer/o-table-column-resizer.component";
|
|
39
|
+
import * as i38 from "./extensions/header/table-columns-filter/o-table-columns-filter.component";
|
|
40
|
+
import * as i39 from "./extensions/header/table-menu/o-table-menu.component";
|
|
41
|
+
import * as i40 from "./extensions/header/table-option/o-table-option.component";
|
|
42
|
+
import * as i41 from "./extensions/header/table-insertable-row/o-table-insertable-row.component";
|
|
43
|
+
import * as i42 from "./extensions/header/table-quickfilter/o-table-quickfilter.component";
|
|
44
|
+
import * as i43 from "./extensions/header/table-columns-filter/columns/o-table-columns-filter-column.component";
|
|
45
|
+
import * as i44 from "./extensions/header/table-header-column-filter-icon/o-table-header-column-filter-icon.component";
|
|
46
|
+
import * as i45 from "./extensions/header/table-header/o-table-header.component";
|
|
47
|
+
import * as i46 from "./extensions/header/table-columns-grouping/o-table-columns-grouping.component";
|
|
48
|
+
import * as i47 from "./extensions/header/table-columns-grouping/columns/o-table-columns-grouping-column.component";
|
|
49
|
+
import * as i48 from "./extensions/header/table-column-select-all/o-table-column-select-all.directive";
|
|
50
|
+
import * as i49 from "./extensions/header/table-header-select-all/o-table-header-select-all.component";
|
|
51
|
+
import * as i50 from "./extensions/footer/paginator/o-table-paginator.component";
|
|
52
|
+
import * as i51 from "./extensions/footer/aggregate/o-table-column-aggregate.component";
|
|
53
|
+
import * as i52 from "./extensions/row/table-row-expandable/o-table-row-expandable.component";
|
|
54
|
+
import * as i53 from "./extensions/skeleton/o-table-skeleton.component";
|
|
55
|
+
import * as i54 from "@angular/common";
|
|
56
|
+
import * as i55 from "../../shared/shared.module";
|
|
57
|
+
import * as i56 from "@angular/cdk/table";
|
|
58
|
+
import * as i57 from "@angular/cdk/drag-drop";
|
|
59
|
+
import * as i58 from "@angular/cdk/portal";
|
|
60
|
+
import * as i59 from "ngx-skeleton-loader";
|
|
61
|
+
import * as i60 from "../contextmenu/o-context-menu.module";
|
|
62
|
+
import * as i61 from "@angular/cdk/observers";
|
|
63
|
+
import * as i62 from "./extensions/sort/o-mat-sort-module";
|
|
64
|
+
import * as i63 from "ngx-material-timepicker";
|
|
65
|
+
import * as i64 from "../dual-list-selector/o-dual-list-selector.module";
|
|
66
|
+
import * as i65 from "../o-data-toolbar/o-data-toolbar.module";
|
|
67
|
+
import * as i66 from "../input/hour-input/o-hour-input.module";
|
|
66
68
|
export declare class OTableModule {
|
|
67
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTableModule, never>;
|
|
68
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OTableModule, [typeof i1.OTableComponent, typeof i2.OTableColumnComponent, typeof i3.OTableColumnCalculatedComponent, typeof i4.OTableContextMenuComponent, typeof i5.OTableRowDirective, typeof i6.OTableExpandedFooterDirective, typeof i7.OTableExportButtonComponent, typeof i8.OTableRowClassPipe, typeof i9.OTableCellRendererActionComponent, typeof i10.OTableCellRendererDateComponent, typeof i11.OTableCellRendererBooleanComponent, typeof i12.OTableCellRendererImageComponent, typeof i13.OTableCellRendererIntegerComponent, typeof i14.OTableCellRendererRealComponent, typeof i15.OTableCellRendererCurrencyComponent, typeof i16.OTableCellRendererPercentageComponent, typeof i17.OTableCellRendererServiceComponent, typeof i18.OTableCellRendererTranslateComponent, typeof i19.OTableCellRendererTimeComponent, typeof i20.
|
|
70
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OTableModule, [typeof i1.OTableComponent, typeof i2.OTableColumnComponent, typeof i3.OTableColumnCalculatedComponent, typeof i4.OTableContextMenuComponent, typeof i5.OTableRowDirective, typeof i6.OTableExpandedFooterDirective, typeof i7.OTableExportButtonComponent, typeof i8.OTableRowClassPipe, typeof i9.OTableCellRendererActionComponent, typeof i10.OTableCellRendererDateComponent, typeof i11.OTableCellRendererBooleanComponent, typeof i12.OTableCellRendererImageComponent, typeof i13.OTableCellRendererIntegerComponent, typeof i14.OTableCellRendererRealComponent, typeof i15.OTableCellRendererCurrencyComponent, typeof i16.OTableCellRendererPercentageComponent, typeof i17.OTableCellRendererServiceComponent, typeof i18.OTableCellRendererTranslateComponent, typeof i19.OTableCellRendererTimeComponent, typeof i20.OTableCellRendererChipComponent, typeof i21.OTableCellRendererListComponent, typeof i22.OTableCellEditorBooleanComponent, typeof i23.OTableCellEditorDateComponent, typeof i24.OTableCellEditorIntegerComponent, typeof i25.OTableCellEditorRealComponent, typeof i26.OTableCellEditorTextComponent, typeof i27.OTableCellEditorEmailComponent, typeof i28.OTableCellEditorTimeComponent, typeof i29.OTableApplyConfigurationDialogComponent, typeof i30.OTableExportDialogComponent, typeof i31.OTableStoreConfigurationDialogComponent, typeof i32.OTableVisibleColumnsDialogComponent, typeof i33.OTableFilterByColumnDataDialogComponent, typeof i34.OTableGroupByColumnsDialogComponent, typeof i35.OTableButtonComponent, typeof i36.OTableButtonsComponent, typeof i37.OTableColumnResizerComponent, typeof i38.OTableColumnsFilterComponent, typeof i39.OTableMenuComponent, typeof i40.OTableOptionComponent, typeof i41.OTableInsertableRowComponent, typeof i42.OTableQuickfilterComponent, typeof i43.OTableColumnsFilterColumnComponent, typeof i44.OTableHeaderColumnFilterIconComponent, typeof i45.OTableHeaderComponent, typeof i46.OTableColumnsGroupingComponent, typeof i47.OTableColumnsGroupingColumnComponent, typeof i48.OTableColumnSelectAllDirective, typeof i49.OTableHeaderSelectAllComponent, typeof i50.OTablePaginatorComponent, typeof i51.OTableColumnAggregateComponent, typeof i52.OTableRowExpandableComponent, typeof i53.OTableSkeletonComponent], [typeof i54.CommonModule, typeof i55.OSharedModule, typeof i56.CdkTableModule, typeof i57.DragDropModule, typeof i58.PortalModule, typeof i59.NgxSkeletonLoaderModule, typeof i60.OContextMenuModule, typeof i61.ObserversModule, typeof i62.OMatSortModule, typeof i63.NgxMaterialTimepickerModule, typeof i64.ODualListSelectorModule, typeof i65.ODataToolbarModule, typeof i66.OHourInputModule], [typeof i1.OTableComponent, typeof i2.OTableColumnComponent, typeof i56.CdkTableModule, typeof i3.OTableColumnCalculatedComponent, typeof i4.OTableContextMenuComponent, typeof i5.OTableRowDirective, typeof i6.OTableExpandedFooterDirective, typeof i62.OMatSortModule, typeof i7.OTableExportButtonComponent, typeof i8.OTableRowClassPipe, typeof i35.OTableButtonComponent, typeof i36.OTableButtonsComponent, typeof i37.OTableColumnResizerComponent, typeof i46.OTableColumnsGroupingComponent, typeof i47.OTableColumnsGroupingColumnComponent, typeof i38.OTableColumnsFilterComponent, typeof i39.OTableMenuComponent, typeof i40.OTableOptionComponent, typeof i41.OTableInsertableRowComponent, typeof i42.OTableQuickfilterComponent, typeof i43.OTableColumnsFilterColumnComponent, typeof i45.OTableHeaderComponent, typeof i48.OTableColumnSelectAllDirective, typeof i49.OTableHeaderSelectAllComponent, typeof i9.OTableCellRendererActionComponent, typeof i10.OTableCellRendererDateComponent, typeof i11.OTableCellRendererBooleanComponent, typeof i12.OTableCellRendererImageComponent, typeof i13.OTableCellRendererIntegerComponent, typeof i14.OTableCellRendererRealComponent, typeof i15.OTableCellRendererCurrencyComponent, typeof i16.OTableCellRendererPercentageComponent, typeof i17.OTableCellRendererServiceComponent, typeof i18.OTableCellRendererTranslateComponent, typeof i19.OTableCellRendererTimeComponent, typeof i20.OTableCellRendererChipComponent, typeof i21.OTableCellRendererListComponent, typeof i22.OTableCellEditorBooleanComponent, typeof i23.OTableCellEditorDateComponent, typeof i24.OTableCellEditorIntegerComponent, typeof i25.OTableCellEditorRealComponent, typeof i26.OTableCellEditorTextComponent, typeof i27.OTableCellEditorEmailComponent, typeof i28.OTableCellEditorTimeComponent, typeof i50.OTablePaginatorComponent, typeof i51.OTableColumnAggregateComponent, typeof i52.OTableRowExpandableComponent, typeof i53.OTableSkeletonComponent]>;
|
|
69
71
|
static ɵinj: i0.ɵɵInjectorDeclaration<OTableModule>;
|
|
70
72
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ontimize-web-ngx",
|
|
3
3
|
"homepage": "https://github.com/OntimizeWeb/ontimize-web-ngx#readme",
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.8.0",
|
|
5
5
|
"description": "Ontimize Web framework using Angular 15",
|
|
6
6
|
"bugs": "https://github.com/OntimizeWeb/ontimize-web-ngx/issues",
|
|
7
7
|
"author": "Imatia S.L.",
|
package/theme.scss
CHANGED
|
@@ -757,7 +757,6 @@
|
|
|
757
757
|
}
|
|
758
758
|
|
|
759
759
|
.mdc-list-item__content {
|
|
760
|
-
display: table;
|
|
761
760
|
align-self: center;
|
|
762
761
|
width: 100%;
|
|
763
762
|
|
|
@@ -774,7 +773,6 @@
|
|
|
774
773
|
}
|
|
775
774
|
|
|
776
775
|
&.mat-mdc-list-item-unscoped-content {
|
|
777
|
-
display: table-cell;
|
|
778
776
|
vertical-align: middle;
|
|
779
777
|
width: 100%;
|
|
780
778
|
}
|