impaktapps-ui-builder 0.0.70 → 0.0.72

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.70",
3
+ "version": "0.0.72",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -46,6 +46,9 @@ export const buildTable = (config: any, componentScope: string) => {
46
46
  if(config.disableSorting){
47
47
  table.config.main.disableSorting = config.disableSorting === "YES" ? true : false
48
48
  }
49
+ if(config.autoHeaders){
50
+ table.config.main.autoHeaders = config.autoHeaders === "YES" ? true : false
51
+ }
49
52
  if (config.Table_Download_Keys_Name) {
50
53
  table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map(e => e.KeyName);
51
54
  }
@@ -422,7 +422,8 @@ export const buildPropertiesSection = function (type: String) {
422
422
  getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
423
423
  getRadioInputField("disableFilters", "Disable Filter", ["YES", "NO"]),
424
424
  getRadioInputField("disableSorting", "Disable Sorting", ["YES", "NO"]),
425
- getInputField("selectKey", "Selection Key"),emptyBox("LazyLoadingTableEmpty1", {xs: 6, sm: 0, md: 4, lg: 4 }),
425
+ getRadioInputField("autoHeaders", "Enable Auto Headers", ["YES", "NO"]),
426
+ getInputField("selectKey", "Selection Key"),
426
427
  buildWrapper("Tree Table Properties", [
427
428
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
428
429
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),