Kindly adhere the below following steps to consume this component.A) Take "RestrictInputs" client action via dependency from InputRestriction module from Regex Inputs Restrictions.B) Drag an action "RestrictInputs" to OnInput event handler of input widget. It can be added in Onkeyup, etc.,C) Configure the inputs of "RestrictInputs" action as per requirement.D) The appropriate output will be given from an action.Please find the below descriptions for inputs of RestrictInputs action.A) Restriction Type needs to be passed. E.g. (Note: A-Alphabets, LA-LowerAlpha.., UA-UpperAlpha.., SC-SpecialCharactes, N-Numbers)A- allow only ALA- allow only LAUA- allow only UAswA- any value but only starts with AswLA- any value but only starts with LAswUA- any value but only starts with UAN- allow only NswN- any value but only starts with NSC- allow only SCswSC- any value but only starts with SCA&SC- allow only A and SCLA&SC- allow only LA and SCUA&SC- allow only UA and SCswAorSC- any value but only starts with A or SCswLAorSC- any value but only starts with LA or SCswUAorSC- any value but only starts with UA or SCA&N- allow only A and NLA&N - allow only LA and NUA&N - allow only UA and NswAorN- any value but only starts with A or NswLAorN- any value but only starts with LA or NswUAorN- any value but only starts with UA or NN&SC- allow only N and SCswNorSC- any value but only starts with N or SCGV- allow only any given value(s) mentioned in SpecificValues(s)ToAllow input. E.g. ! or 123!@# or abc$%*.B) Specific value(s) can be passed to allow along with the RestrictionType chosen. It allows users to enter the given specific values along with the given RestrictionType. The specific value can be any single or list of values. E.g. ! or 123!@# or abc$%*.C) Specific value(s) can be passed to restrict. It prevents users from entering this given specific value(s). The specific value can be any single or list of values. E.g. ! or 123!@# or abc$%*.D) Specific value(s) to be start with can be passed. It allows users to enter values with first character as only given specific value(s). E.g. ! or 123!@# or abc$%*.E) HasSpaceNOTAllowed - The Boolean value needs to be passed. If True, Space will not be allowed. If False, Space will be allowed.F) HasSpaceNOTAllowedOnlyAtFirst - The Boolean value needs to be passed. If True, Space will not be allowed at very first character. If False, Space will be allowed at very first character.G) HasRestrictCopy - The Boolean value needs to be passed. If True, value cannot be copied. If false, value can be copied.H) HasRestrictPaste - The Boolean value needs to be passed. If True, value cannot be pasted. If false, value can be pasted.I) HasValidateEmail - The Boolean value needs to be passed. If True, Email format will be validated. If False, Email format will not be validated. This can be set as True, if input value holds any email format.