@digitalsee-ai/rcs 0.0.15 → 1.0.1
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/README.md +69 -237
- package/dist/components/digitalsee/workflow/Canvas/NextConfigModalWrapper.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvas.d.ts +4 -0
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvasHeader.d.ts +15 -0
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvas.d.ts +1 -12
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvasBase.d.ts +4 -0
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvasHeader.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Canvas/color.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Canvas/constants.d.ts +75 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/createNodeAddHandlerNext.d.ts +49 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useCanvasApi.d.ts +22 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useDataLoading.d.ts +21 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeAddCallback.d.ts +44 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeFormDraftCache.d.ts +14 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useWorkflowCanvasState.d.ts +78 -0
- package/dist/components/digitalsee/workflow/Canvas/types.d.ts +91 -0
- package/dist/components/digitalsee/workflow/Edges/BaseEdge.d.ts +3 -2
- package/dist/components/digitalsee/workflow/Edges/EdgeFactory.d.ts +43 -0
- package/dist/components/digitalsee/workflow/NextNodesConfigModal/index.d.ts +13 -0
- package/dist/components/digitalsee/workflow/Nodes/ActionNode.d.ts +3 -3
- package/dist/components/digitalsee/workflow/Nodes/AgentNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/BrowserNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/CustomNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/NextNodeFactory.d.ts +11 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextActionNode.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextBaseNode.d.ts +15 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextConditionNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextLoopNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextSwitchNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextTriggerNode.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Nodes/NodeFactory.d.ts +3 -12
- package/dist/components/digitalsee/workflow/Nodes/StickyNoteNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/SuperBaseNode.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeDescription.d.ts +16 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeOperations.d.ts +11 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NodeOperations.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/ActionNodeConfig/index.d.ts +7 -1
- package/dist/components/digitalsee/workflow/NodesConfig/ConditionNodeConfig/index.d.ts +5 -4
- package/dist/components/digitalsee/workflow/NodesConfig/ErrorHandler.d.ts +17 -2
- package/dist/components/digitalsee/workflow/NodesConfig/LoopNodeConfig/index.d.ts +2 -3
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CreateCredentialModal.d.ts +13 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CredentialSelect.d.ts +17 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/ModifyCredentialModal.d.ts +17 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/fieldSchemaAdapter.d.ts +10 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/fieldSchemaAdapter.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/index.d.ts +15 -0
- package/dist/components/digitalsee/workflow/NodesConfig/SwitchNodeConfig/index.d.ts +6 -5
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/CreateAccountModal/index.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/CredentialAccountForm.d.ts +10 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/DateField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/DateTimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/ExtendObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/FixedObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/PasswordField/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TextAreaField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TextField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/ModifyAccountModal/index.d.ts +3 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/index.d.ts +5 -3
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/components/AIFormField.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/DateField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/DateTimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/FixedObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/HourMinuteField/index.d.ts +5 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/common-placeholder-theme.d.ts +11 -11
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JavascriptTagEditorField/editor.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/interface.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/keywords.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/common-placeholder-theme.d.ts +11 -11
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/interface.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/plugin/keywords.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/plugin/keywords.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{MutilRowAIExtractConfigField → MultiRowAIExtractConfigField}/index.d.ts +2 -2
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/RichTagInput/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/RichTagInput/useVariableInfo.d.ts +13 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/TextField/index.d.ts +2 -2
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/TimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/index.d.ts +3 -3
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/next-compatible.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/next-compatible.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeSettings.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeTest.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/index.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/variable-tree-next.d.ts +49 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/variable-tree-next.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/VariableModal/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/NodesConfig/context.d.ts +4 -0
- package/dist/components/digitalsee/workflow/NodesConfig/define/actions.d.ts +3 -3
- package/dist/components/digitalsee/workflow/NodesConfig/define/condition.d.ts +5 -58
- package/dist/components/digitalsee/workflow/NodesConfig/define/condition.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/define/flow.d.ts +1 -26
- package/dist/components/digitalsee/workflow/NodesConfig/index.d.ts +3 -6
- package/dist/components/digitalsee/workflow/NodesConfig/utils/credentialRequirement.d.ts +17 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/CategoryTabs.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/types.d.ts +17 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/dataTransformers.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/dataTransformers.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/components/NodeListItem.d.ts +8 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/hooks/useNodeList.d.ts +14 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/index.d.ts +9 -0
- package/dist/components/digitalsee/workflow/api/dip.d.ts +311 -0
- package/dist/components/digitalsee/workflow/api/dip.types.d.ts +996 -0
- package/dist/components/digitalsee/workflow/api/index.d.ts +38 -13
- package/dist/components/digitalsee/workflow/api/index.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/controls/MultiRowGuard/index.d.ts +13 -0
- package/dist/components/digitalsee/workflow/builtin/controls/{MutilRowGuard → MultiRowGuard}/types.d.ts +15 -23
- package/dist/components/digitalsee/workflow/builtin/controls/MutilRowGuard/index.d.ts +9 -9
- package/dist/components/digitalsee/workflow/builtin/globalConfig/index.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/service.d.ts +8 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/service.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/types.d.ts +17 -0
- package/dist/components/digitalsee/workflow/config/globalConfig.d.ts +1 -1
- package/dist/components/digitalsee/workflow/constants/nextHandles.d.ts +1 -0
- package/dist/components/digitalsee/workflow/enums/canvas.d.ts +63 -0
- package/dist/components/digitalsee/workflow/enums/edge.d.ts +10 -0
- package/dist/components/digitalsee/workflow/enums/handle.d.ts +42 -0
- package/dist/components/digitalsee/workflow/enums/index.d.ts +5 -0
- package/dist/components/digitalsee/workflow/enums/node.d.ts +199 -0
- package/dist/components/digitalsee/workflow/enums/workflow.d.ts +90 -0
- package/dist/components/digitalsee/workflow/events/eventBus.d.ts +8 -2
- package/dist/components/digitalsee/workflow/hooks/use-before-unload.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/useCanvasLayout.d.ts +2 -1
- package/dist/components/digitalsee/workflow/hooks/useHandleConnections.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/usePanel.d.ts +26 -0
- package/dist/components/digitalsee/workflow/hooks/useVariables.d.ts +52 -0
- package/dist/components/digitalsee/workflow/hooks/useWorkflow.d.ts +3 -3
- package/dist/components/digitalsee/workflow/index.d.ts +23 -6
- package/dist/components/digitalsee/workflow/store/index.d.ts +17 -0
- package/dist/components/digitalsee/workflow/store/panelSlice.d.ts +5 -5
- package/dist/components/digitalsee/workflow/store/workflowSlice.d.ts +44 -0
- package/dist/components/digitalsee/workflow/store/workflowSlice.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/types/Edge.d.ts +1 -3
- package/dist/components/digitalsee/workflow/types/Handle.d.ts +3 -29
- package/dist/components/digitalsee/workflow/types/Node.d.ts +25 -63
- package/dist/components/digitalsee/workflow/types/NodeProtocol.d.ts +1 -12
- package/dist/components/digitalsee/workflow/types/Workflow.d.ts +4 -26
- package/dist/components/digitalsee/workflow/types/engine.d.ts +9 -0
- package/dist/components/digitalsee/workflow/utils/common.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/flowDataAdapterNext.d.ts +13 -0
- package/dist/components/digitalsee/workflow/utils/glob.d.ts +1 -1
- package/dist/components/digitalsee/workflow/utils/layoutUtils.d.ts +2 -3
- package/dist/components/digitalsee/workflow/utils/mergeConfig.d.ts +3 -6
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.d.ts +6 -0
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/nodeDataFormatter.d.ts +1 -1
- package/dist/components/digitalsee/workflow/utils/nodeDataFormatterNext.d.ts +11 -0
- package/dist/components/digitalsee/workflow/utils/nodeSummaryAdapter.d.ts +15 -0
- package/dist/components/dynamic-form/DynamicForm.d.ts +8 -3
- package/dist/components/dynamic-form/DynamicForm.test.d.ts +1 -0
- package/dist/components/dynamic-form/DynamicFormContext.d.ts +4 -0
- package/dist/components/dynamic-form/FieldRenderer.d.ts +6 -2
- package/dist/components/dynamic-form/components/ValueModeWrapper/index.d.ts +7 -1
- package/dist/components/dynamic-form/components/VariableInput/index.d.ts +1 -0
- package/dist/components/dynamic-form/fields/complex/KeyValueField.test.d.ts +1 -0
- package/dist/components/dynamic-form/fields/index.d.ts +12 -0
- package/dist/components/dynamic-form/index.d.ts +6 -6
- package/dist/components/dynamic-form/registry/createFieldComponent.test.d.ts +1 -0
- package/dist/components/dynamic-form/registry/index.d.ts +2 -2
- package/dist/components/dynamic-form/types/field-component.d.ts +12 -3
- package/dist/locales/en-US/common.d.ts +8 -17
- package/dist/locales/en-US/components.d.ts +28 -0
- package/dist/locales/en-US/link/flow.d.ts +9 -5
- package/dist/locales/en-US.d.ts +42 -22
- package/dist/locales/index.d.ts +2 -714
- package/dist/locales/zh-CN/common.d.ts +8 -17
- package/dist/locales/zh-CN/components.d.ts +28 -0
- package/dist/locales/zh-CN/link/flow.d.ts +9 -5
- package/dist/locales/zh-CN.d.ts +42 -22
- package/dist/locales/zh-TW/common.d.ts +8 -17
- package/dist/locales/zh-TW/components.d.ts +28 -0
- package/dist/locales/zh-TW/link/flow.d.ts +9 -5
- package/dist/locales/zh-TW.d.ts +42 -22
- package/dist/postcss.config.js +1 -0
- package/dist/rcs.css +1 -1
- package/dist/rcs.es.js +55726 -50708
- package/dist/rcs.es.js.map +1 -0
- package/dist/rcs.umd.js +68 -67
- package/dist/rcs.umd.js.map +1 -0
- package/package.json +148 -151
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/HourMiniuteField/index.d.ts +0 -5
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JavscriptTagEditorField/editor.d.ts +0 -1
- package/dist/components/digitalsee/workflow/NodesConfig/define/config-form-item.d.ts +0 -40
- package/dist/components/digitalsee/workflow/de.d.ts +0 -1
- package/dist/components/digitalsee/workflow/types/SaveStatus.d.ts +0 -1
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/extensions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/index.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/base-theme.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/custom-completions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/functions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/hint.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/placeholders.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/hooks/{use-wokflow-id.d.ts → use-workflow-id.d.ts} +0 -0
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
|
21
21
|
'common.revoke': string;
|
|
22
22
|
'common.export': string;
|
|
23
23
|
'common.account': string;
|
|
24
|
-
'app.common.word.
|
|
24
|
+
'app.common.word.account': string;
|
|
25
25
|
'app.common.word.name': string;
|
|
26
26
|
'common.placeholder.search': string;
|
|
27
27
|
'common.name': string;
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'app.common.word.pending': string;
|
|
139
139
|
'app.common.word.customer-management': string;
|
|
140
140
|
'app.common.word.collaboration': string;
|
|
141
|
-
'app.common.word.
|
|
141
|
+
'app.common.word.hr': string;
|
|
142
142
|
'app.common.word.device-model': string;
|
|
143
143
|
'app.common.word.device-status': string;
|
|
144
144
|
'app.common.word.last-online-time': string;
|
|
@@ -172,11 +172,6 @@ declare const _default: {
|
|
|
172
172
|
'app.common.word.login-page-support': string;
|
|
173
173
|
'app.common.word.identity_verify_attrs': string;
|
|
174
174
|
'app.common.word.identity_verify_attrs_tooltip': string;
|
|
175
|
-
'app.common.word.identity_verify_attrs_tooltip_new': {
|
|
176
|
-
title: string;
|
|
177
|
-
paragraph1: string;
|
|
178
|
-
paragraph2: string;
|
|
179
|
-
};
|
|
180
175
|
'app.common.word.show-content': string;
|
|
181
176
|
'app.common.word.login-page-settings': string;
|
|
182
177
|
'app.common.word.platform-name': string;
|
|
@@ -208,11 +203,6 @@ declare const _default: {
|
|
|
208
203
|
'common.contains-lowercase-letters': string;
|
|
209
204
|
'common.contains-special-characters': string;
|
|
210
205
|
'common.reset_pwd_related_attr': string;
|
|
211
|
-
'common.reset_pwd_related_attr_tooltip': {
|
|
212
|
-
title: string;
|
|
213
|
-
paragraph1: string;
|
|
214
|
-
paragraph2: string;
|
|
215
|
-
};
|
|
216
206
|
'common.administrator-reset-password': string;
|
|
217
207
|
'common.change_password_after_first_login': string;
|
|
218
208
|
'common.account-locked-continuous-invalid-login': string;
|
|
@@ -304,6 +294,8 @@ declare const _default: {
|
|
|
304
294
|
'common.nco': string;
|
|
305
295
|
'common.in': string;
|
|
306
296
|
'common.nin': string;
|
|
297
|
+
'common.is_null': string;
|
|
298
|
+
'common.is_not_null': string;
|
|
307
299
|
'common.length_max': string;
|
|
308
300
|
'common.special': string;
|
|
309
301
|
'common.device': string;
|
|
@@ -368,7 +360,6 @@ declare const _default: {
|
|
|
368
360
|
'app.common.word.send-record': string;
|
|
369
361
|
'app.common.word.distribution-application-name': string;
|
|
370
362
|
'app.common.word.sms-content': string;
|
|
371
|
-
'app.common.word.jieshouzhe': string;
|
|
372
363
|
'app.common.word.send-message': string;
|
|
373
364
|
'app.common.word.inviter': string;
|
|
374
365
|
'app.common.word.send-time': string;
|
|
@@ -414,8 +405,7 @@ declare const _default: {
|
|
|
414
405
|
'app.common.word.blacklist': string;
|
|
415
406
|
'app.common.word.condition': string;
|
|
416
407
|
'app.common.word.partial-exception': string;
|
|
417
|
-
'app.common.word.
|
|
418
|
-
'app.common.word.fuzhi': string;
|
|
408
|
+
'app.common.word.putOnline': string;
|
|
419
409
|
'app.common.word.release': string;
|
|
420
410
|
'app.common.word.trigger-event': string;
|
|
421
411
|
'app.common.word.revise': string;
|
|
@@ -536,8 +526,8 @@ declare const _default: {
|
|
|
536
526
|
'app.common.word.social-authentication-source': string;
|
|
537
527
|
'app.common.word.built_in_authentication_source': string;
|
|
538
528
|
'app.common.word.are-you-sure-you-want-to-delete-it': string;
|
|
539
|
-
'app.common.word.you-
|
|
540
|
-
'app.common.word.you-
|
|
529
|
+
'app.common.word.you-have-not-uploaded-the-token-yet': string;
|
|
530
|
+
'app.common.word.you-have-not-uploaded-any-apps-yet': string;
|
|
541
531
|
'app.common.word.application-basic-information': string;
|
|
542
532
|
'app.common.word.single-point-configuration': string;
|
|
543
533
|
'common.authorization-scope': string;
|
|
@@ -567,5 +557,6 @@ declare const _default: {
|
|
|
567
557
|
'app.common.word.current-page': string;
|
|
568
558
|
'app.common.word.new-window': string;
|
|
569
559
|
'app.common.word.customOpen': string;
|
|
560
|
+
'user.common.operation_title': string;
|
|
570
561
|
};
|
|
571
562
|
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'components.authTokenField.placeholder': string;
|
|
3
|
+
'components.authTokenField.copy': string;
|
|
4
|
+
'components.authTokenField.showToken': string;
|
|
5
|
+
'components.authTokenField.hideToken': string;
|
|
6
|
+
'components.authTokenField.generate': string;
|
|
7
|
+
'components.authTokenField.regenerate': string;
|
|
8
|
+
'components.authTokenField.emptyTokenWarning': string;
|
|
9
|
+
'components.authTokenField.copySuccess': string;
|
|
10
|
+
'components.authTokenField.copyFailed': string;
|
|
11
|
+
'components.authTokenField.regenerateConfirm': string;
|
|
12
|
+
'components.selectOAuth2ClientField.placeholder': string;
|
|
13
|
+
'components.selectOAuth2ClientField.fetchFailed': string;
|
|
14
|
+
'components.selectOAuth2ClientField.copy': string;
|
|
15
|
+
'components.selectOAuth2ClientField.copySuccess': string;
|
|
16
|
+
'components.selectOAuth2ClientField.copyFailed': string;
|
|
17
|
+
'components.selectOAuth2ClientField.emptyTitle': string;
|
|
18
|
+
'components.selectOAuth2ClientField.emptyDescription': string;
|
|
19
|
+
'components.selectOAuth2ClientField.goToAppManage': string;
|
|
20
|
+
'components.selectOAuth2ClientField.loadMore': string;
|
|
21
|
+
'components.selectOAuth2ClientField.loadedAll': string;
|
|
22
|
+
'components.selectOAuth2ClientField.selectDescriptionPrefix': string;
|
|
23
|
+
'components.selectOAuth2ClientField.selectDescriptionSuffix': string;
|
|
24
|
+
'components.selectOAuth2ClientField.tokenEndpoint': string;
|
|
25
|
+
'components.selectOAuth2ClientField.tokenDescriptionPrefix': string;
|
|
26
|
+
'components.selectOAuth2ClientField.documentation': string;
|
|
27
|
+
};
|
|
28
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'link.flow.start_node': string;
|
|
3
3
|
'link.flow.end_node': string;
|
|
4
|
-
'link.flow.
|
|
4
|
+
'link.flow.unConfig_action_node': string;
|
|
5
5
|
'link.flow.select_location_node': string;
|
|
6
6
|
'link.flow.forced_online_warn': string;
|
|
7
7
|
'link.flow.online_forced_tip1': string;
|
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
|
104
104
|
'link.flow.modification_time': string;
|
|
105
105
|
'link.flow.edit_account': string;
|
|
106
106
|
'link.flow.please_select': string;
|
|
107
|
-
'link.flow.
|
|
107
|
+
'link.flow.cipherText': string;
|
|
108
108
|
'link.flow.text': string;
|
|
109
109
|
'link.flow.enter_keyword_to_search_action': string;
|
|
110
110
|
'link.flow.please_enter': string;
|
|
@@ -130,10 +130,14 @@ declare const _default: {
|
|
|
130
130
|
'link.flow.no_apps': string;
|
|
131
131
|
'link.flow.back': string;
|
|
132
132
|
'link.flow.node_data_yaml': string;
|
|
133
|
-
'link.flow.
|
|
134
|
-
'link.flow.
|
|
135
|
-
'link.flow.
|
|
133
|
+
'link.flow.execute_immediately': string;
|
|
134
|
+
'link.flow.execute_immediately_tip': string;
|
|
135
|
+
'link.flow.execute_immediately_success': string;
|
|
136
136
|
'link.flow.stop_running': string;
|
|
137
|
+
'link.flow.confirm_online': string;
|
|
138
|
+
'link.flow.force_online_confirm': string;
|
|
139
|
+
'link.flow.offline_success': string;
|
|
140
|
+
'link.flow.operation_title': string;
|
|
137
141
|
'link.flow.switch.condition_one': string;
|
|
138
142
|
'link.flow.switch.condition_two': string;
|
|
139
143
|
'link.flow.switch.condition_n': string;
|
package/dist/locales/zh-CN.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'link.flow.start_node': string;
|
|
3
3
|
'link.flow.end_node': string;
|
|
4
|
-
'link.flow.
|
|
4
|
+
'link.flow.unConfig_action_node': string;
|
|
5
5
|
'link.flow.select_location_node': string;
|
|
6
6
|
'link.flow.forced_online_warn': string;
|
|
7
7
|
'link.flow.online_forced_tip1': string;
|
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
|
104
104
|
'link.flow.modification_time': string;
|
|
105
105
|
'link.flow.edit_account': string;
|
|
106
106
|
'link.flow.please_select': string;
|
|
107
|
-
'link.flow.
|
|
107
|
+
'link.flow.cipherText': string;
|
|
108
108
|
'link.flow.text': string;
|
|
109
109
|
'link.flow.enter_keyword_to_search_action': string;
|
|
110
110
|
'link.flow.please_enter': string;
|
|
@@ -130,10 +130,14 @@ declare const _default: {
|
|
|
130
130
|
'link.flow.no_apps': string;
|
|
131
131
|
'link.flow.back': string;
|
|
132
132
|
'link.flow.node_data_yaml': string;
|
|
133
|
-
'link.flow.
|
|
134
|
-
'link.flow.
|
|
135
|
-
'link.flow.
|
|
133
|
+
'link.flow.execute_immediately': string;
|
|
134
|
+
'link.flow.execute_immediately_tip': string;
|
|
135
|
+
'link.flow.execute_immediately_success': string;
|
|
136
136
|
'link.flow.stop_running': string;
|
|
137
|
+
'link.flow.confirm_online': string;
|
|
138
|
+
'link.flow.force_online_confirm': string;
|
|
139
|
+
'link.flow.offline_success': string;
|
|
140
|
+
'link.flow.operation_title': string;
|
|
137
141
|
'link.flow.switch.condition_one': string;
|
|
138
142
|
'link.flow.switch.condition_two': string;
|
|
139
143
|
'link.flow.switch.condition_n': string;
|
|
@@ -148,6 +152,31 @@ declare const _default: {
|
|
|
148
152
|
'link.flow.switch.at_least_one_valid_branch': string;
|
|
149
153
|
'link.flow.switch.add_branch': string;
|
|
150
154
|
'link.flow.switch.max_branches_reached': string;
|
|
155
|
+
'components.authTokenField.placeholder': string;
|
|
156
|
+
'components.authTokenField.copy': string;
|
|
157
|
+
'components.authTokenField.showToken': string;
|
|
158
|
+
'components.authTokenField.hideToken': string;
|
|
159
|
+
'components.authTokenField.generate': string;
|
|
160
|
+
'components.authTokenField.regenerate': string;
|
|
161
|
+
'components.authTokenField.emptyTokenWarning': string;
|
|
162
|
+
'components.authTokenField.copySuccess': string;
|
|
163
|
+
'components.authTokenField.copyFailed': string;
|
|
164
|
+
'components.authTokenField.regenerateConfirm': string;
|
|
165
|
+
'components.selectOAuth2ClientField.placeholder': string;
|
|
166
|
+
'components.selectOAuth2ClientField.fetchFailed': string;
|
|
167
|
+
'components.selectOAuth2ClientField.copy': string;
|
|
168
|
+
'components.selectOAuth2ClientField.copySuccess': string;
|
|
169
|
+
'components.selectOAuth2ClientField.copyFailed': string;
|
|
170
|
+
'components.selectOAuth2ClientField.emptyTitle': string;
|
|
171
|
+
'components.selectOAuth2ClientField.emptyDescription': string;
|
|
172
|
+
'components.selectOAuth2ClientField.goToAppManage': string;
|
|
173
|
+
'components.selectOAuth2ClientField.loadMore': string;
|
|
174
|
+
'components.selectOAuth2ClientField.loadedAll': string;
|
|
175
|
+
'components.selectOAuth2ClientField.selectDescriptionPrefix': string;
|
|
176
|
+
'components.selectOAuth2ClientField.selectDescriptionSuffix': string;
|
|
177
|
+
'components.selectOAuth2ClientField.tokenEndpoint': string;
|
|
178
|
+
'components.selectOAuth2ClientField.tokenDescriptionPrefix': string;
|
|
179
|
+
'components.selectOAuth2ClientField.documentation': string;
|
|
151
180
|
'common.cannot_chinese': string;
|
|
152
181
|
'common.please_enter_username_name_mobile': string;
|
|
153
182
|
'common.new_enterprise': string;
|
|
@@ -170,7 +199,7 @@ declare const _default: {
|
|
|
170
199
|
'common.revoke': string;
|
|
171
200
|
'common.export': string;
|
|
172
201
|
'common.account': string;
|
|
173
|
-
'app.common.word.
|
|
202
|
+
'app.common.word.account': string;
|
|
174
203
|
'app.common.word.name': string;
|
|
175
204
|
'common.placeholder.search': string;
|
|
176
205
|
'common.name': string;
|
|
@@ -287,7 +316,7 @@ declare const _default: {
|
|
|
287
316
|
'app.common.word.pending': string;
|
|
288
317
|
'app.common.word.customer-management': string;
|
|
289
318
|
'app.common.word.collaboration': string;
|
|
290
|
-
'app.common.word.
|
|
319
|
+
'app.common.word.hr': string;
|
|
291
320
|
'app.common.word.device-model': string;
|
|
292
321
|
'app.common.word.device-status': string;
|
|
293
322
|
'app.common.word.last-online-time': string;
|
|
@@ -321,11 +350,6 @@ declare const _default: {
|
|
|
321
350
|
'app.common.word.login-page-support': string;
|
|
322
351
|
'app.common.word.identity_verify_attrs': string;
|
|
323
352
|
'app.common.word.identity_verify_attrs_tooltip': string;
|
|
324
|
-
'app.common.word.identity_verify_attrs_tooltip_new': {
|
|
325
|
-
title: string;
|
|
326
|
-
paragraph1: string;
|
|
327
|
-
paragraph2: string;
|
|
328
|
-
};
|
|
329
353
|
'app.common.word.show-content': string;
|
|
330
354
|
'app.common.word.login-page-settings': string;
|
|
331
355
|
'app.common.word.platform-name': string;
|
|
@@ -357,11 +381,6 @@ declare const _default: {
|
|
|
357
381
|
'common.contains-lowercase-letters': string;
|
|
358
382
|
'common.contains-special-characters': string;
|
|
359
383
|
'common.reset_pwd_related_attr': string;
|
|
360
|
-
'common.reset_pwd_related_attr_tooltip': {
|
|
361
|
-
title: string;
|
|
362
|
-
paragraph1: string;
|
|
363
|
-
paragraph2: string;
|
|
364
|
-
};
|
|
365
384
|
'common.administrator-reset-password': string;
|
|
366
385
|
'common.change_password_after_first_login': string;
|
|
367
386
|
'common.account-locked-continuous-invalid-login': string;
|
|
@@ -453,6 +472,8 @@ declare const _default: {
|
|
|
453
472
|
'common.nco': string;
|
|
454
473
|
'common.in': string;
|
|
455
474
|
'common.nin': string;
|
|
475
|
+
'common.is_null': string;
|
|
476
|
+
'common.is_not_null': string;
|
|
456
477
|
'common.length_max': string;
|
|
457
478
|
'common.special': string;
|
|
458
479
|
'common.device': string;
|
|
@@ -517,7 +538,6 @@ declare const _default: {
|
|
|
517
538
|
'app.common.word.send-record': string;
|
|
518
539
|
'app.common.word.distribution-application-name': string;
|
|
519
540
|
'app.common.word.sms-content': string;
|
|
520
|
-
'app.common.word.jieshouzhe': string;
|
|
521
541
|
'app.common.word.send-message': string;
|
|
522
542
|
'app.common.word.inviter': string;
|
|
523
543
|
'app.common.word.send-time': string;
|
|
@@ -563,8 +583,7 @@ declare const _default: {
|
|
|
563
583
|
'app.common.word.blacklist': string;
|
|
564
584
|
'app.common.word.condition': string;
|
|
565
585
|
'app.common.word.partial-exception': string;
|
|
566
|
-
'app.common.word.
|
|
567
|
-
'app.common.word.fuzhi': string;
|
|
586
|
+
'app.common.word.putOnline': string;
|
|
568
587
|
'app.common.word.release': string;
|
|
569
588
|
'app.common.word.trigger-event': string;
|
|
570
589
|
'app.common.word.revise': string;
|
|
@@ -685,8 +704,8 @@ declare const _default: {
|
|
|
685
704
|
'app.common.word.social-authentication-source': string;
|
|
686
705
|
'app.common.word.built_in_authentication_source': string;
|
|
687
706
|
'app.common.word.are-you-sure-you-want-to-delete-it': string;
|
|
688
|
-
'app.common.word.you-
|
|
689
|
-
'app.common.word.you-
|
|
707
|
+
'app.common.word.you-have-not-uploaded-the-token-yet': string;
|
|
708
|
+
'app.common.word.you-have-not-uploaded-any-apps-yet': string;
|
|
690
709
|
'app.common.word.application-basic-information': string;
|
|
691
710
|
'app.common.word.single-point-configuration': string;
|
|
692
711
|
'common.authorization-scope': string;
|
|
@@ -716,5 +735,6 @@ declare const _default: {
|
|
|
716
735
|
'app.common.word.current-page': string;
|
|
717
736
|
'app.common.word.new-window': string;
|
|
718
737
|
'app.common.word.customOpen': string;
|
|
738
|
+
'user.common.operation_title': string;
|
|
719
739
|
};
|
|
720
740
|
export default _default;
|
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
|
21
21
|
'common.revoke': string;
|
|
22
22
|
'common.export': string;
|
|
23
23
|
'common.account': string;
|
|
24
|
-
'app.common.word.
|
|
24
|
+
'app.common.word.account': string;
|
|
25
25
|
'app.common.word.name': string;
|
|
26
26
|
'common.placeholder.search': string;
|
|
27
27
|
'common.name': string;
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'app.common.word.pending': string;
|
|
139
139
|
'app.common.word.customer-management': string;
|
|
140
140
|
'app.common.word.collaboration': string;
|
|
141
|
-
'app.common.word.
|
|
141
|
+
'app.common.word.hr': string;
|
|
142
142
|
'app.common.word.device-model': string;
|
|
143
143
|
'app.common.word.device-status': string;
|
|
144
144
|
'app.common.word.last-online-time': string;
|
|
@@ -172,11 +172,6 @@ declare const _default: {
|
|
|
172
172
|
'app.common.word.login-page-support': string;
|
|
173
173
|
'app.common.word.identity_verify_attrs': string;
|
|
174
174
|
'app.common.word.identity_verify_attrs_tooltip': string;
|
|
175
|
-
'app.common.word.identity_verify_attrs_tooltip_new': {
|
|
176
|
-
title: string;
|
|
177
|
-
paragraph1: string;
|
|
178
|
-
paragraph2: string;
|
|
179
|
-
};
|
|
180
175
|
'app.common.word.show-content': string;
|
|
181
176
|
'app.common.word.login-page-settings': string;
|
|
182
177
|
'app.common.word.platform-name': string;
|
|
@@ -208,11 +203,6 @@ declare const _default: {
|
|
|
208
203
|
'common.contains-lowercase-letters': string;
|
|
209
204
|
'common.contains-special-characters': string;
|
|
210
205
|
'common.reset_pwd_related_attr': string;
|
|
211
|
-
'common.reset_pwd_related_attr_tooltip': {
|
|
212
|
-
title: string;
|
|
213
|
-
paragraph1: string;
|
|
214
|
-
paragraph2: string;
|
|
215
|
-
};
|
|
216
206
|
'common.administrator-reset-password': string;
|
|
217
207
|
'common.change_password_after_first_login': string;
|
|
218
208
|
'common.account-locked-continuous-invalid-login': string;
|
|
@@ -304,6 +294,8 @@ declare const _default: {
|
|
|
304
294
|
'common.nco': string;
|
|
305
295
|
'common.in': string;
|
|
306
296
|
'common.nin': string;
|
|
297
|
+
'common.is_null': string;
|
|
298
|
+
'common.is_not_null': string;
|
|
307
299
|
'common.length_max': string;
|
|
308
300
|
'common.special': string;
|
|
309
301
|
'common.device': string;
|
|
@@ -365,7 +357,6 @@ declare const _default: {
|
|
|
365
357
|
'app.common.word.send-record': string;
|
|
366
358
|
'app.common.word.distribution-application-name': string;
|
|
367
359
|
'app.common.word.sms-content': string;
|
|
368
|
-
'app.common.word.jieshouzhe': string;
|
|
369
360
|
'app.common.word.send-message': string;
|
|
370
361
|
'app.common.word.inviter': string;
|
|
371
362
|
'app.common.word.send-time': string;
|
|
@@ -410,8 +401,7 @@ declare const _default: {
|
|
|
410
401
|
'app.common.word.blacklist': string;
|
|
411
402
|
'app.common.word.condition': string;
|
|
412
403
|
'app.common.word.partial-exception': string;
|
|
413
|
-
'app.common.word.
|
|
414
|
-
'app.common.word.fuzhi': string;
|
|
404
|
+
'app.common.word.putOnline': string;
|
|
415
405
|
'app.common.word.release': string;
|
|
416
406
|
'app.common.word.trigger-event': string;
|
|
417
407
|
'app.common.word.revise': string;
|
|
@@ -532,8 +522,8 @@ declare const _default: {
|
|
|
532
522
|
'app.common.word.social-authentication-source': string;
|
|
533
523
|
'app.common.word.built_in_authentication_source': string;
|
|
534
524
|
'app.common.word.are-you-sure-you-want-to-delete-it': string;
|
|
535
|
-
'app.common.word.you-
|
|
536
|
-
'app.common.word.you-
|
|
525
|
+
'app.common.word.you-have-not-uploaded-the-token-yet': string;
|
|
526
|
+
'app.common.word.you-have-not-uploaded-any-apps-yet': string;
|
|
537
527
|
'app.common.word.application-basic-information': string;
|
|
538
528
|
'app.common.word.single-point-configuration': string;
|
|
539
529
|
'common.authorization-scope': string;
|
|
@@ -563,5 +553,6 @@ declare const _default: {
|
|
|
563
553
|
'app.common.word.current-page': string;
|
|
564
554
|
'app.common.word.new-window': string;
|
|
565
555
|
'app.common.word.customOpen': string;
|
|
556
|
+
'user.common.operation_title': string;
|
|
566
557
|
};
|
|
567
558
|
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'components.authTokenField.placeholder': string;
|
|
3
|
+
'components.authTokenField.copy': string;
|
|
4
|
+
'components.authTokenField.showToken': string;
|
|
5
|
+
'components.authTokenField.hideToken': string;
|
|
6
|
+
'components.authTokenField.generate': string;
|
|
7
|
+
'components.authTokenField.regenerate': string;
|
|
8
|
+
'components.authTokenField.emptyTokenWarning': string;
|
|
9
|
+
'components.authTokenField.copySuccess': string;
|
|
10
|
+
'components.authTokenField.copyFailed': string;
|
|
11
|
+
'components.authTokenField.regenerateConfirm': string;
|
|
12
|
+
'components.selectOAuth2ClientField.placeholder': string;
|
|
13
|
+
'components.selectOAuth2ClientField.fetchFailed': string;
|
|
14
|
+
'components.selectOAuth2ClientField.copy': string;
|
|
15
|
+
'components.selectOAuth2ClientField.copySuccess': string;
|
|
16
|
+
'components.selectOAuth2ClientField.copyFailed': string;
|
|
17
|
+
'components.selectOAuth2ClientField.emptyTitle': string;
|
|
18
|
+
'components.selectOAuth2ClientField.emptyDescription': string;
|
|
19
|
+
'components.selectOAuth2ClientField.goToAppManage': string;
|
|
20
|
+
'components.selectOAuth2ClientField.loadMore': string;
|
|
21
|
+
'components.selectOAuth2ClientField.loadedAll': string;
|
|
22
|
+
'components.selectOAuth2ClientField.selectDescriptionPrefix': string;
|
|
23
|
+
'components.selectOAuth2ClientField.selectDescriptionSuffix': string;
|
|
24
|
+
'components.selectOAuth2ClientField.tokenEndpoint': string;
|
|
25
|
+
'components.selectOAuth2ClientField.tokenDescriptionPrefix': string;
|
|
26
|
+
'components.selectOAuth2ClientField.documentation': string;
|
|
27
|
+
};
|
|
28
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'link.flow.start_node': string;
|
|
3
3
|
'link.flow.end_node': string;
|
|
4
|
-
'link.flow.
|
|
4
|
+
'link.flow.unConfig_action_node': string;
|
|
5
5
|
'link.flow.select_location_node': string;
|
|
6
6
|
'link.flow.forced_online_warn': string;
|
|
7
7
|
'link.flow.online_forced_tip1': string;
|
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
|
104
104
|
'link.flow.modification_time': string;
|
|
105
105
|
'link.flow.edit_account': string;
|
|
106
106
|
'link.flow.please_select': string;
|
|
107
|
-
'link.flow.
|
|
107
|
+
'link.flow.cipherText': string;
|
|
108
108
|
'link.flow.text': string;
|
|
109
109
|
'link.flow.enter_keyword_to_search_action': string;
|
|
110
110
|
'link.flow.please_enter': string;
|
|
@@ -129,10 +129,14 @@ declare const _default: {
|
|
|
129
129
|
'link.flow.no_apps': string;
|
|
130
130
|
'link.flow.back': string;
|
|
131
131
|
'link.flow.node_data_yaml': string;
|
|
132
|
-
'link.flow.
|
|
133
|
-
'link.flow.
|
|
134
|
-
'link.flow.
|
|
132
|
+
'link.flow.execute_immediately': string;
|
|
133
|
+
'link.flow.execute_immediately_tip': string;
|
|
134
|
+
'link.flow.execute_immediately_success': string;
|
|
135
135
|
'link.flow.stop_running': string;
|
|
136
|
+
'link.flow.confirm_online': string;
|
|
137
|
+
'link.flow.force_online_confirm': string;
|
|
138
|
+
'link.flow.offline_success': string;
|
|
139
|
+
'link.flow.operation_title': string;
|
|
136
140
|
'link.flow.switch.condition_one': string;
|
|
137
141
|
'link.flow.switch.condition_two': string;
|
|
138
142
|
'link.flow.switch.condition_n': string;
|
package/dist/locales/zh-TW.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'link.flow.start_node': string;
|
|
3
3
|
'link.flow.end_node': string;
|
|
4
|
-
'link.flow.
|
|
4
|
+
'link.flow.unConfig_action_node': string;
|
|
5
5
|
'link.flow.select_location_node': string;
|
|
6
6
|
'link.flow.forced_online_warn': string;
|
|
7
7
|
'link.flow.online_forced_tip1': string;
|
|
@@ -104,7 +104,7 @@ declare const _default: {
|
|
|
104
104
|
'link.flow.modification_time': string;
|
|
105
105
|
'link.flow.edit_account': string;
|
|
106
106
|
'link.flow.please_select': string;
|
|
107
|
-
'link.flow.
|
|
107
|
+
'link.flow.cipherText': string;
|
|
108
108
|
'link.flow.text': string;
|
|
109
109
|
'link.flow.enter_keyword_to_search_action': string;
|
|
110
110
|
'link.flow.please_enter': string;
|
|
@@ -129,10 +129,14 @@ declare const _default: {
|
|
|
129
129
|
'link.flow.no_apps': string;
|
|
130
130
|
'link.flow.back': string;
|
|
131
131
|
'link.flow.node_data_yaml': string;
|
|
132
|
-
'link.flow.
|
|
133
|
-
'link.flow.
|
|
134
|
-
'link.flow.
|
|
132
|
+
'link.flow.execute_immediately': string;
|
|
133
|
+
'link.flow.execute_immediately_tip': string;
|
|
134
|
+
'link.flow.execute_immediately_success': string;
|
|
135
135
|
'link.flow.stop_running': string;
|
|
136
|
+
'link.flow.confirm_online': string;
|
|
137
|
+
'link.flow.force_online_confirm': string;
|
|
138
|
+
'link.flow.offline_success': string;
|
|
139
|
+
'link.flow.operation_title': string;
|
|
136
140
|
'link.flow.switch.condition_one': string;
|
|
137
141
|
'link.flow.switch.condition_two': string;
|
|
138
142
|
'link.flow.switch.condition_n': string;
|
|
@@ -147,6 +151,31 @@ declare const _default: {
|
|
|
147
151
|
'link.flow.switch.at_least_one_valid_branch': string;
|
|
148
152
|
'link.flow.switch.add_branch': string;
|
|
149
153
|
'link.flow.switch.max_branches_reached': string;
|
|
154
|
+
'components.authTokenField.placeholder': string;
|
|
155
|
+
'components.authTokenField.copy': string;
|
|
156
|
+
'components.authTokenField.showToken': string;
|
|
157
|
+
'components.authTokenField.hideToken': string;
|
|
158
|
+
'components.authTokenField.generate': string;
|
|
159
|
+
'components.authTokenField.regenerate': string;
|
|
160
|
+
'components.authTokenField.emptyTokenWarning': string;
|
|
161
|
+
'components.authTokenField.copySuccess': string;
|
|
162
|
+
'components.authTokenField.copyFailed': string;
|
|
163
|
+
'components.authTokenField.regenerateConfirm': string;
|
|
164
|
+
'components.selectOAuth2ClientField.placeholder': string;
|
|
165
|
+
'components.selectOAuth2ClientField.fetchFailed': string;
|
|
166
|
+
'components.selectOAuth2ClientField.copy': string;
|
|
167
|
+
'components.selectOAuth2ClientField.copySuccess': string;
|
|
168
|
+
'components.selectOAuth2ClientField.copyFailed': string;
|
|
169
|
+
'components.selectOAuth2ClientField.emptyTitle': string;
|
|
170
|
+
'components.selectOAuth2ClientField.emptyDescription': string;
|
|
171
|
+
'components.selectOAuth2ClientField.goToAppManage': string;
|
|
172
|
+
'components.selectOAuth2ClientField.loadMore': string;
|
|
173
|
+
'components.selectOAuth2ClientField.loadedAll': string;
|
|
174
|
+
'components.selectOAuth2ClientField.selectDescriptionPrefix': string;
|
|
175
|
+
'components.selectOAuth2ClientField.selectDescriptionSuffix': string;
|
|
176
|
+
'components.selectOAuth2ClientField.tokenEndpoint': string;
|
|
177
|
+
'components.selectOAuth2ClientField.tokenDescriptionPrefix': string;
|
|
178
|
+
'components.selectOAuth2ClientField.documentation': string;
|
|
150
179
|
'common.cannot_chinese': string;
|
|
151
180
|
'common.please_enter_username_name_mobile': string;
|
|
152
181
|
'common.new_enterprise': string;
|
|
@@ -169,7 +198,7 @@ declare const _default: {
|
|
|
169
198
|
'common.revoke': string;
|
|
170
199
|
'common.export': string;
|
|
171
200
|
'common.account': string;
|
|
172
|
-
'app.common.word.
|
|
201
|
+
'app.common.word.account': string;
|
|
173
202
|
'app.common.word.name': string;
|
|
174
203
|
'common.placeholder.search': string;
|
|
175
204
|
'common.name': string;
|
|
@@ -286,7 +315,7 @@ declare const _default: {
|
|
|
286
315
|
'app.common.word.pending': string;
|
|
287
316
|
'app.common.word.customer-management': string;
|
|
288
317
|
'app.common.word.collaboration': string;
|
|
289
|
-
'app.common.word.
|
|
318
|
+
'app.common.word.hr': string;
|
|
290
319
|
'app.common.word.device-model': string;
|
|
291
320
|
'app.common.word.device-status': string;
|
|
292
321
|
'app.common.word.last-online-time': string;
|
|
@@ -320,11 +349,6 @@ declare const _default: {
|
|
|
320
349
|
'app.common.word.login-page-support': string;
|
|
321
350
|
'app.common.word.identity_verify_attrs': string;
|
|
322
351
|
'app.common.word.identity_verify_attrs_tooltip': string;
|
|
323
|
-
'app.common.word.identity_verify_attrs_tooltip_new': {
|
|
324
|
-
title: string;
|
|
325
|
-
paragraph1: string;
|
|
326
|
-
paragraph2: string;
|
|
327
|
-
};
|
|
328
352
|
'app.common.word.show-content': string;
|
|
329
353
|
'app.common.word.login-page-settings': string;
|
|
330
354
|
'app.common.word.platform-name': string;
|
|
@@ -356,11 +380,6 @@ declare const _default: {
|
|
|
356
380
|
'common.contains-lowercase-letters': string;
|
|
357
381
|
'common.contains-special-characters': string;
|
|
358
382
|
'common.reset_pwd_related_attr': string;
|
|
359
|
-
'common.reset_pwd_related_attr_tooltip': {
|
|
360
|
-
title: string;
|
|
361
|
-
paragraph1: string;
|
|
362
|
-
paragraph2: string;
|
|
363
|
-
};
|
|
364
383
|
'common.administrator-reset-password': string;
|
|
365
384
|
'common.change_password_after_first_login': string;
|
|
366
385
|
'common.account-locked-continuous-invalid-login': string;
|
|
@@ -452,6 +471,8 @@ declare const _default: {
|
|
|
452
471
|
'common.nco': string;
|
|
453
472
|
'common.in': string;
|
|
454
473
|
'common.nin': string;
|
|
474
|
+
'common.is_null': string;
|
|
475
|
+
'common.is_not_null': string;
|
|
455
476
|
'common.length_max': string;
|
|
456
477
|
'common.special': string;
|
|
457
478
|
'common.device': string;
|
|
@@ -513,7 +534,6 @@ declare const _default: {
|
|
|
513
534
|
'app.common.word.send-record': string;
|
|
514
535
|
'app.common.word.distribution-application-name': string;
|
|
515
536
|
'app.common.word.sms-content': string;
|
|
516
|
-
'app.common.word.jieshouzhe': string;
|
|
517
537
|
'app.common.word.send-message': string;
|
|
518
538
|
'app.common.word.inviter': string;
|
|
519
539
|
'app.common.word.send-time': string;
|
|
@@ -558,8 +578,7 @@ declare const _default: {
|
|
|
558
578
|
'app.common.word.blacklist': string;
|
|
559
579
|
'app.common.word.condition': string;
|
|
560
580
|
'app.common.word.partial-exception': string;
|
|
561
|
-
'app.common.word.
|
|
562
|
-
'app.common.word.fuzhi': string;
|
|
581
|
+
'app.common.word.putOnline': string;
|
|
563
582
|
'app.common.word.release': string;
|
|
564
583
|
'app.common.word.trigger-event': string;
|
|
565
584
|
'app.common.word.revise': string;
|
|
@@ -680,8 +699,8 @@ declare const _default: {
|
|
|
680
699
|
'app.common.word.social-authentication-source': string;
|
|
681
700
|
'app.common.word.built_in_authentication_source': string;
|
|
682
701
|
'app.common.word.are-you-sure-you-want-to-delete-it': string;
|
|
683
|
-
'app.common.word.you-
|
|
684
|
-
'app.common.word.you-
|
|
702
|
+
'app.common.word.you-have-not-uploaded-the-token-yet': string;
|
|
703
|
+
'app.common.word.you-have-not-uploaded-any-apps-yet': string;
|
|
685
704
|
'app.common.word.application-basic-information': string;
|
|
686
705
|
'app.common.word.single-point-configuration': string;
|
|
687
706
|
'common.authorization-scope': string;
|
|
@@ -711,5 +730,6 @@ declare const _default: {
|
|
|
711
730
|
'app.common.word.current-page': string;
|
|
712
731
|
'app.common.word.new-window': string;
|
|
713
732
|
'app.common.word.customOpen': string;
|
|
733
|
+
'user.common.operation_title': string;
|
|
714
734
|
};
|
|
715
735
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {}
|