@fundamental-ngx/core 0.43.8 → 0.43.9
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/dynamic-page/dynamic-page.component.d.ts +12 -7
- package/esm2020/dynamic-page/dynamic-page.component.mjs +29 -26
- package/esm2020/link/link.component.mjs +2 -2
- package/esm2020/list/directives/list-navigation-item-arrow.directive.mjs +11 -13
- package/esm2020/list/list-navigation-item/list-navigation-item.component.mjs +4 -9
- package/esm2020/scrollbar/scrollbar.directive.mjs +9 -8
- package/esm2020/tabs/tab-list.component.mjs +27 -22
- package/esm2020/vertical-navigation/vertical-navigation-main-navigation.component.mjs +2 -2
- package/esm2020/vertical-navigation/vertical-navigation.component.mjs +2 -2
- package/fesm2015/fundamental-ngx-core-dynamic-page.mjs +228 -226
- package/fesm2015/fundamental-ngx-core-dynamic-page.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-link.mjs +2 -2
- package/fesm2015/fundamental-ngx-core-link.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-list.mjs +12 -20
- package/fesm2015/fundamental-ngx-core-list.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-scrollbar.mjs +9 -8
- package/fesm2015/fundamental-ngx-core-scrollbar.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-tabs.mjs +27 -22
- package/fesm2015/fundamental-ngx-core-tabs.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-vertical-navigation.mjs +4 -4
- package/fesm2015/fundamental-ngx-core-vertical-navigation.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-dynamic-page.mjs +202 -200
- package/fesm2020/fundamental-ngx-core-dynamic-page.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-link.mjs +2 -2
- package/fesm2020/fundamental-ngx-core-link.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-list.mjs +12 -19
- package/fesm2020/fundamental-ngx-core-list.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-scrollbar.mjs +9 -8
- package/fesm2020/fundamental-ngx-core-scrollbar.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-tabs.mjs +26 -22
- package/fesm2020/fundamental-ngx-core-tabs.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-vertical-navigation.mjs +4 -4
- package/fesm2020/fundamental-ngx-core-vertical-navigation.mjs.map +1 -1
- package/fundamental-ngx-core-v0.43.9.tgz +0 -0
- package/list/directives/list-navigation-item-arrow.directive.d.ts +0 -6
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/scrollbar/scrollbar.directive.d.ts +6 -4
- package/tabs/tab-list.component.d.ts +10 -8
- package/fundamental-ngx-core-v0.43.8.tgz +0 -0
|
@@ -54,21 +54,21 @@ function addExternalLibraries(options) {
|
|
|
54
54
|
});
|
|
55
55
|
}
|
|
56
56
|
if (!(0, package_utils_1.hasPackage)(tree, '@fundamental-ngx/i18n') ||
|
|
57
|
-
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.43.
|
|
57
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.43.9', '<')) {
|
|
58
58
|
dependencies.push({
|
|
59
59
|
type: dependencies_1.NodeDependencyType.Default,
|
|
60
60
|
// Will be replaced with the real version during sync-version script run
|
|
61
|
-
version: `0.43.
|
|
61
|
+
version: `0.43.9`,
|
|
62
62
|
name: '@fundamental-ngx/i18n',
|
|
63
63
|
overwrite: true
|
|
64
64
|
});
|
|
65
65
|
}
|
|
66
66
|
if (!(0, package_utils_1.hasPackage)(tree, '@fundamental-ngx/cdk') ||
|
|
67
|
-
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.43.
|
|
67
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.43.9', '<')) {
|
|
68
68
|
dependencies.push({
|
|
69
69
|
type: dependencies_1.NodeDependencyType.Default,
|
|
70
70
|
// Will be replaced with the real version during sync-version script run
|
|
71
|
-
version: `0.43.
|
|
71
|
+
version: `0.43.9`,
|
|
72
72
|
name: '@fundamental-ngx/cdk',
|
|
73
73
|
overwrite: true
|
|
74
74
|
});
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
+
import { ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
3
|
+
import { HasElementRef } from '@fundamental-ngx/cdk/utils';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
import * as i1 from "@angular/cdk/overlay";
|
|
5
6
|
export type ScrollbarOverflowOptions = 'auto' | 'scroll' | 'hidden';
|
|
@@ -15,8 +16,7 @@ export type ScrollbarOverflowOptions = 'auto' | 'scroll' | 'hidden';
|
|
|
15
16
|
* <div fd-scrollbar [noHorizontalScroll]="true">
|
|
16
17
|
* ```
|
|
17
18
|
*/
|
|
18
|
-
export declare class ScrollbarDirective implements OnDestroy {
|
|
19
|
-
private _elementRef;
|
|
19
|
+
export declare class ScrollbarDirective implements OnDestroy, HasElementRef {
|
|
20
20
|
/** Whether overflow horizontal content should be hidden. */
|
|
21
21
|
set noHorizontalScroll(value: BooleanInput);
|
|
22
22
|
get noHorizontalScroll(): boolean;
|
|
@@ -37,6 +37,8 @@ export declare class ScrollbarDirective implements OnDestroy {
|
|
|
37
37
|
/** @hidden */
|
|
38
38
|
_inPopover: boolean;
|
|
39
39
|
/** @hidden */
|
|
40
|
+
elementRef: ElementRef<HTMLElement>;
|
|
41
|
+
/** @hidden */
|
|
40
42
|
private _document;
|
|
41
43
|
/** @hidden */
|
|
42
44
|
private _noHorizontalScroll;
|
|
@@ -49,7 +51,7 @@ export declare class ScrollbarDirective implements OnDestroy {
|
|
|
49
51
|
/**
|
|
50
52
|
* @hidden
|
|
51
53
|
*/
|
|
52
|
-
constructor(
|
|
54
|
+
constructor(renderer2: Renderer2);
|
|
53
55
|
/** @hidden */
|
|
54
56
|
ngOnDestroy(): void;
|
|
55
57
|
/** method to invoke scroll */
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
+
import { DestroyedService, Nullable } from '@fundamental-ngx/cdk/utils';
|
|
3
|
+
import { ContentDensityObserver } from '@fundamental-ngx/core/content-density';
|
|
4
|
+
import { MenuComponent } from '@fundamental-ngx/core/menu';
|
|
5
|
+
import { ScrollbarDirective } from '@fundamental-ngx/core/scrollbar';
|
|
2
6
|
import { Subject } from 'rxjs';
|
|
3
|
-
import { DestroyedService } from '@fundamental-ngx/cdk/utils';
|
|
4
|
-
import { TabLinkDirective } from './tab-link/tab-link.directive';
|
|
5
7
|
import { TabItemDirective } from './tab-item/tab-item.directive';
|
|
8
|
+
import { TabLinkDirective } from './tab-link/tab-link.directive';
|
|
9
|
+
import { TabListComponentInterface } from './tab-list-component.interface';
|
|
6
10
|
import { TabPanelComponent } from './tab-panel/tab-panel.component';
|
|
7
11
|
import { TabInfo } from './tab-utils/tab-info.class';
|
|
8
|
-
import { MenuComponent } from '@fundamental-ngx/core/menu';
|
|
9
|
-
import { Nullable } from '@fundamental-ngx/cdk/utils';
|
|
10
|
-
import { ContentDensityObserver } from '@fundamental-ngx/core/content-density';
|
|
11
|
-
import { TabListComponentInterface } from './tab-list-component.interface';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export type TabModes = 'icon-only' | 'process' | 'filter';
|
|
14
14
|
export type TabSizes = 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
@@ -66,11 +66,13 @@ export declare class TabListComponent implements TabListComponentInterface, Afte
|
|
|
66
66
|
/** @hidden */
|
|
67
67
|
headerContainer: ElementRef;
|
|
68
68
|
/** @hidden */
|
|
69
|
-
|
|
69
|
+
_scrollbar: ScrollbarDirective;
|
|
70
|
+
/** @hidden */
|
|
71
|
+
menu: MenuComponent;
|
|
70
72
|
/** @hidden */
|
|
71
73
|
private _overflowLayout;
|
|
72
74
|
/** @hidden */
|
|
73
|
-
|
|
75
|
+
get contentContainer(): ElementRef<HTMLElement>;
|
|
74
76
|
/** @hidden Collection of tabs in original order */
|
|
75
77
|
_tabArray: TabInfo[];
|
|
76
78
|
/** @hidden Whether to disable scroll spy */
|
|
Binary file
|