ngx-edu-sharing-ui 10.0.23 → 10.0.24
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/material-theme.scss +1 -0
- package/fesm2022/ngx-edu-sharing-ui.mjs +26 -27
- 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/widget/mds-widget.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/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>;
|
|
@@ -110,7 +110,7 @@ export declare class MdsWidgetComponent implements OnInit, OnChanges {
|
|
|
110
110
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
111
111
|
ngOnInit(): Promise<void>;
|
|
112
112
|
getDefinition(): MdsWidget;
|
|
113
|
-
getBasicType(): "
|
|
113
|
+
getBasicType(): "text" | "license" | "number" | "date" | "vcard" | "array" | "tree" | "slider" | "duration" | "range" | "unknown";
|
|
114
114
|
supportsInlineEditing(): boolean;
|
|
115
115
|
private getNodeValues;
|
|
116
116
|
private getNodeValue;
|
|
@@ -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 {
|
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.24",
|
|
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",
|