@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.
- package/App/Api.js +29 -86
- package/App/Config/app.js +15 -38
- package/App/Config/defaultConfig.js +4 -5
- package/App/Config/icons.js +4 -9
- package/App/Config/network.js +2 -5
- package/App/Data.js +25 -115
- package/App/Entity.js +5 -17
- package/App/ErrorBoundary.js +14 -39
- package/App/FeatureReducers.js +4 -14
- package/App/Frame.js +10 -33
- package/App/Listeners.js +3 -21
- package/App/Main.js +34 -99
- package/App/Reducers/Api/Actions.js +34 -110
- package/App/Reducers/Api/Helpers.js +19 -42
- package/App/Reducers/Api/Reducer.js +8 -26
- package/App/Reducers/Common/Form/Actions.js +3 -7
- package/App/Reducers/Common/Form/Reducer.js +16 -23
- package/App/Reducers/Common/Language/Actions.js +3 -7
- package/App/Reducers/Common/Language/Reducer.js +9 -16
- package/App/Reducers/Common/OrderList/Actions.js +21 -48
- package/App/Reducers/Common/OrderList/Listener.js +9 -13
- package/App/Reducers/Common/OrderList/Reducer.js +11 -30
- package/App/Reducers/Common/index.js +2 -7
- package/App/Reducers/Config/Actions.js +3 -7
- package/App/Reducers/Config/Reducer.js +8 -15
- package/App/Reducers/Entity/Actions.js +49 -166
- package/App/Reducers/Entity/Reducer.js +28 -94
- package/App/Reducers/Frame/Actions.js +7 -19
- package/App/Reducers/Frame/Reducer.js +9 -26
- package/App/Reducers/index.js +8 -21
- package/App/ReduxListener.js +13 -20
- package/App/ReduxPersistLoader.js +1 -8
- package/App/Routes.js +4 -18
- package/App/Selectors/Credentials/hasCredentialFor.js +0 -1
- package/App/Services/ElementRef.js +8 -12
- package/App/Services/WindowCommunication.js +10 -27
- package/App/Services/index.js +2 -6
- package/App/Store.js +9 -29
- package/App/Styles.scss +18 -3
- package/App/TestHelpers.js +16 -59
- package/App/ThemeProvider.js +8 -13
- package/App/Translations.js +11 -2
- package/App/Utils.js +5 -17
- package/App/customSetup.js +0 -2
- package/App/i18n.js +41 -105
- package/App/index.js +14 -41
- package/App/initServices.js +11 -36
- package/App/setup.js +1 -4
- package/AppContainer.js +2 -16
- package/Components/AddButton.js +2 -9
- package/Components/AppBar.js +27 -29
- package/Components/CallToActionField.js +58 -94
- package/Components/CloseButton.js +21 -0
- package/Components/CopyPaste.js +11 -43
- package/Components/DefaultConnectedForm.js +10 -29
- package/Components/DefaultConnectedList.js +19 -42
- package/Components/DefaultConnectedScreen.js +7 -21
- package/Components/DefaultForm.js +22 -49
- package/Components/DefaultList.js +35 -108
- package/Components/DefaultScreen.js +35 -83
- package/Components/Error.js +1 -8
- package/Components/Form.js +46 -148
- package/Components/FormFragments/AttributeValueChip.js +41 -99
- package/Components/FormFragments/AutoComplete.js +42 -95
- package/Components/FormFragments/AutocompleteEntity.js +41 -91
- package/Components/FormFragments/Checkbox.js +1 -10
- package/Components/FormFragments/Chip.js +44 -101
- package/Components/FormFragments/DatePicker.js +1 -7
- package/Components/FormFragments/DateTimePicker.js +1 -7
- package/Components/FormFragments/DynSourceInput.js +18 -69
- package/Components/FormFragments/ErrorWrapper.js +1 -7
- package/Components/FormFragments/File.js +44 -66
- package/Components/FormFragments/HintText.js +4 -10
- package/Components/FormFragments/InlineAddButton.js +30 -81
- package/Components/FormFragments/InputArray.js +32 -101
- package/Components/FormFragments/InputGroup.js +6 -15
- package/Components/FormFragments/InputWithSource.js +9 -34
- package/Components/FormFragments/IntlInput.js +19 -79
- package/Components/FormFragments/Label.js +4 -10
- package/Components/FormFragments/MarkDown.js +20 -49
- package/Components/FormFragments/MonacoEditor.js +17 -37
- package/Components/FormFragments/NestedDataComponent.js +23 -80
- package/Components/FormFragments/ObjectToggle.js +2 -14
- package/Components/FormFragments/RadioGroup.js +1 -10
- package/Components/FormFragments/Select.js +7 -17
- package/Components/FormFragments/SetInput.js +24 -71
- package/Components/FormFragments/SimpleNestedData.js +20 -48
- package/Components/FormFragments/SimpleTable.js +25 -72
- package/Components/FormFragments/SimpleTextEditor.js +6 -12
- package/Components/FormFragments/Subheadline.js +16 -0
- package/Components/FormFragments/Tabs.js +40 -106
- package/Components/FormFragments/Text.js +1 -8
- package/Components/FormFragments/TimePicker.js +1 -7
- package/Components/FormFragments/Toggle.js +3 -16
- package/Components/FormFragments/TwoSideSelect.js +19 -78
- package/Components/FormFragments/Value.js +8 -18
- package/Components/FormFragments/index.js +37 -47
- package/Components/FormFragments/styles.js +12 -2
- package/Components/FormHooks/useDataSchema.js +14 -29
- package/Components/GeneralFragments/Box.js +1 -8
- package/Components/GeneralFragments/ConfigurationEditor.js +74 -121
- package/Components/GeneralFragments/ConfiguratorOverlay.js +19 -42
- package/Components/GeneralFragments/Content.js +1 -8
- package/Components/GeneralFragments/Headline.js +7 -14
- package/Components/GeneralFragments/Image.js +11 -41
- package/Components/GeneralFragments/MiniPopup.js +29 -71
- package/Components/GeneralFragments/index.js +8 -14
- package/Components/InputHelpers.js +2 -5
- package/Components/Join.js +3 -11
- package/Components/LicenseInfo.js +12 -41
- package/Components/List.js +33 -97
- package/Components/ListColumnFilter.js +18 -65
- package/Components/LocaleSwitch.js +3 -17
- package/Components/LocalizedPriceTextField.js +27 -41
- package/Components/LocalizedPriceValue.js +6 -14
- package/Components/Menu.js +18 -66
- package/Components/ModalContainer.js +41 -51
- package/Components/OrderList.js +29 -80
- package/Components/OverlayContainer.js +6 -12
- package/Components/Pagination.js +20 -60
- package/Components/ProfileButton.js +9 -26
- package/Components/SearchBar.js +16 -55
- package/Components/SplitContainer.js +14 -20
- package/Components/Styles.scss +34 -0
- package/Components/TranslateComponent.js +17 -61
- package/Components/TranslationFinder.js +8 -28
- package/Components/Translations.js +11 -4
- package/Components/ValidatorCallbackProvider.js +13 -43
- package/Components/VersionBadge.js +2 -12
- package/Components/VersionUpdateChip.js +2 -16
- package/Components/withLoadAction.js +4 -17
- package/Components/withTranslationFinder.js +6 -15
- package/Resources/Images/configuratorware_logo_weiss.png +0 -0
- package/Screens/ApiKeys/Containers/Edit.js +48 -86
- package/Screens/ApiKeys/Containers/List.js +1 -8
- package/Screens/ApiKeys/Reducers/Actions.js +17 -37
- package/Screens/ApiKeys/Reducers/Reducer.js +11 -15
- package/Screens/ApiKeys/Screen.js +1 -11
- package/Screens/ApiKeys/Translations.js +2 -0
- package/Screens/ApiKeys/index.js +2 -8
- package/Screens/Assemblypointeditor/Components/AssemblypointTable.js +26 -58
- package/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +156 -224
- package/Screens/Assemblypointeditor/Components/fabric.min.js +1 -1
- package/Screens/Assemblypointeditor/Containers/Edit.js +6 -17
- package/Screens/Assemblypointeditor/Containers/List.js +4 -14
- package/Screens/Assemblypointeditor/Reducers/Actions.js +20 -36
- package/Screens/Assemblypointeditor/Reducers/Reducer.js +14 -32
- package/Screens/Assemblypointeditor/Screen.js +5 -22
- package/Screens/Assemblypointeditor/Translations.js +4 -0
- package/Screens/Assemblypointeditor/index.js +2 -8
- package/Screens/Attribute/Containers/Edit.js +5 -9
- package/Screens/Attribute/Containers/List.js +1 -8
- package/Screens/Attribute/Reducers/Actions.js +16 -35
- package/Screens/Attribute/Reducers/Reducer.js +11 -15
- package/Screens/Attribute/Screen.js +1 -11
- package/Screens/Attribute/Translations.js +4 -2
- package/Screens/Attribute/__tests/AttributeScreen.js +29 -72
- package/Screens/Attribute/index.js +2 -8
- package/Screens/AttributeValue/Containers/Edit.js +7 -13
- package/Screens/AttributeValue/Containers/List.js +7 -17
- package/Screens/AttributeValue/Reducers/Actions.js +6 -15
- package/Screens/AttributeValue/Reducers/Reducer.js +12 -16
- package/Screens/AttributeValue/Screen.js +4 -18
- package/Screens/AttributeValue/Translations.js +4 -2
- package/Screens/AttributeValue/__tests/AttributeValueScreen.js +29 -72
- package/Screens/AttributeValue/index.js +2 -8
- package/Screens/ChangePassword/Reducers/Actions.js +9 -30
- package/Screens/ChangePassword/Reducers/Reducer.js +8 -17
- package/Screens/ChangePassword/Screen.js +23 -60
- package/Screens/ChangePassword/index.js +2 -8
- package/Screens/Channel/Containers/Edit.js +7 -14
- package/Screens/Channel/Containers/List.js +2 -12
- package/Screens/Channel/Reducers/Actions.js +5 -13
- package/Screens/Channel/Reducers/Reducer.js +11 -17
- package/Screens/Channel/Screen.js +2 -14
- package/Screens/Channel/Translations.js +4 -2
- package/Screens/Channel/__tests/ChannelScreen.js +31 -75
- package/Screens/Channel/index.js +2 -8
- package/Screens/Client/Components/ColorTextField.js +14 -39
- package/Screens/Client/Components/PdfMarkdownField.js +22 -50
- package/Screens/Client/Containers/Edit.js +39 -33
- package/Screens/Client/Containers/List.js +7 -17
- package/Screens/Client/Reducers/Actions.js +19 -50
- package/Screens/Client/Reducers/Reducer.js +11 -20
- package/Screens/Client/Screen.js +4 -18
- package/Screens/Client/Translations.js +16 -2
- package/Screens/Client/index.js +2 -8
- package/Screens/ColorPalettes/Components/DefaultColorSwitch.js +12 -54
- package/Screens/ColorPalettes/Containers/Edit.js +14 -29
- package/Screens/ColorPalettes/Containers/List.js +7 -19
- package/Screens/ColorPalettes/Reducers/Actions.js +6 -15
- package/Screens/ColorPalettes/Reducers/Reducer.js +12 -16
- package/Screens/ColorPalettes/Screen.js +4 -18
- package/Screens/ColorPalettes/Translations.js +2 -0
- package/Screens/ColorPalettes/index.js +2 -8
- package/Screens/ConfigurationTypeEditor/Containers/Edit.js +14 -29
- package/Screens/ConfigurationTypeEditor/Containers/List.js +3 -15
- package/Screens/ConfigurationTypeEditor/Reducers/Actions.js +27 -68
- package/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +12 -37
- package/Screens/ConfigurationTypeEditor/Screen.js +19 -55
- package/Screens/ConfigurationVariants/Containers/Edit.js +16 -31
- package/Screens/ConfigurationVariants/Containers/List.js +2 -12
- package/Screens/ConfigurationVariants/Reducers/Actions.js +8 -19
- package/Screens/ConfigurationVariants/Reducers/Reducer.js +13 -19
- package/Screens/ConfigurationVariants/Screen.js +2 -14
- package/Screens/ConfigurationVariants/Translations.js +4 -2
- package/Screens/ConfigurationVariants/index.js +2 -8
- package/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +13 -28
- package/Screens/ConfigurationWorkflowStatus/Containers/List.js +20 -72
- package/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +20 -51
- package/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +9 -28
- package/Screens/ConfigurationWorkflowStatus/Screen.js +13 -42
- package/Screens/ConfigurationWorkflowStatus/index.js +2 -9
- package/Screens/ConfigurationWorkflowStatus/initServices.js +1 -4
- package/Screens/Creator/Components/BaseConfigurationEditor.js +18 -74
- package/Screens/Creator/Components/CheckData/ApiCalls.js +17 -27
- package/Screens/Creator/Components/CheckData/CheckData.js +81 -135
- package/Screens/Creator/Components/CheckData/Constants.js +27 -51
- package/Screens/Creator/Components/CheckData/Translations.js +4 -4
- package/Screens/Creator/Components/ComponentEditor.js +58 -107
- package/Screens/Creator/Components/ConfiguratorQuickView.js +9 -26
- package/Screens/Creator/Components/OptionPriceEditor.js +12 -34
- package/Screens/Creator/Components/OptionclassificationEditor.js +40 -165
- package/Screens/Creator/Components/Rules/Containers/Edit.js +26 -82
- package/Screens/Creator/Components/Rules/Containers/List.js +4 -17
- package/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +12 -37
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +12 -38
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +12 -38
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +12 -40
- package/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +12 -38
- package/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +22 -76
- package/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +2 -15
- package/Screens/Creator/Components/Rules/index.js +11 -41
- package/Screens/Creator/Components/ShowPreviewErrorDialog.js +5 -16
- package/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +16 -26
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +7 -19
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +15 -44
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +11 -30
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +112 -177
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +11 -31
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +16 -43
- package/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +4 -4
- package/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +319 -449
- package/Screens/Creator/Components/VisualizationAndMediaData/dev.js +26 -63
- package/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -2
- package/Screens/Creator/Containers/Edit.js +21 -120
- package/Screens/Creator/Containers/List.js +6 -14
- package/Screens/Creator/Reducers/Actions.js +13 -23
- package/Screens/Creator/Reducers/ConfigurationActions.js +205 -345
- package/Screens/Creator/Reducers/ConfigurationReducer.js +27 -88
- package/Screens/Creator/Reducers/CreatorReducer.js +8 -15
- package/Screens/Creator/Reducers/Rules/Actions.js +26 -63
- package/Screens/Creator/Reducers/Rules/Reducer.js +9 -27
- package/Screens/Creator/Screen.js +2 -15
- package/Screens/Creator/Translations.js +3 -3
- package/Screens/Creator/index.js +2 -10
- package/Screens/CurrentClient/Containers/Edit.js +24 -20
- package/Screens/CurrentClient/Reducers/Actions.js +11 -20
- package/Screens/CurrentClient/Reducers/Reducer.js +10 -14
- package/Screens/CurrentClient/Screen.js +1 -6
- package/Screens/CurrentClient/Translations.js +12 -2
- package/Screens/CurrentClient/index.js +2 -8
- package/Screens/Dashboard/Screen.js +2 -18
- package/Screens/DefaultClient/Containers/Edit.js +29 -21
- package/Screens/DefaultClient/Reducers/Actions.js +11 -20
- package/Screens/DefaultClient/Reducers/Reducer.js +11 -14
- package/Screens/DefaultClient/Screen.js +1 -6
- package/Screens/DefaultClient/Translations.js +14 -2
- package/Screens/DefaultClient/index.js +2 -8
- package/Screens/Demo/Screen.js +13 -44
- package/Screens/Demo/index.js +2 -6
- package/Screens/DesignProductionMethods/Containers/Edit.js +27 -36
- package/Screens/DesignProductionMethods/Containers/List.js +3 -15
- package/Screens/DesignProductionMethods/Reducers/Actions.js +12 -21
- package/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +12 -16
- package/Screens/DesignProductionMethods/Screen.js +2 -15
- package/Screens/DesignProductionMethods/Translations.js +6 -0
- package/Screens/DesignProductionMethods/index.js +2 -8
- package/Screens/DesignTemplateEditor/Containers/List.js +4 -17
- package/Screens/DesignTemplateEditor/Reducers/Actions.js +1 -6
- package/Screens/DesignTemplateEditor/Reducers/Reducer.js +2 -8
- package/Screens/DesignTemplateEditor/Screen.js +1 -10
- package/Screens/DesignTemplateEditor/index.js +2 -8
- package/Screens/Designer/Components/ConfiguratorQuickView.js +9 -26
- package/Screens/Designer/Components/DesignDataTransfer.js +102 -181
- package/Screens/Designer/Components/TemplateDefaultList.js +31 -114
- package/Screens/Designer/Components/TemplateList.js +18 -78
- package/Screens/Designer/Containers/Edit.js +32 -98
- package/Screens/Designer/Containers/List.js +6 -14
- package/Screens/Designer/Containers/TemplateList.js +2 -11
- package/Screens/Designer/Reducers/Actions.js +16 -29
- package/Screens/Designer/Reducers/DesignerReducer.js +9 -16
- package/Screens/Designer/Screen.js +2 -14
- package/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +23 -78
- package/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +32 -101
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +7 -18
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +56 -83
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +73 -147
- package/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +43 -73
- package/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +22 -41
- package/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +13 -40
- package/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +38 -201
- package/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +5 -18
- package/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +23 -56
- package/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +14 -29
- package/Screens/Designer/SubScreens/DesignAreas/Screen.js +2 -17
- package/Screens/Designer/SubScreens/DesignAreas/Translations.js +2 -0
- package/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +2 -7
- package/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +6 -11
- package/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +2 -3
- package/Screens/Designer/SubScreens/DesignAreas/index.js +1 -7
- package/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +29 -51
- package/Screens/Designer/SubScreens/Designviews/Containers/List.js +5 -18
- package/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +45 -95
- package/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +20 -37
- package/Screens/Designer/SubScreens/Designviews/Screen.js +2 -16
- package/Screens/Designer/SubScreens/Designviews/Translations.js +2 -0
- package/Screens/Designer/SubScreens/Designviews/index.js +1 -7
- package/Screens/Designer/SubScreens/Visualization/ApiCalls.js +34 -52
- package/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +38 -66
- package/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +110 -188
- package/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +18 -56
- package/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +8 -25
- package/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +17 -55
- package/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +644 -671
- package/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +16 -56
- package/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Components/resources/point.svg +1 -0
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +1 -1
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +3 -6
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +20 -48
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +259 -446
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +65 -90
- package/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +20 -32
- package/Screens/Designer/SubScreens/Visualization/Containers/List.js +18 -66
- package/Screens/Designer/SubScreens/Visualization/Screen.js +6 -20
- package/Screens/Designer/SubScreens/Visualization/Translations.js +4 -2
- package/Screens/Designer/SubScreens/Visualization/index.js +1 -5
- package/Screens/Designer/index.js +2 -8
- package/Screens/DesignerGlobalItemPrices/Containers/Edit.js +8 -24
- package/Screens/DesignerGlobalItemPrices/Containers/List.js +9 -17
- package/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +13 -23
- package/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +12 -16
- package/Screens/DesignerGlobalItemPrices/Screen.js +2 -16
- package/Screens/DesignerGlobalItemPrices/index.js +2 -8
- package/Screens/Finder/Containers/Edit.js +7 -13
- package/Screens/Finder/Containers/List.js +2 -12
- package/Screens/Finder/Reducers/Actions.js +68 -96
- package/Screens/Finder/Reducers/FinderReducer.js +12 -16
- package/Screens/Finder/Screen.js +4 -17
- package/Screens/Finder/Translations.js +4 -2
- package/Screens/Finder/index.js +2 -8
- package/Screens/Font/Containers/Edit.js +11 -13
- package/Screens/Font/Containers/List.js +12 -26
- package/Screens/Font/Reducers/Actions.js +7 -30
- package/Screens/Font/Reducers/Reducer.js +12 -21
- package/Screens/Font/Screen.js +4 -18
- package/Screens/Font/Translations.js +4 -2
- package/Screens/Font/index.js +2 -8
- package/Screens/Group/Containers/Edit.js +7 -13
- package/Screens/Group/Containers/List.js +7 -17
- package/Screens/Group/Reducers/Actions.js +9 -19
- package/Screens/Group/Reducers/Reducer.js +13 -17
- package/Screens/Group/Screen.js +4 -18
- package/Screens/Group/Translations.js +4 -2
- package/Screens/Group/index.js +2 -8
- package/Screens/GroupEntry/Containers/Edit.js +12 -20
- package/Screens/GroupEntry/Containers/List.js +7 -17
- package/Screens/GroupEntry/Reducers/Actions.js +8 -17
- package/Screens/GroupEntry/Reducers/Reducer.js +13 -17
- package/Screens/GroupEntry/Screen.js +4 -18
- package/Screens/GroupEntry/Translations.js +4 -2
- package/Screens/GroupEntry/index.js +2 -8
- package/Screens/ImageGallery/Containers/Edit.js +28 -52
- package/Screens/ImageGallery/Containers/List.js +56 -117
- package/Screens/ImageGallery/ImageTags/Actions.js +4 -18
- package/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +1 -8
- package/Screens/ImageGallery/ImageTags/Editor.js +7 -14
- package/Screens/ImageGallery/ImageTags/Reducer.js +5 -3
- package/Screens/ImageGallery/ImageTags/TagsActions.js +16 -35
- package/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +11 -40
- package/Screens/ImageGallery/Reducers/Actions.js +14 -37
- package/Screens/ImageGallery/Reducers/Reducer.js +12 -21
- package/Screens/ImageGallery/Screen.js +4 -18
- package/Screens/ImageGallery/Translations.js +4 -2
- package/Screens/ImageGallery/index.js +2 -8
- package/Screens/ImageGallery/res/checkers_tile.png +0 -0
- package/Screens/Inspirations/Containers/Edit.js +20 -43
- package/Screens/Inspirations/Containers/InspirationsSubscreen.js +2 -16
- package/Screens/Inspirations/Containers/ItemInspirationsList.js +6 -14
- package/Screens/Inspirations/Containers/List.js +3 -14
- package/Screens/Inspirations/Reducers/Actions.js +31 -65
- package/Screens/Inspirations/Reducers/ItemInspirationsActions.js +9 -16
- package/Screens/Inspirations/Reducers/Reducer.js +13 -23
- package/Screens/Inspirations/Screen.js +14 -47
- package/Screens/Inspirations/Translations.js +6 -2
- package/Screens/Inspirations/index.js +2 -8
- package/Screens/Item/ApiCalls.js +18 -27
- package/Screens/Item/Components/AttributeEditorPopup.js +13 -46
- package/Screens/Item/Components/ConfiguratorQuickView.js +12 -29
- package/Screens/Item/Components/CopyCreatorItemDialog.js +51 -107
- package/Screens/Item/Components/ListItemStatusEditor.js +43 -89
- package/Screens/Item/Components/Styles.scss +5 -1
- package/Screens/Item/Components/Variants/VariantsAutocomplete.js +147 -248
- package/Screens/Item/Components/Variants/VariantsEditor.js +45 -164
- package/Screens/Item/Components/Variants/VariantsEditorDialog.js +20 -52
- package/Screens/Item/Components/Variants/VariantsEditorPopup.js +26 -67
- package/Screens/Item/Components/Variants/VariantsSelection.js +21 -59
- package/Screens/Item/Components/Variants/VariantsSortFilter.js +17 -69
- package/Screens/Item/Containers/Edit.js +92 -165
- package/Screens/Item/Containers/List.js +12 -39
- package/Screens/Item/DataStructures/Attributes/Actions.js +3 -19
- package/Screens/Item/DataStructures/Attributes/Editor.js +14 -24
- package/Screens/Item/DataStructures/Attributes/Reducer.js +5 -4
- package/Screens/Item/Reducers/Actions.js +15 -41
- package/Screens/Item/Reducers/ItemReducer.js +12 -19
- package/Screens/Item/Reducers/Variant/Actions.js +6 -14
- package/Screens/Item/Reducers/Variant/Reducer.js +12 -21
- package/Screens/Item/Screen.js +2 -14
- package/Screens/Item/Translations.js +6 -2
- package/Screens/Item/index.js +2 -10
- package/Screens/Itemclassification/Containers/Edit.js +9 -24
- package/Screens/Itemclassification/Containers/List.js +10 -23
- package/Screens/Itemclassification/Reducers/Actions.js +9 -20
- package/Screens/Itemclassification/Reducers/Reducer.js +12 -18
- package/Screens/Itemclassification/Screen.js +4 -17
- package/Screens/Itemclassification/Translations.js +4 -2
- package/Screens/Itemclassification/index.js +2 -8
- package/Screens/License/Reducers/Actions.js +6 -20
- package/Screens/License/Reducers/Reducer.js +9 -19
- package/Screens/License/Screen.js +10 -40
- package/Screens/License/index.js +2 -8
- package/Screens/Login/Reducers/Actions.js +11 -43
- package/Screens/Login/Reducers/Listener.js +7 -11
- package/Screens/Login/Reducers/Reducer.js +12 -29
- package/Screens/Login/Screen.js +27 -69
- package/Screens/Login/__tests/LoginScreen.js +17 -63
- package/Screens/Option/Containers/Edit.js +18 -32
- package/Screens/Option/Containers/List.js +7 -21
- package/Screens/Option/Reducers/Actions.js +7 -17
- package/Screens/Option/Reducers/Reducer.js +12 -21
- package/Screens/Option/Screen.js +2 -14
- package/Screens/Option/Translations.js +6 -2
- package/Screens/Option/index.js +2 -8
- package/Screens/OptionPools/Containers/Edit.js +15 -21
- package/Screens/OptionPools/Containers/List.js +2 -12
- package/Screens/OptionPools/Reducers/Actions.js +8 -19
- package/Screens/OptionPools/Reducers/Reducer.js +14 -19
- package/Screens/OptionPools/Screen.js +2 -14
- package/Screens/OptionPools/Translations.js +6 -2
- package/Screens/OptionPools/index.js +2 -8
- package/Screens/Optionclassification/Containers/Edit.js +27 -40
- package/Screens/Optionclassification/Containers/List.js +10 -23
- package/Screens/Optionclassification/Reducers/Actions.js +7 -17
- package/Screens/Optionclassification/Reducers/Reducer.js +12 -18
- package/Screens/Optionclassification/Screen.js +4 -18
- package/Screens/Optionclassification/Translations.js +6 -2
- package/Screens/Optionclassification/index.js +2 -8
- package/Screens/PriceTypes/Containers/Edit.js +15 -21
- package/Screens/PriceTypes/Containers/List.js +7 -19
- package/Screens/PriceTypes/Reducers/Actions.js +6 -15
- package/Screens/PriceTypes/Reducers/Reducer.js +12 -16
- package/Screens/PriceTypes/Screen.js +4 -17
- package/Screens/PriceTypes/Translations.js +6 -2
- package/Screens/PriceTypes/index.js +2 -8
- package/Screens/ProductionView/Components/ConfigurationDataSheet.js +19 -49
- package/Screens/ProductionView/Containers/Edit.js +6 -16
- package/Screens/ProductionView/Containers/List.js +14 -48
- package/Screens/ProductionView/Reducers/Actions.js +13 -23
- package/Screens/ProductionView/Reducers/Reducer.js +12 -16
- package/Screens/ProductionView/Screen.js +3 -20
- package/Screens/ProductionView/Translations.js +4 -2
- package/Screens/ProductionView/index.js +2 -8
- package/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +47 -69
- package/Screens/ReceiveOfferRequests/Containers/Edit.js +6 -16
- package/Screens/ReceiveOfferRequests/Containers/List.js +16 -47
- package/Screens/ReceiveOfferRequests/Reducers/Actions.js +13 -23
- package/Screens/ReceiveOfferRequests/Reducers/Reducer.js +11 -15
- package/Screens/ReceiveOfferRequests/Screen.js +4 -20
- package/Screens/ReceiveOfferRequests/Translations.js +10 -0
- package/Screens/ReceiveOfferRequests/index.js +2 -8
- package/Screens/Roles/Containers/Edit.js +12 -19
- package/Screens/Roles/Containers/List.js +7 -17
- package/Screens/Roles/Reducers/Actions.js +12 -21
- package/Screens/Roles/Reducers/Reducer.js +11 -15
- package/Screens/Roles/Screen.js +4 -17
- package/Screens/Roles/Translations.js +2 -0
- package/Screens/Roles/index.js +2 -8
- package/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +51 -74
- package/Screens/Savedconfigurations/Containers/Edit.js +6 -16
- package/Screens/Savedconfigurations/Containers/List.js +16 -63
- package/Screens/Savedconfigurations/Reducers/Actions.js +12 -21
- package/Screens/Savedconfigurations/Reducers/Reducer.js +11 -15
- package/Screens/Savedconfigurations/Screen.js +3 -20
- package/Screens/Savedconfigurations/Translations.js +2 -0
- package/Screens/Savedconfigurations/index.js +2 -8
- package/Screens/Setting/Containers/Edit.js +18 -43
- package/Screens/Setting/Reducers/Actions.js +23 -46
- package/Screens/Setting/Reducers/Reducer.js +12 -16
- package/Screens/Setting/Screen.js +1 -10
- package/Screens/Setting/Translations.js +2 -0
- package/Screens/Setting/index.js +2 -8
- package/Screens/SoftwareUpdates/Reducers/Actions.js +5 -13
- package/Screens/SoftwareUpdates/Reducers/Reducer.js +9 -20
- package/Screens/SoftwareUpdates/Screen.js +5 -26
- package/Screens/SoftwareUpdates/index.js +2 -8
- package/Screens/Tag/Containers/Edit.js +5 -8
- package/Screens/Tag/Containers/List.js +6 -17
- package/Screens/Tag/Reducers/Actions.js +16 -35
- package/Screens/Tag/Reducers/Reducer.js +12 -16
- package/Screens/Tag/Screen.js +1 -11
- package/Screens/Tag/Translations.js +4 -2
- package/Screens/Tag/index.js +2 -8
- package/Screens/TrackingCodes/Containers/Edit.js +6 -12
- package/Screens/TrackingCodes/Containers/List.js +2 -12
- package/Screens/TrackingCodes/Reducers/Actions.js +16 -34
- package/Screens/TrackingCodes/Reducers/Reducer.js +11 -18
- package/Screens/TrackingCodes/Screen.js +2 -14
- package/Screens/TrackingCodes/Translations.js +4 -2
- package/Screens/TrackingCodes/index.js +2 -8
- package/Screens/TranslationFileHandling/Containers/Edit.js +126 -161
- package/Screens/TranslationFileHandling/Containers/List.js +7 -16
- package/Screens/TranslationFileHandling/Reducers/Actions.js +6 -15
- package/Screens/TranslationFileHandling/Reducers/Reducer.js +12 -16
- package/Screens/TranslationFileHandling/Screen.js +4 -17
- package/Screens/TranslationFileHandling/Translations.js +4 -2
- package/Screens/TranslationFileHandling/index.js +2 -8
- package/Screens/User/Containers/Edit.js +9 -9
- package/Screens/User/Containers/List.js +13 -8
- package/Screens/User/Reducers/Actions.js +16 -33
- package/Screens/User/Reducers/Reducer.js +12 -16
- package/Screens/User/Screen.js +1 -11
- package/Screens/User/Translations.js +3 -1
- package/Screens/User/__tests/UserScreen.js +31 -75
- package/Screens/User/index.js +2 -8
- package/Screens/index.js +4 -62
- package/UIComponents/AppBar.js +1 -5
- package/UIComponents/AutoComplete.js +49 -110
- package/UIComponents/Button.js +1 -5
- package/UIComponents/ButtonBase.js +1 -5
- package/UIComponents/Checkbox.js +1 -5
- package/UIComponents/Chip.js +1 -5
- package/UIComponents/ChipInput.js +40 -98
- package/UIComponents/CircularProgress.js +2 -5
- package/UIComponents/ClickAwayListener.js +1 -5
- package/UIComponents/Collapse.js +1 -5
- package/UIComponents/DatePicker.js +4 -20
- package/UIComponents/DateTimePicker.js +4 -20
- package/UIComponents/Dialog.js +8 -27
- package/UIComponents/Drawer.js +1 -5
- package/UIComponents/FlatButton.js +6 -22
- package/UIComponents/FloatingActionButton.js +3 -10
- package/UIComponents/FontIcon.js +1 -5
- package/UIComponents/FormControl.js +1 -5
- package/UIComponents/FormControlLabel.js +1 -5
- package/UIComponents/Grow.js +1 -5
- package/UIComponents/IconButton.js +1 -5
- package/UIComponents/IconMenu.js +22 -70
- package/UIComponents/InlineHelp/index.js +14 -42
- package/UIComponents/Input.js +1 -5
- package/UIComponents/InputAdornment.js +1 -5
- package/UIComponents/InputLabel.js +1 -5
- package/UIComponents/LinearProgress.js +1 -5
- package/UIComponents/Link.js +3 -14
- package/UIComponents/List.js +1 -5
- package/UIComponents/ListItem.js +1 -5
- package/UIComponents/ListItemIcon.js +1 -5
- package/UIComponents/ListItemText.js +1 -5
- package/UIComponents/Menu.js +1 -5
- package/UIComponents/MenuItem.js +1 -5
- package/UIComponents/MenuList.js +1 -5
- package/UIComponents/Pagination.js +20 -64
- package/UIComponents/Paper.js +1 -5
- package/UIComponents/Popper.js +1 -5
- package/UIComponents/RadioButton/RadioButton.js +1 -5
- package/UIComponents/RadioButton/RadioGroup.js +1 -5
- package/UIComponents/RadioButton/index.js +0 -3
- package/UIComponents/RaisedButton.js +7 -21
- package/UIComponents/SelectField.js +25 -53
- package/UIComponents/Snackbar.js +1 -5
- package/UIComponents/Table/Table.js +18 -67
- package/UIComponents/Table/TableBody.js +15 -43
- package/UIComponents/Table/TableCell.js +1 -5
- package/UIComponents/Table/TableFooter.js +1 -5
- package/UIComponents/Table/TableHead.js +15 -45
- package/UIComponents/Table/TableHeadColumn.js +1 -5
- package/UIComponents/Table/TableRow.js +15 -41
- package/UIComponents/Table/TableRowColumn.js +1 -5
- package/UIComponents/Table/index.js +0 -8
- package/UIComponents/TableSortLabel.js +1 -5
- package/UIComponents/Tabs/Tab.js +1 -5
- package/UIComponents/Tabs/Tabs.js +1 -5
- package/UIComponents/Tabs/index.js +4 -7
- package/UIComponents/TextField.js +1 -5
- package/UIComponents/TimePicker.js +6 -22
- package/UIComponents/Toggle.js +1 -5
- package/UIComponents/Toolbar.js +1 -5
- package/UIComponents/Tooltip.js +1 -7
- package/UIComponents/Typography.js +1 -5
- package/UIComponents/icons/AccountCircleIcon.js +1 -5
- package/UIComponents/icons/AddCircleOutlineIcon.js +1 -5
- package/UIComponents/icons/AddIcon.js +1 -5
- package/UIComponents/icons/ArrowBackIcon.js +1 -5
- package/UIComponents/icons/CheckmarkIcon.js +1 -5
- package/UIComponents/icons/CloseIcon.js +1 -5
- package/UIComponents/icons/DeleteForeverIcon.js +1 -5
- package/UIComponents/icons/DeleteIcon.js +1 -5
- package/UIComponents/icons/ErrorIcon.js +1 -5
- package/UIComponents/icons/ExpandLessIcon.js +1 -5
- package/UIComponents/icons/ExpandMoreIcon.js +1 -5
- package/UIComponents/icons/FolderIcon.js +1 -5
- package/UIComponents/icons/ForwardIcon.js +1 -5
- package/UIComponents/icons/InfoIcon.js +1 -5
- package/UIComponents/icons/InfoOutlineIcon.js +1 -5
- package/UIComponents/icons/LanguageIcon.js +1 -5
- package/UIComponents/icons/LaunchIcon.js +1 -5
- package/UIComponents/icons/MenuIcon.js +1 -5
- package/UIComponents/icons/PriceIcon.js +1 -5
- package/UIComponents/icons/ReorderIcon.js +1 -5
- package/UIComponents/icons/SearchIcon.js +1 -5
- package/UIComponents/icons/SettingsIcon.js +1 -5
- package/UIComponents/icons/SortIcon.js +1 -5
- package/UIComponents/icons/TranslateIcon.js +1 -5
- package/UIComponents/icons/UpdateIcon.js +1 -5
- package/UIComponents/icons/ViewListIcon.js +1 -5
- package/UIComponents/icons/ZoomResetIcon.js +1 -5
- package/Utils/Async/Deferred.js +11 -40
- package/Utils/Async/newestRequest.js +30 -42
- package/Utils/Decorators/Observable.js +10 -30
- package/Utils/Dev/RequestApiToken.js +4 -13
- package/Utils/Dev/withStateProps.js +9 -24
- package/Utils/Error/createError.js +3 -11
- package/Utils/Events/pointerEvent.js +7 -30
- package/Utils/FunDraw/createMask.js +70 -85
- package/Utils/FunDraw/funDraw.js +201 -333
- package/Utils/FunDraw/movableObject.js +89 -127
- package/Utils/Function/sendMessage.js +3 -8
- package/Utils/HOCs/AsyncProps.js +44 -69
- package/Utils/HOCs/LocalState.js +18 -48
- package/Utils/HOCs/RemappedProps.js +3 -9
- package/Utils/Request/lazyFetch.js +56 -84
- package/Utils/Request/pathParams.js +2 -7
- package/Utils/Test/provideStore.js +1 -9
- package/Utils/Test/wrapperSelectors.js +4 -10
- package/default.js +0 -7
- package/dev.js +2 -11
- package/index.js +1 -4
- package/package.json +28 -25
- package/scripts/getDefaultBabelConfig.js +12 -8
- package/scripts/getDefaultWebpackConfig.js +54 -29
- package/src/App/Api.js +0 -196
- package/src/App/Config/app.js +0 -57
- package/src/App/Config/defaultConfig.js +0 -183
- package/src/App/Config/icons.js +0 -17
- package/src/App/Config/network.js +0 -19
- package/src/App/Data.js +0 -351
- package/src/App/Entity.js +0 -93
- package/src/App/ErrorBoundary.js +0 -67
- package/src/App/FeatureReducers.js +0 -36
- package/src/App/Frame.js +0 -125
- package/src/App/Listeners.js +0 -20
- package/src/App/Main.js +0 -185
- package/src/App/Reducers/Api/Actions.js +0 -177
- package/src/App/Reducers/Api/Helpers.js +0 -66
- package/src/App/Reducers/Api/Reducer.js +0 -116
- package/src/App/Reducers/Common/Form/Actions.js +0 -6
- package/src/App/Reducers/Common/Form/Reducer.js +0 -48
- package/src/App/Reducers/Common/Language/Actions.js +0 -6
- package/src/App/Reducers/Common/Language/Reducer.js +0 -27
- package/src/App/Reducers/Common/OrderList/Actions.js +0 -45
- package/src/App/Reducers/Common/OrderList/Listener.js +0 -24
- package/src/App/Reducers/Common/OrderList/Reducer.js +0 -79
- package/src/App/Reducers/Common/index.js +0 -9
- package/src/App/Reducers/Config/Actions.js +0 -7
- package/src/App/Reducers/Config/Reducer.js +0 -20
- package/src/App/Reducers/Entity/Actions.js +0 -517
- package/src/App/Reducers/Entity/Reducer.js +0 -340
- package/src/App/Reducers/Frame/Actions.js +0 -19
- package/src/App/Reducers/Frame/Reducer.js +0 -115
- package/src/App/Reducers/index.js +0 -32
- package/src/App/ReduxListener.js +0 -38
- package/src/App/ReduxPersistLoader.js +0 -12
- package/src/App/Routes.js +0 -41
- package/src/App/Selectors/Credentials/hasCredentialFor.js +0 -4
- package/src/App/Selectors/Credentials/hasCredentialFor.test.js +0 -17
- package/src/App/Services/ElementRef.js +0 -13
- package/src/App/Services/WindowCommunication.js +0 -33
- package/src/App/Services/index.js +0 -5
- package/src/App/Store.js +0 -71
- package/src/App/Styles.scss +0 -185
- package/src/App/TestHelpers.js +0 -59
- package/src/App/ThemeProvider.js +0 -56
- package/src/App/Translations.js +0 -174
- package/src/App/Utils.js +0 -20
- package/src/App/customSetup.js +0 -3
- package/src/App/i18n.js +0 -215
- package/src/App/index.js +0 -27
- package/src/App/initServices.js +0 -47
- package/src/App/setup.js +0 -18
- package/src/AppContainer.js +0 -11
- package/src/Components/AddButton.js +0 -15
- package/src/Components/AppBar.js +0 -64
- package/src/Components/CallToActionField.js +0 -95
- package/src/Components/CopyPaste.js +0 -55
- package/src/Components/DefaultConnectedForm.js +0 -85
- package/src/Components/DefaultConnectedList.js +0 -146
- package/src/Components/DefaultConnectedScreen.js +0 -66
- package/src/Components/DefaultForm.js +0 -40
- package/src/Components/DefaultList.js +0 -225
- package/src/Components/DefaultScreen.js +0 -106
- package/src/Components/Error.js +0 -20
- package/src/Components/Form.js +0 -270
- package/src/Components/FormFragments/AttributeValueChip.js +0 -140
- package/src/Components/FormFragments/AutoComplete.js +0 -184
- package/src/Components/FormFragments/AutocompleteEntity.js +0 -206
- package/src/Components/FormFragments/Checkbox.js +0 -26
- package/src/Components/FormFragments/Chip.js +0 -126
- package/src/Components/FormFragments/DatePicker.js +0 -15
- package/src/Components/FormFragments/DateTimePicker.js +0 -21
- package/src/Components/FormFragments/DynSourceInput.js +0 -128
- package/src/Components/FormFragments/ErrorWrapper.js +0 -15
- package/src/Components/FormFragments/File.js +0 -202
- package/src/Components/FormFragments/HintText.js +0 -14
- package/src/Components/FormFragments/InlineAddButton.js +0 -109
- package/src/Components/FormFragments/InputArray.js +0 -246
- package/src/Components/FormFragments/InputGroup.js +0 -46
- package/src/Components/FormFragments/InputWithSource.js +0 -49
- package/src/Components/FormFragments/IntlInput.js +0 -98
- package/src/Components/FormFragments/Label.js +0 -15
- package/src/Components/FormFragments/MarkDown.js +0 -128
- package/src/Components/FormFragments/MonacoEditor.js +0 -75
- package/src/Components/FormFragments/NestedDataComponent.js +0 -144
- package/src/Components/FormFragments/ObjectToggle.js +0 -75
- package/src/Components/FormFragments/RadioGroup.js +0 -31
- package/src/Components/FormFragments/Select.js +0 -51
- package/src/Components/FormFragments/SetInput.js +0 -67
- package/src/Components/FormFragments/SimpleNestedData.js +0 -28
- package/src/Components/FormFragments/SimpleTable.js +0 -224
- package/src/Components/FormFragments/SimpleTextEditor.js +0 -26
- package/src/Components/FormFragments/Styles.scss +0 -119
- package/src/Components/FormFragments/Tabs.js +0 -207
- package/src/Components/FormFragments/Text.js +0 -36
- package/src/Components/FormFragments/TimePicker.js +0 -16
- package/src/Components/FormFragments/Toggle.js +0 -81
- package/src/Components/FormFragments/TwoSideSelect.js +0 -163
- package/src/Components/FormFragments/Value.js +0 -33
- package/src/Components/FormFragments/index.js +0 -48
- package/src/Components/FormFragments/styles.js +0 -24
- package/src/Components/FormHooks/useDataSchema.js +0 -33
- package/src/Components/GeneralFragments/Box.js +0 -12
- package/src/Components/GeneralFragments/ConfigurationEditor.js +0 -111
- package/src/Components/GeneralFragments/ConfiguratorOverlay.js +0 -56
- package/src/Components/GeneralFragments/Content.js +0 -12
- package/src/Components/GeneralFragments/Headline.js +0 -16
- package/src/Components/GeneralFragments/Image.js +0 -25
- package/src/Components/GeneralFragments/MiniPopup.js +0 -105
- package/src/Components/GeneralFragments/Styles.scss +0 -8
- package/src/Components/GeneralFragments/index.js +0 -13
- package/src/Components/InputHelpers.js +0 -7
- package/src/Components/Join.js +0 -14
- package/src/Components/LicenseInfo.js +0 -86
- package/src/Components/List.js +0 -355
- package/src/Components/ListColumnFilter.js +0 -200
- package/src/Components/LocaleSwitch.js +0 -39
- package/src/Components/LocalizedPriceTextField.js +0 -74
- package/src/Components/LocalizedPriceValue.js +0 -20
- package/src/Components/Menu.js +0 -127
- package/src/Components/ModalContainer.js +0 -79
- package/src/Components/OrderList.js +0 -169
- package/src/Components/OverlayContainer.js +0 -22
- package/src/Components/Pagination.js +0 -90
- package/src/Components/ProfileButton.js +0 -44
- package/src/Components/SearchBar.js +0 -105
- package/src/Components/SplitContainer.js +0 -40
- package/src/Components/Styles.scss +0 -114
- package/src/Components/TranslateComponent.js +0 -140
- package/src/Components/TranslationFinder.js +0 -30
- package/src/Components/Translations.js +0 -110
- package/src/Components/ValidatorCallbackProvider.js +0 -44
- package/src/Components/VersionBadge.js +0 -27
- package/src/Components/VersionUpdateChip.js +0 -30
- package/src/Components/__tests__/LicenseInfo.test.js +0 -22
- package/src/Components/__tests__/__snapshots__/LicenseInfo.test.js.snap +0 -39
- package/src/Components/withLoadAction.js +0 -15
- package/src/Components/withTranslationFinder.js +0 -17
- package/src/Screens/ApiKeys/Containers/Edit.js +0 -74
- package/src/Screens/ApiKeys/Containers/List.js +0 -49
- package/src/Screens/ApiKeys/Reducers/Actions.js +0 -21
- package/src/Screens/ApiKeys/Reducers/Reducer.js +0 -24
- package/src/Screens/ApiKeys/Screen.js +0 -19
- package/src/Screens/ApiKeys/Styles.scss +0 -3
- package/src/Screens/ApiKeys/Translations.js +0 -29
- package/src/Screens/ApiKeys/index.js +0 -10
- package/src/Screens/Assemblypointeditor/Components/AssemblypointTable.js +0 -94
- package/src/Screens/Assemblypointeditor/Components/Assemblypointeditor.js +0 -703
- package/src/Screens/Assemblypointeditor/Components/Styles.scss +0 -58
- package/src/Screens/Assemblypointeditor/Components/fabric.min.js +0 -12282
- package/src/Screens/Assemblypointeditor/Containers/Edit.js +0 -57
- package/src/Screens/Assemblypointeditor/Containers/List.js +0 -48
- package/src/Screens/Assemblypointeditor/Reducers/Actions.js +0 -67
- package/src/Screens/Assemblypointeditor/Reducers/Reducer.js +0 -77
- package/src/Screens/Assemblypointeditor/Screen.js +0 -34
- package/src/Screens/Assemblypointeditor/Styles.scss +0 -38
- package/src/Screens/Assemblypointeditor/Translations.js +0 -11
- package/src/Screens/Assemblypointeditor/index.js +0 -9
- package/src/Screens/Attribute/Containers/Edit.js +0 -52
- package/src/Screens/Attribute/Containers/List.js +0 -53
- package/src/Screens/Attribute/Reducers/Actions.js +0 -25
- package/src/Screens/Attribute/Reducers/Reducer.js +0 -23
- package/src/Screens/Attribute/Screen.js +0 -24
- package/src/Screens/Attribute/Styles.scss +0 -0
- package/src/Screens/Attribute/Translations.js +0 -27
- package/src/Screens/Attribute/__tests/AttributeScreen.js +0 -348
- package/src/Screens/Attribute/index.js +0 -9
- package/src/Screens/AttributeValue/Containers/Edit.js +0 -37
- package/src/Screens/AttributeValue/Containers/List.js +0 -40
- package/src/Screens/AttributeValue/Reducers/Actions.js +0 -13
- package/src/Screens/AttributeValue/Reducers/Reducer.js +0 -24
- package/src/Screens/AttributeValue/Screen.js +0 -20
- package/src/Screens/AttributeValue/Styles.scss +0 -0
- package/src/Screens/AttributeValue/Translations.js +0 -18
- package/src/Screens/AttributeValue/__tests/AttributeValueScreen.js +0 -338
- package/src/Screens/AttributeValue/index.js +0 -9
- package/src/Screens/ChangePassword/Reducers/Actions.js +0 -45
- package/src/Screens/ChangePassword/Reducers/Reducer.js +0 -30
- package/src/Screens/ChangePassword/Screen.js +0 -185
- package/src/Screens/ChangePassword/Translations.js +0 -23
- package/src/Screens/ChangePassword/__tests__/ChangePasswordScreen.test.js +0 -15
- package/src/Screens/ChangePassword/__tests__/__snapshots__/ChangePasswordScreen.test.js.snap +0 -180
- package/src/Screens/ChangePassword/index.js +0 -9
- package/src/Screens/Channel/Containers/Edit.js +0 -58
- package/src/Screens/Channel/Containers/List.js +0 -29
- package/src/Screens/Channel/Reducers/Actions.js +0 -7
- package/src/Screens/Channel/Reducers/Reducer.js +0 -37
- package/src/Screens/Channel/Screen.js +0 -18
- package/src/Screens/Channel/Translations.js +0 -20
- package/src/Screens/Channel/__tests/ChannelScreen.js +0 -315
- package/src/Screens/Channel/index.js +0 -9
- package/src/Screens/Client/Components/ColorTextField.js +0 -74
- package/src/Screens/Client/Components/PdfMarkdownField.js +0 -127
- package/src/Screens/Client/Containers/Edit.js +0 -196
- package/src/Screens/Client/Containers/List.js +0 -36
- package/src/Screens/Client/Reducers/Actions.js +0 -74
- package/src/Screens/Client/Reducers/Reducer.js +0 -67
- package/src/Screens/Client/Screen.js +0 -20
- package/src/Screens/Client/Styles.scss +0 -3
- package/src/Screens/Client/Translations.js +0 -61
- package/src/Screens/Client/index.js +0 -9
- package/src/Screens/ColorPalettes/Components/DefaultColorSwitch.js +0 -61
- package/src/Screens/ColorPalettes/Containers/Edit.js +0 -121
- package/src/Screens/ColorPalettes/Containers/List.js +0 -41
- package/src/Screens/ColorPalettes/Reducers/Actions.js +0 -13
- package/src/Screens/ColorPalettes/Reducers/Reducer.js +0 -35
- package/src/Screens/ColorPalettes/Screen.js +0 -20
- package/src/Screens/ColorPalettes/Styles.scss +0 -0
- package/src/Screens/ColorPalettes/Translations.js +0 -25
- package/src/Screens/ColorPalettes/index.js +0 -9
- package/src/Screens/ConfigurationTypeEditor/Containers/Edit.js +0 -59
- package/src/Screens/ConfigurationTypeEditor/Containers/List.js +0 -55
- package/src/Screens/ConfigurationTypeEditor/Reducers/Actions.js +0 -78
- package/src/Screens/ConfigurationTypeEditor/Reducers/Reducer.js +0 -106
- package/src/Screens/ConfigurationTypeEditor/Screen.js +0 -71
- package/src/Screens/ConfigurationTypeEditor/Styles.scss +0 -0
- package/src/Screens/ConfigurationTypeEditor/Translations.js +0 -15
- package/src/Screens/ConfigurationTypeEditor/index.js +0 -1
- package/src/Screens/ConfigurationVariants/Containers/Edit.js +0 -99
- package/src/Screens/ConfigurationVariants/Containers/List.js +0 -29
- package/src/Screens/ConfigurationVariants/Containers/Styles.scss +0 -13
- package/src/Screens/ConfigurationVariants/Reducers/Actions.js +0 -10
- package/src/Screens/ConfigurationVariants/Reducers/Reducer.js +0 -33
- package/src/Screens/ConfigurationVariants/Screen.js +0 -18
- package/src/Screens/ConfigurationVariants/Translations.js +0 -36
- package/src/Screens/ConfigurationVariants/index.js +0 -9
- package/src/Screens/ConfigurationWorkflowStatus/Containers/Edit.js +0 -57
- package/src/Screens/ConfigurationWorkflowStatus/Containers/List.js +0 -170
- package/src/Screens/ConfigurationWorkflowStatus/Reducers/Actions.js +0 -82
- package/src/Screens/ConfigurationWorkflowStatus/Reducers/Reducer.js +0 -97
- package/src/Screens/ConfigurationWorkflowStatus/Screen.js +0 -38
- package/src/Screens/ConfigurationWorkflowStatus/Styles.scss +0 -0
- package/src/Screens/ConfigurationWorkflowStatus/Translations.js +0 -51
- package/src/Screens/ConfigurationWorkflowStatus/index.js +0 -10
- package/src/Screens/ConfigurationWorkflowStatus/initServices.js +0 -7
- package/src/Screens/Creator/Components/BaseConfigurationEditor.js +0 -179
- package/src/Screens/Creator/Components/CheckData/ApiCalls.js +0 -5
- package/src/Screens/Creator/Components/CheckData/CheckData.js +0 -222
- package/src/Screens/Creator/Components/CheckData/Constants.js +0 -31
- package/src/Screens/Creator/Components/CheckData/Translations.js +0 -119
- package/src/Screens/Creator/Components/ComponentEditor.js +0 -155
- package/src/Screens/Creator/Components/ConfiguratorQuickView.js +0 -83
- package/src/Screens/Creator/Components/OptionPriceEditor.js +0 -120
- package/src/Screens/Creator/Components/OptionclassificationEditor.js +0 -483
- package/src/Screens/Creator/Components/Rules/Containers/Edit.js +0 -180
- package/src/Screens/Creator/Components/Rules/Containers/List.js +0 -42
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AdditionalOption.js +0 -37
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js +0 -43
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/DefaultOption.js +0 -31
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMatch.js +0 -35
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/ItemAttributeMaxSum.js +0 -34
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMaxAmount.js +0 -35
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionClassificationMinAmount.js +0 -34
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionDependency.js +0 -37
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionExclusion.js +0 -36
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/OptionMaxAmount.js +0 -34
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/RuleForm.js +0 -155
- package/src/Screens/Creator/Components/Rules/Containers/RuleForms/index.js +0 -23
- package/src/Screens/Creator/Components/Rules/Styles.scss +0 -38
- package/src/Screens/Creator/Components/Rules/Translations.js +0 -226
- package/src/Screens/Creator/Components/Rules/index.js +0 -26
- package/src/Screens/Creator/Components/ShowPreviewErrorDialog.js +0 -46
- package/src/Screens/Creator/Components/VisualizationAndMediaData/ApiCalls.js +0 -8
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ConfirmDelete.js +0 -41
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +0 -83
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/Image.js +0 -93
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ImageEditTools.js +0 -117
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/PathStructure.js +0 -76
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Components/ViewEdit.js +0 -58
- package/src/Screens/Creator/Components/VisualizationAndMediaData/Translations.js +0 -101
- package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.js +0 -766
- package/src/Screens/Creator/Components/VisualizationAndMediaData/VisualizationAndMediaData.test.js +0 -610
- package/src/Screens/Creator/Components/VisualizationAndMediaData/__snapshots__/VisualizationAndMediaData.test.js.snap +0 -17
- package/src/Screens/Creator/Components/VisualizationAndMediaData/dev.js +0 -341
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/component_1.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_1.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/option_3_fullsize.jpg +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_1.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_1_option_3.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_1.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/devImages/view_2_option_3.png +0 -0
- package/src/Screens/Creator/Components/VisualizationAndMediaData/index.js +0 -1
- package/src/Screens/Creator/Containers/Edit.js +0 -392
- package/src/Screens/Creator/Containers/List.js +0 -44
- package/src/Screens/Creator/Reducers/Actions.js +0 -25
- package/src/Screens/Creator/Reducers/ConfigurationActions.js +0 -254
- package/src/Screens/Creator/Reducers/ConfigurationReducer.js +0 -398
- package/src/Screens/Creator/Reducers/CreatorReducer.js +0 -32
- package/src/Screens/Creator/Reducers/Rules/Actions.js +0 -80
- package/src/Screens/Creator/Reducers/Rules/Reducer.js +0 -169
- package/src/Screens/Creator/Screen.js +0 -19
- package/src/Screens/Creator/Translations.js +0 -152
- package/src/Screens/Creator/index.js +0 -13
- package/src/Screens/CurrentClient/Containers/Edit.js +0 -146
- package/src/Screens/CurrentClient/Reducers/Actions.js +0 -16
- package/src/Screens/CurrentClient/Reducers/Reducer.js +0 -44
- package/src/Screens/CurrentClient/Screen.js +0 -5
- package/src/Screens/CurrentClient/Translations.js +0 -11
- package/src/Screens/CurrentClient/index.js +0 -9
- package/src/Screens/Dashboard/Screen.js +0 -25
- package/src/Screens/Dashboard/Styles.scss +0 -3
- package/src/Screens/Dashboard/Translations.js +0 -15
- package/src/Screens/DefaultClient/Containers/Edit.js +0 -162
- package/src/Screens/DefaultClient/Reducers/Actions.js +0 -16
- package/src/Screens/DefaultClient/Reducers/Reducer.js +0 -45
- package/src/Screens/DefaultClient/Screen.js +0 -5
- package/src/Screens/DefaultClient/Translations.js +0 -11
- package/src/Screens/DefaultClient/index.js +0 -9
- package/src/Screens/Demo/Screen.js +0 -92
- package/src/Screens/Demo/Styles.scss +0 -3
- package/src/Screens/Demo/index.js +0 -5
- package/src/Screens/DesignProductionMethods/Containers/Edit.js +0 -257
- package/src/Screens/DesignProductionMethods/Containers/List.js +0 -43
- package/src/Screens/DesignProductionMethods/Reducers/Actions.js +0 -14
- package/src/Screens/DesignProductionMethods/Reducers/DesignProductionMethodsReducer.js +0 -93
- package/src/Screens/DesignProductionMethods/Screen.js +0 -18
- package/src/Screens/DesignProductionMethods/Translations.js +0 -79
- package/src/Screens/DesignProductionMethods/index.js +0 -10
- package/src/Screens/DesignTemplateEditor/Containers/List.js +0 -65
- package/src/Screens/DesignTemplateEditor/Reducers/Actions.js +0 -8
- package/src/Screens/DesignTemplateEditor/Reducers/Reducer.js +0 -14
- package/src/Screens/DesignTemplateEditor/Screen.js +0 -14
- package/src/Screens/DesignTemplateEditor/Translations.js +0 -17
- package/src/Screens/DesignTemplateEditor/index.js +0 -9
- package/src/Screens/Designer/Components/ConfiguratorQuickView.js +0 -84
- package/src/Screens/Designer/Components/DesignDataTransfer.js +0 -305
- package/src/Screens/Designer/Components/TemplateDefaultList.js +0 -341
- package/src/Screens/Designer/Components/TemplateList.js +0 -249
- package/src/Screens/Designer/Containers/Edit.js +0 -234
- package/src/Screens/Designer/Containers/List.js +0 -42
- package/src/Screens/Designer/Containers/TemplateList.js +0 -49
- package/src/Screens/Designer/Reducers/Actions.js +0 -29
- package/src/Screens/Designer/Reducers/DesignerReducer.js +0 -37
- package/src/Screens/Designer/Screen.js +0 -18
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +0 -387
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.dev.js +0 -61
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.js +0 -150
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/FormArray.test.js +0 -46
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/InlineFileInput.js +0 -53
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorCanvas.js +0 -78
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.dev.js +0 -57
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/MaskEditorField.js +0 -310
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/masks/circle.svg +0 -4
- package/src/Screens/Designer/SubScreens/DesignAreas/Components/MaskEditorField/withFileUpload.js +0 -40
- package/src/Screens/Designer/SubScreens/DesignAreas/Containers/ConnectedMaskEditorField.js +0 -66
- package/src/Screens/Designer/SubScreens/DesignAreas/Containers/Edit.js +0 -154
- package/src/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +0 -1002
- package/src/Screens/Designer/SubScreens/DesignAreas/Containers/List.js +0 -47
- package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Actions.js +0 -94
- package/src/Screens/Designer/SubScreens/DesignAreas/Reducers/Reducer.js +0 -247
- package/src/Screens/Designer/SubScreens/DesignAreas/Screen.js +0 -19
- package/src/Screens/Designer/SubScreens/DesignAreas/Styles.scss +0 -0
- package/src/Screens/Designer/SubScreens/DesignAreas/Translations.js +0 -141
- package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getFreeFormUrl.js +0 -15
- package/src/Screens/Designer/SubScreens/DesignAreas/Utils/getMaskSrcByType.js +0 -9
- package/src/Screens/Designer/SubScreens/DesignAreas/Utils/maskTypes.js +0 -5
- package/src/Screens/Designer/SubScreens/DesignAreas/index.js +0 -7
- package/src/Screens/Designer/SubScreens/Designviews/Containers/Edit.js +0 -138
- package/src/Screens/Designer/SubScreens/Designviews/Containers/List.js +0 -47
- package/src/Screens/Designer/SubScreens/Designviews/Reducers/Actions.js +0 -186
- package/src/Screens/Designer/SubScreens/Designviews/Reducers/Reducer.js +0 -111
- package/src/Screens/Designer/SubScreens/Designviews/Screen.js +0 -18
- package/src/Screens/Designer/SubScreens/Designviews/Translations.js +0 -23
- package/src/Screens/Designer/SubScreens/Designviews/index.js +0 -7
- package/src/Screens/Designer/SubScreens/Visualization/ApiCalls.js +0 -14
- package/src/Screens/Designer/SubScreens/Visualization/Components/AdvancedShapeEditor.js +0 -247
- package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditor.js +0 -174
- package/src/Screens/Designer/SubScreens/Visualization/Components/AreaEditorForm.js +0 -139
- package/src/Screens/Designer/SubScreens/Visualization/Components/EntryList.js +0 -49
- package/src/Screens/Designer/SubScreens/Visualization/Components/ExpansionContainer.js +0 -68
- package/src/Screens/Designer/SubScreens/Visualization/Components/Three2DEditor.js +0 -566
- package/src/Screens/Designer/SubScreens/Visualization/Components/VisualizationContainer.js +0 -88
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/logo.svg +0 -120
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/move.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-x.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-y.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate-z.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/rotate.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Components/resources/size.svg +0 -1
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Constants.js +0 -3
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/DataLinks.js +0 -121
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.dev.js +0 -460
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/Edit.js +0 -789
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/VisualizationUtils.js +0 -98
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/__tests__/calculateBoundingBoxSize.test.js +0 -46
- package/src/Screens/Designer/SubScreens/Visualization/Containers/Edit/calculateBoundingBoxSize.js +0 -40
- package/src/Screens/Designer/SubScreens/Visualization/Containers/List.js +0 -132
- package/src/Screens/Designer/SubScreens/Visualization/Screen.js +0 -37
- package/src/Screens/Designer/SubScreens/Visualization/Translations.js +0 -82
- package/src/Screens/Designer/SubScreens/Visualization/index.js +0 -3
- package/src/Screens/Designer/Translations.js +0 -55
- package/src/Screens/Designer/__tests__/DesigAreaEdit.js +0 -9
- package/src/Screens/Designer/__tests__/FormProductionMethods.test.js +0 -165
- package/src/Screens/Designer/__tests__/__snapshots__/FormProductionMethods.test.js.snap +0 -434
- package/src/Screens/Designer/index.js +0 -11
- package/src/Screens/DesignerGlobalItemPrices/Containers/Edit.js +0 -106
- package/src/Screens/DesignerGlobalItemPrices/Containers/List.js +0 -37
- package/src/Screens/DesignerGlobalItemPrices/Reducers/Actions.js +0 -17
- package/src/Screens/DesignerGlobalItemPrices/Reducers/Reducer.js +0 -52
- package/src/Screens/DesignerGlobalItemPrices/Screen.js +0 -20
- package/src/Screens/DesignerGlobalItemPrices/Translations.js +0 -29
- package/src/Screens/DesignerGlobalItemPrices/index.js +0 -11
- package/src/Screens/Finder/Containers/Edit.js +0 -35
- package/src/Screens/Finder/Containers/List.js +0 -36
- package/src/Screens/Finder/Reducers/Actions.js +0 -97
- package/src/Screens/Finder/Reducers/FinderReducer.js +0 -22
- package/src/Screens/Finder/Screen.js +0 -19
- package/src/Screens/Finder/Translations.js +0 -13
- package/src/Screens/Finder/index.js +0 -11
- package/src/Screens/Font/Containers/Edit.js +0 -55
- package/src/Screens/Font/Containers/List.js +0 -54
- package/src/Screens/Font/Reducers/Actions.js +0 -97
- package/src/Screens/Font/Reducers/Reducer.js +0 -40
- package/src/Screens/Font/Screen.js +0 -20
- package/src/Screens/Font/Styles.scss +0 -0
- package/src/Screens/Font/Translations.js +0 -17
- package/src/Screens/Font/index.js +0 -9
- package/src/Screens/Group/Containers/Edit.js +0 -34
- package/src/Screens/Group/Containers/List.js +0 -30
- package/src/Screens/Group/Reducers/Actions.js +0 -12
- package/src/Screens/Group/Reducers/Reducer.js +0 -21
- package/src/Screens/Group/Screen.js +0 -20
- package/src/Screens/Group/Styles.scss +0 -0
- package/src/Screens/Group/Translations.js +0 -19
- package/src/Screens/Group/index.js +0 -10
- package/src/Screens/GroupEntry/Containers/Edit.js +0 -46
- package/src/Screens/GroupEntry/Containers/List.js +0 -30
- package/src/Screens/GroupEntry/Reducers/Actions.js +0 -12
- package/src/Screens/GroupEntry/Reducers/Reducer.js +0 -21
- package/src/Screens/GroupEntry/Screen.js +0 -20
- package/src/Screens/GroupEntry/Styles.scss +0 -0
- package/src/Screens/GroupEntry/Translations.js +0 -17
- package/src/Screens/GroupEntry/index.js +0 -10
- package/src/Screens/ImageGallery/Containers/Edit.js +0 -119
- package/src/Screens/ImageGallery/Containers/List.js +0 -170
- package/src/Screens/ImageGallery/ImageTags/Actions.js +0 -25
- package/src/Screens/ImageGallery/ImageTags/Container/TagsEdit.js +0 -35
- package/src/Screens/ImageGallery/ImageTags/Editor.js +0 -54
- package/src/Screens/ImageGallery/ImageTags/Reducer.js +0 -20
- package/src/Screens/ImageGallery/ImageTags/TagsActions.js +0 -20
- package/src/Screens/ImageGallery/ImageTags/TagsEditorPopup.js +0 -35
- package/src/Screens/ImageGallery/Reducers/Actions.js +0 -114
- package/src/Screens/ImageGallery/Reducers/Reducer.js +0 -76
- package/src/Screens/ImageGallery/Screen.js +0 -20
- package/src/Screens/ImageGallery/Styles.scss +0 -34
- package/src/Screens/ImageGallery/Translations.js +0 -44
- package/src/Screens/ImageGallery/index.js +0 -9
- package/src/Screens/Inspirations/Containers/Edit.js +0 -105
- package/src/Screens/Inspirations/Containers/InspirationsSubscreen.js +0 -18
- package/src/Screens/Inspirations/Containers/ItemInspirationsList.js +0 -45
- package/src/Screens/Inspirations/Containers/List.js +0 -40
- package/src/Screens/Inspirations/Reducers/Actions.js +0 -90
- package/src/Screens/Inspirations/Reducers/ItemInspirationsActions.js +0 -12
- package/src/Screens/Inspirations/Reducers/Reducer.js +0 -63
- package/src/Screens/Inspirations/Screen.js +0 -59
- package/src/Screens/Inspirations/Translations.js +0 -28
- package/src/Screens/Inspirations/index.js +0 -11
- package/src/Screens/Item/ApiCalls.js +0 -9
- package/src/Screens/Item/Components/AttributeEditorPopup.js +0 -57
- package/src/Screens/Item/Components/ConfiguratorQuickView.js +0 -99
- package/src/Screens/Item/Components/CopyCreatorItemDialog.js +0 -130
- package/src/Screens/Item/Components/ListItemStatusEditor.js +0 -112
- package/src/Screens/Item/Components/Styles.scss +0 -328
- package/src/Screens/Item/Components/Variants/VariantsAutocomplete.js +0 -234
- package/src/Screens/Item/Components/Variants/VariantsEditor.js +0 -582
- package/src/Screens/Item/Components/Variants/VariantsEditorDialog.js +0 -143
- package/src/Screens/Item/Components/Variants/VariantsEditorPopup.js +0 -69
- package/src/Screens/Item/Components/Variants/VariantsSelection.js +0 -120
- package/src/Screens/Item/Components/Variants/VariantsSortFilter.js +0 -158
- package/src/Screens/Item/Containers/Edit.js +0 -524
- package/src/Screens/Item/Containers/Edit.test.js +0 -310
- package/src/Screens/Item/Containers/List.js +0 -87
- package/src/Screens/Item/Containers/Styles.scss +0 -92
- package/src/Screens/Item/DataStructures/Attributes/Actions.js +0 -30
- package/src/Screens/Item/DataStructures/Attributes/Editor.js +0 -99
- package/src/Screens/Item/DataStructures/Attributes/Reducer.js +0 -13
- package/src/Screens/Item/Reducers/Actions.js +0 -82
- package/src/Screens/Item/Reducers/ItemReducer.js +0 -64
- package/src/Screens/Item/Reducers/Variant/Actions.js +0 -13
- package/src/Screens/Item/Reducers/Variant/Reducer.js +0 -72
- package/src/Screens/Item/Screen.js +0 -18
- package/src/Screens/Item/Translations.js +0 -168
- package/src/Screens/Item/index.js +0 -12
- package/src/Screens/Itemclassification/Containers/Edit.js +0 -49
- package/src/Screens/Itemclassification/Containers/List.js +0 -64
- package/src/Screens/Itemclassification/Reducers/Actions.js +0 -21
- package/src/Screens/Itemclassification/Reducers/Reducer.js +0 -43
- package/src/Screens/Itemclassification/Screen.js +0 -19
- package/src/Screens/Itemclassification/Translations.js +0 -22
- package/src/Screens/Itemclassification/index.js +0 -9
- package/src/Screens/License/Reducers/Actions.js +0 -44
- package/src/Screens/License/Reducers/Reducer.js +0 -35
- package/src/Screens/License/Screen.js +0 -116
- package/src/Screens/License/Styles.scss +0 -35
- package/src/Screens/License/Translations.js +0 -19
- package/src/Screens/License/__tests__/LicenseScreen.test.js +0 -23
- package/src/Screens/License/__tests__/__snapshots__/LicenseScreen.test.js.snap +0 -219
- package/src/Screens/License/index.js +0 -10
- package/src/Screens/Login/Reducers/Actions.js +0 -57
- package/src/Screens/Login/Reducers/Listener.js +0 -13
- package/src/Screens/Login/Reducers/Reducer.js +0 -73
- package/src/Screens/Login/Screen.js +0 -96
- package/src/Screens/Login/Styles.scss +0 -0
- package/src/Screens/Login/Translations.js +0 -11
- package/src/Screens/Login/__tests/LoginScreen.js +0 -227
- package/src/Screens/Option/Containers/Edit.js +0 -172
- package/src/Screens/Option/Containers/List.js +0 -64
- package/src/Screens/Option/Reducers/Actions.js +0 -17
- package/src/Screens/Option/Reducers/Reducer.js +0 -81
- package/src/Screens/Option/Screen.js +0 -18
- package/src/Screens/Option/Translations.js +0 -34
- package/src/Screens/Option/index.js +0 -9
- package/src/Screens/OptionPools/Containers/Edit.js +0 -87
- package/src/Screens/OptionPools/Containers/List.js +0 -29
- package/src/Screens/OptionPools/Reducers/Actions.js +0 -10
- package/src/Screens/OptionPools/Reducers/Reducer.js +0 -33
- package/src/Screens/OptionPools/Screen.js +0 -18
- package/src/Screens/OptionPools/Translations.js +0 -23
- package/src/Screens/OptionPools/index.js +0 -9
- package/src/Screens/Optionclassification/Containers/Edit.js +0 -77
- package/src/Screens/Optionclassification/Containers/List.js +0 -64
- package/src/Screens/Optionclassification/Reducers/Actions.js +0 -17
- package/src/Screens/Optionclassification/Reducers/Reducer.js +0 -43
- package/src/Screens/Optionclassification/Screen.js +0 -20
- package/src/Screens/Optionclassification/Styles.scss +0 -0
- package/src/Screens/Optionclassification/Translations.js +0 -25
- package/src/Screens/Optionclassification/index.js +0 -9
- package/src/Screens/PriceTypes/Containers/Edit.js +0 -119
- package/src/Screens/PriceTypes/Containers/List.js +0 -52
- package/src/Screens/PriceTypes/Reducers/Actions.js +0 -8
- package/src/Screens/PriceTypes/Reducers/Reducer.js +0 -45
- package/src/Screens/PriceTypes/Screen.js +0 -19
- package/src/Screens/PriceTypes/Translations.js +0 -51
- package/src/Screens/PriceTypes/index.js +0 -9
- package/src/Screens/ProductionView/Components/ConfigurationDataSheet.js +0 -146
- package/src/Screens/ProductionView/Containers/Edit.js +0 -41
- package/src/Screens/ProductionView/Containers/List.js +0 -65
- package/src/Screens/ProductionView/Reducers/Actions.js +0 -21
- package/src/Screens/ProductionView/Reducers/Reducer.js +0 -31
- package/src/Screens/ProductionView/Screen.js +0 -22
- package/src/Screens/ProductionView/Styles.scss +0 -59
- package/src/Screens/ProductionView/Translations.js +0 -27
- package/src/Screens/ProductionView/index.js +0 -9
- package/src/Screens/ReceiveOfferRequests/Components/ConfigurationDataSheet.js +0 -249
- package/src/Screens/ReceiveOfferRequests/Containers/Edit.js +0 -46
- package/src/Screens/ReceiveOfferRequests/Containers/List.js +0 -67
- package/src/Screens/ReceiveOfferRequests/Reducers/Actions.js +0 -23
- package/src/Screens/ReceiveOfferRequests/Reducers/Reducer.js +0 -30
- package/src/Screens/ReceiveOfferRequests/Screen.js +0 -22
- package/src/Screens/ReceiveOfferRequests/index.js +0 -10
- package/src/Screens/Roles/Containers/Edit.js +0 -37
- package/src/Screens/Roles/Containers/List.js +0 -30
- package/src/Screens/Roles/Reducers/Actions.js +0 -14
- package/src/Screens/Roles/Reducers/Reducer.js +0 -22
- package/src/Screens/Roles/Screen.js +0 -19
- package/src/Screens/Roles/Translations.js +0 -19
- package/src/Screens/Roles/index.js +0 -9
- package/src/Screens/Savedconfigurations/Components/ConfigurationDataSheet.js +0 -263
- package/src/Screens/Savedconfigurations/Containers/Edit.js +0 -46
- package/src/Screens/Savedconfigurations/Containers/List.js +0 -130
- package/src/Screens/Savedconfigurations/Reducers/Actions.js +0 -17
- package/src/Screens/Savedconfigurations/Reducers/Reducer.js +0 -28
- package/src/Screens/Savedconfigurations/Screen.js +0 -22
- package/src/Screens/Savedconfigurations/Styles.scss +0 -38
- package/src/Screens/Savedconfigurations/Translations.js +0 -67
- package/src/Screens/Savedconfigurations/index.js +0 -9
- package/src/Screens/Setting/Containers/Edit.js +0 -115
- package/src/Screens/Setting/Reducers/Actions.js +0 -36
- package/src/Screens/Setting/Reducers/Reducer.js +0 -30
- package/src/Screens/Setting/Screen.js +0 -10
- package/src/Screens/Setting/Styles.scss +0 -0
- package/src/Screens/Setting/Translations.js +0 -55
- package/src/Screens/Setting/index.js +0 -9
- package/src/Screens/SoftwareUpdates/Reducers/Actions.js +0 -9
- package/src/Screens/SoftwareUpdates/Reducers/Reducer.js +0 -25
- package/src/Screens/SoftwareUpdates/Screen.js +0 -77
- package/src/Screens/SoftwareUpdates/Translations.js +0 -25
- package/src/Screens/SoftwareUpdates/__tests__/SoftwareUpdatesScreen.test.js +0 -14
- package/src/Screens/SoftwareUpdates/__tests__/__snapshots__/SoftwareUpdatesScreen.test.js.snap +0 -19
- package/src/Screens/SoftwareUpdates/index.js +0 -10
- package/src/Screens/Tag/Containers/Edit.js +0 -26
- package/src/Screens/Tag/Containers/List.js +0 -52
- package/src/Screens/Tag/Reducers/Actions.js +0 -20
- package/src/Screens/Tag/Reducers/Reducer.js +0 -22
- package/src/Screens/Tag/Screen.js +0 -19
- package/src/Screens/Tag/Styles.scss +0 -0
- package/src/Screens/Tag/Translations.js +0 -19
- package/src/Screens/Tag/index.js +0 -9
- package/src/Screens/TrackingCodes/Containers/Edit.js +0 -52
- package/src/Screens/TrackingCodes/Containers/List.js +0 -39
- package/src/Screens/TrackingCodes/Reducers/Actions.js +0 -46
- package/src/Screens/TrackingCodes/Reducers/Reducer.js +0 -53
- package/src/Screens/TrackingCodes/Screen.js +0 -18
- package/src/Screens/TrackingCodes/Translations.js +0 -21
- package/src/Screens/TrackingCodes/index.js +0 -10
- package/src/Screens/TranslationFileHandling/Containers/Edit.js +0 -169
- package/src/Screens/TranslationFileHandling/Containers/List.js +0 -30
- package/src/Screens/TranslationFileHandling/Reducers/Actions.js +0 -8
- package/src/Screens/TranslationFileHandling/Reducers/Reducer.js +0 -27
- package/src/Screens/TranslationFileHandling/Screen.js +0 -19
- package/src/Screens/TranslationFileHandling/Translations.js +0 -25
- package/src/Screens/TranslationFileHandling/index.js +0 -10
- package/src/Screens/User/Containers/Edit.js +0 -54
- package/src/Screens/User/Containers/List.js +0 -55
- package/src/Screens/User/Reducers/Actions.js +0 -43
- package/src/Screens/User/Reducers/Reducer.js +0 -26
- package/src/Screens/User/Screen.js +0 -19
- package/src/Screens/User/Styles.scss +0 -3
- package/src/Screens/User/Translations.js +0 -23
- package/src/Screens/User/__tests/UserScreen.js +0 -376
- package/src/Screens/User/index.js +0 -9
- package/src/Screens/index.js +0 -142
- package/src/UIComponents/AppBar.js +0 -3
- package/src/UIComponents/AutoComplete.js +0 -237
- package/src/UIComponents/Button.js +0 -3
- package/src/UIComponents/ButtonBase.js +0 -3
- package/src/UIComponents/Checkbox.js +0 -3
- package/src/UIComponents/Chip.js +0 -2
- package/src/UIComponents/ChipInput.js +0 -221
- package/src/UIComponents/CircularProgress.js +0 -3
- package/src/UIComponents/ClickAwayListener.js +0 -3
- package/src/UIComponents/Collapse.js +0 -3
- package/src/UIComponents/DatePicker.js +0 -37
- package/src/UIComponents/DateTimePicker.js +0 -37
- package/src/UIComponents/Dialog.js +0 -55
- package/src/UIComponents/Drawer.js +0 -3
- package/src/UIComponents/FlatButton.js +0 -23
- package/src/UIComponents/FloatingActionButton.js +0 -4
- package/src/UIComponents/FontIcon.js +0 -3
- package/src/UIComponents/FormControl.js +0 -3
- package/src/UIComponents/FormControlLabel.js +0 -3
- package/src/UIComponents/Grow.js +0 -3
- package/src/UIComponents/IconButton.js +0 -3
- package/src/UIComponents/IconMenu.js +0 -138
- package/src/UIComponents/InlineHelp/__snapshots__/index.test.js.snap +0 -30
- package/src/UIComponents/InlineHelp/index.js +0 -46
- package/src/UIComponents/InlineHelp/index.test.js +0 -22
- package/src/UIComponents/Input.js +0 -3
- package/src/UIComponents/InputAdornment.js +0 -3
- package/src/UIComponents/InputLabel.js +0 -3
- package/src/UIComponents/LinearProgress.js +0 -3
- package/src/UIComponents/Link.js +0 -24
- package/src/UIComponents/List.js +0 -3
- package/src/UIComponents/ListItem.js +0 -3
- package/src/UIComponents/ListItemIcon.js +0 -3
- package/src/UIComponents/ListItemText.js +0 -3
- package/src/UIComponents/Menu.js +0 -3
- package/src/UIComponents/MenuItem.js +0 -3
- package/src/UIComponents/MenuList.js +0 -3
- package/src/UIComponents/Pagination.js +0 -100
- package/src/UIComponents/Paper.js +0 -3
- package/src/UIComponents/Popper.js +0 -3
- package/src/UIComponents/RadioButton/RadioButton.js +0 -3
- package/src/UIComponents/RadioButton/RadioGroup.js +0 -3
- package/src/UIComponents/RadioButton/index.js +0 -5
- package/src/UIComponents/RaisedButton.js +0 -24
- package/src/UIComponents/SelectField.js +0 -70
- package/src/UIComponents/Snackbar.js +0 -3
- package/src/UIComponents/Table/Table.js +0 -133
- package/src/UIComponents/Table/TableBody.js +0 -60
- package/src/UIComponents/Table/TableCell.js +0 -3
- package/src/UIComponents/Table/TableFooter.js +0 -3
- package/src/UIComponents/Table/TableHead.js +0 -53
- package/src/UIComponents/Table/TableHeadColumn.js +0 -3
- package/src/UIComponents/Table/TableRow.js +0 -19
- package/src/UIComponents/Table/TableRowColumn.js +0 -3
- package/src/UIComponents/Table/index.js +0 -15
- package/src/UIComponents/TableSortLabel.js +0 -3
- package/src/UIComponents/Tabs/Tab.js +0 -3
- package/src/UIComponents/Tabs/Tabs.js +0 -3
- package/src/UIComponents/Tabs/index.js +0 -5
- package/src/UIComponents/TextField.js +0 -3
- package/src/UIComponents/TimePicker.js +0 -41
- package/src/UIComponents/Toggle.js +0 -3
- package/src/UIComponents/Toolbar.js +0 -3
- package/src/UIComponents/Tooltip.js +0 -6
- package/src/UIComponents/Typography.js +0 -3
- package/src/UIComponents/icons/AccountCircleIcon.js +0 -3
- package/src/UIComponents/icons/AddCircleOutlineIcon.js +0 -3
- package/src/UIComponents/icons/AddIcon.js +0 -3
- package/src/UIComponents/icons/ArrowBackIcon.js +0 -3
- package/src/UIComponents/icons/CheckmarkIcon.js +0 -3
- package/src/UIComponents/icons/CloseIcon.js +0 -3
- package/src/UIComponents/icons/DeleteForeverIcon.js +0 -3
- package/src/UIComponents/icons/DeleteIcon.js +0 -3
- package/src/UIComponents/icons/ErrorIcon.js +0 -3
- package/src/UIComponents/icons/ExpandLessIcon.js +0 -3
- package/src/UIComponents/icons/ExpandMoreIcon.js +0 -3
- package/src/UIComponents/icons/FolderIcon.js +0 -3
- package/src/UIComponents/icons/ForwardIcon.js +0 -3
- package/src/UIComponents/icons/InfoIcon.js +0 -3
- package/src/UIComponents/icons/InfoOutlineIcon.js +0 -3
- package/src/UIComponents/icons/LanguageIcon.js +0 -3
- package/src/UIComponents/icons/LaunchIcon.js +0 -3
- package/src/UIComponents/icons/MenuIcon.js +0 -3
- package/src/UIComponents/icons/PriceIcon.js +0 -3
- package/src/UIComponents/icons/ReorderIcon.js +0 -3
- package/src/UIComponents/icons/SearchIcon.js +0 -3
- package/src/UIComponents/icons/SettingsIcon.js +0 -3
- package/src/UIComponents/icons/SortIcon.js +0 -3
- package/src/UIComponents/icons/TranslateIcon.js +0 -3
- package/src/UIComponents/icons/UpdateIcon.js +0 -3
- package/src/UIComponents/icons/ViewListIcon.js +0 -3
- package/src/UIComponents/icons/ZoomResetIcon.js +0 -3
- package/src/Utils/Async/Deferred.js +0 -76
- package/src/Utils/Async/__tests__/newestRequest.test.js +0 -34
- package/src/Utils/Async/newestRequest.js +0 -15
- package/src/Utils/Decorators/Observable.js +0 -62
- package/src/Utils/Dev/RequestApiToken.js +0 -27
- package/src/Utils/Dev/withStateProps.js +0 -6
- package/src/Utils/Error/createError.js +0 -22
- package/src/Utils/Events/pointerEvent.js +0 -77
- package/src/Utils/FunDraw/createMask.js +0 -67
- package/src/Utils/FunDraw/funDraw.js +0 -287
- package/src/Utils/FunDraw/movableObject.js +0 -108
- package/src/Utils/Function/__tests__/sendMessage.test.js +0 -20
- package/src/Utils/Function/sendMessage.js +0 -7
- package/src/Utils/HOCs/AsyncProps.js +0 -39
- package/src/Utils/HOCs/LocalState.js +0 -34
- package/src/Utils/HOCs/RemappedProps.js +0 -15
- package/src/Utils/Request/lazyFetch.js +0 -29
- package/src/Utils/Request/pathParams.js +0 -8
- package/src/Utils/Test/provideStore.js +0 -16
- package/src/Utils/Test/wrapperSelectors.js +0 -5
- package/src/__mocks__/assetsMock.js +0 -3
- package/src/__mocks__/fileMock.js +0 -1
- package/src/__mocks__/styleMock.js +0 -3
- package/src/default.js +0 -12
- package/src/dev.js +0 -61
- package/src/index.js +0 -8
|
@@ -1,75 +1,49 @@
|
|
|
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 _reactRedux = require("react-redux");
|
|
13
|
-
|
|
14
9
|
var _withStyles = _interopRequireDefault(require("@material-ui/core/styles/withStyles"));
|
|
15
|
-
|
|
16
10
|
var _get = _interopRequireDefault(require("lodash/get"));
|
|
17
|
-
|
|
18
11
|
var _Actions = _interopRequireWildcard(require("../../../Reducers/Rules/Actions"));
|
|
19
|
-
|
|
20
12
|
var _DefaultConnectedForm = require("../../../../../Components/DefaultConnectedForm");
|
|
21
|
-
|
|
22
13
|
var _i18n = require("../../../../../App/i18n");
|
|
23
|
-
|
|
24
14
|
var _RuleForms = require("./RuleForms");
|
|
25
|
-
|
|
26
15
|
var _excluded = ["dataBySource"];
|
|
27
|
-
|
|
28
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
29
|
-
|
|
30
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); }
|
|
31
|
-
|
|
32
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; }
|
|
33
|
-
|
|
19
|
+
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); }
|
|
34
20
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
35
|
-
|
|
36
21
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
37
|
-
|
|
38
22
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
39
|
-
|
|
40
|
-
function
|
|
41
|
-
|
|
42
|
-
function
|
|
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 _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); }
|
|
26
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
48
27
|
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
|
-
|
|
28
|
+
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
29
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
53
|
-
|
|
54
30
|
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
|
|
57
|
-
|
|
58
|
-
function
|
|
59
|
-
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
32
|
+
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; }
|
|
33
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
34
|
+
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); }
|
|
60
35
|
var Headline = function Headline(_ref) {
|
|
61
36
|
var children = _ref.children;
|
|
62
37
|
return /*#__PURE__*/_react["default"].createElement("h3", {
|
|
63
38
|
className: "editorHeadline"
|
|
64
39
|
}, children);
|
|
65
40
|
};
|
|
66
|
-
|
|
67
41
|
var RuleSplitContainer = function RuleSplitContainer(props) {
|
|
68
42
|
var showDetails = props.showDetails,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
43
|
+
showList = props.showList,
|
|
44
|
+
listComponent = props.listComponent,
|
|
45
|
+
detailsComponent = props.detailsComponent,
|
|
46
|
+
detailsTitle = props.detailsTitle;
|
|
73
47
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
74
48
|
className: 'split-container'
|
|
75
49
|
}, showList && /*#__PURE__*/_react["default"].createElement("div", {
|
|
@@ -84,60 +58,50 @@ var RuleSplitContainer = function RuleSplitContainer(props) {
|
|
|
84
58
|
className: "headlineWrapper"
|
|
85
59
|
}, /*#__PURE__*/_react["default"].createElement(Headline, null, detailsTitle)), detailsComponent));
|
|
86
60
|
};
|
|
87
|
-
|
|
88
61
|
var ruleTypeItemStyles = function ruleTypeItemStyles(theme) {
|
|
89
62
|
return {
|
|
90
63
|
root: {
|
|
91
64
|
'&.selected': {
|
|
65
|
+
padding: null,
|
|
92
66
|
backgroundColor: theme.palette.primary.main,
|
|
93
67
|
color: theme.palette.primary.contrastText
|
|
68
|
+
},
|
|
69
|
+
'& span': {
|
|
70
|
+
paddingLeft: 10
|
|
94
71
|
}
|
|
95
72
|
}
|
|
96
73
|
};
|
|
97
74
|
};
|
|
98
|
-
|
|
99
75
|
var RuleTypeItem = (0, _withStyles["default"])(ruleTypeItemStyles)(function (_ref2) {
|
|
100
76
|
var ruleType = _ref2.ruleType,
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
77
|
+
selected = _ref2.selected,
|
|
78
|
+
classes = _ref2.classes,
|
|
79
|
+
onSelect = _ref2.onSelect;
|
|
105
80
|
var onClick = function onClick() {
|
|
106
81
|
return onSelect(ruleType);
|
|
107
82
|
};
|
|
108
|
-
|
|
109
83
|
var className = "".concat(classes.root, " ").concat(selected ? 'selected' : '');
|
|
110
84
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
111
85
|
onClick: onClick,
|
|
112
86
|
className: className
|
|
113
87
|
}, (0, _i18n.T)("ruleEditor.ruleTypes.".concat(ruleType.identifier, ".name")));
|
|
114
88
|
});
|
|
115
|
-
|
|
116
89
|
var RuleTypeList = /*#__PURE__*/function (_Component) {
|
|
117
90
|
_inherits(RuleTypeList, _Component);
|
|
118
|
-
|
|
119
91
|
var _super = _createSuper(RuleTypeList);
|
|
120
|
-
|
|
121
92
|
function RuleTypeList() {
|
|
122
93
|
var _this;
|
|
123
|
-
|
|
124
94
|
_classCallCheck(this, RuleTypeList);
|
|
125
|
-
|
|
126
95
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
127
96
|
args[_key] = arguments[_key];
|
|
128
97
|
}
|
|
129
|
-
|
|
130
98
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
131
|
-
|
|
132
99
|
_defineProperty(_assertThisInitialized(_this), "onChange", function (ruleType) {
|
|
133
100
|
_this.props.setRuleType(ruleType);
|
|
134
|
-
|
|
135
101
|
_this.props.onChange && _this.props.onChange(_this.props.name, ruleType);
|
|
136
102
|
});
|
|
137
|
-
|
|
138
103
|
return _this;
|
|
139
104
|
}
|
|
140
|
-
|
|
141
105
|
_createClass(RuleTypeList, [{
|
|
142
106
|
key: "componentDidMount",
|
|
143
107
|
value: function componentDidMount() {
|
|
@@ -147,10 +111,9 @@ var RuleTypeList = /*#__PURE__*/function (_Component) {
|
|
|
147
111
|
key: "render",
|
|
148
112
|
value: function render() {
|
|
149
113
|
var _this2 = this;
|
|
150
|
-
|
|
151
114
|
var _this$props = this.props,
|
|
152
|
-
|
|
153
|
-
|
|
115
|
+
ruleTypes = _this$props.ruleTypes,
|
|
116
|
+
value = _this$props.value;
|
|
154
117
|
return /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
155
118
|
className: "ruleTypeList"
|
|
156
119
|
}, ruleTypes.map(function (ruleType) {
|
|
@@ -164,14 +127,11 @@ var RuleTypeList = /*#__PURE__*/function (_Component) {
|
|
|
164
127
|
})));
|
|
165
128
|
}
|
|
166
129
|
}]);
|
|
167
|
-
|
|
168
130
|
return RuleTypeList;
|
|
169
131
|
}(_react.Component);
|
|
170
|
-
|
|
171
132
|
var ConnectedRuleList = (0, _reactRedux.connect)(function (_ref3) {
|
|
172
133
|
var dataBySource = _ref3.dataBySource,
|
|
173
|
-
|
|
174
|
-
|
|
134
|
+
state = _objectWithoutProperties(_ref3, _excluded);
|
|
175
135
|
return {
|
|
176
136
|
ruleTypes: (0, _get["default"])(dataBySource[_Actions.RULE_TYPES_KEY], 'data.data', []),
|
|
177
137
|
value: (0, _get["default"])(state[_Actions.REDUCER_NAME], 'data.ruleType.value', {})
|
|
@@ -186,23 +146,16 @@ var ConnectedRuleList = (0, _reactRedux.connect)(function (_ref3) {
|
|
|
186
146
|
}
|
|
187
147
|
};
|
|
188
148
|
})(RuleTypeList);
|
|
189
|
-
|
|
190
149
|
var RuleForm = /*#__PURE__*/function (_Component2) {
|
|
191
150
|
_inherits(RuleForm, _Component2);
|
|
192
|
-
|
|
193
151
|
var _super2 = _createSuper(RuleForm);
|
|
194
|
-
|
|
195
152
|
function RuleForm() {
|
|
196
153
|
var _this3;
|
|
197
|
-
|
|
198
154
|
_classCallCheck(this, RuleForm);
|
|
199
|
-
|
|
200
155
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
201
156
|
args[_key2] = arguments[_key2];
|
|
202
157
|
}
|
|
203
|
-
|
|
204
158
|
_this3 = _super2.call.apply(_super2, [this].concat(args));
|
|
205
|
-
|
|
206
159
|
_defineProperty(_assertThisInitialized(_this3), "onChange", function (field, value) {
|
|
207
160
|
/*const [ containerField, subField ] = field.split('.');
|
|
208
161
|
// merge the data field instead of replacing it
|
|
@@ -211,16 +164,14 @@ var RuleForm = /*#__PURE__*/function (_Component2) {
|
|
|
211
164
|
const currentData = get(entityState, `data.${containerField}.value`);
|
|
212
165
|
return this.props.setData(containerField, { ...currentData, [subField]: value });
|
|
213
166
|
}*/
|
|
167
|
+
|
|
214
168
|
return _this3.props.setData(field, value);
|
|
215
169
|
});
|
|
216
|
-
|
|
217
170
|
_defineProperty(_assertThisInitialized(_this3), "submit", function () {
|
|
218
171
|
_this3.props.postData();
|
|
219
172
|
});
|
|
220
|
-
|
|
221
173
|
return _this3;
|
|
222
174
|
}
|
|
223
|
-
|
|
224
175
|
_createClass(RuleForm, [{
|
|
225
176
|
key: "renderList",
|
|
226
177
|
value: function renderList() {
|
|
@@ -233,17 +184,14 @@ var RuleForm = /*#__PURE__*/function (_Component2) {
|
|
|
233
184
|
value: function renderForm() {
|
|
234
185
|
var entityState = this.props.entityState;
|
|
235
186
|
var ruleType = (0, _get["default"])(entityState, 'data.ruleType.value');
|
|
236
|
-
|
|
237
187
|
if (!ruleType) {
|
|
238
188
|
return null; // nothing to render if no rule type selected
|
|
239
189
|
}
|
|
240
190
|
|
|
241
191
|
var Form = _RuleForms.formsByType[ruleType.identifier];
|
|
242
|
-
|
|
243
192
|
if (!Form) {
|
|
244
193
|
return /*#__PURE__*/_react["default"].createElement("div", null, "Form does not exist for the rule type '", ruleType.identifier, "'. Create one first.");
|
|
245
194
|
}
|
|
246
|
-
|
|
247
195
|
return /*#__PURE__*/_react["default"].createElement(Form, {
|
|
248
196
|
data: entityState.data,
|
|
249
197
|
dataDataHelper: entityState.data.data,
|
|
@@ -267,10 +215,6 @@ var RuleForm = /*#__PURE__*/function (_Component2) {
|
|
|
267
215
|
});
|
|
268
216
|
}
|
|
269
217
|
}]);
|
|
270
|
-
|
|
271
218
|
return RuleForm;
|
|
272
219
|
}(_react.Component);
|
|
273
|
-
|
|
274
|
-
var _default = (0, _DefaultConnectedForm.connectDefault)(RuleForm, _Actions.REDUCER_NAME, _Actions["default"].setFieldData, _Actions["default"].postData, _Actions["default"].hideDetails, _Actions["default"].customAction);
|
|
275
|
-
|
|
276
|
-
exports["default"] = _default;
|
|
220
|
+
var _default = exports["default"] = (0, _DefaultConnectedForm.connectDefault)(RuleForm, _Actions.REDUCER_NAME, _Actions["default"].setFieldData, _Actions["default"].postData, _Actions["default"].hideDetails, _Actions["default"].customAction);
|
|
@@ -1,26 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(
|
|
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.RuleList = void 0;
|
|
9
|
-
|
|
10
8
|
var _react = _interopRequireDefault(require("react"));
|
|
11
|
-
|
|
12
9
|
var _Actions = _interopRequireWildcard(require("../../../Reducers/Rules/Actions"));
|
|
13
|
-
|
|
14
10
|
var _DefaultConnectedList = _interopRequireDefault(require("../../../../../Components/DefaultConnectedList"));
|
|
15
|
-
|
|
16
11
|
var _i18n = require("../../../../../App/i18n");
|
|
17
|
-
|
|
18
12
|
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); }
|
|
19
|
-
|
|
20
13
|
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; }
|
|
21
|
-
|
|
22
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
-
|
|
24
15
|
var columns = [{
|
|
25
16
|
name: 'title',
|
|
26
17
|
label: 'Title',
|
|
@@ -31,15 +22,11 @@ var listParams = {
|
|
|
31
22
|
entity: 'item',
|
|
32
23
|
addButtonLabel: 'rule.addButtonLabel'
|
|
33
24
|
};
|
|
34
|
-
var RuleList = (0, _DefaultConnectedList["default"])(columns, listParams, _Actions.LIST_KEY, _Actions["default"].listAction, _Actions["default"].detailsAction, _Actions["default"].hideDetails, _Actions["default"].showDetails, _Actions["default"].createEntity, _Actions["default"].deleteEntities, {
|
|
25
|
+
var RuleList = exports.RuleList = (0, _DefaultConnectedList["default"])(columns, listParams, _Actions.LIST_KEY, _Actions["default"].listAction, _Actions["default"].detailsAction, _Actions["default"].hideDetails, _Actions["default"].showDetails, _Actions["default"].createEntity, _Actions["default"].deleteEntities, {
|
|
35
26
|
reducerName: _Actions.REDUCER_NAME
|
|
36
27
|
});
|
|
37
|
-
exports
|
|
38
|
-
|
|
39
|
-
var _default = function _default() {
|
|
28
|
+
var _default = exports["default"] = function _default() {
|
|
40
29
|
return /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
41
30
|
className: "listHeadline"
|
|
42
31
|
}, (0, _i18n.T)('ruleEditor.listHeadline')), /*#__PURE__*/_react["default"].createElement(RuleList, null));
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
exports["default"] = _default;
|
|
32
|
+
};
|
|
@@ -1,73 +1,48 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(
|
|
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 _lodash = require("lodash");
|
|
13
|
-
|
|
14
10
|
var _RuleForm = _interopRequireWildcard(require("./RuleForm"));
|
|
15
|
-
|
|
16
11
|
var _i18n = require("../../../../../../App/i18n");
|
|
17
|
-
|
|
18
12
|
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); }
|
|
19
|
-
|
|
20
13
|
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; }
|
|
21
|
-
|
|
22
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
-
|
|
24
|
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
|
-
|
|
15
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
26
16
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
27
|
-
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
function
|
|
31
|
-
|
|
32
|
-
function
|
|
33
|
-
|
|
34
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
35
|
-
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
20
|
+
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); }
|
|
21
|
+
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); }
|
|
22
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
36
23
|
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); }; }
|
|
37
|
-
|
|
38
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
39
|
-
|
|
24
|
+
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); }
|
|
40
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
41
|
-
|
|
42
26
|
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; } }
|
|
43
|
-
|
|
44
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
45
|
-
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
46
28
|
var keyPath = function keyPath(key) {
|
|
47
29
|
return "ruleEditor.ruleTypes.additionaloption.".concat(key);
|
|
48
30
|
};
|
|
49
|
-
|
|
50
31
|
var inlineLabel = function inlineLabel(key) {
|
|
51
32
|
return "[".concat((0, _i18n.t)(keyPath(key)), "]");
|
|
52
33
|
};
|
|
53
|
-
|
|
54
34
|
var formFields = [(0, _RuleForm.createTextDescriptor)(keyPath('optionText')), (0, _RuleForm.createOptionFieldDescriptor)({
|
|
55
35
|
label: keyPath('optionLabel')
|
|
56
36
|
}), (0, _RuleForm.createTextDescriptor)(keyPath('dataOptionText')), (0, _RuleForm.createDataContainerDescriptor)((0, _RuleForm.createDataFieldDescriptor)('option', {
|
|
57
37
|
label: keyPath('dataOptionLabel')
|
|
58
38
|
}))];
|
|
59
|
-
|
|
60
|
-
var AdditionalOption = /*#__PURE__*/function (_React$Component) {
|
|
39
|
+
var AdditionalOption = exports["default"] = /*#__PURE__*/function (_React$Component) {
|
|
61
40
|
_inherits(AdditionalOption, _React$Component);
|
|
62
|
-
|
|
63
41
|
var _super = _createSuper(AdditionalOption);
|
|
64
|
-
|
|
65
42
|
function AdditionalOption() {
|
|
66
43
|
_classCallCheck(this, AdditionalOption);
|
|
67
|
-
|
|
68
44
|
return _super.apply(this, arguments);
|
|
69
45
|
}
|
|
70
|
-
|
|
71
46
|
_createClass(AdditionalOption, [{
|
|
72
47
|
key: "render",
|
|
73
48
|
value: function render() {
|
|
@@ -81,8 +56,5 @@ var AdditionalOption = /*#__PURE__*/function (_React$Component) {
|
|
|
81
56
|
}));
|
|
82
57
|
}
|
|
83
58
|
}]);
|
|
84
|
-
|
|
85
59
|
return AdditionalOption;
|
|
86
|
-
}(_react["default"].Component);
|
|
87
|
-
|
|
88
|
-
exports["default"] = AdditionalOption;
|
|
60
|
+
}(_react["default"].Component);
|
package/Screens/Creator/Components/Rules/Containers/RuleForms/AttributeValueGroupAutoSwitch.js
CHANGED
|
@@ -1,56 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(
|
|
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 _lodash = require("lodash");
|
|
13
|
-
|
|
14
10
|
var _RuleForm = _interopRequireWildcard(require("./RuleForm"));
|
|
15
|
-
|
|
16
11
|
var _i18n = require("../../../../../../App/i18n");
|
|
17
|
-
|
|
18
12
|
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); }
|
|
19
|
-
|
|
20
13
|
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; }
|
|
21
|
-
|
|
22
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
-
|
|
24
|
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
|
-
|
|
15
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
26
16
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
27
|
-
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
function
|
|
31
|
-
|
|
32
|
-
function
|
|
33
|
-
|
|
34
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
35
|
-
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
20
|
+
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); }
|
|
21
|
+
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); }
|
|
22
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
36
23
|
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); }; }
|
|
37
|
-
|
|
38
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
39
|
-
|
|
24
|
+
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); }
|
|
40
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
41
|
-
|
|
42
26
|
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; } }
|
|
43
|
-
|
|
44
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
45
|
-
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
46
28
|
var keyPath = function keyPath(key) {
|
|
47
29
|
return "ruleEditor.ruleTypes.attribute_value_group_auto_switch.".concat(key);
|
|
48
30
|
};
|
|
49
|
-
|
|
50
31
|
var inlineLabel = function inlineLabel(key) {
|
|
51
32
|
return "[".concat((0, _i18n.t)(keyPath(key)), "]");
|
|
52
33
|
};
|
|
53
|
-
|
|
54
34
|
var formFields = [(0, _RuleForm.createTextDescriptor)(keyPath('attributeText')), (0, _RuleForm.createDataContainerDescriptor)((0, _RuleForm.createDataFieldDescriptor)('attribute', {
|
|
55
35
|
label: keyPath('attributeLabel')
|
|
56
36
|
})), (0, _RuleForm.createDataContainerDescriptor)((0, _RuleForm.createDataFieldDescriptor)('toggle', {
|
|
@@ -58,18 +38,13 @@ var formFields = [(0, _RuleForm.createTextDescriptor)(keyPath('attributeText')),
|
|
|
58
38
|
label: keyPath('switchText'),
|
|
59
39
|
labelPlacement: 'end'
|
|
60
40
|
}))];
|
|
61
|
-
|
|
62
|
-
var AttributeValueGroupAutoSwitch = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
var AttributeValueGroupAutoSwitch = exports["default"] = /*#__PURE__*/function (_React$Component) {
|
|
63
42
|
_inherits(AttributeValueGroupAutoSwitch, _React$Component);
|
|
64
|
-
|
|
65
43
|
var _super = _createSuper(AttributeValueGroupAutoSwitch);
|
|
66
|
-
|
|
67
44
|
function AttributeValueGroupAutoSwitch() {
|
|
68
45
|
_classCallCheck(this, AttributeValueGroupAutoSwitch);
|
|
69
|
-
|
|
70
46
|
return _super.apply(this, arguments);
|
|
71
47
|
}
|
|
72
|
-
|
|
73
48
|
_createClass(AttributeValueGroupAutoSwitch, [{
|
|
74
49
|
key: "render",
|
|
75
50
|
value: function render() {
|
|
@@ -81,8 +56,5 @@ var AttributeValueGroupAutoSwitch = /*#__PURE__*/function (_React$Component) {
|
|
|
81
56
|
}));
|
|
82
57
|
}
|
|
83
58
|
}]);
|
|
84
|
-
|
|
85
59
|
return AttributeValueGroupAutoSwitch;
|
|
86
|
-
}(_react["default"].Component);
|
|
87
|
-
|
|
88
|
-
exports["default"] = AttributeValueGroupAutoSwitch;
|
|
60
|
+
}(_react["default"].Component);
|
|
@@ -1,71 +1,46 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(
|
|
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 _lodash = require("lodash");
|
|
13
|
-
|
|
14
10
|
var _RuleForm = _interopRequireWildcard(require("./RuleForm"));
|
|
15
|
-
|
|
16
11
|
var _i18n = require("../../../../../../App/i18n");
|
|
17
|
-
|
|
18
12
|
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); }
|
|
19
|
-
|
|
20
13
|
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; }
|
|
21
|
-
|
|
22
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
-
|
|
24
|
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
|
-
|
|
15
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
26
16
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
27
|
-
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
function
|
|
31
|
-
|
|
32
|
-
function
|
|
33
|
-
|
|
34
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
35
|
-
|
|
17
|
+
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); } }
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
20
|
+
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); }
|
|
21
|
+
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); }
|
|
22
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
36
23
|
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); }; }
|
|
37
|
-
|
|
38
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
39
|
-
|
|
24
|
+
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); }
|
|
40
25
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
41
|
-
|
|
42
26
|
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; } }
|
|
43
|
-
|
|
44
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
45
|
-
|
|
27
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
46
28
|
var keyPath = function keyPath(key) {
|
|
47
29
|
return "ruleEditor.ruleTypes.defaultoption.".concat(key);
|
|
48
30
|
};
|
|
49
|
-
|
|
50
31
|
var inlineLabel = function inlineLabel(key) {
|
|
51
32
|
return "[".concat((0, _i18n.t)(keyPath(key)), "]");
|
|
52
33
|
};
|
|
53
|
-
|
|
54
34
|
var formFields = [(0, _RuleForm.createTextDescriptor)(keyPath('optionText')), (0, _RuleForm.createDataContainerDescriptor)((0, _RuleForm.createDataFieldDescriptor)('option', {
|
|
55
35
|
label: keyPath('optionLabel')
|
|
56
36
|
}))];
|
|
57
|
-
|
|
58
|
-
var DefaultOption = /*#__PURE__*/function (_React$Component) {
|
|
37
|
+
var DefaultOption = exports["default"] = /*#__PURE__*/function (_React$Component) {
|
|
59
38
|
_inherits(DefaultOption, _React$Component);
|
|
60
|
-
|
|
61
39
|
var _super = _createSuper(DefaultOption);
|
|
62
|
-
|
|
63
40
|
function DefaultOption() {
|
|
64
41
|
_classCallCheck(this, DefaultOption);
|
|
65
|
-
|
|
66
42
|
return _super.apply(this, arguments);
|
|
67
43
|
}
|
|
68
|
-
|
|
69
44
|
_createClass(DefaultOption, [{
|
|
70
45
|
key: "render",
|
|
71
46
|
value: function render() {
|
|
@@ -77,8 +52,5 @@ var DefaultOption = /*#__PURE__*/function (_React$Component) {
|
|
|
77
52
|
}));
|
|
78
53
|
}
|
|
79
54
|
}]);
|
|
80
|
-
|
|
81
55
|
return DefaultOption;
|
|
82
|
-
}(_react["default"].Component);
|
|
83
|
-
|
|
84
|
-
exports["default"] = DefaultOption;
|
|
56
|
+
}(_react["default"].Component);
|