ngx-edu-sharing-ui 9999.0.3 → 9999.0.4
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/esm2022/lib/list-items/list-text/list-text.component.mjs +3 -3
- package/esm2022/lib/node-entries/node-entries-card-grid/node-entries-card-grid.component.mjs +5 -5
- package/esm2022/lib/services/node-entries.service.mjs +1 -1
- package/fesm2022/ngx-edu-sharing-ui.mjs +6 -6
- package/fesm2022/ngx-edu-sharing-ui.mjs.map +1 -1
- package/lib/list-items/list-text/list-text.component.d.ts +2 -2
- package/lib/node-entries/node-entries-card-grid/node-entries-card-grid.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
2
2
|
import { MdsService, Node } from 'ngx-edu-sharing-api';
|
|
3
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
4
|
import { ListItem } from '../../types/list-item';
|
|
@@ -6,7 +6,7 @@ import { ListWidget } from '../list-widget';
|
|
|
6
6
|
import { NodeHelperService } from '../../services/node-helper.service';
|
|
7
7
|
import * as Constants from 'ngx-edu-sharing-api';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class ListTextComponent extends ListWidget implements OnInit {
|
|
9
|
+
export declare class ListTextComponent extends ListWidget implements OnInit, OnChanges {
|
|
10
10
|
private nodeHelper;
|
|
11
11
|
private mds;
|
|
12
12
|
private changeDetectorRef;
|
|
@@ -90,7 +90,7 @@ export declare class NodeEntriesCardGridComponent<T extends Node> implements OnI
|
|
|
90
90
|
private canScroll;
|
|
91
91
|
updateScrollState(): void;
|
|
92
92
|
doScroll(direction: 'left' | 'right'): void;
|
|
93
|
-
isCustomTemplate():
|
|
93
|
+
isCustomTemplate(node: T): any;
|
|
94
94
|
isBlocked(node: Node): boolean;
|
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<NodeEntriesCardGridComponent<any>, never>;
|
|
96
96
|
static ɵcmp: i0.ɵɵComponentDeclaration<NodeEntriesCardGridComponent<any>, "es-node-entries-card-grid", never, { "displayType": { "alias": "displayType"; "required": false; }; }, {}, never, never, false, never>;
|