From e944ad0ecde45f425144fcc813d4611d375850e2 Mon Sep 17 00:00:00 2001 From: Claire Thompson Date: Wed, 16 Sep 2015 15:15:13 -0700 Subject: [PATCH] feat(react-animations): remove pui-css-react-animations [Finishes #102958692] Signed-off-by: August Toman-Yih --- package.json | 1 - .../components/react-animations/README.md | 1 - .../components/react-animations/package.json | 5 --- .../react-animations/react-animations.scss | 44 ------------------- 4 files changed, 51 deletions(-) delete mode 100644 src/pivotal-ui/components/react-animations/README.md delete mode 100644 src/pivotal-ui/components/react-animations/package.json delete mode 100644 src/pivotal-ui/components/react-animations/react-animations.scss diff --git a/package.json b/package.json index ea4955701..5e9117474 100644 --- a/package.json +++ b/package.json @@ -131,7 +131,6 @@ "pui-css-panels": "2.0.0-alpha.4", "pui-css-panes": "2.0.0-alpha.4", "pui-css-progress-bars": "2.0.0-alpha.4", - "pui-css-react-animations": "2.0.0-alpha.4", "pui-css-ribbons": "2.0.0-alpha.4", "pui-css-spinners": "2.0.0-alpha.4", "pui-css-tables": "2.0.0-alpha.4", diff --git a/src/pivotal-ui/components/react-animations/README.md b/src/pivotal-ui/components/react-animations/README.md deleted file mode 100644 index 96b676a73..000000000 --- a/src/pivotal-ui/components/react-animations/README.md +++ /dev/null @@ -1 +0,0 @@ -Styles for supporting React Animations \ No newline at end of file diff --git a/src/pivotal-ui/components/react-animations/package.json b/src/pivotal-ui/components/react-animations/package.json deleted file mode 100644 index 313dc0756..000000000 --- a/src/pivotal-ui/components/react-animations/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "homepage": "http://styleguide.pivotal.io", - "dependencies": {}, - "version": "2.0.0-alpha.4" -} \ No newline at end of file diff --git a/src/pivotal-ui/components/react-animations/react-animations.scss b/src/pivotal-ui/components/react-animations/react-animations.scss deleted file mode 100644 index bb2d0142a..000000000 --- a/src/pivotal-ui/components/react-animations/react-animations.scss +++ /dev/null @@ -1,44 +0,0 @@ -@import "../pui-variables"; -@import '../mixins'; -@import "../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins"; - -.new-enter { - -webkit-animation: new-item-grow .3s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards, new-item-fade .5s ease-in .15s forwards; - -moz-animation: new-item-grow .3s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards, new-item-fade .5s ease-in .15s forwards; -} - -@-webkit-keyframes new-item-fade { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@-webkit-keyframes new-item-grow { - 0% { - max-height: 0; - } - 100% { - max-height: 100px; - } -} - -@keyframes new-item-fade { - from { - opacity: 0; - } - to { - opacity: 1; - } -} - -@keyframes new-item-grow { - from { - max-height: 0; - } - to { - max-height: 100px; - } -}