@eccenca/gui-elements 23.0.0-rc.2 → 23.0.0-rc.3-unofficial.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -1
- package/dist/cjs/cmem/index.js +3 -1
- package/dist/cjs/cmem/index.js.map +1 -1
- package/dist/cjs/cmem/react-flow/StickyNoteModal/StickyNoteModal.js +64 -0
- package/dist/cjs/cmem/react-flow/StickyNoteModal/StickyNoteModal.js.map +1 -0
- package/dist/cjs/cmem/react-flow/configuration/graph.js.map +1 -1
- package/dist/cjs/cmem/react-flow/configuration/linking.js +2 -0
- package/dist/cjs/cmem/react-flow/configuration/linking.js.map +1 -1
- package/dist/cjs/cmem/react-flow/configuration/typing.js +35 -0
- package/dist/cjs/cmem/react-flow/configuration/typing.js.map +1 -0
- package/dist/cjs/cmem/react-flow/configuration/workflow.js +2 -0
- package/dist/cjs/cmem/react-flow/configuration/workflow.js.map +1 -1
- package/dist/cjs/cmem/react-flow/nodes/StickyNoteNode.js +42 -0
- package/dist/cjs/cmem/react-flow/nodes/StickyNoteNode.js.map +1 -0
- package/dist/cjs/common/utils/CssCustomProperties.js +114 -0
- package/dist/cjs/common/utils/CssCustomProperties.js.map +1 -0
- package/dist/cjs/common/utils/getColorConfiguration.js +21 -0
- package/dist/cjs/common/utils/getColorConfiguration.js.map +1 -0
- package/dist/cjs/components/Icon/canonicalIconNames.js +124 -114
- package/dist/cjs/components/Icon/canonicalIconNames.js.map +1 -1
- package/dist/cjs/components/Tag/Tag.js +2 -1
- package/dist/cjs/components/Tag/Tag.js.map +1 -1
- package/dist/cjs/extensions/codemirror/CodeMirror.js +3 -3
- package/dist/cjs/extensions/codemirror/CodeMirror.js.map +1 -1
- package/dist/cjs/extensions/react-flow/index.js +6 -1
- package/dist/cjs/extensions/react-flow/index.js.map +1 -1
- package/dist/cjs/extensions/react-flow/minimap/MiniMap.js +3 -2
- package/dist/cjs/extensions/react-flow/minimap/MiniMap.js.map +1 -1
- package/dist/cjs/extensions/react-flow/minimap/utils.js +12 -6
- package/dist/cjs/extensions/react-flow/minimap/utils.js.map +1 -1
- package/dist/cjs/extensions/react-flow/nodes/NodeContent.js +74 -25
- package/dist/cjs/extensions/react-flow/nodes/NodeContent.js.map +1 -1
- package/dist/cjs/extensions/react-flow/nodes/NodeContentExtension.js +10 -6
- package/dist/cjs/extensions/react-flow/nodes/NodeContentExtension.js.map +1 -1
- package/dist/cjs/extensions/react-flow/nodes/nodeUtils.js +49 -0
- package/dist/cjs/extensions/react-flow/nodes/nodeUtils.js.map +1 -0
- package/dist/cjs/legacy-replacements/Tabs/Tabs.js +1 -1
- package/dist/cjs/legacy-replacements/Tabs/Tabs.js.map +1 -1
- package/dist/cjs/legacy-replacements/TextField/TextField.js +5 -8
- package/dist/cjs/legacy-replacements/TextField/TextField.js.map +1 -1
- package/dist/esm/cmem/index.js +1 -0
- package/dist/esm/cmem/index.js.map +1 -1
- package/dist/esm/cmem/react-flow/StickyNoteModal/StickyNoteModal.js +89 -0
- package/dist/esm/cmem/react-flow/StickyNoteModal/StickyNoteModal.js.map +1 -0
- package/dist/esm/cmem/react-flow/configuration/graph.js +1 -1
- package/dist/esm/cmem/react-flow/configuration/graph.js.map +1 -1
- package/dist/esm/cmem/react-flow/configuration/linking.js +3 -1
- package/dist/esm/cmem/react-flow/configuration/linking.js.map +1 -1
- package/dist/esm/cmem/react-flow/configuration/typing.js +32 -0
- package/dist/esm/cmem/react-flow/configuration/typing.js.map +1 -0
- package/dist/esm/cmem/react-flow/configuration/workflow.js +3 -1
- package/dist/esm/cmem/react-flow/configuration/workflow.js.map +1 -1
- package/dist/esm/cmem/react-flow/nodes/StickyNoteNode.js +31 -0
- package/dist/esm/cmem/react-flow/nodes/StickyNoteNode.js.map +1 -0
- package/dist/esm/common/utils/CssCustomProperties.js +154 -0
- package/dist/esm/common/utils/CssCustomProperties.js.map +1 -0
- package/dist/esm/common/utils/getColorConfiguration.js +16 -0
- package/dist/esm/common/utils/getColorConfiguration.js.map +1 -0
- package/dist/esm/components/Icon/canonicalIconNames.js +124 -114
- package/dist/esm/components/Icon/canonicalIconNames.js.map +1 -1
- package/dist/esm/components/Tag/Tag.js +2 -1
- package/dist/esm/components/Tag/Tag.js.map +1 -1
- package/dist/esm/extensions/codemirror/CodeMirror.js +3 -3
- package/dist/esm/extensions/codemirror/CodeMirror.js.map +1 -1
- package/dist/esm/extensions/react-flow/index.js +1 -0
- package/dist/esm/extensions/react-flow/index.js.map +1 -1
- package/dist/esm/extensions/react-flow/minimap/MiniMap.js +3 -2
- package/dist/esm/extensions/react-flow/minimap/MiniMap.js.map +1 -1
- package/dist/esm/extensions/react-flow/minimap/utils.js +10 -5
- package/dist/esm/extensions/react-flow/minimap/utils.js.map +1 -1
- package/dist/esm/extensions/react-flow/nodes/NodeContent.js +76 -27
- package/dist/esm/extensions/react-flow/nodes/NodeContent.js.map +1 -1
- package/dist/esm/extensions/react-flow/nodes/NodeContentExtension.js +26 -6
- package/dist/esm/extensions/react-flow/nodes/NodeContentExtension.js.map +1 -1
- package/dist/esm/extensions/react-flow/nodes/nodeUtils.js +44 -0
- package/dist/esm/extensions/react-flow/nodes/nodeUtils.js.map +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legacy-replacements/Tabs/Tabs.js +1 -1
- package/dist/esm/legacy-replacements/Tabs/Tabs.js.map +1 -1
- package/dist/esm/legacy-replacements/TextField/TextField.js +2 -5
- package/dist/esm/legacy-replacements/TextField/TextField.js.map +1 -1
- package/dist/types/cmem/index.d.ts +1 -0
- package/dist/types/cmem/react-flow/StickyNoteModal/StickyNoteModal.d.ts +26 -0
- package/dist/types/cmem/react-flow/configuration/graph.d.ts +3 -8
- package/dist/types/cmem/react-flow/configuration/linking.d.ts +3 -9
- package/dist/types/cmem/react-flow/configuration/typing.d.ts +28 -0
- package/dist/types/cmem/react-flow/configuration/workflow.d.ts +3 -9
- package/dist/types/cmem/react-flow/nodes/StickyNoteNode.d.ts +3 -0
- package/dist/types/common/utils/CssCustomProperties.d.ts +28 -0
- package/dist/types/common/utils/getColorConfiguration.d.ts +8 -0
- package/dist/types/components/Icon/canonicalIconNames.d.ts +1 -1
- package/dist/types/components/Tag/Tag.d.ts +5 -1
- package/dist/types/extensions/codemirror/CodeMirror.d.ts +5 -1
- package/dist/types/extensions/react-flow/index.d.ts +1 -0
- package/dist/types/extensions/react-flow/minimap/MiniMap.d.ts +1 -1
- package/dist/types/extensions/react-flow/minimap/utils.d.ts +1 -0
- package/dist/types/extensions/react-flow/nodes/NodeContent.d.ts +17 -1
- package/dist/types/extensions/react-flow/nodes/NodeContentExtension.d.ts +2 -2
- package/dist/types/extensions/react-flow/nodes/nodeUtils.d.ts +14 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/legacy-replacements/Tabs/Tabs.d.ts +1 -1
- package/package.json +14 -13
- package/scripts/compile-sass.ts +9 -0
- package/scripts/fix-cjs-dist +5 -0
- package/scripts/fix-esm-dist +6 -0
- package/scripts/sassConfig.js +13 -0
- package/src/_shame.scss +17 -0
- package/src/cmem/index.ts +1 -0
- package/src/cmem/markdown/markdown.scss +1 -1
- package/src/cmem/react-flow/StickyNoteModal/StickyNoteModal.tsx +134 -0
- package/src/cmem/react-flow/_index.scss +1 -1
- package/src/cmem/react-flow/_minimap.scss +6 -2
- package/src/cmem/react-flow/configuration/graph.ts +3 -5
- package/src/cmem/react-flow/configuration/linking.ts +5 -6
- package/src/cmem/react-flow/configuration/typing.ts +30 -0
- package/src/cmem/react-flow/configuration/workflow.ts +5 -5
- package/src/cmem/react-flow/nodes/StickyNoteNode.tsx +13 -0
- package/src/cmem/react-flow/{_nodes.scss → nodes/_colors.scss} +0 -0
- package/src/cmem/react-flow/nodes/_index.scss +2 -0
- package/src/cmem/react-flow/nodes/_stickynote.scss +72 -0
- package/src/common/utils/CssCustomProperties.ts +2 -2
- package/src/common/utils/getColorConfiguration.ts +1 -2
- package/src/components/Accordion/accordion.scss +11 -11
- package/src/components/Application/_header.scss +4 -3
- package/src/components/Button/button.scss +43 -6
- package/src/components/Card/card.scss +5 -5
- package/src/components/ContextOverlay/ContextMenu.stories.tsx +4 -1
- package/src/components/ContextOverlay/contextoverlay.scss +14 -2
- package/src/components/Dialog/dialog.scss +10 -8
- package/src/components/Form/form.scss +6 -6
- package/src/components/Icon/canonicalIconNames.tsx +134 -121
- package/src/components/Icon/icon.scss +1 -1
- package/src/components/Label/label.scss +2 -2
- package/src/components/Menu/menu.scss +6 -6
- package/src/components/Notification/notification.scss +3 -1
- package/src/components/OverviewItem/overviewitem.scss +8 -8
- package/src/components/PropertyValuePair/propertyvalue.scss +9 -7
- package/src/components/Separation/separation.scss +6 -6
- package/src/components/SimpleTable/simpletable.scss +5 -5
- package/src/components/Tabs/tabs.scss +2 -2
- package/src/components/Tag/Tag.tsx +6 -0
- package/src/components/Tag/tag.scss +36 -11
- package/src/components/TextField/textfield.scss +6 -4
- package/src/components/Tooltip/tooltip.scss +3 -3
- package/src/components/Typography/typography.scss +4 -4
- package/src/configuration/_variables.scss +11 -9
- package/src/extensions/codemirror/CodeMirror.tsx +9 -4
- package/src/extensions/react-flow/edges/_edges.scss +3 -3
- package/src/extensions/react-flow/handles/_handles.scss +13 -13
- package/src/extensions/react-flow/index.ts +1 -0
- package/src/extensions/react-flow/minimap/MiniMap.tsx +16 -1
- package/src/extensions/react-flow/minimap/_minimap.scss +6 -6
- package/src/extensions/react-flow/minimap/utils.ts +8 -3
- package/src/extensions/react-flow/nodes/NodeContent.tsx +253 -166
- package/src/extensions/react-flow/nodes/NodeContentExtension.tsx +17 -11
- package/src/extensions/react-flow/nodes/_nodes.scss +44 -12
- package/src/extensions/react-flow/nodes/nodeUtils.tsx +53 -0
- package/src/extensions/react-flow/nodes/stories/NodeContent.stories.tsx +24 -13
- package/src/extensions/react-flow/nodes/stories/NodeContentExtension.stories.tsx +39 -47
- package/src/includes/blueprintjs/_variables.scss +3 -1
- package/src/includes/carbon-components/_variables.scss +7 -5
- package/src/index.ts +1 -1
- package/src/legacy-replacements/Tabs/Tabs.tsx +3 -1
- package/src/legacy-replacements/TextField/TextField.tsx +7 -5
|
@@ -24,332 +24,337 @@ const canonicalIconNames = {
|
|
|
24
24
|
"application-dataintegration": {
|
|
25
25
|
small: icons.DataUnstructured16,
|
|
26
26
|
normal: icons.DataUnstructured20,
|
|
27
|
-
large: icons.DataUnstructured32
|
|
27
|
+
large: icons.DataUnstructured32,
|
|
28
28
|
},
|
|
29
29
|
"application-homepage": {
|
|
30
30
|
small: icons.Workspace16,
|
|
31
31
|
normal: icons.Workspace20,
|
|
32
|
-
large: icons.Workspace32
|
|
32
|
+
large: icons.Workspace32,
|
|
33
33
|
},
|
|
34
34
|
"application-useraccount": {
|
|
35
35
|
small: icons.UserAvatar16,
|
|
36
36
|
normal: icons.UserAvatar20,
|
|
37
|
-
large: icons.UserAvatar32
|
|
37
|
+
large: icons.UserAvatar32,
|
|
38
38
|
},
|
|
39
39
|
"application-warning": {
|
|
40
40
|
small: icons.WarningAlt16,
|
|
41
41
|
normal: icons.WarningAlt20,
|
|
42
|
-
large: icons.WarningAlt32
|
|
42
|
+
large: icons.WarningAlt32,
|
|
43
43
|
},
|
|
44
44
|
"application-mapping": {
|
|
45
45
|
small: icons.ModelBuilder16,
|
|
46
46
|
normal: icons.ModelBuilder20,
|
|
47
|
-
large: icons.ModelBuilder32
|
|
47
|
+
large: icons.ModelBuilder32,
|
|
48
48
|
},
|
|
49
49
|
"application-explore": {
|
|
50
50
|
small: icons.Explore16,
|
|
51
51
|
normal: icons.Explore20,
|
|
52
|
-
large: icons.Explore32
|
|
52
|
+
large: icons.Explore32,
|
|
53
53
|
},
|
|
54
54
|
"application-vocabularies": {
|
|
55
55
|
small: icons.Catalog16,
|
|
56
56
|
normal: icons.Catalog20,
|
|
57
|
-
large: icons.Catalog32
|
|
57
|
+
large: icons.Catalog32,
|
|
58
58
|
},
|
|
59
59
|
"application-queries": {
|
|
60
60
|
small: icons.DataView16,
|
|
61
61
|
normal: icons.DataView20,
|
|
62
|
-
large: icons.DataView32
|
|
62
|
+
large: icons.DataView32,
|
|
63
63
|
},
|
|
64
64
|
"application-legacygui": {
|
|
65
65
|
small: icons.ResetAlt16,
|
|
66
66
|
normal: icons.ResetAlt20,
|
|
67
|
-
large: icons.ResetAlt32
|
|
67
|
+
large: icons.ResetAlt32,
|
|
68
68
|
},
|
|
69
69
|
"application-activities": {
|
|
70
70
|
small: icons.Activity16,
|
|
71
71
|
normal: icons.Activity20,
|
|
72
|
-
large: icons.Activity32
|
|
72
|
+
large: icons.Activity32,
|
|
73
73
|
},
|
|
74
74
|
"module-timetracker": {
|
|
75
75
|
small: icons.Timer16,
|
|
76
76
|
normal: icons.Timer20,
|
|
77
|
-
large: icons.Timer32
|
|
77
|
+
large: icons.Timer32,
|
|
78
78
|
},
|
|
79
79
|
"module-accesscontrol": {
|
|
80
80
|
small: icons.UserAdmin16,
|
|
81
81
|
normal: icons.UserAdmin20,
|
|
82
|
-
large: icons.UserAdmin32
|
|
82
|
+
large: icons.UserAdmin32,
|
|
83
83
|
},
|
|
84
84
|
"module-annotation": {
|
|
85
85
|
small: icons.WatsonHealthTextAnnotationToggle16,
|
|
86
86
|
normal: icons.WatsonHealthTextAnnotationToggle20,
|
|
87
|
-
large: icons.WatsonHealthTextAnnotationToggle32
|
|
87
|
+
large: icons.WatsonHealthTextAnnotationToggle32,
|
|
88
88
|
},
|
|
89
89
|
"module-dashboard": {
|
|
90
90
|
small: icons.Dashboard16,
|
|
91
91
|
normal: icons.Dashboard20,
|
|
92
|
-
large: icons.Dashboard32
|
|
92
|
+
large: icons.Dashboard32,
|
|
93
93
|
},
|
|
94
94
|
"module-search": {
|
|
95
95
|
small: icons.Search16,
|
|
96
96
|
normal: icons.Search20,
|
|
97
|
-
large: icons.Search32
|
|
97
|
+
large: icons.Search32,
|
|
98
98
|
},
|
|
99
99
|
"module-visualization": {
|
|
100
100
|
small: icons.DataVis_116,
|
|
101
101
|
normal: icons.DataVis_120,
|
|
102
|
-
large: icons.DataVis_132
|
|
102
|
+
large: icons.DataVis_132,
|
|
103
103
|
},
|
|
104
104
|
"module-reports": {
|
|
105
105
|
small: icons.ReportData16,
|
|
106
106
|
normal: icons.ReportData20,
|
|
107
|
-
large: icons.ReportData32
|
|
107
|
+
large: icons.ReportData32,
|
|
108
108
|
},
|
|
109
109
|
"module-thesauri": {
|
|
110
110
|
small: icons.Book16,
|
|
111
111
|
normal: icons.Book20,
|
|
112
|
-
large: icons.Book32
|
|
112
|
+
large: icons.Book32,
|
|
113
113
|
},
|
|
114
114
|
"module-linkedrules": {
|
|
115
115
|
small: icons.Connect16,
|
|
116
116
|
normal: icons.Connect20,
|
|
117
|
-
large: icons.Connect32
|
|
117
|
+
large: icons.Connect32,
|
|
118
118
|
},
|
|
119
119
|
"module-integrations": {
|
|
120
120
|
small: icons.AppConnectivity16,
|
|
121
121
|
normal: icons.AppConnectivity20,
|
|
122
|
-
large: icons.AppConnectivity32
|
|
122
|
+
large: icons.AppConnectivity32,
|
|
123
123
|
},
|
|
124
124
|
"module-gdprsearch": {
|
|
125
125
|
small: icons.UserProfile16,
|
|
126
126
|
normal: icons.UserProfile20,
|
|
127
|
-
large: icons.UserProfile32
|
|
127
|
+
large: icons.UserProfile32,
|
|
128
128
|
},
|
|
129
129
|
"toggler-showmore": {
|
|
130
130
|
small: icons.ChevronDown16,
|
|
131
131
|
normal: icons.ChevronDown20,
|
|
132
|
-
large: icons.ChevronDown32
|
|
132
|
+
large: icons.ChevronDown32,
|
|
133
133
|
},
|
|
134
134
|
"toggler-showless": {
|
|
135
135
|
small: icons.ChevronUp16,
|
|
136
136
|
normal: icons.ChevronUp20,
|
|
137
|
-
large: icons.ChevronUp32
|
|
137
|
+
large: icons.ChevronUp32,
|
|
138
138
|
},
|
|
139
139
|
"toggler-moveright": {
|
|
140
140
|
small: icons.ChevronRight16,
|
|
141
141
|
normal: icons.ChevronRight20,
|
|
142
|
-
large: icons.ChevronRight32
|
|
142
|
+
large: icons.ChevronRight32,
|
|
143
143
|
},
|
|
144
144
|
"toggler-moveleft": {
|
|
145
145
|
small: icons.ChevronLeft16,
|
|
146
146
|
normal: icons.ChevronLeft20,
|
|
147
|
-
large: icons.ChevronLeft32
|
|
147
|
+
large: icons.ChevronLeft32,
|
|
148
148
|
},
|
|
149
149
|
"toggler-maximize": {
|
|
150
150
|
small: icons.Maximize16,
|
|
151
151
|
normal: icons.Maximize20,
|
|
152
|
-
large: icons.Maximize32
|
|
152
|
+
large: icons.Maximize32,
|
|
153
153
|
},
|
|
154
154
|
"toggler-minimize": {
|
|
155
155
|
small: icons.Minimize16,
|
|
156
156
|
normal: icons.Minimize20,
|
|
157
|
-
large: icons.Minimize32
|
|
157
|
+
large: icons.Minimize32,
|
|
158
158
|
},
|
|
159
159
|
"toggler-tree": {
|
|
160
160
|
small: icons.TreeViewAlt16,
|
|
161
161
|
normal: icons.TreeViewAlt20,
|
|
162
|
-
large: icons.TreeViewAlt32
|
|
162
|
+
large: icons.TreeViewAlt32,
|
|
163
163
|
},
|
|
164
164
|
"navigation-back": {
|
|
165
165
|
small: icons.ArrowLeft16,
|
|
166
166
|
normal: icons.ArrowLeft20,
|
|
167
|
-
large: icons.ArrowLeft32
|
|
167
|
+
large: icons.ArrowLeft32,
|
|
168
168
|
},
|
|
169
169
|
"navigation-forth": {
|
|
170
170
|
small: icons.ArrowRight16,
|
|
171
171
|
normal: icons.ArrowRight20,
|
|
172
|
-
large: icons.ArrowRight32
|
|
172
|
+
large: icons.ArrowRight32,
|
|
173
173
|
},
|
|
174
174
|
"navigation-close": {
|
|
175
175
|
small: icons.Close16,
|
|
176
176
|
normal: icons.Close20,
|
|
177
|
-
large: icons.Close32
|
|
177
|
+
large: icons.Close32,
|
|
178
178
|
},
|
|
179
179
|
"navigation-jump": {
|
|
180
180
|
small: icons.JumpLink16,
|
|
181
181
|
normal: icons.JumpLink20,
|
|
182
|
-
large: icons.JumpLink32
|
|
182
|
+
large: icons.JumpLink32,
|
|
183
183
|
},
|
|
184
184
|
"navigation-last": {
|
|
185
185
|
small: icons.PageLast16,
|
|
186
186
|
normal: icons.PageLast20,
|
|
187
|
-
large: icons.PageLast32
|
|
187
|
+
large: icons.PageLast32,
|
|
188
188
|
},
|
|
189
189
|
"navigation-previous": {
|
|
190
190
|
small: icons.ChevronLeft16,
|
|
191
191
|
normal: icons.ChevronLeft20,
|
|
192
|
-
large: icons.ChevronLeft32
|
|
192
|
+
large: icons.ChevronLeft32,
|
|
193
193
|
},
|
|
194
194
|
"navigation-next": {
|
|
195
195
|
small: icons.ChevronRight16,
|
|
196
196
|
normal: icons.ChevronRight20,
|
|
197
|
-
large: icons.ChevronRight32
|
|
197
|
+
large: icons.ChevronRight32,
|
|
198
198
|
},
|
|
199
199
|
"navigation-first": {
|
|
200
200
|
small: icons.PageFirst16,
|
|
201
201
|
normal: icons.PageFirst20,
|
|
202
|
-
large: icons.PageFirst32
|
|
202
|
+
large: icons.PageFirst32,
|
|
203
203
|
},
|
|
204
204
|
"item-moremenu": {
|
|
205
205
|
small: icons.OverflowMenuVertical16,
|
|
206
206
|
normal: icons.OverflowMenuVertical20,
|
|
207
|
-
large: icons.OverflowMenuVertical32
|
|
207
|
+
large: icons.OverflowMenuVertical32,
|
|
208
208
|
},
|
|
209
209
|
"item-vertmenu": {
|
|
210
210
|
small: icons.OverflowMenuHorizontal16,
|
|
211
211
|
normal: icons.OverflowMenuHorizontal20,
|
|
212
|
-
large: icons.OverflowMenuHorizontal32
|
|
212
|
+
large: icons.OverflowMenuHorizontal32,
|
|
213
213
|
},
|
|
214
214
|
"item-viewdetails": {
|
|
215
215
|
small: icons.View16,
|
|
216
216
|
normal: icons.View20,
|
|
217
|
-
large: icons.View32
|
|
217
|
+
large: icons.View32,
|
|
218
218
|
},
|
|
219
219
|
"item-clone": {
|
|
220
220
|
small: icons.Copy16,
|
|
221
221
|
normal: icons.Copy20,
|
|
222
|
-
large: icons.Copy32
|
|
222
|
+
large: icons.Copy32,
|
|
223
223
|
},
|
|
224
224
|
"item-edit": {
|
|
225
225
|
small: icons.Edit16,
|
|
226
226
|
normal: icons.Edit20,
|
|
227
|
-
large: icons.Edit32
|
|
227
|
+
large: icons.Edit32,
|
|
228
228
|
},
|
|
229
229
|
"item-evaluation": {
|
|
230
230
|
small: icons.Analytics16,
|
|
231
231
|
normal: icons.Analytics20,
|
|
232
|
-
large: icons.Analytics32
|
|
232
|
+
large: icons.Analytics32,
|
|
233
233
|
},
|
|
234
234
|
"item-execution": {
|
|
235
235
|
small: icons.Run16,
|
|
236
236
|
normal: icons.Run20,
|
|
237
|
-
large: icons.Run32
|
|
237
|
+
large: icons.Run32,
|
|
238
238
|
},
|
|
239
239
|
"item-info": {
|
|
240
240
|
small: icons.Information16,
|
|
241
241
|
normal: icons.Information20,
|
|
242
|
-
large: icons.Information32
|
|
242
|
+
large: icons.Information32,
|
|
243
243
|
},
|
|
244
244
|
"item-remove": {
|
|
245
245
|
small: icons.TrashCan16,
|
|
246
246
|
normal: icons.TrashCan20,
|
|
247
|
-
large: icons.TrashCan32
|
|
247
|
+
large: icons.TrashCan32,
|
|
248
248
|
},
|
|
249
249
|
"item-add-artefact": {
|
|
250
250
|
small: icons.AddAlt16,
|
|
251
251
|
normal: icons.AddAlt20,
|
|
252
|
-
large: icons.AddAlt32
|
|
252
|
+
large: icons.AddAlt32,
|
|
253
253
|
},
|
|
254
254
|
"item-launch": {
|
|
255
255
|
small: icons.Launch16,
|
|
256
256
|
normal: icons.Launch20,
|
|
257
|
-
large: icons.Launch32
|
|
257
|
+
large: icons.Launch32,
|
|
258
258
|
},
|
|
259
259
|
"item-download": {
|
|
260
260
|
small: icons.Download16,
|
|
261
261
|
normal: icons.Download20,
|
|
262
|
-
large: icons.Download32
|
|
262
|
+
large: icons.Download32,
|
|
263
263
|
},
|
|
264
264
|
"item-question": {
|
|
265
265
|
small: icons.Help16,
|
|
266
266
|
normal: icons.Help20,
|
|
267
|
-
large: icons.Help32
|
|
267
|
+
large: icons.Help32,
|
|
268
268
|
},
|
|
269
269
|
"item-copy": {
|
|
270
270
|
small: icons.CopyFile16,
|
|
271
271
|
normal: icons.CopyFile20,
|
|
272
|
-
large: icons.CopyFile32
|
|
272
|
+
large: icons.CopyFile32,
|
|
273
273
|
},
|
|
274
274
|
"item-save": {
|
|
275
275
|
small: icons.Save16,
|
|
276
276
|
normal: icons.Save20,
|
|
277
|
-
large: icons.Save32
|
|
277
|
+
large: icons.Save32,
|
|
278
278
|
},
|
|
279
279
|
"item-start": {
|
|
280
280
|
small: icons.PlayFilledAlt16,
|
|
281
281
|
normal: icons.PlayFilledAlt20,
|
|
282
|
-
large: icons.PlayFilledAlt32
|
|
282
|
+
large: icons.PlayFilledAlt32,
|
|
283
283
|
},
|
|
284
284
|
"item-stop": {
|
|
285
285
|
small: icons.StopFilledAlt16,
|
|
286
286
|
normal: icons.StopFilledAlt20,
|
|
287
|
-
large: icons.StopFilledAlt32
|
|
287
|
+
large: icons.StopFilledAlt32,
|
|
288
288
|
},
|
|
289
289
|
"item-reload": {
|
|
290
290
|
small: icons.Renew16,
|
|
291
291
|
normal: icons.Renew20,
|
|
292
|
-
large: icons.Renew32
|
|
292
|
+
large: icons.Renew32,
|
|
293
|
+
},
|
|
294
|
+
"item-comment": {
|
|
295
|
+
small: icons.AddComment16,
|
|
296
|
+
normal: icons.AddComment20,
|
|
297
|
+
large: icons.AddComment32,
|
|
293
298
|
},
|
|
294
299
|
"item-shuffle": {
|
|
295
300
|
small: icons.Shuffle16,
|
|
296
301
|
normal: icons.Shuffle20,
|
|
297
|
-
large: icons.Shuffle32
|
|
302
|
+
large: icons.Shuffle32,
|
|
298
303
|
},
|
|
299
304
|
"item-draggable": {
|
|
300
305
|
small: icons.Draggable16,
|
|
301
306
|
normal: icons.Draggable20,
|
|
302
|
-
large: icons.Draggable32
|
|
307
|
+
large: icons.Draggable32,
|
|
303
308
|
},
|
|
304
309
|
"operation-search": {
|
|
305
310
|
small: icons.Search16,
|
|
306
311
|
normal: icons.Search20,
|
|
307
|
-
large: icons.Search32
|
|
312
|
+
large: icons.Search32,
|
|
308
313
|
},
|
|
309
314
|
"operation-clear": {
|
|
310
315
|
small: icons.Close16,
|
|
311
316
|
normal: icons.Close20,
|
|
312
|
-
large: icons.Close32
|
|
317
|
+
large: icons.Close32,
|
|
313
318
|
},
|
|
314
319
|
"operation-undo": {
|
|
315
320
|
small: icons.Undo16,
|
|
316
321
|
normal: icons.Undo20,
|
|
317
|
-
large: icons.Undo32
|
|
322
|
+
large: icons.Undo32,
|
|
318
323
|
},
|
|
319
324
|
"operation-redo": {
|
|
320
325
|
small: icons.Redo16,
|
|
321
326
|
normal: icons.Redo20,
|
|
322
|
-
large: icons.Redo32
|
|
327
|
+
large: icons.Redo32,
|
|
323
328
|
},
|
|
324
329
|
"operation-logout": {
|
|
325
330
|
small: icons.Logout16,
|
|
326
331
|
normal: icons.Logout20,
|
|
327
|
-
large: icons.Logout32
|
|
332
|
+
large: icons.Logout32,
|
|
328
333
|
},
|
|
329
334
|
"operation-filter": {
|
|
330
335
|
small: icons.Filter16,
|
|
331
336
|
normal: icons.Filter20,
|
|
332
|
-
large: icons.Filter32
|
|
337
|
+
large: icons.Filter32,
|
|
333
338
|
},
|
|
334
339
|
"operation-filteredit": {
|
|
335
340
|
small: icons.FilterEdit16,
|
|
336
341
|
normal: icons.FilterEdit20,
|
|
337
|
-
large: icons.FilterEdit32
|
|
342
|
+
large: icons.FilterEdit32,
|
|
338
343
|
},
|
|
339
344
|
"operation-transform": {
|
|
340
345
|
small: icons.Calculation16,
|
|
341
346
|
normal: icons.Calculation20,
|
|
342
|
-
large: icons.Calculation32
|
|
347
|
+
large: icons.Calculation32,
|
|
343
348
|
},
|
|
344
349
|
"operation-comparison": {
|
|
345
350
|
small: icons.Compare16,
|
|
346
351
|
normal: icons.Compare20,
|
|
347
|
-
large: icons.Compare32
|
|
352
|
+
large: icons.Compare32,
|
|
348
353
|
},
|
|
349
354
|
"operation-aggregation": {
|
|
350
355
|
small: icons.DataCollection16,
|
|
351
356
|
normal: icons.DataCollection20,
|
|
352
|
-
large: icons.DataCollection32
|
|
357
|
+
large: icons.DataCollection32,
|
|
353
358
|
},
|
|
354
359
|
"operation-commit": {
|
|
355
360
|
small: icons.Commit16,
|
|
@@ -364,232 +369,237 @@ const canonicalIconNames = {
|
|
|
364
369
|
"data-sourcepath": {
|
|
365
370
|
small: icons.Data_216,
|
|
366
371
|
normal: icons.Data_220,
|
|
367
|
-
large: icons.Data_232
|
|
372
|
+
large: icons.Data_232,
|
|
368
373
|
},
|
|
369
374
|
"data-targetpath": {
|
|
370
375
|
small: icons.Data_116,
|
|
371
376
|
normal: icons.Data_120,
|
|
372
|
-
large: icons.Data_132
|
|
377
|
+
large: icons.Data_132,
|
|
373
378
|
},
|
|
374
379
|
"list-sort": {
|
|
375
380
|
small: icons.ArrowsVertical16,
|
|
376
381
|
normal: icons.ArrowsVertical20,
|
|
377
|
-
large: icons.ArrowsVertical32
|
|
382
|
+
large: icons.ArrowsVertical32,
|
|
378
383
|
},
|
|
379
384
|
"list-sortasc": {
|
|
380
385
|
small: icons.ArrowDown16,
|
|
381
386
|
normal: icons.ArrowDown20,
|
|
382
|
-
large: icons.ArrowDown32
|
|
387
|
+
large: icons.ArrowDown32,
|
|
383
388
|
},
|
|
384
389
|
"list-sortdesc": {
|
|
385
390
|
small: icons.ArrowUp16,
|
|
386
391
|
normal: icons.ArrowUp20,
|
|
387
|
-
large: icons.ArrowUp32
|
|
392
|
+
large: icons.ArrowUp32,
|
|
388
393
|
},
|
|
389
394
|
"state-info": {
|
|
390
395
|
small: icons.InformationFilled16,
|
|
391
396
|
normal: icons.InformationFilled20,
|
|
392
|
-
large: icons.InformationFilled32
|
|
397
|
+
large: icons.InformationFilled32,
|
|
393
398
|
},
|
|
394
399
|
"state-success": {
|
|
395
400
|
small: icons.CheckmarkFilled16,
|
|
396
401
|
normal: icons.CheckmarkFilled20,
|
|
397
|
-
large: icons.CheckmarkFilled32
|
|
402
|
+
large: icons.CheckmarkFilled32,
|
|
398
403
|
},
|
|
399
404
|
"state-warning": {
|
|
400
405
|
small: icons.WarningAltFilled16,
|
|
401
406
|
normal: icons.WarningAltFilled20,
|
|
402
|
-
large: icons.WarningAltFilled32
|
|
407
|
+
large: icons.WarningAltFilled32,
|
|
403
408
|
},
|
|
404
409
|
"state-danger": {
|
|
405
410
|
small: icons.ErrorFilled16,
|
|
406
411
|
normal: icons.ErrorFilled20,
|
|
407
|
-
large: icons.ErrorFilled32
|
|
412
|
+
large: icons.ErrorFilled32,
|
|
408
413
|
},
|
|
409
414
|
"state-unchecked": {
|
|
410
415
|
small: icons.Checkbox16,
|
|
411
416
|
normal: icons.Checkbox20,
|
|
412
|
-
large: icons.Checkbox32
|
|
417
|
+
large: icons.Checkbox32,
|
|
413
418
|
},
|
|
414
419
|
"state-checked": {
|
|
415
420
|
small: icons.CheckboxChecked16,
|
|
416
421
|
normal: icons.CheckboxChecked20,
|
|
417
|
-
large: icons.CheckboxChecked32
|
|
422
|
+
large: icons.CheckboxChecked32,
|
|
423
|
+
},
|
|
424
|
+
"state-checkedsimple": {
|
|
425
|
+
small: icons.Checkmark16,
|
|
426
|
+
normal: icons.Checkmark20,
|
|
427
|
+
large: icons.Checkmark32,
|
|
418
428
|
},
|
|
419
429
|
"state-partlychecked": {
|
|
420
430
|
small: icons.CheckboxIndeterminate16,
|
|
421
431
|
normal: icons.CheckboxIndeterminate20,
|
|
422
|
-
large: icons.CheckboxIndeterminate32
|
|
432
|
+
large: icons.CheckboxIndeterminate32,
|
|
423
433
|
},
|
|
424
434
|
"artefact-project": {
|
|
425
435
|
small: icons.Folder16,
|
|
426
436
|
normal: icons.Folder20,
|
|
427
|
-
large: icons.Folder32
|
|
437
|
+
large: icons.Folder32,
|
|
428
438
|
},
|
|
429
439
|
"artefact-workflow": {
|
|
430
440
|
small: icons.ModelBuilder16,
|
|
431
441
|
normal: icons.ModelBuilder20,
|
|
432
|
-
large: icons.ModelBuilder32
|
|
442
|
+
large: icons.ModelBuilder32,
|
|
433
443
|
},
|
|
434
444
|
"artefact-dataset": {
|
|
435
445
|
small: icons.Data_216,
|
|
436
446
|
normal: icons.Data_220,
|
|
437
|
-
large: icons.Data_232
|
|
447
|
+
large: icons.Data_232,
|
|
438
448
|
},
|
|
439
449
|
"artefact-dataset-csv": {
|
|
440
450
|
small: icons.Csv16,
|
|
441
451
|
normal: icons.Csv20,
|
|
442
|
-
large: icons.Csv32
|
|
452
|
+
large: icons.Csv32,
|
|
443
453
|
},
|
|
444
454
|
"artefact-dataset-multicsv": {
|
|
445
455
|
small: icons.Csv16,
|
|
446
456
|
normal: icons.Csv20,
|
|
447
|
-
large: icons.Csv32
|
|
457
|
+
large: icons.Csv32,
|
|
448
458
|
},
|
|
449
459
|
"artefact-dataset-sparkview": {
|
|
450
460
|
small: icons.Sql16,
|
|
451
461
|
normal: icons.Sql20,
|
|
452
|
-
large: icons.Sql32
|
|
462
|
+
large: icons.Sql32,
|
|
453
463
|
},
|
|
454
464
|
"artefact-dataset-sqlendpoint": {
|
|
455
465
|
small: icons.Sql16,
|
|
456
466
|
normal: icons.Sql20,
|
|
457
|
-
large: icons.Sql32
|
|
467
|
+
large: icons.Sql32,
|
|
458
468
|
},
|
|
459
469
|
"artefact-dataset-jdbc": {
|
|
460
470
|
small: icons.Sql16,
|
|
461
471
|
normal: icons.Sql20,
|
|
462
|
-
large: icons.Sql32
|
|
472
|
+
large: icons.Sql32,
|
|
463
473
|
},
|
|
464
474
|
"artefact-dataset-xml": {
|
|
465
475
|
small: icons.Xml16,
|
|
466
476
|
normal: icons.Xml20,
|
|
467
|
-
large: icons.Xml32
|
|
477
|
+
large: icons.Xml32,
|
|
468
478
|
},
|
|
469
479
|
"artefact-dataset-json": {
|
|
470
480
|
small: icons.Json16,
|
|
471
481
|
normal: icons.Json20,
|
|
472
|
-
large: icons.Json32
|
|
482
|
+
large: icons.Json32,
|
|
473
483
|
},
|
|
474
484
|
"artefact-dataset-excel": {
|
|
475
485
|
small: icons.Xls16,
|
|
476
486
|
normal: icons.Xls20,
|
|
477
|
-
large: icons.Xls32
|
|
487
|
+
large: icons.Xls32,
|
|
478
488
|
},
|
|
479
489
|
"artefact-dataset-file": {
|
|
480
490
|
small: icons.DataVis_116,
|
|
481
491
|
normal: icons.DataVis_120,
|
|
482
|
-
large: icons.DataVis_132
|
|
492
|
+
large: icons.DataVis_132,
|
|
483
493
|
},
|
|
484
494
|
"artefact-dataset-eccencadataplatform": {
|
|
485
495
|
small: icons.DataVis_116,
|
|
486
496
|
normal: icons.DataVis_120,
|
|
487
|
-
large: icons.DataVis_132
|
|
497
|
+
large: icons.DataVis_132,
|
|
488
498
|
},
|
|
489
499
|
"artefact-dataset-sparqlendpoint": {
|
|
490
500
|
small: icons.DataVis_116,
|
|
491
501
|
normal: icons.DataVis_120,
|
|
492
|
-
large: icons.DataVis_132
|
|
502
|
+
large: icons.DataVis_132,
|
|
493
503
|
},
|
|
494
504
|
"artefact-dataset-neo4j": {
|
|
495
505
|
small: icons.DataVis_116,
|
|
496
506
|
normal: icons.DataVis_120,
|
|
497
|
-
large: icons.DataVis_132
|
|
507
|
+
large: icons.DataVis_132,
|
|
498
508
|
},
|
|
499
509
|
"artefact-transform": {
|
|
500
510
|
small: icons.DataRefinery16,
|
|
501
511
|
normal: icons.DataRefinery20,
|
|
502
|
-
large: icons.DataRefinery32
|
|
512
|
+
large: icons.DataRefinery32,
|
|
503
513
|
},
|
|
504
514
|
"artefact-linking": {
|
|
505
515
|
small: icons.Connect16,
|
|
506
516
|
normal: icons.Connect20,
|
|
507
|
-
large: icons.Connect32
|
|
517
|
+
large: icons.Connect32,
|
|
508
518
|
},
|
|
509
519
|
"artefact-task": {
|
|
510
520
|
small: icons.Script16,
|
|
511
521
|
normal: icons.Script20,
|
|
512
|
-
large: icons.Script32
|
|
522
|
+
large: icons.Script32,
|
|
513
523
|
},
|
|
514
524
|
"artefact-customtask": {
|
|
515
525
|
small: icons.Script16,
|
|
516
526
|
normal: icons.Script20,
|
|
517
|
-
large: icons.Script32
|
|
527
|
+
large: icons.Script32,
|
|
518
528
|
},
|
|
519
529
|
"artefact-file": {
|
|
520
530
|
small: icons.Document16,
|
|
521
531
|
normal: icons.Document20,
|
|
522
|
-
large: icons.Document32
|
|
532
|
+
large: icons.Document32,
|
|
523
533
|
},
|
|
524
534
|
"artefact-embedded": {
|
|
525
535
|
small: icons.DataBase16,
|
|
526
536
|
normal: icons.DataBase20,
|
|
527
|
-
large: icons.DataBase32
|
|
537
|
+
large: icons.DataBase32,
|
|
528
538
|
},
|
|
529
539
|
"artefact-remote": {
|
|
530
540
|
small: icons.VirtualMachine16,
|
|
531
541
|
normal: icons.VirtualMachine20,
|
|
532
|
-
large: icons.VirtualMachine32
|
|
542
|
+
large: icons.VirtualMachine32,
|
|
533
543
|
},
|
|
534
544
|
"artefact-deprecated": {
|
|
535
545
|
small: icons.WarningSquare16,
|
|
536
546
|
normal: icons.WarningSquare20,
|
|
537
|
-
large: icons.WarningSquare32
|
|
547
|
+
large: icons.WarningSquare32,
|
|
538
548
|
},
|
|
539
549
|
"artefact-uncategorized": {
|
|
540
550
|
small: icons.Unknown16,
|
|
541
551
|
normal: icons.Unknown20,
|
|
542
|
-
large: icons.Unknown32
|
|
552
|
+
large: icons.Unknown32,
|
|
543
553
|
},
|
|
544
554
|
"artefact-rawdata": {
|
|
545
555
|
small: icons.ScriptReference16,
|
|
546
556
|
normal: icons.ScriptReference20,
|
|
547
|
-
large: icons.ScriptReference32
|
|
557
|
+
large: icons.ScriptReference32,
|
|
548
558
|
},
|
|
549
559
|
"artefact-report": {
|
|
550
560
|
small: icons.Report16,
|
|
551
561
|
normal: icons.Report20,
|
|
552
|
-
large: icons.Report32
|
|
562
|
+
large: icons.Report32,
|
|
553
563
|
},
|
|
554
564
|
"activity-error-report": {
|
|
555
565
|
small: icons.Error16,
|
|
556
566
|
normal: icons.Error20,
|
|
557
|
-
large: icons.Error32
|
|
567
|
+
large: icons.Error32,
|
|
558
568
|
},
|
|
559
569
|
"select-caret": {
|
|
560
570
|
small: icons.CaretSort16,
|
|
561
571
|
normal: icons.CaretSort20,
|
|
562
|
-
large: icons.CaretSort32
|
|
572
|
+
large: icons.CaretSort32,
|
|
563
573
|
},
|
|
564
574
|
"linked-item": {
|
|
565
575
|
small: icons.Link16,
|
|
566
576
|
normal: icons.Link20,
|
|
567
|
-
large: icons.Link32
|
|
577
|
+
large: icons.Link32,
|
|
568
578
|
},
|
|
569
579
|
"unlinked-item": {
|
|
570
580
|
small: icons.Unlink16,
|
|
571
581
|
normal: icons.Unlink20,
|
|
572
|
-
large: icons.Unlink32
|
|
582
|
+
large: icons.Unlink32,
|
|
573
583
|
},
|
|
574
584
|
"operation-auto-graph-layout": {
|
|
575
585
|
small: icons.ChartNetwork16,
|
|
576
586
|
normal: icons.ChartNetwork20,
|
|
577
|
-
large: icons.ChartNetwork32
|
|
587
|
+
large: icons.ChartNetwork32,
|
|
578
588
|
},
|
|
579
589
|
"write-protected": {
|
|
580
590
|
small: icons.DocumentProtected16,
|
|
581
591
|
normal: icons.DocumentProtected20,
|
|
582
|
-
large: icons.DocumentProtected32
|
|
592
|
+
large: icons.DocumentProtected32,
|
|
583
593
|
},
|
|
584
|
-
|
|
594
|
+
undefined: {
|
|
585
595
|
small: icons.Undefined16,
|
|
586
596
|
normal: icons.Undefined20,
|
|
587
|
-
large: icons.Undefined32
|
|
597
|
+
large: icons.Undefined32,
|
|
588
598
|
},
|
|
589
|
-
|
|
599
|
+
Undefined: {
|
|
590
600
|
small: icons.Undefined16,
|
|
591
601
|
normal: icons.Undefined20,
|
|
592
|
-
large: icons.Undefined32
|
|
602
|
+
large: icons.Undefined32,
|
|
593
603
|
},
|
|
594
604
|
};
|
|
595
605
|
exports.default = canonicalIconNames;
|