cloud-ide-lms-model 1.0.38 → 1.0.39
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.
|
@@ -13,6 +13,8 @@ export type autocapitalizeType = "on" | "off" | "words" | 'sentences';
|
|
|
13
13
|
export type autocompleteType = "name" | "email" | "tel" | "url" | "on" | "off" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "photo";
|
|
14
14
|
/** @description Size of control */
|
|
15
15
|
export type themeSize = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
16
|
+
/** @description loader type like pill or spinner */
|
|
17
|
+
export type spinnerType = "spinner" | "pill-spinner";
|
|
16
18
|
export interface MRequestMiddelware {
|
|
17
19
|
Validate?: Function;
|
|
18
20
|
}
|