add logo and update vc-XXX
parent
af93808b70
commit
3a51f27e43
|
@ -1,6 +1,6 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://vuecomponent.github.io/ant-design/">
|
<a href="https://vuecomponent.github.io/ant-design/">
|
||||||
<img width="230" src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg">
|
<img width="230" src="https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://vuecomponent.github.io/ant-design/">
|
<a href="https://vuecomponent.github.io/ant-design/">
|
||||||
<img width="230" src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg">
|
<img width="230" src="https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import isPlainObject from 'lodash.isplainobject'
|
import isPlainObject from 'lodash/isPlainObject'
|
||||||
|
|
||||||
const camelizeRE = /-(\w)/g
|
const camelizeRE = /-(\w)/g
|
||||||
const camelize = (str) => {
|
const camelize = (str) => {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import isPlainObject from 'lodash.isplainobject'
|
import isPlainObject from 'lodash/isPlainObject'
|
||||||
import { toType, getType, isFunction, validateType, isInteger, isArray, warn } from './utils'
|
import { toType, getType, isFunction, validateType, isInteger, isArray, warn } from './utils'
|
||||||
|
|
||||||
const VuePropTypes = {
|
const VuePropTypes = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import isPlainObject from 'lodash.isplainobject'
|
import isPlainObject from 'lodash/isPlainObject'
|
||||||
|
|
||||||
const ObjProto = Object.prototype
|
const ObjProto = Object.prototype
|
||||||
const toString = ObjProto.toString
|
const toString = ObjProto.toString
|
||||||
|
|
|
@ -4,7 +4,7 @@ import align from 'dom-align'
|
||||||
import addEventListener from '../_util/Dom/addEventListener'
|
import addEventListener from '../_util/Dom/addEventListener'
|
||||||
import { cloneElement } from '../_util/vnode.js'
|
import { cloneElement } from '../_util/vnode.js'
|
||||||
import isWindow from './isWindow'
|
import isWindow from './isWindow'
|
||||||
import clonedeep from 'lodash.clonedeep'
|
import clonedeep from 'lodash/cloneDeep'
|
||||||
import shallowequal from 'shallowequal'
|
import shallowequal from 'shallowequal'
|
||||||
function noop () {
|
function noop () {
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { getConfirmLocale } from './locale'
|
||||||
export default {
|
export default {
|
||||||
functional: true,
|
functional: true,
|
||||||
render (h, context) {
|
render (h, context) {
|
||||||
const { data: props } = context
|
const { props } = context
|
||||||
const { onCancel, onOk, close, zIndex, afterClose, visible } = props
|
const { onCancel, onOk, close, zIndex, afterClose, visible } = props
|
||||||
const iconType = props.iconType || 'question-circle'
|
const iconType = props.iconType || 'question-circle'
|
||||||
const okType = props.okType || 'primary'
|
const okType = props.okType || 'primary'
|
||||||
|
|
|
@ -25,10 +25,13 @@ export default function confirm (config) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function render (props) {
|
function render (props) {
|
||||||
|
const confirmDialogProps = {
|
||||||
|
props,
|
||||||
|
}
|
||||||
return new Vue({
|
return new Vue({
|
||||||
el: el,
|
el: el,
|
||||||
render () {
|
render () {
|
||||||
return <ConfirmDialog {...props} />
|
return <ConfirmDialog {...confirmDialogProps} />
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ A complete multiple select sample with remote search, debounce fetch, ajax callb
|
||||||
<script>
|
<script>
|
||||||
import jsonp from 'fetch-jsonp';
|
import jsonp from 'fetch-jsonp';
|
||||||
import querystring from 'querystring';
|
import querystring from 'querystring';
|
||||||
import debounce from 'lodash.debounce';
|
import debounce from 'lodash/debounce';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { setTransform, isTransformSupported } from './utils'
|
import { setTransform, isTransformSupported } from './utils'
|
||||||
import addDOMEventListener from 'add-dom-event-listener'
|
import addDOMEventListener from 'add-dom-event-listener'
|
||||||
import debounce from 'lodash.debounce'
|
import debounce from 'lodash/debounce'
|
||||||
function noop () {
|
function noop () {
|
||||||
}
|
}
|
||||||
export default {
|
export default {
|
||||||
|
|
|
@ -69,6 +69,7 @@ const DateTBody = {
|
||||||
const disabledClass = `${prefixCls}-disabled-cell`
|
const disabledClass = `${prefixCls}-disabled-cell`
|
||||||
const firstDisableClass = `${prefixCls}-disabled-cell-first-of-row`
|
const firstDisableClass = `${prefixCls}-disabled-cell-first-of-row`
|
||||||
const lastDisableClass = `${prefixCls}-disabled-cell-last-of-row`
|
const lastDisableClass = `${prefixCls}-disabled-cell-last-of-row`
|
||||||
|
const lastDayOfMonthClass = `${prefixCls}-last-day-of-month`
|
||||||
const month1 = value.clone()
|
const month1 = value.clone()
|
||||||
month1.date(1)
|
month1.date(1)
|
||||||
const day = month1.day()
|
const day = month1.day()
|
||||||
|
@ -169,6 +170,10 @@ const DateTBody = {
|
||||||
cls += ` ${nextMonthDayClass}`
|
cls += ` ${nextMonthDayClass}`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (current.clone().endOf('month').date() === current.date()) {
|
||||||
|
cls += ` ${lastDayOfMonthClass}`
|
||||||
|
}
|
||||||
|
|
||||||
if (disabledDate) {
|
if (disabledDate) {
|
||||||
if (disabledDate(current, value)) {
|
if (disabledDate(current, value)) {
|
||||||
disabled = true
|
disabled = true
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
export default {
|
||||||
|
today: 'Danes',
|
||||||
|
now: 'Trenutno',
|
||||||
|
backToToday: 'Nazaj na danes',
|
||||||
|
ok: 'V redu',
|
||||||
|
clear: 'Počisti',
|
||||||
|
month: 'Mesec',
|
||||||
|
year: 'Leto',
|
||||||
|
timeSelect: 'Izberite čas',
|
||||||
|
dateSelect: 'Izberite datum',
|
||||||
|
monthSelect: 'Izberite mesec',
|
||||||
|
yearSelect: 'Izberite leto',
|
||||||
|
decadeSelect: 'Izberite desetletje',
|
||||||
|
yearFormat: 'YYYY',
|
||||||
|
dateFormat: 'DD.MM.YYYY',
|
||||||
|
dayFormat: 'D',
|
||||||
|
dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
|
||||||
|
monthBeforeYear: true,
|
||||||
|
previousMonth: 'Prejšnji mesec (PageUp)',
|
||||||
|
nextMonth: 'Naslednji mesec (PageDown)',
|
||||||
|
previousYear: 'Prejšnje leto (Control + left)',
|
||||||
|
nextYear: 'Naslednje leto (Control + right)',
|
||||||
|
previousDecade: 'Prejšnje desetletje',
|
||||||
|
nextDecade: 'Naslednje desetletje',
|
||||||
|
previousCentury: 'Prejšnje stoletje',
|
||||||
|
nextCentury: 'Naslednje stoletje',
|
||||||
|
}
|
|
@ -38,6 +38,7 @@ export default {
|
||||||
showLessItems: PropTypes.bool.def(false),
|
showLessItems: PropTypes.bool.def(false),
|
||||||
// showSizeChange: PropTypes.func.def(noop),
|
// showSizeChange: PropTypes.func.def(noop),
|
||||||
selectComponentClass: PropTypes.any,
|
selectComponentClass: PropTypes.any,
|
||||||
|
showPrevNextJumpers: PropTypes.bool.def(true),
|
||||||
showQuickJumper: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]).def(false),
|
showQuickJumper: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]).def(false),
|
||||||
showTitle: PropTypes.bool.def(true),
|
showTitle: PropTypes.bool.def(true),
|
||||||
pageSizeOptions: PropTypes.arrayOf(PropTypes.string),
|
pageSizeOptions: PropTypes.arrayOf(PropTypes.string),
|
||||||
|
@ -310,7 +311,7 @@ export default {
|
||||||
<li
|
<li
|
||||||
title={this.showTitle ? locale.next_page : null}
|
title={this.showTitle ? locale.next_page : null}
|
||||||
onClick={this.next}
|
onClick={this.next}
|
||||||
tabIndex='0'
|
tabIndex={this.hasNext ? 0 : null}
|
||||||
onKeypress={this.runIfEnterNext}
|
onKeypress={this.runIfEnterNext}
|
||||||
class={`${hasNext ? '' : `${prefixCls}-disabled`} ${prefixCls}-next`}
|
class={`${hasNext ? '' : `${prefixCls}-disabled`} ${prefixCls}-next`}
|
||||||
aria-disabled={!this.hasNext()}
|
aria-disabled={!this.hasNext()}
|
||||||
|
@ -341,34 +342,37 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
const prevItemTitle = this.showLessItems ? locale.prev_3 : locale.prev_5
|
const prevItemTitle = this.showLessItems ? locale.prev_3 : locale.prev_5
|
||||||
const nextItemTitle = this.showLessItems ? locale.next_3 : locale.next_5
|
const nextItemTitle = this.showLessItems ? locale.next_3 : locale.next_5
|
||||||
jumpPrev = (
|
if (this.showPrevNextJumpers) {
|
||||||
<li
|
jumpPrev = (
|
||||||
title={this.showTitle ? prevItemTitle : null}
|
<li
|
||||||
key='prev'
|
title={this.showTitle ? prevItemTitle : null}
|
||||||
onClick={this.jumpPrev}
|
key='prev'
|
||||||
tabIndex='0'
|
onClick={this.jumpPrev}
|
||||||
onKeypress={this.runIfEnterJumpPrev}
|
tabIndex='0'
|
||||||
class={`${prefixCls}-jump-prev`}
|
onKeypress={this.runIfEnterJumpPrev}
|
||||||
>
|
class={`${prefixCls}-jump-prev`}
|
||||||
{this.itemRender(
|
>
|
||||||
this.getJumpPrevPage(), 'jump-prev', <a class={`${prefixCls}-item-link`} />
|
{this.itemRender(
|
||||||
)}
|
this.getJumpPrevPage(), 'jump-prev', <a class={`${prefixCls}-item-link`} />
|
||||||
</li>
|
)}
|
||||||
)
|
</li>
|
||||||
jumpNext = (
|
)
|
||||||
<li
|
jumpNext = (
|
||||||
title={this.showTitle ? nextItemTitle : null}
|
<li
|
||||||
key='next'
|
title={this.showTitle ? nextItemTitle : null}
|
||||||
tabIndex='0'
|
key='next'
|
||||||
onClick={this.jumpNext}
|
tabIndex='0'
|
||||||
onKeypress={this.runIfEnterJumpNext}
|
onClick={this.jumpNext}
|
||||||
class={`${prefixCls}-jump-next`}
|
onKeypress={this.runIfEnterJumpNext}
|
||||||
>
|
class={`${prefixCls}-jump-next`}
|
||||||
{this.itemRender(
|
>
|
||||||
this.getJumpNextPage(), 'jump-next', <a class={`${prefixCls}-item-link`} />
|
{this.itemRender(
|
||||||
)}
|
this.getJumpNextPage(), 'jump-next', <a class={`${prefixCls}-item-link`} />
|
||||||
</li>
|
)}
|
||||||
)
|
</li>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
lastPager = (
|
lastPager = (
|
||||||
<Pager
|
<Pager
|
||||||
locale={locale}
|
locale={locale}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
export default {
|
||||||
|
// Options.jsx
|
||||||
|
items_per_page: '/ halaman',
|
||||||
|
jump_to: 'Menuju',
|
||||||
|
jump_to_confirm: 'konfirmasi',
|
||||||
|
page: '',
|
||||||
|
|
||||||
|
// Pagination.jsx
|
||||||
|
prev_page: 'Halaman Sebelumnya',
|
||||||
|
next_page: 'Halaman Berikutnya',
|
||||||
|
prev_5: '5 Halaman Sebelumnya',
|
||||||
|
next_5: '5 Halaman Berikutnya',
|
||||||
|
prev_3: '3 Halaman Sebelumnya',
|
||||||
|
next_3: '3 Halaman Berikutnya',
|
||||||
|
};
|
|
@ -0,0 +1,15 @@
|
||||||
|
export default {
|
||||||
|
// Options.jsx
|
||||||
|
items_per_page: '/ strani',
|
||||||
|
jump_to: 'Pojdi na',
|
||||||
|
jump_to_confirm: 'potrdi',
|
||||||
|
page: '',
|
||||||
|
|
||||||
|
// Pagination.jsx
|
||||||
|
prev_page: 'Prejšnja stran',
|
||||||
|
next_page: 'Naslednja stran',
|
||||||
|
prev_5: 'Prejšnjih 5 strani',
|
||||||
|
next_5: 'Naslednjih 5 strani',
|
||||||
|
prev_3: 'Prejšnje 3 strani',
|
||||||
|
next_3: 'Naslednje 3 strani',
|
||||||
|
};
|
|
@ -0,0 +1,15 @@
|
||||||
|
export default {
|
||||||
|
// Options.jsx
|
||||||
|
items_per_page: '/ sayfa',
|
||||||
|
jump_to: 'Git',
|
||||||
|
jump_to_confirm: 'onayla',
|
||||||
|
page: '',
|
||||||
|
|
||||||
|
// Pagination.jsx
|
||||||
|
prev_page: 'Önceki Sayfa',
|
||||||
|
next_page: 'Sonraki Sayfa',
|
||||||
|
prev_5: 'Önceki 5 Sayfa',
|
||||||
|
next_5: 'Sonraki 5 Sayfa',
|
||||||
|
prev_3: 'Önceki 3 Sayfa',
|
||||||
|
next_3: 'Sonraki 3 Sayfa',
|
||||||
|
};
|
|
@ -1,3 +1,4 @@
|
||||||
|
// base rc-steps 3.3.1
|
||||||
import Steps from './Steps'
|
import Steps from './Steps'
|
||||||
import Step from './Step'
|
import Step from './Step'
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ export default {
|
||||||
<a-row>
|
<a-row>
|
||||||
<a-col xxl={4} xl={5} lg={5} md={6} sm={24} xs={24}>
|
<a-col xxl={4} xl={5} lg={5} md={6} sm={24} xs={24}>
|
||||||
<router-link to={{ path: `/${lang}` }} id='logo'>
|
<router-link to={{ path: `/${lang}` }} id='logo'>
|
||||||
LOGO
|
<img alt='logo' src='https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png' />
|
||||||
<span> VUE-ANTD</span>
|
<span> VUE-ANTD</span>
|
||||||
</router-link>
|
</router-link>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
293
package.json
293
package.json
|
@ -1,150 +1,147 @@
|
||||||
{
|
{
|
||||||
"name": "vue-antd-ui",
|
"name": "vue-antd-ui",
|
||||||
"version": "0.1.1",
|
"version": "0.1.1",
|
||||||
"title": "Ant Design Vue",
|
"title": "Ant Design Vue",
|
||||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ant",
|
"ant",
|
||||||
"design",
|
"design",
|
||||||
"antd",
|
"antd",
|
||||||
"vue",
|
"vue",
|
||||||
"vueComponent",
|
"vueComponent",
|
||||||
"component",
|
"component",
|
||||||
"components",
|
"components",
|
||||||
"ui",
|
"ui",
|
||||||
"framework",
|
"framework",
|
||||||
"frontend"
|
"frontend"
|
||||||
],
|
],
|
||||||
"main": "dist/antd.min.js",
|
"main": "dist/antd.min.js",
|
||||||
"files": [
|
"files": [
|
||||||
"dist",
|
"dist",
|
||||||
"lib",
|
"lib",
|
||||||
"es"
|
"es"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot",
|
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot",
|
||||||
"test": "karma start test/karma.conf.js --single-run",
|
"test": "karma start test/karma.conf.js --single-run",
|
||||||
"build": "sh build.sh",
|
"build": "sh build.sh",
|
||||||
"compile": "node antd-tools/cli/run.js compile",
|
"compile": "node antd-tools/cli/run.js compile",
|
||||||
"dist": "node antd-tools/cli/run.js dist",
|
"dist": "node antd-tools/cli/run.js dist",
|
||||||
"lint": "eslint -c ./.eslintrc --fix --ext .jsx ./components",
|
"lint": "eslint -c ./.eslintrc --fix --ext .jsx ./components",
|
||||||
"lint:style": "stylelint \"./examples/**/*.less\" --fix --syntax less"
|
"lint:style": "stylelint \"./examples/**/*.less\" --fix --syntax less"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/vueComponent/ant-design.git"
|
"url": "git+https://github.com/vueComponent/ant-design.git"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vueComponent/ant-design/issues"
|
"url": "https://github.com/vueComponent/ant-design/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vueComponent/ant-design",
|
"homepage": "https://github.com/vueComponent/ant-design",
|
||||||
"pre-commit": [
|
"pre-commit": [
|
||||||
"lint:style"
|
"lint:style"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^8.1.0",
|
"autoprefixer": "^8.1.0",
|
||||||
"babel-cli": "^6.26.0",
|
"babel-cli": "^6.26.0",
|
||||||
"babel-core": "^6.26.0",
|
"babel-core": "^6.26.0",
|
||||||
"babel-eslint": "^8.0.1",
|
"babel-eslint": "^8.0.1",
|
||||||
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
||||||
"babel-loader": "^7.1.2",
|
"babel-loader": "^7.1.2",
|
||||||
"babel-plugin-add-module-exports": "^0.2.1",
|
"babel-plugin-add-module-exports": "^0.2.1",
|
||||||
"babel-plugin-import": "^1.1.1",
|
"babel-plugin-import": "^1.1.1",
|
||||||
"babel-plugin-istanbul": "^4.1.1",
|
"babel-plugin-istanbul": "^4.1.1",
|
||||||
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
||||||
"babel-plugin-syntax-jsx": "^6.18.0",
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
||||||
"babel-plugin-transform-decorators": "^6.24.1",
|
"babel-plugin-transform-decorators": "^6.24.1",
|
||||||
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
"babel-plugin-transform-decorators-legacy": "^1.3.4",
|
||||||
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
|
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
|
||||||
"babel-plugin-transform-es3-property-literals": "^6.22.0",
|
"babel-plugin-transform-es3-property-literals": "^6.22.0",
|
||||||
"babel-plugin-transform-object-assign": "^6.22.0",
|
"babel-plugin-transform-object-assign": "^6.22.0",
|
||||||
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
||||||
"babel-plugin-transform-runtime": "~6.23.0",
|
"babel-plugin-transform-runtime": "~6.23.0",
|
||||||
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"babel-preset-env": "^1.6.1",
|
"babel-preset-env": "^1.6.1",
|
||||||
"case-sensitive-paths-webpack-plugin": "^2.1.2",
|
"case-sensitive-paths-webpack-plugin": "^2.1.2",
|
||||||
"chai": "^4.1.2",
|
"chai": "^4.1.2",
|
||||||
"chalk": "^2.3.2",
|
"chalk": "^2.3.2",
|
||||||
"cheerio": "^1.0.0-rc.2",
|
"cheerio": "^1.0.0-rc.2",
|
||||||
"colorful": "^2.1.0",
|
"colorful": "^2.1.0",
|
||||||
"commander": "^2.15.0",
|
"commander": "^2.15.0",
|
||||||
"css-loader": "^0.28.7",
|
"css-loader": "^0.28.7",
|
||||||
"deep-assign": "^2.0.0",
|
"deep-assign": "^2.0.0",
|
||||||
"eslint": "^4.7.2",
|
"eslint": "^4.7.2",
|
||||||
"eslint-plugin-html": "^3.2.2",
|
"eslint-plugin-html": "^3.2.2",
|
||||||
"eslint-plugin-vue-libs": "^1.2.1",
|
"eslint-plugin-vue-libs": "^1.2.1",
|
||||||
"extract-text-webpack-plugin": "^3.0.2",
|
"extract-text-webpack-plugin": "^3.0.2",
|
||||||
"fetch-jsonp": "^1.1.3",
|
"fetch-jsonp": "^1.1.3",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"gulp-babel": "^7.0.0",
|
"gulp-babel": "^7.0.0",
|
||||||
"gulp-strip-code": "^0.1.4",
|
"gulp-strip-code": "^0.1.4",
|
||||||
"highlight.js": "^9.12.0",
|
"highlight.js": "^9.12.0",
|
||||||
"html-webpack-plugin": "^2.30.1",
|
"html-webpack-plugin": "^2.30.1",
|
||||||
"istanbul-instrumenter-loader": "^3.0.0",
|
"istanbul-instrumenter-loader": "^3.0.0",
|
||||||
"jsonp": "^0.2.1",
|
"jsonp": "^0.2.1",
|
||||||
"karma": "^1.4.1",
|
"karma": "^1.4.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
"karma-coverage-istanbul-reporter": "^1.3.0",
|
"karma-coverage-istanbul-reporter": "^1.3.0",
|
||||||
"karma-mocha": "^1.3.0",
|
"karma-mocha": "^1.3.0",
|
||||||
"karma-phantomjs-launcher": "^1.0.2",
|
"karma-phantomjs-launcher": "^1.0.2",
|
||||||
"karma-phantomjs-shim": "^1.4.0",
|
"karma-phantomjs-shim": "^1.4.0",
|
||||||
"karma-sinon-chai": "^1.3.1",
|
"karma-sinon-chai": "^1.3.1",
|
||||||
"karma-sourcemap-loader": "^0.3.7",
|
"karma-sourcemap-loader": "^0.3.7",
|
||||||
"karma-spec-reporter": "0.0.31",
|
"karma-spec-reporter": "0.0.31",
|
||||||
"karma-webpack": "^2.0.2",
|
"karma-webpack": "^2.0.2",
|
||||||
"less": "^2.7.2",
|
"less": "^2.7.2",
|
||||||
"less-loader": "^4.0.5",
|
"less-loader": "^4.0.5",
|
||||||
"less-plugin-npm-import": "^2.1.0",
|
"less-plugin-npm-import": "^2.1.0",
|
||||||
"markdown-it": "^8.4.0",
|
"markdown-it": "^8.4.0",
|
||||||
"marked": "^0.3.7",
|
"marked": "^0.3.7",
|
||||||
"merge2": "^1.2.1",
|
"merge2": "^1.2.1",
|
||||||
"mocha": "^3.2.0",
|
"mocha": "^3.2.0",
|
||||||
"postcss": "^6.0.20",
|
"postcss": "^6.0.20",
|
||||||
"postcss-loader": "^2.1.2",
|
"postcss-loader": "^2.1.2",
|
||||||
"pre-commit": "^1.2.2",
|
"pre-commit": "^1.2.2",
|
||||||
"querystring": "^0.2.0",
|
"querystring": "^0.2.0",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"rucksack-css": "^1.0.2",
|
"rucksack-css": "^1.0.2",
|
||||||
"selenium-server": "^3.0.1",
|
"selenium-server": "^3.0.1",
|
||||||
"semver": "^5.3.0",
|
"semver": "^5.3.0",
|
||||||
"sinon": "^4.0.2",
|
"sinon": "^4.0.2",
|
||||||
"sinon-chai": "^2.8.0",
|
"sinon-chai": "^2.8.0",
|
||||||
"style-loader": "^0.18.2",
|
"style-loader": "^0.18.2",
|
||||||
"stylelint": "^8.1.1",
|
"stylelint": "^8.1.1",
|
||||||
"stylelint-config-standard": "^17.0.0",
|
"stylelint-config-standard": "^17.0.0",
|
||||||
"through2": "^2.0.3",
|
"through2": "^2.0.3",
|
||||||
"vue-antd-md-loader": "^1.0.3",
|
"vue-antd-md-loader": "^1.0.3",
|
||||||
"vue-loader": "^13.0.5",
|
"vue-loader": "^13.0.5",
|
||||||
"vue-router": "^3.0.1",
|
"vue-router": "^3.0.1",
|
||||||
"vue-template-compiler": "^2.5.15",
|
"vue-template-compiler": "^2.5.15",
|
||||||
"webpack": "^3.6.0",
|
"webpack": "^3.6.0",
|
||||||
"webpack-chunk-hash": "^0.5.0",
|
"webpack-chunk-hash": "^0.5.0",
|
||||||
"webpack-dev-server": "^2.8.2",
|
"webpack-dev-server": "^2.8.2",
|
||||||
"webpack-merge": "^4.1.1"
|
"webpack-merge": "^4.1.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"add-dom-event-listener": "^1.0.2",
|
"add-dom-event-listener": "^1.0.2",
|
||||||
"array-tree-filter": "^2.1.0",
|
"array-tree-filter": "^2.1.0",
|
||||||
"classnames": "^2.2.5",
|
"classnames": "^2.2.5",
|
||||||
"component-classes": "^1.2.6",
|
"component-classes": "^1.2.6",
|
||||||
"css-animation": "^1.4.1",
|
"css-animation": "^1.4.1",
|
||||||
"dom-align": "^1.6.7",
|
"dom-align": "^1.6.7",
|
||||||
"dom-scroll-into-view": "^1.2.1",
|
"dom-scroll-into-view": "^1.2.1",
|
||||||
"enquire.js": "^2.1.6",
|
"enquire.js": "^2.1.6",
|
||||||
"eslint-plugin-vue": "^3.13.0",
|
"eslint-plugin-vue": "^3.13.0",
|
||||||
"lodash.clonedeep": "^4.5.0",
|
"lodash": "^4.17.5",
|
||||||
"lodash.debounce": "^4.0.8",
|
"moment": "^2.21.0",
|
||||||
"lodash.isequal": "^4.5.0",
|
"omit.js": "^1.0.0",
|
||||||
"lodash.isplainobject": "^4.0.6",
|
"shallow-equal": "^1.0.0",
|
||||||
"moment": "^2.21.0",
|
"shallowequal": "^1.0.2",
|
||||||
"omit.js": "^1.0.0",
|
"vue": "^2.5.15",
|
||||||
"shallow-equal": "^1.0.0",
|
"vue-clipboard2": "0.0.8",
|
||||||
"shallowequal": "^1.0.2",
|
"vue-types": "^1.0.2",
|
||||||
"vue": "^2.5.15",
|
"warning": "^3.0.0"
|
||||||
"vue-clipboard2": "0.0.8",
|
}
|
||||||
"vue-types": "^1.0.2",
|
|
||||||
"warning": "^3.0.0"
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue