herum-types 1.0.3 → 1.0.7

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.
@@ -1,8 +1,9 @@
1
- import { HadrachaPagePreview, ResourceContainment, ResourceHierarchy } from "../../../app/models";
2
1
  import { Struct } from "../Struct/Struct";
3
2
  import { HadrachaPageUserSubscription } from "./HadrachaPageUserSubscription";
4
3
  import { FileData } from "../Shared/FileData";
5
4
  import { HadrachaPageStyle } from "./HadrachaPageStyle";
5
+ import { HadrachaPagePreview } from "../Previews";
6
+ import { ResourceContainment, ResourceHierarchy } from "../Resource";
6
7
  export type HadrachaPage = HadrachaPagePreview & {
7
8
  structs: {
8
9
  structPreview: Struct;
@@ -12,6 +12,7 @@ export declare class Question {
12
12
  questionType?: string;
13
13
  answerNote?: string;
14
14
  weight?: number;
15
- isSkipped?: boolean;
16
15
  fileData?: Partial<FileData>;
16
+ isSkipped?: boolean;
17
+ isValid?: boolean;
17
18
  }
@@ -8,6 +8,7 @@ export class Question {
8
8
  questionType;
9
9
  answerNote;
10
10
  weight;
11
- isSkipped;
12
11
  fileData;
12
+ isSkipped;
13
+ isValid;
13
14
  }
@@ -0,0 +1,5 @@
1
+ export type Tick = {
2
+ value: number;
3
+ offsetPercent: number;
4
+ isEdge: boolean;
5
+ };
package/Shared/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export * from "./SignUpField";
32
32
  export * from "./signUpFormData";
33
33
  export * from "./Subject";
34
34
  export * from "./SystemIdentifier";
35
+ export * from "./Tick";
35
36
  export * from "./TimeRange";
36
37
  export * from "./UserPermission";
37
38
  export * from "./ViewModeType";
package/Shared/index.js CHANGED
@@ -32,6 +32,7 @@ export * from "./SignUpField";
32
32
  export * from "./signUpFormData";
33
33
  export * from "./Subject";
34
34
  export * from "./SystemIdentifier";
35
+ export * from "./Tick";
35
36
  export * from "./TimeRange";
36
37
  export * from "./UserPermission";
37
38
  export * from "./ViewModeType";
@@ -0,0 +1,3 @@
1
+ export interface IQuizAnswerStateEmitter {
2
+ emitCurrentAnswerStateIfIsNeeded(): void;
3
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -3,6 +3,7 @@
3
3
  */
4
4
  export * from "./can-deactivate.guard";
5
5
  export * from "./IMediaPlayer";
6
+ export * from "./IQuizAnswerStateEmitter";
6
7
  export * from "./ISystemTrackTextChangesService";
7
8
  export * from "./ISystemUserService";
8
9
  export * from "./stream-state";
@@ -3,6 +3,7 @@
3
3
  */
4
4
  export * from "./can-deactivate.guard";
5
5
  export * from "./IMediaPlayer";
6
+ export * from "./IQuizAnswerStateEmitter";
6
7
  export * from "./ISystemTrackTextChangesService";
7
8
  export * from "./ISystemUserService";
8
9
  export * from "./stream-state";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "herum-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.7",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -1,5 +0,0 @@
1
- export type CommonDependentsToast = {
2
- commonDependentsId: string;
3
- numberOfObservableArrowFunctions: Number;
4
- errorStatus?: number;
5
- };