@configuratorware/configurator-admingui 1.46.10 → 1.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App/Translations.js +3 -0
- package/Components/FormFragments/File.js +4 -2
- package/Components/FormFragments/Text.js +1 -0
- package/Components/GeneralFragments/ConfiguratorOverlay.js +9 -2
- package/Components/GeneralFragments/Image.js +1 -1
- package/Components/GeneralFragments/Styles.scss +2 -0
- package/Components/SearchBar.js +1 -0
- package/Screens/Client/Components/ColorTextField.js +2 -1
- package/Screens/Creator/Components/CheckData/Constants.js +2 -1
- package/Screens/Creator/Components/CheckData/Translations.js +1 -1
- package/Screens/Creator/Components/OptionclassificationEditor.js +4 -2
- package/Screens/Creator/Components/VisualizationAndMediaData/Components/EditableText.js +2 -1
- package/Screens/Designer/SubScreens/DesignAreas/Components/ColorPalettes.js +2 -1
- package/Screens/Designer/SubScreens/DesignAreas/Containers/FormProductionMethods.js +4 -2
- package/Screens/Inspirations/Containers/InspirationsSubscreen.js +1 -1
- package/Screens/Item/Components/CopyCreatorItemDialog.js +2 -1
- package/Screens/Item/Components/Styles.scss +2 -0
- package/UIComponents/AutoComplete.js +2 -1
- package/UIComponents/ChipInput.js +2 -1
- package/package.json +3 -3
package/App/Translations.js
CHANGED
|
@@ -46,6 +46,8 @@ require("./i18n").use({
|
|
|
46
46
|
//General
|
|
47
47
|
selectAll: 'select all',
|
|
48
48
|
unSelectAll: 'unselect all',
|
|
49
|
+
closePreview: 'Close Preview',
|
|
50
|
+
Close: 'Close',
|
|
49
51
|
// VALIDATION
|
|
50
52
|
"can't be blank": "Can't be blank",
|
|
51
53
|
duplicate_entry: 'Duplicate entry',
|
|
@@ -131,6 +133,7 @@ require("./i18n").use({
|
|
|
131
133
|
Add: 'Hinzufügen',
|
|
132
134
|
Select: 'Übernehmen',
|
|
133
135
|
Close: 'Schließen',
|
|
136
|
+
closePreview: 'Vorschau Schließen',
|
|
134
137
|
selectAll: 'alle auswählen',
|
|
135
138
|
unSelectAll: 'alle abwählen',
|
|
136
139
|
// VALIDATION
|
|
@@ -33,7 +33,7 @@ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" !=
|
|
|
33
33
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
34
34
|
var styles = {
|
|
35
35
|
button: {
|
|
36
|
-
marginTop:
|
|
36
|
+
marginTop: 15,
|
|
37
37
|
marginBottom: 7
|
|
38
38
|
},
|
|
39
39
|
fileInput: {
|
|
@@ -73,7 +73,9 @@ var styles = {
|
|
|
73
73
|
},
|
|
74
74
|
wrapper: {
|
|
75
75
|
display: 'flex',
|
|
76
|
-
alignItems: 'center'
|
|
76
|
+
alignItems: 'center',
|
|
77
|
+
textAlign: 'center',
|
|
78
|
+
opacity: 0.87
|
|
77
79
|
},
|
|
78
80
|
label: {
|
|
79
81
|
position: 'relative',
|
|
@@ -22,6 +22,12 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
22
22
|
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; }
|
|
23
23
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
24
24
|
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); }
|
|
25
|
+
var Styles = {
|
|
26
|
+
closeButton: {
|
|
27
|
+
backgroundColor: '#45c08a',
|
|
28
|
+
color: 'white'
|
|
29
|
+
}
|
|
30
|
+
};
|
|
25
31
|
var ConfiguratorOverlay = /*#__PURE__*/function (_React$Component) {
|
|
26
32
|
_inherits(ConfiguratorOverlay, _React$Component);
|
|
27
33
|
var _super = _createSuper(ConfiguratorOverlay);
|
|
@@ -71,7 +77,8 @@ var ConfiguratorOverlay = /*#__PURE__*/function (_React$Component) {
|
|
|
71
77
|
className: "configurator-overlay-actions"
|
|
72
78
|
}, /*#__PURE__*/_react["default"].createElement(_RaisedButton["default"], {
|
|
73
79
|
label: (0, _i18n.T)(closeButtonText),
|
|
74
|
-
onClick: onClose
|
|
80
|
+
onClick: onClose,
|
|
81
|
+
style: Styles.closeButton
|
|
75
82
|
}), onSave && /*#__PURE__*/_react["default"].createElement(_RaisedButton["default"], {
|
|
76
83
|
primary: true,
|
|
77
84
|
label: (0, _i18n.T)(saveButtonText),
|
|
@@ -82,7 +89,7 @@ var ConfiguratorOverlay = /*#__PURE__*/function (_React$Component) {
|
|
|
82
89
|
return ConfiguratorOverlay;
|
|
83
90
|
}(_react["default"].Component);
|
|
84
91
|
_defineProperty(ConfiguratorOverlay, "defaultProps", {
|
|
85
|
-
closeButtonText: '
|
|
92
|
+
closeButtonText: 'closePreview',
|
|
86
93
|
saveButtonText: 'Save'
|
|
87
94
|
});
|
|
88
95
|
var _default = exports["default"] = ConfiguratorOverlay;
|
|
@@ -46,7 +46,7 @@ var Image = exports["default"] = /*#__PURE__*/function (_React$Component) {
|
|
|
46
46
|
_createClass(Image, [{
|
|
47
47
|
key: "render",
|
|
48
48
|
value: function render() {
|
|
49
|
-
if (this.state.brokenImg) {
|
|
49
|
+
if (this.state.brokenImg || this.props.src === null) {
|
|
50
50
|
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
51
51
|
className: "brokenImg"
|
|
52
52
|
}, (0, _i18n.T)('image.brokenImgText'));
|
package/Components/SearchBar.js
CHANGED
|
@@ -124,6 +124,7 @@ var SearchBar = /*#__PURE__*/function (_Component) {
|
|
|
124
124
|
},
|
|
125
125
|
onChange: this.onChange,
|
|
126
126
|
value: this.state.value,
|
|
127
|
+
translate: "no",
|
|
127
128
|
InputProps: {
|
|
128
129
|
startAdornment: /*#__PURE__*/_react["default"].createElement(_InputAdornment["default"], {
|
|
129
130
|
position: "start"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.TYPE_NOTICE = exports.TYPE_NEUTRAL = exports.TYPE_ERROR = exports.MESSAGE_ITEM_VARIANTS_NEUTRAL = exports.MESSAGE_ITEM_TITLE_NOTICE = exports.MESSAGE_ITEM_TITLE_NEUTRAL = exports.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NOTICE = exports.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NEUTRAL = exports.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NOTICE = exports.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NEUTRAL = exports.MESSAGE_DESIGNER_VIEWS_NOTICE = exports.MESSAGE_DESIGNER_VIEWS_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREA_PRODUCTION_METHOD_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREA_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREAS_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREAS_ERROR = exports.MESSAGE_CREATOR_RULE_NEUTRAL = exports.MESSAGE_CREATOR_OPTION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_OPTION_NOTICE = exports.MESSAGE_CREATOR_DEFAULT_OPTION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR = exports.MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENTS_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENTS_ERROR = void 0;
|
|
6
|
+
exports.TYPE_NOTICE = exports.TYPE_NEUTRAL = exports.TYPE_ERROR = exports.MESSAGE_ITEM_VARIANTS_NEUTRAL = exports.MESSAGE_ITEM_TITLE_NOTICE = exports.MESSAGE_ITEM_TITLE_NEUTRAL = exports.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NOTICE = exports.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NEUTRAL = exports.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NOTICE = exports.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NEUTRAL = exports.MESSAGE_DESIGNER_VIEWS_NOTICE = exports.MESSAGE_DESIGNER_VIEWS_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREA_PRODUCTION_METHOD_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREA_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREAS_NEUTRAL = exports.MESSAGE_DESIGNER_DESIGN_AREAS_ERROR = exports.MESSAGE_CREATOR_RULE_NEUTRAL = exports.MESSAGE_CREATOR_OPTION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_OPTION_NOTICE = exports.MESSAGE_CREATOR_DEFAULT_OPTION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR = exports.MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENT_TITLE_ERROR = exports.MESSAGE_CREATOR_COMPONENTS_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENTS_ERROR = void 0;
|
|
7
7
|
// copied from configuratorapi/src/Structure/Frontend/DataCheck.php
|
|
8
8
|
|
|
9
9
|
var TYPE_NEUTRAL = exports.TYPE_NEUTRAL = 'neutral';
|
|
@@ -19,6 +19,7 @@ var MESSAGE_ITEM_VARIANTS_NEUTRAL = exports.MESSAGE_ITEM_VARIANTS_NEUTRAL = "ite
|
|
|
19
19
|
var MESSAGE_CREATOR_COMPONENTS_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENTS_NEUTRAL = "creator_component_".concat(TYPE_NEUTRAL);
|
|
20
20
|
var MESSAGE_CREATOR_COMPONENTS_ERROR = exports.MESSAGE_CREATOR_COMPONENTS_ERROR = "creator_component_".concat(TYPE_ERROR);
|
|
21
21
|
var MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL = exports.MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL = "creator_component_title_".concat(TYPE_NEUTRAL);
|
|
22
|
+
var MESSAGE_CREATOR_COMPONENT_TITLE_ERROR = exports.MESSAGE_CREATOR_COMPONENT_TITLE_ERROR = "creator_component_title_".concat(TYPE_ERROR);
|
|
22
23
|
var MESSAGE_CREATOR_OPTION_NEUTRAL = exports.MESSAGE_CREATOR_OPTION_NEUTRAL = "creator_component_option_".concat(TYPE_NEUTRAL);
|
|
23
24
|
var MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL = "creator_default_configuration_".concat(TYPE_NEUTRAL);
|
|
24
25
|
var MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR = exports.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR = "creator_default_configuration_".concat(TYPE_ERROR);
|
|
@@ -28,7 +28,7 @@ require("../../../../App/i18n").use({
|
|
|
28
28
|
creator: 'creator Daten',
|
|
29
29
|
designer: 'designer Daten',
|
|
30
30
|
types: (_types2 = {}, _defineProperty(_types2, _Constants.TYPE_NEUTRAL, ' '), _defineProperty(_types2, _Constants.TYPE_NOTICE, 'HINWEIS'), _defineProperty(_types2, _Constants.TYPE_ERROR, 'FEHLER'), _types2),
|
|
31
|
-
messages: (_messages2 = {}, _defineProperty(_messages2, _Constants.MESSAGE_ITEM_TITLE_NOTICE, 'Produkttitel ist nicht gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_TITLE_NEUTRAL, 'Produkttitel ist gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NEUTRAL, 'Produkt ist im creator verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NOTICE, 'Produkt ist nicht im creator verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NEUTRAL, 'Produkt ist im designer verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NOTICE, 'Produkt ist nicht im designer verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_VARIANTS_NEUTRAL, '%{amount} Varianten gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENTS_NEUTRAL, '%{components_amount} Komponenten gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENTS_ERROR, 'Keine Komponenten gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL, '%{component_name}:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_OPTION_NEUTRAL, '%{options_amount} Optionen verfügbar:<br/>%{options}'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL, 'Standardkonfiguration gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR, 'Standardkonfiguration nicht gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_OPTION_NEUTRAL, '%{component_name}: %{option}'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_OPTION_NOTICE, '%{component_name}: nicht gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_RULE_NEUTRAL, '%{amount} Regeln gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_VIEWS_NEUTRAL, '%{amount} Designansichten gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_VIEWS_NOTICE, 'Keine Designansichten gepflegt <br/> - wird im Fallback Modus dargestellt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREAS_NEUTRAL, '%{amount} Designflächen gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREAS_ERROR, 'Keine Designfläche gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREA_NEUTRAL, '%{title}:'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREA_PRODUCTION_METHOD_NEUTRAL, '%{title}'), _messages2)
|
|
31
|
+
messages: (_messages2 = {}, _defineProperty(_messages2, _Constants.MESSAGE_ITEM_TITLE_NOTICE, 'Produkttitel ist nicht gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_TITLE_NEUTRAL, 'Produkttitel ist gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NEUTRAL, 'Produkt ist im creator verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_CREATOR_NOTICE, 'Produkt ist nicht im creator verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NEUTRAL, 'Produkt ist im designer verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_CONFIGURATION_MODE_DESIGNER_NOTICE, 'Produkt ist nicht im designer verfügbar'), _defineProperty(_messages2, _Constants.MESSAGE_ITEM_VARIANTS_NEUTRAL, '%{amount} Varianten gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENTS_NEUTRAL, '%{components_amount} Komponenten gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENTS_ERROR, 'Keine Komponenten gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENT_TITLE_NEUTRAL, '%{component_name}:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_COMPONENT_TITLE_ERROR, '%{component_name}:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_OPTION_NEUTRAL, '%{options_amount} Optionen verfügbar:<br/>%{options}'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_NEUTRAL, 'Standardkonfiguration gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_CONFIGURATION_ERROR, 'Standardkonfiguration nicht gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_OPTION_NEUTRAL, '%{component_name}: %{option}'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_DEFAULT_OPTION_NOTICE, '%{component_name}: nicht gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_CREATOR_RULE_NEUTRAL, '%{amount} Regeln gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_VIEWS_NEUTRAL, '%{amount} Designansichten gepflegt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_VIEWS_NOTICE, 'Keine Designansichten gepflegt <br/> - wird im Fallback Modus dargestellt'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREAS_NEUTRAL, '%{amount} Designflächen gepflegt:'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREAS_ERROR, 'Keine Designfläche gepflegt!'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREA_NEUTRAL, '%{title}:'), _defineProperty(_messages2, _Constants.MESSAGE_DESIGNER_DESIGN_AREA_PRODUCTION_METHOD_NEUTRAL, '%{title}'), _messages2)
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
}, true);
|
|
@@ -88,7 +88,8 @@ var OptionclassificationEditorOptionTile = /*#__PURE__*/function (_React$Compone
|
|
|
88
88
|
}, /*#__PURE__*/_react["default"].createElement(_Image["default"], {
|
|
89
89
|
src: option.thumbnail
|
|
90
90
|
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
91
|
-
className: "optionTitle"
|
|
91
|
+
className: "optionTitle",
|
|
92
|
+
title: option.title || option.translated_title
|
|
92
93
|
}, option.title || option.translated_title), /*#__PURE__*/_react["default"].createElement("div", {
|
|
93
94
|
className: "optionIdentifier",
|
|
94
95
|
title: option.identifier
|
|
@@ -369,7 +370,8 @@ var OptionSelection = /*#__PURE__*/function (_React$Component4) {
|
|
|
369
370
|
}, /*#__PURE__*/_react["default"].createElement(_Image["default"], {
|
|
370
371
|
src: option.thumbnail
|
|
371
372
|
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
372
|
-
className: "optionTitle"
|
|
373
|
+
className: "optionTitle",
|
|
374
|
+
title: option.title || option.translated_title
|
|
373
375
|
}, option.title || option.translated_title), /*#__PURE__*/_react["default"].createElement("div", {
|
|
374
376
|
className: "optionIdentifier",
|
|
375
377
|
title: option.identifier
|
|
@@ -99,7 +99,8 @@ var EditableText = exports.EditableText = (0, _withStyles["default"])(function (
|
|
|
99
99
|
onChange: function onChange(_ref2) {
|
|
100
100
|
var value = _ref2.target.value;
|
|
101
101
|
return setCurrentValue(value);
|
|
102
|
-
}
|
|
102
|
+
},
|
|
103
|
+
translate: "no"
|
|
103
104
|
}, props)) : /*#__PURE__*/_react["default"].createElement("div", {
|
|
104
105
|
className: classes.container
|
|
105
106
|
}, /*#__PURE__*/_react["default"].createElement("span", null, currentValue), /*#__PURE__*/_react["default"].createElement(_IconButton["default"], {
|
|
@@ -281,7 +281,8 @@ var ColorPalettes = /*#__PURE__*/function (_React$Component) {
|
|
|
281
281
|
}
|
|
282
282
|
},
|
|
283
283
|
error: !!customColorError,
|
|
284
|
-
helperText: customColorError
|
|
284
|
+
helperText: customColorError,
|
|
285
|
+
translate: "no"
|
|
285
286
|
})), /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
|
|
286
287
|
className: classes.customColorGrid + ' ' + classes.selectedColorGrid,
|
|
287
288
|
item: true,
|
|
@@ -737,7 +737,8 @@ var FormProductionMethods = /*#__PURE__*/function (_React$Component) {
|
|
|
737
737
|
onChange: _this4.onChangeEngravingBackgroundColor(item),
|
|
738
738
|
value: item.colorHex,
|
|
739
739
|
style: styles.input,
|
|
740
|
-
className: classes.inputAlign
|
|
740
|
+
className: classes.inputAlign,
|
|
741
|
+
translate: "no"
|
|
741
742
|
}));
|
|
742
743
|
})))), /*#__PURE__*/_react["default"].createElement(_Grid["default"], {
|
|
743
744
|
item: true,
|
|
@@ -827,7 +828,8 @@ var FormProductionMethods = /*#__PURE__*/function (_React$Component) {
|
|
|
827
828
|
}), /*#__PURE__*/_react["default"].createElement(_TextField["default"], {
|
|
828
829
|
value: _this4.getVariantsDefaultColorTitle(variantsDefaultColor),
|
|
829
830
|
style: styles.input,
|
|
830
|
-
disabled: true
|
|
831
|
+
disabled: true,
|
|
832
|
+
translate: "no"
|
|
831
833
|
})), /*#__PURE__*/_react["default"].createElement(_IconButton["default"], {
|
|
832
834
|
label: (0, _i18n.t)('Edit'),
|
|
833
835
|
onClick: function onClick() {
|
|
@@ -17,4 +17,4 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
17
17
|
var ScreenContainer = function ScreenContainer(props) {
|
|
18
18
|
return /*#__PURE__*/_react["default"].createElement(_DefaultScreen.ModalScreen, props);
|
|
19
19
|
};
|
|
20
|
-
var _default = exports["default"] = (0, _DefaultConnectedScreen.connectDefault)((0, _DefaultScreen.generateCustomScreen)('
|
|
20
|
+
var _default = exports["default"] = (0, _DefaultConnectedScreen.connectDefault)((0, _DefaultScreen.generateCustomScreen)('inspirations.menuLabel', _List["default"], _Edit["default"], ScreenContainer, _Actions["default"].hideDetails), _Actions.REDUCER_NAME, _Actions["default"].invalidateList, _Actions["default"].triggerUnsavedEntity, _Actions["default"].hideDetails);
|
|
@@ -144,7 +144,8 @@ var CopyCreatorItemDialog = function CopyCreatorItemDialog(_ref) {
|
|
|
144
144
|
error: identifierError !== null,
|
|
145
145
|
helperText: identifierError,
|
|
146
146
|
value: identifier,
|
|
147
|
-
type: 'text'
|
|
147
|
+
type: 'text',
|
|
148
|
+
translate: "no"
|
|
148
149
|
}), /*#__PURE__*/_react["default"].createElement(IntlInput, {
|
|
149
150
|
intl: {
|
|
150
151
|
name: 'title',
|
|
@@ -244,7 +244,8 @@ function renderInput(inputProps) {
|
|
|
244
244
|
root: classes.inputRoot,
|
|
245
245
|
input: classes.inputInput
|
|
246
246
|
}
|
|
247
|
-
}, InputProps)
|
|
247
|
+
}, InputProps),
|
|
248
|
+
translate: "no"
|
|
248
249
|
}, other));
|
|
249
250
|
}
|
|
250
251
|
var _default = exports["default"] = (0, _withStyles["default"])(styles)(AutoComplete);
|
|
@@ -262,7 +262,8 @@ function renderInput(inputProps) {
|
|
|
262
262
|
root: classes.inputRoot,
|
|
263
263
|
input: classes.inputInput
|
|
264
264
|
}
|
|
265
|
-
}, InputProps)
|
|
265
|
+
}, InputProps),
|
|
266
|
+
translate: "no"
|
|
266
267
|
}, other));
|
|
267
268
|
}
|
|
268
269
|
var _default = exports["default"] = (0, _withStyles["default"])(styles)(ChipInput);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configuratorware/configurator-admingui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"private": false,
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@babel/polyfill": "^7.12.1",
|
|
8
|
-
"@configuratorware/scripts": "1.
|
|
8
|
+
"@configuratorware/scripts": "1.47.0",
|
|
9
9
|
"@material-ui/core": "^3.9.4",
|
|
10
10
|
"@material-ui/icons": "^3.0.2",
|
|
11
11
|
"@tweenjs/tween.js": "^17.6.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"react-redux-i18n": "^1.9.3",
|
|
29
29
|
"react-router": "^3.2.6",
|
|
30
30
|
"react-sortable-hoc": "^1.11.0",
|
|
31
|
-
"redhotmagma-visualization": "1.
|
|
31
|
+
"redhotmagma-visualization": "1.47.0",
|
|
32
32
|
"redux": "^4.1.0",
|
|
33
33
|
"redux-logger": "^3.0.6",
|
|
34
34
|
"redux-persist": "^5.10.0",
|