@myrmidon/gve-core 6.0.3 → 6.1.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrmidon/gve-core",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "Cadmus - GVE Angular frontend core components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GVE"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@cisstech/nge": "^18.3.0",
|
|
21
21
|
"@myrmidon/ngx-mat-tools": "^1.0.1",
|
|
22
22
|
"@myrmidon/ngx-tools": "^2.0.2",
|
|
23
|
-
"@myrmidon/gve-snapshot-rendition": "^0.0.
|
|
23
|
+
"@myrmidon/gve-snapshot-rendition": "^0.0.6",
|
|
24
24
|
"gsap": "^3.14.2",
|
|
25
25
|
"monaco-editor": "^0.34.0",
|
|
26
26
|
"nanoid": "^5.1.6"
|
|
@@ -524,6 +524,12 @@ declare class GveApiService {
|
|
|
524
524
|
* @returns Result wrapper.
|
|
525
525
|
*/
|
|
526
526
|
getTags(operations: CharChainOperation[]): Observable<ResultWrapper<string[]>>;
|
|
527
|
+
/**
|
|
528
|
+
* Get the DSL representation of the given operations.
|
|
529
|
+
* @param operations The operations.
|
|
530
|
+
* @returns Result wrapper.
|
|
531
|
+
*/
|
|
532
|
+
getDsl(operations: CharChainOperation[]): Observable<ResultWrapper<string[]>>;
|
|
527
533
|
/**
|
|
528
534
|
* Get the chain corresponding to the operations run on the
|
|
529
535
|
* specified text. This is used for diagnostic or demonstration
|
|
@@ -700,7 +706,7 @@ interface FeatureMap {
|
|
|
700
706
|
declare class FeatureEditorComponent implements OnInit, OnDestroy {
|
|
701
707
|
private _sub?;
|
|
702
708
|
private _frozen?;
|
|
703
|
-
nameControl
|
|
709
|
+
readonly nameControl: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
704
710
|
/**
|
|
705
711
|
* The list of feature names to display in the name selection.
|
|
706
712
|
* This is used when you have a closed list of features.
|
|
@@ -904,7 +910,6 @@ declare class ChainOperationEditorComponent implements OnInit, OnDestroy {
|
|
|
904
910
|
ngOnInit(): void;
|
|
905
911
|
ngOnDestroy(): void;
|
|
906
912
|
private toggleLfEscape;
|
|
907
|
-
private hasTextChanges;
|
|
908
913
|
onFeaturesChange(features: OperationFeature[]): void;
|
|
909
914
|
onDpFeaturesChange(features: Feature[]): void;
|
|
910
915
|
addSource(): void;
|
|
@@ -1085,7 +1090,7 @@ declare class FeatureSetEditorComponent implements OnInit, OnDestroy {
|
|
|
1085
1090
|
* it is always invisible; otherwise, it gets visible when the number of features
|
|
1086
1091
|
* is greater than the threshold. Default is 5.
|
|
1087
1092
|
*/
|
|
1088
|
-
declare class FeatureSetViewComponent {
|
|
1093
|
+
declare class FeatureSetViewComponent implements OnInit, OnDestroy {
|
|
1089
1094
|
private _sub?;
|
|
1090
1095
|
/**
|
|
1091
1096
|
* The features.
|
|
@@ -1344,6 +1349,7 @@ declare class SnapshotEditorComponent {
|
|
|
1344
1349
|
*/
|
|
1345
1350
|
moveOperationDown(index: number): void;
|
|
1346
1351
|
copyOperationsJson(): void;
|
|
1352
|
+
copyOperationsDsl(): void;
|
|
1347
1353
|
/**
|
|
1348
1354
|
* Parse the operations from their text and append them to the current
|
|
1349
1355
|
* snapshot operations.
|