impaktapps-ui-builder 0.0.283 → 0.0.284

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.283",
3
+ "version": "0.0.284",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -18,6 +18,9 @@ export const buildTable = (config: any, componentScope: string) => {
18
18
  if (config.DragAvailable) {
19
19
  table.config.main.enableDrag = config.DragAvailable === "YES" ? true : false
20
20
  };
21
+ if (config.selectKey) {
22
+ table.config.main.selectKey = config.selectKey
23
+ }
21
24
  return table;
22
25
  }
23
26
 
@@ -36,6 +39,9 @@ export const buildLazyLoadingTable = (config: any, componentScope: string) => {
36
39
  if (config.DragAvailable) {
37
40
  table.config.main.enableDrag = config.DragAvailable === "YES" ? true : false
38
41
  };
42
+ if (config.selectKey) {
43
+ table.config.main.selectKey = config.selectKey
44
+ }
39
45
  table.config.main.label = config.label;
40
46
  return table;
41
47
  }
@@ -253,7 +253,7 @@ export const buildPropertiesSection = function (type: String) {
253
253
  getRadioInputField("SelectionAvailable","Selection Available",["YES","NO"]),
254
254
  getRadioInputField("ColumnResizingAvailable","ColumnResizing Available",["YES","NO"]),
255
255
  getRadioInputField("DragAvailable","Drag Available",["YES","NO"]),
256
- EmptyBox
256
+ getInputField("selectKey","Selection Key")
257
257
  ]
258
258
  }
259
259
  else if (type === "Radio") {