@eccenca/gui-elements 23.0.0 → 23.1.0-rc.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 (248) hide show
  1. package/CHANGELOG.md +35 -1
  2. package/README.md +7 -0
  3. package/dist/cjs/cmem/ActivityControl/ActivityControlWidget.js.map +1 -1
  4. package/dist/cjs/cmem/react-flow/ReactFlow/ReactFlow.js +7 -2
  5. package/dist/cjs/cmem/react-flow/ReactFlow/ReactFlow.js.map +1 -1
  6. package/dist/cjs/cmem/react-flow/StickyNoteModal/StickyNoteModal.js +3 -7
  7. package/dist/cjs/cmem/react-flow/StickyNoteModal/StickyNoteModal.js.map +1 -1
  8. package/dist/cjs/cmem/react-flow/extensions/scrollOnDragHook.js +200 -0
  9. package/dist/cjs/cmem/react-flow/extensions/scrollOnDragHook.js.map +1 -0
  10. package/dist/cjs/common/Intent/index.js +7 -3
  11. package/dist/cjs/common/Intent/index.js.map +1 -1
  12. package/dist/cjs/common/utils/characters.js +82 -0
  13. package/dist/cjs/common/utils/characters.js.map +1 -0
  14. package/dist/cjs/components/Application/ApplicationTitle.js +2 -2
  15. package/dist/cjs/components/Application/ApplicationTitle.js.map +1 -1
  16. package/dist/cjs/components/Badge/Badge.js +44 -0
  17. package/dist/cjs/components/Badge/Badge.js.map +1 -0
  18. package/dist/cjs/components/Depiction/Depiction.js +111 -0
  19. package/dist/cjs/components/Depiction/Depiction.js.map +1 -0
  20. package/dist/cjs/components/Grid/Grid.js +7 -2
  21. package/dist/cjs/components/Grid/Grid.js.map +1 -1
  22. package/dist/cjs/components/Grid/GridColumn.js +6 -2
  23. package/dist/cjs/components/Grid/GridColumn.js.map +1 -1
  24. package/dist/cjs/components/Grid/GridRow.js +3 -0
  25. package/dist/cjs/components/Grid/GridRow.js.map +1 -1
  26. package/dist/cjs/components/Icon/BaseIcon.js +38 -0
  27. package/dist/cjs/components/Icon/BaseIcon.js.map +1 -0
  28. package/dist/cjs/components/Icon/Icon.js +9 -24
  29. package/dist/cjs/components/Icon/Icon.js.map +1 -1
  30. package/dist/cjs/components/Icon/IconButton.js +8 -1
  31. package/dist/cjs/components/Icon/IconButton.js.map +1 -1
  32. package/dist/cjs/components/Icon/TestIcon.js +35 -0
  33. package/dist/cjs/components/Icon/TestIcon.js.map +1 -0
  34. package/dist/cjs/components/Icon/canonicalIconNames.js +123 -621
  35. package/dist/cjs/components/Icon/canonicalIconNames.js.map +1 -1
  36. package/dist/cjs/components/Icon/index.js +11 -0
  37. package/dist/cjs/components/Icon/index.js.map +1 -0
  38. package/dist/cjs/components/Menu/MenuItem.js +1 -1
  39. package/dist/cjs/components/Menu/MenuItem.js.map +1 -1
  40. package/dist/cjs/components/MultiSelect/MultiSelect.js +56 -23
  41. package/dist/cjs/components/MultiSelect/MultiSelect.js.map +1 -1
  42. package/dist/cjs/components/Notification/Notification.js +10 -2
  43. package/dist/cjs/components/Notification/Notification.js.map +1 -1
  44. package/dist/cjs/components/OverviewItem/OverviewItemDepiction.js +24 -0
  45. package/dist/cjs/components/OverviewItem/OverviewItemDepiction.js.map +1 -1
  46. package/dist/cjs/components/Tag/Tag.js +6 -2
  47. package/dist/cjs/components/Tag/Tag.js.map +1 -1
  48. package/dist/cjs/components/TextField/TextArea.js +4 -2
  49. package/dist/cjs/components/TextField/TextArea.js.map +1 -1
  50. package/dist/cjs/components/TextField/TextField.js +4 -2
  51. package/dist/cjs/components/TextField/TextField.js.map +1 -1
  52. package/dist/cjs/components/TextField/useTextValidation.js +84 -0
  53. package/dist/cjs/components/TextField/useTextValidation.js.map +1 -0
  54. package/dist/cjs/components/Tree/Tree.js.map +1 -1
  55. package/dist/cjs/components/Typography/Highlighter.js.map +1 -1
  56. package/dist/cjs/components/Typography/OverflowText.js.map +1 -1
  57. package/dist/cjs/components/Typography/WhiteSpaceContainer.js +35 -12
  58. package/dist/cjs/components/Typography/WhiteSpaceContainer.js.map +1 -1
  59. package/dist/cjs/components/Typography/index.js +21 -0
  60. package/dist/cjs/components/Typography/index.js.map +1 -0
  61. package/dist/cjs/components/Workspace/WorkspaceContent.js +1 -1
  62. package/dist/cjs/components/Workspace/WorkspaceContent.js.map +1 -1
  63. package/dist/cjs/components/index.js +18 -0
  64. package/dist/cjs/components/index.js.map +1 -0
  65. package/dist/cjs/index.js +7 -17
  66. package/dist/cjs/index.js.map +1 -1
  67. package/dist/esm/cmem/ActivityControl/ActivityControlWidget.js.map +1 -1
  68. package/dist/esm/cmem/react-flow/ReactFlow/ReactFlow.js +7 -2
  69. package/dist/esm/cmem/react-flow/ReactFlow/ReactFlow.js.map +1 -1
  70. package/dist/esm/cmem/react-flow/StickyNoteModal/StickyNoteModal.js +3 -6
  71. package/dist/esm/cmem/react-flow/StickyNoteModal/StickyNoteModal.js.map +1 -1
  72. package/dist/esm/cmem/react-flow/extensions/scrollOnDragHook.js +194 -0
  73. package/dist/esm/cmem/react-flow/extensions/scrollOnDragHook.js.map +1 -0
  74. package/dist/esm/common/Intent/index.js +5 -13
  75. package/dist/esm/common/Intent/index.js.map +1 -1
  76. package/dist/esm/common/utils/characters.js +96 -0
  77. package/dist/esm/common/utils/characters.js.map +1 -0
  78. package/dist/esm/components/Application/ApplicationTitle.js +2 -2
  79. package/dist/esm/components/Application/ApplicationTitle.js.map +1 -1
  80. package/dist/esm/components/Badge/Badge.js +48 -0
  81. package/dist/esm/components/Badge/Badge.js.map +1 -0
  82. package/dist/esm/components/Depiction/Depiction.js +96 -0
  83. package/dist/esm/components/Depiction/Depiction.js.map +1 -0
  84. package/dist/esm/components/Grid/Grid.js +7 -2
  85. package/dist/esm/components/Grid/Grid.js.map +1 -1
  86. package/dist/esm/components/Grid/GridColumn.js +6 -2
  87. package/dist/esm/components/Grid/GridColumn.js.map +1 -1
  88. package/dist/esm/components/Grid/GridRow.js +3 -0
  89. package/dist/esm/components/Grid/GridRow.js.map +1 -1
  90. package/dist/esm/components/Icon/BaseIcon.js +44 -0
  91. package/dist/esm/components/Icon/BaseIcon.js.map +1 -0
  92. package/dist/esm/components/Icon/Icon.js +9 -24
  93. package/dist/esm/components/Icon/Icon.js.map +1 -1
  94. package/dist/esm/components/Icon/IconButton.js +8 -1
  95. package/dist/esm/components/Icon/IconButton.js.map +1 -1
  96. package/dist/esm/components/Icon/TestIcon.js +41 -0
  97. package/dist/esm/components/Icon/TestIcon.js.map +1 -0
  98. package/dist/esm/components/Icon/canonicalIconNames.js +123 -621
  99. package/dist/esm/components/Icon/canonicalIconNames.js.map +1 -1
  100. package/dist/esm/components/Icon/index.js +4 -0
  101. package/dist/esm/components/Icon/index.js.map +1 -0
  102. package/dist/esm/components/Menu/MenuItem.js +1 -1
  103. package/dist/esm/components/Menu/MenuItem.js.map +1 -1
  104. package/dist/esm/components/MultiSelect/MultiSelect.js +61 -44
  105. package/dist/esm/components/MultiSelect/MultiSelect.js.map +1 -1
  106. package/dist/esm/components/Notification/Notification.js +12 -4
  107. package/dist/esm/components/Notification/Notification.js.map +1 -1
  108. package/dist/esm/components/OverviewItem/OverviewItemDepiction.js +24 -0
  109. package/dist/esm/components/OverviewItem/OverviewItemDepiction.js.map +1 -1
  110. package/dist/esm/components/Tag/Tag.js +6 -2
  111. package/dist/esm/components/Tag/Tag.js.map +1 -1
  112. package/dist/esm/components/TextField/TextArea.js +4 -2
  113. package/dist/esm/components/TextField/TextArea.js.map +1 -1
  114. package/dist/esm/components/TextField/TextField.js +4 -2
  115. package/dist/esm/components/TextField/TextField.js.map +1 -1
  116. package/dist/esm/components/TextField/useTextValidation.js +78 -0
  117. package/dist/esm/components/TextField/useTextValidation.js.map +1 -0
  118. package/dist/esm/components/Tree/Tree.js.map +1 -1
  119. package/dist/esm/components/Typography/Highlighter.js.map +1 -1
  120. package/dist/esm/components/Typography/OverflowText.js.map +1 -1
  121. package/dist/esm/components/Typography/WhiteSpaceContainer.js +16 -14
  122. package/dist/esm/components/Typography/WhiteSpaceContainer.js.map +1 -1
  123. package/dist/esm/components/Typography/index.js +12 -0
  124. package/dist/esm/components/Typography/index.js.map +1 -0
  125. package/dist/esm/components/Workspace/WorkspaceContent.js +1 -1
  126. package/dist/esm/components/Workspace/WorkspaceContent.js.map +1 -1
  127. package/dist/esm/components/index.js +6 -0
  128. package/dist/esm/components/index.js.map +1 -0
  129. package/dist/esm/index.js +5 -10
  130. package/dist/esm/index.js.map +1 -1
  131. package/dist/types/cmem/ActivityControl/ActivityControlWidget.d.ts +2 -1
  132. package/dist/types/cmem/react-flow/ReactFlow/ReactFlow.d.ts +14 -0
  133. package/dist/types/cmem/react-flow/extensions/scrollOnDragHook.d.ts +22 -0
  134. package/dist/types/common/Intent/index.d.ts +4 -3
  135. package/dist/types/common/utils/characters.d.ts +19 -0
  136. package/dist/types/components/Badge/Badge.d.ts +42 -0
  137. package/dist/types/components/Depiction/Depiction.d.ts +71 -0
  138. package/dist/types/components/Grid/Grid.d.ts +21 -2
  139. package/dist/types/components/Grid/GridColumn.d.ts +20 -2
  140. package/dist/types/components/Grid/GridRow.d.ts +17 -1
  141. package/dist/types/components/Icon/BaseIcon.d.ts +45 -0
  142. package/dist/types/components/Icon/Icon.d.ts +7 -34
  143. package/dist/types/components/Icon/IconButton.d.ts +3 -2
  144. package/dist/types/components/Icon/TestIcon.d.ts +20 -0
  145. package/dist/types/components/Icon/canonicalIconNames.d.ts +9 -7
  146. package/dist/types/components/Icon/index.d.ts +4 -0
  147. package/dist/types/components/Menu/MenuItem.d.ts +2 -1
  148. package/dist/types/components/MultiSelect/MultiSelect.d.ts +3 -1
  149. package/dist/types/components/Notification/Notification.d.ts +13 -4
  150. package/dist/types/components/Tabs/Tab.d.ts +2 -0
  151. package/dist/types/components/Tag/Tag.d.ts +16 -3
  152. package/dist/types/components/TextField/TextArea.d.ts +7 -2
  153. package/dist/types/components/TextField/TextField.d.ts +6 -1
  154. package/dist/types/components/TextField/useTextValidation.d.ts +28 -0
  155. package/dist/types/components/Tree/Tree.d.ts +2 -1
  156. package/dist/types/components/Typography/Highlighter.d.ts +2 -2
  157. package/dist/types/components/Typography/OverflowText.d.ts +2 -2
  158. package/dist/types/components/Typography/WhiteSpaceContainer.d.ts +45 -4
  159. package/dist/types/components/Typography/index.d.ts +12 -0
  160. package/dist/types/components/index.d.ts +5 -0
  161. package/dist/types/index.d.ts +6 -11
  162. package/package.json +13 -16
  163. package/scripts/compile-sass.ts +9 -1
  164. package/src/_shame.scss +1 -1
  165. package/src/cmem/ActivityControl/ActivityControlWidget.stories.tsx +6 -4
  166. package/src/cmem/ActivityControl/ActivityControlWidget.tsx +3 -2
  167. package/src/cmem/react-flow/ReactFlow/ReactFlow.tsx +26 -1
  168. package/src/cmem/react-flow/StickyNoteModal/StickyNoteModal.tsx +10 -6
  169. package/src/cmem/react-flow/extensions/scrollOnDragHook.ts +247 -0
  170. package/src/common/Intent/index.ts +16 -12
  171. package/src/common/utils/characters.ts +111 -0
  172. package/src/components/Accordion/accordion.scss +4 -3
  173. package/src/components/Application/ApplicationTitle.tsx +2 -2
  174. package/src/components/Application/_config.scss +1 -1
  175. package/src/components/Application/_content.scss +1 -1
  176. package/src/components/Application/_header.scss +2 -2
  177. package/src/components/Application/_sidebar.scss +2 -9
  178. package/src/components/Application/_toolbar.scss +1 -1
  179. package/src/components/Application/application.scss +4 -4
  180. package/src/components/AutocompleteField/autoCompleteFieldUtils.tsx +13 -8
  181. package/src/components/Badge/Badge.stories.tsx +47 -0
  182. package/src/components/Badge/Badge.tsx +93 -0
  183. package/src/components/Badge/badge.scss +44 -0
  184. package/src/components/Depiction/Depiction.tsx +198 -0
  185. package/src/components/Depiction/depiction.scss +176 -0
  186. package/src/components/Depiction/stories/Depiction.stories.tsx +69 -0
  187. package/src/components/Depiction/stories/test-16to9.png +0 -0
  188. package/src/components/Depiction/stories/test-16to9.svg +41 -0
  189. package/src/components/Depiction/stories/test-16to9.tobase64.svg +41 -0
  190. package/src/components/Depiction/stories/test-16to9.tsx +44 -0
  191. package/src/components/Depiction/stories/test-9to16.png +0 -0
  192. package/src/components/Depiction/stories/test-9to16.svg +44 -0
  193. package/src/components/Depiction/stories/test-9to16.tobase64.svg +44 -0
  194. package/src/components/Depiction/stories/test-9to16.tsx +48 -0
  195. package/src/components/Grid/Grid.tsx +22 -4
  196. package/src/components/Grid/GridColumn.tsx +23 -6
  197. package/src/components/Grid/GridRow.tsx +17 -2
  198. package/src/components/Grid/grid.scss +14 -13
  199. package/src/components/Grid/stories/Grid.stories.tsx +27 -0
  200. package/src/components/Grid/stories/GridColumn.stories.tsx +66 -0
  201. package/src/components/Grid/stories/GridRow.stories.tsx +47 -0
  202. package/src/components/Icon/BaseIcon.tsx +84 -0
  203. package/src/components/Icon/Icon.tsx +23 -82
  204. package/src/components/Icon/IconButton.tsx +18 -14
  205. package/src/components/Icon/TestIcon.tsx +39 -0
  206. package/src/components/Icon/canonicalIconNames.tsx +132 -633
  207. package/src/components/Icon/index.ts +5 -0
  208. package/src/components/Icon/stories/Icon.stories.tsx +13 -0
  209. package/src/components/Icon/stories/IconButton.stories.tsx +14 -7
  210. package/src/components/Icon/stories/TestIcon.stories.tsx +28 -0
  211. package/src/components/Link/link.scss +2 -1
  212. package/src/components/Menu/MenuItem.tsx +14 -4
  213. package/src/components/Menu/Stories/MenuItem.stories.tsx +16 -2
  214. package/src/components/MultiSelect/MultiSelect.tsx +58 -27
  215. package/src/components/Notification/Notification.stories.tsx +4 -0
  216. package/src/components/Notification/Notification.tsx +26 -6
  217. package/src/components/OverviewItem/OverviewItemDepiction.tsx +31 -0
  218. package/src/components/OverviewItem/overviewitem.scss +2 -1
  219. package/src/components/OverviewItem/stories/OverviewItem.stories.tsx +22 -1
  220. package/src/components/OverviewItem/stories/OverviewItemDepiction.stories.tsx +8 -3
  221. package/src/components/Pagination/pagination.scss +3 -2
  222. package/src/components/SimpleTable/simpletable.scss +11 -12
  223. package/src/components/Tag/Tag.stories.tsx +7 -2
  224. package/src/components/Tag/Tag.tsx +24 -4
  225. package/src/components/Tag/tag.scss +84 -3
  226. package/src/components/TagInput/taginput.scss +6 -0
  227. package/src/components/TextField/TextArea.tsx +10 -1
  228. package/src/components/TextField/TextField.tsx +9 -0
  229. package/src/components/TextField/stories/SearchField.stories.tsx +1 -1
  230. package/src/components/TextField/textfield.scss +12 -0
  231. package/src/components/TextField/useTextValidation.ts +103 -0
  232. package/src/components/Tooltip/tooltip.scss +1 -1
  233. package/src/components/Tree/Tree.stories.tsx +7 -1
  234. package/src/components/Tree/Tree.tsx +2 -1
  235. package/src/components/Typography/Highlighter.tsx +2 -2
  236. package/src/components/Typography/OverflowText.tsx +2 -2
  237. package/src/components/Typography/WhiteSpaceContainer.tsx +69 -21
  238. package/src/components/Typography/index.ts +25 -0
  239. package/src/components/Typography/stories/WhiteSpaceContainer.stories.tsx +55 -0
  240. package/src/components/Typography/typography.scss +3 -2
  241. package/src/components/Workspace/WorkspaceContent.tsx +1 -1
  242. package/src/components/index.scss +5 -0
  243. package/src/components/index.ts +5 -0
  244. package/src/includes/carbon-components/_components.scss +11 -0
  245. package/src/includes/carbon-components/_requisits.scss +18 -0
  246. package/src/includes/carbon-components/_variables.scss +50 -53
  247. package/src/index.scss +4 -105
  248. package/src/index.ts +6 -16
