impaktapps-ui-builder 1.0.471 → 1.0.472
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
|
@@ -8096,7 +8096,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8096
8096
|
getSelectField("variant", "Variant"),
|
|
8097
8097
|
getInputField("toolTip", "Tooltip"),
|
|
8098
8098
|
getSelectField("toolTipPosition", "Tooltip Position"),
|
|
8099
|
-
|
|
8099
|
+
getSelectField("iconName", "Start Icon"),
|
|
8100
|
+
emptyBox$1("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
|
|
8100
8101
|
getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
|
|
8101
8102
|
getInputField("keyName", "Event Key Name")
|
|
8102
8103
|
];
|
|
@@ -11676,6 +11677,9 @@ const buildTextField = (config2, componentScope2) => {
|
|
|
11676
11677
|
if (config2.toolTipPosition) {
|
|
11677
11678
|
inputField.config.main.toolTipPosition = config2.toolTipPosition;
|
|
11678
11679
|
}
|
|
11680
|
+
if (config2.iconName) {
|
|
11681
|
+
inputField.config.main.startIcon = config2.iconName;
|
|
11682
|
+
}
|
|
11679
11683
|
inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
|
|
11680
11684
|
inputField.scope = componentScope2;
|
|
11681
11685
|
return inputField;
|