@vertigis/viewer-spec 53.6.0 → 53.8.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.
|
@@ -344,6 +344,37 @@
|
|
|
344
344
|
</restriction>
|
|
345
345
|
</simpleType>
|
|
346
346
|
</attribute>
|
|
347
|
+
<attribute name="icon-position">
|
|
348
|
+
<annotation>
|
|
349
|
+
<documentation xml:lang="en">
|
|
350
|
+
The position of the icon within the component relative to its
|
|
351
|
+
text. Valid values include "top", "bottom", "start", and "end".
|
|
352
|
+
The default value is "start".
|
|
353
|
+
</documentation>
|
|
354
|
+
</annotation>
|
|
355
|
+
<simpleType>
|
|
356
|
+
<restriction base="string">
|
|
357
|
+
<enumeration value="top" />
|
|
358
|
+
<enumeration value="bottom" />
|
|
359
|
+
<enumeration value="start" />
|
|
360
|
+
<enumeration value="end" />
|
|
361
|
+
</restriction>
|
|
362
|
+
</simpleType>
|
|
363
|
+
</attribute>
|
|
364
|
+
<attribute name="show-title" type="boolean" default="true">
|
|
365
|
+
<annotation>
|
|
366
|
+
<documentation xml:lang="en">
|
|
367
|
+
Indicates if the title should be displayed.
|
|
368
|
+
</documentation>
|
|
369
|
+
</annotation>
|
|
370
|
+
</attribute>
|
|
371
|
+
<attribute name="show-icon" type="boolean" default="false">
|
|
372
|
+
<annotation>
|
|
373
|
+
<documentation xml:lang="en">
|
|
374
|
+
Indicates if the icon should be displayed.
|
|
375
|
+
</documentation>
|
|
376
|
+
</annotation>
|
|
377
|
+
</attribute>
|
|
347
378
|
</extension>
|
|
348
379
|
</complexContent>
|
|
349
380
|
</complexType>
|
|
@@ -126,6 +126,12 @@ export declare class WorkflowCommands extends CommandRegistry {
|
|
|
126
126
|
* @mobileOnly
|
|
127
127
|
*/
|
|
128
128
|
get cancel(): Command<string>;
|
|
129
|
+
/**
|
|
130
|
+
* Cancels all running workflows.
|
|
131
|
+
*
|
|
132
|
+
* @mobileOnly
|
|
133
|
+
*/
|
|
134
|
+
get cancelAll(): Command;
|
|
129
135
|
}
|
|
130
136
|
export declare class WorkflowOperations extends OperationRegistry {
|
|
131
137
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as r}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class WorkflowCommands extends e{get run(){return this._messages.command("workflow.run")}get refresh(){return this._messages.command("workflow.refresh")}get cancel(){return this._messages.command("workflow.cancel")}}export class WorkflowOperations extends s{get evaluate(){return this._messages.operation("workflow.evaluate")}}export class WorkflowEvents extends r{get workflowStarted(){return this._messages.event("workflow.workflow-started")}get starting(){return this._messages.event("workflow.starting")}get workflowFinished(){return this._messages.event("workflow.workflow-finished")}get workflowError(){return this._messages.event("workflow.workflow-error")}}
|
|
1
|
+
import{CommandRegistry as e}from"../CommandRegistry.js";import{EventRegistry as r}from"../EventRegistry.js";import{OperationRegistry as s}from"../OperationRegistry.js";export class WorkflowCommands extends e{get run(){return this._messages.command("workflow.run")}get refresh(){return this._messages.command("workflow.refresh")}get cancel(){return this._messages.command("workflow.cancel")}get cancelAll(){return this._messages.command("workflow.cancel-all")}}export class WorkflowOperations extends s{get evaluate(){return this._messages.operation("workflow.evaluate")}}export class WorkflowEvents extends r{get workflowStarted(){return this._messages.event("workflow.workflow-started")}get starting(){return this._messages.event("workflow.starting")}get workflowFinished(){return this._messages.event("workflow.workflow-finished")}get workflowError(){return this._messages.event("workflow.workflow-error")}}
|
|
@@ -17866,6 +17866,9 @@
|
|
|
17866
17866
|
{
|
|
17867
17867
|
"$ref": "#/definitions/workflow.cancel"
|
|
17868
17868
|
},
|
|
17869
|
+
{
|
|
17870
|
+
"$ref": "#/definitions/workflow.cancel-all"
|
|
17871
|
+
},
|
|
17869
17872
|
{
|
|
17870
17873
|
"$ref": "#/definitions/workflow.evaluate"
|
|
17871
17874
|
},
|
|
@@ -18804,6 +18807,12 @@
|
|
|
18804
18807
|
"workflow.cancel"
|
|
18805
18808
|
]
|
|
18806
18809
|
},
|
|
18810
|
+
"workflow.cancel-all": {
|
|
18811
|
+
"description": "Cancels all running workflows.",
|
|
18812
|
+
"enum": [
|
|
18813
|
+
"workflow.cancel-all"
|
|
18814
|
+
]
|
|
18815
|
+
},
|
|
18807
18816
|
"workflow.cancel:input": {
|
|
18808
18817
|
"type": "string"
|
|
18809
18818
|
},
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED