impaktapps-ui-builder 0.0.293 → 0.0.294

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.
@@ -5936,13 +5936,7 @@ const ComponentSchema = {
5936
5936
  ]
5937
5937
  },
5938
5938
  value: {
5939
- type: "string",
5940
- oneOf: [
5941
- { title: "3", const: "3" },
5942
- { title: "5.5", const: "5.5" },
5943
- { title: "8", const: "8" },
5944
- { title: "12", const: "12" }
5945
- ]
5939
+ type: "string"
5946
5940
  }
5947
5941
  }
5948
5942
  }
@@ -6276,13 +6270,7 @@ const componentBasicUiSchema = {
6276
6270
  lg: 5.5
6277
6271
  },
6278
6272
  main: {
6279
- label: "Screen Size",
6280
- options: [
6281
- { label: "Extra Small", value: "xs" },
6282
- { label: "Small", value: "sm" },
6283
- { label: "Medium", value: "md" },
6284
- { label: "Large", value: "lg" }
6285
- ]
6273
+ label: "Screen Size"
6286
6274
  }
6287
6275
  }
6288
6276
  },
@@ -6290,7 +6278,7 @@ const componentBasicUiSchema = {
6290
6278
  type: "Control",
6291
6279
  scope: "#/properties/value",
6292
6280
  options: {
6293
- widget: "MultipleSelect"
6281
+ widget: "InputField"
6294
6282
  },
6295
6283
  config: {
6296
6284
  layout: {
@@ -6543,7 +6531,7 @@ const CoreSection = {
6543
6531
  type: "Control",
6544
6532
  scope: "#/properties/value",
6545
6533
  options: {
6546
- widget: "MultipleSelect"
6534
+ widget: "InputField"
6547
6535
  },
6548
6536
  config: {
6549
6537
  layout: {
@@ -6575,7 +6563,7 @@ const OptionArray = {
6575
6563
  type: "Control",
6576
6564
  scope: "#/properties/label",
6577
6565
  options: {
6578
- widget: "InputField"
6566
+ widget: "SelectInputField"
6579
6567
  },
6580
6568
  config: {
6581
6569
  layout: {
@@ -6952,7 +6940,7 @@ const buildPropertiesSection = function(type) {
6952
6940
  getArrayControl("pieArcColors", "color")
6953
6941
  ];
6954
6942
  } else if (type === "WrapperSection") {
6955
- uiSchema.elements = [getRadioInputField("divider", "Divider", ["YES", "No"]), getRadioInputField("heading", "Page Heading", ["YES", "No"])];
6943
+ uiSchema.elements = [getRadioInputField("divider", "Divider", ["YES", "No"]), EmptyBox];
6956
6944
  } else if (type === "TabSection") {
6957
6945
  uiSchema.elements = [
6958
6946
  getArrayControl("sectionLabels", "label")
@@ -10136,7 +10124,7 @@ var service = (funcParams) => {
10136
10124
  var _a;
10137
10125
  const apiBody = [
10138
10126
  { key: "size", value: paginationValues.pagination.pageSize },
10139
- { key: "start", value: paginationValues.pagination.pageIndex * paginationValues.pagination.pageSize },
10127
+ { key: "pageIndex", value: paginationValues.pagination.pageIndex },
10140
10128
  { key: "sorting", value: paginationValues.sorting || [] },
10141
10129
  { key: "filters", value: paginationValues.columnFilters || [] },
10142
10130
  { key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" }