cloud-ide-lms-model 1.0.42 → 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.
@@ -17,6 +17,11 @@ export type themeSize = "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "xxl"
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
  }
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.42",
8
+ "version": "1.0.43",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",