mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
270 lines
5.2 KiB
TypeScript
270 lines
5.2 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
export let startEvent = {
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startTimeEvent = {
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'timer'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startTimeEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'timer'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startTimeEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'timer'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startSignalEvent = {
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'signal'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startSignalEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'signal'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startSignalEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'signal'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startMessageEvent = {
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'message'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startMessageEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'message'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startMessageEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'message'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startErrorEvent = {
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startErrorEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let startErrorEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'startEvent1',
|
|
type: 'StartEvent',
|
|
width: 30,
|
|
height: 30,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endEvent = {
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endErrorEvent = {
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endErrorEventActive = {
|
|
completed: false,
|
|
current: true,
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|
|
|
|
export let endErrorEventCompleted = {
|
|
completed: true,
|
|
current: false,
|
|
id: 'sid-CED2A8DB-47E2-4057-A7B8-3ABBE5CE795E',
|
|
type: 'EndEvent',
|
|
width: 28,
|
|
height: 28,
|
|
x: 15,
|
|
y: 48.5,
|
|
eventDefinition: {type: 'error'},
|
|
properties: [{}]
|
|
};
|