cloud-ide-lms-model 1.0.41 → 1.0.43
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.
|
@@ -12,11 +12,16 @@ export type autocapitalizeType = "on" | "off" | "words" | 'sentences';
|
|
|
12
12
|
/** @description auto complete type to help reader what is the type of value */
|
|
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
|
-
export type themeSize = "
|
|
15
|
+
export type themeSize = "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
|
|
16
16
|
/** @description loader type like pill or spinner */
|
|
17
17
|
export type spinnerType = "spinner" | "pill-spinner";
|
|
18
18
|
/** @description type of icons behaviour */
|
|
19
19
|
export type iconType = "round" | "box" | "none";
|
|
20
|
+
/**
|
|
21
|
+
* @description type of input style like solid, outline or none
|
|
22
|
+
* @example solid: solid border and background color, outline: border with outline, none: no border
|
|
23
|
+
*/
|
|
24
|
+
export type inputStyleType = "solid" | "outline" | "none";
|
|
20
25
|
export interface MRequestMiddelware {
|
|
21
26
|
Validate?: Function;
|
|
22
27
|
}
|