@fundamental-ngx/core 0.41.0-rc.2 → 0.41.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/list/list-navigation-item/list-navigation-item.component.mjs +25 -4
- package/esm2020/nested-list/nested-item/nested-item.directive.mjs +6 -3
- package/esm2020/side-navigation/side-navigation.component.mjs +2 -1
- package/esm2020/vertical-navigation/vertical-navigation-main-navigation.component.mjs +14 -3
- package/esm2020/vertical-navigation/vertical-navigation.component.mjs +3 -3
- package/esm2020/vertical-navigation/vertical-navigation.module.mjs +5 -4
- package/fesm2015/fundamental-ngx-core-list.mjs +24 -3
- package/fesm2015/fundamental-ngx-core-list.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-nested-list.mjs +5 -2
- package/fesm2015/fundamental-ngx-core-nested-list.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-side-navigation.mjs +1 -0
- package/fesm2015/fundamental-ngx-core-side-navigation.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-vertical-navigation.mjs +20 -8
- package/fesm2015/fundamental-ngx-core-vertical-navigation.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-list.mjs +23 -2
- package/fesm2020/fundamental-ngx-core-list.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-nested-list.mjs +5 -2
- package/fesm2020/fundamental-ngx-core-nested-list.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-side-navigation.mjs +1 -0
- package/fesm2020/fundamental-ngx-core-side-navigation.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-vertical-navigation.mjs +20 -8
- package/fesm2020/fundamental-ngx-core-vertical-navigation.mjs.map +1 -1
- package/fundamental-ngx-core-v0.41.0.tgz +0 -0
- package/list/list-navigation-item/list-navigation-item.component.d.ts +8 -2
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/side-navigation/side-navigation.component.d.ts +1 -0
- package/vertical-navigation/vertical-navigation.module.d.ts +2 -1
- package/fundamental-ngx-core-v0.41.0-rc.2.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, AfterViewInit, ElementRef } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, AfterViewInit, ElementRef, QueryList } from '@angular/core';
|
|
2
2
|
import { IconComponent } from '@fundamental-ngx/core/icon';
|
|
3
3
|
import { RtlService } from '@fundamental-ngx/cdk/utils';
|
|
4
4
|
import { FocusableOption } from '@angular/cdk/a11y';
|
|
@@ -21,6 +21,10 @@ export declare class ListNavigationItemComponent implements AfterContentInit, Af
|
|
|
21
21
|
/** @hidden */
|
|
22
22
|
_tabIndex: any;
|
|
23
23
|
/** @hidden */
|
|
24
|
+
_expanded: boolean;
|
|
25
|
+
/** @hidden */
|
|
26
|
+
_ariaLevel: number;
|
|
27
|
+
/** @hidden */
|
|
24
28
|
_condensed: boolean;
|
|
25
29
|
/** @hidden */
|
|
26
30
|
_listComponent: ListComponentInterface;
|
|
@@ -31,6 +35,8 @@ export declare class ListNavigationItemComponent implements AfterContentInit, Af
|
|
|
31
35
|
/** @hidden */
|
|
32
36
|
_text: ListNavigationItemTextDirective;
|
|
33
37
|
/** @hidden */
|
|
38
|
+
_childItems: QueryList<ListNavigationItemComponent>;
|
|
39
|
+
/** @hidden */
|
|
34
40
|
_innerText: string;
|
|
35
41
|
/** @hidden
|
|
36
42
|
* false if list-item is within unexpanded list (not visible to user until list expanded). default is true
|
|
@@ -69,5 +75,5 @@ export declare class ListNavigationItemComponent implements AfterContentInit, Af
|
|
|
69
75
|
/** @hidden Rtl change subscription */
|
|
70
76
|
private _subscribeToRtl;
|
|
71
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListNavigationItemComponent, [null, { optional: true; }]>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListNavigationItemComponent, "[fd-list-navigation-item], [fdListNavigaitonItem]", never, { "expanded": "expanded"; "indicated": "indicated"; }, {}, ["_listComponent", "_listNavigationItemArrow", "_iconComponent", "_text"], ["*", "[fd-list]"], false, never>;
|
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListNavigationItemComponent, "[fd-list-navigation-item], [fdListNavigaitonItem]", never, { "expanded": "expanded"; "indicated": "indicated"; }, {}, ["_listComponent", "_listNavigationItemArrow", "_iconComponent", "_text", "_childItems"], ["*", "[fd-list]"], false, never>;
|
|
73
79
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/core",
|
|
3
|
-
"version": "0.41.0
|
|
3
|
+
"version": "0.41.0",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"ng-update": {
|
|
6
6
|
"migrations": "./schematics/migrations.json"
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"focus-trap": "^7.1.0",
|
|
32
|
-
"@fundamental-ngx/i18n": "0.41.0
|
|
33
|
-
"@fundamental-ngx/cdk": "0.41.0
|
|
32
|
+
"@fundamental-ngx/i18n": "0.41.0",
|
|
33
|
+
"@fundamental-ngx/cdk": "0.41.0",
|
|
34
34
|
"fast-deep-equal": "3.1.3",
|
|
35
35
|
"lodash-es": "^4.17.0",
|
|
36
36
|
"tslib": "^2.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.41.0
|
|
57
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.41.0', '<')) {
|
|
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.41.0
|
|
61
|
+
version: `0.41.0`,
|
|
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.41.0
|
|
67
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.41.0', '<')) {
|
|
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.41.0
|
|
71
|
+
version: `0.41.0`,
|
|
72
72
|
name: '@fundamental-ngx/cdk',
|
|
73
73
|
overwrite: true
|
|
74
74
|
});
|
|
@@ -9,6 +9,7 @@ import { Nullable } from '@fundamental-ngx/cdk/utils';
|
|
|
9
9
|
import { SideNavigationInterface } from './side-navigation.interface';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
+
* @deprecated use the vertical navigation component instead.
|
|
12
13
|
* The side-navigation is a wrapping component representing
|
|
13
14
|
* a left navigation that can always display or expand/collapse using the menu icon within the global navigation.
|
|
14
15
|
*/
|
|
@@ -4,8 +4,9 @@ import * as i2 from "./vertical-navigation-main-navigation.component";
|
|
|
4
4
|
import * as i3 from "./vertical-navigation-group-header.directive";
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
6
|
import * as i5 from "@fundamental-ngx/core/list";
|
|
7
|
+
import * as i6 from "@fundamental-ngx/i18n";
|
|
7
8
|
export declare class VerticalNavigationModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<VerticalNavigationModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VerticalNavigationModule, [typeof i1.VerticalNavigationComponent, typeof i2.VerticalNavigationMainNavigationComponent, typeof i3.VerticalNavigationGroupHeaderDirective], [typeof i4.CommonModule, typeof i5.ListModule], [typeof i1.VerticalNavigationComponent, typeof i2.VerticalNavigationMainNavigationComponent, typeof i3.VerticalNavigationGroupHeaderDirective]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VerticalNavigationModule, [typeof i1.VerticalNavigationComponent, typeof i2.VerticalNavigationMainNavigationComponent, typeof i3.VerticalNavigationGroupHeaderDirective], [typeof i4.CommonModule, typeof i5.ListModule, typeof i6.I18nModule], [typeof i1.VerticalNavigationComponent, typeof i2.VerticalNavigationMainNavigationComponent, typeof i3.VerticalNavigationGroupHeaderDirective]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<VerticalNavigationModule>;
|
|
11
12
|
}
|
|
Binary file
|