Skip to content

Commit

Permalink
wip - lists
Browse files Browse the repository at this point in the history
Signed-off-by: Elena Sharma <esharma@pivotal.io>
  • Loading branch information
charleshansen authored and elenasharma committed Feb 29, 2016
1 parent c1230a0 commit 480e00c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions library/src/pivotal-ui-react/lists/lists.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var React = require('react');
import classnames from 'classnames';
import 'pui-css-lists';

var ListItem = React.createClass({
render: function() {
Expand Down
4 changes: 4 additions & 0 deletions library/src/pivotal-ui/components/bootstrap/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
try {
require('./bootstrap.css');
} catch(e) {
}
5 changes: 5 additions & 0 deletions library/src/pivotal-ui/components/lists/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
try {
require('pui-css-typography');
require('./lists.css');
} catch(e) {
}
1 change: 0 additions & 1 deletion library/src/pivotal-ui/components/lists/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"homepage": "http://styleguide.pivotal.io/",
"dependencies": {
"pui-css-bootstrap": "^3.2.0",
"pui-css-typography": "^3.2.0"
},
"version": "3.2.0"
Expand Down
5 changes: 5 additions & 0 deletions library/src/pivotal-ui/components/typography/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
try {
require('pui-css-bootstrap');
require('./typography.css');
} catch(e) {
}
1 change: 1 addition & 0 deletions library/templates/css/package.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ var packageTemplate = function(name, overrides) {
name: `pui-css-${name}`,
style: `${name}.css`,
version: '0.0.1',
main: 'index.js',
description: `${name} css component for Pivotal UI based on Bootstrap`,
repository: {
type: 'git',
Expand Down

0 comments on commit 480e00c

Please sign in to comment.