@giteeteam/apps-team-components 0.3.13 → 1.0.0
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 +3 -1
- package/dist/{common → components/common}/EmptyField.d.ts +2 -1
- package/dist/components/common/EmptyField.js +8 -0
- package/dist/components/common/overflow-tooltip/BaseOverflowTooltip.d.ts +11 -0
- package/dist/components/common/overflow-tooltip/BaseOverflowTooltip.js +25 -0
- package/dist/components/common/overflow-tooltip/SimpleOverflowToolTip.d.ts +9 -0
- package/dist/components/common/overflow-tooltip/SimpleOverflowToolTip.js +14 -0
- package/dist/components/common/overflow-tooltip/style/index.d.ts +3 -0
- package/dist/components/common/overflow-tooltip/style/index.js +19 -0
- package/dist/components/common/style/global.d.ts +1 -0
- package/dist/components/common/style/global.js +4 -0
- package/dist/{common → components/common}/user-field/UserAvatar.d.ts +3 -3
- package/dist/components/common/user-field/UserAvatar.js +13 -0
- package/dist/components/common/user-field/style/index.d.ts +3 -0
- package/dist/components/common/user-field/style/index.js +26 -0
- package/dist/components/common/utils.d.ts +6 -0
- package/dist/components/common/utils.js +39 -0
- package/dist/components/field-behavior/fields/type.d.ts +1 -0
- package/dist/components/field-behavior/fields/type.js +6 -0
- package/dist/components/fields/actors/BaseField.d.ts +1 -0
- package/dist/components/fields/actors/BaseField.js +7 -0
- package/dist/components/fields/actors/ReadView.d.ts +4 -0
- package/dist/components/fields/actors/ReadView.js +29 -0
- package/dist/components/fields/assignee/ReadView.d.ts +7 -0
- package/dist/components/fields/assignee/ReadView.js +21 -0
- package/dist/components/fields/base-component/types.d.ts +7 -0
- package/dist/components/fields/base-component/types.js +1 -0
- package/dist/components/fields/bind-workspace/ReadView.d.ts +4 -0
- package/dist/components/fields/bind-workspace/ReadView.js +18 -0
- package/dist/components/fields/bind-workspace/hooks.d.ts +3 -0
- package/dist/components/fields/bind-workspace/hooks.js +16 -0
- package/dist/components/fields/bind-workspace/style/index.d.ts +1 -0
- package/dist/components/fields/bind-workspace/style/index.js +5 -0
- package/dist/components/fields/checkbox/ReadView.d.ts +5 -0
- package/dist/components/fields/checkbox/ReadView.js +21 -0
- package/dist/components/fields/created-at/ReadView.d.ts +5 -0
- package/dist/components/fields/created-at/ReadView.js +21 -0
- package/dist/components/fields/created-by/ReadView.d.ts +6 -0
- package/dist/components/fields/created-by/ReadView.js +25 -0
- package/dist/components/fields/data-quote/ReadView.d.ts +7 -0
- package/dist/components/fields/data-quote/ReadView.js +22 -0
- package/dist/components/fields/data-quote/utils.d.ts +3 -0
- package/dist/components/fields/data-quote/utils.js +25 -0
- package/dist/components/fields/date/ReadView.d.ts +8 -0
- package/dist/components/fields/date/ReadView.js +14 -0
- package/dist/components/fields/dropdown/BaseField.d.ts +6 -0
- package/dist/components/fields/dropdown/BaseField.js +4 -0
- package/dist/components/fields/dropdown/ReadView.d.ts +4 -0
- package/dist/components/fields/dropdown/ReadView.js +22 -0
- package/dist/components/fields/file/ReadView.d.ts +4 -0
- package/dist/components/fields/file/ReadView.js +14 -0
- package/dist/components/fields/formula/ReadView.d.ts +9 -0
- package/dist/components/fields/formula/ReadView.js +14 -0
- package/dist/components/fields/hooks/useParamsAdapter.d.ts +11 -0
- package/dist/components/fields/hooks/useParamsAdapter.js +1 -0
- package/dist/components/fields/hyper-link/ReadView.d.ts +12 -0
- package/dist/components/fields/hyper-link/ReadView.js +16 -0
- package/dist/components/fields/hyper-link/style/index.d.ts +3 -0
- package/dist/components/fields/hyper-link/style/index.js +19 -0
- package/dist/components/fields/item-group/ReadView.d.ts +5 -0
- package/dist/components/fields/item-group/ReadView.js +6 -0
- package/dist/components/fields/item-type/ReadView.d.ts +4 -0
- package/dist/components/fields/item-type/ReadView.js +9 -0
- package/dist/components/fields/key/ReadView.d.ts +4 -0
- package/dist/components/fields/key/ReadView.js +9 -0
- package/dist/components/fields/long-text/ReadView.d.ts +4 -0
- package/dist/components/fields/long-text/ReadView.js +10 -0
- package/dist/components/fields/long-text/style/index.d.ts +1 -0
- package/dist/components/fields/long-text/style/index.js +7 -0
- package/dist/{cells → components/fields}/number/BaseField.d.ts +4 -5
- package/dist/components/fields/number/BaseField.js +4 -0
- package/dist/components/fields/number/ReadView.d.ts +4 -0
- package/dist/components/fields/number/ReadView.js +21 -0
- package/dist/components/fields/priority/ReadView.d.ts +15 -0
- package/dist/components/fields/priority/ReadView.js +17 -0
- package/dist/components/fields/priority/style/index.d.ts +3 -0
- package/dist/components/fields/priority/style/index.js +30 -0
- package/dist/components/fields/radio/BaseField.d.ts +13 -0
- package/dist/components/fields/radio/BaseField.js +1 -0
- package/dist/components/fields/radio/ReadView.d.ts +5 -0
- package/dist/components/fields/radio/ReadView.js +19 -0
- package/dist/components/fields/reporter/ReadView.d.ts +7 -0
- package/dist/components/fields/reporter/ReadView.js +25 -0
- package/dist/components/fields/script/BaseField.d.ts +10 -0
- package/dist/components/fields/script/BaseField.js +12 -0
- package/dist/components/fields/script/ReadView.d.ts +4 -0
- package/dist/components/fields/script/ReadView.js +21 -0
- package/dist/components/fields/sprint/ReadView.d.ts +4 -0
- package/dist/components/fields/sprint/ReadView.js +12 -0
- package/dist/{cells/status/index.d.ts → components/fields/status/Cell.d.ts} +1 -1
- package/dist/components/fields/status/Cell.js +19 -0
- package/dist/{cells → components/fields}/status/Field.d.ts +8 -8
- package/dist/components/fields/status/Field.js +1 -0
- package/dist/components/fields/status/ReadView.d.ts +4 -0
- package/dist/components/fields/status/ReadView.js +22 -0
- package/dist/{cells → components/fields}/status/Transition.d.ts +4 -3
- package/dist/components/fields/status/Transition.js +44 -0
- package/dist/{cells → components/fields}/status/TransitionButton.d.ts +9 -2
- package/dist/components/fields/status/TransitionButton.js +122 -0
- package/dist/{cells → components/fields}/status/TransitionPanel.d.ts +4 -1
- package/dist/components/fields/status/TransitionPanel.js +245 -0
- package/dist/{cells → components/fields}/status/View.d.ts +2 -2
- package/dist/components/fields/status/View.js +20 -0
- package/dist/components/fields/status/style/index.d.ts +20 -0
- package/dist/components/fields/status/style/index.js +155 -0
- package/dist/components/fields/story-point/ReadView.d.ts +4 -0
- package/dist/components/fields/story-point/ReadView.js +10 -0
- package/dist/{cells → components/fields}/tag/BaseField.d.ts +6 -7
- package/dist/components/fields/tag/BaseField.js +1 -0
- package/dist/components/fields/tag/ReadView.d.ts +6 -0
- package/dist/components/fields/tag/ReadView.js +20 -0
- package/dist/components/fields/tag/style/index.d.ts +1 -0
- package/dist/components/fields/tag/style/index.js +7 -0
- package/dist/components/fields/team/ReadView.d.ts +5 -0
- package/dist/components/fields/team/ReadView.js +17 -0
- package/dist/components/fields/team/style/index.d.ts +2 -0
- package/dist/components/fields/team/style/index.js +5 -0
- package/dist/{cells → components/fields}/text/BaseField.d.ts +5 -5
- package/dist/components/fields/text/BaseField.js +1 -0
- package/dist/components/fields/text/ReadView.d.ts +4 -0
- package/dist/components/fields/text/ReadView.js +18 -0
- package/dist/{cells → components/fields}/tree/BaseField.d.ts +4 -6
- package/dist/components/fields/tree/BaseField.js +1 -0
- package/dist/components/fields/tree/ReadView.d.ts +4 -0
- package/dist/components/fields/tree/ReadView.js +56 -0
- package/dist/components/fields/tree/utils.js +22 -0
- package/dist/components/fields/types.d.ts +6 -0
- package/dist/components/fields/types.js +1 -0
- package/dist/components/fields/updated-at/ReadView.d.ts +5 -0
- package/dist/components/fields/updated-at/ReadView.js +21 -0
- package/dist/components/fields/updated-by/ReadView.d.ts +6 -0
- package/dist/components/fields/updated-by/ReadView.js +25 -0
- package/dist/components/fields/user/ReadView.d.ts +4 -0
- package/dist/components/fields/user/ReadView.js +22 -0
- package/dist/components/fields/user/style/index.d.ts +3 -0
- package/dist/components/fields/user/style/index.js +13 -0
- package/dist/components/fields/user-group/ActionCell.d.ts +7 -0
- package/dist/components/fields/user-group/ActionCell.js +1 -0
- package/dist/components/fields/user-group/BaseField.d.ts +16 -0
- package/dist/components/fields/user-group/BaseField.js +1 -0
- package/dist/components/fields/user-group/ReadView.d.ts +5 -0
- package/dist/components/fields/user-group/ReadView.js +55 -0
- package/dist/components/fields/version/ReadView.d.ts +5 -0
- package/dist/components/fields/version/ReadView.js +12 -0
- package/dist/components/fields/workspace/ReadView.d.ts +8 -0
- package/dist/components/fields/workspace/ReadView.js +9 -0
- package/dist/components/item/hooks.d.ts +1 -0
- package/dist/components/item/hooks.js +5 -0
- package/dist/components/table-components/EditTableCell.d.ts +16 -0
- package/dist/components/table-components/EditTableCell.js +17 -0
- package/dist/components/table-components/index.d.ts +12 -0
- package/dist/components/table-components/index.js +67 -0
- package/dist/components/table-components/style/index.d.ts +1 -0
- package/dist/components/table-components/style/index.js +9 -0
- package/dist/components/table-components/utils.d.ts +4 -0
- package/dist/components/table-components/utils.js +88 -0
- package/dist/icons/index.d.ts +7 -48
- package/dist/icons/index.js +10 -0
- package/dist/icons/svg/HollowCircle.svg +6 -0
- package/dist/icons/svg/Workflow.svg +12 -0
- package/dist/index.d.ts +41 -47
- package/dist/index.js +43 -3
- package/dist/lib/array.d.ts +10 -0
- package/dist/lib/array.js +44 -0
- package/dist/lib/contexts/antdConfig.d.ts +9 -0
- package/dist/lib/contexts/antdConfig.js +11 -0
- package/dist/lib/contexts/currentUser.d.ts +17 -0
- package/dist/lib/contexts/currentUser.js +9 -0
- package/dist/lib/contexts/currentWorkspace.d.ts +8 -0
- package/dist/lib/contexts/currentWorkspace.js +9 -0
- package/dist/lib/contexts/datetimeFormat.d.ts +9 -0
- package/dist/lib/contexts/datetimeFormat.js +9 -0
- package/dist/lib/contexts/index.d.ts +13 -7
- package/dist/lib/contexts/index.js +17 -0
- package/dist/lib/contexts/itemConfig.d.ts +11 -0
- package/dist/lib/contexts/itemConfig.js +9 -0
- package/dist/lib/contexts/teamConfig.d.ts +9 -0
- package/dist/lib/contexts/teamConfig.js +10 -0
- package/dist/lib/contexts/tenant.d.ts +8 -0
- package/dist/lib/contexts/tenant.js +9 -0
- package/dist/lib/contexts/workflowConfig.d.ts +15 -0
- package/dist/lib/contexts/workflowConfig.js +9 -0
- package/dist/lib/dataType.d.ts +2 -0
- package/dist/lib/dataType.js +16 -0
- package/dist/lib/date.d.ts +7 -1
- package/dist/lib/date.js +87 -0
- package/dist/lib/dayjs.d.ts +0 -1
- package/dist/lib/dayjs.js +4 -0
- package/dist/lib/global.d.ts +42 -1053
- package/dist/lib/global.js +97 -0
- package/dist/lib/hooks/useAntdConfig.d.ts +3 -0
- package/dist/lib/hooks/useAntdConfig.js +7 -0
- package/dist/lib/hooks/useCurrentUser.d.ts +2 -2
- package/dist/lib/hooks/useCurrentUser.js +7 -0
- package/dist/lib/hooks/useCurrentWorkspace.d.ts +3 -0
- package/dist/lib/hooks/useCurrentWorkspace.js +7 -0
- package/dist/lib/hooks/useDataQuoteStore.d.ts +4 -3
- package/dist/lib/hooks/useDataQuoteStore.js +65 -0
- package/dist/lib/hooks/useDateTimeFormatType.d.ts +3 -0
- package/dist/lib/hooks/useDateTimeFormatType.js +7 -0
- package/dist/lib/hooks/useI18n.d.ts +4 -1
- package/dist/lib/hooks/useI18n.js +7 -0
- package/dist/lib/hooks/useItemConfig.d.ts +3 -0
- package/dist/lib/hooks/useItemConfig.js +7 -0
- package/dist/lib/hooks/useTeamConfig.d.ts +3 -0
- package/dist/lib/hooks/useTeamConfig.js +7 -0
- package/dist/lib/hooks/useTenant.d.ts +2 -0
- package/dist/lib/hooks/useTenant.js +7 -0
- package/dist/lib/hooks/useWorkflowConfig.d.ts +3 -0
- package/dist/lib/hooks/useWorkflowConfig.js +7 -0
- package/dist/lib/i18n.d.ts +4 -22
- package/dist/lib/i18n.js +34 -0
- package/dist/lib/isInOne.d.ts +2 -0
- package/dist/lib/isInOne.js +12 -0
- package/dist/lib/number.d.ts +1 -0
- package/dist/lib/number.js +3 -0
- package/dist/lib/regExp.d.ts +1 -11
- package/dist/lib/regExp.js +1 -0
- package/dist/lib/store/dataQuoteStore.js +9 -0
- package/dist/lib/swr/constants.d.ts +30 -0
- package/dist/lib/swr/constants.js +32 -0
- package/dist/lib/swr/hooks.d.ts +7 -0
- package/dist/lib/swr/hooks.js +14 -0
- package/dist/lib/useUser.d.ts +4 -50
- package/dist/lib/useUser.js +33 -0
- package/dist/lib/users.d.ts +6 -3
- package/dist/lib/users.js +8 -0
- package/dist/lib/workflow.d.ts +31 -31
- package/dist/lib/workflow.js +371 -0
- package/dist/locales/index.d.ts +117 -0
- package/dist/locales/index.js +117 -0
- package/dist/style/common.d.ts +23 -0
- package/dist/style/common.js +23 -0
- package/package.json +37 -93
- package/dist/cells/actors/BaseField.d.ts +0 -17
- package/dist/cells/actors/index.d.ts +0 -4
- package/dist/cells/annex/index.d.ts +0 -7
- package/dist/cells/assignee/index.d.ts +0 -23
- package/dist/cells/bind-workspace/BaseField.d.ts +0 -15
- package/dist/cells/bind-workspace/index.d.ts +0 -12
- package/dist/cells/board/index.d.ts +0 -22
- package/dist/cells/card-type/index.d.ts +0 -6
- package/dist/cells/checkbox/BaseField.d.ts +0 -14
- package/dist/cells/created-at/index.d.ts +0 -7
- package/dist/cells/created-by/index.d.ts +0 -9
- package/dist/cells/data-quote/index.d.ts +0 -8
- package/dist/cells/data-quote/util.d.ts +0 -9
- package/dist/cells/date/BaseField.d.ts +0 -21
- package/dist/cells/date/index.d.ts +0 -6
- package/dist/cells/date-range/BaseField.d.ts +0 -19
- package/dist/cells/date-range/index.d.ts +0 -6
- package/dist/cells/dropdown/BaseField.d.ts +0 -30
- package/dist/cells/dropdown/index.d.ts +0 -22
- package/dist/cells/editor/BaseField.d.ts +0 -29
- package/dist/cells/editor/Field.d.ts +0 -16
- package/dist/cells/editor/config/autoformatRules.d.ts +0 -3
- package/dist/cells/editor/config/index.d.ts +0 -5
- package/dist/cells/editor/config/pluginOptions.d.ts +0 -10
- package/dist/cells/editor/config/withDeserializeHTML.d.ts +0 -64
- package/dist/cells/editor/config/withStyledDraggables.d.ts +0 -2
- package/dist/cells/editor/config/withStyledPlaceHolders.d.ts +0 -2
- package/dist/cells/editor/elements/ImageElement.d.ts +0 -3
- package/dist/cells/editor/elements/MentionElement.d.ts +0 -3
- package/dist/cells/editor/elements/index.d.ts +0 -2
- package/dist/cells/editor/hooks.d.ts +0 -11
- package/dist/cells/editor/index.d.ts +0 -15
- package/dist/cells/editor/plugins/Fullscreen.d.ts +0 -7
- package/dist/cells/editor/plugins/ToolbarButton.d.ts +0 -3
- package/dist/cells/editor/plugins/ToolbarFont.d.ts +0 -12
- package/dist/cells/editor/plugins/ToolbarFontColor.d.ts +0 -7
- package/dist/cells/editor/plugins/ToolbarHistory.d.ts +0 -7
- package/dist/cells/editor/plugins/ToolbarLink.d.ts +0 -4
- package/dist/cells/editor/plugins/ToolbarTable.d.ts +0 -4
- package/dist/cells/editor/plugins/ToolbarUpload.d.ts +0 -4
- package/dist/cells/editor/plugins/Toolbars.d.ts +0 -11
- package/dist/cells/editor/plugins/font-bg-color/createFontBgColorPlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/font-bg-color/defaults.d.ts +0 -2
- package/dist/cells/editor/plugins/font-bg-color/getFontDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/font-bg-color/index.d.ts +0 -3
- package/dist/cells/editor/plugins/font-color/createFontColorPlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/font-color/defaults.d.ts +0 -2
- package/dist/cells/editor/plugins/font-color/getFontDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/font-color/index.d.ts +0 -3
- package/dist/cells/editor/plugins/font-family/createFontFamilyPlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/font-family/defaults.d.ts +0 -2
- package/dist/cells/editor/plugins/font-family/getFontDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/font-family/index.d.ts +0 -3
- package/dist/cells/editor/plugins/font-line-height/createFontLineHeightPlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/font-line-height/defaults.d.ts +0 -2
- package/dist/cells/editor/plugins/font-line-height/getFontDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/font-line-height/index.d.ts +0 -3
- package/dist/cells/editor/plugins/font-size/createFontSizePlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/font-size/defaults.d.ts +0 -2
- package/dist/cells/editor/plugins/font-size/getFontDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/font-size/index.d.ts +0 -3
- package/dist/cells/editor/plugins/image/createImagePlugin.d.ts +0 -3
- package/dist/cells/editor/plugins/image/getImageDeserialize.d.ts +0 -2
- package/dist/cells/editor/plugins/image/index.d.ts +0 -3
- package/dist/cells/editor/plugins/image/insertImage.d.ts +0 -2
- package/dist/cells/editor/plugins/image/withImageUpload.d.ts +0 -3
- package/dist/cells/editor/plugins/index.d.ts +0 -6
- package/dist/cells/editor/utils.d.ts +0 -13
- package/dist/cells/file/BaseField.d.ts +0 -15
- package/dist/cells/file/UploadFile.d.ts +0 -19
- package/dist/cells/file/index.d.ts +0 -13
- package/dist/cells/formula/BaseField.d.ts +0 -10
- package/dist/cells/formula/index.d.ts +0 -9
- package/dist/cells/item-group/index.d.ts +0 -22
- package/dist/cells/item-type/index.d.ts +0 -23
- package/dist/cells/key/index.d.ts +0 -6
- package/dist/cells/long-text/BaseField.d.ts +0 -17
- package/dist/cells/long-text/index.d.ts +0 -15
- package/dist/cells/name/index.d.ts +0 -14
- package/dist/cells/number/index.d.ts +0 -23
- package/dist/cells/priority/index.d.ts +0 -16
- package/dist/cells/radio/BaseField.d.ts +0 -14
- package/dist/cells/script/BaseField.d.ts +0 -8
- package/dist/cells/script/index.d.ts +0 -7
- package/dist/cells/security-level/BaseField.d.ts +0 -19
- package/dist/cells/sprint/index.d.ts +0 -22
- package/dist/cells/status/hooks.d.ts +0 -3
- package/dist/cells/story-point/index.d.ts +0 -23
- package/dist/cells/tableCellMapping.d.ts +0 -23
- package/dist/cells/tag/tag-multiple-select/PopoverPanel.d.ts +0 -4
- package/dist/cells/tag/tag-multiple-select/TagPopoverSelect.d.ts +0 -4
- package/dist/cells/text/index.d.ts +0 -16
- package/dist/cells/time/BaseField.d.ts +0 -15
- package/dist/cells/time/index.d.ts +0 -6
- package/dist/cells/time-range/BaseField.d.ts +0 -20
- package/dist/cells/time-range/index.d.ts +0 -7
- package/dist/cells/updated-at/index.d.ts +0 -7
- package/dist/cells/updated-by/index.d.ts +0 -9
- package/dist/cells/user/BaseField.d.ts +0 -27
- package/dist/cells/user/index.d.ts +0 -21
- package/dist/cells/version/index.d.ts +0 -22
- package/dist/cells/workspace/index.d.ts +0 -22
- package/dist/common/FieldErrorBoundary.d.ts +0 -14
- package/dist/common/OverflowTooltip.d.ts +0 -23
- package/dist/common/UploadFile.d.ts +0 -19
- package/dist/common/base-table/ChildCardInlineCreator.d.ts +0 -9
- package/dist/common/base-table/index.d.ts +0 -16
- package/dist/common/columns-settings/ColumnsSettings.d.ts +0 -5
- package/dist/common/columns-settings/ColumnsSettingsItem.d.ts +0 -4
- package/dist/common/data-source/context.d.ts +0 -2
- package/dist/common/date/DatePicker.d.ts +0 -11
- package/dist/common/date/TimePicker.d.ts +0 -19
- package/dist/common/filters/filter-query/FilterPanel.d.ts +0 -4
- package/dist/common/filters/filter-query/IqlExpression.d.ts +0 -6
- package/dist/common/filters/filter-query/QuerySelector.d.ts +0 -4
- package/dist/common/filters/filter-query/utils.d.ts +0 -18
- package/dist/common/form-field/FormField.d.ts +0 -15
- package/dist/common/form-field/pure-field/FieldLayout.d.ts +0 -5
- package/dist/common/form-field/pure-field/FormikEnhance.d.ts +0 -1
- package/dist/common/form-field/pure-field/PureField.d.ts +0 -8
- package/dist/common/formik-field-touched/FormikFieldTouched.d.ts +0 -2
- package/dist/common/index.d.ts +0 -16
- package/dist/common/item/IssueActionDropdown.d.ts +0 -18
- package/dist/common/item-icon/ItemIcon.d.ts +0 -8
- package/dist/common/plugin/PluginComponents.d.ts +0 -17
- package/dist/common/plugin/PluginErrorContainer.d.ts +0 -15
- package/dist/common/plugin/PluginLoadComponent.d.ts +0 -27
- package/dist/common/search-select/PopoverPanel.d.ts +0 -4
- package/dist/common/search-select/SearchPopoverSelect.d.ts +0 -4
- package/dist/common/status-selector/index.d.ts +0 -9
- package/dist/common/structure/hooks.d.ts +0 -30
- package/dist/common/structure/index.d.ts +0 -11
- package/dist/common/structure/table-components/TableActionMenu.d.ts +0 -18
- package/dist/common/structure/table-components/TableColumnSettings.d.ts +0 -13
- package/dist/common/structure/table-components/TableEmpty.d.ts +0 -6
- package/dist/common/structure/table-components/TableTitleCell.d.ts +0 -16
- package/dist/common/structure/table-components/index.d.ts +0 -11
- package/dist/common/structure/table-components/tableCellMapping.d.ts +0 -23
- package/dist/common/structure/table-components/useCacheColumns.d.ts +0 -13
- package/dist/common/structure/table-components/useTableColumns.d.ts +0 -22
- package/dist/common/structure/table-components/useTableMenu.d.ts +0 -42
- package/dist/common/structure-table/Table.d.ts +0 -4
- package/dist/common/structure-table/components/Action.d.ts +0 -15
- package/dist/common/structure-table/components/Collapse.d.ts +0 -12
- package/dist/common/structure-table/components/CollapseIcon.d.ts +0 -6
- package/dist/common/structure-table/components/DraggableRow.d.ts +0 -5
- package/dist/common/structure-table/components/Handle.d.ts +0 -3
- package/dist/common/structure-table/components/Row.d.ts +0 -25
- package/dist/common/structure-table/components/index.d.ts +0 -6
- package/dist/common/structure-table/index.d.ts +0 -1
- package/dist/common/user-field/UserField.d.ts +0 -15
- package/dist/common/user-field/index.d.ts +0 -2
- package/dist/common/utils.d.ts +0 -41
- package/dist/common/workflow/View.d.ts +0 -11
- package/dist/common/workflow/config.d.ts +0 -87
- package/dist/common/workflow/nodes/StartNode.d.ts +0 -10
- package/dist/common/workflow/nodes/TaskNode.d.ts +0 -12
- package/dist/common/workflow/nodes/index.d.ts +0 -2
- package/dist/fields/base-component/BaseLabel.d.ts +0 -10
- package/dist/fields/base-component/utils.d.ts +0 -4
- package/dist/fields/data-quote/util.d.ts +0 -9
- package/dist/fields/item-activity/BaseField.d.ts +0 -7
- package/dist/fields/item-activity/Comment.d.ts +0 -7
- package/dist/fields/item-level/hooks.d.ts +0 -15
- package/dist/fields/item-level/utils.d.ts +0 -25
- package/dist/index.js.LICENSE.txt +0 -40
- package/dist/index.js.map +0 -1
- package/dist/lib/ParentMessage.d.ts +0 -7
- package/dist/lib/apis/filter/iql.d.ts +0 -6
- package/dist/lib/apis/forest.d.ts +0 -2
- package/dist/lib/apis/groups/index.d.ts +0 -21
- package/dist/lib/apis/roles/index.d.ts +0 -11
- package/dist/lib/apis/screen/fields.d.ts +0 -21
- package/dist/lib/apis/screen/fieldsBehavior.d.ts +0 -10
- package/dist/lib/apis/screen/index.d.ts +0 -20
- package/dist/lib/contexts/LibraryProvider.d.ts +0 -18
- package/dist/lib/contexts/currentUserAndRoles.d.ts +0 -15
- package/dist/lib/contexts/token.d.ts +0 -13
- package/dist/lib/contexts/users.d.ts +0 -11
- package/dist/lib/contexts/values.d.ts +0 -6
- package/dist/lib/customFields/hooks.d.ts +0 -24
- package/dist/lib/env.d.ts +0 -2
- package/dist/lib/error/index.d.ts +0 -2
- package/dist/lib/error/log.d.ts +0 -13
- package/dist/lib/error/utils.d.ts +0 -13
- package/dist/lib/events.d.ts +0 -11
- package/dist/lib/fetch.d.ts +0 -49
- package/dist/lib/filters/filter-query/utils.d.ts +0 -18
- package/dist/lib/forest.d.ts +0 -60
- package/dist/lib/hooks/index.d.ts +0 -13
- package/dist/lib/hooks/useCustomFields.d.ts +0 -9
- package/dist/lib/hooks/useFieldTypes.d.ts +0 -9
- package/dist/lib/hooks/useFields.d.ts +0 -12
- package/dist/lib/hooks/useItemsInfinite.d.ts +0 -48
- package/dist/lib/hooks/useRemoteComponents.d.ts +0 -25
- package/dist/lib/hooks/useTenants.d.ts +0 -7
- package/dist/lib/hooks/useToken.d.ts +0 -3
- package/dist/lib/hooks/useUsers.d.ts +0 -8
- package/dist/lib/hooks/useWatchItemUpdate.d.ts +0 -32
- package/dist/lib/hooks/useWorkspaces.d.ts +0 -8
- package/dist/lib/iql.d.ts +0 -31
- package/dist/lib/item/hooks.d.ts +0 -31
- package/dist/lib/item/utils.d.ts +0 -34
- package/dist/lib/kanban/hooks.d.ts +0 -8
- package/dist/lib/locales.d.ts +0 -4
- package/dist/lib/models.d.ts +0 -59
- package/dist/lib/parse.d.ts +0 -3
- package/dist/lib/path.d.ts +0 -4
- package/dist/lib/proxima-sdk/components/index.d.ts +0 -2
- package/dist/lib/proxima-sdk/hooks/index.d.ts +0 -4
- package/dist/lib/proxima-sdk/index.d.ts +0 -5
- package/dist/lib/proxima-sdk/lib/index.d.ts +0 -9
- package/dist/lib/proxima-sdk/schema/index.d.ts +0 -2
- package/dist/lib/storage.d.ts +0 -7
- package/dist/lib/store.d.ts +0 -14
- package/dist/lib/types/index.d.ts +0 -3
- package/dist/lib/types/parse-models.d.ts +0 -6
- package/dist/lib/useInitialRecoilState.d.ts +0 -3
- package/dist/lib/useParseQuery.d.ts +0 -53
- package/dist/lib/usePluginManifest.d.ts +0 -33
- package/dist/lib/useWatchApp.d.ts +0 -4
- package/dist/lib/useWorkspace.d.ts +0 -1
- package/dist/lib/workspace.d.ts +0 -2
- package/dist/locales/en/en_US.d.ts +0 -45
- package/dist/locales/en/package/application.d.ts +0 -73
- package/dist/locales/en/package/automation.d.ts +0 -303
- package/dist/locales/en/package/date.d.ts +0 -54
- package/dist/locales/en/package/fields.d.ts +0 -409
- package/dist/locales/en/package/filters.d.ts +0 -89
- package/dist/locales/en/package/formField.d.ts +0 -157
- package/dist/locales/en/package/global.d.ts +0 -318
- package/dist/locales/en/package/item.d.ts +0 -488
- package/dist/locales/en/package/itemTypes.d.ts +0 -154
- package/dist/locales/en/package/lib.d.ts +0 -127
- package/dist/locales/en/package/message.d.ts +0 -251
- package/dist/locales/en/package/pages.d.ts +0 -67
- package/dist/locales/en/package/permission.d.ts +0 -471
- package/dist/locales/en/package/placeholder.d.ts +0 -179
- package/dist/locales/en/package/plugin.d.ts +0 -20
- package/dist/locales/en/package/report.d.ts +0 -150
- package/dist/locales/en/package/reportPlugin.d.ts +0 -183
- package/dist/locales/en/package/screen.d.ts +0 -121
- package/dist/locales/en/package/sections.d.ts +0 -60
- package/dist/locales/en/package/settings.d.ts +0 -194
- package/dist/locales/en/package/sprint.d.ts +0 -52
- package/dist/locales/en/package/users.d.ts +0 -58
- package/dist/locales/en/package/validate.d.ts +0 -138
- package/dist/locales/en/package/views.d.ts +0 -383
- package/dist/locales/en/package/workflow.d.ts +0 -245
- package/dist/locales/en/package/workspace.d.ts +0 -342
- package/dist/locales/zh/package/application.d.ts +0 -73
- package/dist/locales/zh/package/automation.d.ts +0 -303
- package/dist/locales/zh/package/date.d.ts +0 -54
- package/dist/locales/zh/package/fields.d.ts +0 -409
- package/dist/locales/zh/package/filters.d.ts +0 -89
- package/dist/locales/zh/package/formField.d.ts +0 -162
- package/dist/locales/zh/package/global.d.ts +0 -318
- package/dist/locales/zh/package/item.d.ts +0 -489
- package/dist/locales/zh/package/itemTypes.d.ts +0 -153
- package/dist/locales/zh/package/lib.d.ts +0 -127
- package/dist/locales/zh/package/message.d.ts +0 -251
- package/dist/locales/zh/package/pages.d.ts +0 -67
- package/dist/locales/zh/package/permission.d.ts +0 -470
- package/dist/locales/zh/package/placeholder.d.ts +0 -172
- package/dist/locales/zh/package/plugin.d.ts +0 -20
- package/dist/locales/zh/package/report.d.ts +0 -150
- package/dist/locales/zh/package/reportPlugin.d.ts +0 -183
- package/dist/locales/zh/package/screen.d.ts +0 -116
- package/dist/locales/zh/package/sections.d.ts +0 -63
- package/dist/locales/zh/package/settings.d.ts +0 -192
- package/dist/locales/zh/package/sprint.d.ts +0 -52
- package/dist/locales/zh/package/users.d.ts +0 -58
- package/dist/locales/zh/package/validate.d.ts +0 -138
- package/dist/locales/zh/package/views.d.ts +0 -380
- package/dist/locales/zh/package/workflow.d.ts +0 -245
- package/dist/locales/zh/package/workspace.d.ts +0 -344
- package/dist/locales/zh/zh_CN.d.ts +0 -46
- package/dist/main.css +0 -28488
- package/dist/main.css.map +0 -1
- package/dist/osui/index.d.ts +0 -8
- /package/dist/{cells → components/fields}/tree/utils.d.ts +0 -0
- /package/dist/lib/{dataQuoteStore.d.ts → store/dataQuoteStore.d.ts} +0 -0
package/dist/lib/global.d.ts
CHANGED
|
@@ -1,31 +1,4 @@
|
|
|
1
|
-
import { DateType } from './types/dayjs';
|
|
2
|
-
import { ViewType } from './types/models';
|
|
3
|
-
export declare const WorkFlowStatusColor: {
|
|
4
|
-
Start: {
|
|
5
|
-
color: string;
|
|
6
|
-
bgColor: string;
|
|
7
|
-
};
|
|
8
|
-
InProgress: {
|
|
9
|
-
color: string;
|
|
10
|
-
bgColor: string;
|
|
11
|
-
};
|
|
12
|
-
Finished: {
|
|
13
|
-
color: string;
|
|
14
|
-
bgColor: string;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
export declare const QUERY_INFINITY = 9999;
|
|
18
|
-
export declare const NumberMaxMin: {
|
|
19
|
-
Max: number;
|
|
20
|
-
Min: number;
|
|
21
|
-
};
|
|
22
|
-
export declare const FIELD_TYPE_DATATYPE_MAPPINGS: {
|
|
23
|
-
String: string;
|
|
24
|
-
Array: string;
|
|
25
|
-
Number: string;
|
|
26
|
-
Object: string;
|
|
27
|
-
Boolean: string;
|
|
28
|
-
};
|
|
1
|
+
import type { DateType } from './types/dayjs';
|
|
29
2
|
export declare const FIELD_TYPE_KEY_MAPPINGS: {
|
|
30
3
|
Text: string;
|
|
31
4
|
User: string;
|
|
@@ -34,10 +7,15 @@ export declare const FIELD_TYPE_KEY_MAPPINGS: {
|
|
|
34
7
|
Dropdown: string;
|
|
35
8
|
Date: string;
|
|
36
9
|
DateRange: string;
|
|
37
|
-
Time: string;
|
|
38
|
-
TimeRange: string;
|
|
39
10
|
BindWorkspace: string;
|
|
40
11
|
Script: string;
|
|
12
|
+
CustomVersion: string;
|
|
13
|
+
RemoteFieldRemoteDataQuote: string;
|
|
14
|
+
VersionSnapshotKeyword: string;
|
|
15
|
+
testManagerTextKeyword: string;
|
|
16
|
+
testManagerArrayKeyword: string;
|
|
17
|
+
testManagerObject: string;
|
|
18
|
+
RemoteFieldUnionFieldType: string;
|
|
41
19
|
SecurityLevel: string;
|
|
42
20
|
Key: string;
|
|
43
21
|
Workflow: string;
|
|
@@ -56,6 +34,11 @@ export declare const FIELD_TYPE_KEY_MAPPINGS: {
|
|
|
56
34
|
Board: string;
|
|
57
35
|
ItemGroup: string;
|
|
58
36
|
StoryPoint: string;
|
|
37
|
+
StatusType: string;
|
|
38
|
+
Reporter: string;
|
|
39
|
+
Team: string;
|
|
40
|
+
Snapshot: string;
|
|
41
|
+
ItemHandler: string;
|
|
59
42
|
CreatedAt: string;
|
|
60
43
|
UpdatedAt: string;
|
|
61
44
|
CreatedBy: string;
|
|
@@ -70,570 +53,8 @@ export declare const FIELD_TYPE_KEY_MAPPINGS: {
|
|
|
70
53
|
Tag: string;
|
|
71
54
|
DataQuote: string;
|
|
72
55
|
Actors: string;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
[x: string]: {
|
|
76
|
-
export: boolean;
|
|
77
|
-
import: boolean;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
export declare const USER_FIELD_TYPE_KEY: string[];
|
|
81
|
-
export declare const VIEW_TYPE: Record<ViewType, ViewType>;
|
|
82
|
-
export declare const VIEW_COMPONENT: {
|
|
83
|
-
Default: ViewType;
|
|
84
|
-
Structure: ViewType;
|
|
85
|
-
Kanban: ViewType;
|
|
86
|
-
Gantt: ViewType;
|
|
87
|
-
StoryMapping: ViewType;
|
|
88
|
-
Calendar: ViewType;
|
|
89
|
-
Split: ViewType;
|
|
90
|
-
Board: string;
|
|
91
|
-
};
|
|
92
|
-
export declare const SCREEN_TYPE: {
|
|
93
|
-
View: string;
|
|
94
|
-
Create: string;
|
|
95
|
-
Edit: string;
|
|
96
|
-
};
|
|
97
|
-
export declare const SYSTEM_FIELD: {
|
|
98
|
-
SecurityLevel: string;
|
|
99
|
-
ItemType: string;
|
|
100
|
-
Name: string;
|
|
101
|
-
Workflow: string;
|
|
102
|
-
Workspace: string;
|
|
103
|
-
Status: string;
|
|
104
|
-
Board: string;
|
|
105
|
-
ItemGroup: string;
|
|
106
|
-
Key: string;
|
|
107
|
-
CreatedAt: string;
|
|
108
|
-
UpdatedAt: string;
|
|
109
|
-
CreatedBy: string;
|
|
110
|
-
UpdatedBy: string;
|
|
111
|
-
Sprint: string;
|
|
112
|
-
Version: string;
|
|
113
|
-
Assignee: string;
|
|
114
|
-
Priority: string;
|
|
115
|
-
Annex: string;
|
|
116
|
-
ItemLevel: string;
|
|
117
|
-
Relations: string;
|
|
118
|
-
StoryPoint: string;
|
|
119
|
-
};
|
|
120
|
-
export declare const DEFAULT_SHOW_FIELDS: string[];
|
|
121
|
-
export declare const INCLUDE_SYSTEM_FIELDS: string[];
|
|
122
|
-
export declare const SECURITY_LEVEL_TYPE: {
|
|
123
|
-
Read: string;
|
|
124
|
-
Write: string;
|
|
125
|
-
};
|
|
126
|
-
export declare const EXCLUDED_TABLE_FIELD_TYPES: string[];
|
|
127
|
-
export declare const EXCLUDE_REPORT_TABLE_FIELD_TYPES: string[];
|
|
128
|
-
export declare const INCLUDE_FILTER_FIELD_TYPES: string[];
|
|
129
|
-
export declare const FILTER_EXPR_NAME: {
|
|
130
|
-
Text_Contain: string;
|
|
131
|
-
Text_Equal: string;
|
|
132
|
-
Text_Not_Equal: string;
|
|
133
|
-
Number_Equal: string;
|
|
134
|
-
Number_Not_Equal: string;
|
|
135
|
-
Number_Less_Than: string;
|
|
136
|
-
Number_Greater_Than: string;
|
|
137
|
-
Dropdown_Equal: string;
|
|
138
|
-
Dropdown_Contain: string;
|
|
139
|
-
Dropdown_Not_Contain: string;
|
|
140
|
-
User_Contain: string;
|
|
141
|
-
User_Not_Contain: string;
|
|
142
|
-
Workspace_Equal: string;
|
|
143
|
-
Workspace_Not_Equal: string;
|
|
144
|
-
Workspace_Contain: string;
|
|
145
|
-
Workspace_Not_Contain: string;
|
|
146
|
-
ItemType_Equal: string;
|
|
147
|
-
ItemType_Not_Equal: string;
|
|
148
|
-
ItemType_Contain: string;
|
|
149
|
-
ItemType_Not_Contain: string;
|
|
150
|
-
Key_Equal: string;
|
|
151
|
-
Key_Not_Equal: string;
|
|
152
|
-
Key_Less_Than: string;
|
|
153
|
-
Key_Greater_Than: string;
|
|
154
|
-
Status_Contain: string;
|
|
155
|
-
Status_Not_Contain: string;
|
|
156
|
-
CreatedBy_Equal: string;
|
|
157
|
-
CreatedBy_Not_Equal: string;
|
|
158
|
-
CreatedBy_Contain: string;
|
|
159
|
-
CreatedBy_Not_Contain: string;
|
|
160
|
-
UpdatedBy_Equal: string;
|
|
161
|
-
UpdatedBy_Not_Equal: string;
|
|
162
|
-
UpdatedBy_Contain: string;
|
|
163
|
-
UpdatedBy_Not_Contain: string;
|
|
164
|
-
Date_Range: string;
|
|
165
|
-
CreatedAt_Range: string;
|
|
166
|
-
UpdatedAt_Range: string;
|
|
167
|
-
BindWorkspace_Equal: string;
|
|
168
|
-
BindWorkspace_Not_Equal: string;
|
|
169
|
-
BindWorkspace_Contain: string;
|
|
170
|
-
BindWorkspace_Not_Contain: string;
|
|
171
|
-
Assignee_Contain: string;
|
|
172
|
-
Assignee_Not_Contain: string;
|
|
173
|
-
Priority_Equal: string;
|
|
174
|
-
Priority_Not_Equal: string;
|
|
175
|
-
Priority_Less_Than: string;
|
|
176
|
-
Priority_Greater_Than: string;
|
|
177
|
-
Priority_Contain: string;
|
|
178
|
-
Priority_Not_Contain: string;
|
|
179
|
-
ItemGroup_Contain: string;
|
|
180
|
-
ItemGroup_Not_Contain: string;
|
|
181
|
-
};
|
|
182
|
-
export declare const MULTIPLE_FILTER_EXPRESSIONS: {
|
|
183
|
-
Workspace: {
|
|
184
|
-
label: string;
|
|
185
|
-
value: string;
|
|
186
|
-
}[];
|
|
187
|
-
};
|
|
188
|
-
export declare const MODE_MULTIPLE: string[];
|
|
189
|
-
export declare const FILTER_EXPRESSIONS: {
|
|
190
|
-
Text: {
|
|
191
|
-
label: string;
|
|
192
|
-
value: string;
|
|
193
|
-
}[];
|
|
194
|
-
Number: {
|
|
195
|
-
label: string;
|
|
196
|
-
value: string;
|
|
197
|
-
}[];
|
|
198
|
-
Dropdown: {
|
|
199
|
-
label: string;
|
|
200
|
-
value: string;
|
|
201
|
-
}[];
|
|
202
|
-
DataQuote: {
|
|
203
|
-
label: string;
|
|
204
|
-
value: string;
|
|
205
|
-
}[];
|
|
206
|
-
Version: {
|
|
207
|
-
label: string;
|
|
208
|
-
value: string;
|
|
209
|
-
}[];
|
|
210
|
-
Sprint: {
|
|
211
|
-
label: string;
|
|
212
|
-
value: string;
|
|
213
|
-
}[];
|
|
214
|
-
User: {
|
|
215
|
-
label: string;
|
|
216
|
-
value: string;
|
|
217
|
-
}[];
|
|
218
|
-
Workspace: {
|
|
219
|
-
label: string;
|
|
220
|
-
value: string;
|
|
221
|
-
}[];
|
|
222
|
-
BindWorkspace: {
|
|
223
|
-
label: string;
|
|
224
|
-
value: string;
|
|
225
|
-
}[];
|
|
226
|
-
ItemType: {
|
|
227
|
-
label: string;
|
|
228
|
-
value: string;
|
|
229
|
-
}[];
|
|
230
|
-
Key: {
|
|
231
|
-
label: string;
|
|
232
|
-
value: string;
|
|
233
|
-
}[];
|
|
234
|
-
Status: {
|
|
235
|
-
label: string;
|
|
236
|
-
value: string;
|
|
237
|
-
}[];
|
|
238
|
-
createdBy: {
|
|
239
|
-
label: string;
|
|
240
|
-
value: string;
|
|
241
|
-
}[];
|
|
242
|
-
updatedBy: {
|
|
243
|
-
label: string;
|
|
244
|
-
value: string;
|
|
245
|
-
}[];
|
|
246
|
-
Assignee: {
|
|
247
|
-
label: string;
|
|
248
|
-
value: string;
|
|
249
|
-
}[];
|
|
250
|
-
Priority: {
|
|
251
|
-
label: string;
|
|
252
|
-
value: string;
|
|
253
|
-
}[];
|
|
254
|
-
ItemGroup: {
|
|
255
|
-
label: string;
|
|
256
|
-
value: string;
|
|
257
|
-
}[];
|
|
258
|
-
};
|
|
259
|
-
export declare const MULTIPLE_FIELD: string[];
|
|
260
|
-
export declare const IQL_CONDITION: {
|
|
261
|
-
NOT_EQUAL: string;
|
|
262
|
-
EQUAL: string;
|
|
263
|
-
GREATER_THAN: string;
|
|
264
|
-
LESS_THAN: string;
|
|
265
|
-
GREATER_THAN_EQUAL: string;
|
|
266
|
-
LESS_THAN_EQUAL: string;
|
|
267
|
-
NOT_CONTAIN: string;
|
|
268
|
-
CONTAIN: string;
|
|
269
|
-
TEXT_CONTAIN: string;
|
|
270
|
-
TEXT_NOT_CONTAIN: string;
|
|
271
|
-
ORDER_BY: string;
|
|
272
|
-
IS: string;
|
|
273
|
-
IS_NOT: string;
|
|
274
|
-
DESC: string;
|
|
275
|
-
ASC: string;
|
|
276
|
-
AND: string;
|
|
277
|
-
_AND_: string;
|
|
278
|
-
};
|
|
279
|
-
export declare const COMPONENT_CATEGORY_DICT: {
|
|
280
|
-
CategoryRoot: string;
|
|
281
|
-
CategoryBlock: string;
|
|
282
|
-
CategoryWrapper: string;
|
|
283
|
-
CategoryComponent: string;
|
|
284
|
-
};
|
|
285
|
-
export declare const COMPONENT_DICT: {
|
|
286
|
-
RootContainer: string;
|
|
287
|
-
TabsContainer: string;
|
|
288
|
-
CollapseContainer: string;
|
|
289
|
-
RowContainer: string;
|
|
290
|
-
TabPaneWrapper: string;
|
|
291
|
-
CollapsePanelWrapper: string;
|
|
292
|
-
CustomComponent: string;
|
|
293
|
-
};
|
|
294
|
-
export declare const UI_DICT: {
|
|
295
|
-
Row: string;
|
|
296
|
-
Tabs: string;
|
|
297
|
-
TabPane: string;
|
|
298
|
-
Collapse: string;
|
|
299
|
-
Panel: string;
|
|
300
|
-
Div: string;
|
|
301
|
-
};
|
|
302
|
-
export declare const ALLOW_DRAG_COMPONENT_CATEGORIES_IN_CANVAS: string[];
|
|
303
|
-
export declare const ALLOW_FOCUS_COMPONENT_CATEGORIES_IN_CANVAS: string[];
|
|
304
|
-
export declare const COMPONENT_BEHAVIORS: {
|
|
305
|
-
[x: string]: {
|
|
306
|
-
category: string;
|
|
307
|
-
accept: string[];
|
|
308
|
-
ui: string;
|
|
309
|
-
description?: undefined;
|
|
310
|
-
} | {
|
|
311
|
-
category: string;
|
|
312
|
-
description: string;
|
|
313
|
-
accept: string[];
|
|
314
|
-
ui: string;
|
|
315
|
-
};
|
|
316
|
-
};
|
|
317
|
-
export declare const WIDGET_MENU_TYPES: {
|
|
318
|
-
Layout: string;
|
|
319
|
-
System: string;
|
|
320
|
-
Custom: string;
|
|
321
|
-
};
|
|
322
|
-
export declare const CONTAINER_WIDGETS: ({
|
|
323
|
-
name: string;
|
|
324
|
-
component: string;
|
|
325
|
-
description: string;
|
|
326
|
-
initData: {
|
|
327
|
-
data: {
|
|
328
|
-
children: {
|
|
329
|
-
component: string;
|
|
330
|
-
children: any[];
|
|
331
|
-
config: {};
|
|
332
|
-
}[];
|
|
333
|
-
};
|
|
334
|
-
config: {
|
|
335
|
-
tabPosition: string;
|
|
336
|
-
containerRows?: undefined;
|
|
337
|
-
};
|
|
338
|
-
};
|
|
339
|
-
} | {
|
|
340
|
-
name: string;
|
|
341
|
-
component: string;
|
|
342
|
-
description: string;
|
|
343
|
-
initData: {
|
|
344
|
-
data: {
|
|
345
|
-
children: {
|
|
346
|
-
component: string;
|
|
347
|
-
children: any[];
|
|
348
|
-
config: {};
|
|
349
|
-
}[];
|
|
350
|
-
};
|
|
351
|
-
config: {
|
|
352
|
-
tabPosition?: undefined;
|
|
353
|
-
containerRows?: undefined;
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
} | {
|
|
357
|
-
name: string;
|
|
358
|
-
component: string;
|
|
359
|
-
description: string;
|
|
360
|
-
initData: {
|
|
361
|
-
data: {
|
|
362
|
-
children: any[];
|
|
363
|
-
};
|
|
364
|
-
config: {
|
|
365
|
-
containerRows: number;
|
|
366
|
-
tabPosition?: undefined;
|
|
367
|
-
};
|
|
368
|
-
};
|
|
369
|
-
})[];
|
|
370
|
-
export declare const INCLUDED_SYSTEM_FIELD_TYPES: string[];
|
|
371
|
-
export declare const MARK_FONT_SIZE = "fontSize";
|
|
372
|
-
export declare const MARK_FONT_FAMILY = "fontFamily";
|
|
373
|
-
export declare const MARK_FONT_LINE_HEIGHT = "lineHeight";
|
|
374
|
-
export declare const MARK_FONT_COLOR = "color";
|
|
375
|
-
export declare const MARK_FONT_BG_COLOR = "backgroundColor";
|
|
376
|
-
export declare const ELEMENT_TEMPLATE_MENTION = "metion_template";
|
|
377
|
-
export declare const MARK_HISTORY_UNDO = "undo";
|
|
378
|
-
export declare const MARK_HISTORY_REDO = "redo";
|
|
379
|
-
export declare const FONT_MENUS: {
|
|
380
|
-
fontSize: {
|
|
381
|
-
label: string;
|
|
382
|
-
value: string;
|
|
383
|
-
}[];
|
|
384
|
-
fontFamily: {
|
|
385
|
-
label: string;
|
|
386
|
-
value: string;
|
|
387
|
-
}[];
|
|
388
|
-
lineHeight: {
|
|
389
|
-
label: string;
|
|
390
|
-
value: string;
|
|
391
|
-
}[];
|
|
392
|
-
};
|
|
393
|
-
export declare enum AUTOMATE_TYPE {
|
|
394
|
-
ACTION = "action",
|
|
395
|
-
CONDITION = "condition",
|
|
396
|
-
TRIGGER = "trigger",
|
|
397
|
-
BRANCH = "branch"
|
|
398
|
-
}
|
|
399
|
-
export declare const AUTOMATE_NODES: {
|
|
400
|
-
TRIGGER_ITEM_CREATED: string;
|
|
401
|
-
TRIGGER_ITEM_UPDATED: string;
|
|
402
|
-
TRIGGER_ITEM_DELETED: string;
|
|
403
|
-
TRIGGER_ITEM_TRANSITIONED: string;
|
|
404
|
-
TRIGGER_ITEM_FIELD_CHANGED: string;
|
|
405
|
-
TRIGGER_ITEM_LINK_DELETED: string;
|
|
406
|
-
TRIGGER_ITEM_LINK_CREATED: string;
|
|
407
|
-
TRIGGER_ITEM_COMMENTED_ADDED: string;
|
|
408
|
-
TRIGGER_ITEM_REMOVED: string;
|
|
409
|
-
TRIGGER_BPMN_TRANSITIONED: string;
|
|
410
|
-
TRIGGER_BPMN_FINISHED: string;
|
|
411
|
-
TRIGGER_SCHEDULE: string;
|
|
412
|
-
CONDITION_IF_FIELDS: string;
|
|
413
|
-
CONDITION_ITEM_USER: string;
|
|
414
|
-
CONDITION_ITEM_RELATE: string;
|
|
415
|
-
CONDITION_BPMN_CONDITION: string;
|
|
416
|
-
CONDITION_IF_ELSE: string;
|
|
417
|
-
ACTION_ITEM_COMMENT: string;
|
|
418
|
-
ACTION_SUB_ITEM_CREATE: string;
|
|
419
|
-
ACTION_ITEM_CREATE: string;
|
|
420
|
-
ACTION_ITEM_DELETE: string;
|
|
421
|
-
ACTION_BPMN_CREATE: string;
|
|
422
|
-
ACTION_ITEM_CLONE: string;
|
|
423
|
-
ACTION_ITEM_TRANSITION: string;
|
|
424
|
-
ACTION_ITEM_EDIT: string;
|
|
425
|
-
ACTION_EMAIL_SEND: string;
|
|
426
|
-
ACTION_NOTIFICATION_SEND: string;
|
|
427
|
-
ACTION_WEB_REQUEST: string;
|
|
428
|
-
BRANCH_ITEM: string;
|
|
429
|
-
BRANCH_ADVANCED_ITEM: string;
|
|
430
|
-
};
|
|
431
|
-
export declare const AUTOMATE_EVENTS: {
|
|
432
|
-
ITEM_UPDATED: string;
|
|
433
|
-
ITEM_CREATED: string;
|
|
434
|
-
ITEM_DELETED: string;
|
|
435
|
-
BPMN_ENDED: string;
|
|
436
|
-
BPMN_TRANSITIONED: string;
|
|
437
|
-
ITEM_LINK_CREATED: string;
|
|
438
|
-
ITEM_LINK_DELETED: string;
|
|
439
|
-
TRIGGER_TIMER: string;
|
|
440
|
-
};
|
|
441
|
-
export declare const AUTOMATE_TRIGGER_EVENTS: {
|
|
442
|
-
[x: string]: string;
|
|
443
|
-
};
|
|
444
|
-
export declare const CONDITIONS_TYPE: {
|
|
445
|
-
IF: string;
|
|
446
|
-
ELSE_IF: string;
|
|
447
|
-
ELSE: string;
|
|
448
|
-
};
|
|
449
|
-
export declare const CONDITIONS_TYPE_NAME: {
|
|
450
|
-
[x: string]: string;
|
|
451
|
-
};
|
|
452
|
-
export declare const SWITCH_COMPONENT_COMMON_LIST: {
|
|
453
|
-
title: string;
|
|
454
|
-
desc: string;
|
|
455
|
-
type: AUTOMATE_TYPE;
|
|
456
|
-
color: string;
|
|
457
|
-
icon: string;
|
|
458
|
-
}[];
|
|
459
|
-
export declare const SWITCH_COMPONENT_LIST: {
|
|
460
|
-
title: string;
|
|
461
|
-
desc: string;
|
|
462
|
-
type: AUTOMATE_TYPE;
|
|
463
|
-
color: string;
|
|
464
|
-
icon: string;
|
|
465
|
-
}[];
|
|
466
|
-
export declare const AUTO_NODE_LIST: ({
|
|
467
|
-
title: string;
|
|
468
|
-
desc: string;
|
|
469
|
-
type: AUTOMATE_TYPE;
|
|
470
|
-
view: string;
|
|
471
|
-
color: string;
|
|
472
|
-
conditionType?: undefined;
|
|
473
|
-
hide?: undefined;
|
|
474
|
-
} | {
|
|
475
|
-
title: string;
|
|
476
|
-
desc: string;
|
|
477
|
-
type: AUTOMATE_TYPE;
|
|
478
|
-
view: string;
|
|
479
|
-
conditionType: string;
|
|
480
|
-
color: string;
|
|
481
|
-
hide?: undefined;
|
|
482
|
-
} | {
|
|
483
|
-
title: string;
|
|
484
|
-
desc: string;
|
|
485
|
-
type: AUTOMATE_TYPE;
|
|
486
|
-
view: string;
|
|
487
|
-
conditionType: string;
|
|
488
|
-
hide: boolean;
|
|
489
|
-
color: string;
|
|
490
|
-
} | {
|
|
491
|
-
title: string;
|
|
492
|
-
desc: string;
|
|
493
|
-
type: AUTOMATE_TYPE;
|
|
494
|
-
view: string;
|
|
495
|
-
hide: boolean;
|
|
496
|
-
color: string;
|
|
497
|
-
conditionType?: undefined;
|
|
498
|
-
})[];
|
|
499
|
-
export declare const AUTOMATION_SIDE_BAR_DETAILS: {
|
|
500
|
-
[x: string]: string;
|
|
501
|
-
};
|
|
502
|
-
export declare const INCLUDE_AUTO_FIELD_TYPES: string[];
|
|
503
|
-
export declare const AUTOMATION_CUSTOM_VALUES_FIELDS: string[];
|
|
504
|
-
export declare const NOT_INCLUDE_AUTO_CONDITIONS_FIELD_TYPES: string[];
|
|
505
|
-
export declare const CONDITION_EXPRESSIONS: {
|
|
506
|
-
[x: string]: {
|
|
507
|
-
label: string;
|
|
508
|
-
value: string;
|
|
509
|
-
}[];
|
|
510
|
-
Boolean: {
|
|
511
|
-
label: string;
|
|
512
|
-
value: string;
|
|
513
|
-
}[];
|
|
514
|
-
Multiple: {
|
|
515
|
-
label: string;
|
|
516
|
-
value: string;
|
|
517
|
-
}[];
|
|
518
|
-
Single: {
|
|
519
|
-
label: string;
|
|
520
|
-
value: string;
|
|
521
|
-
}[];
|
|
522
|
-
};
|
|
523
|
-
export declare const AUTOMATION_EMPTY_EXPS: string[];
|
|
524
|
-
export declare const AUTOMATION_USER_CONDITIONS_EX: {
|
|
525
|
-
label: string;
|
|
526
|
-
value: string;
|
|
527
|
-
}[];
|
|
528
|
-
export declare const INIT_NODE: {
|
|
529
|
-
name: string;
|
|
530
|
-
type: any;
|
|
531
|
-
view: string;
|
|
532
|
-
value: any;
|
|
533
|
-
children: any[];
|
|
534
|
-
path: any[];
|
|
535
|
-
};
|
|
536
|
-
export declare const BRANCH_ITEM_OPTIONS: {
|
|
537
|
-
label: string;
|
|
538
|
-
value: string;
|
|
539
|
-
desc: string;
|
|
540
|
-
}[];
|
|
541
|
-
export declare const UPDATE_BASIC_INFO = "update_basic_info";
|
|
542
|
-
export declare const UPDATE_CLICK_NODE = "update_click_node";
|
|
543
|
-
export declare const UPDATE_CLICK_NEW_NODE = "update_click_new_node";
|
|
544
|
-
export declare const UPDATE_CLICK_STORAGE_NODE = "update_click_storage_node";
|
|
545
|
-
export declare const UPDATE_IS_ABLE_CHANGE_NODE = "update_is_able_change_node";
|
|
546
|
-
export declare const UPDATE_STORAGE_NODE = "update_storage_node";
|
|
547
|
-
export declare const CHANGE_NODE = "change_node";
|
|
548
|
-
export declare const CLEAR_NODE = "clear_node";
|
|
549
|
-
export declare const CLEAR_STORAGE_NODE = "clear_storage_node";
|
|
550
|
-
export declare const UPDATE_MAIN_COMPONENT = "update_main_component";
|
|
551
|
-
export declare const EDIT_ACTION = "edit_action";
|
|
552
|
-
export declare const UPDATE_ERROR_NODE = "update_error_node";
|
|
553
|
-
export declare const CLICK_NODE_EVENT = "CLICK_NODE_EVENT";
|
|
554
|
-
export declare const SYSTEM_KEY: {
|
|
555
|
-
ITEM_TYPE: string;
|
|
556
|
-
WORKSPACE: string;
|
|
557
|
-
CREATED_BY: string;
|
|
558
|
-
UPDATED_BY: string;
|
|
559
|
-
STATUS: string;
|
|
560
|
-
Name: string;
|
|
561
|
-
};
|
|
562
|
-
export declare const SYSTEM_MAPPING: {
|
|
563
|
-
[x: string]: {
|
|
564
|
-
__type: string;
|
|
565
|
-
className: string;
|
|
566
|
-
};
|
|
567
|
-
};
|
|
568
|
-
export declare const TRIGGER_FIELDS_OPERATION_OPTIONS: {
|
|
569
|
-
label: string;
|
|
570
|
-
value: string;
|
|
571
|
-
}[];
|
|
572
|
-
export declare const AUTOMATE_CREATE_FIELDS_EXTRA: {
|
|
573
|
-
TRIGGER: string;
|
|
574
|
-
CURRENT: string;
|
|
575
|
-
};
|
|
576
|
-
export declare const WORKSPACE_EXTRA_OPTIONS: {
|
|
577
|
-
label: string;
|
|
578
|
-
value: string;
|
|
579
|
-
}[];
|
|
580
|
-
export declare const ITEM_TYPE_EXTRA_OPTIONS: {
|
|
581
|
-
name: string;
|
|
582
|
-
objectId: string;
|
|
583
|
-
}[];
|
|
584
|
-
export declare const VERSION_RELEASE_ITEM_ACTION: {
|
|
585
|
-
MOVE: string;
|
|
586
|
-
IGNORE: string;
|
|
587
|
-
};
|
|
588
|
-
export declare const RELEASED_COLOR = "var(--color-success-4)";
|
|
589
|
-
export declare const UNRELEASED_COLOR = "var(--color-brand-4)";
|
|
590
|
-
export declare const VERSION_STATUS_KEY: {
|
|
591
|
-
released: string;
|
|
592
|
-
unreleased: string;
|
|
593
|
-
archived: string;
|
|
594
|
-
};
|
|
595
|
-
export declare const VERSION_STATUS_LABEL: {
|
|
596
|
-
[x: string]: string;
|
|
597
|
-
};
|
|
598
|
-
export declare const BPMN_STATUS_OPERATIONS: {
|
|
599
|
-
label: string;
|
|
600
|
-
value: string;
|
|
601
|
-
}[];
|
|
602
|
-
export declare const ACTION_REMOVE_ITEM_EXTRA_OPTIONS: {
|
|
603
|
-
label: string;
|
|
604
|
-
value: string;
|
|
605
|
-
}[];
|
|
606
|
-
export declare const CLONE_TYPE_LIST: {
|
|
607
|
-
label: string;
|
|
608
|
-
value: string;
|
|
609
|
-
}[];
|
|
610
|
-
export declare const RELATE_OPTIONS: {
|
|
611
|
-
label: string;
|
|
612
|
-
value: string;
|
|
613
|
-
}[];
|
|
614
|
-
export declare const RELATE_EXPRESSION_OPTIONS: {
|
|
615
|
-
label: string;
|
|
616
|
-
value: string;
|
|
617
|
-
}[];
|
|
618
|
-
export declare const ACTOR_EXTRA_OPTIONS: {
|
|
619
|
-
label: string;
|
|
620
|
-
value: string;
|
|
621
|
-
username: string;
|
|
622
|
-
}[];
|
|
623
|
-
export declare const ALL_WORKSPACE = "@ALL";
|
|
624
|
-
export declare const WORKSPACE_ALL_EXTRA_OPTIONS: {
|
|
625
|
-
label: string;
|
|
626
|
-
value: string;
|
|
627
|
-
}[];
|
|
628
|
-
export declare const BASE_INFO_CLICK_NODE: {
|
|
629
|
-
view: string;
|
|
630
|
-
};
|
|
631
|
-
export declare const PICKER_TYPE: {
|
|
632
|
-
DATE: string;
|
|
633
|
-
WEEK: string;
|
|
634
|
-
MONTH: string;
|
|
635
|
-
QUARTER: string;
|
|
636
|
-
YEAR: string;
|
|
56
|
+
UserGroup: string;
|
|
57
|
+
HyperLink: string;
|
|
637
58
|
};
|
|
638
59
|
export declare const DATE_TYPE: Record<Uppercase<DateType>, DateType>;
|
|
639
60
|
export declare const DATE_FORMAT: {
|
|
@@ -645,467 +66,35 @@ export declare const DATE_FORMAT: {
|
|
|
645
66
|
};
|
|
646
67
|
export declare const DATE_TIME_FORMAT = "YYYY-MM-DD HH:mm";
|
|
647
68
|
export declare const DATE_TIME_FORMAT_SEC = "YYYY-MM-DD HH:mm:ss";
|
|
648
|
-
export declare
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
MINUTELY: string;
|
|
658
|
-
HOURLY: string;
|
|
659
|
-
DAILY: string;
|
|
660
|
-
WEEKLY: string;
|
|
661
|
-
MONTHLY: string;
|
|
662
|
-
};
|
|
663
|
-
export declare const DATE_FIELDS_OPTIONS: {
|
|
664
|
-
label: string;
|
|
665
|
-
value: string;
|
|
666
|
-
}[];
|
|
667
|
-
export declare const WEEKEND_OPTIONS: {
|
|
668
|
-
label: string;
|
|
669
|
-
value: string;
|
|
670
|
-
}[];
|
|
671
|
-
export declare const WEEK_ENUM: {
|
|
672
|
-
Sun: number;
|
|
673
|
-
Mon: number;
|
|
674
|
-
Tue: number;
|
|
675
|
-
Wed: number;
|
|
676
|
-
Thu: number;
|
|
677
|
-
Fri: number;
|
|
678
|
-
Sat: number;
|
|
679
|
-
};
|
|
680
|
-
export declare const INTERVAL_MONTH_OPTIONS_VALUE: {
|
|
681
|
-
FIRST_DAY: string;
|
|
682
|
-
LAST_DAY: string;
|
|
683
|
-
FIRST_WEEK: string;
|
|
684
|
-
LAST_WEEK: string;
|
|
685
|
-
DATE: string;
|
|
686
|
-
};
|
|
687
|
-
export declare const MONTH_OPTIONS: {
|
|
688
|
-
label: string;
|
|
689
|
-
value: string;
|
|
690
|
-
}[];
|
|
691
|
-
export declare const ALIASES: {
|
|
692
|
-
jan: number;
|
|
693
|
-
feb: number;
|
|
694
|
-
mar: number;
|
|
695
|
-
apr: number;
|
|
696
|
-
may: number;
|
|
697
|
-
jun: number;
|
|
698
|
-
jul: number;
|
|
699
|
-
aug: number;
|
|
700
|
-
sep: number;
|
|
701
|
-
oct: number;
|
|
702
|
-
nov: number;
|
|
703
|
-
dec: number;
|
|
704
|
-
sun: number;
|
|
705
|
-
mon: number;
|
|
706
|
-
tue: number;
|
|
707
|
-
wed: number;
|
|
708
|
-
thu: number;
|
|
709
|
-
fri: number;
|
|
710
|
-
sat: number;
|
|
711
|
-
};
|
|
712
|
-
export declare const TIME_UNITS: string[];
|
|
713
|
-
export declare const CONSTRAINTS: number[][];
|
|
714
|
-
export declare const LIST_LENGTH = 11;
|
|
715
|
-
export declare const AUTOMATIONLOG_TYPE: {
|
|
716
|
-
CREATE: string;
|
|
717
|
-
UPDATE: string;
|
|
718
|
-
ENABLE: string;
|
|
719
|
-
DISABLE: string;
|
|
720
|
-
DELETE: string;
|
|
721
|
-
};
|
|
722
|
-
export declare const filterExcludeMenuKeys: string[];
|
|
723
|
-
export declare const AUTOMATION_DEFAULT_FIELDS: string[];
|
|
724
|
-
export declare const AUTOMATION_DEFAULT_CLONE_FIELDS: string[];
|
|
725
|
-
export declare const maximumFileSize = 50;
|
|
726
|
-
export declare const AUTOMATION_USER_EXTRA_OPTIONS: {
|
|
727
|
-
label: string;
|
|
728
|
-
value: string;
|
|
729
|
-
username: string;
|
|
730
|
-
}[];
|
|
731
|
-
export declare const AUTO_CLONE_ITEM_EXTRA_FIELD_KEYS: string[];
|
|
732
|
-
export declare const COLUMN_NAME_WIDTH = 340;
|
|
733
|
-
export declare const COLUMN_DESCRIPTION_WIDTH = 340;
|
|
734
|
-
export declare const COLUMN_DEFAULT_WIDTH = 140;
|
|
735
|
-
export declare const AUTO_USER_FIELD_TYPES: string[];
|
|
736
|
-
export declare const ONE_DAY_MS: number;
|
|
737
|
-
export declare const SUPERADMIN_ROLE_NAME = "superAdmin";
|
|
738
|
-
export declare const USER_ROLE_NAME: {
|
|
739
|
-
superAdmin: {
|
|
740
|
-
name: string;
|
|
741
|
-
tag: string;
|
|
742
|
-
};
|
|
743
|
-
admin: {
|
|
744
|
-
name: string;
|
|
745
|
-
tag: string;
|
|
746
|
-
};
|
|
747
|
-
member: {
|
|
748
|
-
name: string;
|
|
749
|
-
tag: string;
|
|
750
|
-
};
|
|
751
|
-
};
|
|
752
|
-
export declare const AUTO_WEB_METHODS_ENUM: {
|
|
753
|
-
POST: string;
|
|
754
|
-
GET: string;
|
|
755
|
-
DELETE: string;
|
|
756
|
-
HEAD: string;
|
|
757
|
-
PATCH: string;
|
|
758
|
-
PUT: string;
|
|
759
|
-
};
|
|
760
|
-
export declare const AUTO_WEB_BODY: {
|
|
761
|
-
label: string;
|
|
762
|
-
value: string;
|
|
763
|
-
}[];
|
|
764
|
-
export declare const INIT_CHART_GROUP_VALUE: {
|
|
765
|
-
key: string;
|
|
766
|
-
name: string;
|
|
767
|
-
fieldType: string;
|
|
768
|
-
}[];
|
|
769
|
-
export declare const LAST_THIRTY_DAYS = "lastThirtyDays";
|
|
770
|
-
export declare const LAST_SEVEN_DAYS = "LastSevenDays";
|
|
771
|
-
export declare const THIS_WEEK = "thisWeek";
|
|
772
|
-
export declare const THIS_MONTH = "thisMonth";
|
|
773
|
-
export declare const CUSTOM_TIME = "customTime";
|
|
774
|
-
export declare const INIT_CHART_GROUP_LINE_VALUE: {
|
|
775
|
-
key: string;
|
|
776
|
-
name: string;
|
|
777
|
-
fieldType: string;
|
|
778
|
-
compute: string;
|
|
779
|
-
dates: any[];
|
|
780
|
-
}[];
|
|
781
|
-
export declare const INIT_CHART_GRID: {
|
|
782
|
-
w: number;
|
|
783
|
-
h: number;
|
|
784
|
-
maxW: number;
|
|
785
|
-
};
|
|
786
|
-
export declare const INIT_BASIC_CHART_OPTION: {
|
|
787
|
-
group: {
|
|
788
|
-
key: string;
|
|
789
|
-
name: string;
|
|
790
|
-
fieldType: string;
|
|
791
|
-
}[];
|
|
792
|
-
value: {
|
|
793
|
-
key: string;
|
|
794
|
-
fieldType: string;
|
|
795
|
-
name: string;
|
|
796
|
-
compute: string;
|
|
797
|
-
}[];
|
|
798
|
-
grid: {
|
|
799
|
-
w: number;
|
|
800
|
-
h: number;
|
|
801
|
-
maxW: number;
|
|
802
|
-
};
|
|
803
|
-
orderBy: {};
|
|
804
|
-
};
|
|
805
|
-
export declare const INIT_ITEM_STATISTICS_OPTION: {
|
|
806
|
-
group: {
|
|
807
|
-
key: string;
|
|
808
|
-
name: string;
|
|
809
|
-
fieldType: string;
|
|
810
|
-
}[];
|
|
811
|
-
value: {
|
|
812
|
-
key: string;
|
|
813
|
-
fieldType: string;
|
|
814
|
-
name: string;
|
|
815
|
-
compute: string;
|
|
816
|
-
}[];
|
|
817
|
-
grid: {
|
|
818
|
-
w: number;
|
|
819
|
-
h: number;
|
|
820
|
-
maxW: number;
|
|
821
|
-
};
|
|
822
|
-
orderBy: {};
|
|
823
|
-
};
|
|
824
|
-
export declare const INIT_HS_CHART: {
|
|
825
|
-
group: {
|
|
826
|
-
children: string;
|
|
827
|
-
component: string;
|
|
828
|
-
fieldid: string;
|
|
829
|
-
fieldtype: string;
|
|
830
|
-
key: string;
|
|
831
|
-
name: string;
|
|
832
|
-
value: string;
|
|
833
|
-
}[];
|
|
834
|
-
value: {
|
|
835
|
-
key: string;
|
|
836
|
-
fieldType: string;
|
|
837
|
-
name: string;
|
|
838
|
-
compute: string;
|
|
839
|
-
}[];
|
|
840
|
-
grid: {
|
|
841
|
-
w: number;
|
|
842
|
-
h: number;
|
|
843
|
-
maxW: number;
|
|
844
|
-
};
|
|
845
|
-
};
|
|
846
|
-
export declare const BASIC_PIE_CHART = "basic-pie-chart";
|
|
847
|
-
export declare const BASIC_BAR_CHART = "basic-bar-chart";
|
|
848
|
-
export declare const BASIC_LINE_CHART = "basic-line-chart";
|
|
849
|
-
export declare const BASIC_TABLE_CHART = "basic-table-chart";
|
|
850
|
-
export declare const BASIC_COUNT_CHART = "basic-count-chart";
|
|
851
|
-
export declare const BASIC_ITEM_LIST_CHART = "basic-item-list-chart";
|
|
852
|
-
export declare const BASIC_ITEM_STATISTICS_CHART = "basic-item-statistics-chart";
|
|
853
|
-
export declare const BASIC_ITEM_COUNT_CHART = "basic-item-count-chart";
|
|
854
|
-
export declare const BASIC_DEMAND_SPEED_CHART = "basic-demand-speed-chart";
|
|
855
|
-
export declare const HS_HEAP_BAR_CHART = "hs-heap-bar-chart";
|
|
856
|
-
export declare const INIT_CHART_OPTION: {
|
|
857
|
-
"basic-pie-chart": {
|
|
858
|
-
type: string;
|
|
859
|
-
grid: {
|
|
860
|
-
x: number;
|
|
861
|
-
y: number;
|
|
862
|
-
w: number;
|
|
863
|
-
h: number;
|
|
864
|
-
maxW: number;
|
|
865
|
-
};
|
|
866
|
-
group: {
|
|
867
|
-
key: string;
|
|
868
|
-
name: string;
|
|
869
|
-
fieldType: string;
|
|
870
|
-
}[];
|
|
871
|
-
value: {
|
|
872
|
-
key: string;
|
|
873
|
-
fieldType: string;
|
|
874
|
-
name: string;
|
|
875
|
-
compute: string;
|
|
876
|
-
}[];
|
|
877
|
-
orderBy: {};
|
|
878
|
-
};
|
|
879
|
-
"basic-bar-chart": {
|
|
880
|
-
group: {
|
|
881
|
-
key: string;
|
|
882
|
-
name: string;
|
|
883
|
-
fieldType: string;
|
|
884
|
-
}[];
|
|
885
|
-
type: string;
|
|
886
|
-
grid: {
|
|
887
|
-
x: number;
|
|
888
|
-
y: number;
|
|
889
|
-
w: number;
|
|
890
|
-
h: number;
|
|
891
|
-
maxW: number;
|
|
892
|
-
};
|
|
893
|
-
value: {
|
|
894
|
-
key: string;
|
|
895
|
-
fieldType: string;
|
|
896
|
-
name: string;
|
|
897
|
-
compute: string;
|
|
898
|
-
}[];
|
|
899
|
-
orderBy: {};
|
|
900
|
-
};
|
|
901
|
-
"basic-line-chart": {
|
|
902
|
-
type: string;
|
|
903
|
-
group: {
|
|
904
|
-
key: string;
|
|
905
|
-
name: string;
|
|
906
|
-
fieldType: string;
|
|
907
|
-
compute: string;
|
|
908
|
-
dates: any[];
|
|
909
|
-
}[];
|
|
910
|
-
grid: {
|
|
911
|
-
x: number;
|
|
912
|
-
y: number;
|
|
913
|
-
w: number;
|
|
914
|
-
h: number;
|
|
915
|
-
maxW: number;
|
|
916
|
-
};
|
|
917
|
-
value: {
|
|
918
|
-
key: string;
|
|
919
|
-
fieldType: string;
|
|
920
|
-
name: string;
|
|
921
|
-
compute: string;
|
|
922
|
-
}[];
|
|
923
|
-
orderBy: {};
|
|
924
|
-
};
|
|
925
|
-
"basic-count-chart": {
|
|
926
|
-
type: string;
|
|
927
|
-
precision: number;
|
|
928
|
-
unit: string;
|
|
929
|
-
grid: {
|
|
930
|
-
x: number;
|
|
931
|
-
y: number;
|
|
932
|
-
w: number;
|
|
933
|
-
h: number;
|
|
934
|
-
maxW: number;
|
|
935
|
-
};
|
|
936
|
-
};
|
|
937
|
-
"basic-item-list-chart": {
|
|
938
|
-
type: string;
|
|
939
|
-
pageSize: number;
|
|
940
|
-
columnKeys: string[];
|
|
941
|
-
grid: {
|
|
942
|
-
x: number;
|
|
943
|
-
y: number;
|
|
944
|
-
w: number;
|
|
945
|
-
h: number;
|
|
946
|
-
maxW: number;
|
|
947
|
-
};
|
|
948
|
-
};
|
|
949
|
-
"hs-heap-bar-chart": {
|
|
950
|
-
group: {
|
|
951
|
-
key: string;
|
|
952
|
-
name: string;
|
|
953
|
-
fieldType: string;
|
|
954
|
-
}[];
|
|
955
|
-
value: {
|
|
956
|
-
key: string;
|
|
957
|
-
name: string;
|
|
958
|
-
fieldType: string;
|
|
959
|
-
}[];
|
|
960
|
-
type: string;
|
|
961
|
-
grid: {
|
|
962
|
-
x: number;
|
|
963
|
-
y: number;
|
|
964
|
-
w: number;
|
|
965
|
-
h: number;
|
|
966
|
-
maxW: number;
|
|
967
|
-
};
|
|
968
|
-
};
|
|
969
|
-
"basic-item-statistics-chart": {
|
|
970
|
-
grid: {
|
|
971
|
-
x: number;
|
|
972
|
-
y: number;
|
|
973
|
-
w: number;
|
|
974
|
-
h: number;
|
|
975
|
-
maxW: number;
|
|
976
|
-
};
|
|
977
|
-
group: {
|
|
978
|
-
key: string;
|
|
979
|
-
name: string;
|
|
980
|
-
fieldType: string;
|
|
981
|
-
}[];
|
|
982
|
-
value: {
|
|
983
|
-
key: string;
|
|
984
|
-
fieldType: string;
|
|
985
|
-
name: string;
|
|
986
|
-
compute: string;
|
|
987
|
-
}[];
|
|
988
|
-
orderBy: {};
|
|
989
|
-
type: string;
|
|
990
|
-
pageSize: number;
|
|
991
|
-
};
|
|
992
|
-
"basic-item-count-chart": {
|
|
993
|
-
type: string;
|
|
994
|
-
precision: number;
|
|
995
|
-
grid: {
|
|
996
|
-
x: number;
|
|
997
|
-
y: number;
|
|
998
|
-
w: number;
|
|
999
|
-
h: number;
|
|
1000
|
-
maxW: number;
|
|
1001
|
-
};
|
|
69
|
+
export declare enum WorkflowStatusType {
|
|
70
|
+
Start = "Start",
|
|
71
|
+
InProgress = "InProgress",
|
|
72
|
+
Finished = "Finished"
|
|
73
|
+
}
|
|
74
|
+
export declare const WorkFlowStatusColor: {
|
|
75
|
+
Start: {
|
|
76
|
+
color: string;
|
|
77
|
+
bgColor: string;
|
|
1002
78
|
};
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
option: {
|
|
1007
|
-
type: string;
|
|
1008
|
-
grid: {
|
|
1009
|
-
x: number;
|
|
1010
|
-
y: number;
|
|
1011
|
-
w: number;
|
|
1012
|
-
h: number;
|
|
1013
|
-
maxW: number;
|
|
1014
|
-
};
|
|
1015
|
-
group: {
|
|
1016
|
-
key: string;
|
|
1017
|
-
name: string;
|
|
1018
|
-
fieldType: string;
|
|
1019
|
-
}[];
|
|
1020
|
-
value: {
|
|
1021
|
-
key: string;
|
|
1022
|
-
fieldType: string;
|
|
1023
|
-
name: string;
|
|
1024
|
-
compute: string;
|
|
1025
|
-
}[];
|
|
1026
|
-
orderBy: {};
|
|
79
|
+
InProgress: {
|
|
80
|
+
color: string;
|
|
81
|
+
bgColor: string;
|
|
1027
82
|
};
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
option: {
|
|
1032
|
-
type: string;
|
|
1033
|
-
cluster: {
|
|
1034
|
-
key: string;
|
|
1035
|
-
name: string;
|
|
1036
|
-
fieldType: string;
|
|
1037
|
-
}[];
|
|
1038
|
-
grid: {
|
|
1039
|
-
x: number;
|
|
1040
|
-
y: number;
|
|
1041
|
-
w: number;
|
|
1042
|
-
h: number;
|
|
1043
|
-
maxW: number;
|
|
1044
|
-
};
|
|
1045
|
-
group: {
|
|
1046
|
-
key: string;
|
|
1047
|
-
name: string;
|
|
1048
|
-
fieldType: string;
|
|
1049
|
-
}[];
|
|
1050
|
-
value: {
|
|
1051
|
-
key: string;
|
|
1052
|
-
fieldType: string;
|
|
1053
|
-
name: string;
|
|
1054
|
-
compute: string;
|
|
1055
|
-
}[];
|
|
1056
|
-
orderBy: {};
|
|
83
|
+
Finished: {
|
|
84
|
+
color: string;
|
|
85
|
+
bgColor: string;
|
|
1057
86
|
};
|
|
1058
|
-
view: string;
|
|
1059
|
-
})[];
|
|
1060
|
-
export declare const CHART_OPTION_UNSAVE = "\u60A8\u6709\u672A\u4FDD\u5B58\u7684\u56FE\u8868\u53C2\u6570\u914D\u7F6E\uFF0C\u8BF7\u786E\u8BA4\u662F\u5426\u4FDD\u5B58\u540E\u518D\u9000\u51FA\uFF1F";
|
|
1061
|
-
export declare const TABLE_HEADER_HEIGHT = 136;
|
|
1062
|
-
export declare const TABLE_FOOTER_HEIGHT = 48;
|
|
1063
|
-
export declare const TABLE_HEADER_CELL_HEIGHT = 41;
|
|
1064
|
-
export declare const TABLE_BODY_CELL_HEIGHT = 41;
|
|
1065
|
-
export declare const ITEM_LINK_TYPE_VALUE: {
|
|
1066
|
-
SOME: string;
|
|
1067
|
-
ALL: string;
|
|
1068
|
-
ONE_TO_MANY: string;
|
|
1069
|
-
MANY_TO_MANY: string;
|
|
1070
|
-
};
|
|
1071
|
-
export declare const FIELD_CONTAINERS_PAGE: {
|
|
1072
|
-
DETAIL: string;
|
|
1073
|
-
MODAL: string;
|
|
1074
|
-
DRAWER: string;
|
|
1075
|
-
FILTER: string;
|
|
1076
|
-
SCREEN: string;
|
|
1077
87
|
};
|
|
1078
|
-
export declare const
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
export declare const MEMBER_TABLE_HEIGHT_DIFF = 160;
|
|
1091
|
-
export declare const MEMBER_ROLE_NAME_LENGTH_MAX = 10;
|
|
1092
|
-
export declare const MEMBER_ROLE_NAME_DESCRIPTION_MAX = 200;
|
|
1093
|
-
export declare const ROUTER_CHANGE_EVENT_TYPE = "app-route-change";
|
|
1094
|
-
export declare const PLUGIN_MODULE_KEY: {
|
|
1095
|
-
TENANT: string;
|
|
1096
|
-
SETTINGS: string;
|
|
1097
|
-
WORKSPACE: string;
|
|
1098
|
-
All: string;
|
|
1099
|
-
};
|
|
1100
|
-
export declare const ONE_HOURS = 3600000;
|
|
1101
|
-
export declare const PROXIMA_CACHE_TABLE_COLUMN_WIDTH_KEY = "proxima-cache-table-column-width-key";
|
|
1102
|
-
export declare const ONCHANGE_TYPE: {
|
|
1103
|
-
CURRENT_USER: string;
|
|
88
|
+
export declare const CustomFieldComponentTypes: {
|
|
89
|
+
Date: string;
|
|
90
|
+
Dropdown: string;
|
|
91
|
+
User: string;
|
|
92
|
+
Assignee: string;
|
|
93
|
+
Number: string;
|
|
94
|
+
LongText: string;
|
|
95
|
+
Text: string;
|
|
96
|
+
File: string;
|
|
97
|
+
Reporter: string;
|
|
98
|
+
Radio: string;
|
|
99
|
+
Checkbox: string;
|
|
1104
100
|
};
|
|
1105
|
-
export declare enum RemoveType {
|
|
1106
|
-
Reset = "reset",
|
|
1107
|
-
Remove = "remove"
|
|
1108
|
-
}
|
|
1109
|
-
export declare const MAX_NAME_LENGTH = 50;
|
|
1110
|
-
export declare const DEFAULT_WORKSPACE_ICON = "/icons/ProductIcon.svg";
|
|
1111
|
-
export declare const DEFAULT_BOARD_ICON = "/icons/Panel1";
|