mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
committed by
Eugenio Romano
parent
53d96679ea
commit
e39a2b149b
@@ -67,21 +67,21 @@ exports.APPLICATION = {
|
||||
APS: 'main'
|
||||
};
|
||||
|
||||
exports.TASKFILTERS = {
|
||||
exports.TASK_FILTERS = {
|
||||
MY_TASKS: 'My Tasks',
|
||||
INV_TASKS: 'Involved Tasks',
|
||||
QUE_TASKS: 'Queued Tasks',
|
||||
COMPL_TASKS: 'Completed Tasks'
|
||||
COMPLETED_TASKS: 'Completed Tasks'
|
||||
};
|
||||
|
||||
exports.TASKDETAILS = {
|
||||
exports.TASK_DETAILS = {
|
||||
NO_FORM: 'No form',
|
||||
NO_PARENT: 'No parent',
|
||||
NO_DATE: 'No date',
|
||||
NO_CATEGORY: 'No category'
|
||||
};
|
||||
|
||||
exports.TASKSTATUS = {
|
||||
exports.TASK_STATUS = {
|
||||
RUNNING: 'Running'
|
||||
};
|
||||
|
||||
@@ -106,17 +106,17 @@ exports.APP_ICON = {
|
||||
UNIT: "ac_unit"
|
||||
};
|
||||
|
||||
exports.PROCESSENDDATE = "No date";
|
||||
exports.PROCESS_END_DATE = "No date";
|
||||
|
||||
exports.PROCESSCATEGORY = "http://www.activiti.org/processdef";
|
||||
exports.PROCESS_CATEGORY = "http://www.activiti.org/processdef";
|
||||
|
||||
exports.PROCESSBUSINESSKEY = "None";
|
||||
exports.PROCESS_BUSINESS_KEY = "None";
|
||||
|
||||
exports.PROCESSDESCRIPTION = "No description";
|
||||
exports.PROCESS_DESCRIPTION = "No description";
|
||||
|
||||
exports.PROCESSDATEFORMAT = "mmm dd yyyy";
|
||||
exports.PROCESS_DATE_FORMAT = "mmm dd yyyy";
|
||||
|
||||
exports.PROCESSSTATUS = {
|
||||
exports.PROCESS_STATUS = {
|
||||
RUNNING: 'Running',
|
||||
COMPLETED: 'Completed'
|
||||
};
|
||||
|
@@ -87,19 +87,19 @@ exports.Files = {
|
||||
people_id: "people",
|
||||
group_id: "groupofpeople",
|
||||
multiline_id: "multilinetext",
|
||||
typeahead_id: "typeahead",
|
||||
displaytext_id: "displaytext",
|
||||
displayvalue_id: "displayvalue",
|
||||
typeAhead_id: "typeahead",
|
||||
displayText_id: "displaytext",
|
||||
displayValue_id: "displayvalue",
|
||||
hyperlink_id: "hyperlink",
|
||||
attachfolder_id: "attachfolder",
|
||||
attachfile_id: "attachfile",
|
||||
attachFolder_id: "attachfolder",
|
||||
attachFile_id: "attachfile",
|
||||
date_id: "date",
|
||||
dateTime_id: "dateandtime",
|
||||
checkbox_id: "checkbox",
|
||||
dropdown_id: "dropdown",
|
||||
dropdown_value: "mat-select[id='dropdown'] span span",
|
||||
radiobuttons_id: "radiobuttons",
|
||||
dynamictable_id: "dynamictable"
|
||||
radioButtons_id: "radiobuttons",
|
||||
dynamicTable_id: "dynamictable"
|
||||
}
|
||||
},
|
||||
|
||||
|
@@ -183,9 +183,9 @@ exports.generateRandomStringToUpperCase = function (length) {
|
||||
* @param baseName{string} the base name of all files
|
||||
* @param extension{string} the extension of the file
|
||||
* @return fileNames
|
||||
* @method generateSeqeunceFiles
|
||||
* @method generateSequenceFiles
|
||||
*/
|
||||
exports.generateSeqeunceFiles = function (startIndex, endIndex, baseName, extension) {
|
||||
exports.generateSequenceFiles = function (startIndex, endIndex, baseName, extension) {
|
||||
var fileNames = [];
|
||||
for (var i = startIndex; i <= endIndex; i++) {
|
||||
fileNames.push(baseName + i + extension);
|
||||
|
Reference in New Issue
Block a user