@configuratorware/configurator-admingui 1.41.1 → 1.42.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 (1387) hide show
  1. package/App/Api.js +29 -86
  2. package/App/Config/app.js +15 -38
  3. package/App/Config/defaultConfig.js +4 -5
  4. package/App/Config/icons.js +4 -9
  5. package/App/Config/network.js +2 -5
  6. package/App/Data.js +25 -115
  7. package/App/Entity.js +5 -17
  8. package/App/ErrorBoundary.js +14 -39
  9. package/App/FeatureReducers.js +4 -14
  10. package/App/Frame.js +10 -33
  11. package/App/Listeners.js +3 -21
  12. package/App/Main.js +34 -99
  13. package/App/Reducers/Api/Actions.js +34 -110
  14. package/App/Reducers/Api/Helpers.js +19 -42
  15. package/App/Reducers/Api/Reducer.js +8 -26
  16. package/App/Reducers/Common/Form/Actions.js +3 -7
  17. package/App/Reducers/Common/Form/Reducer.js +16 -23
  18. package/App/Reducers/Common/Language/Actions.js +3 -7
  19. package/App/Reducers/Common/Language/Reducer.js +9 -16
  20. package/App/Reducers/Common/OrderList/Actions.js +21 -48
  21. package/App/Reducers/Common/OrderList/Listener.js +9 -13
  22. package/App/Reducers/Common/OrderList/Reducer.js +11 -30
  23. package/App/Reducers/Common/index.js +2 -7
  24. package/App/Reducers/Config/Actions.js +3 -7
  25. package/App/Reducers/Config/Reducer.js +8 -15
  26. package/App/Reducers/Entity/Actions.js +49 -166
  27. package/App/Reducers/Entity/Reducer.js +28 -94
  28. package/App/Reducers/Frame/Actions.js +7 -19
  29. package/App/Reducers/Frame/Reducer.js +9 -26
  30. package/App/Reducers/index.js +8 -21
  31. package/App/ReduxListener.js +13 -20
  32. package/App/ReduxPersistLoader.js +1 -8
  33. package/App/Routes.js +4 -18
  34. package/App/Selectors/Credentials/hasCredentialFor.js +0 -1
  35. package/App/Services/ElementRef.js +8 -12
  36. package/App/Services/WindowCommunication.js +10 -27
  37. package/App/Services/index.js +2 -6
  38. package/App/Store.js +9 -29
  39. package/App/Styles.scss +18 -3
  40. package/App/TestHelpers.js +16 -59
  41. package/App/ThemeProvider.js +8 -13
  42. package/App/Translations.js +11 -2
  43. package/App/Utils.js +5 -17
  44. package/App/customSetup.js +0 -2
  45. package/App/i18n.js +41 -105
  46. package/App/index.js +14 -41
  47. package/App/initServices.js +11 -36
  48. package/App/setup.js +1 -4
  49. package/AppContainer.js +2 -16
  50. package/Components/AddButton.js +2 -9
  51. package/Components/AppBar.js +27 -29
  52. package/Components/CallToActionField.js +58 -94
  53. package/Components/CopyPaste.js +11 -43
  54. package/Components/DefaultConnectedForm.js +10 -29
  55. package/Components/DefaultConnectedList.js +19 -42
  56. package/Components/DefaultConnectedScreen.js +7 -21
  57. package/Components/DefaultForm.js +22 -49
  58. package/Components/DefaultList.js +35 -108
  59. package/Components/DefaultScreen.js +35 -83
  60. package/Components/Error.js +1 -8
  61. package/Components/Form.js +46 -148
  62. package/Components/FormFragments/AttributeValueChip.js +41 -99
  63. package/Components/FormFragments/AutoComplete.js +42 -95
  64. package/Components/FormFragments/AutocompleteEntity.js +41 -91
  65. package/Components/FormFragments/Checkbox.js +1 -10
  66. package/Components/FormFragments/Chip.js +44 -101
  67. package/Components/FormFragments/DatePicker.js +1 -7
  68. package/Components/FormFragments/DateTimePicker.js +1 -7
  69. package/Components/FormFragments/DynSourceInput.js +18 -69
  70. package/Components/FormFragments/ErrorWrapper.js +1 -7
  71. package/Components/FormFragments/File.js +44 -66
  72. package/Components/FormFragments/HintText.js +4 -10
  73. package/Components/FormFragments/InlineAddButton.js +30 -81
  74. package/Components/FormFragments/InputArray.js +32 -101
  75. package/Components/FormFragments/InputGroup.js +6 -15
  76. package/Components/FormFragments/InputWithSource.js +9 -34
  77. package/Components/FormFragments/IntlInput.js +19 -79
  78. package/Components/FormFragments/Label.js +4 -10
  79. package/Components/FormFragments/MarkDown.js +20 -49
  80. package/Components/FormFragments/MonacoEditor.js +17 -37
  81. package/Components/FormFragments/NestedDataComponent.js +23 -80
  82. package/Components/FormFragments/ObjectToggle.js +2 -14
  83. package/Components/FormFragments/RadioGroup.js +1 -10
  84. package/Components/FormFragments/Select.js +7 -17
  85. package/Components/FormFragments/SetInput.js +24 -71
  86. package/Components/FormFragments/SimpleNestedData.js +20 -48
  87. package/Components/FormFragments/SimpleTable.js +25 -72
  88. package/Components/FormFragments/SimpleTextEditor.js +6 -12
  89. package/Components/FormFragments/Subheadline.js +16 -0
  90. package/Components/FormFragments/Tabs.js +40 -106
  91. package/Components/FormFragments/Text.js +1 -8
  92. package/Components/FormFragments/TimePicker.js +1 -7
  93. package/Components/FormFragments/Toggle.js +3 -16
  94. package/Components/FormFragments/TwoSideSelect.js +19 -78
  95. package/Components/FormFragments/Value.js +8 -18
  96. package/Components/FormFragments/index.js +37 -47
  97. package/Components/FormFragments/styles.js +12 -2
  98. package/Components/FormHooks/useDataSchema.js +14 -29
  99. package/Components/GeneralFragments/Box.js +1 -8
  100. package/Components/GeneralFragments/ConfigurationEditor.js +74 -121
  101. package/Components/GeneralFragments/ConfiguratorOverlay.js +19 -42
  102. package/Components/GeneralFragments/Content.js +1 -8
  103. package/Components/GeneralFragments/Headline.js +7 -14
  104. package/Components/GeneralFragments/Image.js +11 -41
  105. package/Components/GeneralFragments/MiniPopup.js +29 -71
  106. package/Components/GeneralFragments/index.js +8 -14
  107. package/Components/InputHelpers.js +2 -5
  108. package/Components/Join.js +3 -11
  109. package/Components/LicenseInfo.js +12 -41
  110. package/Components/List.js +33 -97
  111. package/Components/ListColumnFilter.js +18 -65
  112. package/Components/LocaleSwitch.js +3 -17
  113. package/Components/LocalizedPriceTextField.js +27 -41
  114. package/Components/LocalizedPriceValue.js +6 -14
  115. package/Components/Menu.js +18 -66
  116. package/Components/ModalContainer.js +49 -51
  117. package/Components/OrderList.js +29 -80
  118. package/Components/OverlayContainer.js +6 -12
  119. package/Components/Pagination.js +20 -60
  120. package/Components/ProfileButton.js +9 -26
  121. package/Components/SearchBar.js +16 -55
  122. package/Components/SplitContainer.js +14 -20
  123. package/Components/Styles.scss +27 -0
  124. package/Components/TranslateComponent.js +17 -61
  125. package/Components/TranslationFinder.js +8 -28
  126. package/Components/Translations.js +11 -4
  127. package/Components/ValidatorCallbackProvider.js +13 -43
  128. package/Components/VersionBadge.js +2 -12
  129. package/Components/VersionUpdateChip.js +2 -16
  130. package/Components/withLoadAction.js +4 -17
  131. package/Components/withTranslationFinder.js +6 -15
  132. package/Resources/Images/configuratorware_logo_weiss.png +0 -0
  133. package/Screens/ApiKeys/Containers/Edit.js +48 -86
  134. package/Screens/ApiKeys/Containers/List.js +1 -8
  135. package/Screens/ApiKeys/Reducers/Actions.js +17 -37
  136. package/Screens/ApiKeys/Reducers/Reducer.js +11 -15
  137. package/Screens/ApiKeys/Screen.js +1 -11
  138. package/Screens/ApiKeys/Translations.js +2 -0
  139. package/Screens/ApiKeys/index.js +2 -8
  140. package/Screens/Assemblypointeditor/Components/AssemblypointTable.js +26 -58
  141. package/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +156 -224
  142. package/Screens/Assemblypointeditor/Components/fabric.min.js +1 -1
  143. package/Screens/Assemblypointeditor/Containers/Edit.js +6 -17
  144. package/Screens/Assemblypointeditor/Containers/List.js +4 -14
  145. package/Screens/Assemblypointeditor/Reducers/Actions.js +20 -36
  146. package/Screens/Assemblypointeditor/Reducers/Reducer.js +14 -32
  147. package/Screens/Assemblypointeditor/Screen.js +5 -22
  148. package/Screens/Assemblypointeditor/Translations.js +4 -0
  149. package/Screens/Assemblypointeditor/index.js +2 -8
  150. package/Screens/Attribute/Containers/Edit.js +5 -9
  151. package/Screens/Attribute/Containers/List.js +1 -8
  152. package/Screens/Attribute/Reducers/Actions.js +16 -35
  153. package/Screens/Attribute/Reducers/Reducer.js +11 -15
  154. package/Screens/Attribute/Screen.js +1 -11
  155. package/Screens/Attribute/Translations.js +4 -2
  156. package/Screens/Attribute/__tests/AttributeScreen.js +29 -72
  157. package/Screens/Attribute/index.js +2 -8
  158. package/Screens/AttributeValue/Containers/Edit.js +7 -13
  159. package/Screens/AttributeValue/Containers/List.js +7 -17
  160. package/Screens/AttributeValue/Reducers/Actions.js +6 -15
  161. package/Screens/AttributeValue/Reducers/Reducer.js +12 -16
  162. package/Screens/AttributeValue/Screen.js +4 -18
  163. package/Screens/AttributeValue/Translations.js +4 -2
  164. package/Screens/AttributeValue/__tests/AttributeValueScreen.js +29 -72
  165. package/Screens/AttributeValue/index.js +2 -8
  166. package/Screens/ChangePassword/Reducers/Actions.js +9 -30
  167. package/Screens/ChangePassword/Reducers/Reducer.js +8 -17
  168. package/Screens/ChangePassword/Screen.js +23 -60
  169. package/Screens/ChangePassword/index.js +2 -8
  170. package/Screens/Channel/Containers/Edit.js +7 -14
  171. package/Screens/Channel/Containers/List.js +2 -12
  172. package/Screens/Channel/Reducers/Actions.js +5 -13
  173. package/Screens/Channel/Reducers/Reducer.js +11 -17
  174. package/Screens/Channel/Screen.js +2 -14
  175. package/Screens/Channel/Translations.js +4 -2
  176. package/Screens/Channel/__tests/ChannelScreen.js +31 -75
  177. package/Screens/Channel/index.js +2 -8
  178. package/Screens/Client/Components/ColorTextField.js +14 -39
  179. package/Screens/Client/Components/PdfMarkdownField.js +22 -50
  180. package/Screens/Client/Containers/Edit.js +39 -33
  181. package/Screens/Client/Containers/List.js +7 -17
  182. package/Screens/Client/Reducers/Actions.js +19 -50
  183. package/Screens/Client/Reducers/Reducer.js +11 -20
  184. package/Screens/Client/Screen.js +4 -18
  185. package/Screens/Client/Translations.js +16 -2
  186. package/Screens/Client/index.js +2 -8
  187. package/Screens/ColorPalettes/Components/DefaultColorSwitch.js +12 -54
  188. package/Screens/ColorPalettes/Containers/Edit.js +14 -29
  189. package/Screens/ColorPalettes/Containers/List.js +7 -19
  190. package/Screens/ColorPalettes/Reducers/Actions.js +6 -15
  191. package/Screens/ColorPalettes/Reducers/Reducer.js +12 -16
  192. package/Screens/ColorPalettes/Screen.js +4 -18
  193. package/Screens/ColorPalettes/Translations.js +2 -0
  194. package/Screens/ColorPalettes/index.js +2 -8
  195. package/Screens/ConfigurationTypeEditor/Containers/Edit.js +14 -29
  196. package/Screens/ConfigurationTypeEditor/Containers/List.js +3 -15
  197. package/Screens/ConfigurationTypeEditor/Reducers/Actions.js +27 -68
  198. package/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +12 -37
  199. package/Screens/ConfigurationTypeEditor/Screen.js +19 -55
  200. package/Screens/ConfigurationVariants/Containers/Edit.js +16 -31
  201. package/Screens/ConfigurationVariants/Containers/List.js +2 -12
  202. package/Screens/ConfigurationVariants/Reducers/Actions.js +8 -19
  203. package/Screens/ConfigurationVariants/Reducers/Reducer.js +13 -19
  204. package/Screens/ConfigurationVariants/Screen.js +2 -14
  205. package/Screens/ConfigurationVariants/Translations.js +4 -2
  206. package/Screens/ConfigurationVariants/index.js +2 -8
  207. package/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +13 -28
  208. package/Screens/ConfigurationWorkflowStatus/Containers/List.js +20 -72
  209. package/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +20 -51
  210. package/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +9 -28
  211. package/Screens/ConfigurationWorkflowStatus/Screen.js +13 -42
  212. package/Screens/ConfigurationWorkflowStatus/index.js +2 -9
  213. package/Screens/ConfigurationWorkflowStatus/initServices.js +1 -4
  214. package/Screens/Creator/Components/BaseConfigurationEditor.js +18 -74
  215. package/Screens/Creator/Components/CheckData/ApiCalls.js +17 -27
  216. package/Screens/Creator/Components/CheckData/CheckData.js +81 -135
  217. package/Screens/Creator/Components/CheckData/Constants.js +27 -51
  218. package/Screens/Creator/Components/CheckData/Translations.js +4 -4
  219. package/Screens/Creator/Components/ComponentEditor.js +58 -107
  220. package/Screens/Creator/Components/ConfiguratorQuickView.js +9 -26
  221. package/Screens/Creator/Components/OptionPriceEditor.js +12 -34
  222. package/Screens/Creator/Components/OptionclassificationEditor.js +40 -165
  223. package/Screens/Creator/Components/Rules/Containers/Edit.js +26 -82
  224. package/Screens/Creator/Components/Rules/Containers/List.js +4 -17
  225. package/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +12 -40
  226. package/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +12 -40
  227. package/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +12 -40
  228. package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +12 -40
  229. package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +12 -37
  230. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +12 -38
  231. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +12 -38
  232. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +12 -40
  233. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +12 -40
  234. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +12 -38
  235. package/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +22 -76
  236. package/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +2 -15
  237. package/Screens/Creator/Components/Rules/index.js +11 -41
  238. package/Screens/Creator/Components/ShowPreviewErrorDialog.js +5 -16
  239. package/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +16 -26
  240. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +7 -19
  241. package/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +15 -44
  242. package/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +11 -30
  243. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +112 -177
  244. package/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +11 -31
  245. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +16 -43
  246. package/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +4 -4
  247. package/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +314 -449
  248. package/Screens/Creator/Components/VisualizationAndMediaData/dev.js +26 -63
  249. package/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -2
  250. package/Screens/Creator/Containers/Edit.js +21 -120
  251. package/Screens/Creator/Containers/List.js +6 -14
  252. package/Screens/Creator/Reducers/Actions.js +13 -23
  253. package/Screens/Creator/Reducers/ConfigurationActions.js +205 -345
  254. package/Screens/Creator/Reducers/ConfigurationReducer.js +27 -88
  255. package/Screens/Creator/Reducers/CreatorReducer.js +8 -15
  256. package/Screens/Creator/Reducers/Rules/Actions.js +26 -63
  257. package/Screens/Creator/Reducers/Rules/Reducer.js +9 -27
  258. package/Screens/Creator/Screen.js +2 -15
  259. package/Screens/Creator/Translations.js +3 -3
  260. package/Screens/Creator/index.js +2 -10
  261. package/Screens/CurrentClient/Containers/Edit.js +24 -20
  262. package/Screens/CurrentClient/Reducers/Actions.js +11 -20
  263. package/Screens/CurrentClient/Reducers/Reducer.js +10 -14
  264. package/Screens/CurrentClient/Screen.js +1 -6
  265. package/Screens/CurrentClient/Translations.js +12 -2
  266. package/Screens/CurrentClient/index.js +2 -8
  267. package/Screens/Dashboard/Screen.js +2 -18
  268. package/Screens/DefaultClient/Containers/Edit.js +29 -21
  269. package/Screens/DefaultClient/Reducers/Actions.js +11 -20
  270. package/Screens/DefaultClient/Reducers/Reducer.js +11 -14
  271. package/Screens/DefaultClient/Screen.js +1 -6
  272. package/Screens/DefaultClient/Translations.js +14 -2
  273. package/Screens/DefaultClient/index.js +2 -8
  274. package/Screens/Demo/Screen.js +13 -44
  275. package/Screens/Demo/index.js +2 -6
  276. package/Screens/DesignProductionMethods/Containers/Edit.js +27 -36
  277. package/Screens/DesignProductionMethods/Containers/List.js +3 -15
  278. package/Screens/DesignProductionMethods/Reducers/Actions.js +12 -21
  279. package/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +12 -16
  280. package/Screens/DesignProductionMethods/Screen.js +2 -15
  281. package/Screens/DesignProductionMethods/Translations.js +6 -0
  282. package/Screens/DesignProductionMethods/index.js +2 -8
  283. package/Screens/DesignTemplateEditor/Containers/List.js +4 -17
  284. package/Screens/DesignTemplateEditor/Reducers/Actions.js +1 -6
  285. package/Screens/DesignTemplateEditor/Reducers/Reducer.js +2 -8
  286. package/Screens/DesignTemplateEditor/Screen.js +1 -10
  287. package/Screens/DesignTemplateEditor/index.js +2 -8
  288. package/Screens/Designer/Components/ConfiguratorQuickView.js +9 -26
  289. package/Screens/Designer/Components/DesignDataTransfer.js +98 -180
  290. package/Screens/Designer/Components/TemplateDefaultList.js +31 -114
  291. package/Screens/Designer/Components/TemplateList.js +18 -78
  292. package/Screens/Designer/Containers/Edit.js +32 -98
  293. package/Screens/Designer/Containers/List.js +6 -14
  294. package/Screens/Designer/Containers/TemplateList.js +2 -11
  295. package/Screens/Designer/Reducers/Actions.js +16 -29
  296. package/Screens/Designer/Reducers/DesignerReducer.js +9 -16
  297. package/Screens/Designer/Screen.js +2 -14
  298. package/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +23 -78
  299. package/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +32 -101
  300. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +7 -18
  301. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +56 -83
  302. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +73 -147
  303. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +43 -73
  304. package/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +22 -41
  305. package/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +13 -40
  306. package/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +38 -201
  307. package/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +5 -18
  308. package/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +23 -56
  309. package/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +14 -29
  310. package/Screens/Designer/SubScreens/DesignAreas/Screen.js +2 -17
  311. package/Screens/Designer/SubScreens/DesignAreas/Translations.js +2 -0
  312. package/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +2 -7
  313. package/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +6 -11
  314. package/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +2 -3
  315. package/Screens/Designer/SubScreens/DesignAreas/index.js +1 -7
  316. package/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +29 -51
  317. package/Screens/Designer/SubScreens/Designviews/Containers/List.js +5 -18
  318. package/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +45 -95
  319. package/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +20 -37
  320. package/Screens/Designer/SubScreens/Designviews/Screen.js +2 -16
  321. package/Screens/Designer/SubScreens/Designviews/Translations.js +2 -0
  322. package/Screens/Designer/SubScreens/Designviews/index.js +1 -7
  323. package/Screens/Designer/SubScreens/Visualization/ApiCalls.js +34 -52
  324. package/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +38 -66
  325. package/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +110 -188
  326. package/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +18 -56
  327. package/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +8 -25
  328. package/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +17 -55
  329. package/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +644 -671
  330. package/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +16 -56
  331. package/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +1 -1
  332. package/Screens/Designer/SubScreens/Visualization/Components/resources/point.svg +1 -0
  333. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +1 -1
  334. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +1 -1
  335. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +1 -1
  336. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +1 -1
  337. package/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +1 -1
  338. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +3 -6
  339. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +20 -48
  340. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +259 -446
  341. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +65 -90
  342. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +20 -32
  343. package/Screens/Designer/SubScreens/Visualization/Containers/List.js +18 -66
  344. package/Screens/Designer/SubScreens/Visualization/Screen.js +6 -20
  345. package/Screens/Designer/SubScreens/Visualization/Translations.js +4 -2
  346. package/Screens/Designer/SubScreens/Visualization/index.js +1 -5
  347. package/Screens/Designer/index.js +2 -8
  348. package/Screens/DesignerGlobalItemPrices/Containers/Edit.js +8 -24
  349. package/Screens/DesignerGlobalItemPrices/Containers/List.js +9 -17
  350. package/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +13 -23
  351. package/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +12 -16
  352. package/Screens/DesignerGlobalItemPrices/Screen.js +2 -16
  353. package/Screens/DesignerGlobalItemPrices/index.js +2 -8
  354. package/Screens/Finder/Containers/Edit.js +7 -13
  355. package/Screens/Finder/Containers/List.js +2 -12
  356. package/Screens/Finder/Reducers/Actions.js +68 -96
  357. package/Screens/Finder/Reducers/FinderReducer.js +12 -16
  358. package/Screens/Finder/Screen.js +4 -17
  359. package/Screens/Finder/Translations.js +4 -2
  360. package/Screens/Finder/index.js +2 -8
  361. package/Screens/Font/Containers/Edit.js +11 -13
  362. package/Screens/Font/Containers/List.js +12 -26
  363. package/Screens/Font/Reducers/Actions.js +7 -30
  364. package/Screens/Font/Reducers/Reducer.js +12 -21
  365. package/Screens/Font/Screen.js +4 -18
  366. package/Screens/Font/Translations.js +4 -2
  367. package/Screens/Font/index.js +2 -8
  368. package/Screens/Group/Containers/Edit.js +7 -13
  369. package/Screens/Group/Containers/List.js +7 -17
  370. package/Screens/Group/Reducers/Actions.js +9 -19
  371. package/Screens/Group/Reducers/Reducer.js +13 -17
  372. package/Screens/Group/Screen.js +4 -18
  373. package/Screens/Group/Translations.js +4 -2
  374. package/Screens/Group/index.js +2 -8
  375. package/Screens/GroupEntry/Containers/Edit.js +12 -20
  376. package/Screens/GroupEntry/Containers/List.js +7 -17
  377. package/Screens/GroupEntry/Reducers/Actions.js +8 -17
  378. package/Screens/GroupEntry/Reducers/Reducer.js +13 -17
  379. package/Screens/GroupEntry/Screen.js +4 -18
  380. package/Screens/GroupEntry/Translations.js +4 -2
  381. package/Screens/GroupEntry/index.js +2 -8
  382. package/Screens/ImageGallery/Containers/Edit.js +28 -52
  383. package/Screens/ImageGallery/Containers/List.js +56 -117
  384. package/Screens/ImageGallery/ImageTags/Actions.js +4 -18
  385. package/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +1 -8
  386. package/Screens/ImageGallery/ImageTags/Editor.js +7 -14
  387. package/Screens/ImageGallery/ImageTags/Reducer.js +5 -3
  388. package/Screens/ImageGallery/ImageTags/TagsActions.js +16 -35
  389. package/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +11 -40
  390. package/Screens/ImageGallery/Reducers/Actions.js +14 -37
  391. package/Screens/ImageGallery/Reducers/Reducer.js +12 -21
  392. package/Screens/ImageGallery/Screen.js +4 -18
  393. package/Screens/ImageGallery/Translations.js +4 -2
  394. package/Screens/ImageGallery/index.js +2 -8
  395. package/Screens/ImageGallery/res/checkers_tile.png +0 -0
  396. package/Screens/Inspirations/Containers/Edit.js +20 -43
  397. package/Screens/Inspirations/Containers/InspirationsSubscreen.js +2 -16
  398. package/Screens/Inspirations/Containers/ItemInspirationsList.js +6 -14
  399. package/Screens/Inspirations/Containers/List.js +3 -14
  400. package/Screens/Inspirations/Reducers/Actions.js +31 -65
  401. package/Screens/Inspirations/Reducers/ItemInspirationsActions.js +9 -16
  402. package/Screens/Inspirations/Reducers/Reducer.js +13 -23
  403. package/Screens/Inspirations/Screen.js +14 -47
  404. package/Screens/Inspirations/Translations.js +6 -2
  405. package/Screens/Inspirations/index.js +2 -8
  406. package/Screens/Item/ApiCalls.js +18 -27
  407. package/Screens/Item/Components/AttributeEditorPopup.js +13 -46
  408. package/Screens/Item/Components/ConfiguratorQuickView.js +12 -29
  409. package/Screens/Item/Components/CopyCreatorItemDialog.js +51 -107
  410. package/Screens/Item/Components/ListItemStatusEditor.js +43 -89
  411. package/Screens/Item/Components/Styles.scss +5 -1
  412. package/Screens/Item/Components/Variants/VariantsAutocomplete.js +147 -248
  413. package/Screens/Item/Components/Variants/VariantsEditor.js +45 -164
  414. package/Screens/Item/Components/Variants/VariantsEditorDialog.js +20 -52
  415. package/Screens/Item/Components/Variants/VariantsEditorPopup.js +26 -67
  416. package/Screens/Item/Components/Variants/VariantsSelection.js +21 -59
  417. package/Screens/Item/Components/Variants/VariantsSortFilter.js +17 -69
  418. package/Screens/Item/Containers/Edit.js +92 -165
  419. package/Screens/Item/Containers/List.js +12 -39
  420. package/Screens/Item/DataStructures/Attributes/Actions.js +3 -19
  421. package/Screens/Item/DataStructures/Attributes/Editor.js +14 -24
  422. package/Screens/Item/DataStructures/Attributes/Reducer.js +5 -4
  423. package/Screens/Item/Reducers/Actions.js +15 -41
  424. package/Screens/Item/Reducers/ItemReducer.js +12 -19
  425. package/Screens/Item/Reducers/Variant/Actions.js +6 -14
  426. package/Screens/Item/Reducers/Variant/Reducer.js +12 -21
  427. package/Screens/Item/Screen.js +2 -14
  428. package/Screens/Item/Translations.js +6 -2
  429. package/Screens/Item/index.js +2 -10
  430. package/Screens/Itemclassification/Containers/Edit.js +9 -24
  431. package/Screens/Itemclassification/Containers/List.js +10 -23
  432. package/Screens/Itemclassification/Reducers/Actions.js +9 -20
  433. package/Screens/Itemclassification/Reducers/Reducer.js +12 -18
  434. package/Screens/Itemclassification/Screen.js +4 -17
  435. package/Screens/Itemclassification/Translations.js +4 -2
  436. package/Screens/Itemclassification/index.js +2 -8
  437. package/Screens/License/Reducers/Actions.js +6 -20
  438. package/Screens/License/Reducers/Reducer.js +9 -19
  439. package/Screens/License/Screen.js +10 -40
  440. package/Screens/License/index.js +2 -8
  441. package/Screens/Login/Reducers/Actions.js +11 -43
  442. package/Screens/Login/Reducers/Listener.js +7 -11
  443. package/Screens/Login/Reducers/Reducer.js +12 -29
  444. package/Screens/Login/Screen.js +27 -69
  445. package/Screens/Login/__tests/LoginScreen.js +17 -63
  446. package/Screens/Option/Containers/Edit.js +18 -32
  447. package/Screens/Option/Containers/List.js +7 -21
  448. package/Screens/Option/Reducers/Actions.js +7 -17
  449. package/Screens/Option/Reducers/Reducer.js +12 -21
  450. package/Screens/Option/Screen.js +2 -14
  451. package/Screens/Option/Translations.js +6 -2
  452. package/Screens/Option/index.js +2 -8
  453. package/Screens/OptionPools/Containers/Edit.js +15 -21
  454. package/Screens/OptionPools/Containers/List.js +2 -12
  455. package/Screens/OptionPools/Reducers/Actions.js +8 -19
  456. package/Screens/OptionPools/Reducers/Reducer.js +14 -19
  457. package/Screens/OptionPools/Screen.js +2 -14
  458. package/Screens/OptionPools/Translations.js +6 -2
  459. package/Screens/OptionPools/index.js +2 -8
  460. package/Screens/Optionclassification/Containers/Edit.js +27 -40
  461. package/Screens/Optionclassification/Containers/List.js +10 -23
  462. package/Screens/Optionclassification/Reducers/Actions.js +7 -17
  463. package/Screens/Optionclassification/Reducers/Reducer.js +12 -18
  464. package/Screens/Optionclassification/Screen.js +4 -18
  465. package/Screens/Optionclassification/Translations.js +6 -2
  466. package/Screens/Optionclassification/index.js +2 -8
  467. package/Screens/PriceTypes/Containers/Edit.js +15 -21
  468. package/Screens/PriceTypes/Containers/List.js +7 -19
  469. package/Screens/PriceTypes/Reducers/Actions.js +6 -15
  470. package/Screens/PriceTypes/Reducers/Reducer.js +12 -16
  471. package/Screens/PriceTypes/Screen.js +4 -17
  472. package/Screens/PriceTypes/Translations.js +6 -2
  473. package/Screens/PriceTypes/index.js +2 -8
  474. package/Screens/ProductionView/Components/ConfigurationDataSheet.js +19 -49
  475. package/Screens/ProductionView/Containers/Edit.js +6 -16
  476. package/Screens/ProductionView/Containers/List.js +14 -48
  477. package/Screens/ProductionView/Reducers/Actions.js +13 -23
  478. package/Screens/ProductionView/Reducers/Reducer.js +12 -16
  479. package/Screens/ProductionView/Screen.js +3 -20
  480. package/Screens/ProductionView/Translations.js +4 -2
  481. package/Screens/ProductionView/index.js +2 -8
  482. package/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +47 -69
  483. package/Screens/ReceiveOfferRequests/Containers/Edit.js +6 -16
  484. package/Screens/ReceiveOfferRequests/Containers/List.js +16 -47
  485. package/Screens/ReceiveOfferRequests/Reducers/Actions.js +13 -23
  486. package/Screens/ReceiveOfferRequests/Reducers/Reducer.js +11 -15
  487. package/Screens/ReceiveOfferRequests/Screen.js +4 -20
  488. package/Screens/ReceiveOfferRequests/Translations.js +10 -0
  489. package/Screens/ReceiveOfferRequests/index.js +2 -8
  490. package/Screens/Roles/Containers/Edit.js +12 -19
  491. package/Screens/Roles/Containers/List.js +7 -17
  492. package/Screens/Roles/Reducers/Actions.js +12 -21
  493. package/Screens/Roles/Reducers/Reducer.js +11 -15
  494. package/Screens/Roles/Screen.js +4 -17
  495. package/Screens/Roles/Translations.js +2 -0
  496. package/Screens/Roles/index.js +2 -8
  497. package/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +51 -74
  498. package/Screens/Savedconfigurations/Containers/Edit.js +6 -16
  499. package/Screens/Savedconfigurations/Containers/List.js +16 -63
  500. package/Screens/Savedconfigurations/Reducers/Actions.js +12 -21
  501. package/Screens/Savedconfigurations/Reducers/Reducer.js +11 -15
  502. package/Screens/Savedconfigurations/Screen.js +3 -20
  503. package/Screens/Savedconfigurations/Translations.js +2 -0
  504. package/Screens/Savedconfigurations/index.js +2 -8
  505. package/Screens/Setting/Containers/Edit.js +18 -43
  506. package/Screens/Setting/Reducers/Actions.js +23 -46
  507. package/Screens/Setting/Reducers/Reducer.js +12 -16
  508. package/Screens/Setting/Screen.js +1 -10
  509. package/Screens/Setting/Translations.js +2 -0
  510. package/Screens/Setting/index.js +2 -8
  511. package/Screens/SoftwareUpdates/Reducers/Actions.js +5 -13
  512. package/Screens/SoftwareUpdates/Reducers/Reducer.js +9 -20
  513. package/Screens/SoftwareUpdates/Screen.js +5 -26
  514. package/Screens/SoftwareUpdates/index.js +2 -8
  515. package/Screens/Tag/Containers/Edit.js +5 -8
  516. package/Screens/Tag/Containers/List.js +6 -17
  517. package/Screens/Tag/Reducers/Actions.js +16 -35
  518. package/Screens/Tag/Reducers/Reducer.js +12 -16
  519. package/Screens/Tag/Screen.js +1 -11
  520. package/Screens/Tag/Translations.js +4 -2
  521. package/Screens/Tag/index.js +2 -8
  522. package/Screens/TrackingCodes/Containers/Edit.js +6 -12
  523. package/Screens/TrackingCodes/Containers/List.js +2 -12
  524. package/Screens/TrackingCodes/Reducers/Actions.js +16 -34
  525. package/Screens/TrackingCodes/Reducers/Reducer.js +11 -18
  526. package/Screens/TrackingCodes/Screen.js +2 -14
  527. package/Screens/TrackingCodes/Translations.js +4 -2
  528. package/Screens/TrackingCodes/index.js +2 -8
  529. package/Screens/TranslationFileHandling/Containers/Edit.js +126 -161
  530. package/Screens/TranslationFileHandling/Containers/List.js +7 -16
  531. package/Screens/TranslationFileHandling/Reducers/Actions.js +6 -15
  532. package/Screens/TranslationFileHandling/Reducers/Reducer.js +12 -16
  533. package/Screens/TranslationFileHandling/Screen.js +4 -17
  534. package/Screens/TranslationFileHandling/Translations.js +4 -2
  535. package/Screens/TranslationFileHandling/index.js +2 -8
  536. package/Screens/User/Containers/Edit.js +9 -9
  537. package/Screens/User/Containers/List.js +13 -8
  538. package/Screens/User/Reducers/Actions.js +16 -33
  539. package/Screens/User/Reducers/Reducer.js +12 -16
  540. package/Screens/User/Screen.js +1 -11
  541. package/Screens/User/Translations.js +3 -1
  542. package/Screens/User/__tests/UserScreen.js +31 -75
  543. package/Screens/User/index.js +2 -8
  544. package/Screens/index.js +4 -62
  545. package/UIComponents/AppBar.js +1 -5
  546. package/UIComponents/AutoComplete.js +49 -110
  547. package/UIComponents/Button.js +1 -5
  548. package/UIComponents/ButtonBase.js +1 -5
  549. package/UIComponents/Checkbox.js +1 -5
  550. package/UIComponents/Chip.js +1 -5
  551. package/UIComponents/ChipInput.js +40 -98
  552. package/UIComponents/CircularProgress.js +2 -5
  553. package/UIComponents/ClickAwayListener.js +1 -5
  554. package/UIComponents/Collapse.js +1 -5
  555. package/UIComponents/DatePicker.js +4 -20
  556. package/UIComponents/DateTimePicker.js +4 -20
  557. package/UIComponents/Dialog.js +8 -27
  558. package/UIComponents/Drawer.js +1 -5
  559. package/UIComponents/FlatButton.js +6 -22
  560. package/UIComponents/FloatingActionButton.js +3 -10
  561. package/UIComponents/FontIcon.js +1 -5
  562. package/UIComponents/FormControl.js +1 -5
  563. package/UIComponents/FormControlLabel.js +1 -5
  564. package/UIComponents/Grow.js +1 -5
  565. package/UIComponents/IconButton.js +1 -5
  566. package/UIComponents/IconMenu.js +22 -70
  567. package/UIComponents/InlineHelp/index.js +14 -42
  568. package/UIComponents/Input.js +1 -5
  569. package/UIComponents/InputAdornment.js +1 -5
  570. package/UIComponents/InputLabel.js +1 -5
  571. package/UIComponents/LinearProgress.js +1 -5
  572. package/UIComponents/Link.js +3 -14
  573. package/UIComponents/List.js +1 -5
  574. package/UIComponents/ListItem.js +1 -5
  575. package/UIComponents/ListItemIcon.js +1 -5
  576. package/UIComponents/ListItemText.js +1 -5
  577. package/UIComponents/Menu.js +1 -5
  578. package/UIComponents/MenuItem.js +1 -5
  579. package/UIComponents/MenuList.js +1 -5
  580. package/UIComponents/Pagination.js +20 -64
  581. package/UIComponents/Paper.js +1 -5
  582. package/UIComponents/Popper.js +1 -5
  583. package/UIComponents/RadioButton/RadioButton.js +1 -5
  584. package/UIComponents/RadioButton/RadioGroup.js +1 -5
  585. package/UIComponents/RadioButton/index.js +0 -3
  586. package/UIComponents/RaisedButton.js +7 -21
  587. package/UIComponents/SelectField.js +25 -53
  588. package/UIComponents/Snackbar.js +1 -5
  589. package/UIComponents/Table/Table.js +18 -67
  590. package/UIComponents/Table/TableBody.js +15 -43
  591. package/UIComponents/Table/TableCell.js +1 -5
  592. package/UIComponents/Table/TableFooter.js +1 -5
  593. package/UIComponents/Table/TableHead.js +15 -45
  594. package/UIComponents/Table/TableHeadColumn.js +1 -5
  595. package/UIComponents/Table/TableRow.js +15 -41
  596. package/UIComponents/Table/TableRowColumn.js +1 -5
  597. package/UIComponents/Table/index.js +0 -8
  598. package/UIComponents/TableSortLabel.js +1 -5
  599. package/UIComponents/Tabs/Tab.js +1 -5
  600. package/UIComponents/Tabs/Tabs.js +1 -5
  601. package/UIComponents/Tabs/index.js +4 -7
  602. package/UIComponents/TextField.js +1 -5
  603. package/UIComponents/TimePicker.js +6 -22
  604. package/UIComponents/Toggle.js +1 -5
  605. package/UIComponents/Toolbar.js +1 -5
  606. package/UIComponents/Tooltip.js +1 -7
  607. package/UIComponents/Typography.js +1 -5
  608. package/UIComponents/icons/AccountCircleIcon.js +1 -5
  609. package/UIComponents/icons/AddCircleOutlineIcon.js +1 -5
  610. package/UIComponents/icons/AddIcon.js +1 -5
  611. package/UIComponents/icons/ArrowBackIcon.js +1 -5
  612. package/UIComponents/icons/CheckmarkIcon.js +1 -5
  613. package/UIComponents/icons/CloseIcon.js +1 -5
  614. package/UIComponents/icons/DeleteForeverIcon.js +1 -5
  615. package/UIComponents/icons/DeleteIcon.js +1 -5
  616. package/UIComponents/icons/ErrorIcon.js +1 -5
  617. package/UIComponents/icons/ExpandLessIcon.js +1 -5
  618. package/UIComponents/icons/ExpandMoreIcon.js +1 -5
  619. package/UIComponents/icons/FolderIcon.js +1 -5
  620. package/UIComponents/icons/ForwardIcon.js +1 -5
  621. package/UIComponents/icons/InfoIcon.js +1 -5
  622. package/UIComponents/icons/InfoOutlineIcon.js +1 -5
  623. package/UIComponents/icons/LanguageIcon.js +1 -5
  624. package/UIComponents/icons/LaunchIcon.js +1 -5
  625. package/UIComponents/icons/MenuIcon.js +1 -5
  626. package/UIComponents/icons/PriceIcon.js +1 -5
  627. package/UIComponents/icons/ReorderIcon.js +1 -5
  628. package/UIComponents/icons/SearchIcon.js +1 -5
  629. package/UIComponents/icons/SettingsIcon.js +1 -5
  630. package/UIComponents/icons/SortIcon.js +1 -5
  631. package/UIComponents/icons/TranslateIcon.js +1 -5
  632. package/UIComponents/icons/UpdateIcon.js +1 -5
  633. package/UIComponents/icons/ViewListIcon.js +1 -5
  634. package/UIComponents/icons/ZoomResetIcon.js +1 -5
  635. package/Utils/Async/Deferred.js +11 -40
  636. package/Utils/Async/newestRequest.js +30 -42
  637. package/Utils/Decorators/Observable.js +10 -30
  638. package/Utils/Dev/RequestApiToken.js +4 -13
  639. package/Utils/Dev/withStateProps.js +9 -24
  640. package/Utils/Error/createError.js +3 -11
  641. package/Utils/Events/pointerEvent.js +7 -30
  642. package/Utils/FunDraw/createMask.js +70 -85
  643. package/Utils/FunDraw/funDraw.js +201 -333
  644. package/Utils/FunDraw/movableObject.js +89 -127
  645. package/Utils/Function/sendMessage.js +3 -8
  646. package/Utils/HOCs/AsyncProps.js +44 -69
  647. package/Utils/HOCs/LocalState.js +18 -48
  648. package/Utils/HOCs/RemappedProps.js +3 -9
  649. package/Utils/Request/lazyFetch.js +56 -84
  650. package/Utils/Request/pathParams.js +2 -7
  651. package/Utils/Test/provideStore.js +1 -9
  652. package/Utils/Test/wrapperSelectors.js +4 -10
  653. package/default.js +0 -7
  654. package/dev.js +2 -11
  655. package/index.js +1 -4
  656. package/package.json +28 -25
  657. package/scripts/getDefaultBabelConfig.js +3 -0
  658. package/scripts/getDefaultWebpackConfig.js +48 -25
  659. package/src/App/Api.js +0 -196
  660. package/src/App/Config/app.js +0 -57
  661. package/src/App/Config/defaultConfig.js +0 -183
  662. package/src/App/Config/icons.js +0 -17
  663. package/src/App/Config/network.js +0 -19
  664. package/src/App/Data.js +0 -351
  665. package/src/App/Entity.js +0 -93
  666. package/src/App/ErrorBoundary.js +0 -67
  667. package/src/App/FeatureReducers.js +0 -36
  668. package/src/App/Frame.js +0 -125
  669. package/src/App/Listeners.js +0 -20
  670. package/src/App/Main.js +0 -185
  671. package/src/App/Reducers/Api/Actions.js +0 -177
  672. package/src/App/Reducers/Api/Helpers.js +0 -66
  673. package/src/App/Reducers/Api/Reducer.js +0 -116
  674. package/src/App/Reducers/Common/Form/Actions.js +0 -6
  675. package/src/App/Reducers/Common/Form/Reducer.js +0 -48
  676. package/src/App/Reducers/Common/Language/Actions.js +0 -6
  677. package/src/App/Reducers/Common/Language/Reducer.js +0 -27
  678. package/src/App/Reducers/Common/OrderList/Actions.js +0 -45
  679. package/src/App/Reducers/Common/OrderList/Listener.js +0 -24
  680. package/src/App/Reducers/Common/OrderList/Reducer.js +0 -79
  681. package/src/App/Reducers/Common/index.js +0 -9
  682. package/src/App/Reducers/Config/Actions.js +0 -7
  683. package/src/App/Reducers/Config/Reducer.js +0 -20
  684. package/src/App/Reducers/Entity/Actions.js +0 -517
  685. package/src/App/Reducers/Entity/Reducer.js +0 -340
  686. package/src/App/Reducers/Frame/Actions.js +0 -19
  687. package/src/App/Reducers/Frame/Reducer.js +0 -115
  688. package/src/App/Reducers/index.js +0 -32
  689. package/src/App/ReduxListener.js +0 -38
  690. package/src/App/ReduxPersistLoader.js +0 -12
  691. package/src/App/Routes.js +0 -41
  692. package/src/App/Selectors/Credentials/hasCredentialFor.js +0 -4
  693. package/src/App/Selectors/Credentials/hasCredentialFor.test.js +0 -17
  694. package/src/App/Services/ElementRef.js +0 -13
  695. package/src/App/Services/WindowCommunication.js +0 -33
  696. package/src/App/Services/index.js +0 -5
  697. package/src/App/Store.js +0 -71
  698. package/src/App/Styles.scss +0 -185
  699. package/src/App/TestHelpers.js +0 -59
  700. package/src/App/ThemeProvider.js +0 -56
  701. package/src/App/Translations.js +0 -174
  702. package/src/App/Utils.js +0 -20
  703. package/src/App/customSetup.js +0 -3
  704. package/src/App/i18n.js +0 -215
  705. package/src/App/index.js +0 -27
  706. package/src/App/initServices.js +0 -47
  707. package/src/App/setup.js +0 -18
  708. package/src/AppContainer.js +0 -11
  709. package/src/Components/AddButton.js +0 -15
  710. package/src/Components/AppBar.js +0 -64
  711. package/src/Components/CallToActionField.js +0 -95
  712. package/src/Components/CopyPaste.js +0 -55
  713. package/src/Components/DefaultConnectedForm.js +0 -85
  714. package/src/Components/DefaultConnectedList.js +0 -146
  715. package/src/Components/DefaultConnectedScreen.js +0 -66
  716. package/src/Components/DefaultForm.js +0 -40
  717. package/src/Components/DefaultList.js +0 -225
  718. package/src/Components/DefaultScreen.js +0 -106
  719. package/src/Components/Error.js +0 -20
  720. package/src/Components/Form.js +0 -270
  721. package/src/Components/FormFragments/AttributeValueChip.js +0 -140
  722. package/src/Components/FormFragments/AutoComplete.js +0 -184
  723. package/src/Components/FormFragments/AutocompleteEntity.js +0 -206
  724. package/src/Components/FormFragments/Checkbox.js +0 -26
  725. package/src/Components/FormFragments/Chip.js +0 -126
  726. package/src/Components/FormFragments/DatePicker.js +0 -15
  727. package/src/Components/FormFragments/DateTimePicker.js +0 -21
  728. package/src/Components/FormFragments/DynSourceInput.js +0 -128
  729. package/src/Components/FormFragments/ErrorWrapper.js +0 -15
  730. package/src/Components/FormFragments/File.js +0 -202
  731. package/src/Components/FormFragments/HintText.js +0 -14
  732. package/src/Components/FormFragments/InlineAddButton.js +0 -109
  733. package/src/Components/FormFragments/InputArray.js +0 -246
  734. package/src/Components/FormFragments/InputGroup.js +0 -46
  735. package/src/Components/FormFragments/InputWithSource.js +0 -49
  736. package/src/Components/FormFragments/IntlInput.js +0 -98
  737. package/src/Components/FormFragments/Label.js +0 -15
  738. package/src/Components/FormFragments/MarkDown.js +0 -128
  739. package/src/Components/FormFragments/MonacoEditor.js +0 -75
  740. package/src/Components/FormFragments/NestedDataComponent.js +0 -144
  741. package/src/Components/FormFragments/ObjectToggle.js +0 -75
  742. package/src/Components/FormFragments/RadioGroup.js +0 -31
  743. package/src/Components/FormFragments/Select.js +0 -51
  744. package/src/Components/FormFragments/SetInput.js +0 -67
  745. package/src/Components/FormFragments/SimpleNestedData.js +0 -28
  746. package/src/Components/FormFragments/SimpleTable.js +0 -224
  747. package/src/Components/FormFragments/SimpleTextEditor.js +0 -26
  748. package/src/Components/FormFragments/Styles.scss +0 -119
  749. package/src/Components/FormFragments/Tabs.js +0 -207
  750. package/src/Components/FormFragments/Text.js +0 -36
  751. package/src/Components/FormFragments/TimePicker.js +0 -16
  752. package/src/Components/FormFragments/Toggle.js +0 -81
  753. package/src/Components/FormFragments/TwoSideSelect.js +0 -163
  754. package/src/Components/FormFragments/Value.js +0 -33
  755. package/src/Components/FormFragments/index.js +0 -48
  756. package/src/Components/FormFragments/styles.js +0 -24
  757. package/src/Components/FormHooks/useDataSchema.js +0 -33
  758. package/src/Components/GeneralFragments/Box.js +0 -12
  759. package/src/Components/GeneralFragments/ConfigurationEditor.js +0 -111
  760. package/src/Components/GeneralFragments/ConfiguratorOverlay.js +0 -56
  761. package/src/Components/GeneralFragments/Content.js +0 -12
  762. package/src/Components/GeneralFragments/Headline.js +0 -16
  763. package/src/Components/GeneralFragments/Image.js +0 -25
  764. package/src/Components/GeneralFragments/MiniPopup.js +0 -105
  765. package/src/Components/GeneralFragments/Styles.scss +0 -8
  766. package/src/Components/GeneralFragments/index.js +0 -13
  767. package/src/Components/InputHelpers.js +0 -7
  768. package/src/Components/Join.js +0 -14
  769. package/src/Components/LicenseInfo.js +0 -86
  770. package/src/Components/List.js +0 -355
  771. package/src/Components/ListColumnFilter.js +0 -200
  772. package/src/Components/LocaleSwitch.js +0 -39
  773. package/src/Components/LocalizedPriceTextField.js +0 -74
  774. package/src/Components/LocalizedPriceValue.js +0 -20
  775. package/src/Components/Menu.js +0 -127
  776. package/src/Components/ModalContainer.js +0 -79
  777. package/src/Components/OrderList.js +0 -169
  778. package/src/Components/OverlayContainer.js +0 -22
  779. package/src/Components/Pagination.js +0 -90
  780. package/src/Components/ProfileButton.js +0 -44
  781. package/src/Components/SearchBar.js +0 -105
  782. package/src/Components/SplitContainer.js +0 -40
  783. package/src/Components/Styles.scss +0 -114
  784. package/src/Components/TranslateComponent.js +0 -140
  785. package/src/Components/TranslationFinder.js +0 -30
  786. package/src/Components/Translations.js +0 -110
  787. package/src/Components/ValidatorCallbackProvider.js +0 -44
  788. package/src/Components/VersionBadge.js +0 -27
  789. package/src/Components/VersionUpdateChip.js +0 -30
  790. package/src/Components/__tests__/LicenseInfo.test.js +0 -22
  791. package/src/Components/__tests__/__snapshots__/LicenseInfo.test.js.snap +0 -39
  792. package/src/Components/withLoadAction.js +0 -15
  793. package/src/Components/withTranslationFinder.js +0 -17
  794. package/src/Screens/ApiKeys/Containers/Edit.js +0 -74
  795. package/src/Screens/ApiKeys/Containers/List.js +0 -49
  796. package/src/Screens/ApiKeys/Reducers/Actions.js +0 -21
  797. package/src/Screens/ApiKeys/Reducers/Reducer.js +0 -24
  798. package/src/Screens/ApiKeys/Screen.js +0 -19
  799. package/src/Screens/ApiKeys/Styles.scss +0 -3
  800. package/src/Screens/ApiKeys/Translations.js +0 -29
  801. package/src/Screens/ApiKeys/index.js +0 -10
  802. package/src/Screens/Assemblypointeditor/Components/AssemblypointTable.js +0 -94
  803. package/src/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +0 -703
  804. package/src/Screens/Assemblypointeditor/Components/Styles.scss +0 -58
  805. package/src/Screens/Assemblypointeditor/Components/fabric.min.js +0 -12282
  806. package/src/Screens/Assemblypointeditor/Containers/Edit.js +0 -57
  807. package/src/Screens/Assemblypointeditor/Containers/List.js +0 -48
  808. package/src/Screens/Assemblypointeditor/Reducers/Actions.js +0 -67
  809. package/src/Screens/Assemblypointeditor/Reducers/Reducer.js +0 -77
  810. package/src/Screens/Assemblypointeditor/Screen.js +0 -34
  811. package/src/Screens/Assemblypointeditor/Styles.scss +0 -38
  812. package/src/Screens/Assemblypointeditor/Translations.js +0 -11
  813. package/src/Screens/Assemblypointeditor/index.js +0 -9
  814. package/src/Screens/Attribute/Containers/Edit.js +0 -52
  815. package/src/Screens/Attribute/Containers/List.js +0 -53
  816. package/src/Screens/Attribute/Reducers/Actions.js +0 -25
  817. package/src/Screens/Attribute/Reducers/Reducer.js +0 -23
  818. package/src/Screens/Attribute/Screen.js +0 -24
  819. package/src/Screens/Attribute/Styles.scss +0 -0
  820. package/src/Screens/Attribute/Translations.js +0 -27
  821. package/src/Screens/Attribute/__tests/AttributeScreen.js +0 -348
  822. package/src/Screens/Attribute/index.js +0 -9
  823. package/src/Screens/AttributeValue/Containers/Edit.js +0 -37
  824. package/src/Screens/AttributeValue/Containers/List.js +0 -40
  825. package/src/Screens/AttributeValue/Reducers/Actions.js +0 -13
  826. package/src/Screens/AttributeValue/Reducers/Reducer.js +0 -24
  827. package/src/Screens/AttributeValue/Screen.js +0 -20
  828. package/src/Screens/AttributeValue/Styles.scss +0 -0
  829. package/src/Screens/AttributeValue/Translations.js +0 -18
  830. package/src/Screens/AttributeValue/__tests/AttributeValueScreen.js +0 -338
  831. package/src/Screens/AttributeValue/index.js +0 -9
  832. package/src/Screens/ChangePassword/Reducers/Actions.js +0 -45
  833. package/src/Screens/ChangePassword/Reducers/Reducer.js +0 -30
  834. package/src/Screens/ChangePassword/Screen.js +0 -185
  835. package/src/Screens/ChangePassword/Translations.js +0 -23
  836. package/src/Screens/ChangePassword/__tests__/ChangePasswordScreen.test.js +0 -15
  837. package/src/Screens/ChangePassword/__tests__/__snapshots__/ChangePasswordScreen.test.js.snap +0 -180
  838. package/src/Screens/ChangePassword/index.js +0 -9
  839. package/src/Screens/Channel/Containers/Edit.js +0 -58
  840. package/src/Screens/Channel/Containers/List.js +0 -29
  841. package/src/Screens/Channel/Reducers/Actions.js +0 -7
  842. package/src/Screens/Channel/Reducers/Reducer.js +0 -37
  843. package/src/Screens/Channel/Screen.js +0 -18
  844. package/src/Screens/Channel/Translations.js +0 -20
  845. package/src/Screens/Channel/__tests/ChannelScreen.js +0 -315
  846. package/src/Screens/Channel/index.js +0 -9
  847. package/src/Screens/Client/Components/ColorTextField.js +0 -74
  848. package/src/Screens/Client/Components/PdfMarkdownField.js +0 -127
  849. package/src/Screens/Client/Containers/Edit.js +0 -196
  850. package/src/Screens/Client/Containers/List.js +0 -36
  851. package/src/Screens/Client/Reducers/Actions.js +0 -74
  852. package/src/Screens/Client/Reducers/Reducer.js +0 -67
  853. package/src/Screens/Client/Screen.js +0 -20
  854. package/src/Screens/Client/Styles.scss +0 -3
  855. package/src/Screens/Client/Translations.js +0 -61
  856. package/src/Screens/Client/index.js +0 -9
  857. package/src/Screens/ColorPalettes/Components/DefaultColorSwitch.js +0 -61
  858. package/src/Screens/ColorPalettes/Containers/Edit.js +0 -121
  859. package/src/Screens/ColorPalettes/Containers/List.js +0 -41
  860. package/src/Screens/ColorPalettes/Reducers/Actions.js +0 -13
  861. package/src/Screens/ColorPalettes/Reducers/Reducer.js +0 -35
  862. package/src/Screens/ColorPalettes/Screen.js +0 -20
  863. package/src/Screens/ColorPalettes/Styles.scss +0 -0
  864. package/src/Screens/ColorPalettes/Translations.js +0 -25
  865. package/src/Screens/ColorPalettes/index.js +0 -9
  866. package/src/Screens/ConfigurationTypeEditor/Containers/Edit.js +0 -59
  867. package/src/Screens/ConfigurationTypeEditor/Containers/List.js +0 -55
  868. package/src/Screens/ConfigurationTypeEditor/Reducers/Actions.js +0 -78
  869. package/src/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +0 -106
  870. package/src/Screens/ConfigurationTypeEditor/Screen.js +0 -71
  871. package/src/Screens/ConfigurationTypeEditor/Styles.scss +0 -0
  872. package/src/Screens/ConfigurationTypeEditor/Translations.js +0 -15
  873. package/src/Screens/ConfigurationTypeEditor/index.js +0 -1
  874. package/src/Screens/ConfigurationVariants/Containers/Edit.js +0 -99
  875. package/src/Screens/ConfigurationVariants/Containers/List.js +0 -29
  876. package/src/Screens/ConfigurationVariants/Containers/Styles.scss +0 -13
  877. package/src/Screens/ConfigurationVariants/Reducers/Actions.js +0 -10
  878. package/src/Screens/ConfigurationVariants/Reducers/Reducer.js +0 -33
  879. package/src/Screens/ConfigurationVariants/Screen.js +0 -18
  880. package/src/Screens/ConfigurationVariants/Translations.js +0 -36
  881. package/src/Screens/ConfigurationVariants/index.js +0 -9
  882. package/src/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +0 -57
  883. package/src/Screens/ConfigurationWorkflowStatus/Containers/List.js +0 -170
  884. package/src/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +0 -82
  885. package/src/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +0 -97
  886. package/src/Screens/ConfigurationWorkflowStatus/Screen.js +0 -38
  887. package/src/Screens/ConfigurationWorkflowStatus/Styles.scss +0 -0
  888. package/src/Screens/ConfigurationWorkflowStatus/Translations.js +0 -51
  889. package/src/Screens/ConfigurationWorkflowStatus/index.js +0 -10
  890. package/src/Screens/ConfigurationWorkflowStatus/initServices.js +0 -7
  891. package/src/Screens/Creator/Components/BaseConfigurationEditor.js +0 -179
  892. package/src/Screens/Creator/Components/CheckData/ApiCalls.js +0 -5
  893. package/src/Screens/Creator/Components/CheckData/CheckData.js +0 -222
  894. package/src/Screens/Creator/Components/CheckData/Constants.js +0 -31
  895. package/src/Screens/Creator/Components/CheckData/Translations.js +0 -119
  896. package/src/Screens/Creator/Components/ComponentEditor.js +0 -155
  897. package/src/Screens/Creator/Components/ConfiguratorQuickView.js +0 -83
  898. package/src/Screens/Creator/Components/OptionPriceEditor.js +0 -120
  899. package/src/Screens/Creator/Components/OptionclassificationEditor.js +0 -483
  900. package/src/Screens/Creator/Components/Rules/Containers/Edit.js +0 -180
  901. package/src/Screens/Creator/Components/Rules/Containers/List.js +0 -42
  902. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +0 -37
  903. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +0 -43
  904. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +0 -31
  905. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +0 -35
  906. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +0 -34
  907. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +0 -35
  908. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +0 -34
  909. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +0 -37
  910. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +0 -36
  911. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +0 -34
  912. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +0 -155
  913. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +0 -23
  914. package/src/Screens/Creator/Components/Rules/Styles.scss +0 -38
  915. package/src/Screens/Creator/Components/Rules/Translations.js +0 -226
  916. package/src/Screens/Creator/Components/Rules/index.js +0 -26
  917. package/src/Screens/Creator/Components/ShowPreviewErrorDialog.js +0 -46
  918. package/src/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +0 -8
  919. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +0 -41
  920. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +0 -83
  921. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +0 -93
  922. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +0 -117
  923. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +0 -76
  924. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +0 -58
  925. package/src/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +0 -101
  926. package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +0 -766
  927. package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.test.js +0 -610
  928. package/src/Screens/Creator/Components/VisualizationAndMediaData/__snapshots__/VisualizationAndMediaData.test.js.snap +0 -17
  929. package/src/Screens/Creator/Components/VisualizationAndMediaData/dev.js +0 -341
  930. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/component_1.png +0 -0
  931. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_1.png +0 -0
  932. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3.png +0 -0
  933. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3_fullsize.jpg +0 -0
  934. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1.png +0 -0
  935. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_1.png +0 -0
  936. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_3.png +0 -0
  937. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_1.png +0 -0
  938. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_3.png +0 -0
  939. package/src/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -1
  940. package/src/Screens/Creator/Containers/Edit.js +0 -392
  941. package/src/Screens/Creator/Containers/List.js +0 -44
  942. package/src/Screens/Creator/Reducers/Actions.js +0 -25
  943. package/src/Screens/Creator/Reducers/ConfigurationActions.js +0 -254
  944. package/src/Screens/Creator/Reducers/ConfigurationReducer.js +0 -398
  945. package/src/Screens/Creator/Reducers/CreatorReducer.js +0 -32
  946. package/src/Screens/Creator/Reducers/Rules/Actions.js +0 -80
  947. package/src/Screens/Creator/Reducers/Rules/Reducer.js +0 -169
  948. package/src/Screens/Creator/Screen.js +0 -19
  949. package/src/Screens/Creator/Translations.js +0 -152
  950. package/src/Screens/Creator/index.js +0 -13
  951. package/src/Screens/CurrentClient/Containers/Edit.js +0 -146
  952. package/src/Screens/CurrentClient/Reducers/Actions.js +0 -16
  953. package/src/Screens/CurrentClient/Reducers/Reducer.js +0 -44
  954. package/src/Screens/CurrentClient/Screen.js +0 -5
  955. package/src/Screens/CurrentClient/Translations.js +0 -11
  956. package/src/Screens/CurrentClient/index.js +0 -9
  957. package/src/Screens/Dashboard/Screen.js +0 -25
  958. package/src/Screens/Dashboard/Styles.scss +0 -3
  959. package/src/Screens/Dashboard/Translations.js +0 -15
  960. package/src/Screens/DefaultClient/Containers/Edit.js +0 -162
  961. package/src/Screens/DefaultClient/Reducers/Actions.js +0 -16
  962. package/src/Screens/DefaultClient/Reducers/Reducer.js +0 -45
  963. package/src/Screens/DefaultClient/Screen.js +0 -5
  964. package/src/Screens/DefaultClient/Translations.js +0 -11
  965. package/src/Screens/DefaultClient/index.js +0 -9
  966. package/src/Screens/Demo/Screen.js +0 -92
  967. package/src/Screens/Demo/Styles.scss +0 -3
  968. package/src/Screens/Demo/index.js +0 -5
  969. package/src/Screens/DesignProductionMethods/Containers/Edit.js +0 -257
  970. package/src/Screens/DesignProductionMethods/Containers/List.js +0 -43
  971. package/src/Screens/DesignProductionMethods/Reducers/Actions.js +0 -14
  972. package/src/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +0 -93
  973. package/src/Screens/DesignProductionMethods/Screen.js +0 -18
  974. package/src/Screens/DesignProductionMethods/Translations.js +0 -79
  975. package/src/Screens/DesignProductionMethods/index.js +0 -10
  976. package/src/Screens/DesignTemplateEditor/Containers/List.js +0 -65
  977. package/src/Screens/DesignTemplateEditor/Reducers/Actions.js +0 -8
  978. package/src/Screens/DesignTemplateEditor/Reducers/Reducer.js +0 -14
  979. package/src/Screens/DesignTemplateEditor/Screen.js +0 -14
  980. package/src/Screens/DesignTemplateEditor/Translations.js +0 -17
  981. package/src/Screens/DesignTemplateEditor/index.js +0 -9
  982. package/src/Screens/Designer/Components/ConfiguratorQuickView.js +0 -84
  983. package/src/Screens/Designer/Components/DesignDataTransfer.js +0 -305
  984. package/src/Screens/Designer/Components/TemplateDefaultList.js +0 -341
  985. package/src/Screens/Designer/Components/TemplateList.js +0 -249
  986. package/src/Screens/Designer/Containers/Edit.js +0 -234
  987. package/src/Screens/Designer/Containers/List.js +0 -42
  988. package/src/Screens/Designer/Containers/TemplateList.js +0 -49
  989. package/src/Screens/Designer/Reducers/Actions.js +0 -29
  990. package/src/Screens/Designer/Reducers/DesignerReducer.js +0 -37
  991. package/src/Screens/Designer/Screen.js +0 -18
  992. package/src/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +0 -387
  993. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.dev.js +0 -61
  994. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +0 -150
  995. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.test.js +0 -46
  996. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +0 -53
  997. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +0 -78
  998. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.dev.js +0 -57
  999. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +0 -310
  1000. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/masks/circle.svg +0 -4
  1001. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +0 -40
  1002. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +0 -66
  1003. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +0 -154
  1004. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +0 -1002
  1005. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +0 -47
  1006. package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +0 -94
  1007. package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +0 -247
  1008. package/src/Screens/Designer/SubScreens/DesignAreas/Screen.js +0 -19
  1009. package/src/Screens/Designer/SubScreens/DesignAreas/Styles.scss +0 -0
  1010. package/src/Screens/Designer/SubScreens/DesignAreas/Translations.js +0 -141
  1011. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +0 -15
  1012. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +0 -9
  1013. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +0 -5
  1014. package/src/Screens/Designer/SubScreens/DesignAreas/index.js +0 -7
  1015. package/src/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +0 -138
  1016. package/src/Screens/Designer/SubScreens/Designviews/Containers/List.js +0 -47
  1017. package/src/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +0 -186
  1018. package/src/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +0 -111
  1019. package/src/Screens/Designer/SubScreens/Designviews/Screen.js +0 -18
  1020. package/src/Screens/Designer/SubScreens/Designviews/Translations.js +0 -23
  1021. package/src/Screens/Designer/SubScreens/Designviews/index.js +0 -7
  1022. package/src/Screens/Designer/SubScreens/Visualization/ApiCalls.js +0 -14
  1023. package/src/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +0 -247
  1024. package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +0 -174
  1025. package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +0 -139
  1026. package/src/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +0 -49
  1027. package/src/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +0 -68
  1028. package/src/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +0 -566
  1029. package/src/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +0 -88
  1030. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/logo.svg +0 -120
  1031. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +0 -1
  1032. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +0 -1
  1033. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +0 -1
  1034. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +0 -1
  1035. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +0 -1
  1036. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +0 -1
  1037. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +0 -3
  1038. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +0 -121
  1039. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.dev.js +0 -460
  1040. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +0 -789
  1041. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +0 -98
  1042. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/__tests__/calculateBoundingBoxSize.test.js +0 -46
  1043. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +0 -40
  1044. package/src/Screens/Designer/SubScreens/Visualization/Containers/List.js +0 -132
  1045. package/src/Screens/Designer/SubScreens/Visualization/Screen.js +0 -37
  1046. package/src/Screens/Designer/SubScreens/Visualization/Translations.js +0 -82
  1047. package/src/Screens/Designer/SubScreens/Visualization/index.js +0 -3
  1048. package/src/Screens/Designer/Translations.js +0 -55
  1049. package/src/Screens/Designer/__tests__/DesigAreaEdit.js +0 -9
  1050. package/src/Screens/Designer/__tests__/FormProductionMethods.test.js +0 -165
  1051. package/src/Screens/Designer/__tests__/__snapshots__/FormProductionMethods.test.js.snap +0 -434
  1052. package/src/Screens/Designer/index.js +0 -11
  1053. package/src/Screens/DesignerGlobalItemPrices/Containers/Edit.js +0 -106
  1054. package/src/Screens/DesignerGlobalItemPrices/Containers/List.js +0 -37
  1055. package/src/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +0 -17
  1056. package/src/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +0 -52
  1057. package/src/Screens/DesignerGlobalItemPrices/Screen.js +0 -20
  1058. package/src/Screens/DesignerGlobalItemPrices/Translations.js +0 -29
  1059. package/src/Screens/DesignerGlobalItemPrices/index.js +0 -11
  1060. package/src/Screens/Finder/Containers/Edit.js +0 -35
  1061. package/src/Screens/Finder/Containers/List.js +0 -36
  1062. package/src/Screens/Finder/Reducers/Actions.js +0 -97
  1063. package/src/Screens/Finder/Reducers/FinderReducer.js +0 -22
  1064. package/src/Screens/Finder/Screen.js +0 -19
  1065. package/src/Screens/Finder/Translations.js +0 -13
  1066. package/src/Screens/Finder/index.js +0 -11
  1067. package/src/Screens/Font/Containers/Edit.js +0 -55
  1068. package/src/Screens/Font/Containers/List.js +0 -54
  1069. package/src/Screens/Font/Reducers/Actions.js +0 -97
  1070. package/src/Screens/Font/Reducers/Reducer.js +0 -40
  1071. package/src/Screens/Font/Screen.js +0 -20
  1072. package/src/Screens/Font/Styles.scss +0 -0
  1073. package/src/Screens/Font/Translations.js +0 -17
  1074. package/src/Screens/Font/index.js +0 -9
  1075. package/src/Screens/Group/Containers/Edit.js +0 -34
  1076. package/src/Screens/Group/Containers/List.js +0 -30
  1077. package/src/Screens/Group/Reducers/Actions.js +0 -12
  1078. package/src/Screens/Group/Reducers/Reducer.js +0 -21
  1079. package/src/Screens/Group/Screen.js +0 -20
  1080. package/src/Screens/Group/Styles.scss +0 -0
  1081. package/src/Screens/Group/Translations.js +0 -19
  1082. package/src/Screens/Group/index.js +0 -10
  1083. package/src/Screens/GroupEntry/Containers/Edit.js +0 -46
  1084. package/src/Screens/GroupEntry/Containers/List.js +0 -30
  1085. package/src/Screens/GroupEntry/Reducers/Actions.js +0 -12
  1086. package/src/Screens/GroupEntry/Reducers/Reducer.js +0 -21
  1087. package/src/Screens/GroupEntry/Screen.js +0 -20
  1088. package/src/Screens/GroupEntry/Styles.scss +0 -0
  1089. package/src/Screens/GroupEntry/Translations.js +0 -17
  1090. package/src/Screens/GroupEntry/index.js +0 -10
  1091. package/src/Screens/ImageGallery/Containers/Edit.js +0 -119
  1092. package/src/Screens/ImageGallery/Containers/List.js +0 -170
  1093. package/src/Screens/ImageGallery/ImageTags/Actions.js +0 -25
  1094. package/src/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +0 -35
  1095. package/src/Screens/ImageGallery/ImageTags/Editor.js +0 -54
  1096. package/src/Screens/ImageGallery/ImageTags/Reducer.js +0 -20
  1097. package/src/Screens/ImageGallery/ImageTags/TagsActions.js +0 -20
  1098. package/src/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +0 -35
  1099. package/src/Screens/ImageGallery/Reducers/Actions.js +0 -114
  1100. package/src/Screens/ImageGallery/Reducers/Reducer.js +0 -76
  1101. package/src/Screens/ImageGallery/Screen.js +0 -20
  1102. package/src/Screens/ImageGallery/Styles.scss +0 -34
  1103. package/src/Screens/ImageGallery/Translations.js +0 -44
  1104. package/src/Screens/ImageGallery/index.js +0 -9
  1105. package/src/Screens/Inspirations/Containers/Edit.js +0 -105
  1106. package/src/Screens/Inspirations/Containers/InspirationsSubscreen.js +0 -18
  1107. package/src/Screens/Inspirations/Containers/ItemInspirationsList.js +0 -45
  1108. package/src/Screens/Inspirations/Containers/List.js +0 -40
  1109. package/src/Screens/Inspirations/Reducers/Actions.js +0 -90
  1110. package/src/Screens/Inspirations/Reducers/ItemInspirationsActions.js +0 -12
  1111. package/src/Screens/Inspirations/Reducers/Reducer.js +0 -63
  1112. package/src/Screens/Inspirations/Screen.js +0 -59
  1113. package/src/Screens/Inspirations/Translations.js +0 -28
  1114. package/src/Screens/Inspirations/index.js +0 -11
  1115. package/src/Screens/Item/ApiCalls.js +0 -9
  1116. package/src/Screens/Item/Components/AttributeEditorPopup.js +0 -57
  1117. package/src/Screens/Item/Components/ConfiguratorQuickView.js +0 -99
  1118. package/src/Screens/Item/Components/CopyCreatorItemDialog.js +0 -130
  1119. package/src/Screens/Item/Components/ListItemStatusEditor.js +0 -112
  1120. package/src/Screens/Item/Components/Styles.scss +0 -328
  1121. package/src/Screens/Item/Components/Variants/VariantsAutocomplete.js +0 -234
  1122. package/src/Screens/Item/Components/Variants/VariantsEditor.js +0 -582
  1123. package/src/Screens/Item/Components/Variants/VariantsEditorDialog.js +0 -143
  1124. package/src/Screens/Item/Components/Variants/VariantsEditorPopup.js +0 -69
  1125. package/src/Screens/Item/Components/Variants/VariantsSelection.js +0 -120
  1126. package/src/Screens/Item/Components/Variants/VariantsSortFilter.js +0 -158
  1127. package/src/Screens/Item/Containers/Edit.js +0 -524
  1128. package/src/Screens/Item/Containers/Edit.test.js +0 -310
  1129. package/src/Screens/Item/Containers/List.js +0 -87
  1130. package/src/Screens/Item/Containers/Styles.scss +0 -92
  1131. package/src/Screens/Item/DataStructures/Attributes/Actions.js +0 -30
  1132. package/src/Screens/Item/DataStructures/Attributes/Editor.js +0 -99
  1133. package/src/Screens/Item/DataStructures/Attributes/Reducer.js +0 -13
  1134. package/src/Screens/Item/Reducers/Actions.js +0 -82
  1135. package/src/Screens/Item/Reducers/ItemReducer.js +0 -64
  1136. package/src/Screens/Item/Reducers/Variant/Actions.js +0 -13
  1137. package/src/Screens/Item/Reducers/Variant/Reducer.js +0 -72
  1138. package/src/Screens/Item/Screen.js +0 -18
  1139. package/src/Screens/Item/Translations.js +0 -168
  1140. package/src/Screens/Item/index.js +0 -12
  1141. package/src/Screens/Itemclassification/Containers/Edit.js +0 -49
  1142. package/src/Screens/Itemclassification/Containers/List.js +0 -64
  1143. package/src/Screens/Itemclassification/Reducers/Actions.js +0 -21
  1144. package/src/Screens/Itemclassification/Reducers/Reducer.js +0 -43
  1145. package/src/Screens/Itemclassification/Screen.js +0 -19
  1146. package/src/Screens/Itemclassification/Translations.js +0 -22
  1147. package/src/Screens/Itemclassification/index.js +0 -9
  1148. package/src/Screens/License/Reducers/Actions.js +0 -44
  1149. package/src/Screens/License/Reducers/Reducer.js +0 -35
  1150. package/src/Screens/License/Screen.js +0 -116
  1151. package/src/Screens/License/Styles.scss +0 -35
  1152. package/src/Screens/License/Translations.js +0 -19
  1153. package/src/Screens/License/__tests__/LicenseScreen.test.js +0 -23
  1154. package/src/Screens/License/__tests__/__snapshots__/LicenseScreen.test.js.snap +0 -219
  1155. package/src/Screens/License/index.js +0 -10
  1156. package/src/Screens/Login/Reducers/Actions.js +0 -57
  1157. package/src/Screens/Login/Reducers/Listener.js +0 -13
  1158. package/src/Screens/Login/Reducers/Reducer.js +0 -73
  1159. package/src/Screens/Login/Screen.js +0 -96
  1160. package/src/Screens/Login/Styles.scss +0 -0
  1161. package/src/Screens/Login/Translations.js +0 -11
  1162. package/src/Screens/Login/__tests/LoginScreen.js +0 -227
  1163. package/src/Screens/Option/Containers/Edit.js +0 -172
  1164. package/src/Screens/Option/Containers/List.js +0 -64
  1165. package/src/Screens/Option/Reducers/Actions.js +0 -17
  1166. package/src/Screens/Option/Reducers/Reducer.js +0 -81
  1167. package/src/Screens/Option/Screen.js +0 -18
  1168. package/src/Screens/Option/Translations.js +0 -34
  1169. package/src/Screens/Option/index.js +0 -9
  1170. package/src/Screens/OptionPools/Containers/Edit.js +0 -87
  1171. package/src/Screens/OptionPools/Containers/List.js +0 -29
  1172. package/src/Screens/OptionPools/Reducers/Actions.js +0 -10
  1173. package/src/Screens/OptionPools/Reducers/Reducer.js +0 -33
  1174. package/src/Screens/OptionPools/Screen.js +0 -18
  1175. package/src/Screens/OptionPools/Translations.js +0 -23
  1176. package/src/Screens/OptionPools/index.js +0 -9
  1177. package/src/Screens/Optionclassification/Containers/Edit.js +0 -77
  1178. package/src/Screens/Optionclassification/Containers/List.js +0 -64
  1179. package/src/Screens/Optionclassification/Reducers/Actions.js +0 -17
  1180. package/src/Screens/Optionclassification/Reducers/Reducer.js +0 -43
  1181. package/src/Screens/Optionclassification/Screen.js +0 -20
  1182. package/src/Screens/Optionclassification/Styles.scss +0 -0
  1183. package/src/Screens/Optionclassification/Translations.js +0 -25
  1184. package/src/Screens/Optionclassification/index.js +0 -9
  1185. package/src/Screens/PriceTypes/Containers/Edit.js +0 -119
  1186. package/src/Screens/PriceTypes/Containers/List.js +0 -52
  1187. package/src/Screens/PriceTypes/Reducers/Actions.js +0 -8
  1188. package/src/Screens/PriceTypes/Reducers/Reducer.js +0 -45
  1189. package/src/Screens/PriceTypes/Screen.js +0 -19
  1190. package/src/Screens/PriceTypes/Translations.js +0 -51
  1191. package/src/Screens/PriceTypes/index.js +0 -9
  1192. package/src/Screens/ProductionView/Components/ConfigurationDataSheet.js +0 -146
  1193. package/src/Screens/ProductionView/Containers/Edit.js +0 -41
  1194. package/src/Screens/ProductionView/Containers/List.js +0 -65
  1195. package/src/Screens/ProductionView/Reducers/Actions.js +0 -21
  1196. package/src/Screens/ProductionView/Reducers/Reducer.js +0 -31
  1197. package/src/Screens/ProductionView/Screen.js +0 -22
  1198. package/src/Screens/ProductionView/Styles.scss +0 -59
  1199. package/src/Screens/ProductionView/Translations.js +0 -27
  1200. package/src/Screens/ProductionView/index.js +0 -9
  1201. package/src/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +0 -249
  1202. package/src/Screens/ReceiveOfferRequests/Containers/Edit.js +0 -46
  1203. package/src/Screens/ReceiveOfferRequests/Containers/List.js +0 -67
  1204. package/src/Screens/ReceiveOfferRequests/Reducers/Actions.js +0 -23
  1205. package/src/Screens/ReceiveOfferRequests/Reducers/Reducer.js +0 -30
  1206. package/src/Screens/ReceiveOfferRequests/Screen.js +0 -22
  1207. package/src/Screens/ReceiveOfferRequests/index.js +0 -10
  1208. package/src/Screens/Roles/Containers/Edit.js +0 -37
  1209. package/src/Screens/Roles/Containers/List.js +0 -30
  1210. package/src/Screens/Roles/Reducers/Actions.js +0 -14
  1211. package/src/Screens/Roles/Reducers/Reducer.js +0 -22
  1212. package/src/Screens/Roles/Screen.js +0 -19
  1213. package/src/Screens/Roles/Translations.js +0 -19
  1214. package/src/Screens/Roles/index.js +0 -9
  1215. package/src/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +0 -263
  1216. package/src/Screens/Savedconfigurations/Containers/Edit.js +0 -46
  1217. package/src/Screens/Savedconfigurations/Containers/List.js +0 -130
  1218. package/src/Screens/Savedconfigurations/Reducers/Actions.js +0 -17
  1219. package/src/Screens/Savedconfigurations/Reducers/Reducer.js +0 -28
  1220. package/src/Screens/Savedconfigurations/Screen.js +0 -22
  1221. package/src/Screens/Savedconfigurations/Styles.scss +0 -38
  1222. package/src/Screens/Savedconfigurations/Translations.js +0 -67
  1223. package/src/Screens/Savedconfigurations/index.js +0 -9
  1224. package/src/Screens/Setting/Containers/Edit.js +0 -115
  1225. package/src/Screens/Setting/Reducers/Actions.js +0 -36
  1226. package/src/Screens/Setting/Reducers/Reducer.js +0 -30
  1227. package/src/Screens/Setting/Screen.js +0 -10
  1228. package/src/Screens/Setting/Styles.scss +0 -0
  1229. package/src/Screens/Setting/Translations.js +0 -55
  1230. package/src/Screens/Setting/index.js +0 -9
  1231. package/src/Screens/SoftwareUpdates/Reducers/Actions.js +0 -9
  1232. package/src/Screens/SoftwareUpdates/Reducers/Reducer.js +0 -25
  1233. package/src/Screens/SoftwareUpdates/Screen.js +0 -77
  1234. package/src/Screens/SoftwareUpdates/Translations.js +0 -25
  1235. package/src/Screens/SoftwareUpdates/__tests__/SoftwareUpdatesScreen.test.js +0 -14
  1236. package/src/Screens/SoftwareUpdates/__tests__/__snapshots__/SoftwareUpdatesScreen.test.js.snap +0 -19
  1237. package/src/Screens/SoftwareUpdates/index.js +0 -10
  1238. package/src/Screens/Tag/Containers/Edit.js +0 -26
  1239. package/src/Screens/Tag/Containers/List.js +0 -52
  1240. package/src/Screens/Tag/Reducers/Actions.js +0 -20
  1241. package/src/Screens/Tag/Reducers/Reducer.js +0 -22
  1242. package/src/Screens/Tag/Screen.js +0 -19
  1243. package/src/Screens/Tag/Styles.scss +0 -0
  1244. package/src/Screens/Tag/Translations.js +0 -19
  1245. package/src/Screens/Tag/index.js +0 -9
  1246. package/src/Screens/TrackingCodes/Containers/Edit.js +0 -52
  1247. package/src/Screens/TrackingCodes/Containers/List.js +0 -39
  1248. package/src/Screens/TrackingCodes/Reducers/Actions.js +0 -46
  1249. package/src/Screens/TrackingCodes/Reducers/Reducer.js +0 -53
  1250. package/src/Screens/TrackingCodes/Screen.js +0 -18
  1251. package/src/Screens/TrackingCodes/Translations.js +0 -21
  1252. package/src/Screens/TrackingCodes/index.js +0 -10
  1253. package/src/Screens/TranslationFileHandling/Containers/Edit.js +0 -169
  1254. package/src/Screens/TranslationFileHandling/Containers/List.js +0 -30
  1255. package/src/Screens/TranslationFileHandling/Reducers/Actions.js +0 -8
  1256. package/src/Screens/TranslationFileHandling/Reducers/Reducer.js +0 -27
  1257. package/src/Screens/TranslationFileHandling/Screen.js +0 -19
  1258. package/src/Screens/TranslationFileHandling/Translations.js +0 -25
  1259. package/src/Screens/TranslationFileHandling/index.js +0 -10
  1260. package/src/Screens/User/Containers/Edit.js +0 -54
  1261. package/src/Screens/User/Containers/List.js +0 -55
  1262. package/src/Screens/User/Reducers/Actions.js +0 -43
  1263. package/src/Screens/User/Reducers/Reducer.js +0 -26
  1264. package/src/Screens/User/Screen.js +0 -19
  1265. package/src/Screens/User/Styles.scss +0 -3
  1266. package/src/Screens/User/Translations.js +0 -23
  1267. package/src/Screens/User/__tests/UserScreen.js +0 -376
  1268. package/src/Screens/User/index.js +0 -9
  1269. package/src/Screens/index.js +0 -142
  1270. package/src/UIComponents/AppBar.js +0 -3
  1271. package/src/UIComponents/AutoComplete.js +0 -237
  1272. package/src/UIComponents/Button.js +0 -3
  1273. package/src/UIComponents/ButtonBase.js +0 -3
  1274. package/src/UIComponents/Checkbox.js +0 -3
  1275. package/src/UIComponents/Chip.js +0 -2
  1276. package/src/UIComponents/ChipInput.js +0 -221
  1277. package/src/UIComponents/CircularProgress.js +0 -3
  1278. package/src/UIComponents/ClickAwayListener.js +0 -3
  1279. package/src/UIComponents/Collapse.js +0 -3
  1280. package/src/UIComponents/DatePicker.js +0 -37
  1281. package/src/UIComponents/DateTimePicker.js +0 -37
  1282. package/src/UIComponents/Dialog.js +0 -55
  1283. package/src/UIComponents/Drawer.js +0 -3
  1284. package/src/UIComponents/FlatButton.js +0 -23
  1285. package/src/UIComponents/FloatingActionButton.js +0 -4
  1286. package/src/UIComponents/FontIcon.js +0 -3
  1287. package/src/UIComponents/FormControl.js +0 -3
  1288. package/src/UIComponents/FormControlLabel.js +0 -3
  1289. package/src/UIComponents/Grow.js +0 -3
  1290. package/src/UIComponents/IconButton.js +0 -3
  1291. package/src/UIComponents/IconMenu.js +0 -138
  1292. package/src/UIComponents/InlineHelp/__snapshots__/index.test.js.snap +0 -30
  1293. package/src/UIComponents/InlineHelp/index.js +0 -46
  1294. package/src/UIComponents/InlineHelp/index.test.js +0 -22
  1295. package/src/UIComponents/Input.js +0 -3
  1296. package/src/UIComponents/InputAdornment.js +0 -3
  1297. package/src/UIComponents/InputLabel.js +0 -3
  1298. package/src/UIComponents/LinearProgress.js +0 -3
  1299. package/src/UIComponents/Link.js +0 -24
  1300. package/src/UIComponents/List.js +0 -3
  1301. package/src/UIComponents/ListItem.js +0 -3
  1302. package/src/UIComponents/ListItemIcon.js +0 -3
  1303. package/src/UIComponents/ListItemText.js +0 -3
  1304. package/src/UIComponents/Menu.js +0 -3
  1305. package/src/UIComponents/MenuItem.js +0 -3
  1306. package/src/UIComponents/MenuList.js +0 -3
  1307. package/src/UIComponents/Pagination.js +0 -100
  1308. package/src/UIComponents/Paper.js +0 -3
  1309. package/src/UIComponents/Popper.js +0 -3
  1310. package/src/UIComponents/RadioButton/RadioButton.js +0 -3
  1311. package/src/UIComponents/RadioButton/RadioGroup.js +0 -3
  1312. package/src/UIComponents/RadioButton/index.js +0 -5
  1313. package/src/UIComponents/RaisedButton.js +0 -24
  1314. package/src/UIComponents/SelectField.js +0 -70
  1315. package/src/UIComponents/Snackbar.js +0 -3
  1316. package/src/UIComponents/Table/Table.js +0 -133
  1317. package/src/UIComponents/Table/TableBody.js +0 -60
  1318. package/src/UIComponents/Table/TableCell.js +0 -3
  1319. package/src/UIComponents/Table/TableFooter.js +0 -3
  1320. package/src/UIComponents/Table/TableHead.js +0 -53
  1321. package/src/UIComponents/Table/TableHeadColumn.js +0 -3
  1322. package/src/UIComponents/Table/TableRow.js +0 -19
  1323. package/src/UIComponents/Table/TableRowColumn.js +0 -3
  1324. package/src/UIComponents/Table/index.js +0 -15
  1325. package/src/UIComponents/TableSortLabel.js +0 -3
  1326. package/src/UIComponents/Tabs/Tab.js +0 -3
  1327. package/src/UIComponents/Tabs/Tabs.js +0 -3
  1328. package/src/UIComponents/Tabs/index.js +0 -5
  1329. package/src/UIComponents/TextField.js +0 -3
  1330. package/src/UIComponents/TimePicker.js +0 -41
  1331. package/src/UIComponents/Toggle.js +0 -3
  1332. package/src/UIComponents/Toolbar.js +0 -3
  1333. package/src/UIComponents/Tooltip.js +0 -6
  1334. package/src/UIComponents/Typography.js +0 -3
  1335. package/src/UIComponents/icons/AccountCircleIcon.js +0 -3
  1336. package/src/UIComponents/icons/AddCircleOutlineIcon.js +0 -3
  1337. package/src/UIComponents/icons/AddIcon.js +0 -3
  1338. package/src/UIComponents/icons/ArrowBackIcon.js +0 -3
  1339. package/src/UIComponents/icons/CheckmarkIcon.js +0 -3
  1340. package/src/UIComponents/icons/CloseIcon.js +0 -3
  1341. package/src/UIComponents/icons/DeleteForeverIcon.js +0 -3
  1342. package/src/UIComponents/icons/DeleteIcon.js +0 -3
  1343. package/src/UIComponents/icons/ErrorIcon.js +0 -3
  1344. package/src/UIComponents/icons/ExpandLessIcon.js +0 -3
  1345. package/src/UIComponents/icons/ExpandMoreIcon.js +0 -3
  1346. package/src/UIComponents/icons/FolderIcon.js +0 -3
  1347. package/src/UIComponents/icons/ForwardIcon.js +0 -3
  1348. package/src/UIComponents/icons/InfoIcon.js +0 -3
  1349. package/src/UIComponents/icons/InfoOutlineIcon.js +0 -3
  1350. package/src/UIComponents/icons/LanguageIcon.js +0 -3
  1351. package/src/UIComponents/icons/LaunchIcon.js +0 -3
  1352. package/src/UIComponents/icons/MenuIcon.js +0 -3
  1353. package/src/UIComponents/icons/PriceIcon.js +0 -3
  1354. package/src/UIComponents/icons/ReorderIcon.js +0 -3
  1355. package/src/UIComponents/icons/SearchIcon.js +0 -3
  1356. package/src/UIComponents/icons/SettingsIcon.js +0 -3
  1357. package/src/UIComponents/icons/SortIcon.js +0 -3
  1358. package/src/UIComponents/icons/TranslateIcon.js +0 -3
  1359. package/src/UIComponents/icons/UpdateIcon.js +0 -3
  1360. package/src/UIComponents/icons/ViewListIcon.js +0 -3
  1361. package/src/UIComponents/icons/ZoomResetIcon.js +0 -3
  1362. package/src/Utils/Async/Deferred.js +0 -76
  1363. package/src/Utils/Async/__tests__/newestRequest.test.js +0 -34
  1364. package/src/Utils/Async/newestRequest.js +0 -15
  1365. package/src/Utils/Decorators/Observable.js +0 -62
  1366. package/src/Utils/Dev/RequestApiToken.js +0 -27
  1367. package/src/Utils/Dev/withStateProps.js +0 -6
  1368. package/src/Utils/Error/createError.js +0 -22
  1369. package/src/Utils/Events/pointerEvent.js +0 -77
  1370. package/src/Utils/FunDraw/createMask.js +0 -67
  1371. package/src/Utils/FunDraw/funDraw.js +0 -287
  1372. package/src/Utils/FunDraw/movableObject.js +0 -108
  1373. package/src/Utils/Function/__tests__/sendMessage.test.js +0 -20
  1374. package/src/Utils/Function/sendMessage.js +0 -7
  1375. package/src/Utils/HOCs/AsyncProps.js +0 -39
  1376. package/src/Utils/HOCs/LocalState.js +0 -34
  1377. package/src/Utils/HOCs/RemappedProps.js +0 -15
  1378. package/src/Utils/Request/lazyFetch.js +0 -29
  1379. package/src/Utils/Request/pathParams.js +0 -8
  1380. package/src/Utils/Test/provideStore.js +0 -16
  1381. package/src/Utils/Test/wrapperSelectors.js +0 -5
  1382. package/src/__mocks__/assetsMock.js +0 -3
  1383. package/src/__mocks__/fileMock.js +0 -1
  1384. package/src/__mocks__/styleMock.js +0 -3
  1385. package/src/default.js +0 -12
  1386. package/src/dev.js +0 -61
  1387. package/src/index.js +0 -8