@@ -1,626 +1,128 @@
1
1
  import * as icons from "@carbon/icons-react";
2
2
  var canonicalIconNames = {
3
- "application-dataintegration": {
4
- small: icons.DataUnstructured16,
5
- normal: icons.DataUnstructured20,
6
- large: icons.DataUnstructured32,
7
- },
8
- "application-homepage": {
9
- small: icons.Workspace16,
10
- normal: icons.Workspace20,
11
- large: icons.Workspace32,
12
- },
13
- "application-useraccount": {
14
- small: icons.UserAvatar16,
15
- normal: icons.UserAvatar20,
16
- large: icons.UserAvatar32,
17
- },
18
- "application-warning": {
19
- small: icons.WarningAlt16,
20
- normal: icons.WarningAlt20,
21
- large: icons.WarningAlt32,
22
- },
23
- "application-mapping": {
24
- small: icons.ModelBuilder16,
25
- normal: icons.ModelBuilder20,
26
- large: icons.ModelBuilder32,
27
- },
28
- "application-explore": {
29
- small: icons.Explore16,
30
- normal: icons.Explore20,
31
- large: icons.Explore32,
32
- },
33
- "application-vocabularies": {
34
- small: icons.Catalog16,
35
- normal: icons.Catalog20,
36
- large: icons.Catalog32,
37
- },
38
- "application-queries": {
39
- small: icons.DataView16,
40
- normal: icons.DataView20,
41
- large: icons.DataView32,
42
- },
43
- "application-legacygui": {
44
- small: icons.ResetAlt16,
45
- normal: icons.ResetAlt20,
46
- large: icons.ResetAlt32,
47
- },
48
- "application-activities": {
49
- small: icons.Activity16,
50
- normal: icons.Activity20,
51
- large: icons.Activity32,
52
- },
53
- "module-timetracker": {
54
- small: icons.Timer16,
55
- normal: icons.Timer20,
56
- large: icons.Timer32,
57
- },
58
- "module-accesscontrol": {
59
- small: icons.UserAdmin16,
60
- normal: icons.UserAdmin20,
61
- large: icons.UserAdmin32,
62
- },
63
- "module-annotation": {
64
- small: icons.WatsonHealthTextAnnotationToggle16,
65
- normal: icons.WatsonHealthTextAnnotationToggle20,
66
- large: icons.WatsonHealthTextAnnotationToggle32,
67
- },
68
- "module-dashboard": {
69
- small: icons.Dashboard16,
70
- normal: icons.Dashboard20,
71
- large: icons.Dashboard32,
72
- },
73
- "module-search": {
74
- small: icons.Search16,
75
- normal: icons.Search20,
76
- large: icons.Search32,
77
- },
78
- "module-visualization": {
79
- small: icons.DataVis_116,
80
- normal: icons.DataVis_120,
81
- large: icons.DataVis_132,
82
- },
83
- "module-reports": {
84
- small: icons.ReportData16,
85
- normal: icons.ReportData20,
86
- large: icons.ReportData32,
87
- },
88
- "module-thesauri": {
89
- small: icons.Book16,
90
- normal: icons.Book20,
91
- large: icons.Book32,
92
- },
93
- "module-linkedrules": {
94
- small: icons.Connect16,
95
- normal: icons.Connect20,
96
- large: icons.Connect32,
97
- },
98
- "module-integrations": {
99
- small: icons.AppConnectivity16,
100
- normal: icons.AppConnectivity20,
101
- large: icons.AppConnectivity32,
102
- },
103
- "module-gdprsearch": {
104
- small: icons.UserProfile16,
105
- normal: icons.UserProfile20,
106
- large: icons.UserProfile32,
107
- },
108
- "toggler-showmore": {
109
- small: icons.ChevronDown16,
110
- normal: icons.ChevronDown20,
111
- large: icons.ChevronDown32,
112
- },
113
- "toggler-showless": {
114
- small: icons.ChevronUp16,
115
- normal: icons.ChevronUp20,
116
- large: icons.ChevronUp32,
117
- },
118
- "toggler-moveright": {
119
- small: icons.ChevronRight16,
120
- normal: icons.ChevronRight20,
121
- large: icons.ChevronRight32,
122
- },
123
- "toggler-moveleft": {
124
- small: icons.ChevronLeft16,
125
- normal: icons.ChevronLeft20,
126
- large: icons.ChevronLeft32,
127
- },
128
- "toggler-maximize": {
129
- small: icons.Maximize16,
130
- normal: icons.Maximize20,
131
- large: icons.Maximize32,
132
- },
133
- "toggler-minimize": {
134
- small: icons.Minimize16,
135
- normal: icons.Minimize20,
136
- large: icons.Minimize32,
137
- },
138
- "toggler-tree": {
139
- small: icons.TreeViewAlt16,
140
- normal: icons.TreeViewAlt20,
141
- large: icons.TreeViewAlt32,
142
- },
143
- "navigation-back": {
144
- small: icons.ArrowLeft16,
145
- normal: icons.ArrowLeft20,
146
- large: icons.ArrowLeft32,
147
- },
148
- "navigation-forth": {
149
- small: icons.ArrowRight16,
150
- normal: icons.ArrowRight20,
151
- large: icons.ArrowRight32,
152
- },
153
- "navigation-close": {
154
- small: icons.Close16,
155
- normal: icons.Close20,
156
- large: icons.Close32,
157
- },
158
- "navigation-jump": {
159
- small: icons.JumpLink16,
160
- normal: icons.JumpLink20,
161
- large: icons.JumpLink32,
162
- },
163
- "navigation-last": {
164
- small: icons.PageLast16,
165
- normal: icons.PageLast20,
166
- large: icons.PageLast32,
167
- },
168
- "navigation-previous": {
169
- small: icons.ChevronLeft16,
170
- normal: icons.ChevronLeft20,
171
- large: icons.ChevronLeft32,
172
- },
173
- "navigation-next": {
174
- small: icons.ChevronRight16,
175
- normal: icons.ChevronRight20,
176
- large: icons.ChevronRight32,
177
- },
178
- "navigation-first": {
179
- small: icons.PageFirst16,
180
- normal: icons.PageFirst20,
181
- large: icons.PageFirst32,
182
- },
183
- "item-moremenu": {
184
- small: icons.OverflowMenuVertical16,
185
- normal: icons.OverflowMenuVertical20,
186
- large: icons.OverflowMenuVertical32,
187
- },
188
- "item-vertmenu": {
189
- small: icons.OverflowMenuHorizontal16,
190
- normal: icons.OverflowMenuHorizontal20,
191
- large: icons.OverflowMenuHorizontal32,
192
- },
193
- "item-viewdetails": {
194
- small: icons.View16,
195
- normal: icons.View20,
196
- large: icons.View32,
197
- },
198
- "item-clone": {
199
- small: icons.Copy16,
200
- normal: icons.Copy20,
201
- large: icons.Copy32,
202
- },
203
- "item-edit": {
204
- small: icons.Edit16,
205
- normal: icons.Edit20,
206
- large: icons.Edit32,
207
- },
208
- "item-evaluation": {
209
- small: icons.Analytics16,
210
- normal: icons.Analytics20,
211
- large: icons.Analytics32,
212
- },
213
- "item-execution": {
214
- small: icons.Run16,
215
- normal: icons.Run20,
216
- large: icons.Run32,
217
- },
218
- "item-info": {
219
- small: icons.Information16,
220
- normal: icons.Information20,
221
- large: icons.Information32,
222
- },
223
- "item-remove": {
224
- small: icons.TrashCan16,
225
- normal: icons.TrashCan20,
226
- large: icons.TrashCan32,
227
- },
228
- "item-add-artefact": {
229
- small: icons.AddAlt16,
230
- normal: icons.AddAlt20,
231
- large: icons.AddAlt32,
232
- },
233
- "item-launch": {
234
- small: icons.Launch16,
235
- normal: icons.Launch20,
236
- large: icons.Launch32,
237
- },
238
- "item-download": {
239
- small: icons.Download16,
240
- normal: icons.Download20,
241
- large: icons.Download32,
242
- },
243
- "item-upload": {
244
- small: icons.Upload16,
245
- normal: icons.Upload20,
246
- large: icons.Upload32,
247
- },
248
- "item-question": {
249
- small: icons.Help16,
250
- normal: icons.Help20,
251
- large: icons.Help32,
252
- },
253
- "item-copy": {
254
- small: icons.CopyFile16,
255
- normal: icons.CopyFile20,
256
- large: icons.CopyFile32,
257
- },
258
- "item-save": {
259
- small: icons.Save16,
260
- normal: icons.Save20,
261
- large: icons.Save32,
262
- },
263
- "item-start": {
264
- small: icons.PlayFilledAlt16,
265
- normal: icons.PlayFilledAlt20,
266
- large: icons.PlayFilledAlt32,
267
- },
268
- "item-stop": {
269
- small: icons.StopFilledAlt16,
270
- normal: icons.StopFilledAlt20,
271
- large: icons.StopFilledAlt32,
272
- },
273
- "item-reload": {
274
- small: icons.Renew16,
275
- normal: icons.Renew20,
276
- large: icons.Renew32,
277
- },
278
- "item-reset": {
279
- small: icons.Reset16,
280
- normal: icons.Reset20,
281
- large: icons.Reset32,
282
- },
283
- "item-comment": {
284
- small: icons.AddComment16,
285
- normal: icons.AddComment20,
286
- large: icons.AddComment32,
287
- },
288
- "item-shuffle": {
289
- small: icons.Shuffle16,
290
- normal: icons.Shuffle20,
291
- large: icons.Shuffle32,
292
- },
293
- "item-draggable": {
294
- small: icons.Draggable16,
295
- normal: icons.Draggable20,
296
- large: icons.Draggable32,
297
- },
298
- "item-settings": {
299
- small: icons.Settings16,
300
- normal: icons.Settings20,
301
- large: icons.Settings32,
302
- },
303
- "operation-search": {
304
- small: icons.Search16,
305
- normal: icons.Search20,
306
- large: icons.Search32,
307
- },
308
- "operation-clear": {
309
- small: icons.Close16,
310
- normal: icons.Close20,
311
- large: icons.Close32,
312
- },
313
- "operation-undo": {
314
- small: icons.Undo16,
315
- normal: icons.Undo20,
316
- large: icons.Undo32,
317
- },
318
- "operation-redo": {
319
- small: icons.Redo16,
320
- normal: icons.Redo20,
321
- large: icons.Redo32,
322
- },
323
- "operation-logout": {
324
- small: icons.Logout16,
325
- normal: icons.Logout20,
326
- large: icons.Logout32,
327
- },
328
- "operation-filter": {
329
- small: icons.Filter16,
330
- normal: icons.Filter20,
331
- large: icons.Filter32,
332
- },
333
- "operation-filteredit": {
334
- small: icons.FilterEdit16,
335
- normal: icons.FilterEdit20,
336
- large: icons.FilterEdit32,
337
- },
338
- "operation-transform": {
339
- small: icons.Calculation16,
340
- normal: icons.Calculation20,
341
- large: icons.Calculation32,
342
- },
343
- "operation-comparison": {
344
- small: icons.Compare16,
345
- normal: icons.Compare20,
346
- large: icons.Compare32,
347
- },
348
- "operation-aggregation": {
349
- small: icons.DataCollection16,
350
- normal: icons.DataCollection20,
351
- large: icons.DataCollection32,
352
- },
353
- "operation-commit": {
354
- small: icons.Commit16,
355
- normal: icons.Commit20,
356
- large: icons.Commit32
357
- },
358
- "operation-sharelink": {
359
- small: icons.CopyLink16,
360
- normal: icons.CopyLink20,
361
- large: icons.CopyLink32
362
- },
363
- "data-sourcepath": {
364
- small: icons.Data_216,
365
- normal: icons.Data_220,
366
- large: icons.Data_232,
367
- },
368
- "data-targetpath": {
369
- small: icons.Data_116,
370
- normal: icons.Data_120,
371
- large: icons.Data_132,
372
- },
373
- "list-sort": {
374
- small: icons.ArrowsVertical16,
375
- normal: icons.ArrowsVertical20,
376
- large: icons.ArrowsVertical32,
377
- },
378
- "list-sortasc": {
379
- small: icons.ArrowDown16,
380
- normal: icons.ArrowDown20,
381
- large: icons.ArrowDown32,
382
- },
383
- "list-sortdesc": {
384
- small: icons.ArrowUp16,
385
- normal: icons.ArrowUp20,
386
- large: icons.ArrowUp32,
387
- },
388
- "state-info": {
389
- small: icons.InformationFilled16,
390
- normal: icons.InformationFilled20,
391
- large: icons.InformationFilled32,
392
- },
393
- "state-success": {
394
- small: icons.CheckmarkFilled16,
395
- normal: icons.CheckmarkFilled20,
396
- large: icons.CheckmarkFilled32,
397
- },
398
- "state-warning": {
399
- small: icons.WarningAltFilled16,
400
- normal: icons.WarningAltFilled20,
401
- large: icons.WarningAltFilled32,
402
- },
403
- "state-danger": {
404
- small: icons.ErrorFilled16,
405
- normal: icons.ErrorFilled20,
406
- large: icons.ErrorFilled32,
407
- },
408
- "state-unchecked": {
409
- small: icons.Checkbox16,
410
- normal: icons.Checkbox20,
411
- large: icons.Checkbox32,
412
- },
413
- "state-checked": {
414
- small: icons.CheckboxChecked16,
415
- normal: icons.CheckboxChecked20,
416
- large: icons.CheckboxChecked32,
417
- },
418
- "state-checkedsimple": {
419
- small: icons.Checkmark16,
420
- normal: icons.Checkmark20,
421
- large: icons.Checkmark32,
422
- },
423
- "state-partlychecked": {
424
- small: icons.CheckboxIndeterminate16,
425
- normal: icons.CheckboxIndeterminate20,
426
- large: icons.CheckboxIndeterminate32,
427
- },
428
- "state-declined": {
429
- small: icons.ThumbsDown16,
430
- normal: icons.ThumbsDown20,
431
- large: icons.ThumbsDown32
432
- },
433
- "state-confirmed": {
434
- small: icons.ThumbsUp16,
435
- normal: icons.ThumbsUp20,
436
- large: icons.ThumbsUp32
437
- },
438
- "artefact-project": {
439
- small: icons.Folder16,
440
- normal: icons.Folder20,
441
- large: icons.Folder32,
442
- },
443
- "artefact-workflow": {
444
- small: icons.ModelBuilder16,
445
- normal: icons.ModelBuilder20,
446
- large: icons.ModelBuilder32,
447
- },
448
- "artefact-dataset": {
449
- small: icons.Data_216,
450
- normal: icons.Data_220,
451
- large: icons.Data_232,
452
- },
453
- "artefact-dataset-csv": {
454
- small: icons.Csv16,
455
- normal: icons.Csv20,
456
- large: icons.Csv32,
457
- },
458
- "artefact-dataset-multicsv": {
459
- small: icons.Csv16,
460
- normal: icons.Csv20,
461
- large: icons.Csv32,
462
- },
463
- "artefact-dataset-sparkview": {
464
- small: icons.Sql16,
465
- normal: icons.Sql20,
466
- large: icons.Sql32,
467
- },
468
- "artefact-dataset-sqlendpoint": {
469
- small: icons.Sql16,
470
- normal: icons.Sql20,
471
- large: icons.Sql32,
472
- },
473
- "artefact-dataset-jdbc": {
474
- small: icons.Sql16,
475
- normal: icons.Sql20,
476
- large: icons.Sql32,
477
- },
478
- "artefact-dataset-xml": {
479
- small: icons.Xml16,
480
- normal: icons.Xml20,
481
- large: icons.Xml32,
482
- },
483
- "artefact-dataset-json": {
484
- small: icons.Json16,
485
- normal: icons.Json20,
486
- large: icons.Json32,
487
- },
488
- "artefact-dataset-excel": {
489
- small: icons.Xls16,
490
- normal: icons.Xls20,
491
- large: icons.Xls32,
492
- },
493
- "artefact-dataset-file": {
494
- small: icons.DataVis_116,
495
- normal: icons.DataVis_120,
496
- large: icons.DataVis_132,
497
- },
498
- "artefact-dataset-eccencadataplatform": {
499
- small: icons.DataVis_116,
500
- normal: icons.DataVis_120,
501
- large: icons.DataVis_132,
502
- },
503
- "artefact-dataset-sparqlendpoint": {
504
- small: icons.DataVis_116,
505
- normal: icons.DataVis_120,
506
- large: icons.DataVis_132,
507
- },
508
- "artefact-dataset-neo4j": {
509
- small: icons.DataVis_116,
510
- normal: icons.DataVis_120,
511
- large: icons.DataVis_132,
512
- },
513
- "artefact-transform": {
514
- small: icons.DataRefinery16,
515
- normal: icons.DataRefinery20,
516
- large: icons.DataRefinery32,
517
- },
518
- "artefact-linking": {
519
- small: icons.Connect16,
520
- normal: icons.Connect20,
521
- large: icons.Connect32,
522
- },
523
- "artefact-task": {
524
- small: icons.Script16,
525
- normal: icons.Script20,
526
- large: icons.Script32,
527
- },
528
- "artefact-customtask": {
529
- small: icons.Script16,
530
- normal: icons.Script20,
531
- large: icons.Script32,
532
- },
533
- "artefact-file": {
534
- small: icons.Document16,
535
- normal: icons.Document20,
536
- large: icons.Document32,
537
- },
538
- "artefact-embedded": {
539
- small: icons.DataBase16,
540
- normal: icons.DataBase20,
541
- large: icons.DataBase32,
542
- },
543
- "artefact-remote": {
544
- small: icons.VirtualMachine16,
545
- normal: icons.VirtualMachine20,
546
- large: icons.VirtualMachine32,
547
- },
548
- "artefact-deprecated": {
549
- small: icons.WarningSquare16,
550
- normal: icons.WarningSquare20,
551
- large: icons.WarningSquare32,
552
- },
553
- "artefact-uncategorized": {
554
- small: icons.Unknown16,
555
- normal: icons.Unknown20,
556
- large: icons.Unknown32,
557
- },
558
- "artefact-rawdata": {
559
- small: icons.ScriptReference16,
560
- normal: icons.ScriptReference20,
561
- large: icons.ScriptReference32,
562
- },
563
- "artefact-report": {
564
- small: icons.Report16,
565
- normal: icons.Report20,
566
- large: icons.Report32,
567
- },
568
- "artefact-commit": {
569
- small: icons.Commit16,
570
- normal: icons.Commit20,
571
- large: icons.Commit32
572
- },
573
- "artefact-errorlog": {
574
- // FIXME: we may check for a better icon
575
- small: icons.WarningOther16,
576
- normal: icons.WarningOther20,
577
- large: icons.WarningOther32,
578
- },
579
- "toggler-caret": {
580
- small: icons.CaretSort16,
581
- normal: icons.CaretSort20,
582
- large: icons.CaretSort32,
583
- },
584
- "operation-link": {
585
- small: icons.Link16,
586
- normal: icons.Link20,
587
- large: icons.Link32,
588
- },
589
- "operation-unlink": {
590
- small: icons.Unlink16,
591
- normal: icons.Unlink20,
592
- large: icons.Unlink32,
593
- },
594
- "operation-autolayout": {
595
- small: icons.ChartNetwork16,
596
- normal: icons.ChartNetwork20,
597
- large: icons.ChartNetwork32,
598
- },
599
- "state-protected": {
600
- small: icons.DocumentProtected16,
601
- normal: icons.DocumentProtected20,
602
- large: icons.DocumentProtected32,
603
- },
604
- "toggler-star-empty": {
605
- small: icons.Star16,
606
- normal: icons.Star20,
607
- large: icons.Star32
608
- },
609
- "toggler-star-filled": {
610
- small: icons.StarFilled16,
611
- normal: icons.StarFilled20,
612
- large: icons.StarFilled32
613
- },
614
- undefined: {
615
- small: icons.Undefined16,
616
- normal: icons.Undefined20,
617
- large: icons.Undefined32,
618
- },
619
- Undefined: {
620
- small: icons.Undefined16,
621
- normal: icons.Undefined20,
622
- large: icons.Undefined32,
623
- },
3
+ "application-activities": icons.Activity,
4
+ "application-dataintegration": icons.DataUnstructured,
5
+ "application-explore": icons.Explore,
6
+ "application-homepage": icons.Workspace,
7
+ "application-legacygui": icons.ResetAlt,
8
+ "application-mapping": icons.ModelBuilder,
9
+ "application-queries": icons.DataView,
10
+ "application-useraccount": icons.UserAvatar,
11
+ "application-vocabularies": icons.Catalog,
12
+ "application-warning": icons.WarningAlt,
13
+ "artefact-commit": icons.Commit,
14
+ "artefact-customtask": icons.Script,
15
+ "artefact-dataset-csv": icons.Csv,
16
+ "artefact-dataset-eccencadataplatform": icons.DataVis_1,
17
+ "artefact-dataset-excel": icons.Xls,
18
+ "artefact-dataset-file": icons.DataVis_1,
19
+ "artefact-dataset": icons.Data_2,
20
+ "artefact-dataset-jdbc": icons.Sql,
21
+ "artefact-dataset-json": icons.Json,
22
+ "artefact-dataset-multicsv": icons.Csv,
23
+ "artefact-dataset-neo4j": icons.DataVis_1,
24
+ "artefact-dataset-sparkview": icons.Sql,
25
+ "artefact-dataset-sparqlendpoint": icons.DataVis_1,
26
+ "artefact-dataset-sqlendpoint": icons.Sql,
27
+ "artefact-dataset-xml": icons.Xml,
28
+ "artefact-deprecated": icons.WarningSquare,
29
+ "artefact-embedded": icons.DataBase,
30
+ "artefact-errorlog": icons.WarningOther,
31
+ "artefact-file": icons.Document,
32
+ "artefact-linking": icons.Connect,
33
+ "artefact-project": icons.Folder,
34
+ "artefact-rawdata": icons.ScriptReference,
35
+ "artefact-remote": icons.VirtualMachine,
36
+ "artefact-report": icons.Report,
37
+ "artefact-task": icons.Script,
38
+ "artefact-transform": icons.DataRefinery,
39
+ "artefact-uncategorized": icons.Unknown,
40
+ "artefact-workflow": icons.ModelBuilder,
41
+ "data-sourcepath": icons.Data_2,
42
+ "data-targetpath": icons.Data_1,
43
+ "item-add-artefact": icons.AddAlt,
44
+ "item-clone": icons.Copy,
45
+ "item-comment": icons.AddComment,
46
+ "item-copy": icons.CopyFile,
47
+ "item-download": icons.Download,
48
+ "item-draggable": icons.Draggable,
49
+ "item-edit": icons.Edit,
50
+ "item-evaluation": icons.Analytics,
51
+ "item-execution": icons.Run,
52
+ "item-info": icons.Information,
53
+ "item-launch": icons.Launch,
54
+ "item-moremenu": icons.OverflowMenuVertical,
55
+ "item-question": icons.Help,
56
+ "item-reload": icons.Renew,
57
+ "item-remove": icons.TrashCan,
58
+ "item-reset": icons.Reset,
59
+ "item-save": icons.Save,
60
+ "item-settings": icons.Settings,
61
+ "item-shuffle": icons.Shuffle,
62
+ "item-start": icons.PlayFilledAlt,
63
+ "item-stop": icons.StopFilledAlt,
64
+ "item-upload": icons.Upload,
65
+ "item-vertmenu": icons.OverflowMenuHorizontal,
66
+ "item-viewdetails": icons.View,
67
+ "list-sortasc": icons.ArrowDown,
68
+ "list-sortdesc": icons.ArrowUp,
69
+ "list-sort": icons.ArrowsVertical,
70
+ "module-accesscontrol": icons.UserAdmin,
71
+ "module-annotation": icons.WatsonHealthTextAnnotationToggle,
72
+ "module-dashboard": icons.Dashboard,
73
+ "module-gdprsearch": icons.UserProfile,
74
+ "module-integrations": icons.AppConnectivity,
75
+ "module-linkedrules": icons.Connect,
76
+ "module-reports": icons.ReportData,
77
+ "module-search": icons.Search,
78
+ "module-thesauri": icons.Book,
79
+ "module-timetracker": icons.Timer,
80
+ "module-visualization": icons.DataVis_1,
81
+ "navigation-back": icons.ArrowLeft,
82
+ "navigation-close": icons.Close,
83
+ "navigation-first": icons.PageFirst,
84
+ "navigation-forth": icons.ArrowRight,
85
+ "navigation-jump": icons.JumpLink,
86
+ "navigation-last": icons.PageLast,
87
+ "navigation-next": icons.ChevronRight,
88
+ "navigation-previous": icons.ChevronLeft,
89
+ "operation-aggregation": icons.DataCollection,
90
+ "operation-autolayout": icons.ChartNetwork,
91
+ "operation-clear": icons.Close,
92
+ "operation-commit": icons.Commit,
93
+ "operation-comparison": icons.Compare,
94
+ "operation-filteredit": icons.FilterEdit,
95
+ "operation-filter": icons.Filter,
96
+ "operation-link": icons.Link,
97
+ "operation-logout": icons.Logout,
98
+ "operation-redo": icons.Redo,
99
+ "operation-search": icons.Search,
100
+ "operation-sharelink": icons.CopyLink,
101
+ "operation-transform": icons.Calculation,
102
+ "operation-undo": icons.Undo,
103
+ "operation-unlink": icons.Unlink,
104
+ "state-checked": icons.CheckboxChecked,
105
+ "state-checkedsimple": icons.Checkmark,
106
+ "state-confirmed": icons.ThumbsUp,
107
+ "state-danger": icons.ErrorFilled,
108
+ "state-declined": icons.ThumbsDown,
109
+ "state-info": icons.InformationFilled,
110
+ "state-partlychecked": icons.CheckboxIndeterminate,
111
+ "state-protected": icons.DocumentProtected,
112
+ "state-success": icons.CheckmarkFilled,
113
+ "state-unchecked": icons.Checkbox,
114
+ "state-warning": icons.WarningAltFilled,
115
+ "toggler-caret": icons.CaretSort,
116
+ "toggler-maximize": icons.Maximize,
117
+ "toggler-minimize": icons.Minimize,
118
+ "toggler-moveleft": icons.ChevronLeft,
119
+ "toggler-moveright": icons.ChevronRight,
120
+ "toggler-showless": icons.ChevronUp,
121
+ "toggler-showmore": icons.ChevronDown,
122
+ "toggler-star-empty": icons.Star,
123
+ "toggler-star-filled": icons.StarFilled,
124
+ "toggler-tree": icons.TreeViewAlt,
125
+ undefined: icons.Undefined,
624
126
  };
625
127
  export default canonicalIconNames;
626
128
  //# sourceMappingURL=canonicalIconNames.js.map