entcore 4.8.7 → 4.8.9-dev-integration.202407111004

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entcore",
3
- "version": "4.8.7",
3
+ "version": "4.8.9-dev-integration.202407111004",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,9 +15,9 @@
15
15
  "main": "gulpfile.js",
16
16
  "types": "./types/src/ts/entcore.d.ts",
17
17
  "dependencies": {
18
- "angular": "1.7.9",
19
- "angular-route": "1.7.9",
20
- "angular-sanitize": "1.7.9",
18
+ "angular": "1.8.3",
19
+ "angular-route": "1.8.3",
20
+ "angular-sanitize": "1.8.3",
21
21
  "awesome-typescript-loader": "^3.2.1",
22
22
  "axios": "^0.15.3",
23
23
  "conventional-changelog-cli": "2.0.12",
@@ -45,7 +45,7 @@
45
45
  "webpack-stream": "^3.2.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@types/angular": "1.7.4",
48
+ "@types/angular": "1.8.3",
49
49
  "@types/core-js": "0.9.46",
50
50
  "@types/jasmine": "2.8.8",
51
51
  "@types/jquery": "^3.3.32",
@@ -21,6 +21,7 @@ export * from "./folderPicker";
21
21
  export * from "./folderTree";
22
22
  export * from './foldingList';
23
23
  export * from './groupsUsersSelector';
24
+ export * from './helpBox';
24
25
  export * from './imageCompression';
25
26
  export * from './imageEditor';
26
27
  export * from './imageLazyLoad';
@@ -23,6 +23,7 @@ export declare var skin: {
23
23
  listSkins: () => Promise<any>;
24
24
  loadBookmarks: () => Promise<any>;
25
25
  loadConnected: () => Promise<any>;
26
+ getHelpPath(): Promise<String>;
26
27
  getBootstrapAssetsPath(): string;
27
28
  setIs1D(): void;
28
29
  };
@@ -38,6 +38,7 @@ export interface Tree extends Node {
38
38
  hidden?: boolean;
39
39
  filter?: TREE_NAME;
40
40
  hierarchical?: boolean;
41
+ helpbox?: string;
41
42
  buttons?: {
42
43
  text: string;
43
44
  action: () => any;
@@ -282,6 +283,7 @@ export declare class ElementTree extends Element implements Tree {
282
283
  readonly hidden: boolean;
283
284
  readonly filter: TREE_NAME;
284
285
  readonly hierarchical: boolean;
286
+ readonly helpbox: string;
285
287
  readonly buttons: {
286
288
  text: string;
287
289
  action: () => any;