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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.485",
3
+ "version": "1.0.486",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -32,6 +32,9 @@ 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
+ }
35
38
  inputField.config.main.errorMessage = `${config.name} is empty or invalid`;
36
39
  inputField.scope = componentScope;
37
40
  return inputField;
@@ -440,7 +440,8 @@ export const buildPropertiesSection = function (type: String) {
440
440
  { label: "Right", value: "right" },
441
441
  { label: "Bottom", value: "bottom" }
442
442
  ]),
443
- emptyBox("Radio", { xs: 6, sm: 6, md: 8, lg: 9 }),
443
+ getSelectField("iconName", "Start Icon", []),
444
+ emptyBox("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
444
445
  getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
445
446
  getInputField("keyName", "Event Key Name"),
446
447
  ]