impaktapps-ui-builder 1.0.196 → 1.0.199

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.
@@ -8280,6 +8280,9 @@ const buildPropertiesSection = function(type) {
8280
8280
  getMultiSelectField("filteringOptions", "Filtering Options"),
8281
8281
  getSelectField("maxPageSize", "Max Page Size"),
8282
8282
  getSelectField("initialDensity", "Initial Toggle Density"),
8283
+ getInputField("rowIdKey", "Row ID Key"),
8284
+ getInputField("parentIdKey", "Parent ID Key"),
8285
+ emptyBox$1("TreeEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
8283
8286
  buildWrapper("Tree Table Properties", [
8284
8287
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8285
8288
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -11876,6 +11879,12 @@ const buildTable = (config2, componentScope2) => {
11876
11879
  if (config2.selectKey) {
11877
11880
  table.config.main.selectKey = config2.selectKey;
11878
11881
  }
11882
+ if (config2.rowIdKey) {
11883
+ table.config.main.rowIdKey = config2.rowIdKey;
11884
+ }
11885
+ if (config2.parentIdKey) {
11886
+ table.config.main.parentIdKey = config2.parentIdKey;
11887
+ }
11879
11888
  if (config2.maxPageSize) {
11880
11889
  table.config.main.maxPageSize = config2.maxPageSize;
11881
11890
  }