@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.
- package/fesm2022/testgorilla-tgo-coding-test.mjs +2 -2
- package/fesm2022/testgorilla-tgo-coding-test.mjs.map +1 -1
- package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts +1 -1
- package/lib/services/candidate-coding-test-services/candidature-api.service.d.ts +1 -1
- package/lib/services/candidate-coding-test-services/coding-test.service.d.ts +1 -1
- package/package.json +9 -4
- package/fesm2022/shared/index.mjs +0 -834
- package/fesm2022/shared/index.mjs.map +0 -1
- package/shared/index.d.ts +0 -4
- package/shared/lib/components/audio-animation/audio-animation.component.d.ts +0 -27
- package/shared/lib/components/audio-animation/index.d.ts +0 -1
- package/shared/lib/components/index.d.ts +0 -2
- package/shared/lib/components/vimeo-video/index.d.ts +0 -1
- package/shared/lib/components/vimeo-video/vimeo-video.component.d.ts +0 -24
- package/shared/lib/models/answer.d.ts +0 -17
- package/shared/lib/models/assessment.d.ts +0 -80
- package/shared/lib/models/environment.d.ts +0 -1
- package/shared/lib/models/index.d.ts +0 -8
- package/shared/lib/models/question-component.d.ts +0 -54
- package/shared/lib/models/question.d.ts +0 -102
- package/shared/lib/models/test.d.ts +0 -81
- package/shared/lib/models/translations.d.ts +0 -1
- package/shared/lib/models/window.d.ts +0 -6
- package/shared/lib/services/api/api.service.d.ts +0 -25
- package/shared/lib/services/api/mocked-api.service.d.ts +0 -35
- package/shared/lib/services/environment/environment.service.d.ts +0 -6
- package/shared/lib/services/index.d.ts +0 -9
- package/shared/lib/services/localization/languages.model.d.ts +0 -15
- package/shared/lib/services/localization/transloco-lazy-module-utils.d.ts +0 -11
- package/shared/lib/services/localization/transloco-testing.module.d.ts +0 -2
- package/shared/lib/services/media/media.service.d.ts +0 -29
- package/shared/lib/services/mixpanel/mixpanel.service.d.ts +0 -10
- package/shared/lib/services/theme/theme.service.d.ts +0 -8
- package/shared/test-mocks/assessment-test.mock.d.ts +0 -21
- package/shared/test-mocks/index.d.ts +0 -2
- package/shared/test-mocks/tgo-ui.mock.d.ts +0 -21
package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Assessment, IAntiCheatingState, IConfigurationState, INavigationButtonState, IQuestionDataContract, ISubmissionState, Question, TestResultRead } from '
|
|
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,5 +1,5 @@
|
|
|
1
1
|
import { ApplicationTheme, DialogService, SnackbarService } from '@testgorilla/tgo-ui';
|
|
2
|
-
import { MixpanelService, TestResultRead } from '
|
|
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.
|
|
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
|
}
|