impaktapps-ui-builder 0.0.304 → 0.0.305

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.
@@ -9986,30 +9986,26 @@ const buildArray = (config, componentScope) => {
9986
9986
  return array;
9987
9987
  };
9988
9988
  const TextField = {
9989
- type: "Control",
9990
- scope: "#/properties/text",
9991
- options: {
9992
- widget: "InputField"
9989
+ "type": "Control",
9990
+ "scope": "#/properties/AAdhar",
9991
+ "layout": 12,
9992
+ "options": {
9993
+ "widget": "InputField"
9993
9994
  },
9994
9995
  config: {
9995
- layout: {
9996
- xs: 11,
9997
- sm: 11,
9998
- md: 5.5,
9999
- lg: 5.5
10000
- },
10001
9996
  main: {
10002
- label: "Aadhaar No.",
9997
+ label: "Adhaar Card",
10003
9998
  max: 2e3,
10004
9999
  step: 200,
10000
+ placeholder: "XXXX XXXX XXXX",
10005
10001
  autoFormat: true,
10006
10002
  patternRegex: "^[0-9\\s]*$",
10003
+ valueLength: 14,
10007
10004
  spaceIndex: 4,
10008
10005
  autoMaskLength: 4,
10009
10006
  autoMask: true,
10010
10007
  defaultStyle: true
10011
- },
10012
- style: {}
10008
+ }
10013
10009
  }
10014
10010
  };
10015
10011
  const buildAdhaarField = (config, componentScope) => {
@@ -10026,28 +10022,23 @@ const buildAdhaarField = (config, componentScope) => {
10026
10022
  return inputField;
10027
10023
  };
10028
10024
  const PanField = {
10029
- type: "Control",
10030
- scope: "#/properties/text",
10031
- options: {
10032
- widget: "InputField"
10025
+ "type": "Control",
10026
+ "scope": "#/properties/pan",
10027
+ "layout": 12,
10028
+ "options": {
10029
+ "widget": "InputField"
10033
10030
  },
10034
10031
  config: {
10035
- layout: {
10036
- xs: 11,
10037
- sm: 11,
10038
- md: 5.5,
10039
- lg: 5.5
10040
- },
10041
10032
  main: {
10042
- label: "Aadhaar No.",
10043
- max: 2e3,
10044
- step: 200,
10045
- patternRegex: "^[A-Z]{5}[0-9]{4}[A-Z]$",
10033
+ label: "Pan Card",
10034
+ placeholder: "Enter Pan card",
10035
+ patternRegex: "^[A-Z]{0,5}\\d{0,4}[A-Z]?$",
10036
+ valueLength: 10,
10046
10037
  spaceIndex: 4,
10047
- autoMaskLength: 4,
10038
+ autoMaskLength: 5,
10039
+ autoMask: true,
10048
10040
  defaultStyle: true
10049
- },
10050
- style: {}
10041
+ }
10051
10042
  }
10052
10043
  };
10053
10044
  const buildPanField = (config, componentScope) => {