entcore 4.8.5 → 4.8.6-dev.202405241040

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.5",
3
+ "version": "4.8.6-dev.202405241040",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,31 +18,17 @@
18
18
  "angular": "1.8.3",
19
19
  "angular-route": "1.8.3",
20
20
  "angular-sanitize": "1.8.3",
21
- "awesome-typescript-loader": "^3.2.1",
22
21
  "axios": "^0.15.3",
23
- "conventional-changelog-cli": "2.0.12",
24
- "conventional-changelog": "3.0.6",
25
22
  "core-js": "^2.4.1",
26
23
  "entcore-toolkit": "^1.0.0",
27
- "gulp": "^4.0.2",
28
- "gulp-rename": "^2.0.0",
29
- "gulp-watch": "^5.0.1",
30
24
  "humane-js": "^3.2.2",
31
25
  "jquery": "^3.5.1",
32
- "meow": "8.0.0",
33
- "merge2": "^1.0.2",
34
26
  "mobile-drag-drop": "^2.3.0-rc.2",
35
27
  "moment": "^2.29.1",
36
28
  "nouislider": "14.6.3",
37
29
  "rxjs": "5.4.2",
38
- "source-map-loader": "^0.1.6",
39
- "typescript": "2.4.1",
40
30
  "ua-parser-js": "0.7.28",
41
- "uglify-js": "^3.0.23",
42
- "uglifyjs-webpack-plugin": "^0.4.6",
43
- "underscore": "^1.8.3",
44
- "webpack": "^3.1.0",
45
- "webpack-stream": "^3.2.0"
31
+ "underscore": "^1.8.3"
46
32
  },
47
33
  "devDependencies": {
48
34
  "@types/angular": "1.8.8",
@@ -56,7 +42,13 @@
56
42
  "@wdio/jasmine-framework": "^7.20.7",
57
43
  "@wdio/selenium-standalone-service": "^7.20.7",
58
44
  "angular-mocks": "1.8.3",
45
+ "awesome-typescript-loader": "^3.2.1",
46
+ "conventional-changelog-cli": "2.0.12",
47
+ "conventional-changelog": "3.0.6",
48
+ "gulp": "^4.0.2",
59
49
  "gulp-append-prepend": "^1.0.6",
50
+ "gulp-rename": "^2.0.0",
51
+ "gulp-watch": "^5.0.1",
60
52
  "jasmine": "2.8.0",
61
53
  "karma": "3.1.1",
62
54
  "karma-browserstack-launcher": "1.3.0",
@@ -65,9 +57,17 @@
65
57
  "karma-jasmine": "1.1.2",
66
58
  "karma-typescript": "3.0.8",
67
59
  "mathjax": "2.7.5",
60
+ "meow": "8.0.0",
61
+ "merge2": "^1.0.2",
68
62
  "rimraf": "2.6.2",
63
+ "source-map-loader": "^0.1.6",
69
64
  "ts-node": "7.0.1",
70
- "webdriverio": "7.20.7"
65
+ "typescript": "2.4.1",
66
+ "uglify-js": "^3.0.23",
67
+ "uglifyjs-webpack-plugin": "^0.4.6",
68
+ "webdriverio": "7.20.7",
69
+ "webpack": "^3.1.0",
70
+ "webpack-stream": "^3.2.0"
71
71
  },
72
72
  "files": [
73
73
  "bundle",
@@ -21,7 +21,6 @@ export * from "./folderPicker";
21
21
  export * from "./folderTree";
22
22
  export * from './foldingList';
23
23
  export * from './groupsUsersSelector';
24
- export * from './helpBox';
25
24
  export * from './imageCompression';
26
25
  export * from './imageEditor';
27
26
  export * from './imageLazyLoad';
@@ -9,6 +9,7 @@ export declare var skin: {
9
9
  basePath: string;
10
10
  logoutCallback: string;
11
11
  _onSkinReady: any;
12
+ is1D: boolean;
12
13
  readonly skinResolveFunc: any;
13
14
  readonly skinRejectedFunc: any;
14
15
  readonly onSkinReady: any;
@@ -22,6 +23,6 @@ export declare var skin: {
22
23
  listSkins: () => Promise<any>;
23
24
  loadBookmarks: () => Promise<any>;
24
25
  loadConnected: () => Promise<any>;
25
- getHelpPath(): Promise<String>;
26
26
  getBootstrapAssetsPath(): string;
27
+ setIs1D(): void;
27
28
  };
@@ -61,4 +61,5 @@ export declare const ui: {
61
61
  guest: string;
62
62
  match: (profile: any) => any;
63
63
  };
64
+ getCurrentThemePreference: () => Promise<any>;
64
65
  };
@@ -38,7 +38,6 @@ export interface Tree extends Node {
38
38
  hidden?: boolean;
39
39
  filter?: TREE_NAME;
40
40
  hierarchical?: boolean;
41
- helpbox?: string;
42
41
  buttons?: {
43
42
  text: string;
44
43
  action: () => any;
@@ -283,7 +282,6 @@ export declare class ElementTree extends Element implements Tree {
283
282
  readonly hidden: boolean;
284
283
  readonly filter: TREE_NAME;
285
284
  readonly hierarchical: boolean;
286
- readonly helpbox: string;
287
285
  readonly buttons: {
288
286
  text: string;
289
287
  action: () => any;