impaktapps-ui-builder 1.0.5 → 1.0.6
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 +1 -9
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/buildText.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -3
package/package.json
CHANGED
|
@@ -30,9 +30,6 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
30
30
|
if (config.paginateExpandedRows) {
|
|
31
31
|
table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
|
|
32
32
|
}
|
|
33
|
-
if (config.treeStructure) {
|
|
34
|
-
table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;
|
|
35
|
-
}
|
|
36
33
|
if (config.SelectionAvailable) {
|
|
37
34
|
table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false
|
|
38
35
|
};
|
|
@@ -32,9 +32,6 @@ export const buildTextField = (config: any, componentScope: string) => {
|
|
|
32
32
|
if (config.toolTipPosition) {
|
|
33
33
|
inputField.config.main.toolTipPosition = config.toolTipPosition;
|
|
34
34
|
}
|
|
35
|
-
if(config.iconName){
|
|
36
|
-
inputField.config.main.startIcon = config.iconName;
|
|
37
|
-
}
|
|
38
35
|
inputField.config.main.errorMessage = `${config.name} is empty or invalid`;
|
|
39
36
|
inputField.scope = componentScope;
|
|
40
37
|
return inputField;
|
|
@@ -440,8 +440,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
440
440
|
{ label: "Right", value: "right" },
|
|
441
441
|
{ label: "Bottom", value: "bottom" }
|
|
442
442
|
]),
|
|
443
|
-
|
|
444
|
-
emptyBox("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
|
|
443
|
+
emptyBox("Radio", { xs: 6, sm: 6, md: 8, lg: 9 }),
|
|
445
444
|
getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
|
|
446
445
|
getInputField("keyName", "Event Key Name"),
|
|
447
446
|
]
|
|
@@ -651,7 +650,6 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
651
650
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
652
651
|
// getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
|
|
653
652
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
654
|
-
getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
|
|
655
653
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
656
654
|
getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
|
|
657
655
|
]),
|