impaktapps-ui-builder 1.0.485 → 1.0.486
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 +5 -1
- 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/buildText.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -1
|
@@ -8088,7 +8088,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8088
8088
|
getSelectField("variant", "Variant"),
|
|
8089
8089
|
getInputField("toolTip", "Tooltip"),
|
|
8090
8090
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8091
|
-
|
|
8091
|
+
getSelectField("iconName", "Start Icon"),
|
|
8092
|
+
emptyBox$1("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
|
|
8092
8093
|
getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
|
|
8093
8094
|
getInputField("keyName", "Event Key Name")
|
|
8094
8095
|
];
|
|
@@ -11651,6 +11652,9 @@ const buildTextField = (config2, componentScope2) => {
|
|
|
11651
11652
|
if (config2.toolTipPosition) {
|
|
11652
11653
|
inputField.config.main.toolTipPosition = config2.toolTipPosition;
|
|
11653
11654
|
}
|
|
11655
|
+
if (config2.iconName) {
|
|
11656
|
+
inputField.config.main.startIcon = config2.iconName;
|
|
11657
|
+
}
|
|
11654
11658
|
inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
|
|
11655
11659
|
inputField.scope = componentScope2;
|
|
11656
11660
|
return inputField;
|