@lls/typings 24.1.48 → 24.1.49-e2e6abb8
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/internal/communityProject.d.ts +26 -0
- package/internal/contact.d.ts +11 -0
- package/internal/page.d.ts +15 -14
- package/internal/resourcesMenu.d.ts +1 -0
- package/models.d.ts +2 -0
- package/package.json +3 -2
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { SchoolTypeName } from './schoolType'
|
|
2
|
+
import type { SubjectName } from './subject'
|
|
3
|
+
|
|
4
|
+
export type ProjectStatus = 'En cours' | 'Terminé' | 'Recutement en cours' | 'Recutement terminé'
|
|
5
|
+
export type PresenceMode = 'Présentiel' | 'À distance'
|
|
6
|
+
export type ProjectType = 'Communauté' | 'Numérique' | 'Editorial'
|
|
7
|
+
|
|
8
|
+
export type CommunityProject = {
|
|
9
|
+
description: string
|
|
10
|
+
displayName: string
|
|
11
|
+
endingDate?: string
|
|
12
|
+
goalParticipants: number
|
|
13
|
+
id: string
|
|
14
|
+
image: string
|
|
15
|
+
isFeatured: boolean
|
|
16
|
+
isPublished: boolean
|
|
17
|
+
presenceMode: PresenceMode[]
|
|
18
|
+
projectStatus: ProjectStatus
|
|
19
|
+
projectTypes: ProjectType[]
|
|
20
|
+
registeredContactCount: number
|
|
21
|
+
requirements?: string
|
|
22
|
+
schoolTypes?: SchoolTypeName[]
|
|
23
|
+
slug: string
|
|
24
|
+
startingDate?: string
|
|
25
|
+
subjects?: SubjectName[]
|
|
26
|
+
}
|
package/internal/page.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { TODO } from '@typings/utils'
|
|
|
3
3
|
|
|
4
4
|
export type ScreenMode = 'grid-xs' | 'grid-md'
|
|
5
5
|
|
|
6
|
-
export type
|
|
6
|
+
export type ZoneElementTypeCategory = 'picWord' | 'definition' | 'subZone' | 'mask' | 'correction'
|
|
7
7
|
|
|
8
8
|
export type Rect = {
|
|
9
9
|
x: number
|
|
@@ -12,19 +12,17 @@ export type Rect = {
|
|
|
12
12
|
h: number
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
export type
|
|
15
|
+
export type Zone = {
|
|
16
16
|
id: string
|
|
17
17
|
} & Rect
|
|
18
18
|
|
|
19
|
-
export type
|
|
20
|
-
export type
|
|
21
|
-
export type
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
export type MaskType = ZoneType & { type: Extract<SubzoneTypeCategory, 'mask'> }
|
|
19
|
+
export type SubZone = Zone & { type: Extract<ZoneElementTypeCategory, 'subZone'> }
|
|
20
|
+
export type Definitions = Zone & { type: Extract<ZoneElementTypeCategory, 'definition'>; word?: Word }
|
|
21
|
+
export type PicWord = Zone & { type: Extract<ZoneElementTypeCategory, 'picWord'>; word?: Word }
|
|
22
|
+
export type Mask = Zone & { type: Extract<ZoneElementTypeCategory, 'mask'> }
|
|
23
|
+
export type Correction = Zone & { type: Extract<ZoneElementTypeCategory, 'correction'> }
|
|
26
24
|
|
|
27
|
-
export type
|
|
25
|
+
export type ZoneElement = SubZone | Definitions | PicWord | Mask | Correction
|
|
28
26
|
|
|
29
27
|
export type DocJson<T extends 'primary' | 'default' = 'default'> = {
|
|
30
28
|
id?: number
|
|
@@ -32,13 +30,15 @@ export type DocJson<T extends 'primary' | 'default' = 'default'> = {
|
|
|
32
30
|
contentMd?: string
|
|
33
31
|
} & (T extends 'primary'
|
|
34
32
|
? {
|
|
35
|
-
picWords?:
|
|
36
|
-
definitions?:
|
|
37
|
-
subZones?:
|
|
38
|
-
masks?:
|
|
33
|
+
picWords?: PicWord[]
|
|
34
|
+
definitions?: Definitions[]
|
|
35
|
+
subZones?: SubZone[]
|
|
36
|
+
masks?: Mask[]
|
|
37
|
+
corrections?: Correction[]
|
|
39
38
|
audios?: string[]
|
|
40
39
|
videos?: string[]
|
|
41
40
|
rives?: { src: string; stateMachines: string }[]
|
|
41
|
+
rotation?: number
|
|
42
42
|
}
|
|
43
43
|
: {
|
|
44
44
|
metadata?: TODO | null
|
|
@@ -129,6 +129,7 @@ export type Page<T extends 'primary' | 'default' = 'default'> = {
|
|
|
129
129
|
} & (T extends 'primary'
|
|
130
130
|
? {
|
|
131
131
|
picture?: string
|
|
132
|
+
correctionPicture?: string
|
|
132
133
|
children?: PrimaryDoc[]
|
|
133
134
|
layouts?: {
|
|
134
135
|
primary?: PrimaryLayoutItem[]
|
package/models.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lls/typings",
|
|
3
|
-
"version": "24.1.
|
|
3
|
+
"version": "24.1.49-e2e6abb8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [],
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"dts": "pnpm tsc --project tsconfig.production.json",
|
|
21
21
|
"lint": "pnpm biome check --apply *.d.ts internal overrides",
|
|
22
|
-
"test": "echo \"Error: no test specified\" && exit 0"
|
|
22
|
+
"test": "echo \"Error: no test specified\" && exit 0",
|
|
23
|
+
"packing": "pnpm pack"
|
|
23
24
|
}
|
|
24
25
|
}
|