@flozy/editor 9.4.4 → 9.4.5
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.
@@ -108,11 +108,14 @@ const ColorTheme = props => {
|
|
108
108
|
xs: 6,
|
109
109
|
children: /*#__PURE__*/_jsx(ColorPickerButton, {
|
110
110
|
onSave: selectedColor => {
|
111
|
-
|
111
|
+
if (selectedColor) {
|
112
|
+
onColorChange(selectedColor, i);
|
113
|
+
}
|
112
114
|
},
|
113
115
|
hideThemeColors: true,
|
114
116
|
hideGradient: true,
|
115
117
|
classes: classes,
|
118
|
+
value: color,
|
116
119
|
children: /*#__PURE__*/_jsxs(Grid, {
|
117
120
|
className: "pmBox",
|
118
121
|
style: {
|
@@ -156,11 +159,14 @@ const ColorTheme = props => {
|
|
156
159
|
xs: 6,
|
157
160
|
children: /*#__PURE__*/_jsx(ColorPickerButton, {
|
158
161
|
onSave: selectedColor => {
|
159
|
-
|
162
|
+
if (selectedColor) {
|
163
|
+
onColorChange(selectedColor, colorIndex);
|
164
|
+
}
|
160
165
|
},
|
161
166
|
hideThemeColors: true,
|
162
167
|
hideGradient: true,
|
163
168
|
classes: classes,
|
169
|
+
value: color,
|
164
170
|
children: /*#__PURE__*/_jsxs(Grid, {
|
165
171
|
className: "sdBox",
|
166
172
|
style: {
|