Skip to content

Commit

Permalink
v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
daengdaengLee committed Aug 14, 2020
2 parents 0bc38a1 + 410deed commit 403c1ec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fxsvg",
"version": "0.4.7",
"version": "0.4.8",
"description": "Functional SVG Handling Library",
"type": "module",
"main": "./src/index.js",
Expand Down
4 changes: 3 additions & 1 deletion src/fxsvg.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $append, $appendTo, $off, $on, $qs, $qsa } from "fxdom";
import { $append, $appendTo, $hide, $off, $on, $qs, $qsa, $show } from "fxdom";

import { $$appendRotateTransform } from "./appendRotateTransform/appendRotateTransform.index.js";
import { $$appendTranslateTransform } from "./appendTranslateTransform/appendTranslateTransform.index.js";
Expand Down Expand Up @@ -53,10 +53,12 @@ import { $$updateTranslateTransform } from "./updateTranslateTransform/updateTra
export const FxSVG = {
append: $append,
appendTo: $appendTo,
hide: $hide,
off: $off,
on: $on,
qs: $qs,
qsa: $qsa,
show: $show,

appendRotateTransform: $$appendRotateTransform,
appendTranslateTransform: $$appendTranslateTransform,
Expand Down
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
export {
$append as $$append,
$appendTo as $$appendTo,
$hide as $$hide,
$off as $$off,
$on as $$on,
$qs as $$qs,
$qsa as $$qsa,
$show as $$show,
} from "fxdom";

export { $$appendRotateTransform } from "./appendRotateTransform/appendRotateTransform.index.js";
Expand Down

0 comments on commit 403c1ec

Please sign in to comment.