Skip to content

Commit

Permalink
fix(ic-crud-dropdown): fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Walker Leite committed Dec 14, 2017
1 parent 6de2a6d commit fa0a8e9
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 19 deletions.
26 changes: 23 additions & 3 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"bootstrap-vue": "^1.3.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chai": "^4.1.2",
Expand All @@ -47,6 +48,7 @@
"poi": "^9.5.2",
"poi-preset-karma": "^9.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"typescript": "^2.6.1",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3",
Expand Down
2 changes: 2 additions & 0 deletions src/ic-crud-dropdown/ic-crud-dropdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ let series = [
```

Dependencies (add them manually):
- [Bootstrap Vue](https://github.com/bootstrap-vue/bootstrap-vue/)
- [Bootstrap 4 Sass](http://getbootstrap.com/)
- [FontAwesome](http://fontawesome.io/)
13 changes: 0 additions & 13 deletions src/ic-crud-dropdown/ic-crud-dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,27 +121,14 @@ import texts from './text-props.js'
import debounce from 'debounce'
import InfiniteLoading from 'vue-infinite-loading'
import PerfectScrollbar from 'perfect-scrollbar'
import bModal from 'bootstrap-vue/es/components/modal/modal'
import bButton from 'bootstrap-vue/es/components/button/button'
import bDropdown from 'bootstrap-vue/es/components/dropdown/dropdown'
import bDropdownItem from 'bootstrap-vue/es/components/dropdown/dropdown-item'
import bDropdownHeader from 'bootstrap-vue/es/components/dropdown/dropdown-header'
import bDropdownDivider from 'bootstrap-vue/es/components/dropdown/dropdown-divider'
import 'perfect-scrollbar/css/perfect-scrollbar.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
export default {
name: 'ic-crud-dropdown',
components: {
IcFormly,
InfiniteLoading,
bModal,
bButton,
bDropdown,
bDropdownItem,
bDropdownHeader,
bDropdownDivider,
},
mixins: [texts],
props: {
Expand Down
7 changes: 4 additions & 3 deletions styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
/* The component itself */
name: 'ic-crud-dropdown documentation',
content: 'docs/Introduction.md',
components: 'src/**/*.vue',
components: './src/**/*.vue',
// ignore: ['src/ignored-component/ignored-component.vue'],
sections: getDocSections()
},
Expand All @@ -36,7 +36,8 @@ module.exports = {
serverPort: 6062,
require: [
'bootstrap/dist/css/bootstrap.css',
'bootstrap-vue',
'font-awesome',
'bootstrap-vue/dist/bootstrap-vue.js',
'bootstrap-vue/dist/bootstrap-vue.css',
'font-awesome/css/font-awesome.css',
]
};

0 comments on commit fa0a8e9

Please sign in to comment.