ngx-edu-sharing-ui 10.0.16 → 10.0.17
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/mds-viewer/mds-viewer.component.mjs +9 -8
- package/esm2022/lib/mds-viewer/widget/mds-widget.component.mjs +20 -20
- package/esm2022/lib/pipes/node-title.pipe.mjs +2 -2
- package/esm2022/lib/util/helper.mjs +2 -2
- package/fesm2022/ngx-edu-sharing-ui.mjs +27 -26
- package/fesm2022/ngx-edu-sharing-ui.mjs.map +1 -1
- package/lib/mds-viewer/mds-viewer.component.d.ts +2 -2
- package/lib/mds-viewer/widget/mds-widget.component.d.ts +4 -4
- package/package.json +1 -1
|
@@ -19,10 +19,10 @@ export declare class MdsViewerComponent implements OnChanges {
|
|
|
19
19
|
setId: string;
|
|
20
20
|
data: Values;
|
|
21
21
|
mds: MdsDefinition;
|
|
22
|
-
templates: {
|
|
22
|
+
templates: import("@angular/core").WritableSignal<{
|
|
23
23
|
view: MdsView;
|
|
24
24
|
html: SafeHtml;
|
|
25
|
-
}[]
|
|
25
|
+
}[]>;
|
|
26
26
|
/**
|
|
27
27
|
* show group headings (+ icons) for the individual templates
|
|
28
28
|
*/
|
|
@@ -90,30 +90,30 @@ export declare class MdsWidgetComponent implements OnInit, OnChanges {
|
|
|
90
90
|
view: any;
|
|
91
91
|
editWrapper: ElementRef;
|
|
92
92
|
matRipple: MatRipple;
|
|
93
|
-
basicType: string
|
|
93
|
+
basicType: import("@angular/core").WritableSignal<string>;
|
|
94
94
|
rawValue: {
|
|
95
95
|
path: MdsValue[];
|
|
96
96
|
id: string;
|
|
97
97
|
}[];
|
|
98
|
+
isEmpty: import("@angular/core").Signal<boolean>;
|
|
98
99
|
private mdsEditorInstance;
|
|
99
100
|
license$: BehaviorSubject<{
|
|
100
101
|
name: string;
|
|
101
102
|
icon: string;
|
|
102
103
|
}>;
|
|
103
104
|
get headingLevel(): number;
|
|
104
|
-
value: string[]
|
|
105
|
+
value: import("@angular/core").WritableSignal<string[]>;
|
|
105
106
|
private temporaryValue;
|
|
106
107
|
constructor(translate: TranslateService, ui: UIService, viewInstance: ViewInstanceService, mdsViewerService: MdsViewerService, nodeHelper: NodeHelperService);
|
|
107
108
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
108
109
|
ngOnInit(): Promise<void>;
|
|
109
110
|
getDefinition(): MdsWidget;
|
|
110
|
-
getBasicType(): "
|
|
111
|
+
getBasicType(): "number" | "text" | "date" | "vcard" | "slider" | "range" | "duration" | "license" | "array" | "tree" | "unknown";
|
|
111
112
|
supportsInlineEditing(): boolean;
|
|
112
113
|
private getNodeValues;
|
|
113
114
|
private getNodeValue;
|
|
114
115
|
getValue(data: string[]): any[];
|
|
115
116
|
click(): void;
|
|
116
|
-
isEmpty(): boolean;
|
|
117
117
|
formatDate(): string[];
|
|
118
118
|
formatNumber(): string[];
|
|
119
119
|
formatText(): string[];
|