@testgorilla/tgo-coding-test 2.0.1-beta.1 → 2.0.2

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.
Files changed (36) hide show
  1. package/fesm2022/testgorilla-tgo-coding-test.mjs +2 -2
  2. package/fesm2022/testgorilla-tgo-coding-test.mjs.map +1 -1
  3. package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts +1 -1
  4. package/lib/services/candidate-coding-test-services/candidature-api.service.d.ts +1 -1
  5. package/lib/services/candidate-coding-test-services/coding-test.service.d.ts +1 -1
  6. package/package.json +9 -4
  7. package/fesm2022/shared/index.mjs +0 -834
  8. package/fesm2022/shared/index.mjs.map +0 -1
  9. package/shared/index.d.ts +0 -4
  10. package/shared/lib/components/audio-animation/audio-animation.component.d.ts +0 -27
  11. package/shared/lib/components/audio-animation/index.d.ts +0 -1
  12. package/shared/lib/components/index.d.ts +0 -2
  13. package/shared/lib/components/vimeo-video/index.d.ts +0 -1
  14. package/shared/lib/components/vimeo-video/vimeo-video.component.d.ts +0 -24
  15. package/shared/lib/models/answer.d.ts +0 -17
  16. package/shared/lib/models/assessment.d.ts +0 -80
  17. package/shared/lib/models/environment.d.ts +0 -1
  18. package/shared/lib/models/index.d.ts +0 -8
  19. package/shared/lib/models/question-component.d.ts +0 -54
  20. package/shared/lib/models/question.d.ts +0 -102
  21. package/shared/lib/models/test.d.ts +0 -81
  22. package/shared/lib/models/translations.d.ts +0 -1
  23. package/shared/lib/models/window.d.ts +0 -6
  24. package/shared/lib/services/api/api.service.d.ts +0 -25
  25. package/shared/lib/services/api/mocked-api.service.d.ts +0 -35
  26. package/shared/lib/services/environment/environment.service.d.ts +0 -6
  27. package/shared/lib/services/index.d.ts +0 -9
  28. package/shared/lib/services/localization/languages.model.d.ts +0 -15
  29. package/shared/lib/services/localization/transloco-lazy-module-utils.d.ts +0 -11
  30. package/shared/lib/services/localization/transloco-testing.module.d.ts +0 -2
  31. package/shared/lib/services/media/media.service.d.ts +0 -29
  32. package/shared/lib/services/mixpanel/mixpanel.service.d.ts +0 -10
  33. package/shared/lib/services/theme/theme.service.d.ts +0 -8
  34. package/shared/test-mocks/assessment-test.mock.d.ts +0 -21
  35. package/shared/test-mocks/index.d.ts +0 -2
  36. package/shared/test-mocks/tgo-ui.mock.d.ts +0 -21
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
- import { Assessment, IAntiCheatingState, IConfigurationState, INavigationButtonState, IQuestionDataContract, ISubmissionState, Question, TestResultRead } from '../../../shared/index';
2
+ import { Assessment, IAntiCheatingState, IConfigurationState, INavigationButtonState, IQuestionDataContract, ISubmissionState, Question, TestResultRead } from '@testgorilla/tgo-shared-lib';
3
3
  import { ApplicationTheme } from '@testgorilla/tgo-ui';
4
4
  import { Observable } from 'rxjs';
5
5
  import { CodingTestsResultsModel } from '../../models/coderunner-execution-results';
@@ -1,4 +1,4 @@
1
- import { ApiService } from '../../../shared/index';
1
+ import { ApiService } from '@testgorilla/tgo-shared-lib';
2
2
  import { Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class CandidatureApiService {
@@ -1,5 +1,5 @@
1
1
  import { ApplicationTheme, DialogService, SnackbarService } from '@testgorilla/tgo-ui';
2
- import { MixpanelService, TestResultRead } from '../../../shared/index';
2
+ import { MixpanelService, TestResultRead } from '@testgorilla/tgo-shared-lib';
3
3
  import { ExampleTestCase, TestCaseDeletionData } from '../../models/test-cases';
4
4
  import { LibCodingTestService, ResetCodeAction } from '../lib-coding-test.service';
5
5
  import { Observable } from 'rxjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-coding-test",
3
- "version": "2.0.1-beta.1",
3
+ "version": "2.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.2.17",
6
6
  "@angular/common": "^19.2.17",
@@ -21,8 +21,16 @@
21
21
  "quill": "^2.0.3",
22
22
  "rxjs": "~7.8.1"
23
23
  },
24
+ "dependencies": {
25
+ "@testgorilla/tgo-shared-lib": "2.0.0",
26
+ "tslib": "^2.3.0"
27
+ },
24
28
  "sideEffects": false,
25
29
  "license": "PROPRIETARY",
30
+ "publishConfig": {
31
+ "access": "public",
32
+ "registry": "https://registry.npmjs.org/"
33
+ },
26
34
  "displayName": "Coding test",
27
35
  "description": "Coding test component",
28
36
  "module": "fesm2022/testgorilla-tgo-coding-test.mjs",
@@ -35,8 +43,5 @@
35
43
  "types": "./index.d.ts",
36
44
  "default": "./fesm2022/testgorilla-tgo-coding-test.mjs"
37
45
  }
38
- },
39
- "dependencies": {
40
- "tslib": "^2.3.0"
41
46
  }
42
47
  }