@configuratorware/configurator-admingui 1.41.2 → 1.42.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1388) 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/CloseButton.js +21 -0
  54. package/Components/CopyPaste.js +11 -43
  55. package/Components/DefaultConnectedForm.js +10 -29
  56. package/Components/DefaultConnectedList.js +19 -42
  57. package/Components/DefaultConnectedScreen.js +7 -21
  58. package/Components/DefaultForm.js +22 -49
  59. package/Components/DefaultList.js +35 -108
  60. package/Components/DefaultScreen.js +35 -83
  61. package/Components/Error.js +1 -8
  62. package/Components/Form.js +46 -148
  63. package/Components/FormFragments/AttributeValueChip.js +41 -99
  64. package/Components/FormFragments/AutoComplete.js +42 -95
  65. package/Components/FormFragments/AutocompleteEntity.js +41 -91
  66. package/Components/FormFragments/Checkbox.js +1 -10
  67. package/Components/FormFragments/Chip.js +44 -101
  68. package/Components/FormFragments/DatePicker.js +1 -7
  69. package/Components/FormFragments/DateTimePicker.js +1 -7
  70. package/Components/FormFragments/DynSourceInput.js +18 -69
  71. package/Components/FormFragments/ErrorWrapper.js +1 -7
  72. package/Components/FormFragments/File.js +44 -66
  73. package/Components/FormFragments/HintText.js +4 -10
  74. package/Components/FormFragments/InlineAddButton.js +30 -81
  75. package/Components/FormFragments/InputArray.js +32 -101
  76. package/Components/FormFragments/InputGroup.js +6 -15
  77. package/Components/FormFragments/InputWithSource.js +9 -34
  78. package/Components/FormFragments/IntlInput.js +19 -79
  79. package/Components/FormFragments/Label.js +4 -10
  80. package/Components/FormFragments/MarkDown.js +20 -49
  81. package/Components/FormFragments/MonacoEditor.js +17 -37
  82. package/Components/FormFragments/NestedDataComponent.js +23 -80
  83. package/Components/FormFragments/ObjectToggle.js +2 -14
  84. package/Components/FormFragments/RadioGroup.js +1 -10
  85. package/Components/FormFragments/Select.js +7 -17
  86. package/Components/FormFragments/SetInput.js +24 -71
  87. package/Components/FormFragments/SimpleNestedData.js +20 -48
  88. package/Components/FormFragments/SimpleTable.js +25 -72
  89. package/Components/FormFragments/SimpleTextEditor.js +6 -12
  90. package/Components/FormFragments/Subheadline.js +16 -0
  91. package/Components/FormFragments/Tabs.js +40 -106
  92. package/Components/FormFragments/Text.js +1 -8
  93. package/Components/FormFragments/TimePicker.js +1 -7
  94. package/Components/FormFragments/Toggle.js +3 -16
  95. package/Components/FormFragments/TwoSideSelect.js +19 -78
  96. package/Components/FormFragments/Value.js +8 -18
  97. package/Components/FormFragments/index.js +37 -47
  98. package/Components/FormFragments/styles.js +12 -2
  99. package/Components/FormHooks/useDataSchema.js +14 -29
  100. package/Components/GeneralFragments/Box.js +1 -8
  101. package/Components/GeneralFragments/ConfigurationEditor.js +74 -121
  102. package/Components/GeneralFragments/ConfiguratorOverlay.js +19 -42
  103. package/Components/GeneralFragments/Content.js +1 -8
  104. package/Components/GeneralFragments/Headline.js +7 -14
  105. package/Components/GeneralFragments/Image.js +11 -41
  106. package/Components/GeneralFragments/MiniPopup.js +29 -71
  107. package/Components/GeneralFragments/index.js +8 -14
  108. package/Components/InputHelpers.js +2 -5
  109. package/Components/Join.js +3 -11
  110. package/Components/LicenseInfo.js +12 -41
  111. package/Components/List.js +33 -97
  112. package/Components/ListColumnFilter.js +18 -65
  113. package/Components/LocaleSwitch.js +3 -17
  114. package/Components/LocalizedPriceTextField.js +27 -41
  115. package/Components/LocalizedPriceValue.js +6 -14
  116. package/Components/Menu.js +18 -66
  117. package/Components/ModalContainer.js +41 -51
  118. package/Components/OrderList.js +29 -80
  119. package/Components/OverlayContainer.js +6 -12
  120. package/Components/Pagination.js +20 -60
  121. package/Components/ProfileButton.js +9 -26
  122. package/Components/SearchBar.js +16 -55
  123. package/Components/SplitContainer.js +14 -20
  124. package/Components/Styles.scss +34 -0
  125. package/Components/TranslateComponent.js +17 -61
  126. package/Components/TranslationFinder.js +8 -28
  127. package/Components/Translations.js +11 -4
  128. package/Components/ValidatorCallbackProvider.js +13 -43
  129. package/Components/VersionBadge.js +2 -12
  130. package/Components/VersionUpdateChip.js +2 -16
  131. package/Components/withLoadAction.js +4 -17
  132. package/Components/withTranslationFinder.js +6 -15
  133. package/Resources/Images/configuratorware_logo_weiss.png +0 -0
  134. package/Screens/ApiKeys/Containers/Edit.js +48 -86
  135. package/Screens/ApiKeys/Containers/List.js +1 -8
  136. package/Screens/ApiKeys/Reducers/Actions.js +17 -37
  137. package/Screens/ApiKeys/Reducers/Reducer.js +11 -15
  138. package/Screens/ApiKeys/Screen.js +1 -11
  139. package/Screens/ApiKeys/Translations.js +2 -0
  140. package/Screens/ApiKeys/index.js +2 -8
  141. package/Screens/Assemblypointeditor/Components/AssemblypointTable.js +26 -58
  142. package/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +156 -224
  143. package/Screens/Assemblypointeditor/Components/fabric.min.js +1 -1
  144. package/Screens/Assemblypointeditor/Containers/Edit.js +6 -17
  145. package/Screens/Assemblypointeditor/Containers/List.js +4 -14
  146. package/Screens/Assemblypointeditor/Reducers/Actions.js +20 -36
  147. package/Screens/Assemblypointeditor/Reducers/Reducer.js +14 -32
  148. package/Screens/Assemblypointeditor/Screen.js +5 -22
  149. package/Screens/Assemblypointeditor/Translations.js +4 -0
  150. package/Screens/Assemblypointeditor/index.js +2 -8
  151. package/Screens/Attribute/Containers/Edit.js +5 -9
  152. package/Screens/Attribute/Containers/List.js +1 -8
  153. package/Screens/Attribute/Reducers/Actions.js +16 -35
  154. package/Screens/Attribute/Reducers/Reducer.js +11 -15
  155. package/Screens/Attribute/Screen.js +1 -11
  156. package/Screens/Attribute/Translations.js +4 -2
  157. package/Screens/Attribute/__tests/AttributeScreen.js +29 -72
  158. package/Screens/Attribute/index.js +2 -8
  159. package/Screens/AttributeValue/Containers/Edit.js +7 -13
  160. package/Screens/AttributeValue/Containers/List.js +7 -17
  161. package/Screens/AttributeValue/Reducers/Actions.js +6 -15
  162. package/Screens/AttributeValue/Reducers/Reducer.js +12 -16
  163. package/Screens/AttributeValue/Screen.js +4 -18
  164. package/Screens/AttributeValue/Translations.js +4 -2
  165. package/Screens/AttributeValue/__tests/AttributeValueScreen.js +29 -72
  166. package/Screens/AttributeValue/index.js +2 -8
  167. package/Screens/ChangePassword/Reducers/Actions.js +9 -30
  168. package/Screens/ChangePassword/Reducers/Reducer.js +8 -17
  169. package/Screens/ChangePassword/Screen.js +23 -60
  170. package/Screens/ChangePassword/index.js +2 -8
  171. package/Screens/Channel/Containers/Edit.js +7 -14
  172. package/Screens/Channel/Containers/List.js +2 -12
  173. package/Screens/Channel/Reducers/Actions.js +5 -13
  174. package/Screens/Channel/Reducers/Reducer.js +11 -17
  175. package/Screens/Channel/Screen.js +2 -14
  176. package/Screens/Channel/Translations.js +4 -2
  177. package/Screens/Channel/__tests/ChannelScreen.js +31 -75
  178. package/Screens/Channel/index.js +2 -8
  179. package/Screens/Client/Components/ColorTextField.js +14 -39
  180. package/Screens/Client/Components/PdfMarkdownField.js +22 -50
  181. package/Screens/Client/Containers/Edit.js +39 -33
  182. package/Screens/Client/Containers/List.js +7 -17
  183. package/Screens/Client/Reducers/Actions.js +19 -50
  184. package/Screens/Client/Reducers/Reducer.js +11 -20
  185. package/Screens/Client/Screen.js +4 -18
  186. package/Screens/Client/Translations.js +16 -2
  187. package/Screens/Client/index.js +2 -8
  188. package/Screens/ColorPalettes/Components/DefaultColorSwitch.js +12 -54
  189. package/Screens/ColorPalettes/Containers/Edit.js +14 -29
  190. package/Screens/ColorPalettes/Containers/List.js +7 -19
  191. package/Screens/ColorPalettes/Reducers/Actions.js +6 -15
  192. package/Screens/ColorPalettes/Reducers/Reducer.js +12 -16
  193. package/Screens/ColorPalettes/Screen.js +4 -18
  194. package/Screens/ColorPalettes/Translations.js +2 -0
  195. package/Screens/ColorPalettes/index.js +2 -8
  196. package/Screens/ConfigurationTypeEditor/Containers/Edit.js +14 -29
  197. package/Screens/ConfigurationTypeEditor/Containers/List.js +3 -15
  198. package/Screens/ConfigurationTypeEditor/Reducers/Actions.js +27 -68
  199. package/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +12 -37
  200. package/Screens/ConfigurationTypeEditor/Screen.js +19 -55
  201. package/Screens/ConfigurationVariants/Containers/Edit.js +16 -31
  202. package/Screens/ConfigurationVariants/Containers/List.js +2 -12
  203. package/Screens/ConfigurationVariants/Reducers/Actions.js +8 -19
  204. package/Screens/ConfigurationVariants/Reducers/Reducer.js +13 -19
  205. package/Screens/ConfigurationVariants/Screen.js +2 -14
  206. package/Screens/ConfigurationVariants/Translations.js +4 -2
  207. package/Screens/ConfigurationVariants/index.js +2 -8
  208. package/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +13 -28
  209. package/Screens/ConfigurationWorkflowStatus/Containers/List.js +20 -72
  210. package/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +20 -51
  211. package/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +9 -28
  212. package/Screens/ConfigurationWorkflowStatus/Screen.js +13 -42
  213. package/Screens/ConfigurationWorkflowStatus/index.js +2 -9
  214. package/Screens/ConfigurationWorkflowStatus/initServices.js +1 -4
  215. package/Screens/Creator/Components/BaseConfigurationEditor.js +18 -74
  216. package/Screens/Creator/Components/CheckData/ApiCalls.js +17 -27
  217. package/Screens/Creator/Components/CheckData/CheckData.js +81 -135
  218. package/Screens/Creator/Components/CheckData/Constants.js +27 -51
  219. package/Screens/Creator/Components/CheckData/Translations.js +4 -4
  220. package/Screens/Creator/Components/ComponentEditor.js +58 -107
  221. package/Screens/Creator/Components/ConfiguratorQuickView.js +9 -26
  222. package/Screens/Creator/Components/OptionPriceEditor.js +12 -34
  223. package/Screens/Creator/Components/OptionclassificationEditor.js +40 -165
  224. package/Screens/Creator/Components/Rules/Containers/Edit.js +26 -82
  225. package/Screens/Creator/Components/Rules/Containers/List.js +4 -17
  226. package/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +12 -40
  227. package/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +12 -40
  228. package/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +12 -40
  229. package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +12 -40
  230. package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +12 -37
  231. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +12 -38
  232. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +12 -38
  233. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +12 -40
  234. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +12 -40
  235. package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +12 -38
  236. package/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +22 -76
  237. package/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +2 -15
  238. package/Screens/Creator/Components/Rules/index.js +11 -41
  239. package/Screens/Creator/Components/ShowPreviewErrorDialog.js +5 -16
  240. package/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +16 -26
  241. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +7 -19
  242. package/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +15 -44
  243. package/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +11 -30
  244. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +112 -177
  245. package/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +11 -31
  246. package/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +16 -43
  247. package/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +4 -4
  248. package/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +319 -449
  249. package/Screens/Creator/Components/VisualizationAndMediaData/dev.js +26 -63
  250. package/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -2
  251. package/Screens/Creator/Containers/Edit.js +21 -120
  252. package/Screens/Creator/Containers/List.js +6 -14
  253. package/Screens/Creator/Reducers/Actions.js +13 -23
  254. package/Screens/Creator/Reducers/ConfigurationActions.js +205 -345
  255. package/Screens/Creator/Reducers/ConfigurationReducer.js +27 -88
  256. package/Screens/Creator/Reducers/CreatorReducer.js +8 -15
  257. package/Screens/Creator/Reducers/Rules/Actions.js +26 -63
  258. package/Screens/Creator/Reducers/Rules/Reducer.js +9 -27
  259. package/Screens/Creator/Screen.js +2 -15
  260. package/Screens/Creator/Translations.js +3 -3
  261. package/Screens/Creator/index.js +2 -10
  262. package/Screens/CurrentClient/Containers/Edit.js +24 -20
  263. package/Screens/CurrentClient/Reducers/Actions.js +11 -20
  264. package/Screens/CurrentClient/Reducers/Reducer.js +10 -14
  265. package/Screens/CurrentClient/Screen.js +1 -6
  266. package/Screens/CurrentClient/Translations.js +12 -2
  267. package/Screens/CurrentClient/index.js +2 -8
  268. package/Screens/Dashboard/Screen.js +2 -18
  269. package/Screens/DefaultClient/Containers/Edit.js +29 -21
  270. package/Screens/DefaultClient/Reducers/Actions.js +11 -20
  271. package/Screens/DefaultClient/Reducers/Reducer.js +11 -14
  272. package/Screens/DefaultClient/Screen.js +1 -6
  273. package/Screens/DefaultClient/Translations.js +14 -2
  274. package/Screens/DefaultClient/index.js +2 -8
  275. package/Screens/Demo/Screen.js +13 -44
  276. package/Screens/Demo/index.js +2 -6
  277. package/Screens/DesignProductionMethods/Containers/Edit.js +27 -36
  278. package/Screens/DesignProductionMethods/Containers/List.js +3 -15
  279. package/Screens/DesignProductionMethods/Reducers/Actions.js +12 -21
  280. package/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +12 -16
  281. package/Screens/DesignProductionMethods/Screen.js +2 -15
  282. package/Screens/DesignProductionMethods/Translations.js +6 -0
  283. package/Screens/DesignProductionMethods/index.js +2 -8
  284. package/Screens/DesignTemplateEditor/Containers/List.js +4 -17
  285. package/Screens/DesignTemplateEditor/Reducers/Actions.js +1 -6
  286. package/Screens/DesignTemplateEditor/Reducers/Reducer.js +2 -8
  287. package/Screens/DesignTemplateEditor/Screen.js +1 -10
  288. package/Screens/DesignTemplateEditor/index.js +2 -8
  289. package/Screens/Designer/Components/ConfiguratorQuickView.js +9 -26
  290. package/Screens/Designer/Components/DesignDataTransfer.js +102 -181
  291. package/Screens/Designer/Components/TemplateDefaultList.js +31 -114
  292. package/Screens/Designer/Components/TemplateList.js +18 -78
  293. package/Screens/Designer/Containers/Edit.js +32 -98
  294. package/Screens/Designer/Containers/List.js +6 -14
  295. package/Screens/Designer/Containers/TemplateList.js +2 -11
  296. package/Screens/Designer/Reducers/Actions.js +16 -29
  297. package/Screens/Designer/Reducers/DesignerReducer.js +9 -16
  298. package/Screens/Designer/Screen.js +2 -14
  299. package/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +23 -78
  300. package/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +32 -101
  301. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +7 -18
  302. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +56 -83
  303. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +73 -147
  304. package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +43 -73
  305. package/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +22 -41
  306. package/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +13 -40
  307. package/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +38 -201
  308. package/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +5 -18
  309. package/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +23 -56
  310. package/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +14 -29
  311. package/Screens/Designer/SubScreens/DesignAreas/Screen.js +2 -17
  312. package/Screens/Designer/SubScreens/DesignAreas/Translations.js +2 -0
  313. package/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +2 -7
  314. package/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +6 -11
  315. package/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +2 -3
  316. package/Screens/Designer/SubScreens/DesignAreas/index.js +1 -7
  317. package/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +29 -51
  318. package/Screens/Designer/SubScreens/Designviews/Containers/List.js +5 -18
  319. package/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +45 -95
  320. package/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +20 -37
  321. package/Screens/Designer/SubScreens/Designviews/Screen.js +2 -16
  322. package/Screens/Designer/SubScreens/Designviews/Translations.js +2 -0
  323. package/Screens/Designer/SubScreens/Designviews/index.js +1 -7
  324. package/Screens/Designer/SubScreens/Visualization/ApiCalls.js +34 -52
  325. package/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +38 -66
  326. package/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +110 -188
  327. package/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +18 -56
  328. package/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +8 -25
  329. package/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +17 -55
  330. package/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +644 -671
  331. package/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +16 -56
  332. package/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +1 -1
  333. package/Screens/Designer/SubScreens/Visualization/Components/resources/point.svg +1 -0
  334. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +1 -1
  335. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +1 -1
  336. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +1 -1
  337. package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +1 -1
  338. package/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +1 -1
  339. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +3 -6
  340. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +20 -48
  341. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +259 -446
  342. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +65 -90
  343. package/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +20 -32
  344. package/Screens/Designer/SubScreens/Visualization/Containers/List.js +18 -66
  345. package/Screens/Designer/SubScreens/Visualization/Screen.js +6 -20
  346. package/Screens/Designer/SubScreens/Visualization/Translations.js +4 -2
  347. package/Screens/Designer/SubScreens/Visualization/index.js +1 -5
  348. package/Screens/Designer/index.js +2 -8
  349. package/Screens/DesignerGlobalItemPrices/Containers/Edit.js +8 -24
  350. package/Screens/DesignerGlobalItemPrices/Containers/List.js +9 -17
  351. package/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +13 -23
  352. package/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +12 -16
  353. package/Screens/DesignerGlobalItemPrices/Screen.js +2 -16
  354. package/Screens/DesignerGlobalItemPrices/index.js +2 -8
  355. package/Screens/Finder/Containers/Edit.js +7 -13
  356. package/Screens/Finder/Containers/List.js +2 -12
  357. package/Screens/Finder/Reducers/Actions.js +68 -96
  358. package/Screens/Finder/Reducers/FinderReducer.js +12 -16
  359. package/Screens/Finder/Screen.js +4 -17
  360. package/Screens/Finder/Translations.js +4 -2
  361. package/Screens/Finder/index.js +2 -8
  362. package/Screens/Font/Containers/Edit.js +11 -13
  363. package/Screens/Font/Containers/List.js +12 -26
  364. package/Screens/Font/Reducers/Actions.js +7 -30
  365. package/Screens/Font/Reducers/Reducer.js +12 -21
  366. package/Screens/Font/Screen.js +4 -18
  367. package/Screens/Font/Translations.js +4 -2
  368. package/Screens/Font/index.js +2 -8
  369. package/Screens/Group/Containers/Edit.js +7 -13
  370. package/Screens/Group/Containers/List.js +7 -17
  371. package/Screens/Group/Reducers/Actions.js +9 -19
  372. package/Screens/Group/Reducers/Reducer.js +13 -17
  373. package/Screens/Group/Screen.js +4 -18
  374. package/Screens/Group/Translations.js +4 -2
  375. package/Screens/Group/index.js +2 -8
  376. package/Screens/GroupEntry/Containers/Edit.js +12 -20
  377. package/Screens/GroupEntry/Containers/List.js +7 -17
  378. package/Screens/GroupEntry/Reducers/Actions.js +8 -17
  379. package/Screens/GroupEntry/Reducers/Reducer.js +13 -17
  380. package/Screens/GroupEntry/Screen.js +4 -18
  381. package/Screens/GroupEntry/Translations.js +4 -2
  382. package/Screens/GroupEntry/index.js +2 -8
  383. package/Screens/ImageGallery/Containers/Edit.js +28 -52
  384. package/Screens/ImageGallery/Containers/List.js +56 -117
  385. package/Screens/ImageGallery/ImageTags/Actions.js +4 -18
  386. package/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +1 -8
  387. package/Screens/ImageGallery/ImageTags/Editor.js +7 -14
  388. package/Screens/ImageGallery/ImageTags/Reducer.js +5 -3
  389. package/Screens/ImageGallery/ImageTags/TagsActions.js +16 -35
  390. package/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +11 -40
  391. package/Screens/ImageGallery/Reducers/Actions.js +14 -37
  392. package/Screens/ImageGallery/Reducers/Reducer.js +12 -21
  393. package/Screens/ImageGallery/Screen.js +4 -18
  394. package/Screens/ImageGallery/Translations.js +4 -2
  395. package/Screens/ImageGallery/index.js +2 -8
  396. package/Screens/ImageGallery/res/checkers_tile.png +0 -0
  397. package/Screens/Inspirations/Containers/Edit.js +20 -43
  398. package/Screens/Inspirations/Containers/InspirationsSubscreen.js +2 -16
  399. package/Screens/Inspirations/Containers/ItemInspirationsList.js +6 -14
  400. package/Screens/Inspirations/Containers/List.js +3 -14
  401. package/Screens/Inspirations/Reducers/Actions.js +31 -65
  402. package/Screens/Inspirations/Reducers/ItemInspirationsActions.js +9 -16
  403. package/Screens/Inspirations/Reducers/Reducer.js +13 -23
  404. package/Screens/Inspirations/Screen.js +14 -47
  405. package/Screens/Inspirations/Translations.js +6 -2
  406. package/Screens/Inspirations/index.js +2 -8
  407. package/Screens/Item/ApiCalls.js +18 -27
  408. package/Screens/Item/Components/AttributeEditorPopup.js +13 -46
  409. package/Screens/Item/Components/ConfiguratorQuickView.js +12 -29
  410. package/Screens/Item/Components/CopyCreatorItemDialog.js +51 -107
  411. package/Screens/Item/Components/ListItemStatusEditor.js +43 -89
  412. package/Screens/Item/Components/Styles.scss +5 -1
  413. package/Screens/Item/Components/Variants/VariantsAutocomplete.js +147 -248
  414. package/Screens/Item/Components/Variants/VariantsEditor.js +45 -164
  415. package/Screens/Item/Components/Variants/VariantsEditorDialog.js +20 -52
  416. package/Screens/Item/Components/Variants/VariantsEditorPopup.js +26 -67
  417. package/Screens/Item/Components/Variants/VariantsSelection.js +21 -59
  418. package/Screens/Item/Components/Variants/VariantsSortFilter.js +17 -69
  419. package/Screens/Item/Containers/Edit.js +92 -165
  420. package/Screens/Item/Containers/List.js +12 -39
  421. package/Screens/Item/DataStructures/Attributes/Actions.js +3 -19
  422. package/Screens/Item/DataStructures/Attributes/Editor.js +14 -24
  423. package/Screens/Item/DataStructures/Attributes/Reducer.js +5 -4
  424. package/Screens/Item/Reducers/Actions.js +15 -41
  425. package/Screens/Item/Reducers/ItemReducer.js +12 -19
  426. package/Screens/Item/Reducers/Variant/Actions.js +6 -14
  427. package/Screens/Item/Reducers/Variant/Reducer.js +12 -21
  428. package/Screens/Item/Screen.js +2 -14
  429. package/Screens/Item/Translations.js +6 -2
  430. package/Screens/Item/index.js +2 -10
  431. package/Screens/Itemclassification/Containers/Edit.js +9 -24
  432. package/Screens/Itemclassification/Containers/List.js +10 -23
  433. package/Screens/Itemclassification/Reducers/Actions.js +9 -20
  434. package/Screens/Itemclassification/Reducers/Reducer.js +12 -18
  435. package/Screens/Itemclassification/Screen.js +4 -17
  436. package/Screens/Itemclassification/Translations.js +4 -2
  437. package/Screens/Itemclassification/index.js +2 -8
  438. package/Screens/License/Reducers/Actions.js +6 -20
  439. package/Screens/License/Reducers/Reducer.js +9 -19
  440. package/Screens/License/Screen.js +10 -40
  441. package/Screens/License/index.js +2 -8
  442. package/Screens/Login/Reducers/Actions.js +11 -43
  443. package/Screens/Login/Reducers/Listener.js +7 -11
  444. package/Screens/Login/Reducers/Reducer.js +12 -29
  445. package/Screens/Login/Screen.js +27 -69
  446. package/Screens/Login/__tests/LoginScreen.js +17 -63
  447. package/Screens/Option/Containers/Edit.js +18 -32
  448. package/Screens/Option/Containers/List.js +7 -21
  449. package/Screens/Option/Reducers/Actions.js +7 -17
  450. package/Screens/Option/Reducers/Reducer.js +12 -21
  451. package/Screens/Option/Screen.js +2 -14
  452. package/Screens/Option/Translations.js +6 -2
  453. package/Screens/Option/index.js +2 -8
  454. package/Screens/OptionPools/Containers/Edit.js +15 -21
  455. package/Screens/OptionPools/Containers/List.js +2 -12
  456. package/Screens/OptionPools/Reducers/Actions.js +8 -19
  457. package/Screens/OptionPools/Reducers/Reducer.js +14 -19
  458. package/Screens/OptionPools/Screen.js +2 -14
  459. package/Screens/OptionPools/Translations.js +6 -2
  460. package/Screens/OptionPools/index.js +2 -8
  461. package/Screens/Optionclassification/Containers/Edit.js +27 -40
  462. package/Screens/Optionclassification/Containers/List.js +10 -23
  463. package/Screens/Optionclassification/Reducers/Actions.js +7 -17
  464. package/Screens/Optionclassification/Reducers/Reducer.js +12 -18
  465. package/Screens/Optionclassification/Screen.js +4 -18
  466. package/Screens/Optionclassification/Translations.js +6 -2
  467. package/Screens/Optionclassification/index.js +2 -8
  468. package/Screens/PriceTypes/Containers/Edit.js +15 -21
  469. package/Screens/PriceTypes/Containers/List.js +7 -19
  470. package/Screens/PriceTypes/Reducers/Actions.js +6 -15
  471. package/Screens/PriceTypes/Reducers/Reducer.js +12 -16
  472. package/Screens/PriceTypes/Screen.js +4 -17
  473. package/Screens/PriceTypes/Translations.js +6 -2
  474. package/Screens/PriceTypes/index.js +2 -8
  475. package/Screens/ProductionView/Components/ConfigurationDataSheet.js +19 -49
  476. package/Screens/ProductionView/Containers/Edit.js +6 -16
  477. package/Screens/ProductionView/Containers/List.js +14 -48
  478. package/Screens/ProductionView/Reducers/Actions.js +13 -23
  479. package/Screens/ProductionView/Reducers/Reducer.js +12 -16
  480. package/Screens/ProductionView/Screen.js +3 -20
  481. package/Screens/ProductionView/Translations.js +4 -2
  482. package/Screens/ProductionView/index.js +2 -8
  483. package/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +47 -69
  484. package/Screens/ReceiveOfferRequests/Containers/Edit.js +6 -16
  485. package/Screens/ReceiveOfferRequests/Containers/List.js +16 -47
  486. package/Screens/ReceiveOfferRequests/Reducers/Actions.js +13 -23
  487. package/Screens/ReceiveOfferRequests/Reducers/Reducer.js +11 -15
  488. package/Screens/ReceiveOfferRequests/Screen.js +4 -20
  489. package/Screens/ReceiveOfferRequests/Translations.js +10 -0
  490. package/Screens/ReceiveOfferRequests/index.js +2 -8
  491. package/Screens/Roles/Containers/Edit.js +12 -19
  492. package/Screens/Roles/Containers/List.js +7 -17
  493. package/Screens/Roles/Reducers/Actions.js +12 -21
  494. package/Screens/Roles/Reducers/Reducer.js +11 -15
  495. package/Screens/Roles/Screen.js +4 -17
  496. package/Screens/Roles/Translations.js +2 -0
  497. package/Screens/Roles/index.js +2 -8
  498. package/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +51 -74
  499. package/Screens/Savedconfigurations/Containers/Edit.js +6 -16
  500. package/Screens/Savedconfigurations/Containers/List.js +16 -63
  501. package/Screens/Savedconfigurations/Reducers/Actions.js +12 -21
  502. package/Screens/Savedconfigurations/Reducers/Reducer.js +11 -15
  503. package/Screens/Savedconfigurations/Screen.js +3 -20
  504. package/Screens/Savedconfigurations/Translations.js +2 -0
  505. package/Screens/Savedconfigurations/index.js +2 -8
  506. package/Screens/Setting/Containers/Edit.js +18 -43
  507. package/Screens/Setting/Reducers/Actions.js +23 -46
  508. package/Screens/Setting/Reducers/Reducer.js +12 -16
  509. package/Screens/Setting/Screen.js +1 -10
  510. package/Screens/Setting/Translations.js +2 -0
  511. package/Screens/Setting/index.js +2 -8
  512. package/Screens/SoftwareUpdates/Reducers/Actions.js +5 -13
  513. package/Screens/SoftwareUpdates/Reducers/Reducer.js +9 -20
  514. package/Screens/SoftwareUpdates/Screen.js +5 -26
  515. package/Screens/SoftwareUpdates/index.js +2 -8
  516. package/Screens/Tag/Containers/Edit.js +5 -8
  517. package/Screens/Tag/Containers/List.js +6 -17
  518. package/Screens/Tag/Reducers/Actions.js +16 -35
  519. package/Screens/Tag/Reducers/Reducer.js +12 -16
  520. package/Screens/Tag/Screen.js +1 -11
  521. package/Screens/Tag/Translations.js +4 -2
  522. package/Screens/Tag/index.js +2 -8
  523. package/Screens/TrackingCodes/Containers/Edit.js +6 -12
  524. package/Screens/TrackingCodes/Containers/List.js +2 -12
  525. package/Screens/TrackingCodes/Reducers/Actions.js +16 -34
  526. package/Screens/TrackingCodes/Reducers/Reducer.js +11 -18
  527. package/Screens/TrackingCodes/Screen.js +2 -14
  528. package/Screens/TrackingCodes/Translations.js +4 -2
  529. package/Screens/TrackingCodes/index.js +2 -8
  530. package/Screens/TranslationFileHandling/Containers/Edit.js +126 -161
  531. package/Screens/TranslationFileHandling/Containers/List.js +7 -16
  532. package/Screens/TranslationFileHandling/Reducers/Actions.js +6 -15
  533. package/Screens/TranslationFileHandling/Reducers/Reducer.js +12 -16
  534. package/Screens/TranslationFileHandling/Screen.js +4 -17
  535. package/Screens/TranslationFileHandling/Translations.js +4 -2
  536. package/Screens/TranslationFileHandling/index.js +2 -8
  537. package/Screens/User/Containers/Edit.js +9 -9
  538. package/Screens/User/Containers/List.js +13 -8
  539. package/Screens/User/Reducers/Actions.js +16 -33
  540. package/Screens/User/Reducers/Reducer.js +12 -16
  541. package/Screens/User/Screen.js +1 -11
  542. package/Screens/User/Translations.js +3 -1
  543. package/Screens/User/__tests/UserScreen.js +31 -75
  544. package/Screens/User/index.js +2 -8
  545. package/Screens/index.js +4 -62
  546. package/UIComponents/AppBar.js +1 -5
  547. package/UIComponents/AutoComplete.js +49 -110
  548. package/UIComponents/Button.js +1 -5
  549. package/UIComponents/ButtonBase.js +1 -5
  550. package/UIComponents/Checkbox.js +1 -5
  551. package/UIComponents/Chip.js +1 -5
  552. package/UIComponents/ChipInput.js +40 -98
  553. package/UIComponents/CircularProgress.js +2 -5
  554. package/UIComponents/ClickAwayListener.js +1 -5
  555. package/UIComponents/Collapse.js +1 -5
  556. package/UIComponents/DatePicker.js +4 -20
  557. package/UIComponents/DateTimePicker.js +4 -20
  558. package/UIComponents/Dialog.js +8 -27
  559. package/UIComponents/Drawer.js +1 -5
  560. package/UIComponents/FlatButton.js +6 -22
  561. package/UIComponents/FloatingActionButton.js +3 -10
  562. package/UIComponents/FontIcon.js +1 -5
  563. package/UIComponents/FormControl.js +1 -5
  564. package/UIComponents/FormControlLabel.js +1 -5
  565. package/UIComponents/Grow.js +1 -5
  566. package/UIComponents/IconButton.js +1 -5
  567. package/UIComponents/IconMenu.js +22 -70
  568. package/UIComponents/InlineHelp/index.js +14 -42
  569. package/UIComponents/Input.js +1 -5
  570. package/UIComponents/InputAdornment.js +1 -5
  571. package/UIComponents/InputLabel.js +1 -5
  572. package/UIComponents/LinearProgress.js +1 -5
  573. package/UIComponents/Link.js +3 -14
  574. package/UIComponents/List.js +1 -5
  575. package/UIComponents/ListItem.js +1 -5
  576. package/UIComponents/ListItemIcon.js +1 -5
  577. package/UIComponents/ListItemText.js +1 -5
  578. package/UIComponents/Menu.js +1 -5
  579. package/UIComponents/MenuItem.js +1 -5
  580. package/UIComponents/MenuList.js +1 -5
  581. package/UIComponents/Pagination.js +20 -64
  582. package/UIComponents/Paper.js +1 -5
  583. package/UIComponents/Popper.js +1 -5
  584. package/UIComponents/RadioButton/RadioButton.js +1 -5
  585. package/UIComponents/RadioButton/RadioGroup.js +1 -5
  586. package/UIComponents/RadioButton/index.js +0 -3
  587. package/UIComponents/RaisedButton.js +7 -21
  588. package/UIComponents/SelectField.js +25 -53
  589. package/UIComponents/Snackbar.js +1 -5
  590. package/UIComponents/Table/Table.js +18 -67
  591. package/UIComponents/Table/TableBody.js +15 -43
  592. package/UIComponents/Table/TableCell.js +1 -5
  593. package/UIComponents/Table/TableFooter.js +1 -5
  594. package/UIComponents/Table/TableHead.js +15 -45
  595. package/UIComponents/Table/TableHeadColumn.js +1 -5
  596. package/UIComponents/Table/TableRow.js +15 -41
  597. package/UIComponents/Table/TableRowColumn.js +1 -5
  598. package/UIComponents/Table/index.js +0 -8
  599. package/UIComponents/TableSortLabel.js +1 -5
  600. package/UIComponents/Tabs/Tab.js +1 -5
  601. package/UIComponents/Tabs/Tabs.js +1 -5
  602. package/UIComponents/Tabs/index.js +4 -7
  603. package/UIComponents/TextField.js +1 -5
  604. package/UIComponents/TimePicker.js +6 -22
  605. package/UIComponents/Toggle.js +1 -5
  606. package/UIComponents/Toolbar.js +1 -5
  607. package/UIComponents/Tooltip.js +1 -7
  608. package/UIComponents/Typography.js +1 -5
  609. package/UIComponents/icons/AccountCircleIcon.js +1 -5
  610. package/UIComponents/icons/AddCircleOutlineIcon.js +1 -5
  611. package/UIComponents/icons/AddIcon.js +1 -5
  612. package/UIComponents/icons/ArrowBackIcon.js +1 -5
  613. package/UIComponents/icons/CheckmarkIcon.js +1 -5
  614. package/UIComponents/icons/CloseIcon.js +1 -5
  615. package/UIComponents/icons/DeleteForeverIcon.js +1 -5
  616. package/UIComponents/icons/DeleteIcon.js +1 -5
  617. package/UIComponents/icons/ErrorIcon.js +1 -5
  618. package/UIComponents/icons/ExpandLessIcon.js +1 -5
  619. package/UIComponents/icons/ExpandMoreIcon.js +1 -5
  620. package/UIComponents/icons/FolderIcon.js +1 -5
  621. package/UIComponents/icons/ForwardIcon.js +1 -5
  622. package/UIComponents/icons/InfoIcon.js +1 -5
  623. package/UIComponents/icons/InfoOutlineIcon.js +1 -5
  624. package/UIComponents/icons/LanguageIcon.js +1 -5
  625. package/UIComponents/icons/LaunchIcon.js +1 -5
  626. package/UIComponents/icons/MenuIcon.js +1 -5
  627. package/UIComponents/icons/PriceIcon.js +1 -5
  628. package/UIComponents/icons/ReorderIcon.js +1 -5
  629. package/UIComponents/icons/SearchIcon.js +1 -5
  630. package/UIComponents/icons/SettingsIcon.js +1 -5
  631. package/UIComponents/icons/SortIcon.js +1 -5
  632. package/UIComponents/icons/TranslateIcon.js +1 -5
  633. package/UIComponents/icons/UpdateIcon.js +1 -5
  634. package/UIComponents/icons/ViewListIcon.js +1 -5
  635. package/UIComponents/icons/ZoomResetIcon.js +1 -5
  636. package/Utils/Async/Deferred.js +11 -40
  637. package/Utils/Async/newestRequest.js +30 -42
  638. package/Utils/Decorators/Observable.js +10 -30
  639. package/Utils/Dev/RequestApiToken.js +4 -13
  640. package/Utils/Dev/withStateProps.js +9 -24
  641. package/Utils/Error/createError.js +3 -11
  642. package/Utils/Events/pointerEvent.js +7 -30
  643. package/Utils/FunDraw/createMask.js +70 -85
  644. package/Utils/FunDraw/funDraw.js +201 -333
  645. package/Utils/FunDraw/movableObject.js +89 -127
  646. package/Utils/Function/sendMessage.js +3 -8
  647. package/Utils/HOCs/AsyncProps.js +44 -69
  648. package/Utils/HOCs/LocalState.js +18 -48
  649. package/Utils/HOCs/RemappedProps.js +3 -9
  650. package/Utils/Request/lazyFetch.js +56 -84
  651. package/Utils/Request/pathParams.js +2 -7
  652. package/Utils/Test/provideStore.js +1 -9
  653. package/Utils/Test/wrapperSelectors.js +4 -10
  654. package/default.js +0 -7
  655. package/dev.js +2 -11
  656. package/index.js +1 -4
  657. package/package.json +28 -25
  658. package/scripts/getDefaultBabelConfig.js +12 -8
  659. package/scripts/getDefaultWebpackConfig.js +54 -29
  660. package/src/App/Api.js +0 -196
  661. package/src/App/Config/app.js +0 -57
  662. package/src/App/Config/defaultConfig.js +0 -183
  663. package/src/App/Config/icons.js +0 -17
  664. package/src/App/Config/network.js +0 -19
  665. package/src/App/Data.js +0 -351
  666. package/src/App/Entity.js +0 -93
  667. package/src/App/ErrorBoundary.js +0 -67
  668. package/src/App/FeatureReducers.js +0 -36
  669. package/src/App/Frame.js +0 -125
  670. package/src/App/Listeners.js +0 -20
  671. package/src/App/Main.js +0 -185
  672. package/src/App/Reducers/Api/Actions.js +0 -177
  673. package/src/App/Reducers/Api/Helpers.js +0 -66
  674. package/src/App/Reducers/Api/Reducer.js +0 -116
  675. package/src/App/Reducers/Common/Form/Actions.js +0 -6
  676. package/src/App/Reducers/Common/Form/Reducer.js +0 -48
  677. package/src/App/Reducers/Common/Language/Actions.js +0 -6
  678. package/src/App/Reducers/Common/Language/Reducer.js +0 -27
  679. package/src/App/Reducers/Common/OrderList/Actions.js +0 -45
  680. package/src/App/Reducers/Common/OrderList/Listener.js +0 -24
  681. package/src/App/Reducers/Common/OrderList/Reducer.js +0 -79
  682. package/src/App/Reducers/Common/index.js +0 -9
  683. package/src/App/Reducers/Config/Actions.js +0 -7
  684. package/src/App/Reducers/Config/Reducer.js +0 -20
  685. package/src/App/Reducers/Entity/Actions.js +0 -517
  686. package/src/App/Reducers/Entity/Reducer.js +0 -340
  687. package/src/App/Reducers/Frame/Actions.js +0 -19
  688. package/src/App/Reducers/Frame/Reducer.js +0 -115
  689. package/src/App/Reducers/index.js +0 -32
  690. package/src/App/ReduxListener.js +0 -38
  691. package/src/App/ReduxPersistLoader.js +0 -12
  692. package/src/App/Routes.js +0 -41
  693. package/src/App/Selectors/Credentials/hasCredentialFor.js +0 -4
  694. package/src/App/Selectors/Credentials/hasCredentialFor.test.js +0 -17
  695. package/src/App/Services/ElementRef.js +0 -13
  696. package/src/App/Services/WindowCommunication.js +0 -33
  697. package/src/App/Services/index.js +0 -5
  698. package/src/App/Store.js +0 -71
  699. package/src/App/Styles.scss +0 -185
  700. package/src/App/TestHelpers.js +0 -59
  701. package/src/App/ThemeProvider.js +0 -56
  702. package/src/App/Translations.js +0 -174
  703. package/src/App/Utils.js +0 -20
  704. package/src/App/customSetup.js +0 -3
  705. package/src/App/i18n.js +0 -215
  706. package/src/App/index.js +0 -27
  707. package/src/App/initServices.js +0 -47
  708. package/src/App/setup.js +0 -18
  709. package/src/AppContainer.js +0 -11
  710. package/src/Components/AddButton.js +0 -15
  711. package/src/Components/AppBar.js +0 -64
  712. package/src/Components/CallToActionField.js +0 -95
  713. package/src/Components/CopyPaste.js +0 -55
  714. package/src/Components/DefaultConnectedForm.js +0 -85
  715. package/src/Components/DefaultConnectedList.js +0 -146
  716. package/src/Components/DefaultConnectedScreen.js +0 -66
  717. package/src/Components/DefaultForm.js +0 -40
  718. package/src/Components/DefaultList.js +0 -225
  719. package/src/Components/DefaultScreen.js +0 -106
  720. package/src/Components/Error.js +0 -20
  721. package/src/Components/Form.js +0 -270
  722. package/src/Components/FormFragments/AttributeValueChip.js +0 -140
  723. package/src/Components/FormFragments/AutoComplete.js +0 -184
  724. package/src/Components/FormFragments/AutocompleteEntity.js +0 -206
  725. package/src/Components/FormFragments/Checkbox.js +0 -26
  726. package/src/Components/FormFragments/Chip.js +0 -126
  727. package/src/Components/FormFragments/DatePicker.js +0 -15
  728. package/src/Components/FormFragments/DateTimePicker.js +0 -21
  729. package/src/Components/FormFragments/DynSourceInput.js +0 -128
  730. package/src/Components/FormFragments/ErrorWrapper.js +0 -15
  731. package/src/Components/FormFragments/File.js +0 -202
  732. package/src/Components/FormFragments/HintText.js +0 -14
  733. package/src/Components/FormFragments/InlineAddButton.js +0 -109
  734. package/src/Components/FormFragments/InputArray.js +0 -246
  735. package/src/Components/FormFragments/InputGroup.js +0 -46
  736. package/src/Components/FormFragments/InputWithSource.js +0 -49
  737. package/src/Components/FormFragments/IntlInput.js +0 -98
  738. package/src/Components/FormFragments/Label.js +0 -15
  739. package/src/Components/FormFragments/MarkDown.js +0 -128
  740. package/src/Components/FormFragments/MonacoEditor.js +0 -75
  741. package/src/Components/FormFragments/NestedDataComponent.js +0 -144
  742. package/src/Components/FormFragments/ObjectToggle.js +0 -75
  743. package/src/Components/FormFragments/RadioGroup.js +0 -31
  744. package/src/Components/FormFragments/Select.js +0 -51
  745. package/src/Components/FormFragments/SetInput.js +0 -67
  746. package/src/Components/FormFragments/SimpleNestedData.js +0 -28
  747. package/src/Components/FormFragments/SimpleTable.js +0 -224
  748. package/src/Components/FormFragments/SimpleTextEditor.js +0 -26
  749. package/src/Components/FormFragments/Styles.scss +0 -119
  750. package/src/Components/FormFragments/Tabs.js +0 -207
  751. package/src/Components/FormFragments/Text.js +0 -36
  752. package/src/Components/FormFragments/TimePicker.js +0 -16
  753. package/src/Components/FormFragments/Toggle.js +0 -81
  754. package/src/Components/FormFragments/TwoSideSelect.js +0 -163
  755. package/src/Components/FormFragments/Value.js +0 -33
  756. package/src/Components/FormFragments/index.js +0 -48
  757. package/src/Components/FormFragments/styles.js +0 -24
  758. package/src/Components/FormHooks/useDataSchema.js +0 -33
  759. package/src/Components/GeneralFragments/Box.js +0 -12
  760. package/src/Components/GeneralFragments/ConfigurationEditor.js +0 -111
  761. package/src/Components/GeneralFragments/ConfiguratorOverlay.js +0 -56
  762. package/src/Components/GeneralFragments/Content.js +0 -12
  763. package/src/Components/GeneralFragments/Headline.js +0 -16
  764. package/src/Components/GeneralFragments/Image.js +0 -25
  765. package/src/Components/GeneralFragments/MiniPopup.js +0 -105
  766. package/src/Components/GeneralFragments/Styles.scss +0 -8
  767. package/src/Components/GeneralFragments/index.js +0 -13
  768. package/src/Components/InputHelpers.js +0 -7
  769. package/src/Components/Join.js +0 -14
  770. package/src/Components/LicenseInfo.js +0 -86
  771. package/src/Components/List.js +0 -355
  772. package/src/Components/ListColumnFilter.js +0 -200
  773. package/src/Components/LocaleSwitch.js +0 -39
  774. package/src/Components/LocalizedPriceTextField.js +0 -74
  775. package/src/Components/LocalizedPriceValue.js +0 -20
  776. package/src/Components/Menu.js +0 -127
  777. package/src/Components/ModalContainer.js +0 -79
  778. package/src/Components/OrderList.js +0 -169
  779. package/src/Components/OverlayContainer.js +0 -22
  780. package/src/Components/Pagination.js +0 -90
  781. package/src/Components/ProfileButton.js +0 -44
  782. package/src/Components/SearchBar.js +0 -105
  783. package/src/Components/SplitContainer.js +0 -40
  784. package/src/Components/Styles.scss +0 -114
  785. package/src/Components/TranslateComponent.js +0 -140
  786. package/src/Components/TranslationFinder.js +0 -30
  787. package/src/Components/Translations.js +0 -110
  788. package/src/Components/ValidatorCallbackProvider.js +0 -44
  789. package/src/Components/VersionBadge.js +0 -27
  790. package/src/Components/VersionUpdateChip.js +0 -30
  791. package/src/Components/__tests__/LicenseInfo.test.js +0 -22
  792. package/src/Components/__tests__/__snapshots__/LicenseInfo.test.js.snap +0 -39
  793. package/src/Components/withLoadAction.js +0 -15
  794. package/src/Components/withTranslationFinder.js +0 -17
  795. package/src/Screens/ApiKeys/Containers/Edit.js +0 -74
  796. package/src/Screens/ApiKeys/Containers/List.js +0 -49
  797. package/src/Screens/ApiKeys/Reducers/Actions.js +0 -21
  798. package/src/Screens/ApiKeys/Reducers/Reducer.js +0 -24
  799. package/src/Screens/ApiKeys/Screen.js +0 -19
  800. package/src/Screens/ApiKeys/Styles.scss +0 -3
  801. package/src/Screens/ApiKeys/Translations.js +0 -29
  802. package/src/Screens/ApiKeys/index.js +0 -10
  803. package/src/Screens/Assemblypointeditor/Components/AssemblypointTable.js +0 -94
  804. package/src/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +0 -703
  805. package/src/Screens/Assemblypointeditor/Components/Styles.scss +0 -58
  806. package/src/Screens/Assemblypointeditor/Components/fabric.min.js +0 -12282
  807. package/src/Screens/Assemblypointeditor/Containers/Edit.js +0 -57
  808. package/src/Screens/Assemblypointeditor/Containers/List.js +0 -48
  809. package/src/Screens/Assemblypointeditor/Reducers/Actions.js +0 -67
  810. package/src/Screens/Assemblypointeditor/Reducers/Reducer.js +0 -77
  811. package/src/Screens/Assemblypointeditor/Screen.js +0 -34
  812. package/src/Screens/Assemblypointeditor/Styles.scss +0 -38
  813. package/src/Screens/Assemblypointeditor/Translations.js +0 -11
  814. package/src/Screens/Assemblypointeditor/index.js +0 -9
  815. package/src/Screens/Attribute/Containers/Edit.js +0 -52
  816. package/src/Screens/Attribute/Containers/List.js +0 -53
  817. package/src/Screens/Attribute/Reducers/Actions.js +0 -25
  818. package/src/Screens/Attribute/Reducers/Reducer.js +0 -23
  819. package/src/Screens/Attribute/Screen.js +0 -24
  820. package/src/Screens/Attribute/Styles.scss +0 -0
  821. package/src/Screens/Attribute/Translations.js +0 -27
  822. package/src/Screens/Attribute/__tests/AttributeScreen.js +0 -348
  823. package/src/Screens/Attribute/index.js +0 -9
  824. package/src/Screens/AttributeValue/Containers/Edit.js +0 -37
  825. package/src/Screens/AttributeValue/Containers/List.js +0 -40
  826. package/src/Screens/AttributeValue/Reducers/Actions.js +0 -13
  827. package/src/Screens/AttributeValue/Reducers/Reducer.js +0 -24
  828. package/src/Screens/AttributeValue/Screen.js +0 -20
  829. package/src/Screens/AttributeValue/Styles.scss +0 -0
  830. package/src/Screens/AttributeValue/Translations.js +0 -18
  831. package/src/Screens/AttributeValue/__tests/AttributeValueScreen.js +0 -338
  832. package/src/Screens/AttributeValue/index.js +0 -9
  833. package/src/Screens/ChangePassword/Reducers/Actions.js +0 -45
  834. package/src/Screens/ChangePassword/Reducers/Reducer.js +0 -30
  835. package/src/Screens/ChangePassword/Screen.js +0 -185
  836. package/src/Screens/ChangePassword/Translations.js +0 -23
  837. package/src/Screens/ChangePassword/__tests__/ChangePasswordScreen.test.js +0 -15
  838. package/src/Screens/ChangePassword/__tests__/__snapshots__/ChangePasswordScreen.test.js.snap +0 -180
  839. package/src/Screens/ChangePassword/index.js +0 -9
  840. package/src/Screens/Channel/Containers/Edit.js +0 -58
  841. package/src/Screens/Channel/Containers/List.js +0 -29
  842. package/src/Screens/Channel/Reducers/Actions.js +0 -7
  843. package/src/Screens/Channel/Reducers/Reducer.js +0 -37
  844. package/src/Screens/Channel/Screen.js +0 -18
  845. package/src/Screens/Channel/Translations.js +0 -20
  846. package/src/Screens/Channel/__tests/ChannelScreen.js +0 -315
  847. package/src/Screens/Channel/index.js +0 -9
  848. package/src/Screens/Client/Components/ColorTextField.js +0 -74
  849. package/src/Screens/Client/Components/PdfMarkdownField.js +0 -127
  850. package/src/Screens/Client/Containers/Edit.js +0 -196
  851. package/src/Screens/Client/Containers/List.js +0 -36
  852. package/src/Screens/Client/Reducers/Actions.js +0 -74
  853. package/src/Screens/Client/Reducers/Reducer.js +0 -67
  854. package/src/Screens/Client/Screen.js +0 -20
  855. package/src/Screens/Client/Styles.scss +0 -3
  856. package/src/Screens/Client/Translations.js +0 -61
  857. package/src/Screens/Client/index.js +0 -9
  858. package/src/Screens/ColorPalettes/Components/DefaultColorSwitch.js +0 -61
  859. package/src/Screens/ColorPalettes/Containers/Edit.js +0 -121
  860. package/src/Screens/ColorPalettes/Containers/List.js +0 -41
  861. package/src/Screens/ColorPalettes/Reducers/Actions.js +0 -13
  862. package/src/Screens/ColorPalettes/Reducers/Reducer.js +0 -35
  863. package/src/Screens/ColorPalettes/Screen.js +0 -20
  864. package/src/Screens/ColorPalettes/Styles.scss +0 -0
  865. package/src/Screens/ColorPalettes/Translations.js +0 -25
  866. package/src/Screens/ColorPalettes/index.js +0 -9
  867. package/src/Screens/ConfigurationTypeEditor/Containers/Edit.js +0 -59
  868. package/src/Screens/ConfigurationTypeEditor/Containers/List.js +0 -55
  869. package/src/Screens/ConfigurationTypeEditor/Reducers/Actions.js +0 -78
  870. package/src/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +0 -106
  871. package/src/Screens/ConfigurationTypeEditor/Screen.js +0 -71
  872. package/src/Screens/ConfigurationTypeEditor/Styles.scss +0 -0
  873. package/src/Screens/ConfigurationTypeEditor/Translations.js +0 -15
  874. package/src/Screens/ConfigurationTypeEditor/index.js +0 -1
  875. package/src/Screens/ConfigurationVariants/Containers/Edit.js +0 -99
  876. package/src/Screens/ConfigurationVariants/Containers/List.js +0 -29
  877. package/src/Screens/ConfigurationVariants/Containers/Styles.scss +0 -13
  878. package/src/Screens/ConfigurationVariants/Reducers/Actions.js +0 -10
  879. package/src/Screens/ConfigurationVariants/Reducers/Reducer.js +0 -33
  880. package/src/Screens/ConfigurationVariants/Screen.js +0 -18
  881. package/src/Screens/ConfigurationVariants/Translations.js +0 -36
  882. package/src/Screens/ConfigurationVariants/index.js +0 -9
  883. package/src/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +0 -57
  884. package/src/Screens/ConfigurationWorkflowStatus/Containers/List.js +0 -170
  885. package/src/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +0 -82
  886. package/src/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +0 -97
  887. package/src/Screens/ConfigurationWorkflowStatus/Screen.js +0 -38
  888. package/src/Screens/ConfigurationWorkflowStatus/Styles.scss +0 -0
  889. package/src/Screens/ConfigurationWorkflowStatus/Translations.js +0 -51
  890. package/src/Screens/ConfigurationWorkflowStatus/index.js +0 -10
  891. package/src/Screens/ConfigurationWorkflowStatus/initServices.js +0 -7
  892. package/src/Screens/Creator/Components/BaseConfigurationEditor.js +0 -179
  893. package/src/Screens/Creator/Components/CheckData/ApiCalls.js +0 -5
  894. package/src/Screens/Creator/Components/CheckData/CheckData.js +0 -222
  895. package/src/Screens/Creator/Components/CheckData/Constants.js +0 -31
  896. package/src/Screens/Creator/Components/CheckData/Translations.js +0 -119
  897. package/src/Screens/Creator/Components/ComponentEditor.js +0 -155
  898. package/src/Screens/Creator/Components/ConfiguratorQuickView.js +0 -83
  899. package/src/Screens/Creator/Components/OptionPriceEditor.js +0 -120
  900. package/src/Screens/Creator/Components/OptionclassificationEditor.js +0 -483
  901. package/src/Screens/Creator/Components/Rules/Containers/Edit.js +0 -180
  902. package/src/Screens/Creator/Components/Rules/Containers/List.js +0 -42
  903. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +0 -37
  904. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +0 -43
  905. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +0 -31
  906. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +0 -35
  907. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +0 -34
  908. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +0 -35
  909. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +0 -34
  910. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +0 -37
  911. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +0 -36
  912. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +0 -34
  913. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +0 -155
  914. package/src/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +0 -23
  915. package/src/Screens/Creator/Components/Rules/Styles.scss +0 -38
  916. package/src/Screens/Creator/Components/Rules/Translations.js +0 -226
  917. package/src/Screens/Creator/Components/Rules/index.js +0 -26
  918. package/src/Screens/Creator/Components/ShowPreviewErrorDialog.js +0 -46
  919. package/src/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +0 -8
  920. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +0 -41
  921. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +0 -83
  922. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +0 -93
  923. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +0 -117
  924. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +0 -76
  925. package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +0 -58
  926. package/src/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +0 -101
  927. package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +0 -766
  928. package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.test.js +0 -610
  929. package/src/Screens/Creator/Components/VisualizationAndMediaData/__snapshots__/VisualizationAndMediaData.test.js.snap +0 -17
  930. package/src/Screens/Creator/Components/VisualizationAndMediaData/dev.js +0 -341
  931. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/component_1.png +0 -0
  932. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_1.png +0 -0
  933. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3.png +0 -0
  934. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3_fullsize.jpg +0 -0
  935. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1.png +0 -0
  936. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_1.png +0 -0
  937. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_3.png +0 -0
  938. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_1.png +0 -0
  939. package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_3.png +0 -0
  940. package/src/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -1
  941. package/src/Screens/Creator/Containers/Edit.js +0 -392
  942. package/src/Screens/Creator/Containers/List.js +0 -44
  943. package/src/Screens/Creator/Reducers/Actions.js +0 -25
  944. package/src/Screens/Creator/Reducers/ConfigurationActions.js +0 -254
  945. package/src/Screens/Creator/Reducers/ConfigurationReducer.js +0 -398
  946. package/src/Screens/Creator/Reducers/CreatorReducer.js +0 -32
  947. package/src/Screens/Creator/Reducers/Rules/Actions.js +0 -80
  948. package/src/Screens/Creator/Reducers/Rules/Reducer.js +0 -169
  949. package/src/Screens/Creator/Screen.js +0 -19
  950. package/src/Screens/Creator/Translations.js +0 -152
  951. package/src/Screens/Creator/index.js +0 -13
  952. package/src/Screens/CurrentClient/Containers/Edit.js +0 -146
  953. package/src/Screens/CurrentClient/Reducers/Actions.js +0 -16
  954. package/src/Screens/CurrentClient/Reducers/Reducer.js +0 -44
  955. package/src/Screens/CurrentClient/Screen.js +0 -5
  956. package/src/Screens/CurrentClient/Translations.js +0 -11
  957. package/src/Screens/CurrentClient/index.js +0 -9
  958. package/src/Screens/Dashboard/Screen.js +0 -25
  959. package/src/Screens/Dashboard/Styles.scss +0 -3
  960. package/src/Screens/Dashboard/Translations.js +0 -15
  961. package/src/Screens/DefaultClient/Containers/Edit.js +0 -162
  962. package/src/Screens/DefaultClient/Reducers/Actions.js +0 -16
  963. package/src/Screens/DefaultClient/Reducers/Reducer.js +0 -45
  964. package/src/Screens/DefaultClient/Screen.js +0 -5
  965. package/src/Screens/DefaultClient/Translations.js +0 -11
  966. package/src/Screens/DefaultClient/index.js +0 -9
  967. package/src/Screens/Demo/Screen.js +0 -92
  968. package/src/Screens/Demo/Styles.scss +0 -3
  969. package/src/Screens/Demo/index.js +0 -5
  970. package/src/Screens/DesignProductionMethods/Containers/Edit.js +0 -257
  971. package/src/Screens/DesignProductionMethods/Containers/List.js +0 -43
  972. package/src/Screens/DesignProductionMethods/Reducers/Actions.js +0 -14
  973. package/src/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +0 -93
  974. package/src/Screens/DesignProductionMethods/Screen.js +0 -18
  975. package/src/Screens/DesignProductionMethods/Translations.js +0 -79
  976. package/src/Screens/DesignProductionMethods/index.js +0 -10
  977. package/src/Screens/DesignTemplateEditor/Containers/List.js +0 -65
  978. package/src/Screens/DesignTemplateEditor/Reducers/Actions.js +0 -8
  979. package/src/Screens/DesignTemplateEditor/Reducers/Reducer.js +0 -14
  980. package/src/Screens/DesignTemplateEditor/Screen.js +0 -14
  981. package/src/Screens/DesignTemplateEditor/Translations.js +0 -17
  982. package/src/Screens/DesignTemplateEditor/index.js +0 -9
  983. package/src/Screens/Designer/Components/ConfiguratorQuickView.js +0 -84
  984. package/src/Screens/Designer/Components/DesignDataTransfer.js +0 -305
  985. package/src/Screens/Designer/Components/TemplateDefaultList.js +0 -341
  986. package/src/Screens/Designer/Components/TemplateList.js +0 -249
  987. package/src/Screens/Designer/Containers/Edit.js +0 -234
  988. package/src/Screens/Designer/Containers/List.js +0 -42
  989. package/src/Screens/Designer/Containers/TemplateList.js +0 -49
  990. package/src/Screens/Designer/Reducers/Actions.js +0 -29
  991. package/src/Screens/Designer/Reducers/DesignerReducer.js +0 -37
  992. package/src/Screens/Designer/Screen.js +0 -18
  993. package/src/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +0 -387
  994. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.dev.js +0 -61
  995. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +0 -150
  996. package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.test.js +0 -46
  997. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +0 -53
  998. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +0 -78
  999. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.dev.js +0 -57
  1000. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +0 -310
  1001. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/masks/circle.svg +0 -4
  1002. package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +0 -40
  1003. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +0 -66
  1004. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +0 -154
  1005. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +0 -1002
  1006. package/src/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +0 -47
  1007. package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +0 -94
  1008. package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +0 -247
  1009. package/src/Screens/Designer/SubScreens/DesignAreas/Screen.js +0 -19
  1010. package/src/Screens/Designer/SubScreens/DesignAreas/Styles.scss +0 -0
  1011. package/src/Screens/Designer/SubScreens/DesignAreas/Translations.js +0 -141
  1012. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +0 -15
  1013. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +0 -9
  1014. package/src/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +0 -5
  1015. package/src/Screens/Designer/SubScreens/DesignAreas/index.js +0 -7
  1016. package/src/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +0 -138
  1017. package/src/Screens/Designer/SubScreens/Designviews/Containers/List.js +0 -47
  1018. package/src/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +0 -186
  1019. package/src/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +0 -111
  1020. package/src/Screens/Designer/SubScreens/Designviews/Screen.js +0 -18
  1021. package/src/Screens/Designer/SubScreens/Designviews/Translations.js +0 -23
  1022. package/src/Screens/Designer/SubScreens/Designviews/index.js +0 -7
  1023. package/src/Screens/Designer/SubScreens/Visualization/ApiCalls.js +0 -14
  1024. package/src/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +0 -247
  1025. package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +0 -174
  1026. package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +0 -139
  1027. package/src/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +0 -49
  1028. package/src/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +0 -68
  1029. package/src/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +0 -566
  1030. package/src/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +0 -88
  1031. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/logo.svg +0 -120
  1032. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +0 -1
  1033. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +0 -1
  1034. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +0 -1
  1035. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +0 -1
  1036. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +0 -1
  1037. package/src/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +0 -1
  1038. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +0 -3
  1039. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +0 -121
  1040. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.dev.js +0 -460
  1041. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +0 -789
  1042. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +0 -98
  1043. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/__tests__/calculateBoundingBoxSize.test.js +0 -46
  1044. package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +0 -40
  1045. package/src/Screens/Designer/SubScreens/Visualization/Containers/List.js +0 -132
  1046. package/src/Screens/Designer/SubScreens/Visualization/Screen.js +0 -37
  1047. package/src/Screens/Designer/SubScreens/Visualization/Translations.js +0 -82
  1048. package/src/Screens/Designer/SubScreens/Visualization/index.js +0 -3
  1049. package/src/Screens/Designer/Translations.js +0 -55
  1050. package/src/Screens/Designer/__tests__/DesigAreaEdit.js +0 -9
  1051. package/src/Screens/Designer/__tests__/FormProductionMethods.test.js +0 -165
  1052. package/src/Screens/Designer/__tests__/__snapshots__/FormProductionMethods.test.js.snap +0 -434
  1053. package/src/Screens/Designer/index.js +0 -11
  1054. package/src/Screens/DesignerGlobalItemPrices/Containers/Edit.js +0 -106
  1055. package/src/Screens/DesignerGlobalItemPrices/Containers/List.js +0 -37
  1056. package/src/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +0 -17
  1057. package/src/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +0 -52
  1058. package/src/Screens/DesignerGlobalItemPrices/Screen.js +0 -20
  1059. package/src/Screens/DesignerGlobalItemPrices/Translations.js +0 -29
  1060. package/src/Screens/DesignerGlobalItemPrices/index.js +0 -11
  1061. package/src/Screens/Finder/Containers/Edit.js +0 -35
  1062. package/src/Screens/Finder/Containers/List.js +0 -36
  1063. package/src/Screens/Finder/Reducers/Actions.js +0 -97
  1064. package/src/Screens/Finder/Reducers/FinderReducer.js +0 -22
  1065. package/src/Screens/Finder/Screen.js +0 -19
  1066. package/src/Screens/Finder/Translations.js +0 -13
  1067. package/src/Screens/Finder/index.js +0 -11
  1068. package/src/Screens/Font/Containers/Edit.js +0 -55
  1069. package/src/Screens/Font/Containers/List.js +0 -54
  1070. package/src/Screens/Font/Reducers/Actions.js +0 -97
  1071. package/src/Screens/Font/Reducers/Reducer.js +0 -40
  1072. package/src/Screens/Font/Screen.js +0 -20
  1073. package/src/Screens/Font/Styles.scss +0 -0
  1074. package/src/Screens/Font/Translations.js +0 -17
  1075. package/src/Screens/Font/index.js +0 -9
  1076. package/src/Screens/Group/Containers/Edit.js +0 -34
  1077. package/src/Screens/Group/Containers/List.js +0 -30
  1078. package/src/Screens/Group/Reducers/Actions.js +0 -12
  1079. package/src/Screens/Group/Reducers/Reducer.js +0 -21
  1080. package/src/Screens/Group/Screen.js +0 -20
  1081. package/src/Screens/Group/Styles.scss +0 -0
  1082. package/src/Screens/Group/Translations.js +0 -19
  1083. package/src/Screens/Group/index.js +0 -10
  1084. package/src/Screens/GroupEntry/Containers/Edit.js +0 -46
  1085. package/src/Screens/GroupEntry/Containers/List.js +0 -30
  1086. package/src/Screens/GroupEntry/Reducers/Actions.js +0 -12
  1087. package/src/Screens/GroupEntry/Reducers/Reducer.js +0 -21
  1088. package/src/Screens/GroupEntry/Screen.js +0 -20
  1089. package/src/Screens/GroupEntry/Styles.scss +0 -0
  1090. package/src/Screens/GroupEntry/Translations.js +0 -17
  1091. package/src/Screens/GroupEntry/index.js +0 -10
  1092. package/src/Screens/ImageGallery/Containers/Edit.js +0 -119
  1093. package/src/Screens/ImageGallery/Containers/List.js +0 -170
  1094. package/src/Screens/ImageGallery/ImageTags/Actions.js +0 -25
  1095. package/src/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +0 -35
  1096. package/src/Screens/ImageGallery/ImageTags/Editor.js +0 -54
  1097. package/src/Screens/ImageGallery/ImageTags/Reducer.js +0 -20
  1098. package/src/Screens/ImageGallery/ImageTags/TagsActions.js +0 -20
  1099. package/src/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +0 -35
  1100. package/src/Screens/ImageGallery/Reducers/Actions.js +0 -114
  1101. package/src/Screens/ImageGallery/Reducers/Reducer.js +0 -76
  1102. package/src/Screens/ImageGallery/Screen.js +0 -20
  1103. package/src/Screens/ImageGallery/Styles.scss +0 -34
  1104. package/src/Screens/ImageGallery/Translations.js +0 -44
  1105. package/src/Screens/ImageGallery/index.js +0 -9
  1106. package/src/Screens/Inspirations/Containers/Edit.js +0 -105
  1107. package/src/Screens/Inspirations/Containers/InspirationsSubscreen.js +0 -18
  1108. package/src/Screens/Inspirations/Containers/ItemInspirationsList.js +0 -45
  1109. package/src/Screens/Inspirations/Containers/List.js +0 -40
  1110. package/src/Screens/Inspirations/Reducers/Actions.js +0 -90
  1111. package/src/Screens/Inspirations/Reducers/ItemInspirationsActions.js +0 -12
  1112. package/src/Screens/Inspirations/Reducers/Reducer.js +0 -63
  1113. package/src/Screens/Inspirations/Screen.js +0 -59
  1114. package/src/Screens/Inspirations/Translations.js +0 -28
  1115. package/src/Screens/Inspirations/index.js +0 -11
  1116. package/src/Screens/Item/ApiCalls.js +0 -9
  1117. package/src/Screens/Item/Components/AttributeEditorPopup.js +0 -57
  1118. package/src/Screens/Item/Components/ConfiguratorQuickView.js +0 -99
  1119. package/src/Screens/Item/Components/CopyCreatorItemDialog.js +0 -130
  1120. package/src/Screens/Item/Components/ListItemStatusEditor.js +0 -112
  1121. package/src/Screens/Item/Components/Styles.scss +0 -328
  1122. package/src/Screens/Item/Components/Variants/VariantsAutocomplete.js +0 -234
  1123. package/src/Screens/Item/Components/Variants/VariantsEditor.js +0 -582
  1124. package/src/Screens/Item/Components/Variants/VariantsEditorDialog.js +0 -143
  1125. package/src/Screens/Item/Components/Variants/VariantsEditorPopup.js +0 -69
  1126. package/src/Screens/Item/Components/Variants/VariantsSelection.js +0 -120
  1127. package/src/Screens/Item/Components/Variants/VariantsSortFilter.js +0 -158
  1128. package/src/Screens/Item/Containers/Edit.js +0 -524
  1129. package/src/Screens/Item/Containers/Edit.test.js +0 -310
  1130. package/src/Screens/Item/Containers/List.js +0 -87
  1131. package/src/Screens/Item/Containers/Styles.scss +0 -92
  1132. package/src/Screens/Item/DataStructures/Attributes/Actions.js +0 -30
  1133. package/src/Screens/Item/DataStructures/Attributes/Editor.js +0 -99
  1134. package/src/Screens/Item/DataStructures/Attributes/Reducer.js +0 -13
  1135. package/src/Screens/Item/Reducers/Actions.js +0 -82
  1136. package/src/Screens/Item/Reducers/ItemReducer.js +0 -64
  1137. package/src/Screens/Item/Reducers/Variant/Actions.js +0 -13
  1138. package/src/Screens/Item/Reducers/Variant/Reducer.js +0 -72
  1139. package/src/Screens/Item/Screen.js +0 -18
  1140. package/src/Screens/Item/Translations.js +0 -168
  1141. package/src/Screens/Item/index.js +0 -12
  1142. package/src/Screens/Itemclassification/Containers/Edit.js +0 -49
  1143. package/src/Screens/Itemclassification/Containers/List.js +0 -64
  1144. package/src/Screens/Itemclassification/Reducers/Actions.js +0 -21
  1145. package/src/Screens/Itemclassification/Reducers/Reducer.js +0 -43
  1146. package/src/Screens/Itemclassification/Screen.js +0 -19
  1147. package/src/Screens/Itemclassification/Translations.js +0 -22
  1148. package/src/Screens/Itemclassification/index.js +0 -9
  1149. package/src/Screens/License/Reducers/Actions.js +0 -44
  1150. package/src/Screens/License/Reducers/Reducer.js +0 -35
  1151. package/src/Screens/License/Screen.js +0 -116
  1152. package/src/Screens/License/Styles.scss +0 -35
  1153. package/src/Screens/License/Translations.js +0 -19
  1154. package/src/Screens/License/__tests__/LicenseScreen.test.js +0 -23
  1155. package/src/Screens/License/__tests__/__snapshots__/LicenseScreen.test.js.snap +0 -219
  1156. package/src/Screens/License/index.js +0 -10
  1157. package/src/Screens/Login/Reducers/Actions.js +0 -57
  1158. package/src/Screens/Login/Reducers/Listener.js +0 -13
  1159. package/src/Screens/Login/Reducers/Reducer.js +0 -73
  1160. package/src/Screens/Login/Screen.js +0 -96
  1161. package/src/Screens/Login/Styles.scss +0 -0
  1162. package/src/Screens/Login/Translations.js +0 -11
  1163. package/src/Screens/Login/__tests/LoginScreen.js +0 -227
  1164. package/src/Screens/Option/Containers/Edit.js +0 -172
  1165. package/src/Screens/Option/Containers/List.js +0 -64
  1166. package/src/Screens/Option/Reducers/Actions.js +0 -17
  1167. package/src/Screens/Option/Reducers/Reducer.js +0 -81
  1168. package/src/Screens/Option/Screen.js +0 -18
  1169. package/src/Screens/Option/Translations.js +0 -34
  1170. package/src/Screens/Option/index.js +0 -9
  1171. package/src/Screens/OptionPools/Containers/Edit.js +0 -87
  1172. package/src/Screens/OptionPools/Containers/List.js +0 -29
  1173. package/src/Screens/OptionPools/Reducers/Actions.js +0 -10
  1174. package/src/Screens/OptionPools/Reducers/Reducer.js +0 -33
  1175. package/src/Screens/OptionPools/Screen.js +0 -18
  1176. package/src/Screens/OptionPools/Translations.js +0 -23
  1177. package/src/Screens/OptionPools/index.js +0 -9
  1178. package/src/Screens/Optionclassification/Containers/Edit.js +0 -77
  1179. package/src/Screens/Optionclassification/Containers/List.js +0 -64
  1180. package/src/Screens/Optionclassification/Reducers/Actions.js +0 -17
  1181. package/src/Screens/Optionclassification/Reducers/Reducer.js +0 -43
  1182. package/src/Screens/Optionclassification/Screen.js +0 -20
  1183. package/src/Screens/Optionclassification/Styles.scss +0 -0
  1184. package/src/Screens/Optionclassification/Translations.js +0 -25
  1185. package/src/Screens/Optionclassification/index.js +0 -9
  1186. package/src/Screens/PriceTypes/Containers/Edit.js +0 -119
  1187. package/src/Screens/PriceTypes/Containers/List.js +0 -52
  1188. package/src/Screens/PriceTypes/Reducers/Actions.js +0 -8
  1189. package/src/Screens/PriceTypes/Reducers/Reducer.js +0 -45
  1190. package/src/Screens/PriceTypes/Screen.js +0 -19
  1191. package/src/Screens/PriceTypes/Translations.js +0 -51
  1192. package/src/Screens/PriceTypes/index.js +0 -9
  1193. package/src/Screens/ProductionView/Components/ConfigurationDataSheet.js +0 -146
  1194. package/src/Screens/ProductionView/Containers/Edit.js +0 -41
  1195. package/src/Screens/ProductionView/Containers/List.js +0 -65
  1196. package/src/Screens/ProductionView/Reducers/Actions.js +0 -21
  1197. package/src/Screens/ProductionView/Reducers/Reducer.js +0 -31
  1198. package/src/Screens/ProductionView/Screen.js +0 -22
  1199. package/src/Screens/ProductionView/Styles.scss +0 -59
  1200. package/src/Screens/ProductionView/Translations.js +0 -27
  1201. package/src/Screens/ProductionView/index.js +0 -9
  1202. package/src/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +0 -249
  1203. package/src/Screens/ReceiveOfferRequests/Containers/Edit.js +0 -46
  1204. package/src/Screens/ReceiveOfferRequests/Containers/List.js +0 -67
  1205. package/src/Screens/ReceiveOfferRequests/Reducers/Actions.js +0 -23
  1206. package/src/Screens/ReceiveOfferRequests/Reducers/Reducer.js +0 -30
  1207. package/src/Screens/ReceiveOfferRequests/Screen.js +0 -22
  1208. package/src/Screens/ReceiveOfferRequests/index.js +0 -10
  1209. package/src/Screens/Roles/Containers/Edit.js +0 -37
  1210. package/src/Screens/Roles/Containers/List.js +0 -30
  1211. package/src/Screens/Roles/Reducers/Actions.js +0 -14
  1212. package/src/Screens/Roles/Reducers/Reducer.js +0 -22
  1213. package/src/Screens/Roles/Screen.js +0 -19
  1214. package/src/Screens/Roles/Translations.js +0 -19
  1215. package/src/Screens/Roles/index.js +0 -9
  1216. package/src/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +0 -263
  1217. package/src/Screens/Savedconfigurations/Containers/Edit.js +0 -46
  1218. package/src/Screens/Savedconfigurations/Containers/List.js +0 -130
  1219. package/src/Screens/Savedconfigurations/Reducers/Actions.js +0 -17
  1220. package/src/Screens/Savedconfigurations/Reducers/Reducer.js +0 -28
  1221. package/src/Screens/Savedconfigurations/Screen.js +0 -22
  1222. package/src/Screens/Savedconfigurations/Styles.scss +0 -38
  1223. package/src/Screens/Savedconfigurations/Translations.js +0 -67
  1224. package/src/Screens/Savedconfigurations/index.js +0 -9
  1225. package/src/Screens/Setting/Containers/Edit.js +0 -115
  1226. package/src/Screens/Setting/Reducers/Actions.js +0 -36
  1227. package/src/Screens/Setting/Reducers/Reducer.js +0 -30
  1228. package/src/Screens/Setting/Screen.js +0 -10
  1229. package/src/Screens/Setting/Styles.scss +0 -0
  1230. package/src/Screens/Setting/Translations.js +0 -55
  1231. package/src/Screens/Setting/index.js +0 -9
  1232. package/src/Screens/SoftwareUpdates/Reducers/Actions.js +0 -9
  1233. package/src/Screens/SoftwareUpdates/Reducers/Reducer.js +0 -25
  1234. package/src/Screens/SoftwareUpdates/Screen.js +0 -77
  1235. package/src/Screens/SoftwareUpdates/Translations.js +0 -25
  1236. package/src/Screens/SoftwareUpdates/__tests__/SoftwareUpdatesScreen.test.js +0 -14
  1237. package/src/Screens/SoftwareUpdates/__tests__/__snapshots__/SoftwareUpdatesScreen.test.js.snap +0 -19
  1238. package/src/Screens/SoftwareUpdates/index.js +0 -10
  1239. package/src/Screens/Tag/Containers/Edit.js +0 -26
  1240. package/src/Screens/Tag/Containers/List.js +0 -52
  1241. package/src/Screens/Tag/Reducers/Actions.js +0 -20
  1242. package/src/Screens/Tag/Reducers/Reducer.js +0 -22
  1243. package/src/Screens/Tag/Screen.js +0 -19
  1244. package/src/Screens/Tag/Styles.scss +0 -0
  1245. package/src/Screens/Tag/Translations.js +0 -19
  1246. package/src/Screens/Tag/index.js +0 -9
  1247. package/src/Screens/TrackingCodes/Containers/Edit.js +0 -52
  1248. package/src/Screens/TrackingCodes/Containers/List.js +0 -39
  1249. package/src/Screens/TrackingCodes/Reducers/Actions.js +0 -46
  1250. package/src/Screens/TrackingCodes/Reducers/Reducer.js +0 -53
  1251. package/src/Screens/TrackingCodes/Screen.js +0 -18
  1252. package/src/Screens/TrackingCodes/Translations.js +0 -21
  1253. package/src/Screens/TrackingCodes/index.js +0 -10
  1254. package/src/Screens/TranslationFileHandling/Containers/Edit.js +0 -169
  1255. package/src/Screens/TranslationFileHandling/Containers/List.js +0 -30
  1256. package/src/Screens/TranslationFileHandling/Reducers/Actions.js +0 -8
  1257. package/src/Screens/TranslationFileHandling/Reducers/Reducer.js +0 -27
  1258. package/src/Screens/TranslationFileHandling/Screen.js +0 -19
  1259. package/src/Screens/TranslationFileHandling/Translations.js +0 -25
  1260. package/src/Screens/TranslationFileHandling/index.js +0 -10
  1261. package/src/Screens/User/Containers/Edit.js +0 -54
  1262. package/src/Screens/User/Containers/List.js +0 -55
  1263. package/src/Screens/User/Reducers/Actions.js +0 -43
  1264. package/src/Screens/User/Reducers/Reducer.js +0 -26
  1265. package/src/Screens/User/Screen.js +0 -19
  1266. package/src/Screens/User/Styles.scss +0 -3
  1267. package/src/Screens/User/Translations.js +0 -23
  1268. package/src/Screens/User/__tests/UserScreen.js +0 -376
  1269. package/src/Screens/User/index.js +0 -9
  1270. package/src/Screens/index.js +0 -142
  1271. package/src/UIComponents/AppBar.js +0 -3
  1272. package/src/UIComponents/AutoComplete.js +0 -237
  1273. package/src/UIComponents/Button.js +0 -3
  1274. package/src/UIComponents/ButtonBase.js +0 -3
  1275. package/src/UIComponents/Checkbox.js +0 -3
  1276. package/src/UIComponents/Chip.js +0 -2
  1277. package/src/UIComponents/ChipInput.js +0 -221
  1278. package/src/UIComponents/CircularProgress.js +0 -3
  1279. package/src/UIComponents/ClickAwayListener.js +0 -3
  1280. package/src/UIComponents/Collapse.js +0 -3
  1281. package/src/UIComponents/DatePicker.js +0 -37
  1282. package/src/UIComponents/DateTimePicker.js +0 -37
  1283. package/src/UIComponents/Dialog.js +0 -55
  1284. package/src/UIComponents/Drawer.js +0 -3
  1285. package/src/UIComponents/FlatButton.js +0 -23
  1286. package/src/UIComponents/FloatingActionButton.js +0 -4
  1287. package/src/UIComponents/FontIcon.js +0 -3
  1288. package/src/UIComponents/FormControl.js +0 -3
  1289. package/src/UIComponents/FormControlLabel.js +0 -3
  1290. package/src/UIComponents/Grow.js +0 -3
  1291. package/src/UIComponents/IconButton.js +0 -3
  1292. package/src/UIComponents/IconMenu.js +0 -138
  1293. package/src/UIComponents/InlineHelp/__snapshots__/index.test.js.snap +0 -30
  1294. package/src/UIComponents/InlineHelp/index.js +0 -46
  1295. package/src/UIComponents/InlineHelp/index.test.js +0 -22
  1296. package/src/UIComponents/Input.js +0 -3
  1297. package/src/UIComponents/InputAdornment.js +0 -3
  1298. package/src/UIComponents/InputLabel.js +0 -3
  1299. package/src/UIComponents/LinearProgress.js +0 -3
  1300. package/src/UIComponents/Link.js +0 -24
  1301. package/src/UIComponents/List.js +0 -3
  1302. package/src/UIComponents/ListItem.js +0 -3
  1303. package/src/UIComponents/ListItemIcon.js +0 -3
  1304. package/src/UIComponents/ListItemText.js +0 -3
  1305. package/src/UIComponents/Menu.js +0 -3
  1306. package/src/UIComponents/MenuItem.js +0 -3
  1307. package/src/UIComponents/MenuList.js +0 -3
  1308. package/src/UIComponents/Pagination.js +0 -100
  1309. package/src/UIComponents/Paper.js +0 -3
  1310. package/src/UIComponents/Popper.js +0 -3
  1311. package/src/UIComponents/RadioButton/RadioButton.js +0 -3
  1312. package/src/UIComponents/RadioButton/RadioGroup.js +0 -3
  1313. package/src/UIComponents/RadioButton/index.js +0 -5
  1314. package/src/UIComponents/RaisedButton.js +0 -24
  1315. package/src/UIComponents/SelectField.js +0 -70
  1316. package/src/UIComponents/Snackbar.js +0 -3
  1317. package/src/UIComponents/Table/Table.js +0 -133
  1318. package/src/UIComponents/Table/TableBody.js +0 -60
  1319. package/src/UIComponents/Table/TableCell.js +0 -3
  1320. package/src/UIComponents/Table/TableFooter.js +0 -3
  1321. package/src/UIComponents/Table/TableHead.js +0 -53
  1322. package/src/UIComponents/Table/TableHeadColumn.js +0 -3
  1323. package/src/UIComponents/Table/TableRow.js +0 -19
  1324. package/src/UIComponents/Table/TableRowColumn.js +0 -3
  1325. package/src/UIComponents/Table/index.js +0 -15
  1326. package/src/UIComponents/TableSortLabel.js +0 -3
  1327. package/src/UIComponents/Tabs/Tab.js +0 -3
  1328. package/src/UIComponents/Tabs/Tabs.js +0 -3
  1329. package/src/UIComponents/Tabs/index.js +0 -5
  1330. package/src/UIComponents/TextField.js +0 -3
  1331. package/src/UIComponents/TimePicker.js +0 -41
  1332. package/src/UIComponents/Toggle.js +0 -3
  1333. package/src/UIComponents/Toolbar.js +0 -3
  1334. package/src/UIComponents/Tooltip.js +0 -6
  1335. package/src/UIComponents/Typography.js +0 -3
  1336. package/src/UIComponents/icons/AccountCircleIcon.js +0 -3
  1337. package/src/UIComponents/icons/AddCircleOutlineIcon.js +0 -3
  1338. package/src/UIComponents/icons/AddIcon.js +0 -3
  1339. package/src/UIComponents/icons/ArrowBackIcon.js +0 -3
  1340. package/src/UIComponents/icons/CheckmarkIcon.js +0 -3
  1341. package/src/UIComponents/icons/CloseIcon.js +0 -3
  1342. package/src/UIComponents/icons/DeleteForeverIcon.js +0 -3
  1343. package/src/UIComponents/icons/DeleteIcon.js +0 -3
  1344. package/src/UIComponents/icons/ErrorIcon.js +0 -3
  1345. package/src/UIComponents/icons/ExpandLessIcon.js +0 -3
  1346. package/src/UIComponents/icons/ExpandMoreIcon.js +0 -3
  1347. package/src/UIComponents/icons/FolderIcon.js +0 -3
  1348. package/src/UIComponents/icons/ForwardIcon.js +0 -3
  1349. package/src/UIComponents/icons/InfoIcon.js +0 -3
  1350. package/src/UIComponents/icons/InfoOutlineIcon.js +0 -3
  1351. package/src/UIComponents/icons/LanguageIcon.js +0 -3
  1352. package/src/UIComponents/icons/LaunchIcon.js +0 -3
  1353. package/src/UIComponents/icons/MenuIcon.js +0 -3
  1354. package/src/UIComponents/icons/PriceIcon.js +0 -3
  1355. package/src/UIComponents/icons/ReorderIcon.js +0 -3
  1356. package/src/UIComponents/icons/SearchIcon.js +0 -3
  1357. package/src/UIComponents/icons/SettingsIcon.js +0 -3
  1358. package/src/UIComponents/icons/SortIcon.js +0 -3
  1359. package/src/UIComponents/icons/TranslateIcon.js +0 -3
  1360. package/src/UIComponents/icons/UpdateIcon.js +0 -3
  1361. package/src/UIComponents/icons/ViewListIcon.js +0 -3
  1362. package/src/UIComponents/icons/ZoomResetIcon.js +0 -3
  1363. package/src/Utils/Async/Deferred.js +0 -76
  1364. package/src/Utils/Async/__tests__/newestRequest.test.js +0 -34
  1365. package/src/Utils/Async/newestRequest.js +0 -15
  1366. package/src/Utils/Decorators/Observable.js +0 -62
  1367. package/src/Utils/Dev/RequestApiToken.js +0 -27
  1368. package/src/Utils/Dev/withStateProps.js +0 -6
  1369. package/src/Utils/Error/createError.js +0 -22
  1370. package/src/Utils/Events/pointerEvent.js +0 -77
  1371. package/src/Utils/FunDraw/createMask.js +0 -67
  1372. package/src/Utils/FunDraw/funDraw.js +0 -287
  1373. package/src/Utils/FunDraw/movableObject.js +0 -108
  1374. package/src/Utils/Function/__tests__/sendMessage.test.js +0 -20
  1375. package/src/Utils/Function/sendMessage.js +0 -7
  1376. package/src/Utils/HOCs/AsyncProps.js +0 -39
  1377. package/src/Utils/HOCs/LocalState.js +0 -34
  1378. package/src/Utils/HOCs/RemappedProps.js +0 -15
  1379. package/src/Utils/Request/lazyFetch.js +0 -29
  1380. package/src/Utils/Request/pathParams.js +0 -8
  1381. package/src/Utils/Test/provideStore.js +0 -16
  1382. package/src/Utils/Test/wrapperSelectors.js +0 -5
  1383. package/src/__mocks__/assetsMock.js +0 -3
  1384. package/src/__mocks__/fileMock.js +0 -1
  1385. package/src/__mocks__/styleMock.js +0 -3
  1386. package/src/default.js +0 -12
  1387. package/src/dev.js +0 -61
  1388. 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;