@steedos-labs/plugin-workflow 3.0.0-beta.5
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/LICENSE.txt +706 -0
- package/README.md +9 -0
- package/main/default/applications/admin.app.yml +32 -0
- package/main/default/applications/approve_workflow.app.yml +89 -0
- package/main/default/client/instance.client.js +145 -0
- package/main/default/client/instanceAmisView.client.js +257 -0
- package/main/default/client/instanceFile.client.js +169 -0
- package/main/default/client/object_workflows.client.js +7 -0
- package/main/default/client/socket.client.js +40 -0
- package/main/default/client/workflow.client.js +18 -0
- package/main/default/manager/approve_manager.js +36 -0
- package/main/default/manager/export.js +182 -0
- package/main/default/manager/flow_manager.js +46 -0
- package/main/default/manager/form_manager.js +47 -0
- package/main/default/manager/handlers_manager.js +796 -0
- package/main/default/manager/import.js +710 -0
- package/main/default/manager/index.js +23 -0
- package/main/default/manager/instance_manager.js +182 -0
- package/main/default/manager/instance_tasks_manager.js +285 -0
- package/main/default/manager/permission_manager.js +140 -0
- package/main/default/manager/push_manager.js +905 -0
- package/main/default/manager/step_manager.js +54 -0
- package/main/default/manager/uuflow_manager.js +4278 -0
- package/main/default/manager/workflow_manager.js +774 -0
- package/main/default/objectTranslations/flow_positions.en/flow_positions.en.objectTranslation.yml +19 -0
- package/main/default/objectTranslations/flow_positions.zh-CN/flow_positions.zh-CN.objectTranslation.yml +19 -0
- package/main/default/objectTranslations/flow_roles.en/flow_roles.en.objectTranslation.yml +11 -0
- package/main/default/objectTranslations/flow_roles.zh-CN/flow_roles.zh-CN.objectTranslation.yml +14 -0
- package/main/default/objectTranslations/flows.en/flows.en.objectTranslation.yml +317 -0
- package/main/default/objectTranslations/flows.zh-CN/flows.zh-CN.objectTranslation.yml +314 -0
- package/main/default/objects/approvals.object.yml +99 -0
- package/main/default/objects/categories.object.yml +52 -0
- package/main/default/objects/cfs.instances.filerecord.object.yml +16 -0
- package/main/default/objects/flow_positions.object.yml +79 -0
- package/main/default/objects/flow_roles.object.yml +63 -0
- package/main/default/objects/flows/buttons/del.button.yml +154 -0
- package/main/default/objects/flows/buttons/design_form_layout.button.js +35 -0
- package/main/default/objects/flows/buttons/design_form_layout.button.yml +4 -0
- package/main/default/objects/flows/buttons/distributeAdmin.button.yml +88 -0
- package/main/default/objects/flows/buttons/newexport.button.yml +45 -0
- package/main/default/objects/flows/buttons/newimport.button.yml +92 -0
- package/main/default/objects/flows/buttons/showDesign.button.js +33 -0
- package/main/default/objects/flows/buttons/showDesign.button.yml +6 -0
- package/main/default/objects/flows/flows.object.yml +941 -0
- package/main/default/objects/forms/fields/amis_schema.field.yml +7 -0
- package/main/default/objects/forms/forms.object.yml +266 -0
- package/main/default/objects/instance_number_rules.object.yml +85 -0
- package/main/default/objects/instance_tasks/buttons/instance_new.button.js +14 -0
- package/main/default/objects/instance_tasks/buttons/instance_new.button.yml +96 -0
- package/main/default/objects/instance_tasks/fields/applicant.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/applicant_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/applicant_organization_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/category.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/category_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/cost_time.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/deadline.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/description.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/distribute_from_instance.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/due_date.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/extras.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/finish_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/flow.field.yml +8 -0
- package/main/default/objects/instance_tasks/fields/flow_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/form.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/forward_from_instance.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/handler_organization.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/handler_organization_fullname.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/handler_organization_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/instance.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/instance_name.field.yml +13 -0
- package/main/default/objects/instance_tasks/fields/instance_state.field.yml +13 -0
- package/main/default/objects/instance_tasks/fields/is_archived.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_error.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_finished.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/is_latest_approve.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/is_read.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/keywords.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/next_steps.$.step.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/next_steps.$.users.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/next_steps.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/read_date.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/remind_date.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/reminded_count.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/sign_show.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/start_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/step.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/step_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/submit_date.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/submitter.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/submitter_name.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/trace.field.yml +6 -0
- package/main/default/objects/instance_tasks/fields/type.field.yml +2 -0
- package/main/default/objects/instance_tasks/fields/user.field.yml +5 -0
- package/main/default/objects/instance_tasks/fields/user_name.field.yml +4 -0
- package/main/default/objects/instance_tasks/fields/values.field.yml +5 -0
- package/main/default/objects/instance_tasks/instance_tasks.object.yml +7 -0
- package/main/default/objects/instance_tasks/listviews/inbox.listview.yml +41 -0
- package/main/default/objects/instance_tasks/listviews/outbox.listview.yml +38 -0
- package/main/default/objects/instance_tasks/permissions/admin.permission.yml +8 -0
- package/main/default/objects/instance_tasks/permissions/user.permission.yml +10 -0
- package/main/default/objects/instance_tasks/tabs/object_instance_tasks.tab.yml +7 -0
- package/main/default/objects/instance_tasks/tabs/object_instances.tab.yml +7 -0
- package/main/default/objects/instances/buttons/instance_cc.button.yml +160 -0
- package/main/default/objects/instances/buttons/instance_delete.button.yml +77 -0
- package/main/default/objects/instances/buttons/instance_delete_many.button.yml +124 -0
- package/main/default/objects/instances/buttons/instance_distribute.button.yml +310 -0
- package/main/default/objects/instances/buttons/instance_filter_flow.button.js +13 -0
- package/main/default/objects/instances/buttons/instance_filter_flow.button.yml +75 -0
- package/main/default/objects/instances/buttons/instance_flow_chart.button.yml +38 -0
- package/main/default/objects/instances/buttons/instance_forward.button.yml +163 -0
- package/main/default/objects/instances/buttons/instance_hide.button.yml +6 -0
- package/main/default/objects/instances/buttons/instance_new.button.js +16 -0
- package/main/default/objects/instances/buttons/instance_new.button.yml +108 -0
- package/main/default/objects/instances/buttons/instance_print.button.todo.yml +40 -0
- package/main/default/objects/instances/buttons/instance_query.button.js +17 -0
- package/main/default/objects/instances/buttons/instance_query.button.yml +186 -0
- package/main/default/objects/instances/buttons/instance_reassign.button.yml +123 -0
- package/main/default/objects/instances/buttons/instance_related.button.yml +166 -0
- package/main/default/objects/instances/buttons/instance_relocate.button.yml +127 -0
- package/main/default/objects/instances/buttons/instance_remind.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_reopen.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_retrieve.button.yml +7 -0
- package/main/default/objects/instances/buttons/instance_return.button.yml +121 -0
- package/main/default/objects/instances/buttons/instance_save.button.yml +78 -0
- package/main/default/objects/instances/buttons/instance_submit.button.yml +37 -0
- package/main/default/objects/instances/buttons/instance_terminate.button.yml +143 -0
- package/main/default/objects/instances/buttons/view_instance.button.yml +56 -0
- package/main/default/objects/instances/fields/keywords.field.yml +5 -0
- package/main/default/objects/instances/instances.object.yml +295 -0
- package/main/default/objects/instances/listviews/completed.listview.yml +38 -0
- package/main/default/objects/instances/listviews/draft.listview.yml +27 -0
- package/main/default/objects/instances/listviews/lookup.listview.yml +17 -0
- package/main/default/objects/instances/listviews/monitor.listview.yml +39 -0
- package/main/default/objects/instances/listviews/pending.listview.yml +38 -0
- package/main/default/objects/instances_statistic.object.yml +121 -0
- package/main/default/objects/object_workflows.action.js +28 -0
- package/main/default/objects/object_workflows.object.yml +263 -0
- package/main/default/objects/process_delegation_rules.object.yml +71 -0
- package/main/default/objects/space_user_signs.object.yml +61 -0
- package/main/default/objects/webhooks.object.yml +78 -0
- package/main/default/pages/flowdetail.page.amis.json +719 -0
- package/main/default/pages/flowdetail.page.yml +14 -0
- package/main/default/pages/flows_form.page.amis.json +25 -0
- package/main/default/pages/flows_form.page.yml +12 -0
- package/main/default/pages/instance_detail.page.amis.json +149 -0
- package/main/default/pages/instance_detail.page.yml +12 -0
- package/main/default/pages/instance_tasks_detail.page.amis.json +158 -0
- package/main/default/pages/instance_tasks_detail.page.yml +12 -0
- package/main/default/pages/instance_tasks_list.page.amis.json +280 -0
- package/main/default/pages/instance_tasks_list.page.yml +12 -0
- package/main/default/pages/instances_list.page.amis.json +278 -0
- package/main/default/pages/instances_list.page.yml +12 -0
- package/main/default/routes/am.router.js +1074 -0
- package/main/default/routes/amis_form_design.ejs +434 -0
- package/main/default/routes/amis_form_design.router.js +79 -0
- package/main/default/routes/api_cc.router.js +43 -0
- package/main/default/routes/api_cc_submit.router.js +59 -0
- package/main/default/routes/api_designer_startup.router.js +159 -0
- package/main/default/routes/api_flow_permission.router.js +29 -0
- package/main/default/routes/api_formula_organizations.router.js +72 -0
- package/main/default/routes/api_formula_users.router.js +73 -0
- package/main/default/routes/api_get_object_workflows.router.js +46 -0
- package/main/default/routes/api_object_workflow_drafts.router.js +48 -0
- package/main/default/routes/api_sub_table_sort.router.js +113 -0
- package/main/default/routes/api_workflow_approve_save.router.js +151 -0
- package/main/default/routes/api_workflow_archive.router.js +82 -0
- package/main/default/routes/api_workflow_box_filter.router.js +27 -0
- package/main/default/routes/api_workflow_draft.router.js +60 -0
- package/main/default/routes/api_workflow_drafts.router.js +72 -0
- package/main/default/routes/api_workflow_engine.router.js +104 -0
- package/main/default/routes/api_workflow_export.router.js +197 -0
- package/main/default/routes/api_workflow_forcesync.router.js +61 -0
- package/main/default/routes/api_workflow_forward.router.js +672 -0
- package/main/default/routes/api_workflow_forward_refill.router.js +127 -0
- package/main/default/routes/api_workflow_forward_table_refill.router.js +283 -0
- package/main/default/routes/api_workflow_instance.router.js +110 -0
- package/main/default/routes/api_workflow_instance_change_related.router.js +54 -0
- package/main/default/routes/api_workflow_instance_check_is_removed.router.js +58 -0
- package/main/default/routes/api_workflow_instance_forward.router.js +610 -0
- package/main/default/routes/api_workflow_instance_return.router.js +202 -0
- package/main/default/routes/api_workflow_instance_save.router.js +33 -0
- package/main/default/routes/api_workflow_instance_terminate.router.js +216 -0
- package/main/default/routes/api_workflow_nav.router.js +335 -0
- package/main/default/routes/api_workflow_next_step.router.js +218 -0
- package/main/default/routes/api_workflow_next_step_users.router.js +212 -0
- package/main/default/routes/api_workflow_open_cfs.router.js +352 -0
- package/main/default/routes/api_workflow_open_drafts.router.js +183 -0
- package/main/default/routes/api_workflow_open_get.router.js +123 -0
- package/main/default/routes/api_workflow_open_get_by_stepname.router.js +136 -0
- package/main/default/routes/api_workflow_open_pending.router.js +252 -0
- package/main/default/routes/api_workflow_open_save.router.js +112 -0
- package/main/default/routes/api_workflow_open_submit.router.js +147 -0
- package/main/default/routes/api_workflow_print.ejs +143 -0
- package/main/default/routes/api_workflow_print.router.js +42 -0
- package/main/default/routes/api_workflow_reassign.router.js +247 -0
- package/main/default/routes/api_workflow_redirect.router.js +39 -0
- package/main/default/routes/api_workflow_relocate.router.js +60 -0
- package/main/default/routes/api_workflow_remove.router.js +103 -0
- package/main/default/routes/api_workflow_retrieve.router.js +294 -0
- package/main/default/routes/api_workflow_space_changeset.router.js +72 -0
- package/main/default/routes/api_workflow_submit.router.js +91 -0
- package/main/default/routes/api_workflow_terminate.router.js +217 -0
- package/main/default/routes/api_workflow_v2_remove.router.js +83 -0
- package/main/default/routes/designer.router.js +201 -0
- package/main/default/routes/export.router.js +147 -0
- package/main/default/routes/export_table_template.router.js +125 -0
- package/main/default/routes/flow.settings.router.js +110 -0
- package/main/default/routes/flow_form_design.ejs +441 -0
- package/main/default/routes/flow_form_design.router.js +127 -0
- package/main/default/routes/getContactInfoForUser.router.js +59 -0
- package/main/default/routes/getFormulaUserObjects.router.js +63 -0
- package/main/default/routes/getNameForUser.router.js +57 -0
- package/main/default/routes/getSpaceUsers.router.js +64 -0
- package/main/default/routes/import.router.js +174 -0
- package/main/default/routes/init_formula_values.router.js +69 -0
- package/main/default/routes/nextStepUsers.router.js +220 -0
- package/main/default/routes/object_workflows.router.js +128 -0
- package/main/default/server/ejs/export_instances.ejs +424 -0
- package/main/default/services/flows.service.js +279 -0
- package/main/default/services/instance.service.js +319 -0
- package/main/default/tabs/admin_categories.tab.yml +21 -0
- package/main/default/tabs/admin_flow_positions.tab.yml +21 -0
- package/main/default/tabs/admin_flow_roles.tab.yml +21 -0
- package/main/default/tabs/admin_flows.tab.yml +21 -0
- package/main/default/tabs/admin_instance_number_rules.tab.yml +23 -0
- package/main/default/tabs/admin_instances_statistic.tab.yml +24 -0
- package/main/default/tabs/admin_process_delegation_rules.tab.yml +24 -0
- package/main/default/tabs/admin_roles.tab.yml +21 -0
- package/main/default/tabs/admin_space_user_signs.tab.yml +25 -0
- package/main/default/tabs/admin_webhooks.tab.yml +21 -0
- package/main/default/translations/en.translation.yml +2 -0
- package/main/default/translations/zh-CN.translation.yml +2 -0
- package/main/default/triggers/amis_form_design.trigger.js +538 -0
- package/main/default/triggers/flows.trigger.js +97 -0
- package/main/default/triggers/instance_tasks.trigger.js +37 -0
- package/main/default/triggers/instances.trigger.js +36 -0
- package/main/default/utils/collection.js +17 -0
- package/main/default/utils/convert.js +11 -0
- package/main/default/utils/designerManager.js +639 -0
- package/main/default/utils/trigger.js +63 -0
- package/main/default/utils/workingTime.js +125 -0
- package/main/default/uuflowManager/index.js +47 -0
- package/package.json +23 -0
- package/package.service.js +142 -0
- package/package.service.yml +6 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/en-us/javascript-strings.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/en-us/javascript.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/zh-cn/javascript-strings.js +1 -0
- package/public/applications/designer/5410/cloudkit/error_catcher/5410/zh-cn/javascript.js +1 -0
- package/public/applications/designer/5410/cloudkit/runtime/5410/en-us/resources/iCloud.cab +0 -0
- package/public/applications/designer/5410/cloudkit/runtime/5410/zh-cn/resources/iCloud.cab +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/load_views/images/attachment_delete.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/load_views/images/attachment_delete@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/backgrounds/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/blue-sky.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/bosque_wood.jpg +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_normal_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_normal_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_selected_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/collection/spinner_selected_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-5.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-6.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-7.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/packed-9.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/images/spinner@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/month_calendar/stylesheet-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/backGround.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/email.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/exit.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/icon.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/icon_enter.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/list_line.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/point.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/notification_center/top_title.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/clear_search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/clear_search_active.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/search_background.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/searchbox/search_background@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/PersonalUserSelect.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/source/resources/select_user/images/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet.css +26 -0
- package/public/applications/designer/5410/coresteed/5410/en-us/stylesheet@2x.css +56 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/load_views/images/attachment_delete.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/load_views/images/attachment_delete@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/backgrounds/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/blue-sky.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/bosque_wood.jpg +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_normal_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_normal_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_selected_20px.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/collection/spinner_selected_20px@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-5.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-6.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-7.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/packed-9.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner30x360-12frames.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/images/spinner@2x.gif +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/month_calendar/stylesheet-1.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/backGround.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/email.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/exit.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/icon.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/icon_enter.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/list_line.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/point.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/notification_center/top_title.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/clear_search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/clear_search_active.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/search_background.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/searchbox/search_background@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/PersonalUserSelect.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/packed-8.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/search.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/source/resources/select_user/images/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet.css +26 -0
- package/public/applications/designer/5410/coresteed/5410/zh-cn/stylesheet@2x.css +56 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/en-us/javascript-strings.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/en-us/javascript.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/zh-cn/javascript-strings.js +1 -0
- package/public/applications/designer/5410/coreweb/date_formatter/5410/zh-cn/javascript.js +1 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/css3pie/PIE.htc +85 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/FontAwesome.otf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.eot +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.svg +565 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.woff +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/resources/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-alert.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-alert@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-info.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/alert/me-icon-info@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeReceived.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeReceived@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeSent.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleOrangeSent@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhiteSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/bubbleWhiteSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newBubbleGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newGreenBubble.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/chat/newGreenBubble@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_closed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_closed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_open.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/disclosure/disclosure_open_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/ios8.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/ios8@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-3@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/images/packed-4@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/notification/images/ios_notification_spinner.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/sectioned/UISectionedBackground.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/ios/sectioned/UISectionedBackground@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/list/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/checkmark.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/checkmark_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/down.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/menu_item.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/menu/up.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/panel-pane/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/panel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/pointers.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/popover_empty.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/picker/popover_pointers_notoolbar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_indeterminate_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/progress/progress_view_track.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_mixed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_mixed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/radio/radio_unselected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel_higher.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/sectioned/sel_higher@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/18px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/24px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/30px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/segmented/44px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/active_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/normal_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/select/select_after.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_dfe1e3@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ebebeb.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_f8f8f8@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_message_window.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_message_window@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_sidebar_sel.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_16px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_e8ebf2.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_18px_e8ebf2@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d3d5dc.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d3d5dc@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_20px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_30466a.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_30466a@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_e9ddc5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_24px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2b3d5e.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2b3d5e@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_32px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_42px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/spinners/images/spinner_42px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/token/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/source/resources/window/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-y.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-repeat-y@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubble2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet-resources/menu/menu@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet.css +262 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/en-us/stylesheet@2x.css +364 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/css3pie/PIE.htc +85 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/FontAwesome.otf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.eot +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.svg +565 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.woff +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/resources/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-alert.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-alert@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-info.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/alert/me-icon-info@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeReceived.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeReceived@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeSent.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleOrangeSent@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhiteSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/bubbleWhiteSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newBubbleGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newGreenBubble.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/chat/newGreenBubble@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_closed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_closed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_open.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/disclosure/disclosure_open_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/ios8.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/ios8@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-3.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-3@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-4.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/images/packed-4@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/notification/images/ios_notification_spinner.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/sectioned/UISectionedBackground.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/ios/sectioned/UISectionedBackground@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/list/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/checkmark.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/checkmark_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/down.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/menu_item.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/menu/up.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/panel-pane/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/panel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/pointers.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/popover_empty.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/picker/popover_pointers_notoolbar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_indeterminate_content.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/progress/progress_view_track.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_mixed.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_mixed_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/radio/radio_unselected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel_higher.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/sectioned/sel_higher@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/18px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/24px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/30px/segmented_vertical_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_normal.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_selected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/segmented/44px/segmented_selected_active.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/active_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/normal_select.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/select/select_after.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_dfe1e3@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ebebeb.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_f8f8f8@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_message_window.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_message_window@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_sidebar_sel.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_16px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_e8ebf2.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_18px_e8ebf2@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d3d5dc.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d3d5dc@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_20px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_30466a.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_30466a@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_e9ddc5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_fafafa@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_24px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_141414.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_1f1f1f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2b3d5e.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2b3d5e@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_2f2f2f.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_464646.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_d6d6d7.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_d6d6d7@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_dark_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_dfe1e3.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f3f5f5.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f3f5f5@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_f8f8f8.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_fafafa.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_ffffff_50pct.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_32px_white_linen.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_42px_ffffff.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/spinners/images/spinner_42px_ffffff@2x.gif +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlueSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenBlueSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreen.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreen@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreenSelected.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/token/tokenGreenSelected@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/navigation_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/navigation_bar@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/tab_bar.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window_background.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/source/resources/window/window_background@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-y.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-repeat-y@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble1.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble1@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble2.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubble2@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubbleWhite.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/bubbleWhite@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/newBubbleBlue.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/chat/newBubbleBlue@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/menu/menu.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet-resources/menu/menu@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet.css +262 -0
- package/public/applications/designer/5410/coreweb/steedos_theme_v3/5410/zh-cn/stylesheet@2x.css +364 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/loading.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/loading@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinner.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinner_white_32.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinning.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/en-us/source/resources/images/spinning@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/loading.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/loading@2x.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinner.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinner_white_32.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinning.png +0 -0
- package/public/applications/designer/5410/coreweb/views/5410/zh-cn/source/resources/images/spinning@2x.png +0 -0
- package/public/applications/designer/5410/en-us/index.html +64 -0
- package/public/applications/designer/5410/en-us/javascript-packed.js +87 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/18px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button_capsule.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/24px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/30px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/normal_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/button/44px/selected_button.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/images/navbar.png +0 -0
- package/public/applications/designer/5410/en-us/source/resources/images/navbar@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-packed.css +439 -0
- package/public/applications/designer/5410/en-us/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/en-us/stylesheet.css +69 -0
- package/public/applications/designer/5410/en-us/stylesheet@2x-packed.css +583 -0
- package/public/applications/designer/5410/en-us/stylesheet@2x.css +78 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_counterSign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_delete.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/button_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/canvas_bg.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/condition_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/countersign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/countersign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/delete_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/end_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_archive_nor.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/ico_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/link_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/sign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/sign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/start_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/submit_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/images/warning_sma.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/link_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/pickup-add-active.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/source/resources/pickup-add.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet-resources/images/canvas_bg@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/en-us/stylesheet.css +22 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_counterSign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_delete.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/button_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/canvas_bg.gif +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/condition_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/countersign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/countersign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/delete_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/end_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_archive.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_archive_nor.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_concurrentEnd.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_concurrentStart.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_condition.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_delete.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_end.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_link.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_notify.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_sign.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_start.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/ico_submit.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_16.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_20.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/link_button_32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/sign1_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/sign_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/start_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/submit_32x32.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/images/warning_sma.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/link_button.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/pickup-add-active.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/source/resources/pickup-add.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-resources/images/canvas_bg.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet-resources/images/canvas_bg@2x.png +0 -0
- package/public/applications/designer/5410/flowdesigner/5410/zh-cn/stylesheet.css +22 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/bg_wood.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/bg_wood@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_checked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_checked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_mixed.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_mixed_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_unchecked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/checkbox_unchecked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/currency.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/datePicker.gif +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/datePicker.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/delete_button@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/percentage.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/sprite.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/source/resources/warning_sma.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet.css +5 -0
- package/public/applications/designer/5410/formdesigner/5410/en-us/stylesheet@2x.css +8 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/bg_wood.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/bg_wood@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_checked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_checked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_mixed.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_mixed_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_unchecked.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/checkbox_unchecked_active.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/currency.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/datePicker.gif +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/datePicker.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/delete_button.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/delete_button@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/percentage.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/sprite.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/source/resources/warning_sma.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet.css +5 -0
- package/public/applications/designer/5410/formdesigner/5410/zh-cn/stylesheet@2x.css +8 -0
- package/public/applications/designer/5410/index.html +64 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/cap.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/downbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-alert-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-bookmark-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-bookmark-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-cancel-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-document-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-document-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-down-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-error-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-favorite-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-favorite-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-folder-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-folder-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-group-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-group-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-help-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-help-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-info-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-left-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-options-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-options-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-redo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-right-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-tools-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-trash-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-trash-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-undo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-up-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-user-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/icons/sc-icon-user-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-bottom.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-center.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/thumb-top.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/track.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/source/resources/images/upbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/en-us/stylesheet.css +35 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/cap.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/downbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-alert-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-bookmark-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-bookmark-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-cancel-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-document-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-document-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-down-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-error-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-favorite-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-favorite-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-folder-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-folder-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-group-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-group-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-help-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-help-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-info-48.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-left-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-options-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-options-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-redo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-right-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-tools-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-trash-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-trash-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-undo-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-up-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-user-16.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/icons/sc-icon-user-24.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-bottom.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-center.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/thumb-top.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/track.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/source/resources/images/upbutton.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/sproutcore/desktop/5410/zh-cn/stylesheet.css +35 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/resources/images/favicon.ico +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/blank.gif +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-logo.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-landscape.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-landscape.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-portrait.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup-portrait.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore-startup.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/source/resources/images/sproutcore.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/en-us/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/resources/images/favicon.ico +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/blank.gif +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-logo.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-landscape.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-landscape.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-portrait.jpg +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup-portrait.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore-startup.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/source/resources/images/sproutcore.png +0 -0
- package/public/applications/designer/5410/sproutcore/foundation/5410/zh-cn/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/yuireset/5410/en-us/stylesheet.css +2 -0
- package/public/applications/designer/5410/sproutcore/yuireset/5410/zh-cn/stylesheet.css +2 -0
- package/public/applications/designer/5410/zh-cn/index.html +64 -0
- package/public/applications/designer/5410/zh-cn/javascript-packed.js +87 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/18px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button_capsule.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/24px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/normal_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_active_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/30px/selected_button_pointer.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/normal_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/selected_active_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/button/44px/selected_button.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/images/navbar.png +0 -0
- package/public/applications/designer/5410/zh-cn/source/resources/images/navbar@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-no-repeat.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-no-repeat@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-packed.css +439 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-repeat-x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet-repeat-x@2x.png +0 -0
- package/public/applications/designer/5410/zh-cn/stylesheet.css +69 -0
- package/public/applications/designer/5410/zh-cn/stylesheet@2x-packed.css +583 -0
- package/public/applications/designer/5410/zh-cn/stylesheet@2x.css +78 -0
- package/public/applications/designer/current/en-us/index.html +64 -0
- package/public/applications/designer/current/index.html +64 -0
- package/public/applications/designer/current/zh-cn/index.html +64 -0
- package/public/applications/designer/index.html +64 -0
- package/public/workflow/index.css +369 -0
- package/src/instance_record_queue.js +1171 -0
- package/src/rests/api_workflow_instance_batch_remove.js +70 -0
- package/src/rests/getInstanceServiceSchema.js +72 -0
- package/src/rests/index.js +13 -0
- package/src/rests/updateFormFields.js +110 -0
- package/src/schema/instance_form_schema.amis.js +120 -0
- package/src/schema/steedos_form_schema.amis.js +205 -0
- package/src/schema/steedos_form_schema.table.amis.js +123 -0
- package/src/util/index.js +125 -0
|
@@ -0,0 +1,639 @@
|
|
|
1
|
+
const _ = require('underscore');
|
|
2
|
+
const { getObject } = require("@steedos/objectql");
|
|
3
|
+
const lodash = require('lodash');
|
|
4
|
+
|
|
5
|
+
const { _makeNewID, getCollection } = require('./collection');
|
|
6
|
+
|
|
7
|
+
async function getByAdminSpaceIds(spaceIds, companyId, isCompanyAdmin) {
|
|
8
|
+
let filters = _makeInFilters('space', spaceIds);
|
|
9
|
+
let spaceFilters = filters;
|
|
10
|
+
if (isCompanyAdmin && companyId) {
|
|
11
|
+
filters = `(${filters}) and ((company_id eq '${companyId}') or (company_id eq null))`;
|
|
12
|
+
}
|
|
13
|
+
let userIds = [];
|
|
14
|
+
let spaceUsers = [];
|
|
15
|
+
|
|
16
|
+
spaceUsers = await getObject('space_users').find({
|
|
17
|
+
filters: spaceFilters,
|
|
18
|
+
fields: ['name', 'email', 'space', 'organization', 'organizations', 'user', 'user_accepted', 'company_id']
|
|
19
|
+
})
|
|
20
|
+
userIds = _.pluck(spaceUsers, 'user');
|
|
21
|
+
|
|
22
|
+
let usersCollection = await getCollection('users');
|
|
23
|
+
let users = await usersCollection.find({
|
|
24
|
+
_id: {
|
|
25
|
+
$in: userIds
|
|
26
|
+
}
|
|
27
|
+
}, {
|
|
28
|
+
fields: {
|
|
29
|
+
'photo': 1,
|
|
30
|
+
'google_id': 1,
|
|
31
|
+
'imo_uid': 1,
|
|
32
|
+
'company': 1,
|
|
33
|
+
'name': 1,
|
|
34
|
+
'locale': 1,
|
|
35
|
+
'steedos_id': 1,
|
|
36
|
+
'primary_email_verified': 1,
|
|
37
|
+
'is_paid_user': 1,
|
|
38
|
+
'mobile': 1,
|
|
39
|
+
'email': 1,
|
|
40
|
+
'created': 1,
|
|
41
|
+
'modified': 1,
|
|
42
|
+
'created_by': 1,
|
|
43
|
+
'modified_by': 1,
|
|
44
|
+
'email_notification': 1,
|
|
45
|
+
'qq_open_id': 1
|
|
46
|
+
}
|
|
47
|
+
}).toArray();
|
|
48
|
+
|
|
49
|
+
let forms = await getObject('forms').find({
|
|
50
|
+
filters: filters,
|
|
51
|
+
fields: ['name', 'state', 'is_deleted', 'is_valid', 'space', 'description', 'help_text', 'created', 'created_by', 'error_message', 'current', 'enable_workflow', 'enable_view_others', 'app', 'category', 'is_subform', 'instance_style', 'company_id']
|
|
52
|
+
})
|
|
53
|
+
let flows = await getObject('flows').find({
|
|
54
|
+
filters: filters,
|
|
55
|
+
fields: ['name', 'name_formula', 'code_formula', 'space', 'description', 'is_valid', 'form', 'flowtype', 'state', 'is_deleted', 'created', 'created_by', 'help_text', 'current_no', 'current', 'perms', 'error_message', 'app', 'distribute_optional_users', 'company_id']
|
|
56
|
+
})
|
|
57
|
+
let roles = await getObject('flow_roles').find({
|
|
58
|
+
filters: filters
|
|
59
|
+
});
|
|
60
|
+
let organizations = await getObject('organizations').find({
|
|
61
|
+
filters: spaceFilters
|
|
62
|
+
});
|
|
63
|
+
let positions = await getObject('flow_positions').find({
|
|
64
|
+
filters: filters
|
|
65
|
+
});
|
|
66
|
+
let categories = await getObject('categories').find({
|
|
67
|
+
filters: _makeInFilters('space', spaceIds)
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
let hrRoles = await getObject('roles').find({
|
|
71
|
+
filters: filters
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
if (_.isArray(roles)) {
|
|
75
|
+
for (let role of roles) {
|
|
76
|
+
if (role && role.company_id) {
|
|
77
|
+
let company = await getObject('company').findOne(role.company_id, { fields: ['name'] }) //, 'abbreviation'
|
|
78
|
+
if (company && (company.name || company.abbreviation)) {
|
|
79
|
+
role.name = `${role.name} (${company.abbreviation || company.name})`
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return {
|
|
86
|
+
SpaceUsers: spaceUsers,
|
|
87
|
+
Users: users,
|
|
88
|
+
Forms: forms,
|
|
89
|
+
Flows: flows,
|
|
90
|
+
Organizations: organizations,
|
|
91
|
+
Positions: positions,
|
|
92
|
+
Roles: roles,
|
|
93
|
+
Categories: categories,
|
|
94
|
+
HrRoles: hrRoles
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
async function checkSpaceUserBeforeUpdate(spaceId, userId, roles) {
|
|
99
|
+
let space = await getObject('spaces').findOne(spaceId);
|
|
100
|
+
if (!space) {
|
|
101
|
+
throw new Error('该工作区不存在或已经被删除');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (space.admins.includes(userId)) {
|
|
105
|
+
return true;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
let spaceUser = (await getObject('space_users').find({
|
|
109
|
+
filters: `(space eq '${spaceId}') and (user eq '${userId}')`
|
|
110
|
+
}))[0];
|
|
111
|
+
|
|
112
|
+
if (!spaceUser) {
|
|
113
|
+
throw new Error('该用户不存在于该工作区中');
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (!roles.includes('workflow_admin')) { // 校验是否是单位管理员
|
|
117
|
+
throw new Error('该用户无操作权限');
|
|
118
|
+
}
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
async function updateForm(formId, form, forms, flows, currentUserId) {
|
|
122
|
+
let formCollection = await getCollection('forms');
|
|
123
|
+
let flowCollection = await getCollection('flows');
|
|
124
|
+
let ff = await formCollection.findOne({_id: formId});
|
|
125
|
+
let spaceId = ff.space;
|
|
126
|
+
let now = new Date();
|
|
127
|
+
let current = {};
|
|
128
|
+
let formUpdateObj = {};
|
|
129
|
+
|
|
130
|
+
let pass = false;
|
|
131
|
+
// 根据APP 判断表单当前版本是否走过申请单 或者 records
|
|
132
|
+
if (ff.app === 'workflow') {
|
|
133
|
+
let instancesCollection = await getCollection('instances');
|
|
134
|
+
let insCount = await instancesCollection.countDocuments({
|
|
135
|
+
space: spaceId,
|
|
136
|
+
form: formId,
|
|
137
|
+
'form_version': form['current']['id']
|
|
138
|
+
});
|
|
139
|
+
if (insCount > 0) {
|
|
140
|
+
pass = true;
|
|
141
|
+
}
|
|
142
|
+
} else if (ff.app === 'creator') {
|
|
143
|
+
let recordsCollection = await getCollection('records');
|
|
144
|
+
let recordsCount = await recordsCollection.countDocuments({
|
|
145
|
+
space: spaceId,
|
|
146
|
+
form: formId,
|
|
147
|
+
'form_version': form['current']['id']
|
|
148
|
+
});
|
|
149
|
+
if (recordsCount > 0) {
|
|
150
|
+
pass = true;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (pass === true && ff["current"]["start_date"]) { // 升级表单
|
|
155
|
+
formUpdateObj.$push = {
|
|
156
|
+
'historys': ff["current"]
|
|
157
|
+
};
|
|
158
|
+
current._id = _makeNewID();
|
|
159
|
+
current._rev = ff["current"]["_rev"] + 1;
|
|
160
|
+
current.created = now;
|
|
161
|
+
current.created_by = currentUserId;
|
|
162
|
+
if (ff.state === 'enabled') {
|
|
163
|
+
current.start_date = now;
|
|
164
|
+
}
|
|
165
|
+
// 更新流程版本
|
|
166
|
+
let flowCursor = await flowCollection.find({form: formId});
|
|
167
|
+
let flowList = await flowCursor.toArray();
|
|
168
|
+
|
|
169
|
+
for (let flow of flowList) {
|
|
170
|
+
let up = false;
|
|
171
|
+
let instancesCollection = await getCollection('instances');
|
|
172
|
+
let insCount = await instancesCollection.countDocuments({
|
|
173
|
+
space: spaceId,
|
|
174
|
+
flow: flow._id,
|
|
175
|
+
flow_version: flow.current._id
|
|
176
|
+
});
|
|
177
|
+
if (insCount) {
|
|
178
|
+
up = true;
|
|
179
|
+
}
|
|
180
|
+
let flowUpdateObj = {
|
|
181
|
+
$set: {}
|
|
182
|
+
};
|
|
183
|
+
if (up === true && flow.current.start_date) { // 升级流程
|
|
184
|
+
flowUpdateObj.$push = {
|
|
185
|
+
'historys': flow.current
|
|
186
|
+
};
|
|
187
|
+
let flowCurrent = {
|
|
188
|
+
'_id': _makeNewID(),
|
|
189
|
+
'created': now,
|
|
190
|
+
'created_by': currentUserId,
|
|
191
|
+
'steps': flow.current.steps,
|
|
192
|
+
'_rev': flow.current._rev + 1,
|
|
193
|
+
'flow': flow._id,
|
|
194
|
+
'form_version': current._id,
|
|
195
|
+
'modified': now,
|
|
196
|
+
'modified_by': currentUserId
|
|
197
|
+
};
|
|
198
|
+
if (flow.state === "enabled") {
|
|
199
|
+
flowCurrent.start_date = now;
|
|
200
|
+
}
|
|
201
|
+
flowUpdateObj.$set['current'] = flowCurrent;
|
|
202
|
+
} else {
|
|
203
|
+
flowUpdateObj.$set = {
|
|
204
|
+
'current.form_version': current._id,
|
|
205
|
+
'current.modified': now,
|
|
206
|
+
'current.modified_by': currentUserId
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
flowUpdateObj.$set['modified'] = now;
|
|
210
|
+
flowUpdateObj.$set['modified_by'] = currentUserId;
|
|
211
|
+
await flowCollection.updateOne({_id: flow._id}, flowUpdateObj);
|
|
212
|
+
flows.push(await flowCollection.findOne({_id: flow._id}));
|
|
213
|
+
}
|
|
214
|
+
} else {
|
|
215
|
+
current = ff.current;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
current.modified = now;
|
|
219
|
+
current.modified_by = currentUserId;
|
|
220
|
+
current.form = formId;
|
|
221
|
+
current.fields = _formatFieldsID(form["current"]["fields"]);
|
|
222
|
+
current.form_script = form["current"]["form_script"];
|
|
223
|
+
current.name_forumla = form["current"]["name_forumla"];
|
|
224
|
+
|
|
225
|
+
formUpdateObj.$set = {
|
|
226
|
+
'current': current,
|
|
227
|
+
'name': form["name"],
|
|
228
|
+
'modified': now,
|
|
229
|
+
'modified_by': currentUserId,
|
|
230
|
+
'is_valid': form["is_valid"],
|
|
231
|
+
'description': form["description"],
|
|
232
|
+
'help_text': form["help_text"],
|
|
233
|
+
'error_message': form["error_message"],
|
|
234
|
+
'category': form["category"],
|
|
235
|
+
'instance_style': form["instance_style"]
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
await formCollection.updateOne({_id: formId}, formUpdateObj);
|
|
239
|
+
forms.push(await formCollection.findOne({_id: formId}));
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
async function checkBeforeFlow(spaceId, formId) {
|
|
243
|
+
if (await getObject('spaces').count({
|
|
244
|
+
filters: `(_id eq '${spaceId}')`
|
|
245
|
+
}) === 0) {
|
|
246
|
+
throw new Error('工作区不存在或已经被删除')
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
if (await getObject('forms').count({
|
|
250
|
+
filters: `(_id eq '${formId}')`
|
|
251
|
+
}) === 0) {
|
|
252
|
+
throw new Error('表单不存在')
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
async function getFlow(flowId) {
|
|
257
|
+
let flow = await getObject('flows').findOne(flowId);
|
|
258
|
+
if (!flow) {
|
|
259
|
+
throw new Error('流程不存在')
|
|
260
|
+
}
|
|
261
|
+
return flow;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
async function getForm(formId) {
|
|
265
|
+
let form = await getObject('forms').findOne(formId);
|
|
266
|
+
if (!form) {
|
|
267
|
+
throw new Error('表单不存在')
|
|
268
|
+
}
|
|
269
|
+
return form;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
async function getSpaceUser(userId, spaceId) {
|
|
273
|
+
let spaceUser = (await getObject('space_users').find({
|
|
274
|
+
filters: `(space eq '${spaceId}') and (user eq '${userId}')`
|
|
275
|
+
}))[0];
|
|
276
|
+
if (!spaceUser) {
|
|
277
|
+
throw new Error('用户不属于当前工作区')
|
|
278
|
+
}
|
|
279
|
+
if (!spaceUser.user_accepted) {
|
|
280
|
+
throw new Error('用户在当前工作区是停用状态')
|
|
281
|
+
}
|
|
282
|
+
return spaceUser;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
async function isSpaceAdmin(spaceId, userId, roles) {
|
|
286
|
+
let space = await getObject('spaces').findOne(spaceId);
|
|
287
|
+
if (!space) {
|
|
288
|
+
throw new Error('未找到工作区');
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
if (!space.admins.includes(userId) && !roles.includes('workflow_admin')) {
|
|
292
|
+
throw new Error('用户无操作权限');
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
async function makeSteps(userId, fields = []) {
|
|
297
|
+
let blank_ayy = [];
|
|
298
|
+
let stepEnd = _makeNewID();
|
|
299
|
+
let steps = [];
|
|
300
|
+
let start_step = {};
|
|
301
|
+
start_step._id = _makeNewID();
|
|
302
|
+
start_step.approver_orgs = blank_ayy;
|
|
303
|
+
start_step.approver_roles = blank_ayy;
|
|
304
|
+
start_step.approver_users = blank_ayy;
|
|
305
|
+
start_step.fields_modifiable = blank_ayy;
|
|
306
|
+
start_step.name = '开始';
|
|
307
|
+
start_step.step_type = "start";
|
|
308
|
+
start_step.posx = -1;
|
|
309
|
+
start_step.posy = -1;
|
|
310
|
+
let p = {};
|
|
311
|
+
p["__form"] = "editable";
|
|
312
|
+
for (const f of fields) {
|
|
313
|
+
p[f.code] = 'editable'
|
|
314
|
+
if (f.type == 'table') {
|
|
315
|
+
for (const tf of (f.fields || [])) {
|
|
316
|
+
p[tf.code] = 'editable';
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
start_step.permissions = p;
|
|
321
|
+
let lines = [];
|
|
322
|
+
let line = {};
|
|
323
|
+
line._id = _makeNewID();
|
|
324
|
+
line.name = "";
|
|
325
|
+
line.to_step = stepEnd;
|
|
326
|
+
line.order = 1;
|
|
327
|
+
line.state = "submitted";
|
|
328
|
+
lines.push(line);
|
|
329
|
+
start_step.lines = lines;
|
|
330
|
+
steps.push(start_step);
|
|
331
|
+
|
|
332
|
+
let end_step = {};
|
|
333
|
+
end_step._id = stepEnd;
|
|
334
|
+
end_step.approver_orgs = blank_ayy;
|
|
335
|
+
end_step.approver_roles = blank_ayy;
|
|
336
|
+
end_step.approver_users = blank_ayy;
|
|
337
|
+
end_step.fields_modifiable = blank_ayy;
|
|
338
|
+
end_step.lines = blank_ayy;
|
|
339
|
+
end_step.name = '结束';
|
|
340
|
+
end_step.step_type = "end";
|
|
341
|
+
end_step.posx = -1;
|
|
342
|
+
end_step.posy = -1;
|
|
343
|
+
end_step.permissions = {};
|
|
344
|
+
steps.push(end_step);
|
|
345
|
+
|
|
346
|
+
return steps;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
function _makeInFilters(fieldName, fieldValueArray) {
|
|
350
|
+
let filters = _.map(fieldValueArray, function (v) {
|
|
351
|
+
return `(${fieldName} eq '${v}')`
|
|
352
|
+
}).join(' or ')
|
|
353
|
+
return filters;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
function _formatFieldsID(fields) {
|
|
357
|
+
_.each(fields, function (f) {
|
|
358
|
+
if (!f._id && f.id) {
|
|
359
|
+
f._id = f.id;
|
|
360
|
+
delete f.id;
|
|
361
|
+
if (f.type == 'section' || f.type == 'table') {
|
|
362
|
+
_formatFieldsID(f.fields);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
});
|
|
366
|
+
return fields;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
async function transformObjectFieldsToFormFields(objFields, codePrefix) {
|
|
370
|
+
let formFieldsMap = {};
|
|
371
|
+
for (const f of objFields) {
|
|
372
|
+
const formField = await _transformObjectFieldToFormField(f, codePrefix);
|
|
373
|
+
if (formField) {
|
|
374
|
+
formFieldsMap[formField.code] = formField;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
return formFieldsMap;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
async function _transformObjectFieldToFormField(objField, codePrefix = '') {
|
|
381
|
+
let formField = {
|
|
382
|
+
"name": objField.label,
|
|
383
|
+
"code": `${codePrefix}${objField.name}`,
|
|
384
|
+
"is_wide": objField.is_wide || false,
|
|
385
|
+
"is_list_display": false,
|
|
386
|
+
"is_searchable": objField.sortable || false,
|
|
387
|
+
"is_required": objField.required || false,
|
|
388
|
+
"is_multiselect": objField.multiple || false,
|
|
389
|
+
"default_value": objField.defaultValue,
|
|
390
|
+
"_id": _makeNewID(),
|
|
391
|
+
"steedos_field": lodash.pickBy(objField, (v,k)=>{
|
|
392
|
+
return !lodash.includes(['_id', '_name', 'is_system', 'space', 'company_id', 'company_ids', 'object_name', 'owner', 'created', 'modified', 'created_by', 'modified_by'], k)
|
|
393
|
+
})
|
|
394
|
+
};
|
|
395
|
+
switch (objField.type) {
|
|
396
|
+
case 'text':
|
|
397
|
+
formField.type = "input";
|
|
398
|
+
break;
|
|
399
|
+
case 'textarea':
|
|
400
|
+
formField.type = "input";
|
|
401
|
+
formField.is_textarea = true;
|
|
402
|
+
break;
|
|
403
|
+
case 'html':
|
|
404
|
+
formField.type = "html";
|
|
405
|
+
break;
|
|
406
|
+
case 'select':
|
|
407
|
+
if (_.isArray(objField.options)) {
|
|
408
|
+
formField.type = objField.multiple ? "multiSelect" : "select";
|
|
409
|
+
formField.options = _.map(objField.options, function (optionItem) {
|
|
410
|
+
return optionItem.label + ":" + optionItem.value;
|
|
411
|
+
}).join('\n');
|
|
412
|
+
}
|
|
413
|
+
break;
|
|
414
|
+
case 'color':
|
|
415
|
+
formField.type = "input";
|
|
416
|
+
break;
|
|
417
|
+
case 'boolean':
|
|
418
|
+
formField.type = "checkbox";
|
|
419
|
+
break;
|
|
420
|
+
case 'toggle':
|
|
421
|
+
formField.type = "checkbox";
|
|
422
|
+
break;
|
|
423
|
+
case 'date':
|
|
424
|
+
formField.type = "date";
|
|
425
|
+
break;
|
|
426
|
+
case 'datetime':
|
|
427
|
+
formField.type = "dateTime";
|
|
428
|
+
break;
|
|
429
|
+
case 'time':
|
|
430
|
+
formField.type = "time";
|
|
431
|
+
break;
|
|
432
|
+
case 'number':
|
|
433
|
+
formField.type = "number";
|
|
434
|
+
formField.digits = objField.scale;
|
|
435
|
+
break;
|
|
436
|
+
case 'currency':
|
|
437
|
+
formField.type = "number";
|
|
438
|
+
formField.digits = objField.scale;
|
|
439
|
+
break;
|
|
440
|
+
case 'percent':
|
|
441
|
+
formField.type = "number";
|
|
442
|
+
formField.digits = objField.scale;
|
|
443
|
+
formField.is_percent = true;
|
|
444
|
+
break;
|
|
445
|
+
case 'password':
|
|
446
|
+
formField.type = "password";
|
|
447
|
+
break;
|
|
448
|
+
case 'lookup':
|
|
449
|
+
case 'master_detail':
|
|
450
|
+
let refObjName = objField.reference_to;
|
|
451
|
+
const refToField = objField.reference_to_field
|
|
452
|
+
if (_.isString(refObjName)) {
|
|
453
|
+
// 人员需转为选择人员字段、部门需转为选择部门字段
|
|
454
|
+
if ('users' == refObjName || ('space_users' == refObjName && 'user' == refToField)) {
|
|
455
|
+
formField.type = 'user'
|
|
456
|
+
} else if ('organizations' == refObjName) {
|
|
457
|
+
formField.type = 'group'
|
|
458
|
+
} else {
|
|
459
|
+
formField.type = 'lookup';
|
|
460
|
+
formField.reference_to = objField.reference_to;
|
|
461
|
+
formField.reference_to_field = objField.reference_to_field;
|
|
462
|
+
formField.config = JSON.stringify({filters: objField.filters, amis: objField.amis});
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
break;
|
|
467
|
+
case 'autonumber':
|
|
468
|
+
formField.type = "input";
|
|
469
|
+
break;
|
|
470
|
+
case 'url':
|
|
471
|
+
formField.type = "url";
|
|
472
|
+
break;
|
|
473
|
+
case 'email':
|
|
474
|
+
formField.type = "email";
|
|
475
|
+
break;
|
|
476
|
+
case 'code':
|
|
477
|
+
formField.type = "input";
|
|
478
|
+
formField.is_textarea = true;
|
|
479
|
+
break;
|
|
480
|
+
case 'image':
|
|
481
|
+
case 'file':
|
|
482
|
+
formField.type = objField.type;
|
|
483
|
+
break;
|
|
484
|
+
case 'formula':
|
|
485
|
+
case 'summary':
|
|
486
|
+
switch (objField.data_type) {
|
|
487
|
+
case 'boolean':
|
|
488
|
+
formField.type = "checkbox";
|
|
489
|
+
break;
|
|
490
|
+
case 'number':
|
|
491
|
+
case 'currency':
|
|
492
|
+
formField.type = "number";
|
|
493
|
+
formField.digits = objField.scale;
|
|
494
|
+
break;
|
|
495
|
+
case 'percent':
|
|
496
|
+
formField.type = "number";
|
|
497
|
+
formField.digits = objField.scale;
|
|
498
|
+
formField.is_percent = true;
|
|
499
|
+
break;
|
|
500
|
+
case 'text':
|
|
501
|
+
formField.type = "input";
|
|
502
|
+
break;
|
|
503
|
+
case 'date':
|
|
504
|
+
formField.type = "date";
|
|
505
|
+
break;
|
|
506
|
+
case 'datetime':
|
|
507
|
+
formField.type = "dateTime";
|
|
508
|
+
break;
|
|
509
|
+
default:
|
|
510
|
+
break;
|
|
511
|
+
}
|
|
512
|
+
break;
|
|
513
|
+
default:
|
|
514
|
+
break;
|
|
515
|
+
}
|
|
516
|
+
if (formField.type) {
|
|
517
|
+
return formField;
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
function transformObjectFields(fields, objFieldsMap) {
|
|
522
|
+
let newFields = [];
|
|
523
|
+
for (const f of fields) {
|
|
524
|
+
let field = objFieldsMap[f.name];
|
|
525
|
+
if (field) {
|
|
526
|
+
newFields.push({
|
|
527
|
+
...field,
|
|
528
|
+
required: !!f.required
|
|
529
|
+
})
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
return newFields;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
function getObjectFieldsByNames(fieldNames = [], objFieldsMap = {}) {
|
|
536
|
+
let newFields = [];
|
|
537
|
+
for (const fName of fieldNames) {
|
|
538
|
+
let field = objFieldsMap[fName];
|
|
539
|
+
if (field) {
|
|
540
|
+
newFields.push({
|
|
541
|
+
...field
|
|
542
|
+
})
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
return newFields;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
function getNeededFields(fields) {
|
|
549
|
+
return {
|
|
550
|
+
name: fields.name,
|
|
551
|
+
label: fields.label,
|
|
552
|
+
required: fields.required
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
async function getBusinessFields(objectName) {
|
|
557
|
+
if (!objectName) {
|
|
558
|
+
return []
|
|
559
|
+
}
|
|
560
|
+
let instanceFields = [];
|
|
561
|
+
let objFields = await getObject(objectName).getFields();
|
|
562
|
+
let baseFields = await getObject('base').getFields();
|
|
563
|
+
for (const key in objFields) {
|
|
564
|
+
if (Object.hasOwnProperty.call(objFields, key)) {
|
|
565
|
+
let f = objFields[key]
|
|
566
|
+
if (f && !baseFields[key]) {
|
|
567
|
+
instanceFields.push(getNeededFields(f))
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
return instanceFields
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
async function updateStartStepPermission(flowDoc, formFields = []) {
|
|
576
|
+
if (!flowDoc) {
|
|
577
|
+
return;
|
|
578
|
+
}
|
|
579
|
+
const flowObj = getObject('flows');
|
|
580
|
+
for (const s of flowDoc.current.steps) {
|
|
581
|
+
if (s.step_type == 'start') {
|
|
582
|
+
let perms = { "__form": "editable" };
|
|
583
|
+
for (const f of formFields) {
|
|
584
|
+
perms[f.code] = 'editable';
|
|
585
|
+
if (f.type == 'table') {
|
|
586
|
+
for (const tf of (f.fields || [])) {
|
|
587
|
+
perms[tf.code] = 'editable';
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
s.permissions = perms;
|
|
592
|
+
await flowObj.directUpdate(flowDoc._id, { 'current.steps': flowDoc.current.steps })
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
async function transformObjectDetailFieldsToFormTableFields(instance_table_fields) {
|
|
598
|
+
const tables = [];
|
|
599
|
+
for (const tf of instance_table_fields) {
|
|
600
|
+
let detailFieldFullname = tf.detail_field_fullname;
|
|
601
|
+
let detailObjName = detailFieldFullname.split('.')[0];
|
|
602
|
+
const detailObj = getObject(detailObjName);
|
|
603
|
+
const detailObjConfig = await detailObj.toConfig();
|
|
604
|
+
let tLabel = tf.label || detailObjConfig.label;
|
|
605
|
+
let tableFields = getObjectFieldsByNames(tf.field_names, detailObjConfig.fields);
|
|
606
|
+
const tFieldsMap = await transformObjectFieldsToFormFields(tableFields, `${detailObjName}_`);
|
|
607
|
+
const tFields = Object.values(tFieldsMap);
|
|
608
|
+
tables.push({
|
|
609
|
+
"type": "table",
|
|
610
|
+
"name": tLabel,
|
|
611
|
+
"code": detailObjName,
|
|
612
|
+
"is_wide": true,
|
|
613
|
+
"is_required": false,
|
|
614
|
+
"fields": tFields,
|
|
615
|
+
"_id": _makeNewID(),
|
|
616
|
+
"relatedId": detailFieldFullname
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
return tables
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
module.exports = {
|
|
623
|
+
getByAdminSpaceIds,
|
|
624
|
+
checkSpaceUserBeforeUpdate,
|
|
625
|
+
updateForm,
|
|
626
|
+
checkBeforeFlow,
|
|
627
|
+
getFlow,
|
|
628
|
+
getForm,
|
|
629
|
+
getSpaceUser,
|
|
630
|
+
isSpaceAdmin,
|
|
631
|
+
makeSteps,
|
|
632
|
+
formatFieldsID: _formatFieldsID,
|
|
633
|
+
transformObjectFieldsToFormFields,
|
|
634
|
+
transformObjectFields,
|
|
635
|
+
getObjectFieldsByNames,
|
|
636
|
+
getBusinessFields,
|
|
637
|
+
updateStartStepPermission,
|
|
638
|
+
transformObjectDetailFieldsToFormTableFields
|
|
639
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: sunhaolin@hotoa.com
|
|
3
|
+
* @Date: 2022-03-26 12:05:37
|
|
4
|
+
* @Last Modified by: sunhaolin@hotoa.com
|
|
5
|
+
* @Last Modified time: 2022-03-26 12:08:45
|
|
6
|
+
*/
|
|
7
|
+
"use strict";
|
|
8
|
+
// @ts-check
|
|
9
|
+
|
|
10
|
+
const objectql = require('@steedos/objectql');
|
|
11
|
+
const { funEval } = require('./convert');
|
|
12
|
+
const { v4: uuidv4 } = require('uuid');
|
|
13
|
+
const PROCESS_TRIGGER = 'processTrigger';
|
|
14
|
+
const LISTENTO_ALL_FLOWS = 'LISTENTO_ALL_FLOWS';
|
|
15
|
+
module.exports = {
|
|
16
|
+
excuteTriggers: async function ({ when, userId, flowId, insId, nextStep, nextUserIds }) {
|
|
17
|
+
if ('true' !== process.env.STEEDOS_ENABLE_PROCESS_TRIGGER) {
|
|
18
|
+
return // 未开启流程触发器,直接返回
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const flow = (await objectql.getObject('flows').directFind({ filters: ['_id', '=', flowId], fields: ['api_name', 'space'] }))[0];
|
|
22
|
+
const flowApiName = flow.api_name;
|
|
23
|
+
const broker = objectql.getSteedosSchema().broker;
|
|
24
|
+
|
|
25
|
+
let triggers = await objectql.registerProcessTrigger.find(broker, { pattern: `${flowApiName}.${when}.*` });
|
|
26
|
+
let wildTriggers = await objectql.registerProcessTrigger.find(broker, { pattern: `${LISTENTO_ALL_FLOWS}.${when}.*` });
|
|
27
|
+
|
|
28
|
+
if (triggers.length === 0 && wildTriggers.length === 0) {
|
|
29
|
+
return; // 没有触发器,直接返回
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const spaceId = flow.space;
|
|
33
|
+
const instanceDoc = await objectql.getObject('instances').findOne(insId);
|
|
34
|
+
let allTriggers = triggers.concat(wildTriggers);
|
|
35
|
+
const event = {
|
|
36
|
+
data: {
|
|
37
|
+
id: insId, // 审批单的唯一标识 string
|
|
38
|
+
userId: userId, // 当前用户唯一标识 string
|
|
39
|
+
spaceId: spaceId, // 当前工作区唯一标识 string
|
|
40
|
+
flowName: flowApiName, // 当前流程API名称 string
|
|
41
|
+
instance: instanceDoc, // 当前审批单 json
|
|
42
|
+
// step: ,// 当前步骤 json
|
|
43
|
+
nextStep: nextStep, // 下一步骤 json
|
|
44
|
+
// traceId: ,
|
|
45
|
+
// values: ,// 当前审批单表单值 json
|
|
46
|
+
nextUserIds: nextUserIds, // 下一步骤处理人选项清单 [string]
|
|
47
|
+
// nextUserId: , // 当前步骤已选下一步骤处理人 string
|
|
48
|
+
// instanceState: , // 审批单状态 draft/pending/completed/approved/rejected/terminated
|
|
49
|
+
// traceState: , // 审核状态 pending/approved/rejected
|
|
50
|
+
// approveState: , // 审核状态 pending/approved/rejected
|
|
51
|
+
broker: broker
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
const context = {
|
|
55
|
+
id: uuidv4()
|
|
56
|
+
}
|
|
57
|
+
for (const t of allTriggers) {
|
|
58
|
+
await funEval(t.metadata.handler)(event, context)
|
|
59
|
+
}
|
|
60
|
+
// 发送事件
|
|
61
|
+
broker.emit(`${PROCESS_TRIGGER}.${when}`, { id: insId, userId: userId });
|
|
62
|
+
}
|
|
63
|
+
}
|