cloud-ide-lms-model 1.0.39 → 1.0.41

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,9 +12,11 @@ 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 = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
15
+ export type themeSize = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
16
16
  /** @description loader type like pill or spinner */
17
17
  export type spinnerType = "spinner" | "pill-spinner";
18
+ /** @description type of icons behaviour */
19
+ export type iconType = "round" | "box" | "none";
18
20
  export interface MRequestMiddelware {
19
21
  Validate?: Function;
20
22
  }
@@ -5,6 +5,7 @@ interface ICoreSype {
5
5
  sype_page_id_sypg?: string;
6
6
  sype_label?: string;
7
7
  sype_label_hide?: boolean;
8
+ sype_hide_helper_and_error_text?: boolean;
8
9
  sype_auto_complete?: string;
9
10
  sype_type?: controlType;
10
11
  sype_option_key?: string;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.39",
8
+ "version": "1.0.41",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",