impaktapps-ui-builder 1.0.196 → 1.0.197
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 +9 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -0
|
@@ -8280,6 +8280,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8280
8280
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
8281
8281
|
getSelectField("maxPageSize", "Max Page Size"),
|
|
8282
8282
|
getSelectField("initialDensity", "Initial Toggle Density"),
|
|
8283
|
+
getInputField("expandedKey", "Expand Row ID Key"),
|
|
8284
|
+
getInputField("parentIdKey", "Expand Parent Key"),
|
|
8285
|
+
emptyBox$1("TreeEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8283
8286
|
buildWrapper("Tree Table Properties", [
|
|
8284
8287
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
8285
8288
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
@@ -11876,6 +11879,12 @@ const buildTable = (config2, componentScope2) => {
|
|
|
11876
11879
|
if (config2.selectKey) {
|
|
11877
11880
|
table.config.main.selectKey = config2.selectKey;
|
|
11878
11881
|
}
|
|
11882
|
+
if (config2.expandedKey) {
|
|
11883
|
+
table.config.main.expandedKey = config2.expandedKey;
|
|
11884
|
+
}
|
|
11885
|
+
if (config2.parentIdKey) {
|
|
11886
|
+
table.config.main.parentIdKey = config2.parentIdKey;
|
|
11887
|
+
}
|
|
11879
11888
|
if (config2.maxPageSize) {
|
|
11880
11889
|
table.config.main.maxPageSize = config2.maxPageSize;
|
|
11881
11890
|
}
|