impaktapps-ui-builder 0.0.76-filteringOption → 0.0.78
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 +35 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +30 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +8 -2
|
@@ -7379,7 +7379,7 @@ const getMultiSelectField = (scope, label) => {
|
|
|
7379
7379
|
widget: "MultipleSelect"
|
|
7380
7380
|
},
|
|
7381
7381
|
config: {
|
|
7382
|
-
layout: { xs:
|
|
7382
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
7383
7383
|
main: {
|
|
7384
7384
|
multiple: true,
|
|
7385
7385
|
label,
|
|
@@ -7570,6 +7570,10 @@ const buildPropertiesSection = function(type) {
|
|
|
7570
7570
|
getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
|
|
7571
7571
|
getRadioInputField("disableFilters", "Disable Filter", ["YES", "NO"]),
|
|
7572
7572
|
getRadioInputField("disableSorting", "Disable Sorting", ["YES", "NO"]),
|
|
7573
|
+
getRadioInputField("disableEditColumn", "Disable Edit Column", ["YES", "NO"]),
|
|
7574
|
+
getRadioInputField("disableFullScreenToggle", "Disable Full Screen Toggle", ["YES", "NO"]),
|
|
7575
|
+
getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
|
|
7576
|
+
getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
|
|
7573
7577
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
7574
7578
|
getInputField("selectKey", "Selection Key"),
|
|
7575
7579
|
buildWrapper("Tree Table Properties", [
|
|
@@ -10737,6 +10741,18 @@ const buildTable = (config, componentScope) => {
|
|
|
10737
10741
|
if (config.disableSorting) {
|
|
10738
10742
|
table.config.main.disableSorting = config.disableSorting === "YES" ? true : false;
|
|
10739
10743
|
}
|
|
10744
|
+
if (config.disableEditColumn) {
|
|
10745
|
+
table.config.main.disableEditColumn = config.disableEditColumn === "YES" ? true : false;
|
|
10746
|
+
}
|
|
10747
|
+
if (config.disableFullScreenToggle) {
|
|
10748
|
+
table.config.main.disableFullScreenToggle = config.disableFullScreenToggle === "YES" ? true : false;
|
|
10749
|
+
}
|
|
10750
|
+
if (config.disableDensityToggle) {
|
|
10751
|
+
table.config.main.disableDensityToggle = config.disableDensityToggle === "YES" ? true : false;
|
|
10752
|
+
}
|
|
10753
|
+
if (config.disableDownloadFile) {
|
|
10754
|
+
table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
|
|
10755
|
+
}
|
|
10740
10756
|
if (config.Table_Download_Keys_Name) {
|
|
10741
10757
|
table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
|
|
10742
10758
|
}
|
|
@@ -10766,6 +10782,24 @@ const buildLazyLoadingTable = (config, componentScope) => {
|
|
|
10766
10782
|
if (config.downloadAllData) {
|
|
10767
10783
|
table.config.main.downloadAllData = config.downloadAllData === "YES" ? true : false;
|
|
10768
10784
|
}
|
|
10785
|
+
if (config.disableFilters) {
|
|
10786
|
+
table.config.main.disableFilters = config.disableFilters === "YES" ? true : false;
|
|
10787
|
+
}
|
|
10788
|
+
if (config.disableSorting) {
|
|
10789
|
+
table.config.main.disableSorting = config.disableSorting === "YES" ? true : false;
|
|
10790
|
+
}
|
|
10791
|
+
if (config.disableEditColumn) {
|
|
10792
|
+
table.config.main.disableEditColumn = config.disableEditColumn === "YES" ? true : false;
|
|
10793
|
+
}
|
|
10794
|
+
if (config.disableFullScreenToggle) {
|
|
10795
|
+
table.config.main.disableFullScreenToggle = config.disableFullScreenToggle === "YES" ? true : false;
|
|
10796
|
+
}
|
|
10797
|
+
if (config.disableDensityToggle) {
|
|
10798
|
+
table.config.main.disableDensityToggle = config.disableDensityToggle === "YES" ? true : false;
|
|
10799
|
+
}
|
|
10800
|
+
if (config.disableDownloadFile) {
|
|
10801
|
+
table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
|
|
10802
|
+
}
|
|
10769
10803
|
if (config.Table_Download_Keys_Name) {
|
|
10770
10804
|
table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
|
|
10771
10805
|
}
|