@lls/typings 24.1.39 → 24.1.40-098a3ba8

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.
@@ -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 SubzoneTypeCategory = 'picWord' | 'definition' | 'subZone'
6
+ export type SubzoneTypeCategory = 'picWord' | 'definition' | 'subZone' | 'mask'
7
7
 
8
8
  export type Rect = {
9
9
  x: number
@@ -22,8 +22,9 @@ export type PicWordType = ZoneType & {
22
22
  type: Extract<SubzoneTypeCategory, 'picWord'>
23
23
  word?: Word
24
24
  }
25
+ export type MaskType = ZoneType & { type: Extract<SubzoneTypeCategory, 'mask'> }
25
26
 
26
- export type SubZoneType = ZoomZoneType | DefinitionsType | PicWordType
27
+ export type SubZoneType = ZoomZoneType | DefinitionsType | PicWordType | MaskType
27
28
 
28
29
  export type DocJson<T extends 'primary' | 'default' = 'default'> = {
29
30
  id?: number
@@ -34,6 +35,7 @@ export type DocJson<T extends 'primary' | 'default' = 'default'> = {
34
35
  picWords?: PicWordType[]
35
36
  definitions?: DefinitionsType[]
36
37
  subZones?: ZoomZoneType[]
38
+ masks?: MaskType[]
37
39
  audios?: string[]
38
40
  videos?: string[]
39
41
  rives?: { src: string; stateMachines: string }[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.1.39",
3
+ "version": "24.1.40-098a3ba8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],