Skip to content

Commit

Permalink
fixed some documentation for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
CSchank committed Feb 17, 2024
1 parent 2476018 commit fafe6b7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions elm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "MacCASOutreach/graphicsvg",
"summary": "Beautiful scalable vector graphics (SVG) in Elm.",
"license": "BSD-3-Clause",
"version": "8.0.0",
"version": "8.1.0",
"exposed-modules": [
"GraphicSVG",
"GraphicSVG.App",
Expand All @@ -24,4 +24,4 @@
"elm/virtual-dom": "1.0.0 <= v < 2.0.0"
},
"test-dependencies": {}
}
}
12 changes: 6 additions & 6 deletions src/GraphicSVG.elm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module GraphicSVG exposing
, graphPaper, graphPaperCustom, map
, Gradient, gradient, radialGradient, Stop, stop, transparentStop, rotateGradient
, Color, black, blank, blue, brown, charcoal, darkBlue, darkBrown, darkCharcoal, darkGray, darkGreen, darkGrey, darkOrange, darkPurple, darkRed, darkYellow, gray, green, grey, hotPink, lightBlue, lightBrown, lightCharcoal, lightGray, lightGreen, lightGrey, lightOrange, lightPurple, lightRed, lightYellow, orange, pink, purple, red, white, yellow
, ident, moveT, rotateT, scaleT, skewT, rotateAboutT, transform
, Transform, ident, moveT, rotateT, scaleT, skewT, rotateAboutT, transform
, Msg(..), createSVG
)

Expand Down Expand Up @@ -72,12 +72,12 @@ not guaranteed and weird things can happen.
# Curves
@docs curve, curveHelper
@docs Pull, curve, curveHelper
# Line Styles
@docs noline, solid, dotted, dashed, longdash, dotdash, custom
@docs LineType, noline, solid, dotted, dashed, longdash, dotdash, custom
# Text
Expand Down Expand Up @@ -112,12 +112,12 @@ not guaranteed and weird things can happen.
# Let there be colours!
@docs black, blank, blue, brown, charcoal, darkBlue, darkBrown, darkCharcoal, darkGray, darkGreen, darkGrey, darkOrange, darkPurple, darkRed, darkYellow, gray, green, grey, hotPink, lightBlue, lightBrown, lightCharcoal, lightGray, lightGreen, lightGrey, lightOrange, lightPurple, lightRed, lightYellow, orange, pink, purple, red, white, yellow
@docs Color, black, blank, blue, brown, charcoal, darkBlue, darkBrown, darkCharcoal, darkGray, darkGreen, darkGrey, darkOrange, darkPurple, darkRed, darkYellow, gray, green, grey, hotPink, lightBlue, lightBrown, lightCharcoal, lightGray, lightGreen, lightGrey, lightOrange, lightPurple, lightRed, lightYellow, orange, pink, purple, red, white, yellow
# Let there be gradients!
@docs stop, transparentStop, gradient, radialGradient, rotateGradient
@docs Gradient, Stop, stop, transparentStop, gradient, radialGradient, rotateGradient
# Advanced Transformations
Expand All @@ -126,7 +126,7 @@ level to the transformations normally handled in the background by GraphicSVG.
Most users should be happy to use the regular functions applied directly to shapes,
which are provided in the section above this one.
@docs ident, moveT, rotateT, scaleT, skewT, rotateAboutT, transform
@docs Transform, ident, moveT, rotateT, scaleT, skewT, rotateAboutT, transform
# More Advanced Things
Expand Down
3 changes: 2 additions & 1 deletion src/GraphicSVG/Secret.elm
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module GraphicSVG.Secret exposing (..)
module GraphicSVG.Secret exposing
(Stencil(..), Shape(..), Color(..), Gradient(..), Stop(..), Transform, LineType(..), FontAlign(..), Face(..), Font(..), Pull(..))

{-| Advanced Secret module! This is for people who want to access the
underlying types in the library so you can do advanced things. Most people
Expand Down

0 comments on commit fafe6b7

Please sign in to comment.