cnhis-design-vue 3.1.11-beta.8 → 3.1.12-beta.1

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 (187) hide show
  1. package/README.md +22 -22
  2. package/es/node_modules/date-fns/esm/_lib/defaultOptions/index.js +6 -0
  3. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeek/index.js +17 -0
  4. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeekYear/index.js +27 -0
  5. package/es/node_modules/date-fns/esm/_lib/getUTCWeek/index.js +17 -0
  6. package/es/node_modules/date-fns/esm/_lib/getUTCWeekYear/index.js +38 -0
  7. package/es/node_modules/date-fns/esm/_lib/setUTCDay/index.js +27 -0
  8. package/es/node_modules/date-fns/esm/_lib/setUTCISODay/index.js +23 -0
  9. package/es/node_modules/date-fns/esm/_lib/setUTCISOWeek/index.js +15 -0
  10. package/es/node_modules/date-fns/esm/_lib/setUTCWeek/index.js +15 -0
  11. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeek/index.js +15 -0
  12. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeekYear/index.js +15 -0
  13. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeek/index.js +25 -0
  14. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeekYear/index.js +21 -0
  15. package/es/node_modules/date-fns/esm/_lib/toInteger/index.js +15 -0
  16. package/es/node_modules/date-fns/esm/compareAsc/index.js +0 -4
  17. package/es/node_modules/date-fns/esm/constants/index.js +40 -0
  18. package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.js +0 -4
  19. package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.js +1 -5
  20. package/es/node_modules/date-fns/esm/differenceInDays/index.js +0 -4
  21. package/es/node_modules/date-fns/esm/differenceInMonths/index.js +0 -4
  22. package/es/node_modules/date-fns/esm/endOfDay/index.js +0 -4
  23. package/es/node_modules/date-fns/esm/endOfMonth/index.js +0 -4
  24. package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.js +1 -5
  25. package/es/node_modules/date-fns/esm/parse/_lib/Parser.js +32 -0
  26. package/es/node_modules/date-fns/esm/parse/_lib/Setter.js +37 -0
  27. package/es/node_modules/date-fns/esm/parse/_lib/constants.js +48 -0
  28. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMMidnightParser.js +55 -0
  29. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMParser.js +55 -0
  30. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DateParser.js +55 -0
  31. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayOfYearParser.js +52 -0
  32. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayParser.js +80 -0
  33. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayPeriodParser.js +56 -0
  34. package/es/node_modules/date-fns/esm/parse/_lib/parsers/EraParser.js +53 -0
  35. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ExtendedYearParser.js +30 -0
  36. package/es/node_modules/date-fns/esm/parse/_lib/parsers/FractionOfSecondParser.js +29 -0
  37. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js +48 -0
  38. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0to23Parser.js +41 -0
  39. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1To24Parser.js +42 -0
  40. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1to12Parser.js +50 -0
  41. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISODayParser.js +99 -0
  42. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneParser.js +46 -0
  43. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneWithZParser.js +46 -0
  44. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekParser.js +43 -0
  45. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekYearParser.js +33 -0
  46. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalDayParser.js +96 -0
  47. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekParser.js +43 -0
  48. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekYearParser.js +61 -0
  49. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MinuteParser.js +41 -0
  50. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MonthParser.js +80 -0
  51. package/es/node_modules/date-fns/esm/parse/_lib/parsers/QuarterParser.js +73 -0
  52. package/es/node_modules/date-fns/esm/parse/_lib/parsers/SecondParser.js +41 -0
  53. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneLocalDayParser.js +96 -0
  54. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneMonthParser.js +80 -0
  55. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneQuarterParser.js +73 -0
  56. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampMillisecondsParser.js +26 -0
  57. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampSecondsParser.js +26 -0
  58. package/es/node_modules/date-fns/esm/parse/_lib/parsers/YearParser.js +66 -0
  59. package/es/node_modules/date-fns/esm/parse/_lib/parsers/index.js +109 -0
  60. package/es/node_modules/date-fns/esm/parse/_lib/utils.js +133 -0
  61. package/es/node_modules/date-fns/esm/startOfDay/index.js +0 -4
  62. package/es/node_modules/date-fns/esm/toDate/index.js +1 -1
  63. package/es/packages/big-table/index.d.ts +31 -10
  64. package/es/packages/big-table/src/BigTable.vue.d.ts +38 -32
  65. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +28 -7
  66. package/es/packages/big-table/src/bigTableState.d.ts +2 -6
  67. package/es/packages/big-table/src/bigTableState.js +9 -1
  68. package/es/packages/big-table/src/components/edit-form/edit-separate.js +4 -0
  69. package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +1247 -0
  70. package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +69 -0
  71. package/es/packages/big-table/src/components/separate.js +4 -0
  72. package/es/packages/big-table/src/components/separate.vue.d.ts +43 -0
  73. package/es/packages/big-table/src/components/separate.vue_vue_type_script_setup_true_lang.js +24 -0
  74. package/es/packages/big-table/src/constants/index.d.ts +3 -0
  75. package/es/packages/big-table/src/constants/index.js +3 -0
  76. package/es/packages/big-table/src/hooks/useEdit.d.ts +1243 -0
  77. package/es/packages/big-table/src/hooks/useEdit.js +25 -7
  78. package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +30 -0
  79. package/es/packages/big-table/src/hooks/useSeparateRow.js +157 -0
  80. package/es/packages/big-table/src/utils.d.ts +1 -0
  81. package/es/packages/big-table/src/utils.js +5 -7
  82. package/es/packages/big-table/style/index.css +1 -1
  83. package/es/packages/bpmn-workflow/index.d.ts +1 -1
  84. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +52 -52
  85. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +1 -8
  86. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.js +1 -11
  87. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +1 -9
  88. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.js +1 -8
  89. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.d.ts +176 -176
  90. package/es/packages/bpmn-workflow/style/index.css +1 -1
  91. package/es/packages/button-print/src/utils/print.es.min.js +1467 -1015
  92. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +2 -9
  93. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.js +1 -1
  94. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +2 -9
  95. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.js +1 -10
  96. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.js +6 -6
  97. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +0 -1
  98. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.js +1 -1
  99. package/es/packages/drag-layout/style/index.css +4 -4
  100. package/es/packages/editor/src/Editor.js +1 -1
  101. package/es/packages/field-set/index.d.ts +2 -2
  102. package/es/packages/field-set/src/FieldSet.vue.d.ts +2 -2
  103. package/es/packages/field-set/src/NewFieldSet.vue.d.ts +1 -1
  104. package/es/packages/field-set/src/OldFieldSet.vue.d.ts +1 -1
  105. package/es/packages/form-render/index.d.ts +13 -5
  106. package/es/packages/form-render/index.js +1 -1
  107. package/es/packages/form-render/src/FormRender.vue.d.ts +13 -5
  108. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +20 -29
  109. package/es/packages/form-render/src/components/renderer/cascader.js +2 -0
  110. package/es/packages/form-render/src/components/renderer/checkbox.d.ts +1 -1
  111. package/es/packages/form-render/src/components/renderer/combination.d.ts +8 -118
  112. package/es/packages/form-render/src/components/renderer/combination.js +6 -12
  113. package/es/packages/form-render/src/components/renderer/linebar.js +2 -2
  114. package/es/packages/form-render/src/components/renderer/radio.d.ts +1 -1
  115. package/es/packages/form-render/src/components/renderer/select.js +3 -3
  116. package/es/packages/form-render/src/constants/index.d.ts +1 -0
  117. package/es/packages/form-render/src/constants/index.js +3 -2
  118. package/es/packages/form-render/src/hooks/index.d.ts +1 -1
  119. package/es/packages/form-render/src/hooks/index.js +1 -1
  120. package/es/packages/form-render/src/hooks/useAnchor.d.ts +1 -2
  121. package/es/packages/form-render/src/hooks/useAnchor.js +14 -10
  122. package/es/packages/form-render/src/hooks/useAsyncQueue.js +2 -2
  123. package/es/packages/form-render/src/hooks/useBusinessBinding.js +3 -1
  124. package/es/packages/form-render/src/hooks/useChangeContext.js +3 -1
  125. package/es/packages/form-render/src/hooks/useCommonLog.js +1 -1
  126. package/es/packages/form-render/src/hooks/{useFieldList2Schema.d.ts → useFieldListAdaptor.d.ts} +2 -2
  127. package/es/packages/form-render/src/hooks/{useFieldList2Schema.js → useFieldListAdaptor.js} +12 -8
  128. package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +1 -1
  129. package/es/packages/form-render/src/hooks/useFormContext.d.ts +1 -0
  130. package/es/packages/form-render/src/hooks/useFormContext.js +12 -3
  131. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +2 -1
  132. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +2 -1
  133. package/es/packages/form-render/src/types/index.d.ts +1 -1
  134. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  135. package/es/packages/form-render/src/utils/index.js +8 -1
  136. package/es/packages/form-table/index.d.ts +27 -27
  137. package/es/packages/form-table/src/FormTable.vue.d.ts +27 -27
  138. package/es/packages/form-table/src/components/index.d.ts +26 -26
  139. package/es/packages/form-table/src/components/table-age.vue.d.ts +2 -2
  140. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +2 -2
  141. package/es/packages/form-table/src/components/table-digital.vue.d.ts +2 -2
  142. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +2 -2
  143. package/es/packages/form-table/src/components/table-input.vue.d.ts +2 -2
  144. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +2 -2
  145. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +2 -2
  146. package/es/packages/form-table/src/components/table-search.vue.d.ts +2 -2
  147. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +1 -1
  148. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +2 -2
  149. package/es/packages/form-table/src/components/table-select.vue.d.ts +2 -2
  150. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +2 -2
  151. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +2 -2
  152. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +2 -2
  153. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.js +9 -7
  154. package/es/packages/form-table/src/configs/index.js +1 -8
  155. package/es/packages/form-table/src/hooks/useBoundDate.js +4 -1
  156. package/es/packages/form-table/src/hooks/useFormCommon.js +6 -1
  157. package/es/packages/form-table/src/hooks/useFormEvent.d.ts +1 -1
  158. package/es/packages/form-table/src/hooks/useFormEvent.js +1 -5
  159. package/es/packages/form-table/src/hooks/useSearch.js +29 -92
  160. package/es/packages/index.css +16 -16
  161. package/es/packages/index.js +1 -1
  162. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.js +4 -1
  163. package/es/packages/info-header/style/index.css +8 -8
  164. package/es/packages/scale-view/index.d.ts +1 -1
  165. package/es/packages/scale-view/src/ScaleView.vue.d.ts +1 -1
  166. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +11 -9
  167. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.js +1 -8
  168. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.js +1 -1
  169. package/es/packages/scale-view/src/components/formitem/address.d.ts +3988 -3988
  170. package/es/packages/scale-view/src/components/formitem/r-upload.js +1 -1
  171. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +1 -1
  172. package/es/packages/scale-view/src/hooks/scaleview-computed.js +7 -12
  173. package/es/packages/scale-view/src/hooks/scaleview-init.js +1 -6
  174. package/es/packages/scale-view/src/hooks/scaleview-state.js +1 -8
  175. package/es/packages/scale-view/src/hooks/scaleview-submit.js +2 -5
  176. package/es/packages/scale-view/src/hooks/scaleview-validate.js +6 -1
  177. package/es/packages/scale-view/src/hooks/use-component.js +50 -50
  178. package/es/packages/scale-view/src/utils/judge-types.js +1 -6
  179. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -0
  180. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +1 -1
  181. package/es/packages/time-line/style/index.css +2 -2
  182. package/es/src/components/player-vod/video-modal.js +1 -1
  183. package/es/src/core/create.js +1 -1
  184. package/es/src/utils/anime.js +1 -1
  185. package/global.d.ts +8 -8
  186. package/package.json +153 -131
  187. package/.versionrc.json +0 -32
