@covalent/markdown-navigator 11.5.9 → 11.5.11
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/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MatIconRegistry } from '@angular/material/icon';
|
|
1
2
|
import * as i0 from '@angular/core';
|
|
2
3
|
import { OnChanges, Type, EventEmitter, ElementRef, SimpleChanges } from '@angular/core';
|
|
3
4
|
import * as i1 from '@angular/common';
|
|
@@ -101,6 +102,7 @@ declare class TdMarkdownNavigatorComponent implements OnChanges {
|
|
|
101
102
|
get goBackLabel(): string | undefined;
|
|
102
103
|
get emptyStateLabel(): string | undefined;
|
|
103
104
|
get currentItemTitle(): string;
|
|
105
|
+
get navigationBreadcrumbs(): IMarkdownNavigatorItem[];
|
|
104
106
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
105
107
|
hasChildrenOrChildrenUrl(item: IMarkdownNavigatorItem): boolean;
|
|
106
108
|
clearErrors(): void;
|
|
@@ -111,6 +113,7 @@ declare class TdMarkdownNavigatorComponent implements OnChanges {
|
|
|
111
113
|
loadChildrenUrl(item: IMarkdownNavigatorItem): Promise<IMarkdownNavigatorItem[]>;
|
|
112
114
|
getTitle(item: IMarkdownNavigatorItem): string;
|
|
113
115
|
getIcon(item: IMarkdownNavigatorItem): string;
|
|
116
|
+
isCovalentIcon(item: IMarkdownNavigatorItem): boolean;
|
|
114
117
|
handleChildrenUrlError(error: Error): void;
|
|
115
118
|
handleMarkdownLoaderError(error: Error): void;
|
|
116
119
|
private _jumpTo;
|
|
@@ -194,6 +197,7 @@ declare class TdMarkdownNavigatorWindowDirective {
|
|
|
194
197
|
* Please migrate to using standalone components as soon as possible.
|
|
195
198
|
*/
|
|
196
199
|
declare class CovalentMarkdownNavigatorModule {
|
|
200
|
+
constructor(iconRegistry: MatIconRegistry);
|
|
197
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<CovalentMarkdownNavigatorModule, never>;
|
|
198
202
|
static ɵmod: i0.ɵɵNgModuleDeclaration<CovalentMarkdownNavigatorModule, never, [typeof i1.CommonModule, typeof TdMarkdownNavigatorComponent, typeof TdMarkdownNavigatorWindowComponent, typeof TdMarkdownNavigatorWindowDirective], [typeof TdMarkdownNavigatorComponent, typeof TdMarkdownNavigatorWindowComponent, typeof TdMarkdownNavigatorWindowDirective]>;
|
|
199
203
|
static ɵinj: i0.ɵɵInjectorDeclaration<CovalentMarkdownNavigatorModule>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/markdown-navigator",
|
|
3
|
-
"version": "11.5.
|
|
3
|
+
"version": "11.5.11",
|
|
4
4
|
"description": "Teradata UI Platform Markdown Navigator Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"@angular/core": "20.x.x",
|
|
29
29
|
"@angular/material": "20.x.x",
|
|
30
30
|
"@angular/cdk": "20.x.x",
|
|
31
|
-
"@covalent/core": "11.5.
|
|
32
|
-
"@covalent/flavored-markdown": "11.5.
|
|
33
|
-
"@covalent/highlight": "11.5.
|
|
31
|
+
"@covalent/core": "11.5.11",
|
|
32
|
+
"@covalent/flavored-markdown": "11.5.11",
|
|
33
|
+
"@covalent/highlight": "11.5.11"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.8.1"
|