@magmamath/students-features 0.6.6-rc.2 → 0.6.6-rc.3
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/dist/commonjs/features/gifCelebrations/constants.js +1 -1
- package/dist/module/features/gifCelebrations/constants.js +1 -1
- package/dist/typescript/commonjs/features/gifCelebrations/constants.d.ts +1 -1
- package/dist/typescript/module/features/gifCelebrations/constants.d.ts +1 -1
- package/package.json +1 -1
- package/src/features/gifCelebrations/constants.ts +1 -1
|
@@ -14,7 +14,7 @@ const CONTENT_CONTAINER = exports.CONTENT_CONTAINER = {
|
|
|
14
14
|
SAFE_AREA: 44 // to be sure that the content is not cut off on the edges because of rotate transform
|
|
15
15
|
};
|
|
16
16
|
const ANIMATION_DURATION = exports.ANIMATION_DURATION = 1750;
|
|
17
|
-
const MIN_PROBLEMS_TO_SHOW_GIF = exports.MIN_PROBLEMS_TO_SHOW_GIF =
|
|
17
|
+
const MIN_PROBLEMS_TO_SHOW_GIF = exports.MIN_PROBLEMS_TO_SHOW_GIF = 7;
|
|
18
18
|
const MAX_GIF_SIZE = exports.MAX_GIF_SIZE = {
|
|
19
19
|
WIDTH: 480,
|
|
20
20
|
HEIGHT: 300
|
|
@@ -10,7 +10,7 @@ export const CONTENT_CONTAINER = {
|
|
|
10
10
|
SAFE_AREA: 44 // to be sure that the content is not cut off on the edges because of rotate transform
|
|
11
11
|
};
|
|
12
12
|
export const ANIMATION_DURATION = 1750;
|
|
13
|
-
export const MIN_PROBLEMS_TO_SHOW_GIF =
|
|
13
|
+
export const MIN_PROBLEMS_TO_SHOW_GIF = 7;
|
|
14
14
|
export const MAX_GIF_SIZE = {
|
|
15
15
|
WIDTH: 480,
|
|
16
16
|
HEIGHT: 300
|
|
@@ -8,7 +8,7 @@ export declare const CONTENT_CONTAINER: {
|
|
|
8
8
|
SAFE_AREA: number;
|
|
9
9
|
};
|
|
10
10
|
export declare const ANIMATION_DURATION = 1750;
|
|
11
|
-
export declare const MIN_PROBLEMS_TO_SHOW_GIF =
|
|
11
|
+
export declare const MIN_PROBLEMS_TO_SHOW_GIF = 7;
|
|
12
12
|
export declare const MAX_GIF_SIZE: {
|
|
13
13
|
WIDTH: number;
|
|
14
14
|
HEIGHT: number;
|
|
@@ -8,7 +8,7 @@ export declare const CONTENT_CONTAINER: {
|
|
|
8
8
|
SAFE_AREA: number;
|
|
9
9
|
};
|
|
10
10
|
export declare const ANIMATION_DURATION = 1750;
|
|
11
|
-
export declare const MIN_PROBLEMS_TO_SHOW_GIF =
|
|
11
|
+
export declare const MIN_PROBLEMS_TO_SHOW_GIF = 7;
|
|
12
12
|
export declare const MAX_GIF_SIZE: {
|
|
13
13
|
WIDTH: number;
|
|
14
14
|
HEIGHT: number;
|
package/package.json
CHANGED