@@ -1,226 +1,226 @@
1
1
  declare const _default: {
2
- "Append EndEvent": string;
3
- "Append Gateway": string;
4
- "Append Task": string;
5
- "Append Intermediate/Boundary Event": string;
6
- "Activate the global connect tool": string;
7
- "Append {type}": string;
8
- "Add Lane above": string;
9
- "Divide into two Lanes": string;
10
- "Divide into three Lanes": string;
11
- "Add Lane below": string;
12
- "Append compensation activity": string;
13
- "Change type": string;
14
- "Connect using Association": string;
15
- "Connect using Sequence/MessageFlow or Association": string;
16
- "Connect using DataInputAssociation": string;
2
+ 'Append EndEvent': string;
3
+ 'Append Gateway': string;
4
+ 'Append Task': string;
5
+ 'Append Intermediate/Boundary Event': string;
6
+ 'Activate the global connect tool': string;
7
+ 'Append {type}': string;
8
+ 'Add Lane above': string;
9
+ 'Divide into two Lanes': string;
10
+ 'Divide into three Lanes': string;
11
+ 'Add Lane below': string;
12
+ 'Append compensation activity': string;
13
+ 'Change type': string;
14
+ 'Connect using Association': string;
15
+ 'Connect using Sequence/MessageFlow or Association': string;
16
+ 'Connect using DataInputAssociation': string;
17
17
  Remove: string;
18
- "Activate the hand tool": string;
19
- "Activate the lasso tool": string;
20
- "Activate the create/remove space tool": string;
21
- "Create expanded SubProcess": string;
22
- "Create IntermediateThrowEvent/BoundaryEvent": string;
23
- "Create Pool/Participant": string;
24
- "Parallel Multi Instance": string;
25
- "Sequential Multi Instance": string;
18
+ 'Activate the hand tool': string;
19
+ 'Activate the lasso tool': string;
20
+ 'Activate the create/remove space tool': string;
21
+ 'Create expanded SubProcess': string;
22
+ 'Create IntermediateThrowEvent/BoundaryEvent': string;
23
+ 'Create Pool/Participant': string;
24
+ 'Parallel Multi Instance': string;
25
+ 'Sequential Multi Instance': string;
26
26
  DataObjectReference: string;
27
27
  DataStoreReference: string;
28
28
  Loop: string;
29
- "Ad-hoc": string;
30
- "Create {type}": string;
29
+ 'Ad-hoc': string;
30
+ 'Create {type}': string;
31
31
  Task: string;
32
- "Send Task": string;
33
- "Receive Task": string;
34
- "User Task": string;
35
- "Manual Task": string;
36
- "Business Rule Task": string;
37
- "Service Task": string;
38
- "Script Task": string;
39
- "Call Activity": string;
40
- "Sub Process (collapsed)": string;
41
- "Sub Process (expanded)": string;
42
- "Start Event": string;
32
+ 'Send Task': string;
33
+ 'Receive Task': string;
34
+ 'User Task': string;
35
+ 'Manual Task': string;
36
+ 'Business Rule Task': string;
37
+ 'Service Task': string;
38
+ 'Script Task': string;
39
+ 'Call Activity': string;
40
+ 'Sub Process (collapsed)': string;
41
+ 'Sub Process (expanded)': string;
42
+ 'Start Event': string;
43
43
  StartEvent: string;
44
- "Intermediate Throw Event": string;
45
- "End Event": string;
44
+ 'Intermediate Throw Event': string;
45
+ 'End Event': string;
46
46
  EndEvent: string;
47
- "Create StartEvent": string;
48
- "Create EndEvent": string;
49
- "Create Task": string;
50
- "Create User Task": string;
51
- "Create Gateway": string;
52
- "Create DataObjectReference": string;
53
- "Create DataStoreReference": string;
54
- "Create Group": string;
55
- "Create Intermediate/Boundary Event": string;
56
- "Message Start Event": string;
57
- "Timer Start Event": string;
58
- "Conditional Start Event": string;
59
- "Signal Start Event": string;
60
- "Error Start Event": string;
61
- "Escalation Start Event": string;
62
- "Compensation Start Event": string;
63
- "Message Start Event (non-interrupting)": string;
64
- "Timer Start Event (non-interrupting)": string;
65
- "Conditional Start Event (non-interrupting)": string;
66
- "Signal Start Event (non-interrupting)": string;
67
- "Escalation Start Event (non-interrupting)": string;
68
- "Message Intermediate Catch Event": string;
69
- "Message Intermediate Throw Event": string;
70
- "Timer Intermediate Catch Event": string;
71
- "Escalation Intermediate Throw Event": string;
72
- "Conditional Intermediate Catch Event": string;
73
- "Link Intermediate Catch Event": string;
74
- "Link Intermediate Throw Event": string;
75
- "Compensation Intermediate Throw Event": string;
76
- "Signal Intermediate Catch Event": string;
77
- "Signal Intermediate Throw Event": string;
78
- "Message End Event": string;
79
- "Escalation End Event": string;
80
- "Error End Event": string;
81
- "Cancel End Event": string;
82
- "Compensation End Event": string;
83
- "Signal End Event": string;
84
- "Terminate End Event": string;
85
- "Message Boundary Event": string;
86
- "Message Boundary Event (non-interrupting)": string;
87
- "Timer Boundary Event": string;
88
- "Timer Boundary Event (non-interrupting)": string;
89
- "Escalation Boundary Event": string;
90
- "Escalation Boundary Event (non-interrupting)": string;
91
- "Conditional Boundary Event": string;
92
- "Conditional Boundary Event (non-interrupting)": string;
93
- "Error Boundary Event": string;
94
- "Cancel Boundary Event": string;
95
- "Signal Boundary Event": string;
96
- "Signal Boundary Event (non-interrupting)": string;
97
- "Compensation Boundary Event": string;
98
- "Exclusive Gateway": string;
99
- "Parallel Gateway": string;
100
- "Inclusive Gateway": string;
101
- "Complex Gateway": string;
102
- "Event based Gateway": string;
47
+ 'Create StartEvent': string;
48
+ 'Create EndEvent': string;
49
+ 'Create Task': string;
50
+ 'Create User Task': string;
51
+ 'Create Gateway': string;
52
+ 'Create DataObjectReference': string;
53
+ 'Create DataStoreReference': string;
54
+ 'Create Group': string;
55
+ 'Create Intermediate/Boundary Event': string;
56
+ 'Message Start Event': string;
57
+ 'Timer Start Event': string;
58
+ 'Conditional Start Event': string;
59
+ 'Signal Start Event': string;
60
+ 'Error Start Event': string;
61
+ 'Escalation Start Event': string;
62
+ 'Compensation Start Event': string;
63
+ 'Message Start Event (non-interrupting)': string;
64
+ 'Timer Start Event (non-interrupting)': string;
65
+ 'Conditional Start Event (non-interrupting)': string;
66
+ 'Signal Start Event (non-interrupting)': string;
67
+ 'Escalation Start Event (non-interrupting)': string;
68
+ 'Message Intermediate Catch Event': string;
69
+ 'Message Intermediate Throw Event': string;
70
+ 'Timer Intermediate Catch Event': string;
71
+ 'Escalation Intermediate Throw Event': string;
72
+ 'Conditional Intermediate Catch Event': string;
73
+ 'Link Intermediate Catch Event': string;
74
+ 'Link Intermediate Throw Event': string;
75
+ 'Compensation Intermediate Throw Event': string;
76
+ 'Signal Intermediate Catch Event': string;
77
+ 'Signal Intermediate Throw Event': string;
78
+ 'Message End Event': string;
79
+ 'Escalation End Event': string;
80
+ 'Error End Event': string;
81
+ 'Cancel End Event': string;
82
+ 'Compensation End Event': string;
83
+ 'Signal End Event': string;
84
+ 'Terminate End Event': string;
85
+ 'Message Boundary Event': string;
86
+ 'Message Boundary Event (non-interrupting)': string;
87
+ 'Timer Boundary Event': string;
88
+ 'Timer Boundary Event (non-interrupting)': string;
89
+ 'Escalation Boundary Event': string;
90
+ 'Escalation Boundary Event (non-interrupting)': string;
91
+ 'Conditional Boundary Event': string;
92
+ 'Conditional Boundary Event (non-interrupting)': string;
93
+ 'Error Boundary Event': string;
94
+ 'Cancel Boundary Event': string;
95
+ 'Signal Boundary Event': string;
96
+ 'Signal Boundary Event (non-interrupting)': string;
97
+ 'Compensation Boundary Event': string;
98
+ 'Exclusive Gateway': string;
99
+ 'Parallel Gateway': string;
100
+ 'Inclusive Gateway': string;
101
+ 'Complex Gateway': string;
102
+ 'Event based Gateway': string;
103
103
  Transaction: string;
104
- "Sub Process": string;
105
- "Event Sub Process": string;
106
- "Collapsed Pool": string;
107
- "Expanded Pool": string;
108
- "no parent for {element} in {parent}": string;
109
- "no shape type specified": string;
110
- "flow elements must be children of pools/participants": string;
111
- "out of bounds release": string;
112
- "more than {count} child lanes": string;
113
- "element required": string;
114
- "diagram not part of bpmn:Definitions": string;
115
- "no diagram to display": string;
116
- "no process or collaboration to display": string;
117
- "element {element} referenced by {referenced}#{property} not yet drawn": string;
118
- "already rendered {element}": string;
119
- "failed to import {element}": string;
104
+ 'Sub Process': string;
105
+ 'Event Sub Process': string;
106
+ 'Collapsed Pool': string;
107
+ 'Expanded Pool': string;
108
+ 'no parent for {element} in {parent}': string;
109
+ 'no shape type specified': string;
110
+ 'flow elements must be children of pools/participants': string;
111
+ 'out of bounds release': string;
112
+ 'more than {count} child lanes': string;
113
+ 'element required': string;
114
+ 'diagram not part of bpmn:Definitions': string;
115
+ 'no diagram to display': string;
116
+ 'no process or collaboration to display': string;
117
+ 'element {element} referenced by {referenced}#{property} not yet drawn': string;
118
+ 'already rendered {element}': string;
119
+ 'failed to import {element}': string;
120
120
  Id: string;
121
121
  Name: string;
122
122
  General: string;
123
123
  Details: string;
124
- "Message Name": string;
124
+ 'Message Name': string;
125
125
  Message: string;
126
126
  Initiator: string;
127
- "Asynchronous Continuations": string;
128
- "Asynchronous Before": string;
129
- "Asynchronous After": string;
130
- "Job Configuration": string;
127
+ 'Asynchronous Continuations': string;
128
+ 'Asynchronous Before': string;
129
+ 'Asynchronous After': string;
130
+ 'Job Configuration': string;
131
131
  Exclusive: string;
132
- "Job Priority": string;
133
- "Retry Time Cycle": string;
132
+ 'Job Priority': string;
133
+ 'Retry Time Cycle': string;
134
134
  Documentation: string;
135
- "Element Documentation": string;
136
- "History Configuration": string;
137
- "History Time To Live": string;
135
+ 'Element Documentation': string;
136
+ 'History Configuration': string;
137
+ 'History Time To Live': string;
138
138
  Forms: string;
139
- "Form Key": string;
140
- "Form Fields": string;
141
- "Business Key": string;
142
- "Form Field": string;
139
+ 'Form Key': string;
140
+ 'Form Fields': string;
141
+ 'Business Key': string;
142
+ 'Form Field': string;
143
143
  ID: string;
144
144
  Type: string;
145
145
  Label: string;
146
- "Default Value": string;
147
- "Default Flow": string;
148
- "Conditional Flow": string;
149
- "Sequence Flow": string;
146
+ 'Default Value': string;
147
+ 'Default Flow': string;
148
+ 'Conditional Flow': string;
149
+ 'Sequence Flow': string;
150
150
  Validation: string;
151
- "Add Constraint": string;
151
+ 'Add Constraint': string;
152
152
  Config: string;
153
153
  Properties: string;
154
- "Add Property": string;
154
+ 'Add Property': string;
155
155
  Value: string;
156
156
  Listeners: string;
157
- "Execution Listener": string;
158
- "Event Type": string;
159
- "Listener Type": string;
160
- "Java Class": string;
157
+ 'Execution Listener': string;
158
+ 'Event Type': string;
159
+ 'Listener Type': string;
160
+ 'Java Class': string;
161
161
  Expression: string;
162
- "Must provide a value": string;
163
- "Delegate Expression": string;
162
+ 'Must provide a value': string;
163
+ 'Delegate Expression': string;
164
164
  Script: string;
165
- "Script Format": string;
166
- "Script Type": string;
167
- "Inline Script": string;
168
- "External Script": string;
165
+ 'Script Format': string;
166
+ 'Script Type': string;
167
+ 'Inline Script': string;
168
+ 'External Script': string;
169
169
  Resource: string;
170
- "Field Injection": string;
170
+ 'Field Injection': string;
171
171
  Extensions: string;
172
- "Input/Output": string;
173
- "Input Parameters": string;
174
- "Output Parameters": string;
172
+ 'Input/Output': string;
173
+ 'Input Parameters': string;
174
+ 'Output Parameters': string;
175
175
  Parameters: string;
176
- "Output Parameter": string;
177
- "Timer Definition Type": string;
178
- "Timer Definition": string;
176
+ 'Output Parameter': string;
177
+ 'Timer Definition Type': string;
178
+ 'Timer Definition': string;
179
179
  Date: string;
180
180
  Duration: string;
181
181
  Cycle: string;
182
182
  Signal: string;
183
- "Signal Name": string;
183
+ 'Signal Name': string;
184
184
  Escalation: string;
185
185
  Error: string;
186
- "Link Name": string;
186
+ 'Link Name': string;
187
187
  Condition: string;
188
- "Variable Name": string;
189
- "Variable Event": string;
190
- "Specify more than one variable change event as a comma separated list.": string;
191
- "Wait for Completion": string;
192
- "Activity Ref": string;
193
- "Version Tag": string;
188
+ 'Variable Name': string;
189
+ 'Variable Event': string;
190
+ 'Specify more than one variable change event as a comma separated list.': string;
191
+ 'Wait for Completion': string;
192
+ 'Activity Ref': string;
193
+ 'Version Tag': string;
194
194
  Executable: string;
195
- "External Task Configuration": string;
196
- "Task Priority": string;
195
+ 'External Task Configuration': string;
196
+ 'Task Priority': string;
197
197
  External: string;
198
198
  Connector: string;
199
- "Must configure Connector": string;
200
- "Connector Id": string;
199
+ 'Must configure Connector': string;
200
+ 'Connector Id': string;
201
201
  Implementation: string;
202
- "Field Injections": string;
202
+ 'Field Injections': string;
203
203
  Fields: string;
204
- "Result Variable": string;
204
+ 'Result Variable': string;
205
205
  Topic: string;
206
- "Configure Connector": string;
207
- "Input Parameter": string;
206
+ 'Configure Connector': string;
207
+ 'Input Parameter': string;
208
208
  Assignee: string;
209
- "Candidate Users": string;
210
- "Candidate Groups": string;
211
- "Due Date": string;
212
- "Follow Up Date": string;
209
+ 'Candidate Users': string;
210
+ 'Candidate Groups': string;
211
+ 'Due Date': string;
212
+ 'Follow Up Date': string;
213
213
  Priority: string;
214
- "The follow up date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)": string;
215
- "The due date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)": string;
214
+ 'The follow up date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)': string;
215
+ 'The due date as an EL expression (e.g. ${someDate} or an ISO date (e.g. 2015-06-26T09:54:00)': string;
216
216
  Variables: string;
217
- "Candidate Starter Configuration": string;
218
- "Candidate Starter Groups": string;
219
- "This maps to the process definition key.": string;
220
- "Candidate Starter Users": string;
221
- "Specify more than one user as a comma separated list.": string;
222
- "Tasklist Configuration": string;
217
+ 'Candidate Starter Configuration': string;
218
+ 'Candidate Starter Groups': string;
219
+ 'This maps to the process definition key.': string;
220
+ 'Candidate Starter Users': string;
221
+ 'Specify more than one user as a comma separated list.': string;
222
+ 'Tasklist Configuration': string;
223
223
  Startable: string;
224
- "Specify more than one group as a comma separated list.": string;
224
+ 'Specify more than one group as a comma separated list.': string;
225
225
  };
226
226
  export default _default;
@@ -2,7 +2,7 @@
2
2
  visibility: hidden;
3
3
  display: block;
4
4
  font-size: 0;
5
- content: " ";
5
+ content: ' ';
6
6
  clear: both;
7
7
  height: 0;
8
8
  }