ngx-edu-sharing-ui 10.0.23 → 10.0.25
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/assets/scss/branding.scss +1 -0
- package/assets/scss/material-theme.scss +1 -0
- package/fesm2022/ngx-edu-sharing-ui.mjs +31 -30
- package/fesm2022/ngx-edu-sharing-ui.mjs.map +1 -1
- package/lib/directives/drag-nodes/nodes-drag-source.directive.d.ts +1 -1
- package/lib/list-items/list-text/list-text.component.d.ts +1 -1
- package/lib/list-items/list-widget.d.ts +1 -1
- package/lib/mds-viewer/mds-viewer.component.d.ts +1 -1
- package/lib/node-entries/node-rating/node-rating.component.d.ts +1 -1
- package/lib/pipes/node-image.pipe.d.ts +1 -2
- package/lib/services/options-helper-data.service.d.ts +1 -1
- package/package.json +2 -2
|
@@ -16,7 +16,7 @@ export declare class ListTextComponent extends ListWidget implements OnInit {
|
|
|
16
16
|
displayName$: BehaviorSubject<string>;
|
|
17
17
|
constructor(nodeHelper: NodeHelperService, mds: MdsService, changeDetectorRef: ChangeDetectorRef);
|
|
18
18
|
ngOnInit(): Promise<void>;
|
|
19
|
-
getNode(): Constants.Node | Constants.
|
|
19
|
+
getNode(): Constants.Node | Constants.Group | Constants.Person | Constants.Statistics;
|
|
20
20
|
isUserProfileAttribute(attribute: string): boolean;
|
|
21
21
|
getWorkflowStatus(): import("ngx-edu-sharing-ui").WorkflowDefinition;
|
|
22
22
|
getI18n(item: ListItem): string;
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class ListWidget {
|
|
8
8
|
get node(): Node | ProposalNode | Group | Person | Statistics;
|
|
9
9
|
set node(value: Node | ProposalNode | Group | Person | Statistics);
|
|
10
|
-
protected readonly nodeSubject: BehaviorSubject<Node |
|
|
10
|
+
protected readonly nodeSubject: BehaviorSubject<Node | Group | Person | ProposalNode | Statistics>;
|
|
11
11
|
get item(): ListItem;
|
|
12
12
|
set item(value: ListItem);
|
|
13
13
|
protected readonly itemSubject: BehaviorSubject<ListItem>;
|
|
@@ -48,5 +48,5 @@ export declare class MdsViewerComponent implements OnChanges {
|
|
|
48
48
|
private prepareHTML;
|
|
49
49
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<MdsViewerComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MdsViewerComponent, "es-mds-viewer", never, { "mdsEditorInstanceService": { "alias": "mdsEditorInstanceService"; "required": false; }; "groupId": { "alias": "groupId"; "required": false; }; "setId": { "alias": "setId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "showGroupHeadings": { "alias": "showGroupHeadings"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; }, {}, never, never, false, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MdsViewerComponent, "es-mds-viewer", never, { "mdsEditorInstanceService": { "alias": "mdsEditorInstanceService"; "required": false; }; "groupId": { "alias": "groupId"; "required": false; }; "setId": { "alias": "setId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "mds": { "alias": "mds"; "required": false; }; "showGroupHeadings": { "alias": "showGroupHeadings"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; }, {}, never, never, false, never>;
|
|
52
52
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { AuthenticationService, ConfigService, NetworkService, Node, RatingV1Service } from 'ngx-edu-sharing-api';
|
|
3
3
|
import { Toast } from '../../services/abstract/toast.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NodeRatingComponent<T extends Node> implements OnInit {
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
3
|
-
import { NetworkService } from 'ngx-edu-sharing-api';
|
|
3
|
+
import { NetworkService, Node } from 'ngx-edu-sharing-api';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { NodeHelperService } from '../services/node-helper.service';
|
|
6
|
-
import { Node } from 'ngx-edu-sharing-api';
|
|
7
6
|
import { RepoUrlService } from '../services/repo-url.service';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
interface NodeImagePreferences {
|
|
@@ -63,7 +63,7 @@ export declare class OptionsHelperDataService implements OnDestroy {
|
|
|
63
63
|
private addVirtualObjects;
|
|
64
64
|
registerGlobalKeyboardShortcuts(): void;
|
|
65
65
|
private handleKeyboardEvent;
|
|
66
|
-
filterOptions(options: OptionItem[], target: Target, objects?: Node[] | any): Promise<OptionItem[]>;
|
|
66
|
+
filterOptions(options: OptionItem[], target: Target, objects?: Node[] | any): OptionItem[] | Promise<OptionItem[]>;
|
|
67
67
|
/**
|
|
68
68
|
* shortcut to simply disable all options on the given compoennts
|
|
69
69
|
* @param actionbar
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-edu-sharing-ui",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.25",
|
|
4
4
|
"license": "GNU GPL v2",
|
|
5
5
|
"description": "Angular components for Edu-Sharing UX parts",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@angular/core": ">=18.0.0 ",
|
|
10
10
|
"@angular/material": ">=18.0.0",
|
|
11
11
|
"material-design-icons": "^3.0.1",
|
|
12
|
-
"ngx-rendering-service-api": ">=0.0.
|
|
12
|
+
"ngx-rendering-service-api": ">=0.0.41",
|
|
13
13
|
"@ngx-translate/core": ">=15.0.0",
|
|
14
14
|
"angular-material-css-vars": "^6.0.0 || ^7.0.0",
|
|
15
15
|
"rxjs": "^6.6.7 || ^7.0.0",
|