@myrmidon/gve-core 0.0.1 → 0.0.2
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/components/snapshot-editor/snapshot-editor.component.mjs +6 -4
- package/fesm2022/myrmidon-gve-core.mjs +5 -3
- package/fesm2022/myrmidon-gve-core.mjs.map +1 -1
- package/lib/components/feature-editor/feature-editor.component.d.ts +1 -1
- package/lib/components/snapshot-editor/snapshot-editor.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -51,7 +51,7 @@ export declare class FeatureEditorComponent implements OnInit, OnDestroy {
|
|
|
51
51
|
/**
|
|
52
52
|
* Event emitted when the user saves the edited feature.
|
|
53
53
|
*/
|
|
54
|
-
featureChange: EventEmitter<
|
|
54
|
+
featureChange: EventEmitter<Feature | OperationFeature>;
|
|
55
55
|
name: FormControl<string>;
|
|
56
56
|
value: FormControl<string>;
|
|
57
57
|
setPolicy: FormControl<FeatureSetPolicy>;
|
|
@@ -24,6 +24,10 @@ export declare class SnapshotEditorComponent implements OnInit {
|
|
|
24
24
|
* The batch operations text to set for the editor.
|
|
25
25
|
*/
|
|
26
26
|
batchOps?: string;
|
|
27
|
+
/**
|
|
28
|
+
* True to disable saving.
|
|
29
|
+
*/
|
|
30
|
+
noSave?: boolean;
|
|
27
31
|
/**
|
|
28
32
|
* Emitted when the user saves the edited snapshot.
|
|
29
33
|
*/
|
|
@@ -101,5 +105,5 @@ export declare class SnapshotEditorComponent implements OnInit {
|
|
|
101
105
|
private getSnapshot;
|
|
102
106
|
save(): void;
|
|
103
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnapshotEditorComponent, never>;
|
|
104
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SnapshotEditorComponent, "gve-snapshot-editor", never, { "snapshot": { "alias": "snapshot"; "required": false; }; "batchOps": { "alias": "batchOps"; "required": false; }; }, { "snapshotChange": "snapshotChange"; "snapshotCancel": "snapshotCancel"; }, never, never, true, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnapshotEditorComponent, "gve-snapshot-editor", never, { "snapshot": { "alias": "snapshot"; "required": false; }; "batchOps": { "alias": "batchOps"; "required": false; }; "noSave": { "alias": "noSave"; "required": false; }; }, { "snapshotChange": "snapshotChange"; "snapshotCancel": "snapshotCancel"; }, never, never, true, never>;
|
|
105
109
|
}
|