From 7397a300efc628b88dcae4bf7179f4cfc79a9fa0 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Sun, 2 Sep 2018 15:48:37 +0200 Subject: [PATCH] fix missing library inside public api --- .../src/lib/components/graphs.component.scss | 19 ------------------- projects/nls-guilloche/src/public_api.ts | 1 + 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/projects/nls-guilloche/src/lib/components/graphs.component.scss b/projects/nls-guilloche/src/lib/components/graphs.component.scss index 355bcc2..d98c4ba 100644 --- a/projects/nls-guilloche/src/lib/components/graphs.component.scss +++ b/projects/nls-guilloche/src/lib/components/graphs.component.scss @@ -14,25 +14,6 @@ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -// svg { -// // opacity: 0.4; -// } - -// svg { -// stroke-dasharray: 1000px; -// stroke-dashoffset: 0px; -// animation: draw 6s; -// } - -// @keyframes draw { -// from { -// stroke-dashoffset: 1000px; -// } -// to { -// stroke-dashoffset: 0px; -// } -// } - :host { position: absolute; width: 100%; diff --git a/projects/nls-guilloche/src/public_api.ts b/projects/nls-guilloche/src/public_api.ts index d463f5a..b271fae 100644 --- a/projects/nls-guilloche/src/public_api.ts +++ b/projects/nls-guilloche/src/public_api.ts @@ -2,6 +2,7 @@ * Public API Surface of nls-guilloche */ +export * from './lib/components/graphs.component'; export * from './lib/directives/guilloche.directive'; export * from './lib/models/config.model'; export * from './lib/models/graph.model';