ontimize-web-ngx 15.0.0 → 15.0.1
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/grid/index.mjs +6 -0
- package/esm2020/lib/components/grid/o-grid.component.mjs +1 -1
- package/esm2020/lib/components/grid/o-grid.module.mjs +2 -2
- package/esm2020/lib/components/grid/skeketon/{o-grid-skeleton/o-grid-skeleton.component.mjs → o-grid-skeleton.component.mjs} +2 -2
- package/esm2020/lib/components/index.mjs +3 -5
- package/esm2020/lib/components/list/index.mjs +2 -1
- package/esm2020/lib/components/list/o-list.component.mjs +1 -1
- package/esm2020/lib/components/list/o-list.module.mjs +2 -2
- package/esm2020/lib/components/list/skeleton/{o-list-skeleton/o-list-skeleton.component.mjs → o-list-skeleton.component.mjs} +2 -2
- package/esm2020/lib/components/table/extensions/default-o-table.datasource.mjs +6 -1
- package/esm2020/lib/components/table/extensions/index.mjs +2 -1
- package/esm2020/lib/components/table/extensions/skeleton/{o-table-skeleton/o-table-skeleton.component.mjs → o-table-skeleton.component.mjs} +2 -2
- package/esm2020/lib/components/table/extensions/sort/o-mat-sort.mjs +1 -1
- package/esm2020/lib/components/table/o-table.component.mjs +18 -17
- package/esm2020/lib/components/table/o-table.module.mjs +6 -4
- package/fesm2015/ontimize-web-ngx.mjs +23 -14
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +22 -14
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/lib/components/grid/index.d.ts +5 -0
- package/lib/components/grid/o-grid.module.d.ts +1 -1
- package/lib/components/grid/skeketon/{o-grid-skeleton/o-grid-skeleton.component.d.ts → o-grid-skeleton.component.d.ts} +1 -1
- package/lib/components/index.d.ts +2 -4
- package/lib/components/list/index.d.ts +1 -0
- package/lib/components/list/o-list.module.d.ts +1 -1
- package/lib/components/list/skeleton/{o-list-skeleton/o-list-skeleton.component.d.ts → o-list-skeleton.component.d.ts} +1 -1
- package/lib/components/table/extensions/header/o-table-header-components.d.ts +2 -2
- package/lib/components/table/extensions/index.d.ts +1 -0
- package/lib/components/table/extensions/skeleton/{o-table-skeleton/o-table-skeleton.component.d.ts → o-table-skeleton.component.d.ts} +1 -1
- package/lib/components/table/o-table.component.d.ts +12 -11
- package/lib/components/table/o-table.module.d.ts +2 -2
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./o-grid.component";
|
|
3
3
|
import * as i2 from "./grid-item/o-grid-item.directive";
|
|
4
4
|
import * as i3 from "./grid-item/o-grid-item.component";
|
|
5
|
-
import * as i4 from "./skeketon/o-grid-skeleton
|
|
5
|
+
import * as i4 from "./skeketon/o-grid-skeleton.component";
|
|
6
6
|
import * as i5 from "@angular/common";
|
|
7
7
|
import * as i6 from "../input/search-input/o-search-input.module";
|
|
8
8
|
import * as i7 from "../../shared/shared.module";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
-
import { OSkeletonComponent } from '
|
|
2
|
+
import { OSkeletonComponent } from '../../o-skeleton.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class OGridSkeletonComponent extends OSkeletonComponent {
|
|
5
5
|
protected elRef: ElementRef;
|
|
@@ -17,10 +17,7 @@ export * from './filter-builder/index';
|
|
|
17
17
|
export * from './form-container/o-form-container.component';
|
|
18
18
|
export * from './form-container/o-form-container.module';
|
|
19
19
|
export * from './form/index';
|
|
20
|
-
export * from './grid/
|
|
21
|
-
export * from './grid/grid-item/o-grid-item.directive';
|
|
22
|
-
export * from './grid/o-grid.component';
|
|
23
|
-
export * from './grid/o-grid.module';
|
|
20
|
+
export * from './grid/index';
|
|
24
21
|
export * from './image/fullscreen/fullscreen-dialog.component';
|
|
25
22
|
export * from './image/o-image.component';
|
|
26
23
|
export * from './image/o-image.module';
|
|
@@ -42,3 +39,4 @@ export * from './o-data-toolbar/index';
|
|
|
42
39
|
export * from './expandable-container/o-expandable-container.component';
|
|
43
40
|
export * from './expandable-container/o-expandable-container.module';
|
|
44
41
|
export * from './tree/index';
|
|
42
|
+
export * from './o-skeleton.component';
|
|
@@ -9,3 +9,4 @@ export * from './renderers/card/o-list-item-card.component';
|
|
|
9
9
|
export * from './renderers/o-list-item-card-renderer.class';
|
|
10
10
|
export * from './renderers/o-list-item-text-renderer.class';
|
|
11
11
|
export * from './renderers/text/o-list-item-text.component';
|
|
12
|
+
export * from './skeleton/o-list-skeleton.component';
|
|
@@ -5,7 +5,7 @@ import * as i3 from "./renderers/avatar/o-list-item-avatar.component";
|
|
|
5
5
|
import * as i4 from "./renderers/card-image/o-list-item-card-image.component";
|
|
6
6
|
import * as i5 from "./renderers/card/o-list-item-card.component";
|
|
7
7
|
import * as i6 from "./renderers/text/o-list-item-text.component";
|
|
8
|
-
import * as i7 from "./skeleton/o-list-skeleton
|
|
8
|
+
import * as i7 from "./skeleton/o-list-skeleton.component";
|
|
9
9
|
import * as i8 from "@angular/common";
|
|
10
10
|
import * as i9 from "../input/search-input/o-search-input.module";
|
|
11
11
|
import * as i10 from "../../shared/shared.module";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
-
import { OSkeletonComponent } from '
|
|
2
|
+
import { OSkeletonComponent } from '../../o-skeleton.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class OListSkeletonComponent extends OSkeletonComponent {
|
|
5
5
|
protected elRef: ElementRef;
|
|
@@ -12,5 +12,5 @@ import { OTableOptionComponent } from './table-option/o-table-option.component';
|
|
|
12
12
|
import { OTableQuickfilterComponent } from './table-quickfilter/o-table-quickfilter.component';
|
|
13
13
|
import { OTableHeaderComponent } from './table-header/o-table-header.component';
|
|
14
14
|
import { OTableColumnSelectAllDirective } from './table-column-select-all/o-table-column-select-all.directive';
|
|
15
|
-
export declare const O_TABLE_HEADER_COMPONENTS: (typeof
|
|
16
|
-
export declare const O_TABLE_HEADER_COMPONENTS_EXPORTED: (typeof
|
|
15
|
+
export declare const O_TABLE_HEADER_COMPONENTS: (typeof OTableColumnsFilterColumnComponent | typeof OTableColumnsGroupingColumnComponent | typeof OTableButtonComponent | typeof OTableColumnSelectAllDirective | typeof OTableColumnsFilterComponent | typeof OTableHeaderColumnFilterIconComponent | typeof OTableHeaderComponent | typeof OTableInsertableRowComponent | typeof OTableOptionComponent | typeof OTableButtonsComponent | typeof OTableColumnResizerComponent | typeof OTableColumnsGroupingComponent | typeof OTableMenuComponent | typeof OTableQuickfilterComponent)[];
|
|
16
|
+
export declare const O_TABLE_HEADER_COMPONENTS_EXPORTED: (typeof OTableColumnsFilterColumnComponent | typeof OTableColumnsGroupingColumnComponent | typeof OTableButtonComponent | typeof OTableColumnSelectAllDirective | typeof OTableColumnsFilterComponent | typeof OTableHeaderComponent | typeof OTableInsertableRowComponent | typeof OTableOptionComponent | typeof OTableButtonsComponent | typeof OTableColumnResizerComponent | typeof OTableColumnsGroupingComponent | typeof OTableMenuComponent | typeof OTableQuickfilterComponent)[];
|
|
@@ -16,3 +16,4 @@ export * from './row/table-row-expandable/o-table-row-expandable.component';
|
|
|
16
16
|
export * from './o-table-datasource.service';
|
|
17
17
|
export * from './o-table-strategy.service';
|
|
18
18
|
export * from './pipes/o-table-row-class.pipe';
|
|
19
|
+
export * from './skeleton/o-table-skeleton.component';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, Injector, OnDestroy } from '@angular/core';
|
|
2
|
-
import { OSkeletonComponent } from '
|
|
2
|
+
import { OSkeletonComponent } from '../../../o-skeleton.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class OTableSkeletonComponent extends OSkeletonComponent implements OnDestroy {
|
|
5
5
|
protected elRef: ElementRef;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
2
|
+
import { DomPortalOutlet } from '@angular/cdk/portal';
|
|
2
3
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
3
4
|
import { AfterContentInit, AfterViewInit, ApplicationRef, ElementRef, EventEmitter, Injector, OnDestroy, OnInit, QueryList, SimpleChange, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
4
5
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
@@ -6,16 +7,8 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
6
7
|
import { MatMenu } from '@angular/material/menu';
|
|
7
8
|
import { PageEvent } from '@angular/material/paginator';
|
|
8
9
|
import { MatTab, MatTabGroup } from '@angular/material/tabs';
|
|
10
|
+
import { MatTooltip } from '@angular/material/tooltip';
|
|
9
11
|
import { Observable, Subscription } from 'rxjs';
|
|
10
|
-
import { DomPortalOutlet } from '@angular/cdk/portal';
|
|
11
|
-
import type { OTableButton } from '../../interfaces/o-table-button.interface';
|
|
12
|
-
import type { OTableButtons } from '../../interfaces/o-table-buttons.interface';
|
|
13
|
-
import type { OTableColumnsGrouping } from '../../interfaces/o-table-columns-grouping-interface';
|
|
14
|
-
import type { OTableDataSource } from '../../interfaces/o-table-datasource.interface';
|
|
15
|
-
import type { OTableMenu } from '../../interfaces/o-table-menu.interface';
|
|
16
|
-
import type { OTableOptions } from '../../interfaces/o-table-options.interface';
|
|
17
|
-
import type { OTablePaginator } from '../../interfaces/o-table-paginator.interface';
|
|
18
|
-
import type { OTableQuickfilter } from '../../interfaces/o-table-quickfilter.interface';
|
|
19
12
|
import { SnackBarService } from '../../services/snackbar.service';
|
|
20
13
|
import { OTableComponentStateClass } from '../../services/state/o-table-component-state.class';
|
|
21
14
|
import { OTableComponentStateService } from '../../services/state/o-table-component-state.service';
|
|
@@ -51,7 +44,14 @@ import { OTableDao } from './extensions/o-table.dao';
|
|
|
51
44
|
import { OTableGroupedRow } from './extensions/row/o-table-row-group.class';
|
|
52
45
|
import { OTableRowExpandableComponent } from './extensions/row/table-row-expandable/o-table-row-expandable.component';
|
|
53
46
|
import { OMatSort } from './extensions/sort/o-mat-sort';
|
|
54
|
-
import {
|
|
47
|
+
import type { OTableButton } from '../../interfaces/o-table-button.interface';
|
|
48
|
+
import type { OTableButtons } from '../../interfaces/o-table-buttons.interface';
|
|
49
|
+
import type { OTableColumnsGrouping } from '../../interfaces/o-table-columns-grouping-interface';
|
|
50
|
+
import type { OTableDataSource } from '../../interfaces/o-table-datasource.interface';
|
|
51
|
+
import type { OTableMenu } from '../../interfaces/o-table-menu.interface';
|
|
52
|
+
import type { OTableOptions } from '../../interfaces/o-table-options.interface';
|
|
53
|
+
import type { OTablePaginator } from '../../interfaces/o-table-paginator.interface';
|
|
54
|
+
import type { OTableQuickfilter } from '../../interfaces/o-table-quickfilter.interface';
|
|
55
55
|
import * as i0 from "@angular/core";
|
|
56
56
|
export declare const DEFAULT_INPUTS_O_TABLE: string[];
|
|
57
57
|
export declare const DEFAULT_OUTPUTS_O_TABLE: string[];
|
|
@@ -71,6 +71,7 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
71
71
|
protected snackBarService: SnackBarService;
|
|
72
72
|
paginator: OTablePaginator;
|
|
73
73
|
sort: OMatSort;
|
|
74
|
+
set oMatSort(_sort: OMatSort);
|
|
74
75
|
virtualScrollViewport: CdkVirtualScrollViewport;
|
|
75
76
|
oTableGlobalConfig: OTableGlobalConfig;
|
|
76
77
|
set cdkVirtualScrollViewport(value: CdkVirtualScrollViewport);
|
|
@@ -261,7 +262,7 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
261
262
|
registerTabListener(): void;
|
|
262
263
|
protected insideTabBugWorkaround(): void;
|
|
263
264
|
registerSortListener(): void;
|
|
264
|
-
|
|
265
|
+
updateSortingSubject(value: boolean): void;
|
|
265
266
|
protected onSortChange(sortArray: any[]): void;
|
|
266
267
|
setDatasource(): void;
|
|
267
268
|
protected registerDataSourceListeners(): void;
|
|
@@ -49,7 +49,7 @@ import * as i47 from "./extensions/header/table-header-select-all/o-table-header
|
|
|
49
49
|
import * as i48 from "./extensions/footer/paginator/o-table-paginator.component";
|
|
50
50
|
import * as i49 from "./extensions/footer/aggregate/o-table-column-aggregate.component";
|
|
51
51
|
import * as i50 from "./extensions/row/table-row-expandable/o-table-row-expandable.component";
|
|
52
|
-
import * as i51 from "./extensions/skeleton/o-table-skeleton
|
|
52
|
+
import * as i51 from "./extensions/skeleton/o-table-skeleton.component";
|
|
53
53
|
import * as i52 from "@angular/common";
|
|
54
54
|
import * as i53 from "../../shared/shared.module";
|
|
55
55
|
import * as i54 from "@angular/cdk/table";
|
|
@@ -64,6 +64,6 @@ import * as i62 from "../dual-list-selector/o-dual-list-selector.module";
|
|
|
64
64
|
import * as i63 from "../o-data-toolbar/o-data-toolbar.module";
|
|
65
65
|
export declare class OTableModule {
|
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTableModule, never>;
|
|
67
|
-
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.OTableCellEditorBooleanComponent, typeof i21.OTableCellEditorDateComponent, typeof i22.OTableCellEditorIntegerComponent, typeof i23.OTableCellEditorRealComponent, typeof i24.OTableCellEditorTextComponent, typeof i25.OTableCellEditorEmailComponent, typeof i26.OTableCellEditorTimeComponent, typeof i27.OTableApplyConfigurationDialogComponent, typeof i28.OTableExportDialogComponent, typeof i29.OTableStoreConfigurationDialogComponent, typeof i30.OTableVisibleColumnsDialogComponent, typeof i31.OTableFilterByColumnDataDialogComponent, typeof i32.OTableGroupByColumnsDialogComponent, typeof i33.OTableButtonComponent, typeof i34.OTableButtonsComponent, typeof i35.OTableColumnResizerComponent, typeof i36.OTableColumnsFilterComponent, typeof i37.OTableMenuComponent, typeof i38.OTableOptionComponent, typeof i39.OTableInsertableRowComponent, typeof i40.OTableQuickfilterComponent, typeof i41.OTableColumnsFilterColumnComponent, typeof i42.OTableHeaderColumnFilterIconComponent, typeof i43.OTableHeaderComponent, typeof i44.OTableColumnsGroupingComponent, typeof i45.OTableColumnsGroupingColumnComponent, typeof i46.OTableColumnSelectAllDirective, typeof i47.OTableHeaderSelectAllComponent, typeof i48.OTablePaginatorComponent, typeof i49.OTableColumnAggregateComponent, typeof i50.OTableRowExpandableComponent, typeof i51.OTableSkeletonComponent], [typeof i52.CommonModule, typeof i53.OSharedModule, typeof i54.CdkTableModule, typeof i55.DragDropModule, typeof i56.PortalModule, typeof i57.NgxSkeletonLoaderModule, typeof i58.OContextMenuModule, typeof i59.ObserversModule, typeof i60.OMatSortModule, typeof i61.NgxMaterialTimepickerModule, typeof i62.ODualListSelectorModule, typeof i63.ODataToolbarModule], [typeof i1.OTableComponent, typeof i2.OTableColumnComponent, typeof i54.CdkTableModule, typeof i3.OTableColumnCalculatedComponent, typeof i4.OTableContextMenuComponent, typeof i5.OTableRowDirective, typeof i6.OTableExpandedFooterDirective, typeof i60.OMatSortModule, typeof i7.OTableExportButtonComponent, typeof i8.OTableRowClassPipe, typeof i33.OTableButtonComponent, typeof i34.OTableButtonsComponent, typeof i35.OTableColumnResizerComponent, typeof i44.OTableColumnsGroupingComponent, typeof i45.OTableColumnsGroupingColumnComponent, typeof i36.OTableColumnsFilterComponent, typeof i37.OTableMenuComponent, typeof i38.OTableOptionComponent, typeof i39.OTableInsertableRowComponent, typeof i40.OTableQuickfilterComponent, typeof i41.OTableColumnsFilterColumnComponent, typeof i43.OTableHeaderComponent, typeof i46.OTableColumnSelectAllDirective, 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.OTableCellEditorBooleanComponent, typeof i21.OTableCellEditorDateComponent, typeof i22.OTableCellEditorIntegerComponent, typeof i23.OTableCellEditorRealComponent, typeof i24.OTableCellEditorTextComponent, typeof i25.OTableCellEditorEmailComponent, typeof i26.OTableCellEditorTimeComponent, typeof i48.OTablePaginatorComponent, typeof i49.OTableColumnAggregateComponent, typeof i50.OTableRowExpandableComponent]>;
|
|
67
|
+
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.OTableCellEditorBooleanComponent, typeof i21.OTableCellEditorDateComponent, typeof i22.OTableCellEditorIntegerComponent, typeof i23.OTableCellEditorRealComponent, typeof i24.OTableCellEditorTextComponent, typeof i25.OTableCellEditorEmailComponent, typeof i26.OTableCellEditorTimeComponent, typeof i27.OTableApplyConfigurationDialogComponent, typeof i28.OTableExportDialogComponent, typeof i29.OTableStoreConfigurationDialogComponent, typeof i30.OTableVisibleColumnsDialogComponent, typeof i31.OTableFilterByColumnDataDialogComponent, typeof i32.OTableGroupByColumnsDialogComponent, typeof i33.OTableButtonComponent, typeof i34.OTableButtonsComponent, typeof i35.OTableColumnResizerComponent, typeof i36.OTableColumnsFilterComponent, typeof i37.OTableMenuComponent, typeof i38.OTableOptionComponent, typeof i39.OTableInsertableRowComponent, typeof i40.OTableQuickfilterComponent, typeof i41.OTableColumnsFilterColumnComponent, typeof i42.OTableHeaderColumnFilterIconComponent, typeof i43.OTableHeaderComponent, typeof i44.OTableColumnsGroupingComponent, typeof i45.OTableColumnsGroupingColumnComponent, typeof i46.OTableColumnSelectAllDirective, typeof i47.OTableHeaderSelectAllComponent, typeof i48.OTablePaginatorComponent, typeof i49.OTableColumnAggregateComponent, typeof i50.OTableRowExpandableComponent, typeof i51.OTableSkeletonComponent], [typeof i52.CommonModule, typeof i53.OSharedModule, typeof i54.CdkTableModule, typeof i55.DragDropModule, typeof i56.PortalModule, typeof i57.NgxSkeletonLoaderModule, typeof i58.OContextMenuModule, typeof i59.ObserversModule, typeof i60.OMatSortModule, typeof i61.NgxMaterialTimepickerModule, typeof i62.ODualListSelectorModule, typeof i63.ODataToolbarModule], [typeof i1.OTableComponent, typeof i2.OTableColumnComponent, typeof i54.CdkTableModule, typeof i3.OTableColumnCalculatedComponent, typeof i4.OTableContextMenuComponent, typeof i5.OTableRowDirective, typeof i6.OTableExpandedFooterDirective, typeof i60.OMatSortModule, typeof i7.OTableExportButtonComponent, typeof i8.OTableRowClassPipe, typeof i33.OTableButtonComponent, typeof i34.OTableButtonsComponent, typeof i35.OTableColumnResizerComponent, typeof i44.OTableColumnsGroupingComponent, typeof i45.OTableColumnsGroupingColumnComponent, typeof i36.OTableColumnsFilterComponent, typeof i37.OTableMenuComponent, typeof i38.OTableOptionComponent, typeof i39.OTableInsertableRowComponent, typeof i40.OTableQuickfilterComponent, typeof i41.OTableColumnsFilterColumnComponent, typeof i43.OTableHeaderComponent, typeof i46.OTableColumnSelectAllDirective, 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.OTableCellEditorBooleanComponent, typeof i21.OTableCellEditorDateComponent, typeof i22.OTableCellEditorIntegerComponent, typeof i23.OTableCellEditorRealComponent, typeof i24.OTableCellEditorTextComponent, typeof i25.OTableCellEditorEmailComponent, typeof i26.OTableCellEditorTimeComponent, typeof i48.OTablePaginatorComponent, typeof i49.OTableColumnAggregateComponent, typeof i50.OTableRowExpandableComponent, typeof i51.OTableSkeletonComponent]>;
|
|
68
68
|
static ɵinj: i0.ɵɵInjectorDeclaration<OTableModule>;
|
|
69
69
|
}
|
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.0.
|
|
4
|
+
"version": "15.0.1",
|
|
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.",
|