modern-idoc 0.1.1 → 0.1.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/index.cjs CHANGED
@@ -157,7 +157,7 @@ function normalizeImage(image) {
157
157
  return void 0;
158
158
  } else if (typeof image === "string") {
159
159
  return {
160
- src: image
160
+ url: image
161
161
  };
162
162
  } else {
163
163
  return image;
@@ -246,7 +246,7 @@ function normalizeVideo(video) {
246
246
  return void 0;
247
247
  } else if (typeof video === "string") {
248
248
  return {
249
- src: video
249
+ url: video
250
250
  };
251
251
  } else {
252
252
  return {
package/dist/index.d.cts CHANGED
@@ -1,10 +1,13 @@
1
1
  interface IDOCFillDeclaration {
2
+ url?: string;
2
3
  color?: string;
3
- image?: string;
4
4
  opacity?: number;
5
5
  }
6
6
 
7
- type IDOCFillProp = 'none' | string | IDOCFillDeclaration;
7
+ type Noneable = 'none';
8
+ type Sizeable = `${number}%` | `${number}rem` | number;
9
+
10
+ type IDOCFillProp = Noneable | string | IDOCFillDeclaration;
8
11
 
9
12
  type SVGPathData = string;
10
13
  type FillRule = 'nonzero' | 'evenodd';
@@ -37,14 +40,14 @@ interface IDOCGeometryDeclaration {
37
40
  data: (IDOCPath2D | SVGPathData)[];
38
41
  }
39
42
 
40
- type IDOCGeometryProp = 'none' | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
43
+ type IDOCGeometryProp = Noneable | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
41
44
 
42
45
  interface IDOCImageDeclaration {
43
- src: string;
46
+ url: string;
44
47
  opacity?: number;
45
48
  }
46
49
 
47
- type IDOCImageProp = 'none' | string | IDOCImageDeclaration;
50
+ type IDOCImageProp = Noneable | string | IDOCImageDeclaration;
48
51
 
49
52
  interface IDOCMetaProp {
50
53
  [key: string]: any;
@@ -57,30 +60,29 @@ interface IDOCNode {
57
60
  }
58
61
 
59
62
  interface IDOCStrokeDeclaration {
63
+ url?: string;
60
64
  color?: string;
61
- image?: string;
62
65
  opacity?: number;
63
66
  }
64
67
 
65
- type IDOCStrokeProp = 'none' | string | IDOCStrokeDeclaration;
68
+ type IDOCStrokeProp = Noneable | string | IDOCStrokeDeclaration;
66
69
 
67
70
  type Overflow = 'hidden' | 'visible';
68
71
  type Visibility = 'hidden' | 'visible';
69
72
  type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
70
73
  type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
71
- type FontKerning = 'none' | 'auto' | 'normal';
74
+ type FontKerning = Noneable | 'auto' | 'normal';
72
75
  type TextWrap = 'wrap' | 'nowrap';
73
76
  type TextAlign = 'center' | 'end' | 'left' | 'right' | 'start';
74
- type TextTransform = 'none' | 'uppercase' | 'lowercase';
77
+ type TextTransform = Noneable | 'uppercase' | 'lowercase';
75
78
  type TextOrientation = 'mixed' | 'upright' | 'sideways-right' | 'sideways';
76
- type TextDecorationLine = 'none' | 'underline' | 'line-through' | 'overline';
79
+ type TextDecorationLine = Noneable | 'underline' | 'line-through' | 'overline';
77
80
  type VerticalAlign = 'baseline' | 'top' | 'middle' | 'bottom' | 'sub' | 'super' | 'text-top' | 'text-bottom';
78
81
  type WritingMode = 'horizontal-tb' | 'vertical-lr' | 'vertical-rl';
79
- type Sizeable = `${number}%` | `${number}rem` | number;
80
- type ListStyleType = 'none' | 'disc';
81
- type ListStyleImage = 'none' | string;
82
- type ListStyleColormap = 'none' | Record<string, string>;
83
- type ListStyleSize = 'cover' | Sizeable;
82
+ type ListStyleType = Noneable | 'disc';
83
+ type ListStyleImage = Noneable | string;
84
+ type ListStyleColormap = Noneable | Record<string, string>;
85
+ type ListStyleSize = Sizeable | 'cover';
84
86
  type ListStylePosition = 'inside' | 'outside';
85
87
  interface IDOCListStyleDeclaration {
86
88
  type: ListStyleType;
@@ -98,10 +100,10 @@ interface IDOCListStyleStyleDeclaration {
98
100
  listStylePosition: ListStylePosition;
99
101
  }
100
102
  type HighlightLine = TextDecorationLine | 'outline';
101
- type HighlightImage = 'none' | string;
102
- type HighlightReferImage = 'none' | string;
103
- type HighlightColormap = 'none' | Record<string, string>;
104
- type HighlightSize = 'cover' | Sizeable;
103
+ type HighlightImage = Noneable | string;
104
+ type HighlightReferImage = Noneable | string;
105
+ type HighlightColormap = Noneable | Record<string, string>;
106
+ type HighlightSize = Sizeable | 'cover';
105
107
  type HighlightThickness = Sizeable;
106
108
  interface IDOCHighlightDeclaration {
107
109
  image: HighlightImage;
@@ -220,11 +222,11 @@ type IDOCTextProp = string | IDOCTextContent | (IDOCTextDeclaration & {
220
222
  }) | IDOCTextDeclaration;
221
223
 
222
224
  interface IDOCVideoDeclaration {
223
- src: string;
225
+ url: string;
224
226
  opacity?: number;
225
227
  }
226
228
 
227
- type IDOCVideoProp = 'none' | string | IDOCVideoDeclaration;
229
+ type IDOCVideoProp = Noneable | string | IDOCVideoDeclaration;
228
230
 
229
231
  interface IDOCElement extends IDOCNode {
230
232
  style?: IDOCStyleProp;
@@ -273,4 +275,4 @@ declare function normalizeTextContent(content?: IDOCTextContent): IDOCTextConten
273
275
 
274
276
  declare function normalizeVideo(video?: IDOCVideoProp): IDOCVideoDeclaration | undefined;
275
277
 
276
- export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type Sizeable, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
278
+ export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
package/dist/index.d.mts CHANGED
@@ -1,10 +1,13 @@
1
1
  interface IDOCFillDeclaration {
2
+ url?: string;
2
3
  color?: string;
3
- image?: string;
4
4
  opacity?: number;
5
5
  }
6
6
 
7
- type IDOCFillProp = 'none' | string | IDOCFillDeclaration;
7
+ type Noneable = 'none';
8
+ type Sizeable = `${number}%` | `${number}rem` | number;
9
+
10
+ type IDOCFillProp = Noneable | string | IDOCFillDeclaration;
8
11
 
9
12
  type SVGPathData = string;
10
13
  type FillRule = 'nonzero' | 'evenodd';
@@ -37,14 +40,14 @@ interface IDOCGeometryDeclaration {
37
40
  data: (IDOCPath2D | SVGPathData)[];
38
41
  }
39
42
 
40
- type IDOCGeometryProp = 'none' | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
43
+ type IDOCGeometryProp = Noneable | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
41
44
 
42
45
  interface IDOCImageDeclaration {
43
- src: string;
46
+ url: string;
44
47
  opacity?: number;
45
48
  }
46
49
 
47
- type IDOCImageProp = 'none' | string | IDOCImageDeclaration;
50
+ type IDOCImageProp = Noneable | string | IDOCImageDeclaration;
48
51
 
49
52
  interface IDOCMetaProp {
50
53
  [key: string]: any;
@@ -57,30 +60,29 @@ interface IDOCNode {
57
60
  }
58
61
 
59
62
  interface IDOCStrokeDeclaration {
63
+ url?: string;
60
64
  color?: string;
61
- image?: string;
62
65
  opacity?: number;
63
66
  }
64
67
 
65
- type IDOCStrokeProp = 'none' | string | IDOCStrokeDeclaration;
68
+ type IDOCStrokeProp = Noneable | string | IDOCStrokeDeclaration;
66
69
 
67
70
  type Overflow = 'hidden' | 'visible';
68
71
  type Visibility = 'hidden' | 'visible';
69
72
  type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
70
73
  type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
71
- type FontKerning = 'none' | 'auto' | 'normal';
74
+ type FontKerning = Noneable | 'auto' | 'normal';
72
75
  type TextWrap = 'wrap' | 'nowrap';
73
76
  type TextAlign = 'center' | 'end' | 'left' | 'right' | 'start';
74
- type TextTransform = 'none' | 'uppercase' | 'lowercase';
77
+ type TextTransform = Noneable | 'uppercase' | 'lowercase';
75
78
  type TextOrientation = 'mixed' | 'upright' | 'sideways-right' | 'sideways';
76
- type TextDecorationLine = 'none' | 'underline' | 'line-through' | 'overline';
79
+ type TextDecorationLine = Noneable | 'underline' | 'line-through' | 'overline';
77
80
  type VerticalAlign = 'baseline' | 'top' | 'middle' | 'bottom' | 'sub' | 'super' | 'text-top' | 'text-bottom';
78
81
  type WritingMode = 'horizontal-tb' | 'vertical-lr' | 'vertical-rl';
79
- type Sizeable = `${number}%` | `${number}rem` | number;
80
- type ListStyleType = 'none' | 'disc';
81
- type ListStyleImage = 'none' | string;
82
- type ListStyleColormap = 'none' | Record<string, string>;
83
- type ListStyleSize = 'cover' | Sizeable;
82
+ type ListStyleType = Noneable | 'disc';
83
+ type ListStyleImage = Noneable | string;
84
+ type ListStyleColormap = Noneable | Record<string, string>;
85
+ type ListStyleSize = Sizeable | 'cover';
84
86
  type ListStylePosition = 'inside' | 'outside';
85
87
  interface IDOCListStyleDeclaration {
86
88
  type: ListStyleType;
@@ -98,10 +100,10 @@ interface IDOCListStyleStyleDeclaration {
98
100
  listStylePosition: ListStylePosition;
99
101
  }
100
102
  type HighlightLine = TextDecorationLine | 'outline';
101
- type HighlightImage = 'none' | string;
102
- type HighlightReferImage = 'none' | string;
103
- type HighlightColormap = 'none' | Record<string, string>;
104
- type HighlightSize = 'cover' | Sizeable;
103
+ type HighlightImage = Noneable | string;
104
+ type HighlightReferImage = Noneable | string;
105
+ type HighlightColormap = Noneable | Record<string, string>;
106
+ type HighlightSize = Sizeable | 'cover';
105
107
  type HighlightThickness = Sizeable;
106
108
  interface IDOCHighlightDeclaration {
107
109
  image: HighlightImage;
@@ -220,11 +222,11 @@ type IDOCTextProp = string | IDOCTextContent | (IDOCTextDeclaration & {
220
222
  }) | IDOCTextDeclaration;
221
223
 
222
224
  interface IDOCVideoDeclaration {
223
- src: string;
225
+ url: string;
224
226
  opacity?: number;
225
227
  }
226
228
 
227
- type IDOCVideoProp = 'none' | string | IDOCVideoDeclaration;
229
+ type IDOCVideoProp = Noneable | string | IDOCVideoDeclaration;
228
230
 
229
231
  interface IDOCElement extends IDOCNode {
230
232
  style?: IDOCStyleProp;
@@ -273,4 +275,4 @@ declare function normalizeTextContent(content?: IDOCTextContent): IDOCTextConten
273
275
 
274
276
  declare function normalizeVideo(video?: IDOCVideoProp): IDOCVideoDeclaration | undefined;
275
277
 
276
- export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type Sizeable, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
278
+ export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
package/dist/index.d.ts CHANGED
@@ -1,10 +1,13 @@
1
1
  interface IDOCFillDeclaration {
2
+ url?: string;
2
3
  color?: string;
3
- image?: string;
4
4
  opacity?: number;
5
5
  }
6
6
 
7
- type IDOCFillProp = 'none' | string | IDOCFillDeclaration;
7
+ type Noneable = 'none';
8
+ type Sizeable = `${number}%` | `${number}rem` | number;
9
+
10
+ type IDOCFillProp = Noneable | string | IDOCFillDeclaration;
8
11
 
9
12
  type SVGPathData = string;
10
13
  type FillRule = 'nonzero' | 'evenodd';
@@ -37,14 +40,14 @@ interface IDOCGeometryDeclaration {
37
40
  data: (IDOCPath2D | SVGPathData)[];
38
41
  }
39
42
 
40
- type IDOCGeometryProp = 'none' | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
43
+ type IDOCGeometryProp = Noneable | SVGPathData | SVGPathData[] | IDOCGeometryDeclaration;
41
44
 
42
45
  interface IDOCImageDeclaration {
43
- src: string;
46
+ url: string;
44
47
  opacity?: number;
45
48
  }
46
49
 
47
- type IDOCImageProp = 'none' | string | IDOCImageDeclaration;
50
+ type IDOCImageProp = Noneable | string | IDOCImageDeclaration;
48
51
 
49
52
  interface IDOCMetaProp {
50
53
  [key: string]: any;
@@ -57,30 +60,29 @@ interface IDOCNode {
57
60
  }
58
61
 
59
62
  interface IDOCStrokeDeclaration {
63
+ url?: string;
60
64
  color?: string;
61
- image?: string;
62
65
  opacity?: number;
63
66
  }
64
67
 
65
- type IDOCStrokeProp = 'none' | string | IDOCStrokeDeclaration;
68
+ type IDOCStrokeProp = Noneable | string | IDOCStrokeDeclaration;
66
69
 
67
70
  type Overflow = 'hidden' | 'visible';
68
71
  type Visibility = 'hidden' | 'visible';
69
72
  type FontWeight = 'normal' | 'bold' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
70
73
  type FontStyle = 'normal' | 'italic' | 'oblique' | `oblique ${string}`;
71
- type FontKerning = 'none' | 'auto' | 'normal';
74
+ type FontKerning = Noneable | 'auto' | 'normal';
72
75
  type TextWrap = 'wrap' | 'nowrap';
73
76
  type TextAlign = 'center' | 'end' | 'left' | 'right' | 'start';
74
- type TextTransform = 'none' | 'uppercase' | 'lowercase';
77
+ type TextTransform = Noneable | 'uppercase' | 'lowercase';
75
78
  type TextOrientation = 'mixed' | 'upright' | 'sideways-right' | 'sideways';
76
- type TextDecorationLine = 'none' | 'underline' | 'line-through' | 'overline';
79
+ type TextDecorationLine = Noneable | 'underline' | 'line-through' | 'overline';
77
80
  type VerticalAlign = 'baseline' | 'top' | 'middle' | 'bottom' | 'sub' | 'super' | 'text-top' | 'text-bottom';
78
81
  type WritingMode = 'horizontal-tb' | 'vertical-lr' | 'vertical-rl';
79
- type Sizeable = `${number}%` | `${number}rem` | number;
80
- type ListStyleType = 'none' | 'disc';
81
- type ListStyleImage = 'none' | string;
82
- type ListStyleColormap = 'none' | Record<string, string>;
83
- type ListStyleSize = 'cover' | Sizeable;
82
+ type ListStyleType = Noneable | 'disc';
83
+ type ListStyleImage = Noneable | string;
84
+ type ListStyleColormap = Noneable | Record<string, string>;
85
+ type ListStyleSize = Sizeable | 'cover';
84
86
  type ListStylePosition = 'inside' | 'outside';
85
87
  interface IDOCListStyleDeclaration {
86
88
  type: ListStyleType;
@@ -98,10 +100,10 @@ interface IDOCListStyleStyleDeclaration {
98
100
  listStylePosition: ListStylePosition;
99
101
  }
100
102
  type HighlightLine = TextDecorationLine | 'outline';
101
- type HighlightImage = 'none' | string;
102
- type HighlightReferImage = 'none' | string;
103
- type HighlightColormap = 'none' | Record<string, string>;
104
- type HighlightSize = 'cover' | Sizeable;
103
+ type HighlightImage = Noneable | string;
104
+ type HighlightReferImage = Noneable | string;
105
+ type HighlightColormap = Noneable | Record<string, string>;
106
+ type HighlightSize = Sizeable | 'cover';
105
107
  type HighlightThickness = Sizeable;
106
108
  interface IDOCHighlightDeclaration {
107
109
  image: HighlightImage;
@@ -220,11 +222,11 @@ type IDOCTextProp = string | IDOCTextContent | (IDOCTextDeclaration & {
220
222
  }) | IDOCTextDeclaration;
221
223
 
222
224
  interface IDOCVideoDeclaration {
223
- src: string;
225
+ url: string;
224
226
  opacity?: number;
225
227
  }
226
228
 
227
- type IDOCVideoProp = 'none' | string | IDOCVideoDeclaration;
229
+ type IDOCVideoProp = Noneable | string | IDOCVideoDeclaration;
228
230
 
229
231
  interface IDOCElement extends IDOCNode {
230
232
  style?: IDOCStyleProp;
@@ -273,4 +275,4 @@ declare function normalizeTextContent(content?: IDOCTextContent): IDOCTextConten
273
275
 
274
276
  declare function normalizeVideo(video?: IDOCVideoProp): IDOCVideoDeclaration | undefined;
275
277
 
276
- export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type Sizeable, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
278
+ export { type FillRule, type FontKerning, type FontStyle, type FontWeight, type HighlightColormap, type HighlightImage, type HighlightLine, type HighlightReferImage, type HighlightSize, type HighlightThickness, type IDCOShadowDeclaration, type IDOCDocument, type IDOCElement, type IDOCElementDeclaration, type IDOCElementStyleDeclaration, type IDOCFillDeclaration, type IDOCFillProp, type IDOCFragmentContent, type IDOCGeometryDeclaration, type IDOCGeometryProp, type IDOCHighlightDeclaration, type IDOCHighlightStyleDeclaration, type IDOCImageDeclaration, type IDOCImageProp, type IDOCListStyleDeclaration, type IDOCListStyleStyleDeclaration, type IDOCMetaProp, type IDOCNode, type IDOCParagraphContent, type IDOCPath2D, type IDOCPath2DStyle, type IDOCShadowStyleDeclaration, type IDOCStrokeDeclaration, type IDOCStrokeProp, type IDOCStyleDeclaration, type IDOCStyleProp, type IDOCTextContent, type IDOCTextContentDeclaration, type IDOCTextContentFlat, type IDOCTextDeclaration, type IDOCTextDrawStyleDeclaration, type IDOCTextInlineStyleDeclaration, type IDOCTextLineStyleDeclaration, type IDOCTextProp, type IDOCTextStyleDeclaration, type IDOCTransformStyleDeclaration, type IDOCVideoDeclaration, type IDOCVideoProp, type ListStyleColormap, type ListStyleImage, type ListStylePosition, type ListStyleSize, type ListStyleType, type Overflow, type SVGPathData, type StrokeLinecap, type StrokeLinejoin, type TextAlign, type TextDecorationLine, type TextOrientation, type TextTransform, type TextWrap, type VerticalAlign, type Visibility, type WritingMode, getDefaultElementStyle, getDefaultStyle, getDefaultTextStyle, normalizeElement, normalizeFill, normalizeGeometry, normalizeImage, normalizeStroke, normalizeText, normalizeTextContent, normalizeVideo };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- (function(n,i){typeof exports=="object"&&typeof module<"u"?i(exports):typeof define=="function"&&define.amd?define(["exports"],i):(n=typeof globalThis<"u"?globalThis:n||self,i(n.modernIdoc={}))})(this,function(n){"use strict";function i(){return{overflow:"visible",visibility:"visible",filter:"none",left:0,top:0,width:0,height:0,rotate:0,opacity:1,marginLeft:0,marginTop:0,marginRight:0,marginBottom:0,paddingLeft:0,paddingTop:0,paddingRight:0,paddingBottom:0,scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:"none",transformOrigin:"50% 50%",backgroundImage:"none",backgroundColor:"transparent",shadowColor:"transparent",shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0,borderRadius:0,borderColor:"transparent",borderWidth:1}}function l(){return{writingMode:"horizontal-tb",verticalAlign:"baseline",lineHeight:1.2,letterSpacing:0,wordSpacing:0,fontSize:14,fontWeight:"normal",fontFamily:"",fontStyle:"normal",fontKerning:"normal",textWrap:"wrap",textAlign:"start",textIndent:0,textTransform:"none",textOrientation:"mixed",textDecoration:"none",textStrokeWidth:0,textStrokeColor:"black",color:"black",listStyleType:"none",listStyleImage:"none",listStyleColormap:"none",listStyleSize:"cover",listStylePosition:"outside",highlightImage:"none",highlightReferImage:"none",highlightColormap:"none",highlightLine:"none",highlightSize:"cover",highlightThickness:"100%",scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:"none",transformOrigin:"50% 50%",shadowColor:"transparent",shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0}}function h(){return{...i(),...l()}}function s(e){if(!(!e||e==="none"))return typeof e=="string"?{color:e}:e}function f(e){if(!(!e||e==="none"))return typeof e=="string"?{data:[{data:e}]}:Array.isArray(e)?{data:e.map(r=>({data:r}))}:{...e,data:e.data.map(r=>typeof r=="string"?{data:r}:r)}}function u(e){if(!(!e||e==="none"))return typeof e=="string"?{src:e}:e}function g(e){if(!(!e||e==="none"))return typeof e=="string"?{color:e}:e}function a(e=""){return(Array.isArray(e)?e:[e]).map(t=>typeof t=="string"?{fragments:[{content:t}]}:"content"in t?{fragments:[{...t}]}:"fragments"in t?{...t,fragments:t.fragments.map(o=>({...o}))}:Array.isArray(t)?{fragments:t.map(o=>typeof o=="string"?{content:o}:{...o})}:{fragments:[]})}function d(e){if(!(!e||e==="none"))return typeof e=="string"?{content:[{fragments:[{content:e}]}]}:"content"in e?{...e,content:a(e.content)}:{content:a(e)}}function m(e){if(!(!e||e==="none"))return typeof e=="string"?{src:e}:{...e}}function c(e){var r;return{...e,image:u(e.image),video:m(e.video),text:d(e.text),geometry:f(e.geometry),fill:s(e.fill),stroke:g(e.stroke),children:(r=e.children)==null?void 0:r.map(t=>c(t))}}n.getDefaultElementStyle=i,n.getDefaultStyle=h,n.getDefaultTextStyle=l,n.normalizeElement=c,n.normalizeFill=s,n.normalizeGeometry=f,n.normalizeImage=u,n.normalizeStroke=g,n.normalizeText=d,n.normalizeTextContent=a,n.normalizeVideo=m,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
1
+ (function(n,i){typeof exports=="object"&&typeof module<"u"?i(exports):typeof define=="function"&&define.amd?define(["exports"],i):(n=typeof globalThis<"u"?globalThis:n||self,i(n.modernIdoc={}))})(this,function(n){"use strict";function i(){return{overflow:"visible",visibility:"visible",filter:"none",left:0,top:0,width:0,height:0,rotate:0,opacity:1,marginLeft:0,marginTop:0,marginRight:0,marginBottom:0,paddingLeft:0,paddingTop:0,paddingRight:0,paddingBottom:0,scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:"none",transformOrigin:"50% 50%",backgroundImage:"none",backgroundColor:"transparent",shadowColor:"transparent",shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0,borderRadius:0,borderColor:"transparent",borderWidth:1}}function l(){return{writingMode:"horizontal-tb",verticalAlign:"baseline",lineHeight:1.2,letterSpacing:0,wordSpacing:0,fontSize:14,fontWeight:"normal",fontFamily:"",fontStyle:"normal",fontKerning:"normal",textWrap:"wrap",textAlign:"start",textIndent:0,textTransform:"none",textOrientation:"mixed",textDecoration:"none",textStrokeWidth:0,textStrokeColor:"black",color:"black",listStyleType:"none",listStyleImage:"none",listStyleColormap:"none",listStyleSize:"cover",listStylePosition:"outside",highlightImage:"none",highlightReferImage:"none",highlightColormap:"none",highlightLine:"none",highlightSize:"cover",highlightThickness:"100%",scaleX:1,scaleY:1,skewX:0,skewY:0,translateX:0,translateY:0,transform:"none",transformOrigin:"50% 50%",shadowColor:"transparent",shadowOffsetX:0,shadowOffsetY:0,shadowBlur:0}}function h(){return{...i(),...l()}}function f(e){if(!(!e||e==="none"))return typeof e=="string"?{color:e}:e}function s(e){if(!(!e||e==="none"))return typeof e=="string"?{data:[{data:e}]}:Array.isArray(e)?{data:e.map(r=>({data:r}))}:{...e,data:e.data.map(r=>typeof r=="string"?{data:r}:r)}}function u(e){if(!(!e||e==="none"))return typeof e=="string"?{url:e}:e}function g(e){if(!(!e||e==="none"))return typeof e=="string"?{color:e}:e}function a(e=""){return(Array.isArray(e)?e:[e]).map(t=>typeof t=="string"?{fragments:[{content:t}]}:"content"in t?{fragments:[{...t}]}:"fragments"in t?{...t,fragments:t.fragments.map(o=>({...o}))}:Array.isArray(t)?{fragments:t.map(o=>typeof o=="string"?{content:o}:{...o})}:{fragments:[]})}function d(e){if(!(!e||e==="none"))return typeof e=="string"?{content:[{fragments:[{content:e}]}]}:"content"in e?{...e,content:a(e.content)}:{content:a(e)}}function m(e){if(!(!e||e==="none"))return typeof e=="string"?{url:e}:{...e}}function c(e){var r;return{...e,image:u(e.image),video:m(e.video),text:d(e.text),geometry:s(e.geometry),fill:f(e.fill),stroke:g(e.stroke),children:(r=e.children)==null?void 0:r.map(t=>c(t))}}n.getDefaultElementStyle=i,n.getDefaultStyle=h,n.getDefaultTextStyle=l,n.normalizeElement=c,n.normalizeFill=f,n.normalizeGeometry=s,n.normalizeImage=u,n.normalizeStroke=g,n.normalizeText=d,n.normalizeTextContent=a,n.normalizeVideo=m,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
package/dist/index.mjs CHANGED
@@ -155,7 +155,7 @@ function normalizeImage(image) {
155
155
  return void 0;
156
156
  } else if (typeof image === "string") {
157
157
  return {
158
- src: image
158
+ url: image
159
159
  };
160
160
  } else {
161
161
  return image;
@@ -244,7 +244,7 @@ function normalizeVideo(video) {
244
244
  return void 0;
245
245
  } else if (typeof video === "string") {
246
246
  return {
247
- src: video
247
+ url: video
248
248
  };
249
249
  } else {
250
250
  return {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "modern-idoc",
3
3
  "type": "module",
4
- "version": "0.1.1",
4
+ "version": "0.1.3",
5
5
  "packageManager": "pnpm@9.9.0",
6
6
  "description": "Intermediate document for modern codec libs",
7
7
  "author": "wxm",