@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.
Files changed (306) hide show
  1. package/dist/cells/actors/BaseField.d.ts +17 -0
  2. package/dist/cells/actors/index.d.ts +4 -0
  3. package/dist/cells/annex/index.d.ts +7 -0
  4. package/dist/cells/assignee/index.d.ts +23 -0
  5. package/dist/cells/bind-workspace/BaseField.d.ts +15 -0
  6. package/dist/cells/bind-workspace/index.d.ts +12 -0
  7. package/dist/cells/board/index.d.ts +22 -0
  8. package/dist/cells/card-type/index.d.ts +6 -0
  9. package/dist/cells/checkbox/BaseField.d.ts +14 -0
  10. package/dist/cells/created-at/index.d.ts +7 -0
  11. package/dist/cells/created-by/index.d.ts +9 -0
  12. package/dist/cells/data-quote/index.d.ts +8 -0
  13. package/dist/cells/data-quote/util.d.ts +9 -0
  14. package/dist/cells/date/BaseField.d.ts +21 -0
  15. package/dist/cells/date/index.d.ts +6 -0
  16. package/dist/cells/date-range/BaseField.d.ts +19 -0
  17. package/dist/cells/date-range/index.d.ts +6 -0
  18. package/dist/cells/dropdown/BaseField.d.ts +30 -0
  19. package/dist/cells/dropdown/index.d.ts +22 -0
  20. package/dist/cells/editor/BaseField.d.ts +29 -0
  21. package/dist/cells/editor/Field.d.ts +16 -0
  22. package/dist/cells/editor/config/autoformatRules.d.ts +3 -0
  23. package/dist/cells/editor/config/index.d.ts +5 -0
  24. package/dist/cells/editor/config/pluginOptions.d.ts +10 -0
  25. package/dist/cells/editor/config/withDeserializeHTML.d.ts +64 -0
  26. package/dist/cells/editor/config/withStyledDraggables.d.ts +2 -0
  27. package/dist/cells/editor/config/withStyledPlaceHolders.d.ts +2 -0
  28. package/dist/cells/editor/elements/ImageElement.d.ts +3 -0
  29. package/dist/cells/editor/elements/MentionElement.d.ts +3 -0
  30. package/dist/cells/editor/elements/index.d.ts +2 -0
  31. package/dist/cells/editor/hooks.d.ts +11 -0
  32. package/dist/cells/editor/index.d.ts +15 -0
  33. package/dist/cells/editor/plugins/Fullscreen.d.ts +7 -0
  34. package/dist/cells/editor/plugins/ToolbarButton.d.ts +3 -0
  35. package/dist/cells/editor/plugins/ToolbarFont.d.ts +12 -0
  36. package/dist/cells/editor/plugins/ToolbarFontColor.d.ts +7 -0
  37. package/dist/cells/editor/plugins/ToolbarHistory.d.ts +7 -0
  38. package/dist/cells/editor/plugins/ToolbarLink.d.ts +4 -0
  39. package/dist/cells/editor/plugins/ToolbarTable.d.ts +4 -0
  40. package/dist/cells/editor/plugins/ToolbarUpload.d.ts +4 -0
  41. package/dist/cells/editor/plugins/Toolbars.d.ts +11 -0
  42. package/dist/cells/editor/plugins/font-bg-color/createFontBgColorPlugin.d.ts +3 -0
  43. package/dist/cells/editor/plugins/font-bg-color/defaults.d.ts +2 -0
  44. package/dist/cells/editor/plugins/font-bg-color/getFontDeserialize.d.ts +2 -0
  45. package/dist/cells/editor/plugins/font-bg-color/index.d.ts +3 -0
  46. package/dist/cells/editor/plugins/font-color/createFontColorPlugin.d.ts +3 -0
  47. package/dist/cells/editor/plugins/font-color/defaults.d.ts +2 -0
  48. package/dist/cells/editor/plugins/font-color/getFontDeserialize.d.ts +2 -0
  49. package/dist/cells/editor/plugins/font-color/index.d.ts +3 -0
  50. package/dist/cells/editor/plugins/font-family/createFontFamilyPlugin.d.ts +3 -0
  51. package/dist/cells/editor/plugins/font-family/defaults.d.ts +2 -0
  52. package/dist/cells/editor/plugins/font-family/getFontDeserialize.d.ts +2 -0
  53. package/dist/cells/editor/plugins/font-family/index.d.ts +3 -0
  54. package/dist/cells/editor/plugins/font-line-height/createFontLineHeightPlugin.d.ts +3 -0
  55. package/dist/cells/editor/plugins/font-line-height/defaults.d.ts +2 -0
  56. package/dist/cells/editor/plugins/font-line-height/getFontDeserialize.d.ts +2 -0
  57. package/dist/cells/editor/plugins/font-line-height/index.d.ts +3 -0
  58. package/dist/cells/editor/plugins/font-size/createFontSizePlugin.d.ts +3 -0
  59. package/dist/cells/editor/plugins/font-size/defaults.d.ts +2 -0
  60. package/dist/cells/editor/plugins/font-size/getFontDeserialize.d.ts +2 -0
  61. package/dist/cells/editor/plugins/font-size/index.d.ts +3 -0
  62. package/dist/cells/editor/plugins/image/createImagePlugin.d.ts +3 -0
  63. package/dist/cells/editor/plugins/image/getImageDeserialize.d.ts +2 -0
  64. package/dist/cells/editor/plugins/image/index.d.ts +3 -0
  65. package/dist/cells/editor/plugins/image/insertImage.d.ts +2 -0
  66. package/dist/cells/editor/plugins/image/withImageUpload.d.ts +3 -0
  67. package/dist/cells/editor/plugins/index.d.ts +6 -0
  68. package/dist/cells/editor/utils.d.ts +13 -0
  69. package/dist/cells/file/BaseField.d.ts +15 -0
  70. package/dist/cells/file/UploadFile.d.ts +19 -0
  71. package/dist/cells/file/index.d.ts +13 -0
  72. package/dist/cells/formula/BaseField.d.ts +10 -0
  73. package/dist/cells/formula/index.d.ts +9 -0
  74. package/dist/cells/item-group/index.d.ts +22 -0
  75. package/dist/cells/item-type/index.d.ts +23 -0
  76. package/dist/cells/key/index.d.ts +6 -0
  77. package/dist/cells/long-text/BaseField.d.ts +17 -0
  78. package/dist/cells/long-text/index.d.ts +15 -0
  79. package/dist/cells/name/index.d.ts +14 -0
  80. package/dist/cells/number/BaseField.d.ts +24 -0
  81. package/dist/cells/number/index.d.ts +23 -0
  82. package/dist/cells/priority/index.d.ts +16 -0
  83. package/dist/cells/radio/BaseField.d.ts +14 -0
  84. package/dist/cells/script/BaseField.d.ts +8 -0
  85. package/dist/cells/script/index.d.ts +7 -0
  86. package/dist/cells/security-level/BaseField.d.ts +19 -0
  87. package/dist/cells/sprint/index.d.ts +22 -0
  88. package/dist/cells/status/Field.d.ts +26 -0
  89. package/dist/cells/status/Transition.d.ts +15 -0
  90. package/dist/cells/status/TransitionButton.d.ts +27 -0
  91. package/dist/cells/status/TransitionPanel.d.ts +15 -0
  92. package/dist/cells/status/View.d.ts +10 -0
  93. package/dist/cells/status/hooks.d.ts +3 -0
  94. package/dist/cells/status/index.d.ts +4 -0
  95. package/dist/cells/story-point/index.d.ts +23 -0
  96. package/dist/cells/tableCellMapping.d.ts +23 -0
  97. package/dist/cells/tag/BaseField.d.ts +22 -0
  98. package/dist/cells/tag/tag-multiple-select/PopoverPanel.d.ts +4 -0
  99. package/dist/cells/tag/tag-multiple-select/TagPopoverSelect.d.ts +4 -0
  100. package/dist/cells/text/BaseField.d.ts +16 -0
  101. package/dist/cells/text/index.d.ts +16 -0
  102. package/dist/cells/time/BaseField.d.ts +15 -0
  103. package/dist/cells/time/index.d.ts +6 -0
  104. package/dist/cells/time-range/BaseField.d.ts +20 -0
  105. package/dist/cells/time-range/index.d.ts +7 -0
  106. package/dist/cells/tree/BaseField.d.ts +15 -0
  107. package/dist/cells/tree/utils.d.ts +2 -0
  108. package/dist/cells/updated-at/index.d.ts +7 -0
  109. package/dist/cells/updated-by/index.d.ts +9 -0
  110. package/dist/cells/user/BaseField.d.ts +27 -0
  111. package/dist/cells/user/index.d.ts +21 -0
  112. package/dist/cells/version/index.d.ts +22 -0
  113. package/dist/cells/workspace/index.d.ts +22 -0
  114. package/dist/common/EmptyField.d.ts +6 -0
  115. package/dist/common/FieldErrorBoundary.d.ts +14 -0
  116. package/dist/common/OverflowTooltip.d.ts +23 -0
  117. package/dist/common/UploadFile.d.ts +19 -0
  118. package/dist/common/base-table/ChildCardInlineCreator.d.ts +9 -0
  119. package/dist/common/base-table/index.d.ts +16 -0
  120. package/dist/common/columns-settings/ColumnsSettings.d.ts +5 -0
  121. package/dist/common/columns-settings/ColumnsSettingsItem.d.ts +4 -0
  122. package/dist/common/data-source/context.d.ts +2 -0
  123. package/dist/common/filters/filter-query/FilterPanel.d.ts +4 -0
  124. package/dist/common/filters/filter-query/IqlExpression.d.ts +6 -0
  125. package/dist/common/filters/filter-query/QuerySelector.d.ts +4 -0
  126. package/dist/common/filters/filter-query/utils.d.ts +18 -0
  127. package/dist/common/form-field/FormField.d.ts +15 -0
  128. package/dist/common/form-field/pure-field/FieldLayout.d.ts +5 -0
  129. package/dist/common/form-field/pure-field/FormikEnhance.d.ts +1 -0
  130. package/dist/common/form-field/pure-field/PureField.d.ts +8 -0
  131. package/dist/common/formik-field-touched/FormikFieldTouched.d.ts +2 -0
  132. package/dist/common/index.d.ts +16 -0
  133. package/dist/common/item/IssueActionDropdown.d.ts +18 -0
  134. package/dist/common/item-icon/ItemIcon.d.ts +8 -0
  135. package/dist/common/plugin/PluginComponents.d.ts +17 -0
  136. package/dist/common/plugin/PluginErrorContainer.d.ts +15 -0
  137. package/dist/common/plugin/PluginLoadComponent.d.ts +27 -0
  138. package/dist/common/search-select/PopoverPanel.d.ts +4 -0
  139. package/dist/common/search-select/SearchPopoverSelect.d.ts +4 -0
  140. package/dist/common/status-selector/index.d.ts +9 -0
  141. package/dist/common/structure/hooks.d.ts +30 -0
  142. package/dist/common/structure/index.d.ts +11 -0
  143. package/dist/common/structure/table-components/TableActionMenu.d.ts +18 -0
  144. package/dist/common/structure/table-components/TableColumnSettings.d.ts +13 -0
  145. package/dist/common/structure/table-components/TableEmpty.d.ts +6 -0
  146. package/dist/common/structure/table-components/TableTitleCell.d.ts +16 -0
  147. package/dist/common/structure/table-components/index.d.ts +11 -0
  148. package/dist/common/structure/table-components/tableCellMapping.d.ts +23 -0
  149. package/dist/common/structure/table-components/useCacheColumns.d.ts +13 -0
  150. package/dist/common/structure/table-components/useTableColumns.d.ts +22 -0
  151. package/dist/common/structure/table-components/useTableMenu.d.ts +42 -0
  152. package/dist/common/structure-table/Table.d.ts +4 -0
  153. package/dist/common/structure-table/components/Action.d.ts +15 -0
  154. package/dist/common/structure-table/components/Collapse.d.ts +12 -0
  155. package/dist/common/structure-table/components/CollapseIcon.d.ts +6 -0
  156. package/dist/common/structure-table/components/DraggableRow.d.ts +5 -0
  157. package/dist/common/structure-table/components/Handle.d.ts +3 -0
  158. package/dist/common/structure-table/components/Row.d.ts +25 -0
  159. package/dist/common/structure-table/components/index.d.ts +6 -0
  160. package/dist/common/structure-table/index.d.ts +1 -0
  161. package/dist/common/user-field/UserAvatar.d.ts +13 -0
  162. package/dist/common/user-field/UserField.d.ts +15 -0
  163. package/dist/common/user-field/index.d.ts +2 -0
  164. package/dist/common/utils.d.ts +41 -0
  165. package/dist/common/workflow/View.d.ts +11 -0
  166. package/dist/common/workflow/config.d.ts +87 -0
  167. package/dist/common/workflow/nodes/StartNode.d.ts +10 -0
  168. package/dist/common/workflow/nodes/TaskNode.d.ts +12 -0
  169. package/dist/common/workflow/nodes/index.d.ts +2 -0
  170. package/dist/fields/base-component/BaseLabel.d.ts +10 -0
  171. package/dist/fields/base-component/utils.d.ts +4 -0
  172. package/dist/fields/data-quote/util.d.ts +9 -0
  173. package/dist/fields/item-activity/BaseField.d.ts +7 -0
  174. package/dist/fields/item-activity/Comment.d.ts +7 -0
  175. package/dist/fields/item-level/hooks.d.ts +15 -0
  176. package/dist/fields/item-level/utils.d.ts +25 -0
  177. package/dist/icons/index.d.ts +48 -0
  178. package/dist/index.d.ts +49 -0
  179. package/dist/index.js +1 -1
  180. package/dist/index.js.LICENSE.txt +15 -0
  181. package/dist/index.js.map +1 -1
  182. package/dist/lib/ParentMessage.d.ts +7 -0
  183. package/dist/lib/apis/filter/iql.d.ts +6 -0
  184. package/dist/lib/apis/forest.d.ts +2 -0
  185. package/dist/lib/apis/groups/index.d.ts +21 -0
  186. package/dist/lib/apis/roles/index.d.ts +11 -0
  187. package/dist/lib/apis/screen/fields.d.ts +21 -0
  188. package/dist/lib/apis/screen/fieldsBehavior.d.ts +10 -0
  189. package/dist/lib/apis/screen/index.d.ts +20 -0
  190. package/dist/lib/contexts/LibraryProvider.d.ts +18 -0
  191. package/dist/lib/contexts/currentUserAndRoles.d.ts +15 -0
  192. package/dist/lib/contexts/index.d.ts +7 -0
  193. package/dist/lib/contexts/token.d.ts +13 -0
  194. package/dist/lib/contexts/users.d.ts +11 -0
  195. package/dist/lib/contexts/values.d.ts +6 -0
  196. package/dist/lib/customFields/hooks.d.ts +24 -0
  197. package/dist/lib/dataQuoteStore.d.ts +2 -0
  198. package/dist/lib/date.d.ts +19 -0
  199. package/dist/lib/dayjs.d.ts +4 -0
  200. package/dist/lib/env.d.ts +2 -0
  201. package/dist/lib/error/index.d.ts +2 -0
  202. package/dist/lib/error/log.d.ts +13 -0
  203. package/dist/lib/error/utils.d.ts +13 -0
  204. package/dist/lib/events.d.ts +11 -0
  205. package/dist/lib/fetch.d.ts +50 -0
  206. package/dist/lib/filters/filter-query/utils.d.ts +18 -0
  207. package/dist/lib/forest.d.ts +60 -0
  208. package/dist/lib/global.d.ts +1114 -0
  209. package/dist/lib/hooks/index.d.ts +13 -0
  210. package/dist/lib/hooks/useCurrentUser.d.ts +3 -0
  211. package/dist/lib/hooks/useCustomFields.d.ts +9 -0
  212. package/dist/lib/hooks/useDataQuoteStore.d.ts +7 -0
  213. package/dist/lib/hooks/useFieldTypes.d.ts +9 -0
  214. package/dist/lib/hooks/useFields.d.ts +12 -0
  215. package/dist/lib/hooks/useI18n.d.ts +1 -0
  216. package/dist/lib/hooks/useItemsInfinite.d.ts +48 -0
  217. package/dist/lib/hooks/useRemoteComponents.d.ts +25 -0
  218. package/dist/lib/hooks/useTenants.d.ts +7 -0
  219. package/dist/lib/hooks/useToken.d.ts +3 -0
  220. package/dist/lib/hooks/useUsers.d.ts +8 -0
  221. package/dist/lib/hooks/useWatchItemUpdate.d.ts +32 -0
  222. package/dist/lib/hooks/useWorkspaces.d.ts +8 -0
  223. package/dist/lib/i18n.d.ts +24 -0
  224. package/dist/lib/iql.d.ts +31 -0
  225. package/dist/lib/item/hooks.d.ts +31 -0
  226. package/dist/lib/item/utils.d.ts +34 -0
  227. package/dist/lib/kanban/hooks.d.ts +8 -0
  228. package/dist/lib/locales.d.ts +4 -0
  229. package/dist/lib/models.d.ts +59 -0
  230. package/dist/lib/parse.d.ts +3 -0
  231. package/dist/lib/path.d.ts +4 -0
  232. package/dist/lib/proxima-sdk/components/index.d.ts +2 -0
  233. package/dist/lib/proxima-sdk/hooks/index.d.ts +4 -0
  234. package/dist/lib/proxima-sdk/index.d.ts +5 -0
  235. package/dist/lib/proxima-sdk/lib/index.d.ts +9 -0
  236. package/dist/lib/proxima-sdk/schema/index.d.ts +2 -0
  237. package/dist/lib/regExp.d.ts +11 -0
  238. package/dist/lib/storage.d.ts +7 -0
  239. package/dist/lib/store.d.ts +14 -0
  240. package/dist/lib/types/index.d.ts +3 -0
  241. package/dist/lib/types/parse-models.d.ts +6 -0
  242. package/dist/lib/useInitialRecoilState.d.ts +3 -0
  243. package/dist/lib/useParseQuery.d.ts +53 -0
  244. package/dist/lib/usePluginManifest.d.ts +33 -0
  245. package/dist/lib/useUser.d.ts +62 -0
  246. package/dist/lib/useWatchApp.d.ts +4 -0
  247. package/dist/lib/useWorkspace.d.ts +1 -0
  248. package/dist/lib/users.d.ts +3 -0
  249. package/dist/lib/workflow.d.ts +123 -0
  250. package/dist/lib/workspace.d.ts +2 -0
  251. package/dist/locales/en/en_US.d.ts +45 -0
  252. package/dist/locales/en/package/application.d.ts +73 -0
  253. package/dist/locales/en/package/automation.d.ts +303 -0
  254. package/dist/locales/en/package/date.d.ts +54 -0
  255. package/dist/locales/en/package/fields.d.ts +409 -0
  256. package/dist/locales/en/package/filters.d.ts +89 -0
  257. package/dist/locales/en/package/formField.d.ts +157 -0
  258. package/dist/locales/en/package/global.d.ts +318 -0
  259. package/dist/locales/en/package/item.d.ts +489 -0
  260. package/dist/locales/en/package/itemTypes.d.ts +154 -0
  261. package/dist/locales/en/package/lib.d.ts +127 -0
  262. package/dist/locales/en/package/message.d.ts +251 -0
  263. package/dist/locales/en/package/pages.d.ts +67 -0
  264. package/dist/locales/en/package/permission.d.ts +471 -0
  265. package/dist/locales/en/package/placeholder.d.ts +179 -0
  266. package/dist/locales/en/package/plugin.d.ts +20 -0
  267. package/dist/locales/en/package/report.d.ts +150 -0
  268. package/dist/locales/en/package/reportPlugin.d.ts +183 -0
  269. package/dist/locales/en/package/screen.d.ts +121 -0
  270. package/dist/locales/en/package/sections.d.ts +60 -0
  271. package/dist/locales/en/package/settings.d.ts +194 -0
  272. package/dist/locales/en/package/sprint.d.ts +52 -0
  273. package/dist/locales/en/package/users.d.ts +58 -0
  274. package/dist/locales/en/package/validate.d.ts +138 -0
  275. package/dist/locales/en/package/views.d.ts +383 -0
  276. package/dist/locales/en/package/workflow.d.ts +245 -0
  277. package/dist/locales/en/package/workspace.d.ts +343 -0
  278. package/dist/locales/zh/package/application.d.ts +73 -0
  279. package/dist/locales/zh/package/automation.d.ts +303 -0
  280. package/dist/locales/zh/package/date.d.ts +54 -0
  281. package/dist/locales/zh/package/fields.d.ts +409 -0
  282. package/dist/locales/zh/package/filters.d.ts +89 -0
  283. package/dist/locales/zh/package/formField.d.ts +162 -0
  284. package/dist/locales/zh/package/global.d.ts +318 -0
  285. package/dist/locales/zh/package/item.d.ts +489 -0
  286. package/dist/locales/zh/package/itemTypes.d.ts +153 -0
  287. package/dist/locales/zh/package/lib.d.ts +127 -0
  288. package/dist/locales/zh/package/message.d.ts +251 -0
  289. package/dist/locales/zh/package/pages.d.ts +67 -0
  290. package/dist/locales/zh/package/permission.d.ts +470 -0
  291. package/dist/locales/zh/package/placeholder.d.ts +172 -0
  292. package/dist/locales/zh/package/plugin.d.ts +20 -0
  293. package/dist/locales/zh/package/report.d.ts +150 -0
  294. package/dist/locales/zh/package/reportPlugin.d.ts +183 -0
  295. package/dist/locales/zh/package/screen.d.ts +116 -0
  296. package/dist/locales/zh/package/sections.d.ts +63 -0
  297. package/dist/locales/zh/package/settings.d.ts +192 -0
  298. package/dist/locales/zh/package/sprint.d.ts +52 -0
  299. package/dist/locales/zh/package/users.d.ts +58 -0
  300. package/dist/locales/zh/package/validate.d.ts +138 -0
  301. package/dist/locales/zh/package/views.d.ts +380 -0
  302. package/dist/locales/zh/package/workflow.d.ts +245 -0
  303. package/dist/locales/zh/package/workspace.d.ts +344 -0
  304. package/dist/locales/zh/zh_CN.d.ts +46 -0
  305. package/dist/osui/index.d.ts +8 -0
  306. package/package.json +3 -2