@@ -1,72 +1,42 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
-
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = void 0;
9
-
10
8
  var _react = _interopRequireDefault(require("react"));
11
-
12
9
  var _styles = require("@material-ui/core/styles");
13
-
14
10
  var _i18n = require("../../../../App/i18n");
15
-
16
11
  var _Dialog = _interopRequireDefault(require("../../../../UIComponents/Dialog"));
17
-
18
12
  var _Actions = require("../../Reducers/Actions");
19
-
20
13
  var _RaisedButton = _interopRequireDefault(require("../../../../UIComponents/RaisedButton"));
21
-
22
14
  var _Editor = _interopRequireDefault(require("../../DataStructures/Attributes/Editor"));
23
-
24
15
  var _DefaultConnectedForm = _interopRequireDefault(require("../../../../Components/DefaultConnectedForm"));
25
-
26
16
  var _Actions2 = _interopRequireWildcard(require("../../Reducers/Variant/Actions"));
27
-
28
17
  var _LocalizedPriceTextField = require("../../../../Components/LocalizedPriceTextField");
29
-
30
18
  var _LocalizedPriceValue = _interopRequireDefault(require("../../../../Components/LocalizedPriceValue"));
31
-
32
19
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
33
-
34
20
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
35
-
36
21
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
37
-
38
22
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
39
-
40
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
41
-
42
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
43
-
44
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
45
-
46
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
47
-
23
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
26
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
27
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
48
29
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
49
-
50
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
51
-
30
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
52
31
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
53
-
54
32
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
55
-
56
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
57
-
33
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
58
34
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
59
-
60
35
  function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
