@giteeteam/apps-team-components 0.3.4-remove-editor-0.10 → 0.3.13
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 +1 -1
- package/dist/cells/assignee/index.d.ts +2 -2
- package/dist/cells/bind-workspace/BaseField.d.ts +1 -1
- package/dist/cells/board/index.d.ts +1 -1
- package/dist/cells/checkbox/BaseField.d.ts +1 -1
- package/dist/cells/date/BaseField.d.ts +1 -1
- package/dist/cells/date/index.d.ts +1 -1
- package/dist/cells/date-range/BaseField.d.ts +1 -1
- package/dist/cells/date-range/index.d.ts +1 -1
- package/dist/cells/dropdown/BaseField.d.ts +1 -1
- package/dist/cells/dropdown/index.d.ts +1 -1
- 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 +1 -1
- package/dist/cells/formula/BaseField.d.ts +1 -1
- package/dist/cells/item-group/index.d.ts +1 -1
- package/dist/cells/item-type/index.d.ts +1 -1
- package/dist/cells/long-text/BaseField.d.ts +1 -1
- package/dist/cells/name/index.d.ts +1 -1
- package/dist/cells/number/BaseField.d.ts +1 -1
- package/dist/cells/priority/index.d.ts +2 -2
- package/dist/cells/radio/BaseField.d.ts +1 -1
- package/dist/cells/script/BaseField.d.ts +1 -1
- package/dist/cells/security-level/BaseField.d.ts +1 -1
- package/dist/cells/sprint/index.d.ts +1 -1
- package/dist/cells/status/Field.d.ts +1 -1
- package/dist/cells/tag/BaseField.d.ts +1 -1
- package/dist/cells/text/BaseField.d.ts +1 -1
- package/dist/cells/text/index.d.ts +2 -2
- package/dist/cells/time/BaseField.d.ts +1 -1
- package/dist/cells/time/index.d.ts +1 -1
- package/dist/cells/time-range/BaseField.d.ts +1 -1
- package/dist/cells/time-range/index.d.ts +1 -1
- package/dist/cells/tree/BaseField.d.ts +1 -1
- package/dist/cells/user/BaseField.d.ts +2 -2
- package/dist/cells/user/index.d.ts +1 -1
- package/dist/cells/version/index.d.ts +1 -1
- package/dist/cells/workspace/index.d.ts +1 -1
- package/dist/common/FieldErrorBoundary.d.ts +2 -2
- package/dist/common/UploadFile.d.ts +1 -1
- package/dist/common/base-table/index.d.ts +3 -3
- package/dist/common/date/DatePicker.d.ts +8 -9
- package/dist/common/date/TimePicker.d.ts +3 -5
- package/dist/common/filters/filter-query/IqlExpression.d.ts +1 -1
- package/dist/common/form-field/FormField.d.ts +2 -2
- package/dist/common/plugin/PluginLoadComponent.d.ts +1 -1
- package/dist/common/status-selector/index.d.ts +1 -1
- package/dist/common/structure/hooks.d.ts +2 -2
- package/dist/common/structure/table-components/TableActionMenu.d.ts +3 -3
- package/dist/common/structure/table-components/useTableColumns.d.ts +1 -1
- package/dist/common/structure/table-components/useTableMenu.d.ts +4 -4
- package/dist/common/structure-table/components/DraggableRow.d.ts +1 -1
- package/dist/common/utils.d.ts +2 -2
- package/dist/fields/item-activity/BaseField.d.ts +7 -0
- package/dist/fields/item-activity/Comment.d.ts +7 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +2 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/apis/groups/index.d.ts +1 -1
- package/dist/lib/apis/roles/index.d.ts +1 -1
- package/dist/lib/apis/screen/fields.d.ts +1 -1
- package/dist/lib/apis/screen/index.d.ts +3 -3
- package/dist/lib/contexts/LibraryProvider.d.ts +3 -2
- package/dist/lib/contexts/currentUserAndRoles.d.ts +1 -1
- package/dist/lib/contexts/token.d.ts +1 -1
- package/dist/lib/contexts/users.d.ts +1 -1
- package/dist/lib/customFields/hooks.d.ts +1 -1
- package/dist/lib/dayjs.d.ts +1 -1
- package/dist/lib/error/log.d.ts +1 -1
- package/dist/lib/error/utils.d.ts +2 -2
- package/dist/lib/fetch.d.ts +1 -1
- package/dist/lib/forest.d.ts +6 -6
- package/dist/lib/hooks/index.d.ts +2 -2
- package/dist/lib/hooks/useCustomFields.d.ts +1 -1
- package/dist/lib/hooks/useFieldTypes.d.ts +1 -1
- package/dist/lib/hooks/useFields.d.ts +1 -1
- package/dist/lib/hooks/useI18n.d.ts +1 -5
- package/dist/lib/hooks/useItemsInfinite.d.ts +4 -4
- package/dist/lib/hooks/useRemoteComponents.d.ts +3 -3
- package/dist/lib/hooks/useTenants.d.ts +1 -1
- package/dist/lib/hooks/useWorkspaces.d.ts +1 -1
- package/dist/lib/i18n.d.ts +4 -4
- package/dist/lib/kanban/hooks.d.ts +1 -1
- package/dist/lib/locales.d.ts +4 -2
- package/dist/lib/usePluginManifest.d.ts +1 -1
- package/dist/lib/useUser.d.ts +3 -3
- 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 +488 -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 +342 -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/main.css +7921 -9852
- package/dist/main.css.map +1 -1
- package/dist/osui/index.d.ts +1 -1
- package/package.json +16 -8
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
export namespace workflow {
|
|
2
|
+
namespace _default {
|
|
3
|
+
const scheme: string;
|
|
4
|
+
const add: string;
|
|
5
|
+
const edit: string;
|
|
6
|
+
const status: string;
|
|
7
|
+
const title: string;
|
|
8
|
+
const addWorkflow: string;
|
|
9
|
+
const editTitle: string;
|
|
10
|
+
const submitConfig: string;
|
|
11
|
+
const description: string;
|
|
12
|
+
const start: string;
|
|
13
|
+
const inProgress: string;
|
|
14
|
+
const finished: string;
|
|
15
|
+
const createStatus: string;
|
|
16
|
+
const pageTitle: string;
|
|
17
|
+
const saveDraft: string;
|
|
18
|
+
const savePublish: string;
|
|
19
|
+
const elseTypeTitle: string;
|
|
20
|
+
namespace userType {
|
|
21
|
+
const users: string;
|
|
22
|
+
const groups: string;
|
|
23
|
+
const roles: string;
|
|
24
|
+
const customFields: string;
|
|
25
|
+
const workspaceRoles: string;
|
|
26
|
+
const creatorAuth: string;
|
|
27
|
+
}
|
|
28
|
+
namespace ElementName {
|
|
29
|
+
const Transition: string;
|
|
30
|
+
const Status: string;
|
|
31
|
+
const Any: string;
|
|
32
|
+
}
|
|
33
|
+
namespace permissionType {
|
|
34
|
+
const restrictMovement: string;
|
|
35
|
+
const selectUser: string;
|
|
36
|
+
const content: string;
|
|
37
|
+
}
|
|
38
|
+
namespace fieldType {
|
|
39
|
+
export const checkItemField: string;
|
|
40
|
+
export const checkItemFieldDesc: string;
|
|
41
|
+
const content_1: string;
|
|
42
|
+
export { content_1 as content };
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
export { _default as default };
|
|
46
|
+
export namespace modal {
|
|
47
|
+
export namespace editStatus {
|
|
48
|
+
const title_1: string;
|
|
49
|
+
export { title_1 as title };
|
|
50
|
+
}
|
|
51
|
+
export namespace createStatus_1 {
|
|
52
|
+
const title_2: string;
|
|
53
|
+
export { title_2 as title };
|
|
54
|
+
}
|
|
55
|
+
export { createStatus_1 as createStatus };
|
|
56
|
+
export namespace delStatus {
|
|
57
|
+
const title_3: string;
|
|
58
|
+
export { title_3 as title };
|
|
59
|
+
const content_2: string;
|
|
60
|
+
export { content_2 as content };
|
|
61
|
+
}
|
|
62
|
+
export namespace delWorkflow {
|
|
63
|
+
const title_4: string;
|
|
64
|
+
export { title_4 as title };
|
|
65
|
+
const content_3: string;
|
|
66
|
+
export { content_3 as content };
|
|
67
|
+
}
|
|
68
|
+
export namespace delScheme {
|
|
69
|
+
const title_5: string;
|
|
70
|
+
export { title_5 as title };
|
|
71
|
+
const content_4: string;
|
|
72
|
+
export { content_4 as content };
|
|
73
|
+
}
|
|
74
|
+
export namespace delItem {
|
|
75
|
+
const title_6: string;
|
|
76
|
+
export { title_6 as title };
|
|
77
|
+
const content_5: string;
|
|
78
|
+
export { content_5 as content };
|
|
79
|
+
}
|
|
80
|
+
export namespace editItem {
|
|
81
|
+
const title_7: string;
|
|
82
|
+
export { title_7 as title };
|
|
83
|
+
}
|
|
84
|
+
const addWorkflow_1: string;
|
|
85
|
+
export { addWorkflow_1 as addWorkflow };
|
|
86
|
+
export namespace deleteConfig {
|
|
87
|
+
const title_8: string;
|
|
88
|
+
export { title_8 as title };
|
|
89
|
+
export namespace content_6 {
|
|
90
|
+
const text: string;
|
|
91
|
+
const deleteTip: string;
|
|
92
|
+
}
|
|
93
|
+
export { content_6 as content };
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
export namespace columns {
|
|
97
|
+
const name: string;
|
|
98
|
+
const schemeName: string;
|
|
99
|
+
const workspaces: string;
|
|
100
|
+
const usageWorkflow: string;
|
|
101
|
+
const usageScheme: string;
|
|
102
|
+
const itemType: string;
|
|
103
|
+
const statusType: string;
|
|
104
|
+
const workflow: string;
|
|
105
|
+
const workFlowTitle: string;
|
|
106
|
+
const configPage: string;
|
|
107
|
+
const workflowName: string;
|
|
108
|
+
const step: string;
|
|
109
|
+
const releaseStatus: string;
|
|
110
|
+
const haveRelease: string;
|
|
111
|
+
const draft: string;
|
|
112
|
+
const updatedAt: string;
|
|
113
|
+
}
|
|
114
|
+
export namespace message {
|
|
115
|
+
export const needNode: string;
|
|
116
|
+
export const anyStatus: string;
|
|
117
|
+
export const sameStatus: string;
|
|
118
|
+
export const noDraft: string;
|
|
119
|
+
export const noDelete: string;
|
|
120
|
+
export const noTarget: string;
|
|
121
|
+
export const noManyTarget: string;
|
|
122
|
+
export const namedLineNamed: string;
|
|
123
|
+
const name_1: string;
|
|
124
|
+
export { name_1 as name };
|
|
125
|
+
const workflow_1: string;
|
|
126
|
+
export { workflow_1 as workflow };
|
|
127
|
+
export const workflowScheme: string;
|
|
128
|
+
export const error: string;
|
|
129
|
+
export const fetchFail: string;
|
|
130
|
+
export const nameExist: string;
|
|
131
|
+
}
|
|
132
|
+
export namespace placeholder {
|
|
133
|
+
export const screen: string;
|
|
134
|
+
export const desc: string;
|
|
135
|
+
export const selectStatus: string;
|
|
136
|
+
export const keywords: string;
|
|
137
|
+
export const user: string;
|
|
138
|
+
export const userGroup: string;
|
|
139
|
+
const userType_1: string;
|
|
140
|
+
export { userType_1 as userType };
|
|
141
|
+
export const workspaceRole: string;
|
|
142
|
+
export const nameTip: string;
|
|
143
|
+
export const descTip: string;
|
|
144
|
+
export const number: string;
|
|
145
|
+
const text_1: string;
|
|
146
|
+
export { text_1 as text };
|
|
147
|
+
const itemType_1: string;
|
|
148
|
+
export { itemType_1 as itemType };
|
|
149
|
+
export const flow: string;
|
|
150
|
+
export const statusName: string;
|
|
151
|
+
export const statusNameKeyWord: string;
|
|
152
|
+
}
|
|
153
|
+
export namespace validate {
|
|
154
|
+
export const field: string;
|
|
155
|
+
const name_2: string;
|
|
156
|
+
export { name_2 as name };
|
|
157
|
+
const status_1: string;
|
|
158
|
+
export { status_1 as status };
|
|
159
|
+
const desc_1: string;
|
|
160
|
+
export { desc_1 as desc };
|
|
161
|
+
const workflowName_1: string;
|
|
162
|
+
export { workflowName_1 as workflowName };
|
|
163
|
+
export const noEmptyStatusName: string;
|
|
164
|
+
export const statusNameExist: string;
|
|
165
|
+
export const NAME_VALIDATE_ERROR: string;
|
|
166
|
+
export const NAME_LENGTH_ERROR: string;
|
|
167
|
+
export const noEmptyStatusType: string;
|
|
168
|
+
}
|
|
169
|
+
export namespace FormField {
|
|
170
|
+
const users_1: string;
|
|
171
|
+
export { users_1 as users };
|
|
172
|
+
const groups_1: string;
|
|
173
|
+
export { groups_1 as groups };
|
|
174
|
+
const customFields_1: string;
|
|
175
|
+
export { customFields_1 as customFields };
|
|
176
|
+
const workspaceRoles_1: string;
|
|
177
|
+
export { workspaceRoles_1 as workspaceRoles };
|
|
178
|
+
const statusName_1: string;
|
|
179
|
+
export { statusName_1 as statusName };
|
|
180
|
+
const statusType_1: string;
|
|
181
|
+
export { statusType_1 as statusType };
|
|
182
|
+
const screen_1: string;
|
|
183
|
+
export { screen_1 as screen };
|
|
184
|
+
export const rules: string;
|
|
185
|
+
export const actionPermission: string;
|
|
186
|
+
export namespace panel {
|
|
187
|
+
const header: string;
|
|
188
|
+
const deleteAll: string;
|
|
189
|
+
}
|
|
190
|
+
export const isAny: string;
|
|
191
|
+
export namespace tabPane {
|
|
192
|
+
const tab: string;
|
|
193
|
+
const verify: string;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
export namespace views {
|
|
197
|
+
export const COMMON_TAB: string;
|
|
198
|
+
export const SCRIPT_TAB: string;
|
|
199
|
+
export const ALL_ITEM_TYPES_NAME: string;
|
|
200
|
+
export const transitionState: string;
|
|
201
|
+
export const anyState: string;
|
|
202
|
+
const start_1: string;
|
|
203
|
+
export { start_1 as start };
|
|
204
|
+
export const deleteRule: string;
|
|
205
|
+
export const cancel: string;
|
|
206
|
+
export const preStep: string;
|
|
207
|
+
export const continueConfig: string;
|
|
208
|
+
export const okText: string;
|
|
209
|
+
export const nextStep: string;
|
|
210
|
+
const status_2: string;
|
|
211
|
+
export { status_2 as status };
|
|
212
|
+
export const selectWorkflow: string;
|
|
213
|
+
export const assignmentItemType: string;
|
|
214
|
+
export const EDIT_TEXT: string;
|
|
215
|
+
export const CREATE_TEXT: string;
|
|
216
|
+
export namespace tableMsg {
|
|
217
|
+
const title_9: string;
|
|
218
|
+
export { title_9 as title };
|
|
219
|
+
const description_1: string;
|
|
220
|
+
export { description_1 as description };
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
export namespace condition {
|
|
224
|
+
const isEmpty: string;
|
|
225
|
+
const notEmpty: string;
|
|
226
|
+
const equal: string;
|
|
227
|
+
const greaterThan: string;
|
|
228
|
+
const greaterThanOrEqualTo: string;
|
|
229
|
+
const lessThan: string;
|
|
230
|
+
const lessThanOrEqualTo: string;
|
|
231
|
+
const notEqualTo: string;
|
|
232
|
+
const containedIn: string;
|
|
233
|
+
const notContainedIn: string;
|
|
234
|
+
}
|
|
235
|
+
export namespace statusType_2 {
|
|
236
|
+
const start_2: string;
|
|
237
|
+
export { start_2 as start };
|
|
238
|
+
const inProgress_1: string;
|
|
239
|
+
export { inProgress_1 as inProgress };
|
|
240
|
+
const finished_1: string;
|
|
241
|
+
export { finished_1 as finished };
|
|
242
|
+
}
|
|
243
|
+
export { statusType_2 as statusType };
|
|
244
|
+
}
|
|
245
|
+
export default workflow;
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
export namespace workspaces {
|
|
2
|
+
export { defaultConfig as default };
|
|
3
|
+
export namespace views {
|
|
4
|
+
namespace layout {
|
|
5
|
+
const _default: string;
|
|
6
|
+
export { _default as default };
|
|
7
|
+
export const structure: string;
|
|
8
|
+
export const kanban: string;
|
|
9
|
+
export const gantt: string;
|
|
10
|
+
export const storyMapping: string;
|
|
11
|
+
export const calendar: string;
|
|
12
|
+
export const split: string;
|
|
13
|
+
}
|
|
14
|
+
const boardManagement: string;
|
|
15
|
+
const createBoard: string;
|
|
16
|
+
const IN_WORKSPACE: string;
|
|
17
|
+
const ACROSS_WORKSPACE: string;
|
|
18
|
+
const itemGroupsManagement: string;
|
|
19
|
+
const createItemGroups: string;
|
|
20
|
+
const itemGroupsPermission: string;
|
|
21
|
+
const addAuthRules: string;
|
|
22
|
+
const viewPermissionScheme: string;
|
|
23
|
+
const permissionSchemeName: string;
|
|
24
|
+
namespace tooltip {
|
|
25
|
+
const tip: string;
|
|
26
|
+
const addNewMember: string;
|
|
27
|
+
}
|
|
28
|
+
const workspaceAbstract: string;
|
|
29
|
+
const workspaceDesc: string;
|
|
30
|
+
const workspaceTemplate: any;
|
|
31
|
+
const itemTypeHierarchyScheme: string;
|
|
32
|
+
const itemTypeScreenScheme: string;
|
|
33
|
+
const itemTypeWorkflowScheme: string;
|
|
34
|
+
const securityLevelScheme: string;
|
|
35
|
+
namespace itemType {
|
|
36
|
+
const title: string;
|
|
37
|
+
const desc: string;
|
|
38
|
+
}
|
|
39
|
+
namespace drawerHeader {
|
|
40
|
+
const selectWorkspaceTemplate: string;
|
|
41
|
+
const enterWorkspaceDetail: string;
|
|
42
|
+
}
|
|
43
|
+
const tableDisplaySettings: string;
|
|
44
|
+
const addBlankSpace: string;
|
|
45
|
+
const updateTemplateBtn: string;
|
|
46
|
+
const updateAvatar: string;
|
|
47
|
+
const createWorkspaceBtn: string;
|
|
48
|
+
const moveItem: string;
|
|
49
|
+
}
|
|
50
|
+
export namespace modal {
|
|
51
|
+
export namespace _delete {
|
|
52
|
+
const title_1: string;
|
|
53
|
+
export { title_1 as title };
|
|
54
|
+
export const message: {
|
|
55
|
+
confirm: string;
|
|
56
|
+
error: string;
|
|
57
|
+
success: string;
|
|
58
|
+
tips: string;
|
|
59
|
+
typeConfirm: (type: any) => string;
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
export { _delete as delete };
|
|
63
|
+
export namespace create {
|
|
64
|
+
const title_2: string;
|
|
65
|
+
export { title_2 as title };
|
|
66
|
+
}
|
|
67
|
+
export namespace edit {
|
|
68
|
+
const title_3: string;
|
|
69
|
+
export { title_3 as title };
|
|
70
|
+
}
|
|
71
|
+
export const editRole: string;
|
|
72
|
+
export namespace deleteWorkspace {
|
|
73
|
+
const title_4: string;
|
|
74
|
+
export { title_4 as title };
|
|
75
|
+
export const content: string;
|
|
76
|
+
}
|
|
77
|
+
export namespace deleteBoardRule {
|
|
78
|
+
const title_5: string;
|
|
79
|
+
export { title_5 as title };
|
|
80
|
+
const content_1: string;
|
|
81
|
+
export { content_1 as content };
|
|
82
|
+
}
|
|
83
|
+
export namespace deleteName {
|
|
84
|
+
const title_6: string;
|
|
85
|
+
export { title_6 as title };
|
|
86
|
+
const content_2: string;
|
|
87
|
+
export { content_2 as content };
|
|
88
|
+
}
|
|
89
|
+
export namespace move {
|
|
90
|
+
const title_7: string;
|
|
91
|
+
export { title_7 as title };
|
|
92
|
+
const content_3: string;
|
|
93
|
+
export { content_3 as content };
|
|
94
|
+
}
|
|
95
|
+
export namespace deleteTip {
|
|
96
|
+
const title_8: string;
|
|
97
|
+
export { title_8 as title };
|
|
98
|
+
const content_4: string;
|
|
99
|
+
export { content_4 as content };
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export namespace columns {
|
|
103
|
+
export const boardName: string;
|
|
104
|
+
export const filterSource: string;
|
|
105
|
+
export const username: string;
|
|
106
|
+
export const permission: string;
|
|
107
|
+
export const itemGroupsName: string;
|
|
108
|
+
export const createdAt: string;
|
|
109
|
+
export const updatedAt: string;
|
|
110
|
+
export const operation: string;
|
|
111
|
+
const itemType_1: string;
|
|
112
|
+
export { itemType_1 as itemType };
|
|
113
|
+
}
|
|
114
|
+
import pageTitle = defaultConfig.allWorkspace;
|
|
115
|
+
export { pageTitle };
|
|
116
|
+
}
|
|
117
|
+
export namespace workspaceScheme {
|
|
118
|
+
namespace _default_1 {
|
|
119
|
+
const title_9: string;
|
|
120
|
+
export { title_9 as title };
|
|
121
|
+
export const createTitle: string;
|
|
122
|
+
const desc_1: string;
|
|
123
|
+
export { desc_1 as desc };
|
|
124
|
+
export const description: string;
|
|
125
|
+
}
|
|
126
|
+
export { _default_1 as default };
|
|
127
|
+
export namespace modal_1 {
|
|
128
|
+
export const editTitle: string;
|
|
129
|
+
export const deleteTitle: string;
|
|
130
|
+
const content_5: string;
|
|
131
|
+
export { content_5 as content };
|
|
132
|
+
}
|
|
133
|
+
export { modal_1 as modal };
|
|
134
|
+
export namespace columns_1 {
|
|
135
|
+
export const name: string;
|
|
136
|
+
const description_1: string;
|
|
137
|
+
export { description_1 as description };
|
|
138
|
+
const itemTypeHierarchyScheme_1: string;
|
|
139
|
+
export { itemTypeHierarchyScheme_1 as itemTypeHierarchyScheme };
|
|
140
|
+
const itemTypeScreenScheme_1: string;
|
|
141
|
+
export { itemTypeScreenScheme_1 as itemTypeScreenScheme };
|
|
142
|
+
export const workflowScheme: string;
|
|
143
|
+
}
|
|
144
|
+
export { columns_1 as columns };
|
|
145
|
+
}
|
|
146
|
+
export namespace workspaceTypes {
|
|
147
|
+
namespace _default_2 {
|
|
148
|
+
const workspaceType: string;
|
|
149
|
+
const createWorkspaceType: string;
|
|
150
|
+
}
|
|
151
|
+
export { _default_2 as default };
|
|
152
|
+
export namespace modal_2 {
|
|
153
|
+
const editTitle_1: string;
|
|
154
|
+
export { editTitle_1 as editTitle };
|
|
155
|
+
const deleteTitle_1: string;
|
|
156
|
+
export { deleteTitle_1 as deleteTitle };
|
|
157
|
+
const content_6: string;
|
|
158
|
+
export { content_6 as content };
|
|
159
|
+
}
|
|
160
|
+
export { modal_2 as modal };
|
|
161
|
+
export namespace columns_2 {
|
|
162
|
+
const name_1: string;
|
|
163
|
+
export { name_1 as name };
|
|
164
|
+
const itemTypeScreenScheme_2: string;
|
|
165
|
+
export { itemTypeScreenScheme_2 as itemTypeScreenScheme };
|
|
166
|
+
const workflowScheme_1: string;
|
|
167
|
+
export { workflowScheme_1 as workflowScheme };
|
|
168
|
+
}
|
|
169
|
+
export { columns_2 as columns };
|
|
170
|
+
}
|
|
171
|
+
export namespace workspaceTemplate {
|
|
172
|
+
namespace _default_3 {
|
|
173
|
+
export const templateTypeManage: string;
|
|
174
|
+
const title_10: string;
|
|
175
|
+
export { title_10 as title };
|
|
176
|
+
export const createBtn: string;
|
|
177
|
+
}
|
|
178
|
+
export { _default_3 as default };
|
|
179
|
+
export namespace modal_3 {
|
|
180
|
+
export namespace _delete_1 {
|
|
181
|
+
const title_11: string;
|
|
182
|
+
export { title_11 as title };
|
|
183
|
+
export const deleteTemplateType: string;
|
|
184
|
+
export const deleteWorkspaceTemplate: string;
|
|
185
|
+
}
|
|
186
|
+
export { _delete_1 as delete };
|
|
187
|
+
export namespace create_1 {
|
|
188
|
+
const title_12: string;
|
|
189
|
+
export { title_12 as title };
|
|
190
|
+
}
|
|
191
|
+
export { create_1 as create };
|
|
192
|
+
export namespace edit_1 {
|
|
193
|
+
const title_13: string;
|
|
194
|
+
export { title_13 as title };
|
|
195
|
+
}
|
|
196
|
+
export { edit_1 as edit };
|
|
197
|
+
export const editTemplateType: string;
|
|
198
|
+
export const createTemplateType: string;
|
|
199
|
+
export const editWorkspaceTemplate: string;
|
|
200
|
+
export const createWorkspaceTemplate: string;
|
|
201
|
+
}
|
|
202
|
+
export { modal_3 as modal };
|
|
203
|
+
export namespace columns_3 {
|
|
204
|
+
const name_2: string;
|
|
205
|
+
export { name_2 as name };
|
|
206
|
+
const description_2: string;
|
|
207
|
+
export { description_2 as description };
|
|
208
|
+
export const templateName: string;
|
|
209
|
+
export const workspaceCount: string;
|
|
210
|
+
export const workspaceScheme: string;
|
|
211
|
+
export const createdBy: string;
|
|
212
|
+
const createdAt_1: string;
|
|
213
|
+
export { createdAt_1 as createdAt };
|
|
214
|
+
}
|
|
215
|
+
export { columns_3 as columns };
|
|
216
|
+
export namespace view {
|
|
217
|
+
const addTypeBtn: string;
|
|
218
|
+
const CreateByEmpty: string;
|
|
219
|
+
const CreateByWorkspace: string;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
export namespace board {
|
|
223
|
+
namespace _default_4 {
|
|
224
|
+
const addGroup: string;
|
|
225
|
+
const moveToGroup: string;
|
|
226
|
+
const addWorkspaceBoard: string;
|
|
227
|
+
const ADD_ACROSS_WORKSPACE: string;
|
|
228
|
+
const allItem: string;
|
|
229
|
+
const otherBoard: string;
|
|
230
|
+
const boardPermission: string;
|
|
231
|
+
}
|
|
232
|
+
export { _default_4 as default };
|
|
233
|
+
export namespace view_1 {
|
|
234
|
+
namespace filterTypeOptions {
|
|
235
|
+
const GLOBAL_FILTER: string;
|
|
236
|
+
const CUSTOM_FILTER: string;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
export { view_1 as view };
|
|
240
|
+
export namespace modal_4 {
|
|
241
|
+
export namespace permission_1 {
|
|
242
|
+
const title_14: string;
|
|
243
|
+
export { title_14 as title };
|
|
244
|
+
export const text: string;
|
|
245
|
+
}
|
|
246
|
+
export { permission_1 as permission };
|
|
247
|
+
export namespace board {
|
|
248
|
+
const deleteTitle_2: string;
|
|
249
|
+
export { deleteTitle_2 as deleteTitle };
|
|
250
|
+
const move_1: string;
|
|
251
|
+
export { move_1 as move };
|
|
252
|
+
const _delete_2: string;
|
|
253
|
+
export { _delete_2 as delete };
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
export { modal_4 as modal };
|
|
257
|
+
}
|
|
258
|
+
export namespace boardView {
|
|
259
|
+
namespace _default_5 {
|
|
260
|
+
const view_2: string;
|
|
261
|
+
export { view_2 as view };
|
|
262
|
+
export const viewManagement: string;
|
|
263
|
+
const title_15: string;
|
|
264
|
+
export { title_15 as title };
|
|
265
|
+
}
|
|
266
|
+
export { _default_5 as default };
|
|
267
|
+
export namespace modal_5 {
|
|
268
|
+
export namespace _delete_3 {
|
|
269
|
+
const title_16: string;
|
|
270
|
+
export { title_16 as title };
|
|
271
|
+
const content_7: string;
|
|
272
|
+
export { content_7 as content };
|
|
273
|
+
}
|
|
274
|
+
export { _delete_3 as delete };
|
|
275
|
+
}
|
|
276
|
+
export { modal_5 as modal };
|
|
277
|
+
export namespace view_3 {
|
|
278
|
+
namespace AuthComponent {
|
|
279
|
+
namespace _default_6 {
|
|
280
|
+
const title_17: string;
|
|
281
|
+
export { title_17 as title };
|
|
282
|
+
export const share: string;
|
|
283
|
+
const tip_1: string;
|
|
284
|
+
export { tip_1 as tip };
|
|
285
|
+
}
|
|
286
|
+
export { _default_6 as default };
|
|
287
|
+
}
|
|
288
|
+
const emptyViewTip: string;
|
|
289
|
+
namespace roleNameEnum {
|
|
290
|
+
const Workspace: string;
|
|
291
|
+
const Enterprise: string;
|
|
292
|
+
const Group: string;
|
|
293
|
+
}
|
|
294
|
+
const getErrorText: string[];
|
|
295
|
+
}
|
|
296
|
+
export { view_3 as view };
|
|
297
|
+
export namespace group {
|
|
298
|
+
const count: string;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
declare namespace _default {
|
|
302
|
+
export { board };
|
|
303
|
+
export { boardView };
|
|
304
|
+
export { workspaces };
|
|
305
|
+
export { workspaceScheme };
|
|
306
|
+
export { workspaceTypes };
|
|
307
|
+
export { workspaceTemplate };
|
|
308
|
+
}
|
|
309
|
+
export default _default;
|
|
310
|
+
declare namespace defaultConfig {
|
|
311
|
+
export const validate_msg: string;
|
|
312
|
+
export const itemImport: string;
|
|
313
|
+
export namespace description_3 {
|
|
314
|
+
const noDesc: string;
|
|
315
|
+
const noTypeDesc: string;
|
|
316
|
+
const allTemplate: string;
|
|
317
|
+
const noType: string;
|
|
318
|
+
}
|
|
319
|
+
export { description_3 as description };
|
|
320
|
+
export const allWorkspace: string;
|
|
321
|
+
const createBtn_1: string;
|
|
322
|
+
export { createBtn_1 as createBtn };
|
|
323
|
+
export const createBtnText: string;
|
|
324
|
+
export namespace auth {
|
|
325
|
+
const title_18: string;
|
|
326
|
+
export { title_18 as title };
|
|
327
|
+
export const addBtn: string;
|
|
328
|
+
export const currentPermissionScheme: string;
|
|
329
|
+
}
|
|
330
|
+
export const ALL_MEMBER: string;
|
|
331
|
+
export const WORKSPACE_CREATOR: string;
|
|
332
|
+
export const WORKSPACE_MANAGER: string;
|
|
333
|
+
export const allMember: string;
|
|
334
|
+
export const createRole: string;
|
|
335
|
+
export const workspaceMemberManagement: string;
|
|
336
|
+
export const workspaceRole: string;
|
|
337
|
+
export const customRole: string;
|
|
338
|
+
export const addWorkspace: string;
|
|
339
|
+
export const editWorkspace: string;
|
|
340
|
+
export namespace emptyDataDefaultProps {
|
|
341
|
+
const emptyInfo: string;
|
|
342
|
+
const operationInfo: string;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export namespace zhCN {
|
|
2
|
+
export namespace index {
|
|
3
|
+
const hello: string;
|
|
4
|
+
const welcome: string;
|
|
5
|
+
}
|
|
6
|
+
export const locale: {
|
|
7
|
+
current: string;
|
|
8
|
+
zh: string;
|
|
9
|
+
'zh-CN': string;
|
|
10
|
+
'zh-HK': string;
|
|
11
|
+
'zh-TW': string;
|
|
12
|
+
en: string;
|
|
13
|
+
'en-US': string;
|
|
14
|
+
};
|
|
15
|
+
export namespace menus {
|
|
16
|
+
const dashboard: string;
|
|
17
|
+
const workspacesAll: string;
|
|
18
|
+
const workspaces: string[];
|
|
19
|
+
const create: string;
|
|
20
|
+
}
|
|
21
|
+
export { global };
|
|
22
|
+
export { date };
|
|
23
|
+
export { formField };
|
|
24
|
+
export { message };
|
|
25
|
+
export { validate };
|
|
26
|
+
export { placeholder };
|
|
27
|
+
export { reportPlugin };
|
|
28
|
+
export { sections };
|
|
29
|
+
export { lib };
|
|
30
|
+
export { views };
|
|
31
|
+
export { pages };
|
|
32
|
+
export { screen };
|
|
33
|
+
}
|
|
34
|
+
export default zhCN;
|
|
35
|
+
import global from "./package/global";
|
|
36
|
+
import date from "./package/date";
|
|
37
|
+
import formField from "./package/formField";
|
|
38
|
+
import message from "./package/message";
|
|
39
|
+
import validate from "./package/validate";
|
|
40
|
+
import placeholder from "./package/placeholder";
|
|
41
|
+
import reportPlugin from "./package/reportPlugin";
|
|
42
|
+
import sections from "./package/sections";
|
|
43
|
+
import lib from "./package/lib";
|
|
44
|
+
import views from "./package/views";
|
|
45
|
+
import pages from "./package/pages";
|
|
46
|
+
import screen from "./package/screen";
|