cloud-ide-lms-model 1.0.17 → 1.0.18
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.
- package/lib/model/core/core_page_elements.d.ts +4 -0
- package/lib/model/core/core_page_elements.js +2 -0
- package/lib/model/core/design-config.d.ts +2 -2
- package/lib/model/core/page-elements.d.ts +3 -0
- package/lib/model/core/page-elements.js +1 -0
- package/lib/routes/coreRoutes.d.ts +1 -1
- package/lib/routes/coreRoutes.js +1 -1
- package/lib/schema/collection_names.d.ts +5 -0
- package/lib/schema/collection_names.js +8 -0
- package/lib/schema/core/core_page_elements.d.ts +22 -0
- package/lib/schema/core/core_page_elements.js +2 -0
- package/lib/schema/core/index.d.ts +1 -1
- package/lib/schema/core/index.js +1 -1
- package/lib/schema/index.d.ts +1 -0
- package/lib/schema/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ICoreSype, ICoreSypg, ICoreSypgr, ICoreSyptb, ICoreSytm, ITabs } from "../../schema";
|
|
2
2
|
import { controllerResponse } from "../../utilities";
|
|
3
3
|
type IDesignConfigErrorLogger = {
|
|
4
4
|
[key in keyof MDesignConfig]: string;
|
|
@@ -18,7 +18,7 @@ interface designConfigResponseData {
|
|
|
18
18
|
[key: string]: ICoreSypgr;
|
|
19
19
|
};
|
|
20
20
|
controls?: {
|
|
21
|
-
[key: string]:
|
|
21
|
+
[key: string]: ICoreSype;
|
|
22
22
|
};
|
|
23
23
|
tab?: {
|
|
24
24
|
[key: string]: ICoreTabs;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const coreRoutesUrl: {
|
|
2
|
+
module: string;
|
|
2
3
|
/** Endpoint to get file details (get-file-details)
|
|
3
4
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
4
5
|
*/
|
|
5
|
-
module: string;
|
|
6
6
|
getFileDetails: string;
|
|
7
7
|
};
|
|
8
8
|
export { coreRoutesUrl };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.coreRoutesUrl = void 0;
|
|
4
4
|
const coreRoutesUrl = {
|
|
5
|
+
module: 'core',
|
|
5
6
|
/** Endpoint to get file details (get-file-details)
|
|
6
7
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
7
8
|
*/
|
|
8
|
-
module: 'core',
|
|
9
9
|
getFileDetails: "get-file-details"
|
|
10
10
|
};
|
|
11
11
|
exports.coreRoutesUrl = coreRoutesUrl;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface ICoreSype {
|
|
2
|
+
_id?: string;
|
|
3
|
+
sype_key: string;
|
|
4
|
+
sype_type?: string;
|
|
5
|
+
sype_placeholder?: string;
|
|
6
|
+
sype_auto_complete?: string;
|
|
7
|
+
sype_page_id_sypg?: string;
|
|
8
|
+
sype_title?: string;
|
|
9
|
+
sype_title_placement?: SypeTitlePlacement;
|
|
10
|
+
sype_min_length?: number;
|
|
11
|
+
sype_max_length?: number;
|
|
12
|
+
sype_width?: SypeWidth;
|
|
13
|
+
sype_regex?: string;
|
|
14
|
+
sype_required?: boolean;
|
|
15
|
+
sype_tooltip?: string;
|
|
16
|
+
sype_disabled?: boolean;
|
|
17
|
+
sype_default?: boolean | string | number;
|
|
18
|
+
sype_isactive?: boolean;
|
|
19
|
+
}
|
|
20
|
+
type SypeWidth = number | "sm" | "lg" | "md" | undefined;
|
|
21
|
+
type SypeTitlePlacement = "center";
|
|
22
|
+
export { ICoreSype };
|
|
@@ -7,7 +7,7 @@ export * from './core_system_config';
|
|
|
7
7
|
export * from './core_pin_code';
|
|
8
8
|
export * from './core_page_tab';
|
|
9
9
|
export * from './core_page_grid';
|
|
10
|
-
export * from './
|
|
10
|
+
export * from './core_page_elements';
|
|
11
11
|
export * from './core_general_master';
|
|
12
12
|
export * from './core_general_master_type';
|
|
13
13
|
export * from './core_entity_mapping';
|
package/lib/schema/core/index.js
CHANGED
|
@@ -23,7 +23,7 @@ __exportStar(require("./core_system_config"), exports);
|
|
|
23
23
|
__exportStar(require("./core_pin_code"), exports);
|
|
24
24
|
__exportStar(require("./core_page_tab"), exports);
|
|
25
25
|
__exportStar(require("./core_page_grid"), exports);
|
|
26
|
-
__exportStar(require("./
|
|
26
|
+
__exportStar(require("./core_page_elements"), exports);
|
|
27
27
|
__exportStar(require("./core_general_master"), exports);
|
|
28
28
|
__exportStar(require("./core_general_master_type"), exports);
|
|
29
29
|
__exportStar(require("./core_entity_mapping"), exports);
|
package/lib/schema/index.d.ts
CHANGED
package/lib/schema/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./collection_names"), exports);
|
|
17
18
|
__exportStar(require("./auth"), exports);
|
|
18
19
|
__exportStar(require("./core"), exports);
|
|
19
20
|
__exportStar(require("./email"), exports);
|