61
-
62
36
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
63
-
64
37
  function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
65
-
66
38
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
67
-
68
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
69
-
39
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
70
40
  var styles = function styles() {
71
41
  return {
72
42
  cancelButton: {
@@ -76,8 +46,11 @@ var styles = function styles() {
76
46
  }
77
47
  };
78
48
  };
79
-
80
49
  var formFields = [{
50
+ name: 'subheadline',
51
+ label: 'generalData',
52
+ type: 'subheadline'
53
+ }, {
81
54
  name: 'identifier',
82
55
  label: 'Identifier',
83
56
  type: 'text'
@@ -109,6 +82,10 @@ var formFields = [{
109
82
  },
110
83
  multiLine: true,
111
84
  rows: 6
85
+ }, {
86
+ name: 'subheadline',
87
+ label: 'configurationSettings',
88
+ type: 'subheadline'
112
89
  }, {
113
90
  name: 'minimumOrderAmount',
114
91
  label: 'MinimumOrderAmount',
@@ -120,7 +97,7 @@ var formFields = [{
120
97
  sourceConfig: {
121
98
  text: function text(_ref) {
122
99
  var identifier = _ref.identifier,
123
- currency = _ref.currency;
100
+ currency = _ref.currency;
124
101
  return "".concat(identifier, " / ").concat(currency.symbol, " (").concat(currency.iso, ")");
125
102
  }
126
103
  },
@@ -169,18 +146,13 @@ var formFields = [{
169
146
  }
170
147
  }].concat(_toConsumableArray(_Editor["default"]));
171
148
  var BaseDataForm = (0, _DefaultConnectedForm["default"])(formFields, _Actions2.REDUCER_NAME, _Actions2["default"].setFieldData, _Actions2["default"].postData, false, _Actions2["default"].customAction);
172
-
173
149
  var VariantsEditorDialog = /*#__PURE__*/function (_React$Component) {
174
150
  _inherits(VariantsEditorDialog, _React$Component);
175
-
176
151
  var _super = _createSuper(VariantsEditorDialog);
177
-
178
152
  function VariantsEditorDialog() {
179
153
  _classCallCheck(this, VariantsEditorDialog);
180
-
181
154
  return _super.apply(this, arguments);
182
155
  }
183
-
184
156
  _createClass(VariantsEditorDialog, [{
185
157
  key: "render",
186
158
  value: function render() {
@@ -201,10 +173,6 @@ var VariantsEditorDialog = /*#__PURE__*/function (_React$Component) {
201
173
  })));
202
174
  }
203
175
  }]);
204
-
205
176
  return VariantsEditorDialog;
206
177
  }(_react["default"].Component);
207
-
208
- var _default = (0, _styles.withStyles)(styles)(VariantsEditorDialog);
209
-
210
- exports["default"] = _default;
178
+ var _default = exports["default"] = (0, _styles.withStyles)(styles)(VariantsEditorDialog);
@@ -1,77 +1,50 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
-
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
7
  exports["default"] = exports.VariantsEditorPopup = void 0;
9
-
10
8
  var _react = _interopRequireDefault(require("react"));
11
-
12
9
  var _reactRedux = require("react-redux");
13
-
14
10
  var _Dialog = _interopRequireDefault(require("../../../../UIComponents/Dialog"));
15
-
16
11
  var _Edit = _interopRequireDefault(require("../../../Group/Containers/Edit"));
17
-
18
12
  var _Edit2 = _interopRequireDefault(require("../../../GroupEntry/Containers/Edit"));
19
-
20
13
  var GroupActions = _interopRequireWildcard(require("../../../Group/Reducers/Actions"));
21
-
22
14
  var GroupEntryActions = _interopRequireWildcard(require("../../../GroupEntry/Reducers/Actions"));
23
-
24
15
  var _i18n = require("../../../../App/i18n");
25
-
26
16
  var _Actions3 = require("../../../../App/Reducers/Api/Actions");
27
-
28
17
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
29
-
30
18
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
31
-
32
19
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
33
-
20
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
34
21
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
35
-
36
22
  function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
37
-
38
23
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
39
-
40
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
41
-
42
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
43
-
44
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
45
-
46
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
47
-
24
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
25
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
26
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
27
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
28
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
29
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
48
30
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
49
-
50
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
51
-
31
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
52
32
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
53
-
54
33
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
55
-
56
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
57
-
58
- var VariantsEditorPopup = /*#__PURE__*/function (_React$Component) {
34
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
35
+ var VariantsEditorPopup = exports.VariantsEditorPopup = /*#__PURE__*/function (_React$Component) {
59
36
  _inherits(VariantsEditorPopup, _React$Component);
60
-
61
37
  var _super = _createSuper(VariantsEditorPopup);
62
-
63
38
  function VariantsEditorPopup() {
64
39
  _classCallCheck(this, VariantsEditorPopup);
65
-
66
40
  return _super.apply(this, arguments);
67
41
  }
68
-
69
42
  _createClass(VariantsEditorPopup, [{
70
43
  key: "render",
71
44
  value: function render() {
72
45
  var _this$props = this.props,
73
- showGroupEditor = _this$props.showGroupEditor,
74
- showGroupValueEditor = _this$props.showGroupValueEditor;
46
+ showGroupEditor = _this$props.showGroupEditor,
47
+ showGroupValueEditor = _this$props.showGroupValueEditor;
75
48
  return /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Dialog["default"], {
76
49
  title: (0, _i18n.T)('item.editorPopup.group.dialogTitle'),
77
50
  modal: 'true',
@@ -93,12 +66,8 @@ var VariantsEditorPopup = /*#__PURE__*/function (_React$Component) {
93
66
  })));
94
67
  }
95
68
  }]);
96
-
97
69
  return VariantsEditorPopup;
98
70
  }(_react["default"].Component);
99
-
100
- exports.VariantsEditorPopup = VariantsEditorPopup;
101
-
102
71
  var renderStateToProps = function renderStateToProps(state) {
103
72
  var groupEntity = state[GroupActions.REDUCER_NAME];
104
73
  var groupEntryEntity = state[GroupEntryActions.REDUCER_NAME];
@@ -107,37 +76,30 @@ var renderStateToProps = function renderStateToProps(state) {
107
76
  showGroupValueEditor: groupEntryEntity.showDetails
108
77
  };
109
78
  };
110
-
111
79
  var renderDispatchToProps = function renderDispatchToProps(dispatch) {
112
80
  return {
113
81
  cancelGroup: function cancelGroup() {
114
82
  dispatch(GroupActions.hideDetails(false));
115
83
  },
116
84
  customPostData: function () {
117
- var _customPostData = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
118
- return regeneratorRuntime.wrap(function _callee$(_context) {
119
- while (1) {
120
- switch (_context.prev = _context.next) {
121
- case 0:
122
- _context.next = 2;
123
- return dispatch(GroupActions.postData(true));
124
-
125
- case 2:
126
- // need to reset didInvalidate flag as it is set on save of group which is blocking to reloadList
127
- dispatch((0, _Actions3.resetDidInvalidate)(GroupActions.GROUPS_URL));
128
-
129
- case 3:
130
- case "end":
131
- return _context.stop();
132
- }
85
+ var _customPostData = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
86
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
87
+ while (1) switch (_context.prev = _context.next) {
88
+ case 0:
89
+ _context.next = 2;
90
+ return dispatch(GroupActions.postData(true));
91
+ case 2:
92
+ // need to reset didInvalidate flag as it is set on save of group which is blocking to reloadList
93
+ dispatch((0, _Actions3.resetDidInvalidate)(GroupActions.GROUPS_URL));
94
+ case 3:
95
+ case "end":
96
+ return _context.stop();
133
97
  }
134
98
  }, _callee);
135
99
  }));
136
-
137
100
  function customPostData() {
138
101
  return _customPostData.apply(this, arguments);
139
102
  }
140
-
141
103
  return customPostData;
142
104
  }(),
143
105
  cancelGroupEntry: function cancelGroupEntry() {
@@ -145,7 +107,4 @@ var renderDispatchToProps = function renderDispatchToProps(dispatch) {
145
107
  }
146
108
  };
147
109
  };
