@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
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
code: admin
|
|
2
|
+
tab_items:
|
|
3
|
+
admin_process_delegation_rules:
|
|
4
|
+
group: personal_settings
|
|
5
|
+
index: 2
|
|
6
|
+
admin_flows:
|
|
7
|
+
group: approval_workflow
|
|
8
|
+
index: 20
|
|
9
|
+
admin_roles:
|
|
10
|
+
group: approval_workflow
|
|
11
|
+
index: 25
|
|
12
|
+
admin_flow_roles:
|
|
13
|
+
group: approval_workflow
|
|
14
|
+
index: 26
|
|
15
|
+
admin_flow_positions:
|
|
16
|
+
group: approval_workflow
|
|
17
|
+
index: 26.5
|
|
18
|
+
admin_categories:
|
|
19
|
+
group: approval_workflow
|
|
20
|
+
index: 28
|
|
21
|
+
admin_instance_number_rules:
|
|
22
|
+
group: approval_workflow
|
|
23
|
+
index: 29
|
|
24
|
+
admin_space_user_signs:
|
|
25
|
+
group: approval_workflow
|
|
26
|
+
index: 30
|
|
27
|
+
admin_instances_statistic:
|
|
28
|
+
group: approval_workflow
|
|
29
|
+
index: 31
|
|
30
|
+
admin_webhooks:
|
|
31
|
+
group: approval_workflow
|
|
32
|
+
index: 32
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
name: 审批中心
|
|
2
|
+
description: 提供图形化的表单与流程设计界面,自定义企业业务审批流程。
|
|
3
|
+
code: approve_workflow
|
|
4
|
+
visible: true
|
|
5
|
+
icon_slds: approval
|
|
6
|
+
is_creator: true
|
|
7
|
+
mobile: true
|
|
8
|
+
sort: 10
|
|
9
|
+
tabs:
|
|
10
|
+
- object_instance_tasks
|
|
11
|
+
admin_menus:
|
|
12
|
+
# 分部管理员可以创建和设置流程及相关参数。
|
|
13
|
+
- _id: menu_workflow
|
|
14
|
+
name: Approval Plus
|
|
15
|
+
permission_sets:
|
|
16
|
+
- admin
|
|
17
|
+
- workflow_admin
|
|
18
|
+
# - user
|
|
19
|
+
expanded: false
|
|
20
|
+
sort: 500
|
|
21
|
+
- _id: roles
|
|
22
|
+
name: Roles
|
|
23
|
+
permission_sets:
|
|
24
|
+
- admin
|
|
25
|
+
object_name: roles
|
|
26
|
+
parent: menu_workflow
|
|
27
|
+
sort: 40
|
|
28
|
+
- _id: flow_roles
|
|
29
|
+
name: Approval Roles
|
|
30
|
+
permission_sets:
|
|
31
|
+
- admin
|
|
32
|
+
- workflow_admin
|
|
33
|
+
object_name: flow_roles
|
|
34
|
+
parent: menu_workflow
|
|
35
|
+
sort: 50
|
|
36
|
+
- _id: flows
|
|
37
|
+
name: Workflows
|
|
38
|
+
permission_sets:
|
|
39
|
+
- admin
|
|
40
|
+
- workflow_admin
|
|
41
|
+
object_name: flows
|
|
42
|
+
parent: menu_workflow
|
|
43
|
+
# - _id: flow_positions
|
|
44
|
+
# name: Workflow Positions
|
|
45
|
+
# permission_sets:
|
|
46
|
+
# - admin
|
|
47
|
+
# - workflow_admin
|
|
48
|
+
# object_name: flow_positions
|
|
49
|
+
# parent: menu_workflow
|
|
50
|
+
- _id: categories
|
|
51
|
+
name: Workflow Categories
|
|
52
|
+
permission_sets:
|
|
53
|
+
- admin
|
|
54
|
+
- workflow_admin
|
|
55
|
+
object_name: categories
|
|
56
|
+
parent: menu_workflow
|
|
57
|
+
- _id: instance_number_rules
|
|
58
|
+
name: Instance Number Rules
|
|
59
|
+
permission_sets:
|
|
60
|
+
- admin
|
|
61
|
+
- workflow_admin
|
|
62
|
+
object_name: instance_number_rules
|
|
63
|
+
parent: menu_workflow
|
|
64
|
+
- _id: space_user_signs
|
|
65
|
+
name: User Sign
|
|
66
|
+
permission_sets:
|
|
67
|
+
- admin
|
|
68
|
+
- workflow_admin
|
|
69
|
+
object_name: space_user_signs
|
|
70
|
+
parent: menu_workflow
|
|
71
|
+
- _id: instances_statistic
|
|
72
|
+
name: Statistic
|
|
73
|
+
permission_sets:
|
|
74
|
+
- admin
|
|
75
|
+
- workflow_admin
|
|
76
|
+
object_name: instances_statistic
|
|
77
|
+
parent: menu_workflow
|
|
78
|
+
- _id: webhooks
|
|
79
|
+
name: Webhooks
|
|
80
|
+
permission_sets:
|
|
81
|
+
- admin
|
|
82
|
+
object_name: webhooks
|
|
83
|
+
parent: menu_workflow
|
|
84
|
+
- _id: object_workflows
|
|
85
|
+
name: Object Synchronization Rule
|
|
86
|
+
permission_sets:
|
|
87
|
+
- admin
|
|
88
|
+
object_name: object_workflows
|
|
89
|
+
parent: menu_workflow
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
window.InstanceDetailEnabledAmisRender = true;
|
|
2
|
+
|
|
3
|
+
if(!window.SteedosWorkflow){
|
|
4
|
+
window.SteedosWorkflow = {}
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
window.SteedosWorkflow.InstanceTask = {
|
|
9
|
+
getListViewSchema: (flow)=>{
|
|
10
|
+
|
|
11
|
+
let crudDataFilter = "";
|
|
12
|
+
|
|
13
|
+
let fields = flow?.form__expand?.current?.fields;
|
|
14
|
+
|
|
15
|
+
if(fields){
|
|
16
|
+
fields.forEach(function (field) {
|
|
17
|
+
if (field.is_list_display) {
|
|
18
|
+
crudDataFilter = crudDataFilter + `
|
|
19
|
+
crud.columns.push({
|
|
20
|
+
"name": "instance__expand.values.${field.code}",
|
|
21
|
+
"label": "${field.name || field.code}",
|
|
22
|
+
"width": "unset",
|
|
23
|
+
"type": "text",
|
|
24
|
+
"className": " whitespace-nowrap",
|
|
25
|
+
"static": true,
|
|
26
|
+
"options": null
|
|
27
|
+
});\r\n
|
|
28
|
+
`;
|
|
29
|
+
}
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if(crudDataFilter){
|
|
34
|
+
crudDataFilter = crudDataFilter + `
|
|
35
|
+
return crud
|
|
36
|
+
`;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
return {
|
|
41
|
+
"type": "steedos-object-listview",
|
|
42
|
+
"objectApiName": "instance_tasks",
|
|
43
|
+
"columnsTogglable": false,
|
|
44
|
+
"filterVisible": true,
|
|
45
|
+
"showHeader": true,
|
|
46
|
+
"id": "u:d29cef0d1007",
|
|
47
|
+
"showDisplayAs": true,
|
|
48
|
+
"className": "h-full w-full bg-white instance-tasks-list",
|
|
49
|
+
"hiddenColumnOperation": true,
|
|
50
|
+
"formFactor": "LARGE",
|
|
51
|
+
"headerToolbarItems": [
|
|
52
|
+
{
|
|
53
|
+
"type": "button",
|
|
54
|
+
"label": "",
|
|
55
|
+
"icon": "fa fa-bars",
|
|
56
|
+
"className": "bg-white p-2 rounded border-gray-300 text-gray-500",
|
|
57
|
+
"align": "right",
|
|
58
|
+
"onEvent": {
|
|
59
|
+
"click": {
|
|
60
|
+
"actions": [
|
|
61
|
+
{
|
|
62
|
+
"actionType": "custom",
|
|
63
|
+
"script": "document.querySelector('.instances-customPage').classList.toggle('instances-sidebar-open');if(window.innerWidth < 768){document.querySelector('.isInset').classList.toggle('inset-0')}"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"id": "u:115e270cae4d"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"listName": "inbox",
|
|
72
|
+
"rowClassNameExpr": "<%=(data.is_read === false && (!data.clientIds || data.clientIds.length == 0 || !data.clientIds.includes(data._id))) ? 'unread-instance' : '' %>",
|
|
73
|
+
"crudDataFilter": crudDataFilter
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
window.SteedosWorkflow.Instance = {
|
|
79
|
+
getListViewSchema: (flow)=>{
|
|
80
|
+
let crudDataFilter = "";
|
|
81
|
+
|
|
82
|
+
let fields = flow?.form__expand?.current?.fields;
|
|
83
|
+
|
|
84
|
+
if(fields){
|
|
85
|
+
fields.forEach(function (field) {
|
|
86
|
+
if (field.is_list_display) {
|
|
87
|
+
crudDataFilter = crudDataFilter + `
|
|
88
|
+
crud.columns.push({
|
|
89
|
+
"name": "instance__expand.values.${field.code}",
|
|
90
|
+
"label": "${field.name || field.code}",
|
|
91
|
+
"width": "unset",
|
|
92
|
+
"type": "text",
|
|
93
|
+
"className": " whitespace-nowrap",
|
|
94
|
+
"static": true,
|
|
95
|
+
"options": null
|
|
96
|
+
});\r\n
|
|
97
|
+
`;
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
if(crudDataFilter){
|
|
103
|
+
crudDataFilter = crudDataFilter + `
|
|
104
|
+
return crud
|
|
105
|
+
`;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
return {
|
|
109
|
+
"type": "steedos-object-listview",
|
|
110
|
+
"objectApiName": "instances",
|
|
111
|
+
"columnsTogglable": false,
|
|
112
|
+
"filterVisible": true,
|
|
113
|
+
"showHeader": true,
|
|
114
|
+
"id": "u:d29cef0d1007",
|
|
115
|
+
"showDisplayAs": true,
|
|
116
|
+
"className": "h-full w-full bg-white",
|
|
117
|
+
"hiddenColumnOperation": true,
|
|
118
|
+
"formFactor": "LARGE",
|
|
119
|
+
"headerToolbarItems": [
|
|
120
|
+
{
|
|
121
|
+
"type": "button",
|
|
122
|
+
"label": "",
|
|
123
|
+
"icon": "fa fa-bars",
|
|
124
|
+
"className": "bg-white p-2 rounded border-gray-300 text-gray-500",
|
|
125
|
+
"align": "right",
|
|
126
|
+
"onEvent": {
|
|
127
|
+
"click": {
|
|
128
|
+
"actions": [
|
|
129
|
+
{
|
|
130
|
+
"actionType": "custom",
|
|
131
|
+
"script": "document.querySelector('.instances-customPage').classList.toggle('instances-sidebar-open');if(window.innerWidth < 768){document.querySelector('.isInset').classList.toggle('inset-0')}"
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"id": "u:115e270cae4d"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"listName": "completed",
|
|
140
|
+
"rebuildOn": "${flowId || categoryId}",
|
|
141
|
+
"adaptor": "//在列表上加流程表单字段时,group和user需要特殊处理\nif (api.body.self.listName == \"monitor\") {\n _.each(payload.data.rows, function (item, index) {\n if (item.values) {\n const form_fields = api.body.self.form_fields;\n _.each(item.values, function (field, field_code) {\n const form_field = _.find(form_fields, { code: field_code });\n if (form_field && form_field.type == \"group\") {\n if (form_field.is_multiselect) {\n item.values[field_code] = field && field.length > 0 ? _.map(field, 'fullname').toString() : \"\";\n } else {\n item.values[field_code] = field ? field.fullname : \"\";\n }\n } else if (form_field && form_field.type == \"user\") {\n if (form_field.is_multiselect) {\n item.values[field_code] = field && field.length > 0 ? _.map(field, 'name').toString() : \"\";\n } else {\n item.values[field_code] = field ? field.name : \"\";\n }\n }\n })\n }\n })\n}\n",
|
|
142
|
+
"crudDataFilter": crudDataFilter
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: baozhoutao@steedos.com
|
|
3
|
+
* @Date: 2023-07-03 18:46:55
|
|
4
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
5
|
+
* @LastEditTime: 2024-10-24 11:35:43
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
; (function () {
|
|
9
|
+
|
|
10
|
+
try {
|
|
11
|
+
|
|
12
|
+
const AmisInputTypes = [
|
|
13
|
+
//44个表单项
|
|
14
|
+
'input-image',
|
|
15
|
+
'input-number',
|
|
16
|
+
'input-group',
|
|
17
|
+
'input-file',
|
|
18
|
+
'input-text',
|
|
19
|
+
'uuid',
|
|
20
|
+
'checkbox',
|
|
21
|
+
'checkboxes',
|
|
22
|
+
'radios',
|
|
23
|
+
'list-select',
|
|
24
|
+
'input-tag',
|
|
25
|
+
'switch',
|
|
26
|
+
'input-city',
|
|
27
|
+
'input-color',
|
|
28
|
+
'matrix-checkboxes',
|
|
29
|
+
'nested-select',
|
|
30
|
+
'picker',
|
|
31
|
+
'input-repeat',
|
|
32
|
+
'input-rich-text',
|
|
33
|
+
'input-table',
|
|
34
|
+
'input-color',
|
|
35
|
+
'text',
|
|
36
|
+
'combo',
|
|
37
|
+
'chained-select',
|
|
38
|
+
'transfer',
|
|
39
|
+
'input-tree',
|
|
40
|
+
'tree-select',
|
|
41
|
+
'input-excel',
|
|
42
|
+
'input-kv',
|
|
43
|
+
'input-date-range',
|
|
44
|
+
'input-range',
|
|
45
|
+
'input-rating',
|
|
46
|
+
'input-sub-form',
|
|
47
|
+
'input-date',
|
|
48
|
+
'input-datetime',
|
|
49
|
+
'textarea',
|
|
50
|
+
'tabs-transfer',
|
|
51
|
+
'select',
|
|
52
|
+
'fieldset',//section
|
|
53
|
+
'formula',
|
|
54
|
+
'location-picker',
|
|
55
|
+
'input-table',
|
|
56
|
+
'editor',
|
|
57
|
+
'steedos-field',
|
|
58
|
+
'input-password',
|
|
59
|
+
'input-email',
|
|
60
|
+
'input-url'
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
function getInstanceFormSchema(amis_schema) {
|
|
64
|
+
if (amis_schema.type === 'form' && amis_schema.name === 'instanceForm') {
|
|
65
|
+
const proper_schema = amis_schema;
|
|
66
|
+
return proper_schema;
|
|
67
|
+
}
|
|
68
|
+
const body = amis_schema.body;
|
|
69
|
+
if (_.isArray(body)) {
|
|
70
|
+
for (const item of body) {
|
|
71
|
+
return getInstanceFormSchema(item);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// getInputFiled() 对符合条件的formSchema做解析处理,{},{},{}格式
|
|
77
|
+
function getInputFiled(bodyItem) {
|
|
78
|
+
if (!_.isArray(bodyItem)) {
|
|
79
|
+
if (_.includes(AmisInputTypes, bodyItem.type)) {
|
|
80
|
+
|
|
81
|
+
return bodyItem;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function getFormInputFields(formSchema, inputFields) {
|
|
87
|
+
|
|
88
|
+
_.each(formSchema.body || formSchema.columns || [], (bodyItem) => {
|
|
89
|
+
|
|
90
|
+
let flag = true;
|
|
91
|
+
// 对符合条件的formSchema做解析处理
|
|
92
|
+
const field = getInputFiled(bodyItem);
|
|
93
|
+
if (field) {
|
|
94
|
+
//进入if说明是表单项
|
|
95
|
+
_.each(inputFields, (item) => {
|
|
96
|
+
// 考虑使用steedos-field组件时 name配置到config的情况
|
|
97
|
+
field.name = field.name || field.config.name;
|
|
98
|
+
// 如果要添加的field重复 无需再添加
|
|
99
|
+
if (field.name === item.name) {
|
|
100
|
+
flag = false;
|
|
101
|
+
}
|
|
102
|
+
})
|
|
103
|
+
if (flag) {
|
|
104
|
+
inputFields.push(field);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
//else schema中有嵌套表单项的元素 对其进行递归
|
|
109
|
+
if(_.isArray(bodyItem.body)){
|
|
110
|
+
getFormInputFields(bodyItem, inputFields);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if(_.isArray(bodyItem.columns)){
|
|
114
|
+
getFormInputFields(bodyItem, inputFields);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
})
|
|
118
|
+
return inputFields;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
const getAmisSchema = function(ins, formReadonly){
|
|
122
|
+
const form = db.forms.findOne({_id: ins.form},{fields:{amis_schema: 1}})
|
|
123
|
+
const amisSchema = _.isString(form.amis_schema) ? JSON.parse(form.amis_schema) : ( form.amis_schema || {});
|
|
124
|
+
|
|
125
|
+
delete amisSchema.data;
|
|
126
|
+
|
|
127
|
+
// if(amisSchema.data){
|
|
128
|
+
// delete amisSchema.data.context;
|
|
129
|
+
// delete amisSchema.data.app_id;
|
|
130
|
+
// delete amisSchema.data.tab_id;
|
|
131
|
+
// delete amisSchema.data.object_name;
|
|
132
|
+
// delete amisSchema.data.dataComponentId;
|
|
133
|
+
// delete amisSchema.data.record_id;
|
|
134
|
+
// delete amisSchema.data.record;
|
|
135
|
+
// delete amisSchema.data.permissions;
|
|
136
|
+
// }
|
|
137
|
+
const formSchema = getInstanceFormSchema(amisSchema) || {};
|
|
138
|
+
formSchema.id='instanceForm';
|
|
139
|
+
if(formReadonly){
|
|
140
|
+
formSchema.static = true;
|
|
141
|
+
}else{
|
|
142
|
+
if(Session.get("box") === 'draft' || Session.get("box") === 'pending'){
|
|
143
|
+
const formChange = {
|
|
144
|
+
"actionType": "custom",
|
|
145
|
+
"script": "_.each(event.data, (item, key) => {if(_.isArray(item) && item.length > 0 && !_.isString(item) && _.isObject(item)){_.each(item, (item2)=>{try{if (!item2._id) {item2._id = Amis.uuidv4()}}catch(e){console.error(e)}})}});Session.set('instance_change', true);Session.set('instance_form_values', {instanceId: event.data.instanceId, values: JSON.parse(JSON.stringify(event.data))});Session.set('instance_next_user_recalculate', new Date().getTime())"
|
|
146
|
+
}; //
|
|
147
|
+
if(formSchema.onEvent && formSchema.onEvent.change && formSchema.onEvent.change.actions){
|
|
148
|
+
formSchema.onEvent.change.actions.push(formChange)
|
|
149
|
+
}else{
|
|
150
|
+
formSchema.onEvent = Object.assign({}, formSchema.onEvent, {
|
|
151
|
+
change: {
|
|
152
|
+
actions: [formChange]
|
|
153
|
+
}
|
|
154
|
+
})
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
const permissions = WorkflowManager.getInstanceFieldPermission();
|
|
160
|
+
const fields = getFormInputFields(formSchema, []);
|
|
161
|
+
|
|
162
|
+
for (const field of fields) {
|
|
163
|
+
if(formReadonly || permissions[field.name] != 'editable'){
|
|
164
|
+
if(field.type == 'steedos-field'){
|
|
165
|
+
field.readonly = true;
|
|
166
|
+
field.static = true;
|
|
167
|
+
if(field.config){
|
|
168
|
+
field.config = Object.assign({}, _.isString(field.config) ? JSON.parse(field.config) : field.config, {readonly: true, static: true})
|
|
169
|
+
field.config.amis = Object.assign({}, _.isString(field.config.amis) ? JSON.parse(field.config.amis) : field.config.amis, {static: true})
|
|
170
|
+
}
|
|
171
|
+
}else{
|
|
172
|
+
field.static = true;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
return amisSchema;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
if(!Steedos.Workflow){
|
|
182
|
+
Steedos.Workflow = {}
|
|
183
|
+
}
|
|
184
|
+
Steedos.Workflow.instanceAmisView = {
|
|
185
|
+
onCreated: function(ctx){
|
|
186
|
+
console.debug(`Steedos.Workflow.instanceAmisView: onCreated`, ctx)
|
|
187
|
+
},
|
|
188
|
+
onRendered: function(ctx){
|
|
189
|
+
console.debug(`Steedos.Workflow.instanceAmisView: onRendered`, ctx)
|
|
190
|
+
const root = $("#instanceAmisView")[0];
|
|
191
|
+
const ins = WorkflowManager.getInstance();
|
|
192
|
+
|
|
193
|
+
const amisSchema = getAmisSchema(ins, ctx.data.readonly);
|
|
194
|
+
|
|
195
|
+
let schema = null;
|
|
196
|
+
|
|
197
|
+
if(!_.isEmpty(amisSchema)){
|
|
198
|
+
schema = {
|
|
199
|
+
type: "service",
|
|
200
|
+
body: amisSchema,
|
|
201
|
+
id: "instanceAmisView",
|
|
202
|
+
data: {
|
|
203
|
+
instanceId: ins._id,
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}else{
|
|
207
|
+
|
|
208
|
+
let schemaApiUrl = ctx.data.print ? `/api/workflow/form/${ins.form}/${ins.form_version}/print/schema` : `/api/workflow/form/${ins.form}/${ins.form_version}/schema`
|
|
209
|
+
let schemaApiData = ctx.data.print ? {} : {
|
|
210
|
+
flowId: ins.flow,
|
|
211
|
+
flowVersionId: ins.flow_version,
|
|
212
|
+
stepId: InstanceManager.getCurrentStep()._id,
|
|
213
|
+
box: Session.get("box")
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
schema = {
|
|
217
|
+
'type': 'service',
|
|
218
|
+
id: "instanceAmisView",
|
|
219
|
+
schemaApi: {
|
|
220
|
+
"method": "get",
|
|
221
|
+
"url": schemaApiUrl,
|
|
222
|
+
"data": schemaApiData
|
|
223
|
+
},
|
|
224
|
+
data: {
|
|
225
|
+
instanceId: ins._id,
|
|
226
|
+
instance: ins
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
const page = {
|
|
232
|
+
name: "instanceAmisView",
|
|
233
|
+
render_engine: "amis",
|
|
234
|
+
schema: schema
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
const instanceValues = WorkflowManager_format.getAutoformSchemaValues();
|
|
238
|
+
_.each(instanceValues, (value, key) => {
|
|
239
|
+
if(_.isObject(value) && !_.isArray(value)){
|
|
240
|
+
instanceValues[key] = value.id
|
|
241
|
+
}
|
|
242
|
+
})
|
|
243
|
+
Session.set("instance_form_values", {instanceId: ins._id, values: instanceValues});
|
|
244
|
+
Steedos.Page.render(root, page, {
|
|
245
|
+
appId: Session.get("app_id"),
|
|
246
|
+
...instanceValues
|
|
247
|
+
});
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
} catch (error) {
|
|
251
|
+
console.error(error)
|
|
252
|
+
};
|
|
253
|
+
})();
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|