@oh-just-another/diagram-angular 0.3.2 → 0.3.3
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/CHANGELOG.md +6 -0
- package/dist/Diagram.js +3 -3
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
package/dist/Diagram.js
CHANGED
|
@@ -96,10 +96,10 @@ export class DiagramComponent {
|
|
|
96
96
|
setSelection(ids) {
|
|
97
97
|
this.controller.setSelection(ids);
|
|
98
98
|
}
|
|
99
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
100
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
99
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DiagramComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
100
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: DiagramComponent, isStandalone: true, selector: "oja-diagram-ng", inputs: { scene: "scene", theme: "theme", renderer: "renderer", grid: "grid", snap: "snap" }, outputs: { ready: "ready", scenechange: "scenechange", selectionchange: "selectionchange", themechange: "themechange" }, viewQueries: [{ propertyName: "elRef", first: true, predicate: ["el"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `<oja-diagram #el style="display:block;width:100%;height:100%"></oja-diagram>`, isInline: true, styles: [":host{display:block;width:100%;height:100%}"] }); }
|
|
101
101
|
}
|
|
102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: DiagramComponent, decorators: [{
|
|
103
103
|
type: Component,
|
|
104
104
|
args: [{ selector: "oja-diagram-ng", standalone: true, template: `<oja-diagram #el style="display:block;width:100%;height:100%"></oja-diagram>`, schemas: [CUSTOM_ELEMENTS_SCHEMA], styles: [":host{display:block;width:100%;height:100%}"] }]
|
|
105
105
|
}], propDecorators: { scene: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-just-another/diagram-angular",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Angular wrapper for the diagram editor — a thin standalone component over the <oja-diagram> custom element.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Rustam Garifulin <rustam@n69.in>",
|
|
@@ -39,14 +39,15 @@
|
|
|
39
39
|
"@angular/core": ">=17.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@oh-just-another/diagram": "0.3.
|
|
42
|
+
"@oh-just-another/diagram": "0.3.2",
|
|
43
43
|
"@oh-just-another/scene": "0.62.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@angular/
|
|
47
|
-
"@angular/compiler
|
|
48
|
-
"@angular/
|
|
49
|
-
"@angular/
|
|
46
|
+
"@angular/common": "20.3.27",
|
|
47
|
+
"@angular/compiler": "20.3.27",
|
|
48
|
+
"@angular/compiler-cli": "20.3.27",
|
|
49
|
+
"@angular/core": "20.3.27",
|
|
50
|
+
"@angular/platform-browser": "20.3.27",
|
|
50
51
|
"jsdom": "25.0.1",
|
|
51
52
|
"rxjs": "7.8.2",
|
|
52
53
|
"zone.js": "0.15.1"
|