generated from qq15725/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
217 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* @link https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.effectlist | ||
*/ | ||
export class EffectList extends _Namespace { | ||
readonly tag = 'effectLst' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* @link https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.effectreference | ||
*/ | ||
export class EffectReference extends _Namespace { | ||
readonly tag = 'effectRef' | ||
|
||
@defineChild('hslClr', _Namespace) hslClr?: _Namespace | ||
@defineChild('prstClr', _Namespace) prstClr?: _Namespace | ||
@defineChild('schemeClr', _Namespace) schemeClr?: _Namespace | ||
@defineChild('scrgbClr', _Namespace) scrgbClr?: _Namespace | ||
@defineChild('srgbClr', _Namespace) srgbClr?: _Namespace | ||
@defineChild('sysClr', _Namespace) sysClr?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* @link https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.fillreference | ||
*/ | ||
export class FillReference extends _Namespace { | ||
readonly tag = 'fillRef' | ||
|
||
@defineChild('hslClr', _Namespace) hslClr?: _Namespace | ||
@defineChild('prstClr', _Namespace) prstClr?: _Namespace | ||
@defineChild('schemeClr', _Namespace) schemeClr?: _Namespace | ||
@defineChild('scrgbClr', _Namespace) scrgbClr?: _Namespace | ||
@defineChild('srgbClr', _Namespace) srgbClr?: _Namespace | ||
@defineChild('sysClr', _Namespace) sysClr?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* @link https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.fontreference | ||
*/ | ||
export class FontReference extends _Namespace { | ||
readonly tag = 'fontRef' | ||
|
||
@defineChild('hslClr', _Namespace) hslClr?: _Namespace | ||
@defineChild('prstClr', _Namespace) prstClr?: _Namespace | ||
@defineChild('schemeClr', _Namespace) schemeClr?: _Namespace | ||
@defineChild('scrgbClr', _Namespace) scrgbClr?: _Namespace | ||
@defineChild('srgbClr', _Namespace) srgbClr?: _Namespace | ||
@defineChild('sysClr', _Namespace) sysClr?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.gradientfill | ||
*/ | ||
export class GradientFill extends _Namespace { | ||
readonly tag = 'gradFill' | ||
|
||
@defineChild('a:gsLst', _Namespace) gsLst?: _Namespace | ||
@defineChild('a:lin', _Namespace) lin?: _Namespace | ||
@defineChild('a:path', _Namespace) path?: _Namespace | ||
@defineChild('a:tileRect', _Namespace) tileRect?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* @link https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.linereference | ||
*/ | ||
export class LineReference extends _Namespace { | ||
readonly tag = 'lnRef' | ||
|
||
@defineChild('hslClr', _Namespace) hslClr?: _Namespace | ||
@defineChild('prstClr', _Namespace) prstClr?: _Namespace | ||
@defineChild('schemeClr', _Namespace) schemeClr?: _Namespace | ||
@defineChild('scrgbClr', _Namespace) scrgbClr?: _Namespace | ||
@defineChild('srgbClr', _Namespace) srgbClr?: _Namespace | ||
@defineChild('sysClr', _Namespace) sysClr?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.nofill | ||
*/ | ||
export class NoFill extends _Namespace { | ||
readonly tag = 'noFill' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.outline | ||
*/ | ||
export class Outline extends _Namespace { | ||
readonly tag = 'ln' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { defineChild } from '../../core' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.drawing.patternfill | ||
*/ | ||
export class PatternFill extends _Namespace { | ||
readonly tag = 'pattFill' | ||
|
||
@defineChild('a:bgClr', _Namespace) bgClr?: _Namespace | ||
@defineChild('a:fgClr', _Namespace) fgClr?: _Namespace | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
import { defineChild } from '../../core' | ||
import { EffectList, GradientFill, NoFill, PatternFill, SolidFill } from '../drawing' | ||
import { _Namespace } from './_Namespace' | ||
import { BlipFill } from './BlipFill' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.presentation.backgroundproperties | ||
*/ | ||
export class BackgroundProperties extends _Namespace { | ||
readonly tag = 'bgPr' | ||
|
||
@defineChild('p:blipFill', BlipFill) declare blipFill: BlipFill | ||
// TODO | ||
@defineChild('a:blipFill', _Namespace) declare blipFill: _Namespace | ||
@defineChild('a:effectDag', _Namespace) declare effectDag: _Namespace | ||
@defineChild('a:effectLst', EffectList) declare effectLst: EffectList | ||
@defineChild('a:extLst', _Namespace) declare extLst: _Namespace | ||
@defineChild('a:gradFill', GradientFill) declare gradFill: GradientFill | ||
@defineChild('a:grpFill', _Namespace) declare grpFill: _Namespace | ||
@defineChild('a:noFill', NoFill) declare noFill: NoFill | ||
@defineChild('a:pattFill', PatternFill) declare pattFill: PatternFill | ||
@defineChild('a:solidFill', SolidFill) declare solidFill: SolidFill | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { defineChild } from '../../core' | ||
import { EffectReference, FillReference, FontReference, LineReference } from '../drawing' | ||
import { _Namespace } from './_Namespace' | ||
|
||
/** | ||
* https://learn.microsoft.com/dotnet/api/documentformat.openxml.presentation.shapestyle | ||
*/ | ||
export class ShapeStyle extends _Namespace { | ||
readonly tag = 'style' | ||
|
||
@defineChild('a:lnRef', LineReference) lnRef?: LineReference | ||
@defineChild('a:fillRef', FillReference) fillRef?: FillReference | ||
@defineChild('a:effectRef', EffectReference) effectRef?: EffectReference | ||
@defineChild('a:fontRef', FontReference) fontRef?: FontReference | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
export * from './ApplicationNonVisualDrawingProperties' | ||
export * from './Background' | ||
export * from './BackgroundProperties' | ||
export * from './BlipFill' | ||
export * from './ColorMap' | ||
export * from './ColorMapOverride' | ||
export * from './CommonSlideData' | ||
export * from './DefaultTextStyle' | ||
export * from './GroupShape' | ||
export * from './GroupShapeProperties' | ||
export * from './NonVisualDrawingProperties' | ||
export * from './NonVisualGroupShapeProperties' | ||
export * from './NonVisualPictureDrawingProperties' | ||
export * from './NonVisualPictureProperties' | ||
export * from './NonVisualShapeDrawingProperties' | ||
export * from './NonVisualShapeProperties' | ||
export * from './NotesSize' | ||
export * from './Picture' | ||
export * from './PlaceholderShape' | ||
export * from './Presentation' | ||
export * from './PresentationProperties' | ||
export * from './Shape' | ||
export * from './ShapeProperties' | ||
export * from './Slide' | ||
export * from './SlideId' | ||
export * from './SlideIdList' | ||
export * from './SlideLayout' | ||
export * from './SlideMaster' | ||
export * from './SlideMasterId' | ||
export * from './SlideMasterIdList' | ||
export * from './SlideSize' | ||
export * from './TextBody' | ||
export * from './Timing' | ||
export * from './ViewProperties' |