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/dist/impaktapps-ui-builder.es.js +4 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -1
|
@@ -7523,8 +7523,8 @@ const buildPropertiesSection = function(type) {
|
|
|
7523
7523
|
getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
|
|
7524
7524
|
getRadioInputField("disableFilters", "Disable Filter", ["YES", "NO"]),
|
|
7525
7525
|
getRadioInputField("disableSorting", "Disable Sorting", ["YES", "NO"]),
|
|
7526
|
+
getRadioInputField("autoHeaders", "Enable Auto Headers", ["YES", "NO"]),
|
|
7526
7527
|
getInputField("selectKey", "Selection Key"),
|
|
7527
|
-
emptyBox$1("LazyLoadingTableEmpty1", { xs: 6, sm: 0, md: 4, lg: 4 }),
|
|
7528
7528
|
buildWrapper("Tree Table Properties", [
|
|
7529
7529
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
7530
7530
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
@@ -10689,6 +10689,9 @@ const buildTable = (config, componentScope) => {
|
|
|
10689
10689
|
if (config.disableSorting) {
|
|
10690
10690
|
table.config.main.disableSorting = config.disableSorting === "YES" ? true : false;
|
|
10691
10691
|
}
|
|
10692
|
+
if (config.autoHeaders) {
|
|
10693
|
+
table.config.main.autoHeaders = config.autoHeaders === "YES" ? true : false;
|
|
10694
|
+
}
|
|
10692
10695
|
if (config.Table_Download_Keys_Name) {
|
|
10693
10696
|
table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
|
|
10694
10697
|
}
|