Skip to content

Commit 1e4e117

Browse files
authored
Merge pull request #48 from mrholek/v1.0.8
v1.0.8
2 parents 6315b5e + 77c076f commit 1e4e117

File tree

551 files changed

+18636
-471
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

551 files changed

+18636
-471
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
## [vue](./README.md) version `changelog`
22

3+
###### `v1.0.8`
4+
- update: vue to `2.5.13`
5+
- update: Bootstrap to `4.0.0-beta.3`
6+
- update: bootstrap-vue to `1.4.0`
7+
- chore: dependencies update
8+
- refactor: `<b-table>` use the prop `responsive="sm"` instead of `class="table-responsive-sm"`
9+
- fix: `Vue warn:` Do not use built-in or reserved HTML elements as component id: (header, aside, footer, table)
10+
- feature: some Bootstrap4 components added
11+
- temp tweaks(b4 beta3): `InputGroupAddon` and `InputGroupButton`
12+
- refactor(checkboxes, radios, labels): temp tweaks
13+
- feat: mobile sidebar link click closes the sidebar [#18](https://github.com/mrholek/CoreUI-Vue/pull/18)
14+
315
###### `v1.0.6`
416
- refactor: raw html to `b-row`, `b-col`, `b-card`, `b-button` components
517
- fix: Cards.vue: change `variant="accent-` to `class="card-accent-`

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 creativeLabs Łukasz Holeczek.
3+
Copyright (c) 2018 creativeLabs Łukasz Holeczek.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Vue_Full_Project/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
## [vue](./README.md) version `changelog`
22

3+
###### `v1.0.8`
4+
- update: vue to `2.5.13`
5+
- update: Bootstrap to `4.0.0-beta.3`
6+
- update: bootstrap-vue to `1.4.0`
7+
- chore: dependencies update
8+
- refactor: `<b-table>` use the prop `responsive="sm"` instead of `class="table-responsive-sm"`
9+
- fix: `Vue warn:` Do not use built-in or reserved HTML elements as component id: (header, aside, footer, table)
10+
- feature: some Bootstrap4 components added
11+
- temp tweaks(b4 beta3): `InputGroupAddon` and `InputGroupButton`
12+
- refactor(checkboxes, radios, labels): temp tweaks
13+
- feat: mobile sidebar link click closes the sidebar [#18](https://github.com/mrholek/CoreUI-Vue/pull/18)
14+
315
###### `v1.0.6`
416
- refactor: raw html to `b-row`, `b-col`, `b-card`, `b-button` components
517
- fix: Cards.vue: change `variant="accent-` to `class="card-accent-`

Vue_Full_Project/build/webpack.base.conf.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,20 @@ module.exports = {
4848
},
4949
{
5050
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
51+
exclude: [/fonts/],
5152
use: {
5253
loader: 'file-loader',
5354
options: {
5455
name: '[name].[hash:7].[ext]',
5556
publicPath: '../../',
56-
outputPath: utils.assetsPath('img/')
57+
outputPath: utils.assetsPath('img/'),
58+
emitFile: true
5759
}
5860
}
5961
},
6062
{
6163
test: /\.(woff2?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
64+
exclude: [/flags/],
6265
use: {
6366
loader: 'file-loader',
6467
options: {

0 commit comments

Comments
 (0)