bi-element-ui 0.1.48 → 0.1.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.browserslistrc +3 -3
- package/.eslintrc.js +287 -287
- package/.prettierrc +7 -7
- package/README.md +148 -148
- package/cypress.json +3 -3
- package/lib/bi-element-ui.common.js +21812 -22247
- package/lib/bi-element-ui.css +1 -1
- package/lib/bi-element-ui.umd.js +21812 -22247
- package/lib/bi-element-ui.umd.min.js +150 -150
- package/lib/static/img/swiperBg.png +0 -0
- package/package.json +57 -57
- package/src/App.vue +42 -42
- package/src/components/BiDatePicker/datePickerOption.js +229 -229
- package/src/components/BiDatePicker/index.vue +74 -74
- package/src/components/BiTable/columu.vue +104 -104
- package/src/components/BiTable/forced.js +76 -76
- package/src/components/BiTable/index.js +6 -6
- package/src/components/BiTable/render.vue +13 -13
- package/src/components/BiTable/table.vue +202 -202
- package/src/components/BiTableColumn/Group.vue +277 -277
- package/src/components/BiTableColumn/api.js +16 -16
- package/src/components/BiTableColumn/index.vue +614 -614
- package/src/components/BiTooltipIcon/index.vue +71 -71
- package/src/components/EditBtn.vue +15 -15
- package/src/components/FreeButton/index.vue +69 -69
- package/src/components/Pagination/index.vue +104 -104
- package/src/components/Pagination/scrollTo.js +69 -69
- package/src/main.js +18 -18
- package/src/router/index.js +39 -39
- package/src/store/index.js +11 -11
- package/src/table.js +463 -463
- package/src/views/Date.vue +132 -132
- package/src/views/Home.vue +330 -330
- package/src/views/Scene.vue +140 -140
- package/src/views/Table.vue +220 -220
- package/src/views/showData.vue +455 -455
- package/tests/e2e/.eslintrc.js +10 -10
- package/tests/e2e/plugins/index.js +25 -25
- package/tests/e2e/specs/test.js +8 -8
- package/tests/e2e/support/commands.js +25 -25
- package/tests/e2e/support/index.js +20 -20
- package/tests/unit/example.spec.js +13 -13
- package/dist/css/about.6cfcc147.css +0 -1
- package/dist/css/chunk-vendors.8140bef9.css +0 -1
- package/dist/css/index.59a106c6.css +0 -1
- package/dist/favicon.ico +0 -0
- package/dist/fonts/element-icons.535877f5.woff +0 -0
- package/dist/fonts/element-icons.732389de.ttf +0 -0
- package/dist/index.html +0 -1
- package/dist/js/about.a5370aa0.js +0 -2
- package/dist/js/chunk-vendors.a9a38d93.js +0 -318
- package/dist/js/index.8837e62a.js +0 -2
package/src/main.js
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import ElementUI from 'element-ui'
|
3
|
-
import 'element-ui/lib/theme-chalk/index.css'
|
4
|
-
import App from './App.vue'
|
5
|
-
import router from './router'
|
6
|
-
import store from './store'
|
7
|
-
import BiUi from '../packages'
|
8
|
-
|
9
|
-
Vue.use(ElementUI)
|
10
|
-
Vue.use(BiUi)
|
11
|
-
|
12
|
-
Vue.config.productionTip = false
|
13
|
-
|
14
|
-
new Vue({
|
15
|
-
router,
|
16
|
-
store,
|
17
|
-
render: h => h(App)
|
18
|
-
}).$mount('#app')
|
1
|
+
import Vue from 'vue'
|
2
|
+
import ElementUI from 'element-ui'
|
3
|
+
import 'element-ui/lib/theme-chalk/index.css'
|
4
|
+
import App from './App.vue'
|
5
|
+
import router from './router'
|
6
|
+
import store from './store'
|
7
|
+
import BiUi from '../packages'
|
8
|
+
|
9
|
+
Vue.use(ElementUI)
|
10
|
+
Vue.use(BiUi)
|
11
|
+
|
12
|
+
Vue.config.productionTip = false
|
13
|
+
|
14
|
+
new Vue({
|
15
|
+
router,
|
16
|
+
store,
|
17
|
+
render: h => h(App)
|
18
|
+
}).$mount('#app')
|
package/src/router/index.js
CHANGED
@@ -1,39 +1,39 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import VueRouter from 'vue-router'
|
3
|
-
import Home from '../views/Home.vue'
|
4
|
-
|
5
|
-
Vue.use(VueRouter)
|
6
|
-
|
7
|
-
const routes = [
|
8
|
-
{
|
9
|
-
path: '/',
|
10
|
-
name: 'Home',
|
11
|
-
component: Home
|
12
|
-
},
|
13
|
-
// {
|
14
|
-
// path: '/scene',
|
15
|
-
// name: 'Scene',
|
16
|
-
// component: () => import(/* webpackChunkName: "about" */ '../views/Scene.vue')
|
17
|
-
// },
|
18
|
-
{
|
19
|
-
path: '/date',
|
20
|
-
name: 'Date',
|
21
|
-
component: () => import(/* webpackChunkName: "about" */ '../views/Date.vue')
|
22
|
-
},
|
23
|
-
{
|
24
|
-
path: '/table',
|
25
|
-
name: 'Table',
|
26
|
-
component: () => import(/* webpackChunkName: "about" */ '../views/Table.vue')
|
27
|
-
},
|
28
|
-
{
|
29
|
-
path: '/showData',
|
30
|
-
name: 'showData',
|
31
|
-
component: () => import(/* webpackChunkName: "about" */ '../views/showData.vue')
|
32
|
-
}
|
33
|
-
]
|
34
|
-
|
35
|
-
const router = new VueRouter({
|
36
|
-
routes
|
37
|
-
})
|
38
|
-
|
39
|
-
export default router
|
1
|
+
import Vue from 'vue'
|
2
|
+
import VueRouter from 'vue-router'
|
3
|
+
import Home from '../views/Home.vue'
|
4
|
+
|
5
|
+
Vue.use(VueRouter)
|
6
|
+
|
7
|
+
const routes = [
|
8
|
+
{
|
9
|
+
path: '/',
|
10
|
+
name: 'Home',
|
11
|
+
component: Home
|
12
|
+
},
|
13
|
+
// {
|
14
|
+
// path: '/scene',
|
15
|
+
// name: 'Scene',
|
16
|
+
// component: () => import(/* webpackChunkName: "about" */ '../views/Scene.vue')
|
17
|
+
// },
|
18
|
+
{
|
19
|
+
path: '/date',
|
20
|
+
name: 'Date',
|
21
|
+
component: () => import(/* webpackChunkName: "about" */ '../views/Date.vue')
|
22
|
+
},
|
23
|
+
{
|
24
|
+
path: '/table',
|
25
|
+
name: 'Table',
|
26
|
+
component: () => import(/* webpackChunkName: "about" */ '../views/Table.vue')
|
27
|
+
},
|
28
|
+
{
|
29
|
+
path: '/showData',
|
30
|
+
name: 'showData',
|
31
|
+
component: () => import(/* webpackChunkName: "about" */ '../views/showData.vue')
|
32
|
+
}
|
33
|
+
]
|
34
|
+
|
35
|
+
const router = new VueRouter({
|
36
|
+
routes
|
37
|
+
})
|
38
|
+
|
39
|
+
export default router
|
package/src/store/index.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import Vuex from 'vuex'
|
3
|
-
|
4
|
-
Vue.use(Vuex)
|
5
|
-
|
6
|
-
export default new Vuex.Store({
|
7
|
-
state: {},
|
8
|
-
mutations: {},
|
9
|
-
actions: {},
|
10
|
-
modules: {}
|
11
|
-
})
|
1
|
+
import Vue from 'vue'
|
2
|
+
import Vuex from 'vuex'
|
3
|
+
|
4
|
+
Vue.use(Vuex)
|
5
|
+
|
6
|
+
export default new Vuex.Store({
|
7
|
+
state: {},
|
8
|
+
mutations: {},
|
9
|
+
actions: {},
|
10
|
+
modules: {}
|
11
|
+
})
|