UNPKG

purgetss

Version:

A package that simplifies mobile app creation for Titanium developers.

36 lines 2.69 kB
```css // Property: autofillType // Component(s): Ti.UI.TextArea, Ti.UI.TextField '.autofill-type-username': { autofillType: Ti.UI.AUTOFILL_TYPE_USERNAME } '.autofill-type-password': { autofillType: Ti.UI.AUTOFILL_TYPE_PASSWORD } '.autofill-type-name': { autofillType: Ti.UI.AUTOFILL_TYPE_NAME } '.autofill-type-name-prefix': { autofillType: Ti.UI.AUTOFILL_TYPE_NAME_PREFIX } '.autofill-type-given-name': { autofillType: Ti.UI.AUTOFILL_TYPE_GIVEN_NAME } '.autofill-type-middle-name': { autofillType: Ti.UI.AUTOFILL_TYPE_MIDDLE_NAME } '.autofill-type-family-name': { autofillType: Ti.UI.AUTOFILL_TYPE_FAMILY_NAME } '.autofill-type-name-suffix': { autofillType: Ti.UI.AUTOFILL_TYPE_NAME_SUFFIX } '.autofill-type-nickname': { autofillType: Ti.UI.AUTOFILL_TYPE_NICKNAME } '.autofill-type-job-title': { autofillType: Ti.UI.AUTOFILL_TYPE_JOB_TITLE } '.autofill-type-organization-name': { autofillType: Ti.UI.AUTOFILL_TYPE_ORGANIZATION_NAME } '.autofill-type-location': { autofillType: Ti.UI.AUTOFILL_TYPE_LOCATION } '.autofill-type-address': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS } '.autofill-type-address-line1': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS_LINE1 } '.autofill-type-address-line2': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS_LINE2 } '.autofill-type-address-city': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS_CITY } '.autofill-type-address-state': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS_STATE } '.autofill-type-address-city-state': { autofillType: Ti.UI.AUTOFILL_TYPE_ADDRESS_CITY_STATE } '.autofill-type-sublocality': { autofillType: Ti.UI.AUTOFILL_TYPE_SUBLOCALITY } '.autofill-type-country-name': { autofillType: Ti.UI.AUTOFILL_TYPE_COUNTRY_NAME } '.autofill-type-postal-code': { autofillType: Ti.UI.AUTOFILL_TYPE_POSTAL_CODE } '.autofill-type-phone': { autofillType: Ti.UI.AUTOFILL_TYPE_PHONE } '.autofill-type-email': { autofillType: Ti.UI.AUTOFILL_TYPE_EMAIL } '.autofill-type-url': { autofillType: Ti.UI.AUTOFILL_TYPE_URL } '.autofill-type-card-number': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_NUMBER } '.autofill-type-card-security-code': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_SECURITY_CODE } '.autofill-type-card-expiration-date': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_DATE } '.autofill-type-card-expiration-day': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_DAY } '.autofill-type-card-expiration-month': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_MONTH } '.autofill-type-card-expiration-year': { autofillType: Ti.UI.AUTOFILL_TYPE_CARD_EXPIRATION_YEAR } '.autofill-type-new-password': { autofillType: Ti.UI.AUTOFILL_TYPE_NEW_PASSWORD } '.autofill-type-one-time-code': { autofillType: Ti.UI.AUTOFILL_TYPE_ONE_TIME_CODE } ```