@flozy/editor 9.6.0 → 9.6.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.
@@ -57,7 +57,10 @@ const ColumnView = props => {
57
57
  value: row[property?.key] || "",
58
58
  rowIndex: rowIndex,
59
59
  label: property?.label,
60
- readOnly: readOnly
60
+ readOnly: readOnly,
61
+ settings: {
62
+ wrapColumn: property?.wrapColumn
63
+ }
61
64
  }), needAnchor && !readOnly ? /*#__PURE__*/_jsx(Popper, {
62
65
  sx: classes.root,
63
66
  open: open,
@@ -40,13 +40,14 @@ export default function Select(props) {
40
40
  limitTags = 2,
41
41
  placeholder = "",
42
42
  disabled = false,
43
- optionAvatar = false
43
+ optionAvatar = false,
44
+ className = ""
44
45
  } = props;
45
46
  const value = Array.isArray(pValue) ? pValue : [];
46
47
  const options = selectOptions?.length ? selectOptions.filter(s => s.value) : [];
47
48
  return /*#__PURE__*/_jsx(Autocomplete, {
48
49
  disabled: disabled,
49
- className: "tv-ac-field",
50
+ className: `tv-ac-field ${className}`,
50
51
  multiple: true,
51
52
  limitTags: limitTags,
52
53
  placeholder: placeholder,
@@ -102,7 +103,7 @@ export default function Select(props) {
102
103
  },
103
104
  renderTags: (value, getTagProps) => {
104
105
  return /*#__PURE__*/_jsx(Box, {
105
- className: "tv-ms-tag-wrpr",
106
+ className: `tv-ms-tag-wrpr ${className}`,
106
107
  sx: {
107
108
  "& svg": {
108
109
  marginRight: "5px",
@@ -9,8 +9,12 @@ const MultiSelectType = props => {
9
9
  value: pValue,
10
10
  options,
11
11
  label = "",
12
- readOnly
12
+ readOnly,
13
+ settings
13
14
  } = props;
15
+ const {
16
+ wrapColumn
17
+ } = settings;
14
18
  const {
15
19
  onChange
16
20
  } = useDataView();
@@ -27,6 +31,7 @@ const MultiSelectType = props => {
27
31
  });
28
32
  };
29
33
  return /*#__PURE__*/_jsx(Select, {
34
+ className: `wrap-${wrapColumn}`,
30
35
  value: coloredValues,
31
36
  onChange: handleChange,
32
37
  options: options,
@@ -8,8 +8,12 @@ const TextType = props => {
8
8
  rowIndex,
9
9
  property,
10
10
  value,
11
- readOnly
11
+ readOnly,
12
+ settings
12
13
  } = props;
14
+ const {
15
+ wrapColumn
16
+ } = settings;
13
17
  const {
14
18
  onChange
15
19
  } = useDataView();
@@ -34,7 +38,8 @@ const TextType = props => {
34
38
  onChange: handleChange,
35
39
  disabled: readOnly,
36
40
  id: `tv-text-input-${rowIndex}-${property}` // * should be unique
41
+ ,
42
+ multiline: wrapColumn
37
43
  });
38
44
  };
39
-
40
45
  export default TextType;
@@ -7,6 +7,7 @@ import Icon from "../../../../common/Icon";
7
7
  import CloseIcon from "@mui/icons-material/Close";
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
+ const NEED_WRAPS = ["text", "multi-select"];
10
11
  const EditProperty = props => {
11
12
  const {
12
13
  classes,
@@ -20,6 +21,8 @@ const EditProperty = props => {
20
21
  const editData = useRef({
21
22
  ...edit
22
23
  });
24
+ const type = mode?.edit?.type || "";
25
+ const needWrap = NEED_WRAPS?.indexOf(type) >= 0;
23
26
  useEffect(() => {
24
27
  return () => {
25
28
  // on un-mount update the label
@@ -88,6 +91,12 @@ const EditProperty = props => {
88
91
  }, false);
89
92
  onEvent("close");
90
93
  break;
94
+ case "wrapColumn":
95
+ onUpdate({
96
+ wrapColumn: !edit?.wrapColumn
97
+ });
98
+ // onEvent("close");
99
+ break;
91
100
  case "Delete":
92
101
  onEvent("deleteProperty", {
93
102
  ...editData?.current
@@ -108,17 +117,17 @@ const EditProperty = props => {
108
117
  size: "small",
109
118
  onClick: onBack,
110
119
  sx: {
111
- paddingLeft: '0px',
112
- '&:hover': {
113
- background: 'transparent !important'
120
+ paddingLeft: "0px",
121
+ "&:hover": {
122
+ background: "transparent !important"
114
123
  },
115
- '& svg': {
116
- width: '14px !important',
117
- height: '14px !important'
124
+ "& svg": {
125
+ width: "14px !important",
126
+ height: "14px !important"
118
127
  }
119
128
  },
120
129
  children: /*#__PURE__*/_jsx(Icon, {
121
- icon: 'leftArrow'
130
+ icon: "leftArrow"
122
131
  })
123
132
  }), "Edit Property"]
124
133
  }), /*#__PURE__*/_jsx(IconButton, {
@@ -126,8 +135,8 @@ const EditProperty = props => {
126
135
  size: "small",
127
136
  onClick: onClose,
128
137
  sx: {
129
- '& svg': {
130
- '& path': {
138
+ "& svg": {
139
+ "& path": {
131
140
  strokeWidth: 0
132
141
  }
133
142
  }
@@ -140,8 +149,8 @@ const EditProperty = props => {
140
149
  label: "Field Name",
141
150
  labelPlacement: "top",
142
151
  sx: {
143
- '& .MuiFormControl-root': {
144
- marginBottom: '4px'
152
+ "& .MuiFormControl-root": {
153
+ marginBottom: "4px"
145
154
  }
146
155
  },
147
156
  control: /*#__PURE__*/_jsx(TextField, {
@@ -151,31 +160,45 @@ const EditProperty = props => {
151
160
  fullWidth: true,
152
161
  placeholder: "Field Name"
153
162
  })
154
- }), /*#__PURE__*/_jsx(List, {
163
+ }), needWrap ? /*#__PURE__*/_jsx(List, {
164
+ className: "fe-dv-opt-list",
165
+ children: /*#__PURE__*/_jsxs(ListItemButton, {
166
+ onClick: onAction("wrapColumn"),
167
+ children: [/*#__PURE__*/_jsx(ListItemText, {
168
+ children: "Wrap Column"
169
+ }), /*#__PURE__*/_jsx(ListItemIcon, {
170
+ children: edit?.wrapColumn ? /*#__PURE__*/_jsx(Icon, {
171
+ icon: "toggleOn"
172
+ }) : /*#__PURE__*/_jsx(Icon, {
173
+ icon: "toggleOff"
174
+ })
175
+ })]
176
+ })
177
+ }) : null, /*#__PURE__*/_jsx(List, {
155
178
  className: "fe-dv-opt-list st",
156
179
  children: /*#__PURE__*/_jsxs(ListItemButton, {
157
180
  sx: {
158
- paddingBottom: '12px'
181
+ paddingBottom: "12px"
159
182
  },
160
183
  onClick: onChangeProperty,
161
184
  children: [/*#__PURE__*/_jsx(ListItemText, {
162
185
  children: "Type"
163
186
  }), /*#__PURE__*/_jsxs(ListItemIcon, {
164
187
  sx: {
165
- display: 'flex',
188
+ display: "flex",
166
189
  alignItems: "center",
167
190
  gap: 1
168
191
  },
169
192
  children: [/*#__PURE__*/_jsx(Box, {
170
193
  sx: {
171
194
  background: "#64748B1F",
172
- borderRadius: '4px',
173
- display: 'flex',
174
- alignItems: 'center',
175
- padding: '2px',
176
- '& svg': {
177
- width: '16px',
178
- height: '16px'
195
+ borderRadius: "4px",
196
+ display: "flex",
197
+ alignItems: "center",
198
+ padding: "2px",
199
+ "& svg": {
200
+ width: "16px",
201
+ height: "16px"
179
202
  }
180
203
  },
181
204
  children: /*#__PURE__*/_jsx(Icon, {
@@ -185,7 +208,7 @@ const EditProperty = props => {
185
208
  className: "label-tp",
186
209
  children: TYPE_LABELS[edit?.type]
187
210
  }), /*#__PURE__*/_jsx(Icon, {
188
- icon: 'rightArrow'
211
+ icon: "rightArrow"
189
212
  })]
190
213
  })]
191
214
  })
@@ -205,9 +228,9 @@ const EditProperty = props => {
205
228
  onClick: onAction("Visibilty"),
206
229
  children: [/*#__PURE__*/_jsx(ListItemIcon, {
207
230
  children: edit?.visible ? /*#__PURE__*/_jsx(Icon, {
208
- icon: 'eyeSlash'
231
+ icon: "eyeSlash"
209
232
  }) : /*#__PURE__*/_jsx(Icon, {
210
- icon: 'eyeIcon'
233
+ icon: "eyeIcon"
211
234
  })
212
235
  }), /*#__PURE__*/_jsxs(ListItemText, {
213
236
  children: [edit?.visible ? "Hide" : "Show", " in View"]
@@ -216,7 +239,7 @@ const EditProperty = props => {
216
239
  onClick: onAction("Duplicate"),
217
240
  children: [/*#__PURE__*/_jsx(ListItemIcon, {
218
241
  children: /*#__PURE__*/_jsx(Icon, {
219
- icon: 'duplicateIcon'
242
+ icon: "duplicateIcon"
220
243
  })
221
244
  }), /*#__PURE__*/_jsx(ListItemText, {
222
245
  children: "Duplicate Property"
@@ -225,7 +248,7 @@ const EditProperty = props => {
225
248
  onClick: onAction("Delete"),
226
249
  children: [/*#__PURE__*/_jsx(ListItemIcon, {
227
250
  children: /*#__PURE__*/_jsx(Icon, {
228
- icon: 'trashIcon'
251
+ icon: "trashIcon"
229
252
  })
230
253
  }), /*#__PURE__*/_jsx(ListItemText, {
231
254
  children: "Delete Property"
@@ -33,7 +33,7 @@ const useTableStyles = (theme, appTheme) => ({
33
33
  height: "40px",
34
34
  maxWidth: "0px !important",
35
35
  minWidth: "0px !important",
36
- "& input": {
36
+ "& input, & textarea": {
37
37
  color: appTheme?.palette?.editor?.tv_text_primary,
38
38
  background: "transparent",
39
39
  fontSize: "14px"
@@ -107,6 +107,9 @@ const useTableStyles = (theme, appTheme) => ({
107
107
  "& .MuiChip-deleteIcon": {
108
108
  minWidth: "22px",
109
109
  minHeight: "22px"
110
+ },
111
+ "&.wrap-true": {
112
+ flexWrap: "wrap"
110
113
  }
111
114
  },
112
115
  "&.Mui-disabled": {
@@ -69,6 +69,19 @@ const useDataViewStyles = (theme, appTheme) => ({
69
69
  opacity: 1
70
70
  }
71
71
  }
72
+ },
73
+ "& .fe-tv-type_text": {
74
+ "& .MuiInputBase-multiline": {
75
+ height: "auto !important",
76
+ "&.Mui-focused": {
77
+ border: 0,
78
+ outline: 0,
79
+ "& textarea:focus-visible": {
80
+ border: 0,
81
+ borderColor: "none"
82
+ }
83
+ }
84
+ }
72
85
  }
73
86
  },
74
87
  filterView: {
@@ -297,7 +297,7 @@ const Table = props => {
297
297
  onScroll: handleScroll,
298
298
  onMouseOver: onMouseOver,
299
299
  onMouseLeave: onMouseLeave,
300
- className: "custom-scroll",
300
+ className: !hideTools.includes("add_column") ? "custom-scroll" : '',
301
301
  children: [/*#__PURE__*/_jsx(TableComp, {
302
302
  className: readOnly ? "readOnly" : "",
303
303
  sx: {
@@ -13,6 +13,9 @@ import EmailRoundedIcon from "@mui/icons-material/EmailRounded";
13
13
  import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
14
14
  import GridOnIcon from "@mui/icons-material/GridOn";
15
15
  import GppBadOutlinedIcon from "@mui/icons-material/GppBadOutlined";
16
+ import WrapTextIcon from "@mui/icons-material/WrapText";
17
+ import ToggleOn from "@mui/icons-material/ToggleOn";
18
+ import ToggleOff from "@mui/icons-material/ToggleOff";
16
19
  import { AccordionTextFormatIcon, BoldTextFormatIcon, BulletedListTextFormatIcon, ButtonElementIcon, CarouselElementIcon, CheckListTextFormatIcon, ColorBoxElementIcon, DividerElementIcon, DocUploadElementIcon, EmbedElementIcon, EmojiElementIcon, FormElementIcon, GridElementIcon, H1, H2, H3, ImageElementIcon, ItalicTextFormatIcon, LinkIconV2, OrderedListTextFormatIcon, SignatureElementIcon, TableElementIcon, TopBannerElementIcon, UnderlineTextFormatIcon, VideoElementIcon, LeftAlignTextFormat, CenterAlignTextFormat, RightAlignTextFormat, JustifyTextFormat, FreeGridElement, AppHeaderElement, CodeElementIcon } from "./iconListV2";
17
20
  import MoreVertRoundedIcon from "@mui/icons-material/MoreVertRounded";
18
21
  import SettingsIcon from "../assets/svg/SettingsIcon";
@@ -312,7 +315,21 @@ const iconList = {
312
315
  trashIcon: /*#__PURE__*/_jsx(TrashIcon, {}),
313
316
  dataTable: /*#__PURE__*/_jsx(DataTableIcon, {}),
314
317
  chervUp: /*#__PURE__*/_jsx(ChervUp, {}),
315
- chervDown: /*#__PURE__*/_jsx(ChervDown, {})
318
+ chervDown: /*#__PURE__*/_jsx(ChervDown, {}),
319
+ wrapColumn: /*#__PURE__*/_jsx(WrapTextIcon, {}),
320
+ toggleOn: /*#__PURE__*/_jsx(ToggleOn, {
321
+ sx: {
322
+ fill: "rgb(37, 99, 235)",
323
+ stroke: "rgb(37, 99, 235)"
324
+ }
325
+ }),
326
+ toggleOff: /*#__PURE__*/_jsx(ToggleOff, {
327
+ sx: {
328
+ fill: "#64748B",
329
+ stroke: "#64748B",
330
+ color: "#64748B"
331
+ }
332
+ })
316
333
  };
317
334
  export const icons = {
318
335
  ...iconList
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.6.0",
3
+ "version": "9.6.2",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"