Skip to content

Commit 8228f2e

Browse files
committed
chore: update dependencies, small refactors
1 parent 30abab4 commit 8228f2e

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@
6767
"auto-changelog": "auto-changelog --template changelog-template.hbs --commit-limit false --package"
6868
},
6969
"dependencies": {
70-
"@coreui/icons": "^1.0.0",
71-
"@coreui/icons-vue": "^1.1.2",
70+
"@coreui/icons": "^1.0.1",
71+
"@coreui/icons-vue": "^1.2.0",
7272
"@coreui/utils": "^1.2.2",
73-
"@popperjs/core": "^2.0.1",
73+
"@popperjs/core": "^2.0.5",
7474
"lodash.clonedeep": "^4.5.0",
7575
"perfect-scrollbar": "^1.5.0",
7676
"tooltip.js": "^1.3.3",
@@ -93,14 +93,14 @@
9393
"node-sass": "^4.13.1",
9494
"node-sass-magic-importer": "^5.3.2",
9595
"npm-run-all": "^4.1.5",
96-
"rollup": "^1.30.0",
96+
"rollup": "^1.31.0",
9797
"rollup-plugin-babel": "^4.3.3",
9898
"rollup-plugin-commonjs": "^10.1.0",
9999
"rollup-plugin-filesize": "^6.2.1",
100100
"rollup-plugin-json": "^4.0.0",
101101
"rollup-plugin-license": "^0.13.0",
102102
"rollup-plugin-node-resolve": "^5.2.0",
103-
"rollup-plugin-postcss": "^2.0.5",
103+
"rollup-plugin-postcss": "^2.0.6",
104104
"rollup-plugin-replace": "^2.2.0",
105105
"rollup-plugin-uglify": "^6.0.4",
106106
"rollup-plugin-vue": "4.7.2",

src/components/button/CButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const btnProps = {
2727
default: null
2828
}
2929
}
30-
export const props = Object.assign(linkPropsFactory(), btnProps)
30+
const props = Object.assign(linkPropsFactory(), btnProps)
3131
3232
// Helper functons to minimize runtime memory footprint when lots of buttons on page(TODO: check it)
3333
function isLink (props) {

src/components/dropdown/CDropdown.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ export default {
162162
name: 'preventOverflow',
163163
options: {
164164
padding: 10
165-
},
166-
},
165+
}
166+
}
167167
]
168168
}
169169
},

src/components/dropdown/tests/__snapshots__/CDropdown.spec.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ exports[`CDropdown renders custom wrapper correctly 1`] = `
6161
data-popper-escaped=""
6262
data-popper-placement="right-end"
6363
data-popper-reference-hidden=""
64-
style="position: absolute; left: 0px; top: 0px; margin: 0px; transform: translate(0px, 0px);"
64+
style="position: absolute; left: 0px; top: 0px; margin: 0px; transform: translate(0px, 20px);"
6565
>
6666
CDropdown subcomponents
6767
</div>

src/components/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ export declare class CIcon extends Vue {
315315
size: string
316316
customClasses: string | Array<any> | object
317317
src: string
318+
use: string
318319
}
319320

320321
export declare class CImg extends Vue {

0 commit comments

Comments
 (0)