@fundamental-ngx/platform 0.63.1-rc.13 → 0.63.1-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/platform",
|
|
3
|
-
"version": "0.63.1-rc.
|
|
3
|
+
"version": "0.63.1-rc.15",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"description": "Fundamental Library for Angular - platform",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"node": ">= 10"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@fundamental-ngx/cdk": "0.63.1-rc.
|
|
17
|
-
"@fundamental-ngx/core": "0.63.1-rc.
|
|
18
|
-
"@fundamental-ngx/i18n": "0.63.1-rc.
|
|
16
|
+
"@fundamental-ngx/cdk": "0.63.1-rc.15",
|
|
17
|
+
"@fundamental-ngx/core": "0.63.1-rc.15",
|
|
18
|
+
"@fundamental-ngx/i18n": "0.63.1-rc.15"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"fast-equals": "^6.0.0",
|
|
@@ -31,7 +31,7 @@ function callCoreSchematic(options) {
|
|
|
31
31
|
(0, dependencies_1.addPackageJsonDependency)(tree, {
|
|
32
32
|
type: dependencies_1.NodeDependencyType.Default,
|
|
33
33
|
// Will be replaced with the real version during sync-version script run
|
|
34
|
-
version: `0.63.1-rc.
|
|
34
|
+
version: `0.63.1-rc.15`,
|
|
35
35
|
name: '@fundamental-ngx/core'
|
|
36
36
|
});
|
|
37
37
|
const installTaskId = context.addTask(new tasks_1.NodePackageInstallTask({
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Signal, InjectionToken, AfterViewInit, TemplateRef, QueryList, OnInit, NgZone, Renderer2, ElementRef, OnChanges, SimpleChanges, OnDestroy, ChangeDetectorRef, EventEmitter, AfterViewChecked, PipeTransform, Injector, TrackByFunction, DestroyRef } from '@angular/core';
|
|
3
|
+
import { LiveAnnouncer } from '@angular/cdk/a11y';
|
|
3
4
|
import { Nullable, TemplateDirective, ContentDensity, FocusableGridDirective, TabbableElementService, FocusableCellPosition, FocusableItemPosition, FocusableItem } from '@fundamental-ngx/cdk/utils';
|
|
4
5
|
import { ContentDensityMode, ContentDensityObserver } from '@fundamental-ngx/core/content-density';
|
|
5
6
|
import { SearchInput, SuggestionItem } from '@fundamental-ngx/platform/search-field';
|
|
@@ -1543,6 +1544,7 @@ declare class TableComponent<T = any> extends Table<T> implements AfterViewInit,
|
|
|
1543
1544
|
readonly contentDensityObserver: ContentDensityObserver;
|
|
1544
1545
|
readonly injector: Injector;
|
|
1545
1546
|
private readonly _tabbableService;
|
|
1547
|
+
private readonly _liveAnnouncer;
|
|
1546
1548
|
/** Component name used in a Preset-managed component. */
|
|
1547
1549
|
name: string;
|
|
1548
1550
|
/** ID for the Table. */
|
|
@@ -1953,7 +1955,9 @@ declare class TableComponent<T = any> extends Table<T> implements AfterViewInit,
|
|
|
1953
1955
|
/** @hidden */
|
|
1954
1956
|
private readonly _rtlService;
|
|
1955
1957
|
/** @hidden */
|
|
1956
|
-
|
|
1958
|
+
private readonly _translate;
|
|
1959
|
+
/** @hidden */
|
|
1960
|
+
constructor(_ngZone: NgZone, _cdr: ChangeDetectorRef, _tableService: TableService, _tableScrollDispatcher: TableScrollDispatcherService, _tableColumnResizeService: TableColumnResizeService, contentDensityObserver: ContentDensityObserver, injector: Injector, _tabbableService: TabbableElementService, _liveAnnouncer: LiveAnnouncer);
|
|
1957
1961
|
/** Returns array of rows that are currently rendered in the table body. */
|
|
1958
1962
|
getCurrentlyRenderedRows(): number[];
|
|
1959
1963
|
/**
|