@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,471 @@
|
|
|
1
|
+
export namespace permission {
|
|
2
|
+
namespace _default {
|
|
3
|
+
const systemRoles: string;
|
|
4
|
+
const memberRole: string;
|
|
5
|
+
const permission: string;
|
|
6
|
+
const placeholder: string[];
|
|
7
|
+
const userType: string;
|
|
8
|
+
const SubmitConfig: string;
|
|
9
|
+
namespace view {
|
|
10
|
+
const title: string;
|
|
11
|
+
const workspaceRole: string;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export { _default as default };
|
|
15
|
+
export namespace modal {
|
|
16
|
+
export namespace confirm {
|
|
17
|
+
const title_1: string;
|
|
18
|
+
export { title_1 as title };
|
|
19
|
+
export const content: string;
|
|
20
|
+
}
|
|
21
|
+
export namespace _delete {
|
|
22
|
+
const title_2: string;
|
|
23
|
+
export { title_2 as title };
|
|
24
|
+
const content_1: string;
|
|
25
|
+
export { content_1 as content };
|
|
26
|
+
}
|
|
27
|
+
export { _delete as delete };
|
|
28
|
+
}
|
|
29
|
+
export namespace columns {
|
|
30
|
+
namespace Tooltip {
|
|
31
|
+
const title_3: string;
|
|
32
|
+
export { title_3 as title };
|
|
33
|
+
}
|
|
34
|
+
const roleTitle: string[];
|
|
35
|
+
const BROWSER_WORKSPACES: string;
|
|
36
|
+
const ADMINISTER_WORKSPACES: string;
|
|
37
|
+
const BROWSER_ITEMS: string;
|
|
38
|
+
const ADD_ITEMS: string;
|
|
39
|
+
const MODIFY_ITEMS: string;
|
|
40
|
+
const DELETE_ITEMS: string;
|
|
41
|
+
const ADD_PUBLIC_VIEW: string;
|
|
42
|
+
const tip: string[];
|
|
43
|
+
}
|
|
44
|
+
export namespace options {
|
|
45
|
+
export const all: string;
|
|
46
|
+
export const user: string;
|
|
47
|
+
export const group: string;
|
|
48
|
+
export const role: string;
|
|
49
|
+
const workspaceRole_1: string;
|
|
50
|
+
export { workspaceRole_1 as workspaceRole };
|
|
51
|
+
}
|
|
52
|
+
export namespace validate {
|
|
53
|
+
const description: string;
|
|
54
|
+
const name: string[];
|
|
55
|
+
const required: string[];
|
|
56
|
+
}
|
|
57
|
+
export namespace FormField {
|
|
58
|
+
const role_1: string;
|
|
59
|
+
export { role_1 as role };
|
|
60
|
+
}
|
|
61
|
+
export namespace securityLevel {
|
|
62
|
+
namespace _default_1 {
|
|
63
|
+
const title_4: string;
|
|
64
|
+
export { title_4 as title };
|
|
65
|
+
const user_1: string;
|
|
66
|
+
export { user_1 as user };
|
|
67
|
+
export const userGroup: string;
|
|
68
|
+
export const cardLabel: string;
|
|
69
|
+
}
|
|
70
|
+
export { _default_1 as default };
|
|
71
|
+
export namespace view_1 {
|
|
72
|
+
export const fieldConfigTitle: string;
|
|
73
|
+
export namespace columns_1 {
|
|
74
|
+
const name_1: string;
|
|
75
|
+
export { name_1 as name };
|
|
76
|
+
export const ACLTemplate: string;
|
|
77
|
+
export const read: string;
|
|
78
|
+
export const nothing: string;
|
|
79
|
+
export const operation: string;
|
|
80
|
+
}
|
|
81
|
+
export { columns_1 as columns };
|
|
82
|
+
const title_5: string;
|
|
83
|
+
export { title_5 as title };
|
|
84
|
+
export const roleAuthConfig: string;
|
|
85
|
+
export const setting: string;
|
|
86
|
+
export const desc: string;
|
|
87
|
+
export namespace modal_1 {
|
|
88
|
+
const _delete_1: string;
|
|
89
|
+
export { _delete_1 as delete };
|
|
90
|
+
const content_2: string;
|
|
91
|
+
export { content_2 as content };
|
|
92
|
+
}
|
|
93
|
+
export { modal_1 as modal };
|
|
94
|
+
}
|
|
95
|
+
export { view_1 as view };
|
|
96
|
+
export namespace columns_2 {
|
|
97
|
+
const name_2: string;
|
|
98
|
+
export { name_2 as name };
|
|
99
|
+
export const citeCount: string;
|
|
100
|
+
export namespace commonTable {
|
|
101
|
+
namespace header {
|
|
102
|
+
const title_6: string;
|
|
103
|
+
export { title_6 as title };
|
|
104
|
+
const description_1: string;
|
|
105
|
+
export { description_1 as description };
|
|
106
|
+
export const insert: string;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export { columns_2 as columns };
|
|
111
|
+
export namespace modal_2 {
|
|
112
|
+
export namespace create {
|
|
113
|
+
const title_7: string;
|
|
114
|
+
export { title_7 as title };
|
|
115
|
+
}
|
|
116
|
+
export namespace edit {
|
|
117
|
+
const title_8: string;
|
|
118
|
+
export { title_8 as title };
|
|
119
|
+
}
|
|
120
|
+
export namespace _delete_2 {
|
|
121
|
+
export const deleteTitle: string;
|
|
122
|
+
const content_3: string;
|
|
123
|
+
export { content_3 as content };
|
|
124
|
+
}
|
|
125
|
+
export { _delete_2 as delete };
|
|
126
|
+
export namespace deleteField {
|
|
127
|
+
const title_9: string;
|
|
128
|
+
export { title_9 as title };
|
|
129
|
+
const content_4: string;
|
|
130
|
+
export { content_4 as content };
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
export { modal_2 as modal };
|
|
134
|
+
export namespace validate_1 {
|
|
135
|
+
const name_3: string[];
|
|
136
|
+
export { name_3 as name };
|
|
137
|
+
const description_2: string;
|
|
138
|
+
export { description_2 as description };
|
|
139
|
+
}
|
|
140
|
+
export { validate_1 as validate };
|
|
141
|
+
export namespace formField {
|
|
142
|
+
const placeholder_1: string[];
|
|
143
|
+
export { placeholder_1 as placeholder };
|
|
144
|
+
const name_4: string;
|
|
145
|
+
export { name_4 as name };
|
|
146
|
+
const description_3: string;
|
|
147
|
+
export { description_3 as description };
|
|
148
|
+
}
|
|
149
|
+
export namespace scheme {
|
|
150
|
+
namespace _default_2 {
|
|
151
|
+
const title_10: string;
|
|
152
|
+
export { title_10 as title };
|
|
153
|
+
}
|
|
154
|
+
export { _default_2 as default };
|
|
155
|
+
export const backTip: string;
|
|
156
|
+
const description_4: string;
|
|
157
|
+
export { description_4 as description };
|
|
158
|
+
}
|
|
159
|
+
export namespace securityId {
|
|
160
|
+
namespace _default_3 {
|
|
161
|
+
const title_11: string;
|
|
162
|
+
export { title_11 as title };
|
|
163
|
+
}
|
|
164
|
+
export { _default_3 as default };
|
|
165
|
+
export namespace columns_3 {
|
|
166
|
+
const name_5: string;
|
|
167
|
+
export { name_5 as name };
|
|
168
|
+
export const users: string;
|
|
169
|
+
export const customFields: string;
|
|
170
|
+
}
|
|
171
|
+
export { columns_3 as columns };
|
|
172
|
+
export namespace commonTableHeader {
|
|
173
|
+
const title_12: string;
|
|
174
|
+
export { title_12 as title };
|
|
175
|
+
const description_5: string;
|
|
176
|
+
export { description_5 as description };
|
|
177
|
+
const create_1: string;
|
|
178
|
+
export { create_1 as create };
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
export namespace SecurityLevelModal {
|
|
182
|
+
export namespace modal_3 {
|
|
183
|
+
export namespace create_2 {
|
|
184
|
+
const title_13: string;
|
|
185
|
+
export { title_13 as title };
|
|
186
|
+
}
|
|
187
|
+
export { create_2 as create };
|
|
188
|
+
export namespace edit_1 {
|
|
189
|
+
const title_14: string;
|
|
190
|
+
export { title_14 as title };
|
|
191
|
+
}
|
|
192
|
+
export { edit_1 as edit };
|
|
193
|
+
}
|
|
194
|
+
export { modal_3 as modal };
|
|
195
|
+
export namespace validate_2 {
|
|
196
|
+
const name_6: string;
|
|
197
|
+
export { name_6 as name };
|
|
198
|
+
export const NAME_LENGTH_ERROR: string;
|
|
199
|
+
export const NAME_VALIDATE_ERROR: string;
|
|
200
|
+
}
|
|
201
|
+
export { validate_2 as validate };
|
|
202
|
+
export namespace FormField_1 {
|
|
203
|
+
export const label: string;
|
|
204
|
+
const placeholder_2: string;
|
|
205
|
+
export { placeholder_2 as placeholder };
|
|
206
|
+
}
|
|
207
|
+
export { FormField_1 as FormField };
|
|
208
|
+
}
|
|
209
|
+
export namespace securityLevelSetting {
|
|
210
|
+
const placeholder_3: string;
|
|
211
|
+
export { placeholder_3 as placeholder };
|
|
212
|
+
export namespace tabTitle {
|
|
213
|
+
const User: string;
|
|
214
|
+
const Group: string;
|
|
215
|
+
const UserField: string;
|
|
216
|
+
}
|
|
217
|
+
export const clear: string;
|
|
218
|
+
export namespace modal_4 {
|
|
219
|
+
namespace move {
|
|
220
|
+
const title_15: string;
|
|
221
|
+
export { title_15 as title };
|
|
222
|
+
const content_5: string;
|
|
223
|
+
export { content_5 as content };
|
|
224
|
+
}
|
|
225
|
+
namespace message {
|
|
226
|
+
const removeSuccess: string;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
export { modal_4 as modal };
|
|
230
|
+
}
|
|
231
|
+
export namespace utils {
|
|
232
|
+
namespace leftTableColumn {
|
|
233
|
+
const title_16: string[];
|
|
234
|
+
export { title_16 as title };
|
|
235
|
+
export const nickname: string;
|
|
236
|
+
}
|
|
237
|
+
namespace Popover {
|
|
238
|
+
const title_17: string;
|
|
239
|
+
export { title_17 as title };
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
export namespace config {
|
|
243
|
+
export const setUser: string;
|
|
244
|
+
export const setUserGroup: string;
|
|
245
|
+
export const setItemUserField: string;
|
|
246
|
+
const user_2: string;
|
|
247
|
+
export { user_2 as user };
|
|
248
|
+
export const nickName: string;
|
|
249
|
+
const userGroup_1: string;
|
|
250
|
+
export { userGroup_1 as userGroup };
|
|
251
|
+
const description_6: string;
|
|
252
|
+
export { description_6 as description };
|
|
253
|
+
export const fieldName: string;
|
|
254
|
+
const clear_1: string;
|
|
255
|
+
export { clear_1 as clear };
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
export namespace workspaceRole_2 {
|
|
259
|
+
namespace _default_4 {
|
|
260
|
+
const title_18: string;
|
|
261
|
+
export { title_18 as title };
|
|
262
|
+
const description_7: string;
|
|
263
|
+
export { description_7 as description };
|
|
264
|
+
}
|
|
265
|
+
export { _default_4 as default };
|
|
266
|
+
export namespace modal_5 {
|
|
267
|
+
const deleteContent: string;
|
|
268
|
+
const deleteTip: string;
|
|
269
|
+
}
|
|
270
|
+
export { modal_5 as modal };
|
|
271
|
+
export namespace validate_3 {
|
|
272
|
+
const name_7: string;
|
|
273
|
+
export { name_7 as name };
|
|
274
|
+
export const nameLengthError: string;
|
|
275
|
+
export const workspaceRoleKey: string;
|
|
276
|
+
}
|
|
277
|
+
export { validate_3 as validate };
|
|
278
|
+
export namespace FormField_2 {
|
|
279
|
+
const name_8: string;
|
|
280
|
+
export { name_8 as name };
|
|
281
|
+
const description_8: string;
|
|
282
|
+
export { description_8 as description };
|
|
283
|
+
}
|
|
284
|
+
export { FormField_2 as FormField };
|
|
285
|
+
}
|
|
286
|
+
export { workspaceRole_2 as workspaceRole };
|
|
287
|
+
export namespace roles {
|
|
288
|
+
namespace _default_5 {
|
|
289
|
+
const title_19: string;
|
|
290
|
+
export { title_19 as title };
|
|
291
|
+
export const editModalTitle: string;
|
|
292
|
+
export const addChildModalTitle: string;
|
|
293
|
+
export const createModalTitle: string;
|
|
294
|
+
export const authSuccess: string;
|
|
295
|
+
export const cancelAuthSuccess: string;
|
|
296
|
+
export const boardName: string;
|
|
297
|
+
export const addAuth: string;
|
|
298
|
+
export const itemGroupName: string;
|
|
299
|
+
export namespace DEFAULT_BOARD_RULE {
|
|
300
|
+
const name_9: string[];
|
|
301
|
+
export { name_9 as name };
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
export { _default_5 as default };
|
|
305
|
+
export namespace columns_4 {
|
|
306
|
+
const name_10: string;
|
|
307
|
+
export { name_10 as name };
|
|
308
|
+
export const tag: string;
|
|
309
|
+
export const BROWSER_BOARDS: string;
|
|
310
|
+
export const MODIFY_NAME_BOARDS: string;
|
|
311
|
+
export const DELETE_BOARDS: string;
|
|
312
|
+
export const BROWSER_ITEM_GROUPS: string;
|
|
313
|
+
export const MODIFY_ITEM_GROUP_NAME: string;
|
|
314
|
+
export const DELETE_ITEM_GROUP: string;
|
|
315
|
+
}
|
|
316
|
+
export { columns_4 as columns };
|
|
317
|
+
export namespace modal_6 {
|
|
318
|
+
export const removePermission: string;
|
|
319
|
+
export const deleteRole: string;
|
|
320
|
+
const content_6: string;
|
|
321
|
+
export { content_6 as content };
|
|
322
|
+
export const addBoard: string;
|
|
323
|
+
export const addItem: string;
|
|
324
|
+
export const text: string[];
|
|
325
|
+
export namespace _delete_3 {
|
|
326
|
+
const title_20: string;
|
|
327
|
+
export { title_20 as title };
|
|
328
|
+
const content_7: string;
|
|
329
|
+
export { content_7 as content };
|
|
330
|
+
}
|
|
331
|
+
export { _delete_3 as delete };
|
|
332
|
+
export namespace deleteAuth {
|
|
333
|
+
const title_21: string;
|
|
334
|
+
export { title_21 as title };
|
|
335
|
+
const content_8: string;
|
|
336
|
+
export { content_8 as content };
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
export { modal_6 as modal };
|
|
340
|
+
export namespace FormField_3 {
|
|
341
|
+
const boards: string[];
|
|
342
|
+
}
|
|
343
|
+
export { FormField_3 as FormField };
|
|
344
|
+
export namespace MembersModal {
|
|
345
|
+
const placeholder_4: string[];
|
|
346
|
+
export { placeholder_4 as placeholder };
|
|
347
|
+
export namespace message_1 {
|
|
348
|
+
const waring: string[];
|
|
349
|
+
const success: string[];
|
|
350
|
+
}
|
|
351
|
+
export { message_1 as message };
|
|
352
|
+
export namespace modal_7 {
|
|
353
|
+
const title_22: string[];
|
|
354
|
+
export { title_22 as title };
|
|
355
|
+
}
|
|
356
|
+
export { modal_7 as modal };
|
|
357
|
+
export namespace FormField_4 {
|
|
358
|
+
const placeholder_5: string[];
|
|
359
|
+
export { placeholder_5 as placeholder };
|
|
360
|
+
const users_1: string;
|
|
361
|
+
export { users_1 as users };
|
|
362
|
+
const tag_1: string;
|
|
363
|
+
export { tag_1 as tag };
|
|
364
|
+
const name_11: string;
|
|
365
|
+
export { name_11 as name };
|
|
366
|
+
const role_2: string;
|
|
367
|
+
export { role_2 as role };
|
|
368
|
+
export namespace TreeSelect {
|
|
369
|
+
const title_23: string;
|
|
370
|
+
export { title_23 as title };
|
|
371
|
+
}
|
|
372
|
+
export const authType: string;
|
|
373
|
+
}
|
|
374
|
+
export { FormField_4 as FormField };
|
|
375
|
+
export namespace validate_4 {
|
|
376
|
+
const tag_2: string[];
|
|
377
|
+
export { tag_2 as tag };
|
|
378
|
+
const name_12: string;
|
|
379
|
+
export { name_12 as name };
|
|
380
|
+
}
|
|
381
|
+
export { validate_4 as validate };
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
export namespace permissionScheme {
|
|
385
|
+
namespace _default_6 {
|
|
386
|
+
const title_24: string;
|
|
387
|
+
export { title_24 as title };
|
|
388
|
+
const description_9: string;
|
|
389
|
+
export { description_9 as description };
|
|
390
|
+
const message_2: string[];
|
|
391
|
+
export { message_2 as message };
|
|
392
|
+
export const createPermission: string;
|
|
393
|
+
export const titleSettings: string;
|
|
394
|
+
}
|
|
395
|
+
export { _default_6 as default };
|
|
396
|
+
export namespace FormField_5 {
|
|
397
|
+
const create_3: string;
|
|
398
|
+
export { create_3 as create };
|
|
399
|
+
const edit_2: string;
|
|
400
|
+
export { edit_2 as edit };
|
|
401
|
+
const name_13: string;
|
|
402
|
+
export { name_13 as name };
|
|
403
|
+
const description_10: string;
|
|
404
|
+
export { description_10 as description };
|
|
405
|
+
export const cancel: string;
|
|
406
|
+
export const okText: string;
|
|
407
|
+
export const confirmAndConfig: string;
|
|
408
|
+
}
|
|
409
|
+
export { FormField_5 as FormField };
|
|
410
|
+
export namespace validate_5 {
|
|
411
|
+
const name_14: string;
|
|
412
|
+
export { name_14 as name };
|
|
413
|
+
export const nameSpace: string;
|
|
414
|
+
const nameLengthError_1: string;
|
|
415
|
+
export { nameLengthError_1 as nameLengthError };
|
|
416
|
+
export const descriptionLengthError: string;
|
|
417
|
+
}
|
|
418
|
+
export { validate_5 as validate };
|
|
419
|
+
export namespace columns_5 {
|
|
420
|
+
const usageWorkspaces: string;
|
|
421
|
+
const schemeName: string;
|
|
422
|
+
}
|
|
423
|
+
export { columns_5 as columns };
|
|
424
|
+
export namespace modal_8 {
|
|
425
|
+
const title_25: string;
|
|
426
|
+
export { title_25 as title };
|
|
427
|
+
export namespace content_9 {
|
|
428
|
+
export const areYouSure: string;
|
|
429
|
+
const deleteTip_1: string;
|
|
430
|
+
export { deleteTip_1 as deleteTip };
|
|
431
|
+
}
|
|
432
|
+
export { content_9 as content };
|
|
433
|
+
const userType_1: string;
|
|
434
|
+
export { userType_1 as userType };
|
|
435
|
+
export const userTypePlaceHolder: string;
|
|
436
|
+
export const removeContent: string;
|
|
437
|
+
export const setSuccessfully: string;
|
|
438
|
+
export const cancelSuccessfully: string;
|
|
439
|
+
}
|
|
440
|
+
export { modal_8 as modal };
|
|
441
|
+
export namespace config_1 {
|
|
442
|
+
const workspaceRoleName: string;
|
|
443
|
+
const workspaceRoleAndUserName: string;
|
|
444
|
+
const workspaceCreator: string;
|
|
445
|
+
namespace schemeId {
|
|
446
|
+
namespace _default_7 {
|
|
447
|
+
const title_26: string;
|
|
448
|
+
export { title_26 as title };
|
|
449
|
+
export const msg: string;
|
|
450
|
+
}
|
|
451
|
+
export { _default_7 as default };
|
|
452
|
+
const modal_9: {};
|
|
453
|
+
export { modal_9 as modal };
|
|
454
|
+
}
|
|
455
|
+
const selectTypePlaceHolder: string;
|
|
456
|
+
const inWorkspaceTip: string;
|
|
457
|
+
const systemRoleTip: string;
|
|
458
|
+
namespace permissions {
|
|
459
|
+
const browserWorkspaces: string;
|
|
460
|
+
const adminWorkspaces: string;
|
|
461
|
+
const browserItems: string;
|
|
462
|
+
const addItems: string;
|
|
463
|
+
const modifyItems: string;
|
|
464
|
+
const deleteItems: string;
|
|
465
|
+
const addPublicViews: string;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
export { config_1 as config };
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
export default permission;
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
export namespace placeholder {
|
|
2
|
+
namespace _default {
|
|
3
|
+
const selectRole: string;
|
|
4
|
+
const nameType: string;
|
|
5
|
+
const valueType: string;
|
|
6
|
+
const select: string;
|
|
7
|
+
const selectTime: string;
|
|
8
|
+
const selectUserField: string;
|
|
9
|
+
const pass: string;
|
|
10
|
+
const custom: string;
|
|
11
|
+
const expressionEg: string;
|
|
12
|
+
const selectMethods: string;
|
|
13
|
+
const condition: string;
|
|
14
|
+
const types: string;
|
|
15
|
+
const keywords: string;
|
|
16
|
+
const enter: string;
|
|
17
|
+
const copy: string;
|
|
18
|
+
const email: string;
|
|
19
|
+
const description: string;
|
|
20
|
+
const enableMessage: string[];
|
|
21
|
+
const inputNameLength: string;
|
|
22
|
+
const inputLink: string;
|
|
23
|
+
const inputUrl: string;
|
|
24
|
+
const inputDesc: string;
|
|
25
|
+
const input: string;
|
|
26
|
+
const inputName: string;
|
|
27
|
+
const nameExist: string;
|
|
28
|
+
const keywordsOrItemID: string;
|
|
29
|
+
const selectFile: string;
|
|
30
|
+
const expressionForIQL: string;
|
|
31
|
+
const expressionForCron: string;
|
|
32
|
+
const inputTheme: string;
|
|
33
|
+
const selectApprovalFlow: string;
|
|
34
|
+
const selectSuperior: string;
|
|
35
|
+
const enterExpression: string;
|
|
36
|
+
const selectSystemRequest: string;
|
|
37
|
+
const inputTimeout: string;
|
|
38
|
+
const selectExecutor: string;
|
|
39
|
+
const selectRange: string;
|
|
40
|
+
}
|
|
41
|
+
export { _default as default };
|
|
42
|
+
export namespace workspace {
|
|
43
|
+
export const selectBelongsToWorkspace: string;
|
|
44
|
+
const select_1: string;
|
|
45
|
+
export { select_1 as select };
|
|
46
|
+
export const workspaceTemplate: string;
|
|
47
|
+
export const configScheme: string;
|
|
48
|
+
export const workspaceScheme: string;
|
|
49
|
+
export const nameLength: string;
|
|
50
|
+
export const workspaceNamelength: string;
|
|
51
|
+
export const workspaceKey: string[];
|
|
52
|
+
export const selectPermissionScheme: string;
|
|
53
|
+
export const desc: string;
|
|
54
|
+
export const selectWorkspace: string;
|
|
55
|
+
export const selectTemplateCategory: string;
|
|
56
|
+
export const searchWorkspaceName: string;
|
|
57
|
+
export const workspaceName: string;
|
|
58
|
+
export const inputKey: string;
|
|
59
|
+
export const boardViewName: string;
|
|
60
|
+
export const boardViewType: string;
|
|
61
|
+
export const selectBoard: string;
|
|
62
|
+
export const boardRule: string;
|
|
63
|
+
export const selectGroup: string;
|
|
64
|
+
}
|
|
65
|
+
export namespace filters {
|
|
66
|
+
const selectCondition: string;
|
|
67
|
+
const titleKeywords: string;
|
|
68
|
+
const expression: string;
|
|
69
|
+
}
|
|
70
|
+
export namespace item {
|
|
71
|
+
const select_2: string;
|
|
72
|
+
export { select_2 as select };
|
|
73
|
+
export const relationTtem: string;
|
|
74
|
+
export const selectRelation: string;
|
|
75
|
+
export const all: string;
|
|
76
|
+
export const itemLink: string;
|
|
77
|
+
export const itemType: string;
|
|
78
|
+
export const selectItemTitle: string;
|
|
79
|
+
export const inputItemRelate: string;
|
|
80
|
+
export const inputDes: string;
|
|
81
|
+
export const selectItemType: string;
|
|
82
|
+
export const outward: string[];
|
|
83
|
+
}
|
|
84
|
+
export namespace automation {
|
|
85
|
+
export const name: string;
|
|
86
|
+
export const automationRules: string;
|
|
87
|
+
const desc_1: string;
|
|
88
|
+
export { desc_1 as desc };
|
|
89
|
+
export const moveScence: string;
|
|
90
|
+
}
|
|
91
|
+
export namespace fields {
|
|
92
|
+
export const setMaxRows: string;
|
|
93
|
+
const select_3: string;
|
|
94
|
+
export { select_3 as select };
|
|
95
|
+
export const pleaseSelect: string;
|
|
96
|
+
const input_1: string;
|
|
97
|
+
export { input_1 as input };
|
|
98
|
+
export const field: string;
|
|
99
|
+
export const inputMaxLength: string;
|
|
100
|
+
export const searchContent: string;
|
|
101
|
+
export const fieldRepeat: string;
|
|
102
|
+
export const fieldBehaviorNameLength: string;
|
|
103
|
+
export const inputComments: string;
|
|
104
|
+
export const placeholderTip: string;
|
|
105
|
+
export const maxPlaceholderTip: string;
|
|
106
|
+
export const fieldDoc: string;
|
|
107
|
+
export const maxFieldDoc: string;
|
|
108
|
+
export const optionValue: string;
|
|
109
|
+
export const selectDateType: string;
|
|
110
|
+
export const placeholderStart: string;
|
|
111
|
+
export const placeholderEnd: string;
|
|
112
|
+
export const selectDateFormat: string;
|
|
113
|
+
export const setDateRangeSeparator: string;
|
|
114
|
+
export const optionName: string;
|
|
115
|
+
export const inputTypeName: string;
|
|
116
|
+
export const fieldName: string;
|
|
117
|
+
export const fieldKey: string;
|
|
118
|
+
export const uploadMaxCount: string;
|
|
119
|
+
export const fileSize: string;
|
|
120
|
+
export const customAfter: string;
|
|
121
|
+
export const fileAfter: string;
|
|
122
|
+
export const prefix: string;
|
|
123
|
+
export const suffix: string;
|
|
124
|
+
export const inputItemId: string;
|
|
125
|
+
export const inputKeywords: string;
|
|
126
|
+
export const linkCards: string;
|
|
127
|
+
export const inputDefaultValue: string;
|
|
128
|
+
export const setCharacterCount: string;
|
|
129
|
+
export const setMinRow: string;
|
|
130
|
+
export const inputReg: string;
|
|
131
|
+
export const inputErrorTip: string;
|
|
132
|
+
export const inputMin: string;
|
|
133
|
+
export const inputPrefix: string;
|
|
134
|
+
export const inputSuffix: string;
|
|
135
|
+
export const inputStep: string;
|
|
136
|
+
export const setDecimalProgress: string;
|
|
137
|
+
export const selectStatusType: string;
|
|
138
|
+
export const searchOrCreateTag: string;
|
|
139
|
+
export const inputSearch: string;
|
|
140
|
+
export const inputMax: string;
|
|
141
|
+
export const inputSearchContent: string;
|
|
142
|
+
export const inputMaxForSixteen: string;
|
|
143
|
+
export const setTimeFormat: string;
|
|
144
|
+
export const selectPrority: string;
|
|
145
|
+
export const inputPriorityName: string;
|
|
146
|
+
}
|
|
147
|
+
export namespace sprint {
|
|
148
|
+
const selectSprint: string;
|
|
149
|
+
}
|
|
150
|
+
export namespace expression_1 {
|
|
151
|
+
const enter_1: string;
|
|
152
|
+
export { enter_1 as enter };
|
|
153
|
+
}
|
|
154
|
+
export { expression_1 as expression };
|
|
155
|
+
export namespace dataSource {
|
|
156
|
+
const inputName_1: string;
|
|
157
|
+
export { inputName_1 as inputName };
|
|
158
|
+
export const inputDataItemValue: string;
|
|
159
|
+
export const inputNameLong: string;
|
|
160
|
+
}
|
|
161
|
+
export namespace users {
|
|
162
|
+
const userGroup: string;
|
|
163
|
+
const enterName: string;
|
|
164
|
+
const nameSearch: string;
|
|
165
|
+
const selectUserRole: string;
|
|
166
|
+
}
|
|
167
|
+
export namespace status {
|
|
168
|
+
export const target: string;
|
|
169
|
+
export const open: string;
|
|
170
|
+
const all_1: string;
|
|
171
|
+
export { all_1 as all };
|
|
172
|
+
}
|
|
173
|
+
export namespace application {
|
|
174
|
+
const enterApplicationName: string;
|
|
175
|
+
const enterKey: string;
|
|
176
|
+
const enterApplicationVersion: string;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
export default placeholder;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export namespace plugin {
|
|
2
|
+
namespace _default {
|
|
3
|
+
const getPlugin: string;
|
|
4
|
+
const server: string;
|
|
5
|
+
const assetsNotFound: string;
|
|
6
|
+
const assetsLoading: string;
|
|
7
|
+
const scriptLoading: string;
|
|
8
|
+
const unknown: string;
|
|
9
|
+
const retry: string;
|
|
10
|
+
const tip: string;
|
|
11
|
+
const copyError: string;
|
|
12
|
+
const loading: string;
|
|
13
|
+
}
|
|
14
|
+
export { _default as default };
|
|
15
|
+
export namespace views {
|
|
16
|
+
const uploadFileDesc: string;
|
|
17
|
+
const inputUrl: string;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export default plugin;
|