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
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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"]),
|