impaktapps-ui-builder 1.0.238 → 1.0.239

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.
@@ -8294,7 +8294,7 @@ const buildPropertiesSection = function(type) {
8294
8294
  getSelectField("variant", "Variant"),
8295
8295
  getInputField("toolTip", "Tooltip"),
8296
8296
  getSelectField("toolTipPosition", "Tooltip Position"),
8297
- getInputField("errorMessage", " Error Message")
8297
+ emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
8298
8298
  ];
8299
8299
  break;
8300
8300
  case "DateTime":
@@ -8302,7 +8302,7 @@ const buildPropertiesSection = function(type) {
8302
8302
  getSelectField("variant", "Variant"),
8303
8303
  getInputField("toolTip", "Tooltip"),
8304
8304
  getSelectField("toolTipPosition", "Tooltip Position"),
8305
- getInputField("errorMessage", " Error Message")
8305
+ emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
8306
8306
  ];
8307
8307
  break;
8308
8308
  case "Thought":
@@ -10835,13 +10835,13 @@ var service = (funcParams) => {
10835
10835
  });
10836
10836
  },
10837
10837
  getStyle: () => {
10838
- var _a, _b, _c, _d, _e;
10838
+ var _a, _b, _c, _d;
10839
10839
  const cloneEventGroup = _.cloneDeep(eventGroups);
10840
10840
  if (cloneEventGroup.setStyle) {
10841
10841
  let finalResponse = {};
10842
- const path = ((_a = funcParams.dynamicData) == null ? void 0 : _a.tableButtonPath) || ((_c = (_b = funcParams == null ? void 0 : funcParams.dynamicData) == null ? void 0 : _b.path) == null ? void 0 : _c.split(".")[0]);
10843
- if ((_d = cloneEventGroup == null ? void 0 : cloneEventGroup.setStyle) == null ? void 0 : _d[path]) {
10844
- for (const eventConfig of (_e = cloneEventGroup == null ? void 0 : cloneEventGroup.setStyle) == null ? void 0 : _e[path]) {
10842
+ const path = ((_a = funcParams.dynamicData) == null ? void 0 : _a.tableButtonPath) || ((_b = funcParams == null ? void 0 : funcParams.dynamicData.path) == null ? void 0 : _b.split(".").pop());
10843
+ if ((_c = cloneEventGroup == null ? void 0 : cloneEventGroup.setStyle) == null ? void 0 : _c[path]) {
10844
+ for (const eventConfig of (_d = cloneEventGroup == null ? void 0 : cloneEventGroup.setStyle) == null ? void 0 : _d[path]) {
10845
10845
  finalResponse = executeEvents({
10846
10846
  ...executeEventsParameters,
10847
10847
  config: eventConfig,
@@ -12159,9 +12159,6 @@ const DateTime = {
12159
12159
  const buildDate = (config2, componentScope2) => {
12160
12160
  const dateInputField = _.cloneDeep(DateInputField);
12161
12161
  dateInputField.config.main.label = config2.label;
12162
- if (config2.errorMessage) {
12163
- dateInputField.config.main.errorMessage = config2.errorMessage;
12164
- }
12165
12162
  dateInputField.scope = componentScope2;
12166
12163
  if (config2.layout) {
12167
12164
  dateInputField.config.layout = createLayoutFormat(config2.layout);
@@ -12183,9 +12180,6 @@ const buildDate = (config2, componentScope2) => {
12183
12180
  const buildDateTime = (config2, componentScope2) => {
12184
12181
  const dateTimeInputField = _.cloneDeep(DateTime);
12185
12182
  dateTimeInputField.config.main.label = config2.label;
12186
- if (config2.errorMessage) {
12187
- dateTimeInputField.config.main.errorMessage = config2.errorMessage;
12188
- }
12189
12183
  dateTimeInputField.scope = componentScope2;
12190
12184
  if (config2.layout) {
12191
12185
  dateTimeInputField.config.layout = createLayoutFormat(config2.layout);