148
-
149
- var _default = (0, _reactRedux.connect)(renderStateToProps, renderDispatchToProps)(VariantsEditorPopup);
150
-
151
- exports["default"] = _default;
110
+ var _default = exports["default"] = (0, _reactRedux.connect)(renderStateToProps, renderDispatchToProps)(VariantsEditorPopup);
@@ -1,56 +1,34 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
-
5
3
  Object.defineProperty(exports, "__esModule", {
6
4
  value: true
7
5
  });
8
6
  exports["default"] = void 0;
9
-
10
7
  var _react = _interopRequireWildcard(require("react"));
11
-
12
8
  var _lodash = _interopRequireDefault(require("lodash"));
13
-
14
9
  var _SearchBar = _interopRequireDefault(require("../../../../Components/SearchBar"));
15
-
16
10
  var _FlatButton = _interopRequireDefault(require("../../../../UIComponents/FlatButton"));
17
-
18
11
  var _Dialog = _interopRequireDefault(require("../../../../UIComponents/Dialog"));
19
-
20
12
  var _i18n = require("../../../../App/i18n");
21
-
22
13
  var _TwoSideSelect = _interopRequireDefault(require("../../../../Components/FormFragments/TwoSideSelect"));
23
-
24
14
  var _Api = _interopRequireDefault(require("../../../../App/Api"));