@@ -0,0 +1,489 @@
1
+ export namespace item {
2
+ export { defaultConfig as default };
3
+ export namespace modal {
4
+ export const copyText: string;
5
+ export const name: string;
6
+ export const copyItemTitle: string;
7
+ export const editTitle: string;
8
+ export const createTitle: string;
9
+ export namespace _delete {
10
+ const title: string[];
11
+ }
12
+ export { _delete as delete };
13
+ }
14
+ export namespace view {
15
+ const itemType: string;
16
+ const itemHierarchy: string;
17
+ const allRemove: string;
18
+ namespace Headers {
19
+ namespace menus {
20
+ const addItem: string;
21
+ const addItemLink: string;
22
+ const moveItems: string;
23
+ const updateParentItem: string;
24
+ const backItem: string;
25
+ const copyItemId: string;
26
+ const copyKeyAndTitle: string;
27
+ const copyItemUrl: string;
28
+ }
29
+ }
30
+ namespace Watchers {
31
+ const unfollow: string;
32
+ const follow: string;
33
+ const attention: string;
34
+ const nofollowers: string;
35
+ }
36
+ }
37
+ }
38
+ export namespace itemGroup {
39
+ namespace _default {
40
+ export const add: string;
41
+ const title_1: string;
42
+ export { title_1 as title };
43
+ export const userGroup: string;
44
+ export const clear: string;
45
+ export const createChild: string;
46
+ export const createMsg: string;
47
+ export const messageWarning: string;
48
+ export const messageSuccess: string;
49
+ export const messageError: string;
50
+ export const enterItemGroupName: string;
51
+ export const selectItemGroup: string;
52
+ export const max: string;
53
+ export const message: string[];
54
+ export namespace FormField {
55
+ const name_1: string;
56
+ export { name_1 as name };
57
+ export const itemGroup: string;
58
+ }
59
+ export const font: string[];
60
+ }
61
+ export { _default as default };
62
+ export namespace columns {
63
+ const name_2: string;
64
+ export { name_2 as name };
65
+ export const key: string;
66
+ }
67
+ export namespace views {
68
+ const deleteGroupText: string;
69
+ }
70
+ export namespace modal_1 {
71
+ namespace deleteItemGroup {
72
+ const title_2: string;
73
+ export { title_2 as title };
74
+ export const query: string;
75
+ }
76
+ namespace deleteUserGroup {
77
+ const deleteTitle: string;
78
+ const content: string;
79
+ }
80
+ namespace move {
81
+ const title_3: string;
82
+ export { title_3 as title };
83
+ }
84
+ }
85
+ export { modal_1 as modal };
86
+ }
87
+ export namespace itemImport {
88
+ namespace _default_1 {
89
+ const _import: string;
90
+ export { _import as import };
91
+ export const verification: string;
92
+ export namespace message_1 {
93
+ const fileRegExp: string;
94
+ const workspace: string;
95
+ }
96
+ export { message_1 as message };
97
+ const title_4: string;
98
+ export { title_4 as title };
99
+ export const set: string;
100
+ export const p: string[];
101
+ export const btn: string;
102
+ export const next: string;
103
+ export const importWorkspace: string;
104
+ export const options: string;
105
+ }
106
+ export { _default_1 as default };
107
+ export namespace validate {
108
+ const value: string;
109
+ }
110
+ export namespace FiledMapping {
111
+ const title_5: string[];
112
+ export { title_5 as title };
113
+ export const warning: string;
114
+ export const text: string;
115
+ }
116
+ export namespace Importing {
117
+ const title_6: string;
118
+ export { title_6 as title };
119
+ export const tip: string;
120
+ export const fail: string;
121
+ }
122
+ export namespace Result {
123
+ namespace _default_2 {
124
+ const font_1: string[];
125
+ export { font_1 as font };
126
+ }
127
+ export { _default_2 as default };
128
+ export const total: string;
129
+ export const data: string;
130
+ const tip_1: string[];
131
+ export { tip_1 as tip };
132
+ }
133
+ export namespace Verification {
134
+ const title_7: string;
135
+ export { title_7 as title };
136
+ const text_1: string;
137
+ export { text_1 as text };
138
+ const tip_2: string;
139
+ export { tip_2 as tip };
140
+ export const startVerify: string;
141
+ }
142
+ export namespace importAndExportItem {
143
+ const title_8: string;
144
+ export { title_8 as title };
145
+ export const link: string;
146
+ export const notExportField: string;
147
+ export const fileCreate: string;
148
+ export const fileCreateSuccess: string;
149
+ const _export: string;
150
+ export { _export as export };
151
+ export const exportAll: string;
152
+ export const fileTooLargeTip: string;
153
+ export const allWorkspace: string;
154
+ }
155
+ }
156
+ export namespace itemTypes {
157
+ namespace _default_3 {
158
+ const itemType_1: string;
159
+ export { itemType_1 as itemType };
160
+ export const itemTypeDescription: string;
161
+ export const iconOrName: string;
162
+ export const placeholder: string;
163
+ const message_2: string[];
164
+ export { message_2 as message };
165
+ const content_1: string[];
166
+ export { content_1 as content };
167
+ export const uploadTip: string;
168
+ const name_3: string[];
169
+ export { name_3 as name };
170
+ export const itemTypeTip: string;
171
+ export const remove: string;
172
+ export const deleteTip: string;
173
+ }
174
+ export { _default_3 as default };
175
+ export namespace columns_1 {
176
+ export const defaultType: string;
177
+ const itemType_2: string;
178
+ export { itemType_2 as itemType };
179
+ export const createScreen: string;
180
+ export const editScreen: string;
181
+ export const viewScreen: string;
182
+ }
183
+ export { columns_1 as columns };
184
+ export namespace modal_2 {
185
+ export namespace _delete_1 {
186
+ const title_9: string;
187
+ export { title_9 as title };
188
+ const text_2: string;
189
+ export { text_2 as text };
190
+ export const reset: string;
191
+ }
192
+ export { _delete_1 as delete };
193
+ export namespace deleteItemType {
194
+ const title_10: string;
195
+ export { title_10 as title };
196
+ }
197
+ export namespace create {
198
+ const title_11: string;
199
+ export { title_11 as title };
200
+ }
201
+ export namespace edit {
202
+ const title_12: string;
203
+ export { title_12 as title };
204
+ }
205
+ export namespace link_1 {
206
+ const title_13: string;
207
+ export { title_13 as title };
208
+ const itemType_3: string;
209
+ export { itemType_3 as itemType };
210
+ export const screenScheme: string;
211
+ }
212
+ export { link_1 as link };
213
+ export namespace content_2 {
214
+ export const areYouSure: string;
215
+ const deleteTip_1: string;
216
+ export { deleteTip_1 as deleteTip };
217
+ }
218
+ export { content_2 as content };
219
+ }
220
+ export { modal_2 as modal };
221
+ export namespace scheme {
222
+ namespace _default_4 {
223
+ const title_14: string;
224
+ export { title_14 as title };
225
+ export const description: string;
226
+ export const errorMsg: string;
227
+ }
228
+ export { _default_4 as default };
229
+ export namespace modal_3 {
230
+ const editTitle_1: string;
231
+ export { editTitle_1 as editTitle };
232
+ const deleteTitle_1: string;
233
+ export { deleteTitle_1 as deleteTitle };
234
+ const createTitle_1: string;
235
+ export { createTitle_1 as createTitle };
236
+ export namespace content_3 {
237
+ const areYouSure_1: string;
238
+ export { areYouSure_1 as areYouSure };
239
+ const deleteTip_2: string;
240
+ export { deleteTip_2 as deleteTip };
241
+ }
242
+ export { content_3 as content };
243
+ }
244
+ export { modal_3 as modal };
245
+ export namespace columns_2 {
246
+ const name_4: string;
247
+ export { name_4 as name };
248
+ }
249
+ export { columns_2 as columns };
250
+ }
251
+ export namespace linkTypes {
252
+ namespace _default_5 {
253
+ const title_15: string;
254
+ export { title_15 as title };
255
+ const description_1: string;
256
+ export { description_1 as description };
257
+ }
258
+ export { _default_5 as default };
259
+ export namespace modal_4 {
260
+ const editTitle_2: string;
261
+ export { editTitle_2 as editTitle };
262
+ const createTitle_2: string;
263
+ export { createTitle_2 as createTitle };
264
+ }
265
+ export { modal_4 as modal };
266
+ export namespace columns_3 {
267
+ const name_5: string;
268
+ export { name_5 as name };
269
+ export const type: string;
270
+ export const inward: string;
271
+ export const outward: string;
272
+ }
273
+ export { columns_3 as columns };
274
+ }
275
+ export namespace hierarchy {
276
+ namespace _default_6 {
277
+ const title_16: string;
278
+ export { title_16 as title };
279
+ const description_2: string;
280
+ export { description_2 as description };
281
+ export const detailTitle: string;
282
+ }
283
+ export { _default_6 as default };
284
+ export namespace modal_5 {
285
+ const deleteTitle_2: string;
286
+ export { deleteTitle_2 as deleteTitle };
287
+ const createTitle_3: string;
288
+ export { createTitle_3 as createTitle };
289
+ const editTitle_3: string;
290
+ export { editTitle_3 as editTitle };
291
+ export namespace content_4 {
292
+ const areYouSure_2: string;
293
+ export { areYouSure_2 as areYouSure };
294
+ }
295
+ export { content_4 as content };
296
+ }
297
+ export { modal_5 as modal };
298
+ export namespace detail {
299
+ const moveTip: string;
300
+ const warnTip: string;
301
+ }
302
+ }
303
+ export namespace validate_1 {
304
+ const itemType_4: string;
305
+ export { itemType_4 as itemType };
306
+ const screenScheme_1: string;
307
+ export { screenScheme_1 as screenScheme };
308
+ }
309
+ export { validate_1 as validate };
310
+ export namespace view_1 {
311
+ namespace pageHeader {
312
+ const btn_1: string;
313
+ export { btn_1 as btn };
314
+ }
315
+ }
316
+ export { view_1 as view };
317
+ }
318
+ export namespace itemsBatchOperate {
319
+ export namespace step {
320
+ export const choose: string;
321
+ export const operate: string;
322
+ const detail_1: string;
323
+ export { detail_1 as detail };
324
+ export const confirm: string;
325
+ export const result: string;
326
+ }
327
+ export const editItem: string;
328
+ export const deleteItem: string;
329
+ export const transitionStatus: string;
330
+ export const stepCount: string;
331
+ namespace _default_7 {
332
+ const font_2: string[];
333
+ export { font_2 as font };
334
+ export namespace panel {
335
+ const header: string;
336
+ }
337
+ export const change: string;
338
+ export const execute: string;
339
+ export namespace operateOption {
340
+ export namespace edit_1 {
341
+ export const label: string;
342
+ const tip_3: string;
343
+ export { tip_3 as tip };
344
+ }
345
+ export { edit_1 as edit };
346
+ export namespace _delete_2 {
347
+ const label_1: string;
348
+ export { label_1 as label };
349
+ const tip_4: string;
350
+ export { tip_4 as tip };
351
+ }
352
+ export { _delete_2 as delete };
353
+ export namespace transition {
354
+ const label_2: string;
355
+ export { label_2 as label };
356
+ const tip_5: string;
357
+ export { tip_5 as tip };
358
+ }
359
+ }
360
+ export const hasPermissionText: string;
361
+ const message_3: string[];
362
+ export { message_3 as message };
363
+ export const operateText: string;
364
+ export const batchOperate: string;
365
+ export const goBack: string;
366
+ export const finish: string;
367
+ }
368
+ export { _default_7 as default };
369
+ export namespace columns_4 {
370
+ export const itemName: string;
371
+ export const workflow: string;
372
+ const result_1: string;
373
+ export { result_1 as result };
374
+ export const fieldName: string;
375
+ export const fieldValue: string;
376
+ export const statusToggle: string;
377
+ const key_1: string;
378
+ export { key_1 as key };
379
+ export const item: string;
380
+ export namespace operate_1 {
381
+ export namespace edit_2 {
382
+ const header_1: string;
383
+ export { header_1 as header };
384
+ }
385
+ export { edit_2 as edit };
386
+ }
387
+ export { operate_1 as operate };
388
+ export namespace modal_6 {
389
+ export namespace _delete_3 {
390
+ const title_17: string;
391
+ export { title_17 as title };
392
+ const content_5: string;
393
+ export { content_5 as content };
394
+ }
395
+ export { _delete_3 as delete };
396
+ }
397
+ export { modal_6 as modal };
398
+ export namespace transition_1 {
399
+ const workflow_1: string;
400
+ export { workflow_1 as workflow };
401
+ export const selectTransition: string;
402
+ export const statusTransition: string;
403
+ export const fields: string;
404
+ export const noFields: string;
405
+ const change_1: string;
406
+ export { change_1 as change };
407
+ export const emptyTip: string;
408
+ export namespace panel_1 {
409
+ const header_2: string;
410
+ export { header_2 as header };
411
+ }
412
+ export { panel_1 as panel };
413
+ }
414
+ export { transition_1 as transition };
415
+ export namespace ResultTable {
416
+ const redisLockTip: string;
417
+ }
418
+ }
419
+ export { columns_4 as columns };
420
+ }
421
+ export namespace LinkModal {
422
+ const _default_8: {};
423
+ export { _default_8 as default };
424
+ export namespace placeholder_1 {
425
+ export const relateItem: string;
426
+ const outward_1: string;
427
+ export { outward_1 as outward };
428
+ const inward_1: string;
429
+ export { inward_1 as inward };
430
+ const itemType_5: string;
431
+ export { itemType_5 as itemType };
432
+ }
433
+ export { placeholder_1 as placeholder };
434
+ export namespace modal_7 {
435
+ export const btnTitle: string;
436
+ const title_18: string;
437
+ export { title_18 as title };
438
+ export const title1: string;
439
+ }
440
+ export { modal_7 as modal };
441
+ export namespace FormField_1 {
442
+ const type_1: string;
443
+ export { type_1 as type };
444
+ const name_6: string;
445
+ export { name_6 as name };
446
+ const inward_2: string;
447
+ export { inward_2 as inward };
448
+ export const inwardItemType: string;
449
+ export const all: string;
450
+ export const some: string;
451
+ export const outwardItemType: string;
452
+ }
453
+ export { FormField_1 as FormField };
454
+ export namespace oneToMany {
455
+ const title_19: string[];
456
+ export { title_19 as title };
457
+ const tip_6: string[];
458
+ export { tip_6 as tip };
459
+ }
460
+ }
461
+ declare namespace _default {
462
+ export { item };
463
+ export { itemGroup };
464
+ export { itemImport };
465
+ export { itemTypes };
466
+ export { itemsBatchOperate };
467
+ export { LinkModal };
468
+ }
469
+ export default _default;
470
+ declare namespace defaultConfig {
471
+ export const createFor: string;
472
+ export const updateFor: string;
473
+ export const loading: string;
474
+ export const plugin: string;
475
+ export const moreOpt: string;
476
+ export const getPluginList: string;
477
+ const item_2: string;
478
+ export { item_2 as item };
479
+ const transition_2: string;
480
+ export { transition_2 as transition };
481
+ export const errorText: string;
482
+ const name_7: string;
483
+ export { name_7 as name };
484
+ const itemHierarchy_1: string;
485
+ export { itemHierarchy_1 as itemHierarchy };
486
+ export const createItemTypeHierarchyScheme: string;
487
+ export const need_fields: string;
488
+ export const no_need_fields: string;
489
+ }
@@ -0,0 +1,154 @@
1
+ export declare const itemTypesLocaleValues: {
2
+ moduleName: string;
3
+ description: string;
4
+ tableColumns: {
5
+ name: string;
6
+ description: string;
7
+ operation: {
8
+ title: string;
9
+ edit: string;
10
+ delete: string;
11
+ };
12
+ };
13
+ createBtnText: string;
14
+ formFields: {
15
+ name: string;
16
+ key: string;
17
+ description: string;
18
+ icon: string;
19
+ uploadIcon: string;
20
+ };
21
+ default: {
22
+ itemType: string;
23
+ itemTypeDescription: string;
24
+ iconOrName: string;
25
+ placeholder: string;
26
+ message: string[];
27
+ content: string[];
28
+ uploadTip: string;
29
+ name: string[];
30
+ itemTypeTip: string;
31
+ remove: string;
32
+ deleteTip: string;
33
+ };
34
+ columns: {
35
+ defaultType: string;
36
+ itemType: string;
37
+ createScreen: string;
38
+ editScreen: string;
39
+ viewScreen: string;
40
+ };
41
+ modal: {
42
+ delete: {
43
+ title: string;
44
+ message: {
45
+ confirm: string;
46
+ error: string;
47
+ success: string;
48
+ tips: string;
49
+ typeConfirm: (type: any) => string;
50
+ };
51
+ text: string[];
52
+ reset: string;
53
+ };
54
+ create: {
55
+ title: string;
56
+ };
57
+ edit: {
58
+ title: string;
59
+ };
60
+ link: {
61
+ title: string;
62
+ itemType: string;
63
+ screenScheme: string;
64
+ };
65
+ };
66
+ scheme: {
67
+ default: {
68
+ title: string;
69
+ description: string;
70
+ errorMsg: string;
71
+ };
72
+ modal: {
73
+ editTitle: string;
74
+ deleteTitle: string;
75
+ createTitle: string;
76
+ content: {
77
+ areYouSure: string;
78
+ deleteTip: string;
79
+ };
80
+ };
81
+ columns: {
82
+ name: string;
83
+ };
84
+ };
85
+ linkTypes: {
86
+ default: {
87
+ title: string;
88
+ description: string;
89
+ };
90
+ modal: {
91
+ editTitle: string;
92
+ createTitle: string;
93
+ };
94
+ columns: {
95
+ name: string;
96
+ type: string;
97
+ inward: string;
98
+ outward: string;
99
+ };
100
+ };
101
+ hierarchy: {
102
+ default: {
103
+ title: string;
104
+ description: string;
105
+ detailTitle: string;
106
+ };
107
+ modal: {
108
+ deleteTitle: string;
109
+ createTitle: string;
110
+ editTitle: string;
111
+ content: {
112
+ areYouSure: string;
113
+ };
114
+ };
115
+ };
116
+ icon: {
117
+ moduleName: string;
118
+ upload: {
119
+ text: string;
120
+ tips: {
121
+ fileType: string;
122
+ size: string;
123
+ };
124
+ success: string;
125
+ };
126
+ delete: {
127
+ success: string;
128
+ };
129
+ validate: {
130
+ typeError: string;
131
+ };
132
+ };
133
+ validate: {
134
+ name: {
135
+ required: string;
136
+ exists: string;
137
+ max: string;
138
+ min: string;
139
+ starts: string;
140
+ };
141
+ key: {
142
+ required: string;
143
+ error: string;
144
+ };
145
+ itemType: string;
146
+ screenScheme: string;
147
+ };
148
+ view: {
149
+ pageHeader: {
150
+ btn: string;
151
+ };
152
+ };
153
+ };
154
+ export default itemTypesLocaleValues;