@svgsketch/core 1.3.0 → 1.4.0
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.d.mts +65 -1
- package/dist/index.d.ts +65 -1
- package/dist/index.js +12 -12
- package/dist/index.mjs +12 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -607,6 +607,12 @@ interface RichTextSegmentStyle {
|
|
|
607
607
|
fontFamily?: string;
|
|
608
608
|
fontWeight?: string;
|
|
609
609
|
fontStyle?: string;
|
|
610
|
+
fontVariant?: string;
|
|
611
|
+
fontVariantLigatures?: string;
|
|
612
|
+
fontVariantPosition?: string;
|
|
613
|
+
fontVariantCaps?: string;
|
|
614
|
+
fontVariantNumeric?: string;
|
|
615
|
+
fontVariantEastAsian?: string;
|
|
610
616
|
textDecoration?: {
|
|
611
617
|
underline?: boolean;
|
|
612
618
|
strikethrough?: boolean;
|
|
@@ -1562,6 +1568,12 @@ interface SerializedShape {
|
|
|
1562
1568
|
fontFamily?: string;
|
|
1563
1569
|
fontWeight?: string;
|
|
1564
1570
|
fontStyle?: string;
|
|
1571
|
+
fontVariant?: string;
|
|
1572
|
+
fontVariantLigatures?: string;
|
|
1573
|
+
fontVariantPosition?: string;
|
|
1574
|
+
fontVariantCaps?: string;
|
|
1575
|
+
fontVariantNumeric?: string;
|
|
1576
|
+
fontVariantEastAsian?: string;
|
|
1565
1577
|
textDecoration?: {
|
|
1566
1578
|
underline?: boolean;
|
|
1567
1579
|
strikethrough?: boolean;
|
|
@@ -2667,6 +2679,12 @@ interface TextNodeProps extends CommonNodeProps {
|
|
|
2667
2679
|
fontFamily: string;
|
|
2668
2680
|
fontWeight: string;
|
|
2669
2681
|
fontStyle: string;
|
|
2682
|
+
fontVariant: string;
|
|
2683
|
+
fontVariantLigatures: string;
|
|
2684
|
+
fontVariantPosition: string;
|
|
2685
|
+
fontVariantCaps: string;
|
|
2686
|
+
fontVariantNumeric: string;
|
|
2687
|
+
fontVariantEastAsian: string;
|
|
2670
2688
|
textDecoration: Record<string, boolean>;
|
|
2671
2689
|
textTransform: string;
|
|
2672
2690
|
baselineShift: string;
|
|
@@ -4326,6 +4344,18 @@ declare class Text extends ShapeBuilder<Text> {
|
|
|
4326
4344
|
fontWeight(weight: FontWeight): Text;
|
|
4327
4345
|
/** Set the font style (italic, normal, etc). */
|
|
4328
4346
|
fontStyle(style: FontStyle): Text;
|
|
4347
|
+
/** Set the CSS Fonts 3 `font-variant` shorthand. */
|
|
4348
|
+
fontVariant(value: string): Text;
|
|
4349
|
+
/** Set CSS `font-variant-ligatures`. */
|
|
4350
|
+
fontVariantLigatures(value: string): Text;
|
|
4351
|
+
/** Set CSS `font-variant-position`. */
|
|
4352
|
+
fontVariantPosition(value: string): Text;
|
|
4353
|
+
/** Set CSS `font-variant-caps`. */
|
|
4354
|
+
fontVariantCaps(value: string): Text;
|
|
4355
|
+
/** Set CSS `font-variant-numeric`. */
|
|
4356
|
+
fontVariantNumeric(value: string): Text;
|
|
4357
|
+
/** Set CSS `font-variant-east-asian`. */
|
|
4358
|
+
fontVariantEastAsian(value: string): Text;
|
|
4329
4359
|
/** Set the text anchor (start, middle, end). */
|
|
4330
4360
|
anchor(value: 'start' | 'middle' | 'end'): Text;
|
|
4331
4361
|
/** Set letter spacing. */
|
|
@@ -5374,4 +5404,38 @@ declare const PUZZLE_DEFAULTS: PuzzleOptions;
|
|
|
5374
5404
|
*/
|
|
5375
5405
|
declare function generatePuzzlePieces(bounds: PuzzleBounds, options?: Partial<PuzzleOptions>): PuzzlePiece[];
|
|
5376
5406
|
|
|
5377
|
-
|
|
5407
|
+
/**
|
|
5408
|
+
* Pure Sudoku generation, solving, and validation.
|
|
5409
|
+
*
|
|
5410
|
+
* The editor plugin imports this module through @svgsketch/core so puzzle
|
|
5411
|
+
* generation stays deterministic and testable outside the DOM.
|
|
5412
|
+
*/
|
|
5413
|
+
type SudokuDifficulty = 'easy' | 'medium' | 'hard' | 'expert';
|
|
5414
|
+
type SudokuGrid = number[][];
|
|
5415
|
+
type SudokuRating = 'singles' | 'hidden-singles' | 'search';
|
|
5416
|
+
interface GenerateSudokuOptions {
|
|
5417
|
+
difficulty: SudokuDifficulty;
|
|
5418
|
+
seed: number;
|
|
5419
|
+
}
|
|
5420
|
+
interface GeneratedSudokuPuzzle {
|
|
5421
|
+
puzzle: SudokuGrid;
|
|
5422
|
+
solution: SudokuGrid;
|
|
5423
|
+
difficulty: SudokuDifficulty;
|
|
5424
|
+
seed: number;
|
|
5425
|
+
givens: number;
|
|
5426
|
+
rating: SudokuRating;
|
|
5427
|
+
}
|
|
5428
|
+
interface SudokuValidationResult {
|
|
5429
|
+
valid: boolean;
|
|
5430
|
+
unique: boolean;
|
|
5431
|
+
solution: SudokuGrid | null;
|
|
5432
|
+
errors: string[];
|
|
5433
|
+
}
|
|
5434
|
+
interface SolveSudokuOptions {
|
|
5435
|
+
maxSolutions?: number;
|
|
5436
|
+
}
|
|
5437
|
+
declare function solveSudoku(grid: SudokuGrid, options?: SolveSudokuOptions): SudokuGrid[];
|
|
5438
|
+
declare function validateSudokuPuzzle(grid: SudokuGrid): SudokuValidationResult;
|
|
5439
|
+
declare function generateSudokuPuzzle(options: GenerateSudokuOptions): GeneratedSudokuPuzzle;
|
|
5440
|
+
|
|
5441
|
+
export { type AnimatablePropertyDescriptor, type AnimationKeyframe, type AnimationTimeline, type AnimationTrack, type AnimationTrigger, type AnimationTriggerType, type AnyNodeProps, type ArcParams$1 as ArcParams, type AriaRole, Arrow, type ArrowNodeProps, Audio, BUILTIN_MARKER_ID_MAP, type BaseFilter, type BaseFilterPrimitive, type BlackAndWhiteFilter, type BlurQuality, type BrightnessFilter, CURRENT_SCHEMA_VERSION, type ChannelPainterFilter, Circle, type CircleNodeProps, Cloud, type CodeFormat, type CodegenOptions, type CommonNodeProps, type ConnectionDirection, type ConnectionPoint, Container, ContainerShapeBuilder, type ContouringDiscreteFilter, type ContouringTableFilter, type ContrastFilter, type CornerShapeValue, type CreateDocumentOptions, type CreateShapeOptions, Cross, type CrossNodeProps, type CrumpledPlasticFilter, type CustomPatternDef, type CycleBehavior, DEFAULT_COORDINATE_PRECISION, type DiffuseLightingFilter, Document, type DocumentMetadata, type DocumentNodeProps, type DocumentOptions, type DocumentScript, type DocumentStyle, type DropShadowFilter, type DuotoneFilter, EASING_CURVES, EVENT_TRIGGER_OPTIONS, EasingType, Ellipse, type EllipseNodeProps, type EmbossFilter, type ExtractedVariables, type FeBlendPrimitive, type FeColorMatrixPrimitive, type FeComponentTransferPrimitive, type FeCompositePrimitive, type FeConvolveMatrixPrimitive, type FeDiffuseLightingPrimitive, type FeDisplacementMapPrimitive, type FeDropShadowPrimitive, type FeFloodPrimitive, type FeGaussianBlurPrimitive, type FeImagePrimitive, type FeMergePrimitive, type FeMorphologyPrimitive, type FeOffsetPrimitive, type FeSpecularLightingPrimitive, type FeTilePrimitive, type FeTurbulencePrimitive, type FillType, type FilmGrainFilter, type FilterBlendMode, type FilterLibraryDef, type FilterLightSource, type FilterPrimitive, type FilterPrimitiveType, type FilterType, type GaussianBlurFilter, Gear, type GearNodeProps, type GenerateSudokuOptions, type GeneratedSudokuPuzzle, type GlowFilter, type GouacheFilter, type GradientDefinition, type GradientSpreadMethod, type GradientStop, type GradientUnits, type GrayscaleFilter, type GroupNodeProps, type Guide, Heart, type HistorySnapshot, type HueRotateFilter, Hyperlink, type ImageAttribution, type ImageNodeProps, ImageShape, type InkBlotFilter, type InnerGlowFilter, type InnerShadowFilter, type InvertFilter, LIBRARY_EMIT_ORDER, type LibraryDef, type LibraryDefBase, type LibraryDefOfKind, type LibraryKind, type LicenseType, type LightSource, Lightning, Line, type LineEndpointValue, type LineNodeProps, type LinearEasingPoint, type LinearGradient, LinearGradientBuilder, type LinearGradientLibraryDef, type LinkTarget, MARKER_HEIGHT, MARKER_VIEWBOX, MARKER_WIDTH, MAX_COORDINATE_PRECISION, MIGRATIONS, type MarkerDescriptor, type MarkerLibraryDef, type Measurement, type Migration, type MorphologyFilter, type MorphologyOperator, type MotionBlurFilter, NGon, type NGonNodeProps, NestedSvg, type NodeTypePropsMap, type NoiseFilter, type OpacityFilter, type OutlineFilter, type OutlinePosition, PUZZLE_DEFAULTS, type ParseOptions, Path, PathCurveType, type PathNodeProps, type PathPoint, PathPointType, PatternBuilder, type PatternElement, type PatternFill, type PatternLibraryDef, type PatternParams, type PatternSvgContentResult, type PatternType, type PixelateFilter, type Point, type PointLightFilter, type PolygonBaseNodeProps, Polyline, type PolylineNodeProps, type PuzzleBounds, type PuzzleOptions, type PuzzlePiece, type PuzzleStyle, type PuzzleTabPattern, type RadialGradient, RadialGradientBuilder, type RadialGradientLibraryDef, type RawSvgFilter, Rectangle, type RectangleNodeProps, type RenderOptions, type RichTextData, type RichTextLine, type RichTextSegment, type RichTextSegmentStyle, type RiddledFilter, Ring, type RingNodeProps, type RoundEdgesFilter, type SaturateFilter, type SegmentCurveType, type SepiaFilter, type SerializedAnimationTimeline, type SerializedClipMaskGroup, type SerializedColorGlyph, type SerializedColorGlyphLibrary, type SerializedGroup, type SerializedMarkerDef, type SerializedShape, type SerializedSymbolDef, type SerializedVariantAxis, type SerializedViewbox, ShapeBuilder, type ShapeFilter, type ShapeMetadata, ShapeReference, type SharpenFilter, type SolveSudokuOptions, type SpecularLightingFilter, SpeechBubble, Spiral, type SpiralNodeProps, type SpotLightFilter, Square, type SquareNodeProps, Star, type StarNodeProps, type StepPosition, type StepsParams, type StringifyOptions, type StrokeType, type SudokuDifficulty, type SudokuGrid, type SudokuRating, type SudokuValidationResult, type SvgPrimitiveChainFilter, Switch, type SymbolInstanceNodeProps, type SymbolLibraryDef, type TemplateVariable, type TemplateVariableMode, type TemplateVariableSource, type TemplateVariableType, Text, type TextNodeProps, Timeline, Track, type TransferFunc, Triangle, type TriangleNodeProps, type ValidationError, type ValidationResult, type VariableMap, Video, View, type Viewbox, type WarpFilter, type WarpType, type WatercolorFilter, type XrayFilter, collectReferencedLibraryIds, computeArrowVertices, computeCloudPath, computeCrossVertices, computeDashArray, computeGearPath, computeGearVertices, computeHeartPath, computeLightningVertices, computePolygonVertices, computeRectanglePath, computeRingPath, computeSpeechBubbleVertices, computeSpiralPath, computeSplinePath, computeStarVertices, createDocument, createShape, createViewbox, defaultVariableMode, escXml, extractVariables, filterAttr, generateCode, generateCssCode, generateD3Code, generateId, generatePatternSvgContent, generatePuzzlePieces, generateReactCode, generateSudokuPuzzle, generateSvgCode, generateVueCode, getBuiltInMarkerDefs, getEasingCubicBezier, getEffectivePrecision, getMarkerDescriptors, getPatternElements, linearGradient, migrateSnapshot, parseDocument, parseVariableArgs, pattern, radialGradient, renderAnimationElements, renderBuiltinMarkerDefs, renderCircle, renderEllipse, renderFilterDefs, renderFilterLibraryDef, renderFilterPrimitive, renderFilterPrimitivesForType, renderImage, renderLibraryDef, renderLibraryDefs, renderLine, renderLinearGradientLibraryDef, renderMarkerLibraryDef, renderPatternLibraryDef, renderPolygonShape, renderPolyline, renderRadialGradientLibraryDef, renderRectangle, renderReferencedLibraryDefs, renderShape, renderSpline, renderSvgPrimitiveChainFilter, renderSymbolLibraryDef, renderText, renderToSvg, roundCoord, roundNumberString, roundSerializedShape, roundSnapshot, solveSudoku, stringifyDocument, substituteString, substituteVariables, validateSnapshot, validateSudokuPuzzle, verticesToPath };
|
package/dist/index.d.ts
CHANGED
|
@@ -607,6 +607,12 @@ interface RichTextSegmentStyle {
|
|
|
607
607
|
fontFamily?: string;
|
|
608
608
|
fontWeight?: string;
|
|
609
609
|
fontStyle?: string;
|
|
610
|
+
fontVariant?: string;
|
|
611
|
+
fontVariantLigatures?: string;
|
|
612
|
+
fontVariantPosition?: string;
|
|
613
|
+
fontVariantCaps?: string;
|
|
614
|
+
fontVariantNumeric?: string;
|
|
615
|
+
fontVariantEastAsian?: string;
|
|
610
616
|
textDecoration?: {
|
|
611
617
|
underline?: boolean;
|
|
612
618
|
strikethrough?: boolean;
|
|
@@ -1562,6 +1568,12 @@ interface SerializedShape {
|
|
|
1562
1568
|
fontFamily?: string;
|
|
1563
1569
|
fontWeight?: string;
|
|
1564
1570
|
fontStyle?: string;
|
|
1571
|
+
fontVariant?: string;
|
|
1572
|
+
fontVariantLigatures?: string;
|
|
1573
|
+
fontVariantPosition?: string;
|
|
1574
|
+
fontVariantCaps?: string;
|
|
1575
|
+
fontVariantNumeric?: string;
|
|
1576
|
+
fontVariantEastAsian?: string;
|
|
1565
1577
|
textDecoration?: {
|
|
1566
1578
|
underline?: boolean;
|
|
1567
1579
|
strikethrough?: boolean;
|
|
@@ -2667,6 +2679,12 @@ interface TextNodeProps extends CommonNodeProps {
|
|
|
2667
2679
|
fontFamily: string;
|
|
2668
2680
|
fontWeight: string;
|
|
2669
2681
|
fontStyle: string;
|
|
2682
|
+
fontVariant: string;
|
|
2683
|
+
fontVariantLigatures: string;
|
|
2684
|
+
fontVariantPosition: string;
|
|
2685
|
+
fontVariantCaps: string;
|
|
2686
|
+
fontVariantNumeric: string;
|
|
2687
|
+
fontVariantEastAsian: string;
|
|
2670
2688
|
textDecoration: Record<string, boolean>;
|
|
2671
2689
|
textTransform: string;
|
|
2672
2690
|
baselineShift: string;
|
|
@@ -4326,6 +4344,18 @@ declare class Text extends ShapeBuilder<Text> {
|
|
|
4326
4344
|
fontWeight(weight: FontWeight): Text;
|
|
4327
4345
|
/** Set the font style (italic, normal, etc). */
|
|
4328
4346
|
fontStyle(style: FontStyle): Text;
|
|
4347
|
+
/** Set the CSS Fonts 3 `font-variant` shorthand. */
|
|
4348
|
+
fontVariant(value: string): Text;
|
|
4349
|
+
/** Set CSS `font-variant-ligatures`. */
|
|
4350
|
+
fontVariantLigatures(value: string): Text;
|
|
4351
|
+
/** Set CSS `font-variant-position`. */
|
|
4352
|
+
fontVariantPosition(value: string): Text;
|
|
4353
|
+
/** Set CSS `font-variant-caps`. */
|
|
4354
|
+
fontVariantCaps(value: string): Text;
|
|
4355
|
+
/** Set CSS `font-variant-numeric`. */
|
|
4356
|
+
fontVariantNumeric(value: string): Text;
|
|
4357
|
+
/** Set CSS `font-variant-east-asian`. */
|
|
4358
|
+
fontVariantEastAsian(value: string): Text;
|
|
4329
4359
|
/** Set the text anchor (start, middle, end). */
|
|
4330
4360
|
anchor(value: 'start' | 'middle' | 'end'): Text;
|
|
4331
4361
|
/** Set letter spacing. */
|
|
@@ -5374,4 +5404,38 @@ declare const PUZZLE_DEFAULTS: PuzzleOptions;
|
|
|
5374
5404
|
*/
|
|
5375
5405
|
declare function generatePuzzlePieces(bounds: PuzzleBounds, options?: Partial<PuzzleOptions>): PuzzlePiece[];
|
|
5376
5406
|
|
|
5377
|
-
|
|
5407
|
+
/**
|
|
5408
|
+
* Pure Sudoku generation, solving, and validation.
|
|
5409
|
+
*
|
|
5410
|
+
* The editor plugin imports this module through @svgsketch/core so puzzle
|
|
5411
|
+
* generation stays deterministic and testable outside the DOM.
|
|
5412
|
+
*/
|
|
5413
|
+
type SudokuDifficulty = 'easy' | 'medium' | 'hard' | 'expert';
|
|
5414
|
+
type SudokuGrid = number[][];
|
|
5415
|
+
type SudokuRating = 'singles' | 'hidden-singles' | 'search';
|
|
5416
|
+
interface GenerateSudokuOptions {
|
|
5417
|
+
difficulty: SudokuDifficulty;
|
|
5418
|
+
seed: number;
|
|
5419
|
+
}
|
|
5420
|
+
interface GeneratedSudokuPuzzle {
|
|
5421
|
+
puzzle: SudokuGrid;
|
|
5422
|
+
solution: SudokuGrid;
|
|
5423
|
+
difficulty: SudokuDifficulty;
|
|
5424
|
+
seed: number;
|
|
5425
|
+
givens: number;
|
|
5426
|
+
rating: SudokuRating;
|
|
5427
|
+
}
|
|
5428
|
+
interface SudokuValidationResult {
|
|
5429
|
+
valid: boolean;
|
|
5430
|
+
unique: boolean;
|
|
5431
|
+
solution: SudokuGrid | null;
|
|
5432
|
+
errors: string[];
|
|
5433
|
+
}
|
|
5434
|
+
interface SolveSudokuOptions {
|
|
5435
|
+
maxSolutions?: number;
|
|
5436
|
+
}
|
|
5437
|
+
declare function solveSudoku(grid: SudokuGrid, options?: SolveSudokuOptions): SudokuGrid[];
|
|
5438
|
+
declare function validateSudokuPuzzle(grid: SudokuGrid): SudokuValidationResult;
|
|
5439
|
+
declare function generateSudokuPuzzle(options: GenerateSudokuOptions): GeneratedSudokuPuzzle;
|
|
5440
|
+
|
|
5441
|
+
export { type AnimatablePropertyDescriptor, type AnimationKeyframe, type AnimationTimeline, type AnimationTrack, type AnimationTrigger, type AnimationTriggerType, type AnyNodeProps, type ArcParams$1 as ArcParams, type AriaRole, Arrow, type ArrowNodeProps, Audio, BUILTIN_MARKER_ID_MAP, type BaseFilter, type BaseFilterPrimitive, type BlackAndWhiteFilter, type BlurQuality, type BrightnessFilter, CURRENT_SCHEMA_VERSION, type ChannelPainterFilter, Circle, type CircleNodeProps, Cloud, type CodeFormat, type CodegenOptions, type CommonNodeProps, type ConnectionDirection, type ConnectionPoint, Container, ContainerShapeBuilder, type ContouringDiscreteFilter, type ContouringTableFilter, type ContrastFilter, type CornerShapeValue, type CreateDocumentOptions, type CreateShapeOptions, Cross, type CrossNodeProps, type CrumpledPlasticFilter, type CustomPatternDef, type CycleBehavior, DEFAULT_COORDINATE_PRECISION, type DiffuseLightingFilter, Document, type DocumentMetadata, type DocumentNodeProps, type DocumentOptions, type DocumentScript, type DocumentStyle, type DropShadowFilter, type DuotoneFilter, EASING_CURVES, EVENT_TRIGGER_OPTIONS, EasingType, Ellipse, type EllipseNodeProps, type EmbossFilter, type ExtractedVariables, type FeBlendPrimitive, type FeColorMatrixPrimitive, type FeComponentTransferPrimitive, type FeCompositePrimitive, type FeConvolveMatrixPrimitive, type FeDiffuseLightingPrimitive, type FeDisplacementMapPrimitive, type FeDropShadowPrimitive, type FeFloodPrimitive, type FeGaussianBlurPrimitive, type FeImagePrimitive, type FeMergePrimitive, type FeMorphologyPrimitive, type FeOffsetPrimitive, type FeSpecularLightingPrimitive, type FeTilePrimitive, type FeTurbulencePrimitive, type FillType, type FilmGrainFilter, type FilterBlendMode, type FilterLibraryDef, type FilterLightSource, type FilterPrimitive, type FilterPrimitiveType, type FilterType, type GaussianBlurFilter, Gear, type GearNodeProps, type GenerateSudokuOptions, type GeneratedSudokuPuzzle, type GlowFilter, type GouacheFilter, type GradientDefinition, type GradientSpreadMethod, type GradientStop, type GradientUnits, type GrayscaleFilter, type GroupNodeProps, type Guide, Heart, type HistorySnapshot, type HueRotateFilter, Hyperlink, type ImageAttribution, type ImageNodeProps, ImageShape, type InkBlotFilter, type InnerGlowFilter, type InnerShadowFilter, type InvertFilter, LIBRARY_EMIT_ORDER, type LibraryDef, type LibraryDefBase, type LibraryDefOfKind, type LibraryKind, type LicenseType, type LightSource, Lightning, Line, type LineEndpointValue, type LineNodeProps, type LinearEasingPoint, type LinearGradient, LinearGradientBuilder, type LinearGradientLibraryDef, type LinkTarget, MARKER_HEIGHT, MARKER_VIEWBOX, MARKER_WIDTH, MAX_COORDINATE_PRECISION, MIGRATIONS, type MarkerDescriptor, type MarkerLibraryDef, type Measurement, type Migration, type MorphologyFilter, type MorphologyOperator, type MotionBlurFilter, NGon, type NGonNodeProps, NestedSvg, type NodeTypePropsMap, type NoiseFilter, type OpacityFilter, type OutlineFilter, type OutlinePosition, PUZZLE_DEFAULTS, type ParseOptions, Path, PathCurveType, type PathNodeProps, type PathPoint, PathPointType, PatternBuilder, type PatternElement, type PatternFill, type PatternLibraryDef, type PatternParams, type PatternSvgContentResult, type PatternType, type PixelateFilter, type Point, type PointLightFilter, type PolygonBaseNodeProps, Polyline, type PolylineNodeProps, type PuzzleBounds, type PuzzleOptions, type PuzzlePiece, type PuzzleStyle, type PuzzleTabPattern, type RadialGradient, RadialGradientBuilder, type RadialGradientLibraryDef, type RawSvgFilter, Rectangle, type RectangleNodeProps, type RenderOptions, type RichTextData, type RichTextLine, type RichTextSegment, type RichTextSegmentStyle, type RiddledFilter, Ring, type RingNodeProps, type RoundEdgesFilter, type SaturateFilter, type SegmentCurveType, type SepiaFilter, type SerializedAnimationTimeline, type SerializedClipMaskGroup, type SerializedColorGlyph, type SerializedColorGlyphLibrary, type SerializedGroup, type SerializedMarkerDef, type SerializedShape, type SerializedSymbolDef, type SerializedVariantAxis, type SerializedViewbox, ShapeBuilder, type ShapeFilter, type ShapeMetadata, ShapeReference, type SharpenFilter, type SolveSudokuOptions, type SpecularLightingFilter, SpeechBubble, Spiral, type SpiralNodeProps, type SpotLightFilter, Square, type SquareNodeProps, Star, type StarNodeProps, type StepPosition, type StepsParams, type StringifyOptions, type StrokeType, type SudokuDifficulty, type SudokuGrid, type SudokuRating, type SudokuValidationResult, type SvgPrimitiveChainFilter, Switch, type SymbolInstanceNodeProps, type SymbolLibraryDef, type TemplateVariable, type TemplateVariableMode, type TemplateVariableSource, type TemplateVariableType, Text, type TextNodeProps, Timeline, Track, type TransferFunc, Triangle, type TriangleNodeProps, type ValidationError, type ValidationResult, type VariableMap, Video, View, type Viewbox, type WarpFilter, type WarpType, type WatercolorFilter, type XrayFilter, collectReferencedLibraryIds, computeArrowVertices, computeCloudPath, computeCrossVertices, computeDashArray, computeGearPath, computeGearVertices, computeHeartPath, computeLightningVertices, computePolygonVertices, computeRectanglePath, computeRingPath, computeSpeechBubbleVertices, computeSpiralPath, computeSplinePath, computeStarVertices, createDocument, createShape, createViewbox, defaultVariableMode, escXml, extractVariables, filterAttr, generateCode, generateCssCode, generateD3Code, generateId, generatePatternSvgContent, generatePuzzlePieces, generateReactCode, generateSudokuPuzzle, generateSvgCode, generateVueCode, getBuiltInMarkerDefs, getEasingCubicBezier, getEffectivePrecision, getMarkerDescriptors, getPatternElements, linearGradient, migrateSnapshot, parseDocument, parseVariableArgs, pattern, radialGradient, renderAnimationElements, renderBuiltinMarkerDefs, renderCircle, renderEllipse, renderFilterDefs, renderFilterLibraryDef, renderFilterPrimitive, renderFilterPrimitivesForType, renderImage, renderLibraryDef, renderLibraryDefs, renderLine, renderLinearGradientLibraryDef, renderMarkerLibraryDef, renderPatternLibraryDef, renderPolygonShape, renderPolyline, renderRadialGradientLibraryDef, renderRectangle, renderReferencedLibraryDefs, renderShape, renderSpline, renderSvgPrimitiveChainFilter, renderSymbolLibraryDef, renderText, renderToSvg, roundCoord, roundNumberString, roundSerializedShape, roundSnapshot, solveSudoku, stringifyDocument, substituteString, substituteVariables, validateSnapshot, validateSudokuPuzzle, verticesToPath };
|