25
-
26
15
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
27
-
28
16
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
29
-
30
17
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
31
-
18
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
32
19
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
33
-
34
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
35
-
36
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
37
-
38
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
39
-
40
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
41
-
20
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
21
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
22
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
23
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
42
24
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
43
-
44
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
45
-
25
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
46
26
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
47
-
48
27
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
49
-
50
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
51
-
52
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
53
-
28
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
29
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
30
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
31
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
54
32
  var renderItemContent = function renderItemContent(item) {
55
33
  return /*#__PURE__*/_react["default"].createElement("div", {
56
34
  className: "optionSelection-twoSideSelect-item"
@@ -61,19 +39,13 @@ var renderItemContent = function renderItemContent(item) {
61
39
  title: item.identifier
62
40
  }, item.identifier));
63
41
  };
64
-
65
42
  var VariantsSelection = /*#__PURE__*/function (_Component) {
66
43
  _inherits(VariantsSelection, _Component);
67
-
68
44
  var _super = _createSuper(VariantsSelection);
69
-
70
45
  function VariantsSelection(props) {
71
46
  var _this;
72
-
73
47
  _classCallCheck(this, VariantsSelection);
74
-
75
48
  _this = _super.call(this, props);
76
-
77
49
  _defineProperty(_assertThisInitialized(_this), "fetchVariants", function (text) {
78
50
  var requestParams = {
79
51
  url: 'creatoritems',
@@ -82,39 +54,32 @@ var VariantsSelection = /*#__PURE__*/function (_Component) {
82
54
  limit: 50
83
55
  }
84
56
  };
85
-
86
57
  _Api["default"].request(requestParams).then(function (response) {
87
58
  _this.setState({
88
59
  items: response.data.data
89
60
  });
90
61
  });
91
62
  });
92
-
93
63
  _defineProperty(_assertThisInitialized(_this), "closeSelection", function () {
94
64
  _this.props.closeSelection();
95
65
  });
96
-
97
66
  _defineProperty(_assertThisInitialized(_this), "setSelection", function () {
98
67
  _this.props.setSelection(_this.state.selectedItems);
99
68
  });
100
-
101
69
  _defineProperty(_assertThisInitialized(_this), "change", function (name, value) {
102
70
  _this.setState({
103
71
  selectedItems: value
104
72
  });
105
73
  });
106
-
107
74
  _defineProperty(_assertThisInitialized(_this), "searchChange", function (text) {
108
75
  _this.fetchVariants(text);
109
76
  });
110
-
111
77
  _this.state = {
112
78
  items: [],
113
79
  selectedItems: []
114
80
  };
115
81
  return _this;
116
82
  }
117
-
118
83
  _createClass(VariantsSelection, [{
119
84
  key: "componentWillReceiveProps",
120
85
  value: function componentWillReceiveProps(props) {
@@ -129,21 +94,21 @@ var VariantsSelection = /*#__PURE__*/function (_Component) {
129
94
  key: "render",
130
95
  value: function render() {
131
96
  var _this$props = this.props,
132
- showSelectionDialog = _this$props.showSelectionDialog,
133
- selectedParentItem = _this$props.selectedParentItem;
97
+ showSelectionDialog = _this$props.showSelectionDialog,
98
+ selectedParentItem = _this$props.selectedParentItem;
134
99
  var _this$state = this.state,
135
- selectedItems = _this$state.selectedItems,
136
- items = _this$state.items;
100
+ selectedItems = _this$state.selectedItems,
101
+ items = _this$state.items;
137
102
  var actions = [/*#__PURE__*/_react["default"].createElement(_FlatButton["default"], {
138
- key: 'select-btn',
139
- label: (0, _i18n.T)('Select'),
140
- primary: true,
141
- onClick: this.setSelection
142
- }), /*#__PURE__*/_react["default"].createElement(_FlatButton["default"], {
143
103
  key: 'cancel-btn',
144
104
  label: (0, _i18n.T)('Cancel'),
145
105
  primary: false,
146
106
  onClick: this.closeSelection
107
+ }), /*#__PURE__*/_react["default"].createElement(_FlatButton["default"], {
108
+ key: 'select-btn',
109
+ label: (0, _i18n.T)('Select'),
110
+ primary: true,
111
+ onClick: this.setSelection
147
112
  })];
148
113
  return /*#__PURE__*/_react["default"].createElement(_Dialog["default"], {
149
114
  title: (0, _i18n.T)('variants.dialogTitle'),
@@ -157,7 +122,7 @@ var VariantsSelection = /*#__PURE__*/function (_Component) {
157
122
  }, /*#__PURE__*/_react["default"].createElement("div", {
158
123
  className: "source-text"
159
124
  }, (0, _i18n.T)('variants.sourceHeadline'), /*#__PURE__*/_react["default"].createElement(_SearchBar["default"], {
160
- label: 'Search',
125
+ label: (0, _i18n.t)('Search'),
161
126
  onChange: this.searchChange,
162
127
  className: "optionSelection-searchBar"
163
128
  })), /*#__PURE__*/_react["default"].createElement("div", {
@@ -176,9 +141,6 @@ var VariantsSelection = /*#__PURE__*/function (_Component) {
176
141
  }));
177
142
  }
178
143
  }]);
179
-
180
144
  return VariantsSelection;
181
145
  }(_react.Component);
182
-
183
- var _default = VariantsSelection;
184
- exports["default"] = _default;
146
+ var _default = exports["default"] = VariantsSelection;