@giteeteam/apps-team-components 0.4.1 → 0.4.2
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/dist/cells/actors/BaseField.d.ts +17 -0
- package/dist/cells/actors/index.d.ts +4 -0
- package/dist/cells/annex/index.d.ts +7 -0
- package/dist/cells/assignee/index.d.ts +23 -0
- package/dist/cells/bind-workspace/BaseField.d.ts +15 -0
- package/dist/cells/bind-workspace/index.d.ts +12 -0
- package/dist/cells/board/index.d.ts +22 -0
- package/dist/cells/card-type/index.d.ts +6 -0
- package/dist/cells/checkbox/BaseField.d.ts +14 -0
- package/dist/cells/created-at/index.d.ts +7 -0
- package/dist/cells/created-by/index.d.ts +9 -0
- package/dist/cells/data-quote/index.d.ts +8 -0
- package/dist/cells/data-quote/util.d.ts +9 -0
- package/dist/cells/date/BaseField.d.ts +21 -0
- package/dist/cells/date/index.d.ts +6 -0
- package/dist/cells/date-range/BaseField.d.ts +19 -0
- package/dist/cells/date-range/index.d.ts +6 -0
- package/dist/cells/dropdown/BaseField.d.ts +30 -0
- package/dist/cells/dropdown/index.d.ts +22 -0
- package/dist/cells/editor/BaseField.d.ts +29 -0
- package/dist/cells/editor/Field.d.ts +16 -0
- package/dist/cells/editor/config/autoformatRules.d.ts +3 -0
- package/dist/cells/editor/config/index.d.ts +5 -0
- package/dist/cells/editor/config/pluginOptions.d.ts +10 -0
- package/dist/cells/editor/config/withDeserializeHTML.d.ts +64 -0
- package/dist/cells/editor/config/withStyledDraggables.d.ts +2 -0
- package/dist/cells/editor/config/withStyledPlaceHolders.d.ts +2 -0
- package/dist/cells/editor/elements/ImageElement.d.ts +3 -0
- package/dist/cells/editor/elements/MentionElement.d.ts +3 -0
- package/dist/cells/editor/elements/index.d.ts +2 -0
- package/dist/cells/editor/hooks.d.ts +11 -0
- package/dist/cells/editor/index.d.ts +15 -0
- package/dist/cells/editor/plugins/Fullscreen.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarButton.d.ts +3 -0
- package/dist/cells/editor/plugins/ToolbarFont.d.ts +12 -0
- package/dist/cells/editor/plugins/ToolbarFontColor.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarHistory.d.ts +7 -0
- package/dist/cells/editor/plugins/ToolbarLink.d.ts +4 -0
- package/dist/cells/editor/plugins/ToolbarTable.d.ts +4 -0
- package/dist/cells/editor/plugins/ToolbarUpload.d.ts +4 -0
- package/dist/cells/editor/plugins/Toolbars.d.ts +11 -0
- package/dist/cells/editor/plugins/font-bg-color/createFontBgColorPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-bg-color/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-bg-color/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-bg-color/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-color/createFontColorPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-color/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-color/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-color/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-family/createFontFamilyPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-family/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-family/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-family/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-line-height/createFontLineHeightPlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-line-height/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-line-height/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-line-height/index.d.ts +3 -0
- package/dist/cells/editor/plugins/font-size/createFontSizePlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/font-size/defaults.d.ts +2 -0
- package/dist/cells/editor/plugins/font-size/getFontDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/font-size/index.d.ts +3 -0
- package/dist/cells/editor/plugins/image/createImagePlugin.d.ts +3 -0
- package/dist/cells/editor/plugins/image/getImageDeserialize.d.ts +2 -0
- package/dist/cells/editor/plugins/image/index.d.ts +3 -0
- package/dist/cells/editor/plugins/image/insertImage.d.ts +2 -0
- package/dist/cells/editor/plugins/image/withImageUpload.d.ts +3 -0
- package/dist/cells/editor/plugins/index.d.ts +6 -0
- package/dist/cells/editor/utils.d.ts +13 -0
- package/dist/cells/file/BaseField.d.ts +15 -0
- package/dist/cells/file/UploadFile.d.ts +19 -0
- package/dist/cells/file/index.d.ts +13 -0
- package/dist/cells/formula/BaseField.d.ts +10 -0
- package/dist/cells/formula/index.d.ts +9 -0
- package/dist/cells/item-group/index.d.ts +22 -0
- package/dist/cells/item-type/index.d.ts +23 -0
- package/dist/cells/key/index.d.ts +6 -0
- package/dist/cells/long-text/BaseField.d.ts +17 -0
- package/dist/cells/long-text/index.d.ts +15 -0
- package/dist/cells/name/index.d.ts +14 -0
- package/dist/cells/number/BaseField.d.ts +24 -0
- package/dist/cells/number/index.d.ts +23 -0
- package/dist/cells/priority/index.d.ts +16 -0
- package/dist/cells/radio/BaseField.d.ts +14 -0
- package/dist/cells/script/BaseField.d.ts +8 -0
- package/dist/cells/script/index.d.ts +7 -0
- package/dist/cells/security-level/BaseField.d.ts +19 -0
- package/dist/cells/sprint/index.d.ts +22 -0
- package/dist/cells/status/Field.d.ts +26 -0
- package/dist/cells/status/Transition.d.ts +15 -0
- package/dist/cells/status/TransitionButton.d.ts +27 -0
- package/dist/cells/status/TransitionPanel.d.ts +15 -0
- package/dist/cells/status/View.d.ts +10 -0
- package/dist/cells/status/hooks.d.ts +3 -0
- package/dist/cells/status/index.d.ts +4 -0
- package/dist/cells/story-point/index.d.ts +23 -0
- package/dist/cells/tableCellMapping.d.ts +23 -0
- package/dist/cells/tag/BaseField.d.ts +22 -0
- package/dist/cells/tag/tag-multiple-select/PopoverPanel.d.ts +4 -0
- package/dist/cells/tag/tag-multiple-select/TagPopoverSelect.d.ts +4 -0
- package/dist/cells/text/BaseField.d.ts +16 -0
- package/dist/cells/text/index.d.ts +16 -0
- package/dist/cells/time/BaseField.d.ts +15 -0
- package/dist/cells/time/index.d.ts +6 -0
- package/dist/cells/time-range/BaseField.d.ts +20 -0
- package/dist/cells/time-range/index.d.ts +7 -0
- package/dist/cells/tree/BaseField.d.ts +15 -0
- package/dist/cells/tree/utils.d.ts +2 -0
- package/dist/cells/updated-at/index.d.ts +7 -0
- package/dist/cells/updated-by/index.d.ts +9 -0
- package/dist/cells/user/BaseField.d.ts +27 -0
- package/dist/cells/user/index.d.ts +21 -0
- package/dist/cells/version/index.d.ts +22 -0
- package/dist/cells/workspace/index.d.ts +22 -0
- package/dist/common/EmptyField.d.ts +6 -0
- package/dist/common/FieldErrorBoundary.d.ts +14 -0
- package/dist/common/OverflowTooltip.d.ts +23 -0
- package/dist/common/UploadFile.d.ts +19 -0
- package/dist/common/base-table/ChildCardInlineCreator.d.ts +9 -0
- package/dist/common/base-table/index.d.ts +16 -0
- package/dist/common/columns-settings/ColumnsSettings.d.ts +5 -0
- package/dist/common/columns-settings/ColumnsSettingsItem.d.ts +4 -0
- package/dist/common/data-source/context.d.ts +2 -0
- package/dist/common/filters/filter-query/FilterPanel.d.ts +4 -0
- package/dist/common/filters/filter-query/IqlExpression.d.ts +6 -0
- package/dist/common/filters/filter-query/QuerySelector.d.ts +4 -0
- package/dist/common/filters/filter-query/utils.d.ts +18 -0
- package/dist/common/form-field/FormField.d.ts +15 -0
- package/dist/common/form-field/pure-field/FieldLayout.d.ts +5 -0
- package/dist/common/form-field/pure-field/FormikEnhance.d.ts +1 -0
- package/dist/common/form-field/pure-field/PureField.d.ts +8 -0
- package/dist/common/formik-field-touched/FormikFieldTouched.d.ts +2 -0
- package/dist/common/index.d.ts +16 -0
- package/dist/common/item/IssueActionDropdown.d.ts +18 -0
- package/dist/common/item-icon/ItemIcon.d.ts +8 -0
- package/dist/common/plugin/PluginComponents.d.ts +17 -0
- package/dist/common/plugin/PluginErrorContainer.d.ts +15 -0
- package/dist/common/plugin/PluginLoadComponent.d.ts +27 -0
- package/dist/common/search-select/PopoverPanel.d.ts +4 -0
- package/dist/common/search-select/SearchPopoverSelect.d.ts +4 -0
- package/dist/common/status-selector/index.d.ts +9 -0
- package/dist/common/structure/hooks.d.ts +30 -0
- package/dist/common/structure/index.d.ts +11 -0
- package/dist/common/structure/table-components/TableActionMenu.d.ts +18 -0
- package/dist/common/structure/table-components/TableColumnSettings.d.ts +13 -0
- package/dist/common/structure/table-components/TableEmpty.d.ts +6 -0
- package/dist/common/structure/table-components/TableTitleCell.d.ts +16 -0
- package/dist/common/structure/table-components/index.d.ts +11 -0
- package/dist/common/structure/table-components/tableCellMapping.d.ts +23 -0
- package/dist/common/structure/table-components/useCacheColumns.d.ts +13 -0
- package/dist/common/structure/table-components/useTableColumns.d.ts +22 -0
- package/dist/common/structure/table-components/useTableMenu.d.ts +42 -0
- package/dist/common/structure-table/Table.d.ts +4 -0
- package/dist/common/structure-table/components/Action.d.ts +15 -0
- package/dist/common/structure-table/components/Collapse.d.ts +12 -0
- package/dist/common/structure-table/components/CollapseIcon.d.ts +6 -0
- package/dist/common/structure-table/components/DraggableRow.d.ts +5 -0
- package/dist/common/structure-table/components/Handle.d.ts +3 -0
- package/dist/common/structure-table/components/Row.d.ts +25 -0
- package/dist/common/structure-table/components/index.d.ts +6 -0
- package/dist/common/structure-table/index.d.ts +1 -0
- package/dist/common/user-field/UserAvatar.d.ts +13 -0
- package/dist/common/user-field/UserField.d.ts +15 -0
- package/dist/common/user-field/index.d.ts +2 -0
- package/dist/common/utils.d.ts +41 -0
- package/dist/common/workflow/View.d.ts +11 -0
- package/dist/common/workflow/config.d.ts +87 -0
- package/dist/common/workflow/nodes/StartNode.d.ts +10 -0
- package/dist/common/workflow/nodes/TaskNode.d.ts +12 -0
- package/dist/common/workflow/nodes/index.d.ts +2 -0
- package/dist/fields/base-component/BaseLabel.d.ts +10 -0
- package/dist/fields/base-component/utils.d.ts +4 -0
- package/dist/fields/data-quote/util.d.ts +9 -0
- package/dist/fields/item-activity/BaseField.d.ts +7 -0
- package/dist/fields/item-activity/Comment.d.ts +7 -0
- package/dist/fields/item-level/hooks.d.ts +15 -0
- package/dist/fields/item-level/utils.d.ts +25 -0
- package/dist/icons/index.d.ts +48 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +15 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/ParentMessage.d.ts +7 -0
- package/dist/lib/apis/filter/iql.d.ts +6 -0
- package/dist/lib/apis/forest.d.ts +2 -0
- package/dist/lib/apis/groups/index.d.ts +21 -0
- package/dist/lib/apis/roles/index.d.ts +11 -0
- package/dist/lib/apis/screen/fields.d.ts +21 -0
- package/dist/lib/apis/screen/fieldsBehavior.d.ts +10 -0
- package/dist/lib/apis/screen/index.d.ts +20 -0
- package/dist/lib/contexts/LibraryProvider.d.ts +18 -0
- package/dist/lib/contexts/currentUserAndRoles.d.ts +15 -0
- package/dist/lib/contexts/index.d.ts +7 -0
- package/dist/lib/contexts/token.d.ts +13 -0
- package/dist/lib/contexts/users.d.ts +11 -0
- package/dist/lib/contexts/values.d.ts +6 -0
- package/dist/lib/customFields/hooks.d.ts +24 -0
- package/dist/lib/dataQuoteStore.d.ts +2 -0
- package/dist/lib/date.d.ts +19 -0
- package/dist/lib/dayjs.d.ts +4 -0
- package/dist/lib/env.d.ts +2 -0
- package/dist/lib/error/index.d.ts +2 -0
- package/dist/lib/error/log.d.ts +13 -0
- package/dist/lib/error/utils.d.ts +13 -0
- package/dist/lib/events.d.ts +11 -0
- package/dist/lib/fetch.d.ts +50 -0
- package/dist/lib/filters/filter-query/utils.d.ts +18 -0
- package/dist/lib/forest.d.ts +60 -0
- package/dist/lib/global.d.ts +1114 -0
- package/dist/lib/hooks/index.d.ts +13 -0
- package/dist/lib/hooks/useCurrentUser.d.ts +3 -0
- package/dist/lib/hooks/useCustomFields.d.ts +9 -0
- package/dist/lib/hooks/useDataQuoteStore.d.ts +7 -0
- package/dist/lib/hooks/useFieldTypes.d.ts +9 -0
- package/dist/lib/hooks/useFields.d.ts +12 -0
- package/dist/lib/hooks/useI18n.d.ts +1 -0
- package/dist/lib/hooks/useItemsInfinite.d.ts +48 -0
- package/dist/lib/hooks/useRemoteComponents.d.ts +25 -0
- package/dist/lib/hooks/useTenants.d.ts +7 -0
- package/dist/lib/hooks/useToken.d.ts +3 -0
- package/dist/lib/hooks/useUsers.d.ts +8 -0
- package/dist/lib/hooks/useWatchItemUpdate.d.ts +32 -0
- package/dist/lib/hooks/useWorkspaces.d.ts +8 -0
- package/dist/lib/i18n.d.ts +24 -0
- package/dist/lib/iql.d.ts +31 -0
- package/dist/lib/item/hooks.d.ts +31 -0
- package/dist/lib/item/utils.d.ts +34 -0
- package/dist/lib/kanban/hooks.d.ts +8 -0
- package/dist/lib/locales.d.ts +4 -0
- package/dist/lib/models.d.ts +59 -0
- package/dist/lib/parse.d.ts +3 -0
- package/dist/lib/path.d.ts +4 -0
- package/dist/lib/proxima-sdk/components/index.d.ts +2 -0
- package/dist/lib/proxima-sdk/hooks/index.d.ts +4 -0
- package/dist/lib/proxima-sdk/index.d.ts +5 -0
- package/dist/lib/proxima-sdk/lib/index.d.ts +9 -0
- package/dist/lib/proxima-sdk/schema/index.d.ts +2 -0
- package/dist/lib/regExp.d.ts +11 -0
- package/dist/lib/storage.d.ts +7 -0
- package/dist/lib/store.d.ts +14 -0
- package/dist/lib/types/index.d.ts +3 -0
- package/dist/lib/types/parse-models.d.ts +6 -0
- package/dist/lib/useInitialRecoilState.d.ts +3 -0
- package/dist/lib/useParseQuery.d.ts +53 -0
- package/dist/lib/usePluginManifest.d.ts +33 -0
- package/dist/lib/useUser.d.ts +62 -0
- package/dist/lib/useWatchApp.d.ts +4 -0
- package/dist/lib/useWorkspace.d.ts +1 -0
- package/dist/lib/users.d.ts +3 -0
- package/dist/lib/workflow.d.ts +123 -0
- package/dist/lib/workspace.d.ts +2 -0
- package/dist/locales/en/en_US.d.ts +45 -0
- package/dist/locales/en/package/application.d.ts +73 -0
- package/dist/locales/en/package/automation.d.ts +303 -0
- package/dist/locales/en/package/date.d.ts +54 -0
- package/dist/locales/en/package/fields.d.ts +409 -0
- package/dist/locales/en/package/filters.d.ts +89 -0
- package/dist/locales/en/package/formField.d.ts +157 -0
- package/dist/locales/en/package/global.d.ts +318 -0
- package/dist/locales/en/package/item.d.ts +489 -0
- package/dist/locales/en/package/itemTypes.d.ts +154 -0
- package/dist/locales/en/package/lib.d.ts +127 -0
- package/dist/locales/en/package/message.d.ts +251 -0
- package/dist/locales/en/package/pages.d.ts +67 -0
- package/dist/locales/en/package/permission.d.ts +471 -0
- package/dist/locales/en/package/placeholder.d.ts +179 -0
- package/dist/locales/en/package/plugin.d.ts +20 -0
- package/dist/locales/en/package/report.d.ts +150 -0
- package/dist/locales/en/package/reportPlugin.d.ts +183 -0
- package/dist/locales/en/package/screen.d.ts +121 -0
- package/dist/locales/en/package/sections.d.ts +60 -0
- package/dist/locales/en/package/settings.d.ts +194 -0
- package/dist/locales/en/package/sprint.d.ts +52 -0
- package/dist/locales/en/package/users.d.ts +58 -0
- package/dist/locales/en/package/validate.d.ts +138 -0
- package/dist/locales/en/package/views.d.ts +383 -0
- package/dist/locales/en/package/workflow.d.ts +245 -0
- package/dist/locales/en/package/workspace.d.ts +343 -0
- package/dist/locales/zh/package/application.d.ts +73 -0
- package/dist/locales/zh/package/automation.d.ts +303 -0
- package/dist/locales/zh/package/date.d.ts +54 -0
- package/dist/locales/zh/package/fields.d.ts +409 -0
- package/dist/locales/zh/package/filters.d.ts +89 -0
- package/dist/locales/zh/package/formField.d.ts +162 -0
- package/dist/locales/zh/package/global.d.ts +318 -0
- package/dist/locales/zh/package/item.d.ts +489 -0
- package/dist/locales/zh/package/itemTypes.d.ts +153 -0
- package/dist/locales/zh/package/lib.d.ts +127 -0
- package/dist/locales/zh/package/message.d.ts +251 -0
- package/dist/locales/zh/package/pages.d.ts +67 -0
- package/dist/locales/zh/package/permission.d.ts +470 -0
- package/dist/locales/zh/package/placeholder.d.ts +172 -0
- package/dist/locales/zh/package/plugin.d.ts +20 -0
- package/dist/locales/zh/package/report.d.ts +150 -0
- package/dist/locales/zh/package/reportPlugin.d.ts +183 -0
- package/dist/locales/zh/package/screen.d.ts +116 -0
- package/dist/locales/zh/package/sections.d.ts +63 -0
- package/dist/locales/zh/package/settings.d.ts +192 -0
- package/dist/locales/zh/package/sprint.d.ts +52 -0
- package/dist/locales/zh/package/users.d.ts +58 -0
- package/dist/locales/zh/package/validate.d.ts +138 -0
- package/dist/locales/zh/package/views.d.ts +380 -0
- package/dist/locales/zh/package/workflow.d.ts +245 -0
- package/dist/locales/zh/package/workspace.d.ts +344 -0
- package/dist/locales/zh/zh_CN.d.ts +46 -0
- package/dist/osui/index.d.ts +8 -0
- package/package.json +3 -2
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
export namespace report {
|
|
2
|
+
namespace _default {
|
|
3
|
+
const title: string;
|
|
4
|
+
}
|
|
5
|
+
export { _default as default };
|
|
6
|
+
}
|
|
7
|
+
export namespace chat {
|
|
8
|
+
namespace hooks {
|
|
9
|
+
const workspaceName: string;
|
|
10
|
+
}
|
|
11
|
+
namespace ChartCreateModel {
|
|
12
|
+
export const UNNAMED: string;
|
|
13
|
+
namespace _default_1 {
|
|
14
|
+
const placeholder: string;
|
|
15
|
+
}
|
|
16
|
+
export { _default_1 as default };
|
|
17
|
+
export namespace modal {
|
|
18
|
+
const title_1: string;
|
|
19
|
+
export { title_1 as title };
|
|
20
|
+
export const name: string;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
namespace ChartDetail {
|
|
24
|
+
namespace _default_2 {
|
|
25
|
+
const messageChartOptionUnselect: string;
|
|
26
|
+
const messageEmptyName: string;
|
|
27
|
+
const messageEmptyExport: string;
|
|
28
|
+
}
|
|
29
|
+
export { _default_2 as default };
|
|
30
|
+
const UNNAMED_1: string;
|
|
31
|
+
export { UNNAMED_1 as UNNAMED };
|
|
32
|
+
export namespace modal_1 {
|
|
33
|
+
const cancelText: string;
|
|
34
|
+
const okText: string;
|
|
35
|
+
}
|
|
36
|
+
export { modal_1 as modal };
|
|
37
|
+
export namespace Drawer {
|
|
38
|
+
const create: string;
|
|
39
|
+
const save: string;
|
|
40
|
+
const errorText: string;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
namespace ChartGroupModal {
|
|
44
|
+
const _default_3: {};
|
|
45
|
+
export { _default_3 as default };
|
|
46
|
+
const title_2: string;
|
|
47
|
+
export { title_2 as title };
|
|
48
|
+
const messageEmptyName_1: string;
|
|
49
|
+
export { messageEmptyName_1 as messageEmptyName };
|
|
50
|
+
export const messageEmptyUser: string;
|
|
51
|
+
export const placeholderUserGroup: string;
|
|
52
|
+
export const placeholderUser: string;
|
|
53
|
+
export const placeholderTitle: string;
|
|
54
|
+
export const publicTip: string;
|
|
55
|
+
export const accessView: string;
|
|
56
|
+
export const accessEdit: string;
|
|
57
|
+
export const copy: string;
|
|
58
|
+
}
|
|
59
|
+
namespace ChartList {
|
|
60
|
+
export const messageAddChartGroup: string;
|
|
61
|
+
export const messageCancelCollect: string;
|
|
62
|
+
export const messageCollect: string;
|
|
63
|
+
export namespace modal_2 {
|
|
64
|
+
const title_3: string;
|
|
65
|
+
export { title_3 as title };
|
|
66
|
+
export const content: string;
|
|
67
|
+
export namespace _delete {
|
|
68
|
+
const title_4: string;
|
|
69
|
+
export { title_4 as title };
|
|
70
|
+
const content_1: string;
|
|
71
|
+
export { content_1 as content };
|
|
72
|
+
}
|
|
73
|
+
export { _delete as delete };
|
|
74
|
+
}
|
|
75
|
+
export { modal_2 as modal };
|
|
76
|
+
export const addDashboard: string;
|
|
77
|
+
export namespace OverflowTooltip {
|
|
78
|
+
const name_1: string;
|
|
79
|
+
export { name_1 as name };
|
|
80
|
+
}
|
|
81
|
+
export const AddChart: string;
|
|
82
|
+
export const managerChartSave: string;
|
|
83
|
+
export const managerChartManage: string;
|
|
84
|
+
}
|
|
85
|
+
namespace ChartModal {
|
|
86
|
+
namespace _default_4 {
|
|
87
|
+
export const message: string;
|
|
88
|
+
export namespace modal_3 {
|
|
89
|
+
const title_5: string;
|
|
90
|
+
export { title_5 as title };
|
|
91
|
+
}
|
|
92
|
+
export { modal_3 as modal };
|
|
93
|
+
}
|
|
94
|
+
export { _default_4 as default };
|
|
95
|
+
}
|
|
96
|
+
namespace ChartView {
|
|
97
|
+
namespace _default_5 {
|
|
98
|
+
const message_1: string;
|
|
99
|
+
export { message_1 as message };
|
|
100
|
+
}
|
|
101
|
+
export { _default_5 as default };
|
|
102
|
+
export namespace modal_4 {
|
|
103
|
+
const title_6: string;
|
|
104
|
+
export { title_6 as title };
|
|
105
|
+
const content_2: string;
|
|
106
|
+
export { content_2 as content };
|
|
107
|
+
}
|
|
108
|
+
export { modal_4 as modal };
|
|
109
|
+
export const highlight: string;
|
|
110
|
+
}
|
|
111
|
+
namespace DropdownInput {
|
|
112
|
+
namespace _default_6 {
|
|
113
|
+
const subMenuName: string;
|
|
114
|
+
}
|
|
115
|
+
export { _default_6 as default };
|
|
116
|
+
}
|
|
117
|
+
namespace FilterPanel {
|
|
118
|
+
namespace _default_7 {
|
|
119
|
+
const panelTitleIQL: string;
|
|
120
|
+
const panelTitleCondition: string;
|
|
121
|
+
const changeBtnTextCondition: string;
|
|
122
|
+
const changeBtnTextIQL: string;
|
|
123
|
+
const change: string;
|
|
124
|
+
const query: string;
|
|
125
|
+
}
|
|
126
|
+
export { _default_7 as default };
|
|
127
|
+
export namespace Tooltip {
|
|
128
|
+
const title_7: string;
|
|
129
|
+
export { title_7 as title };
|
|
130
|
+
}
|
|
131
|
+
export const addFilterText: string;
|
|
132
|
+
}
|
|
133
|
+
const FilterQuery: {};
|
|
134
|
+
namespace utils {
|
|
135
|
+
namespace _default_8 {
|
|
136
|
+
const messageRefreshPage: string;
|
|
137
|
+
const messageConditionSearch: string;
|
|
138
|
+
const messageSearchSave: string;
|
|
139
|
+
const messageInvalidTarget: string;
|
|
140
|
+
const messageEmptyData: string;
|
|
141
|
+
}
|
|
142
|
+
export { _default_8 as default };
|
|
143
|
+
export const defaultDashboard: string;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
declare namespace _default {
|
|
147
|
+
export { report };
|
|
148
|
+
export { chat };
|
|
149
|
+
}
|
|
150
|
+
export default _default;
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
namespace common {
|
|
3
|
+
namespace option {
|
|
4
|
+
const title: string;
|
|
5
|
+
const reset: string;
|
|
6
|
+
const type: string;
|
|
7
|
+
const xAxis: string;
|
|
8
|
+
const xAxisPlaceholder: string;
|
|
9
|
+
const yAxis: string;
|
|
10
|
+
const yAxisPlaceholder: string;
|
|
11
|
+
}
|
|
12
|
+
namespace view {
|
|
13
|
+
const noData: string;
|
|
14
|
+
const limitData: string;
|
|
15
|
+
}
|
|
16
|
+
namespace filter {
|
|
17
|
+
const title_1: string;
|
|
18
|
+
export { title_1 as title };
|
|
19
|
+
const reset_1: string;
|
|
20
|
+
export { reset_1 as reset };
|
|
21
|
+
export const subTitle: string;
|
|
22
|
+
export const switchIQL: string;
|
|
23
|
+
export const addConstraint: string;
|
|
24
|
+
}
|
|
25
|
+
const submit: string;
|
|
26
|
+
namespace pagination {
|
|
27
|
+
const total: string;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
namespace basicCountChart {
|
|
31
|
+
export namespace option_1 {
|
|
32
|
+
const target: string;
|
|
33
|
+
const targetEdit: string;
|
|
34
|
+
const targetDelete: string;
|
|
35
|
+
const targetAdd: string;
|
|
36
|
+
const formula: string;
|
|
37
|
+
const formulaPlaceholder: string;
|
|
38
|
+
const precision: string;
|
|
39
|
+
const precisionPlaceholder: string;
|
|
40
|
+
const unit: string;
|
|
41
|
+
const unitLeft: string;
|
|
42
|
+
const unitRight: string;
|
|
43
|
+
const showDetail: string;
|
|
44
|
+
const percentages: string;
|
|
45
|
+
namespace errorMsg {
|
|
46
|
+
const targetEmpty: string;
|
|
47
|
+
const targetDuplicate: string;
|
|
48
|
+
const formulaInvalid: string;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
export { option_1 as option };
|
|
52
|
+
export namespace modal {
|
|
53
|
+
const targetName: string;
|
|
54
|
+
const targetValue: string;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
namespace basicDemandSpeedChart {
|
|
58
|
+
export namespace option_2 {
|
|
59
|
+
const pageSize: string;
|
|
60
|
+
const pageSizePlaceholder: string;
|
|
61
|
+
const columnsList: string;
|
|
62
|
+
}
|
|
63
|
+
export { option_2 as option };
|
|
64
|
+
}
|
|
65
|
+
namespace basicItemCountChart {
|
|
66
|
+
export namespace view_1 {
|
|
67
|
+
const tooltip: string;
|
|
68
|
+
}
|
|
69
|
+
export { view_1 as view };
|
|
70
|
+
}
|
|
71
|
+
namespace basicItemStatisticsChart {
|
|
72
|
+
export namespace option_3 {
|
|
73
|
+
const xAxis_1: string;
|
|
74
|
+
export { xAxis_1 as xAxis };
|
|
75
|
+
const xAxisPlaceholder_1: string;
|
|
76
|
+
export { xAxisPlaceholder_1 as xAxisPlaceholder };
|
|
77
|
+
const pageSize_1: string;
|
|
78
|
+
export { pageSize_1 as pageSize };
|
|
79
|
+
const pageSizePlaceholder_1: string;
|
|
80
|
+
export { pageSizePlaceholder_1 as pageSizePlaceholder };
|
|
81
|
+
export const sort: string;
|
|
82
|
+
export const sortPlaceholder: string;
|
|
83
|
+
export const sortASC: string;
|
|
84
|
+
export const sortDESC: string;
|
|
85
|
+
}
|
|
86
|
+
export { option_3 as option };
|
|
87
|
+
}
|
|
88
|
+
namespace basicLineChart {
|
|
89
|
+
export namespace option_4 {
|
|
90
|
+
const xAxisPlaceholder_2: string;
|
|
91
|
+
export { xAxisPlaceholder_2 as xAxisPlaceholder };
|
|
92
|
+
}
|
|
93
|
+
export { option_4 as option };
|
|
94
|
+
}
|
|
95
|
+
namespace basicPieChart {
|
|
96
|
+
export namespace view_2 {
|
|
97
|
+
const percentage: string;
|
|
98
|
+
}
|
|
99
|
+
export { view_2 as view };
|
|
100
|
+
}
|
|
101
|
+
namespace basicTableChart {
|
|
102
|
+
export namespace option_5 {
|
|
103
|
+
const xAxis_2: string;
|
|
104
|
+
export { xAxis_2 as xAxis };
|
|
105
|
+
const xAxisPlaceholder_3: string;
|
|
106
|
+
export { xAxisPlaceholder_3 as xAxisPlaceholder };
|
|
107
|
+
const yAxis_1: string;
|
|
108
|
+
export { yAxis_1 as yAxis };
|
|
109
|
+
export const cluster: string;
|
|
110
|
+
export const clusterPlaceholder: string;
|
|
111
|
+
export const addColumn: string;
|
|
112
|
+
const total_1: string;
|
|
113
|
+
export { total_1 as total };
|
|
114
|
+
export const totalRow: string;
|
|
115
|
+
export const totalCol: string;
|
|
116
|
+
export const totalRowSub: string;
|
|
117
|
+
export const totoalColSub: string;
|
|
118
|
+
export namespace errorMsg_1 {
|
|
119
|
+
const limitGroup: string;
|
|
120
|
+
const limitCluster: string;
|
|
121
|
+
const nameEmpty: string;
|
|
122
|
+
const nameLength: string;
|
|
123
|
+
const nameChar: string;
|
|
124
|
+
const nameDuplicate: string;
|
|
125
|
+
const formulaEmpty: string;
|
|
126
|
+
}
|
|
127
|
+
export { errorMsg_1 as errorMsg };
|
|
128
|
+
}
|
|
129
|
+
export { option_5 as option };
|
|
130
|
+
export namespace modal_1 {
|
|
131
|
+
const title_2: string;
|
|
132
|
+
export { title_2 as title };
|
|
133
|
+
export const okText: string;
|
|
134
|
+
export const cancelText: string;
|
|
135
|
+
export const name: string;
|
|
136
|
+
const formula_1: string;
|
|
137
|
+
export { formula_1 as formula };
|
|
138
|
+
const formulaPlaceholder_1: string;
|
|
139
|
+
export { formulaPlaceholder_1 as formulaPlaceholder };
|
|
140
|
+
const type_1: string;
|
|
141
|
+
export { type_1 as type };
|
|
142
|
+
export const typeNumber: string;
|
|
143
|
+
export const typePercentage: string;
|
|
144
|
+
const precision_1: string;
|
|
145
|
+
export { precision_1 as precision };
|
|
146
|
+
const precisionPlaceholder_1: string;
|
|
147
|
+
export { precisionPlaceholder_1 as precisionPlaceholder };
|
|
148
|
+
}
|
|
149
|
+
export { modal_1 as modal };
|
|
150
|
+
}
|
|
151
|
+
namespace basicWorkLoadChart {
|
|
152
|
+
export namespace option_6 {
|
|
153
|
+
const sort_1: string;
|
|
154
|
+
export { sort_1 as sort };
|
|
155
|
+
const sortASC_1: string;
|
|
156
|
+
export { sortASC_1 as sortASC };
|
|
157
|
+
const sortDESC_1: string;
|
|
158
|
+
export { sortDESC_1 as sortDESC };
|
|
159
|
+
}
|
|
160
|
+
export { option_6 as option };
|
|
161
|
+
}
|
|
162
|
+
namespace burnDownChart {
|
|
163
|
+
export namespace option_7 {
|
|
164
|
+
export const dimension: string;
|
|
165
|
+
export const dimensionIteration: string;
|
|
166
|
+
export const dimensionTime: string;
|
|
167
|
+
export const workingDay: string;
|
|
168
|
+
const yAxis_2: string;
|
|
169
|
+
export { yAxis_2 as yAxis };
|
|
170
|
+
}
|
|
171
|
+
export { option_7 as option };
|
|
172
|
+
export namespace view_3 {
|
|
173
|
+
const progressSprint: string;
|
|
174
|
+
const otherSprint: string;
|
|
175
|
+
const dateRange: string;
|
|
176
|
+
const dateRangePlaceholder: string;
|
|
177
|
+
const itemStock: string;
|
|
178
|
+
const itemExpect: string;
|
|
179
|
+
}
|
|
180
|
+
export { view_3 as view };
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
export default _default;
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export namespace screen {
|
|
2
|
+
namespace _default {
|
|
3
|
+
import title = base.screen;
|
|
4
|
+
export { title };
|
|
5
|
+
export const createScreenScheme: string;
|
|
6
|
+
export const screenScheme: string;
|
|
7
|
+
export const defaultScreen: string;
|
|
8
|
+
export const noSelectComponent: string;
|
|
9
|
+
export const deleteScreen: string;
|
|
10
|
+
export const emptyField: string;
|
|
11
|
+
export const MAX_NESTED_DEPTH: string;
|
|
12
|
+
export const screenWidthDescription: string;
|
|
13
|
+
export namespace Popover {
|
|
14
|
+
const content: string;
|
|
15
|
+
}
|
|
16
|
+
export const addComponent: string;
|
|
17
|
+
export const message: string;
|
|
18
|
+
export const valueFont: string[];
|
|
19
|
+
}
|
|
20
|
+
export { _default as default };
|
|
21
|
+
export namespace FormField {
|
|
22
|
+
const tag: string;
|
|
23
|
+
const tagWidth: string;
|
|
24
|
+
const left: string;
|
|
25
|
+
const right: string;
|
|
26
|
+
const top: string;
|
|
27
|
+
const columnsPadding: string;
|
|
28
|
+
const defaultValuesScript: string;
|
|
29
|
+
const validateScript: string;
|
|
30
|
+
const viewDoc: string;
|
|
31
|
+
const beforeSaveScript: string;
|
|
32
|
+
const afterCreatedItemScript: string;
|
|
33
|
+
}
|
|
34
|
+
export namespace editor {
|
|
35
|
+
namespace panel {
|
|
36
|
+
namespace tabConfig {
|
|
37
|
+
const btn: string;
|
|
38
|
+
}
|
|
39
|
+
namespace PanelTabs {
|
|
40
|
+
const name: string[];
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
namespace widget {
|
|
44
|
+
const tip: string[];
|
|
45
|
+
namespace tabs {
|
|
46
|
+
export namespace name_1 {
|
|
47
|
+
const Layout: string;
|
|
48
|
+
const System: string;
|
|
49
|
+
const Custom: string;
|
|
50
|
+
}
|
|
51
|
+
export { name_1 as name };
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
export namespace scheme {
|
|
56
|
+
namespace _default_1 {
|
|
57
|
+
const title_1: string;
|
|
58
|
+
export { title_1 as title };
|
|
59
|
+
const screenScheme_1: string;
|
|
60
|
+
export { screenScheme_1 as screenScheme };
|
|
61
|
+
export const description: string;
|
|
62
|
+
}
|
|
63
|
+
export { _default_1 as default };
|
|
64
|
+
export const placeholder: string[];
|
|
65
|
+
export namespace operations {
|
|
66
|
+
const defaultScreen_1: string;
|
|
67
|
+
export { defaultScreen_1 as defaultScreen };
|
|
68
|
+
export const createScreen: string;
|
|
69
|
+
export const editScreen: string;
|
|
70
|
+
export const viewScreen: string;
|
|
71
|
+
}
|
|
72
|
+
export namespace columns {
|
|
73
|
+
export const screenType: string;
|
|
74
|
+
import name_2 = base.screen;
|
|
75
|
+
export { name_2 as name };
|
|
76
|
+
}
|
|
77
|
+
export namespace modal {
|
|
78
|
+
export namespace _delete {
|
|
79
|
+
const title_2: string;
|
|
80
|
+
export { title_2 as title };
|
|
81
|
+
const content_1: string;
|
|
82
|
+
export { content_1 as content };
|
|
83
|
+
}
|
|
84
|
+
export { _delete as delete };
|
|
85
|
+
export namespace deleteScreenScheme {
|
|
86
|
+
const title_3: string;
|
|
87
|
+
export { title_3 as title };
|
|
88
|
+
const content_2: string;
|
|
89
|
+
export { content_2 as content };
|
|
90
|
+
}
|
|
91
|
+
export const linkItemAndScreen: string;
|
|
92
|
+
export namespace validate {
|
|
93
|
+
const actionRequired: string;
|
|
94
|
+
const screenRequired: string;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
export namespace ScreenTable {
|
|
98
|
+
const message_1: string[];
|
|
99
|
+
export { message_1 as message };
|
|
100
|
+
import title_4 = base.screen;
|
|
101
|
+
export { title_4 as title };
|
|
102
|
+
const description_1: string;
|
|
103
|
+
export { description_1 as description };
|
|
104
|
+
export namespace modal_1 {
|
|
105
|
+
const title_5: string[];
|
|
106
|
+
export { title_5 as title };
|
|
107
|
+
}
|
|
108
|
+
export { modal_1 as modal };
|
|
109
|
+
export namespace columns_1 {
|
|
110
|
+
const name_3: string;
|
|
111
|
+
export { name_3 as name };
|
|
112
|
+
}
|
|
113
|
+
export { columns_1 as columns };
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
export default screen;
|
|
118
|
+
declare namespace base {
|
|
119
|
+
const screen_1: string;
|
|
120
|
+
export { screen_1 as screen };
|
|
121
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export namespace sections {
|
|
2
|
+
const layout: string;
|
|
3
|
+
namespace attribute {
|
|
4
|
+
const title: string;
|
|
5
|
+
const type: string;
|
|
6
|
+
const id: string;
|
|
7
|
+
const name: string;
|
|
8
|
+
const fieldDesc: string;
|
|
9
|
+
const placeholder: string;
|
|
10
|
+
const isSupposedMultiple: string;
|
|
11
|
+
const max: string;
|
|
12
|
+
const min: string;
|
|
13
|
+
const numberType: string;
|
|
14
|
+
const addonBefore: string;
|
|
15
|
+
const addonAfter: string;
|
|
16
|
+
namespace fieldNode {
|
|
17
|
+
const collapseTitle: string;
|
|
18
|
+
const expandByDefault: string;
|
|
19
|
+
namespace enableDynamicRow {
|
|
20
|
+
const label: string;
|
|
21
|
+
const tooltip: string;
|
|
22
|
+
}
|
|
23
|
+
namespace containerRows {
|
|
24
|
+
const label_1: string;
|
|
25
|
+
export { label_1 as label };
|
|
26
|
+
}
|
|
27
|
+
namespace dynamicRowsXS {
|
|
28
|
+
const label_2: string;
|
|
29
|
+
export { label_2 as label };
|
|
30
|
+
const tooltip_1: string;
|
|
31
|
+
export { tooltip_1 as tooltip };
|
|
32
|
+
}
|
|
33
|
+
namespace dynamicRowsMD {
|
|
34
|
+
const label_3: string;
|
|
35
|
+
export { label_3 as label };
|
|
36
|
+
const tooltip_2: string;
|
|
37
|
+
export { tooltip_2 as tooltip };
|
|
38
|
+
}
|
|
39
|
+
namespace dynamicRowsXL {
|
|
40
|
+
const label_4: string;
|
|
41
|
+
export { label_4 as label };
|
|
42
|
+
const tooltip_3: string;
|
|
43
|
+
export { tooltip_3 as tooltip };
|
|
44
|
+
}
|
|
45
|
+
namespace tabPosition {
|
|
46
|
+
const label_5: string;
|
|
47
|
+
export { label_5 as label };
|
|
48
|
+
export const top: string;
|
|
49
|
+
export const left: string;
|
|
50
|
+
export const right: string;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
namespace data {
|
|
55
|
+
const title_1: string;
|
|
56
|
+
export { title_1 as title };
|
|
57
|
+
export const defaultValue: string;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
export default sections;
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
export default settings;
|
|
2
|
+
declare namespace settings {
|
|
3
|
+
namespace _default {
|
|
4
|
+
const title: string;
|
|
5
|
+
const createPriority: string;
|
|
6
|
+
}
|
|
7
|
+
export { _default as default };
|
|
8
|
+
export namespace system {
|
|
9
|
+
const _default_1: {};
|
|
10
|
+
export { _default_1 as default };
|
|
11
|
+
export namespace workTime {
|
|
12
|
+
namespace _default_2 {
|
|
13
|
+
const title_1: string;
|
|
14
|
+
export { title_1 as title };
|
|
15
|
+
export const title2: string;
|
|
16
|
+
export const btnMsg: string;
|
|
17
|
+
export const state: string;
|
|
18
|
+
export const cancelBtn: string;
|
|
19
|
+
export const uploadTip: string;
|
|
20
|
+
export const uploadFileTip: string;
|
|
21
|
+
export const absoluteTime: string;
|
|
22
|
+
export const relativeTime: string;
|
|
23
|
+
export const relativeTimeSub: string;
|
|
24
|
+
export const update: string;
|
|
25
|
+
export const selectPlaceholder: string;
|
|
26
|
+
}
|
|
27
|
+
export { _default_2 as default };
|
|
28
|
+
export const message: string;
|
|
29
|
+
export namespace importNotes {
|
|
30
|
+
const csv: string[];
|
|
31
|
+
const csv1: {
|
|
32
|
+
0: string;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export namespace validateErrorMessage {
|
|
36
|
+
const name: string;
|
|
37
|
+
const date: string;
|
|
38
|
+
const type: string;
|
|
39
|
+
const dateRepeat: string;
|
|
40
|
+
}
|
|
41
|
+
export namespace columns {
|
|
42
|
+
const typeItem: string[];
|
|
43
|
+
}
|
|
44
|
+
export namespace modal {
|
|
45
|
+
const title_2: string;
|
|
46
|
+
export { title_2 as title };
|
|
47
|
+
export namespace footer {
|
|
48
|
+
const step1: string;
|
|
49
|
+
const step2: string;
|
|
50
|
+
const step3: string;
|
|
51
|
+
}
|
|
52
|
+
export namespace step {
|
|
53
|
+
const step1_1: string;
|
|
54
|
+
export { step1_1 as step1 };
|
|
55
|
+
const step2_1: string;
|
|
56
|
+
export { step2_1 as step2 };
|
|
57
|
+
const step3_1: string;
|
|
58
|
+
export { step3_1 as step3 };
|
|
59
|
+
}
|
|
60
|
+
export const browseBtn: string;
|
|
61
|
+
export const clearBtn: string;
|
|
62
|
+
export const downloadTitle: string;
|
|
63
|
+
export const downloadFileName: string;
|
|
64
|
+
export const downloadDescTitle: string;
|
|
65
|
+
export const currStep2Tip: string;
|
|
66
|
+
}
|
|
67
|
+
export namespace header {
|
|
68
|
+
const title_3: string;
|
|
69
|
+
export { title_3 as title };
|
|
70
|
+
}
|
|
71
|
+
export namespace tabs {
|
|
72
|
+
const tab1: string;
|
|
73
|
+
const tab2: string;
|
|
74
|
+
}
|
|
75
|
+
export const dateTimeFormatRequiredMessage: string;
|
|
76
|
+
export namespace labels {
|
|
77
|
+
const dataTimeFormat: string;
|
|
78
|
+
}
|
|
79
|
+
export namespace info {
|
|
80
|
+
const success: string;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
export namespace reIndexing {
|
|
84
|
+
namespace _default_3 {
|
|
85
|
+
const title_4: string;
|
|
86
|
+
export { title_4 as title };
|
|
87
|
+
}
|
|
88
|
+
export { _default_3 as default };
|
|
89
|
+
export namespace header_1 {
|
|
90
|
+
const title_5: string;
|
|
91
|
+
export { title_5 as title };
|
|
92
|
+
export const link: string;
|
|
93
|
+
}
|
|
94
|
+
export { header_1 as header };
|
|
95
|
+
export const description: string;
|
|
96
|
+
export namespace reIndexingChoose {
|
|
97
|
+
export const all: string;
|
|
98
|
+
export const some: string;
|
|
99
|
+
const btnMsg_1: string;
|
|
100
|
+
export { btnMsg_1 as btnMsg };
|
|
101
|
+
export const selectedTip: string;
|
|
102
|
+
export const conformBtn: string;
|
|
103
|
+
export const conformBtnAll: string;
|
|
104
|
+
}
|
|
105
|
+
export namespace workspaceModal {
|
|
106
|
+
const _default_4: {};
|
|
107
|
+
export { _default_4 as default };
|
|
108
|
+
const title_6: string;
|
|
109
|
+
export { title_6 as title };
|
|
110
|
+
}
|
|
111
|
+
export namespace workspaceTable {
|
|
112
|
+
const _default_5: {};
|
|
113
|
+
export { _default_5 as default };
|
|
114
|
+
const title_7: string;
|
|
115
|
+
export { title_7 as title };
|
|
116
|
+
export const total: string;
|
|
117
|
+
}
|
|
118
|
+
export namespace logs {
|
|
119
|
+
namespace _default_6 {
|
|
120
|
+
const tipNo: string;
|
|
121
|
+
const reloadSuccessTip: string;
|
|
122
|
+
const pageHeaderTitle: string;
|
|
123
|
+
const toolTipTitle: string;
|
|
124
|
+
}
|
|
125
|
+
export { _default_6 as default };
|
|
126
|
+
export namespace statusType {
|
|
127
|
+
const succeded: string;
|
|
128
|
+
const failed: string;
|
|
129
|
+
const running: string;
|
|
130
|
+
}
|
|
131
|
+
export namespace columns_1 {
|
|
132
|
+
const createdBy: string;
|
|
133
|
+
const createdAt: string;
|
|
134
|
+
const status: string;
|
|
135
|
+
const failedBtnMsg: string[];
|
|
136
|
+
const count: string;
|
|
137
|
+
}
|
|
138
|
+
export { columns_1 as columns };
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
export namespace downloadList {
|
|
142
|
+
export namespace header_2 {
|
|
143
|
+
const title_8: string;
|
|
144
|
+
export { title_8 as title };
|
|
145
|
+
}
|
|
146
|
+
export { header_2 as header };
|
|
147
|
+
export const singleDelete: string;
|
|
148
|
+
export const singleDownload: string;
|
|
149
|
+
export const downloadTip: string;
|
|
150
|
+
export const canDownload: string;
|
|
151
|
+
export const exportFailure: string;
|
|
152
|
+
export const exporting: string;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
export namespace menus {
|
|
156
|
+
export const workspace: string;
|
|
157
|
+
export const workspaceTemplate: string;
|
|
158
|
+
export const itemType: string;
|
|
159
|
+
export const itemTypes: string;
|
|
160
|
+
export const itemTypeSchema: string;
|
|
161
|
+
export const itemFeatures: string;
|
|
162
|
+
export const itemLink: string;
|
|
163
|
+
export const securityLevel: string;
|
|
164
|
+
export const screen: string;
|
|
165
|
+
export const screens: string;
|
|
166
|
+
export const screenSchema: string;
|
|
167
|
+
export const itemTypeScreenSchemes: string;
|
|
168
|
+
export const fields: string;
|
|
169
|
+
export const customFields: string;
|
|
170
|
+
export const priority: string;
|
|
171
|
+
export const fieldBehaviors: string;
|
|
172
|
+
export const automation: string;
|
|
173
|
+
export const automations: string;
|
|
174
|
+
export const workflow: string;
|
|
175
|
+
export const workflows: string;
|
|
176
|
+
const status_1: string;
|
|
177
|
+
export { status_1 as status };
|
|
178
|
+
export const workflowSchemas: string;
|
|
179
|
+
export const auth: string;
|
|
180
|
+
export const users: string;
|
|
181
|
+
export const roles: string;
|
|
182
|
+
export const userGroups: string;
|
|
183
|
+
export const workspaceRoles: string;
|
|
184
|
+
export const permissionSchemes: string;
|
|
185
|
+
const system_1: string;
|
|
186
|
+
export { system_1 as system };
|
|
187
|
+
export const workdayAndTimeConfig: string;
|
|
188
|
+
const reIndexing_1: string;
|
|
189
|
+
export { reIndexing_1 as reIndexing };
|
|
190
|
+
export const plugins: string;
|
|
191
|
+
}
|
|
192
|
+
export { itemTypes };
|
|
193
|
+
}
|
|
194
|
+
import itemTypes_1 from "./itemTypes";
|