├── static ├── .gitkeep ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── handsontable-pro │ ├── numbro │ │ ├── languages │ │ │ ├── nn.min.js │ │ │ ├── sl.min.js │ │ │ ├── zh-HANS.min.js │ │ │ ├── zh-HANT.min.js │ │ │ ├── bg.min.js │ │ │ ├── el.min.js │ │ │ ├── id.min.js │ │ │ ├── zh-MO.min.js │ │ │ ├── ro.min.js │ │ │ ├── nb.min.js │ │ │ ├── sr-Cyrl-RS.min.js │ │ │ ├── de-AT.min.js │ │ │ ├── it-CH.min.js │ │ │ ├── zh-SG.min.js │ │ │ ├── fa-IR.min.js │ │ │ ├── en-IE.min.js │ │ │ ├── ko-KR.min.js │ │ │ ├── fil-PH.min.js │ │ │ ├── zh-TW.min.js │ │ │ ├── nb-NO.min.js │ │ │ ├── he-IL.min.js │ │ │ ├── sv-SE.min.js │ │ │ ├── ro-RO.min.js │ │ │ ├── ja-JP.min.js │ │ │ ├── fi-FI.min.js │ │ │ ├── it-IT.min.js │ │ │ ├── pt-PT.min.js │ │ │ ├── zh-CN.min.js │ │ │ ├── da-DK.min.js │ │ │ ├── fr-FR.min.js │ │ │ ├── pl-PL.min.js │ │ │ ├── pt-BR.min.js │ │ │ ├── fr-CH.min.js │ │ │ ├── th-TH.min.js │ │ │ ├── lv-LV.min.js │ │ │ ├── fr-CA.min.js │ │ │ ├── hu-HU.min.js │ │ │ ├── nl-BE.min.js │ │ │ ├── nl-NL.min.js │ │ │ ├── de-CH.min.js │ │ │ ├── de-LI.min.js │ │ │ ├── en-AU.min.js │ │ │ ├── en-NZ.min.js │ │ │ ├── en-ZA.min.js │ │ │ ├── es-CL.min.js │ │ │ ├── es-CO.min.js │ │ │ ├── es-ES.min.js │ │ │ ├── es-NI.min.js │ │ │ ├── es-PE.min.js │ │ │ ├── de-DE.min.js │ │ │ ├── es-AR.min.js │ │ │ ├── es-CR.min.js │ │ │ ├── es-PR.min.js │ │ │ ├── es-SV.min.js │ │ │ ├── sk-SK.min.js │ │ │ ├── cs-CZ.min.js │ │ │ ├── en-GB.min.js │ │ │ ├── et-EE.min.js │ │ │ ├── ru-UA.min.js │ │ │ ├── ru-RU.min.js │ │ │ ├── uk-UA.min.js │ │ │ └── tr-TR.min.js │ │ ├── LICENSE │ │ └── LICENSE-Numeraljs │ ├── moment │ │ ├── LICENSE │ │ └── locale │ │ │ ├── km.js │ │ │ ├── ar-tn.js │ │ │ ├── uz.js │ │ │ ├── tzm.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-dz.js │ │ │ ├── da.js │ │ │ ├── uz-latn.js │ │ │ ├── sw.js │ │ │ ├── nn.js │ │ │ └── tzm-latn.js │ ├── hot-formula-parser │ │ └── LICENSE │ └── handsontable.css.map └── org.svg ├── config ├── prod.env.js ├── dev.env.js └── index.js ├── src ├── env │ ├── env.js │ ├── env.prod.js │ └── env.test.js ├── assets │ ├── 404.jpg │ ├── avatar.png │ └── logo.png ├── transition │ ├── index.js │ └── shuidi.js ├── store │ ├── user │ │ ├── mutation-types.js │ │ ├── index.js │ │ └── actions.js │ ├── index.js │ └── app │ │ ├── mutation-types.js │ │ └── actions.js ├── libs │ ├── intro.js │ └── intro │ │ ├── introAction.js │ │ └── introPage.js ├── page │ ├── home │ │ └── index.js │ ├── user │ │ ├── index.vue │ │ └── index.js │ ├── setting │ │ ├── feature-setting │ │ │ └── index.js │ │ └── index.js │ ├── personal.vue │ ├── entry │ │ └── index.js │ ├── demo │ │ ├── index.vue │ │ ├── scroll.vue │ │ └── index.js │ └── 404.vue └── components │ ├── anchor-scroll-menu.vue │ ├── app-header.vue │ ├── animated-integer.vue │ ├── tag-edit.vue │ ├── password-strength.vue │ └── svg-circle.vue ├── .eslintignore ├── .gitignore ├── dist ├── static │ ├── img │ │ ├── 404.b77e004.jpg │ │ └── avatar.69f978c.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── handsontable-pro │ │ ├── numbro │ │ │ ├── languages │ │ │ │ ├── nn.min.js │ │ │ │ ├── sl.min.js │ │ │ │ ├── zh-HANS.min.js │ │ │ │ ├── zh-HANT.min.js │ │ │ │ ├── bg.min.js │ │ │ │ ├── el.min.js │ │ │ │ ├── id.min.js │ │ │ │ ├── zh-MO.min.js │ │ │ │ ├── ro.min.js │ │ │ │ ├── nb.min.js │ │ │ │ ├── sr-Cyrl-RS.min.js │ │ │ │ ├── de-AT.min.js │ │ │ │ ├── it-CH.min.js │ │ │ │ ├── zh-SG.min.js │ │ │ │ ├── fa-IR.min.js │ │ │ │ ├── en-IE.min.js │ │ │ │ ├── ko-KR.min.js │ │ │ │ ├── fil-PH.min.js │ │ │ │ ├── zh-TW.min.js │ │ │ │ ├── nb-NO.min.js │ │ │ │ ├── he-IL.min.js │ │ │ │ ├── sv-SE.min.js │ │ │ │ ├── ro-RO.min.js │ │ │ │ ├── ja-JP.min.js │ │ │ │ ├── fi-FI.min.js │ │ │ │ ├── it-IT.min.js │ │ │ │ ├── pt-PT.min.js │ │ │ │ ├── zh-CN.min.js │ │ │ │ ├── da-DK.min.js │ │ │ │ ├── fr-FR.min.js │ │ │ │ ├── pl-PL.min.js │ │ │ │ ├── pt-BR.min.js │ │ │ │ ├── fr-CH.min.js │ │ │ │ ├── th-TH.min.js │ │ │ │ ├── lv-LV.min.js │ │ │ │ ├── fr-CA.min.js │ │ │ │ ├── hu-HU.min.js │ │ │ │ ├── nl-BE.min.js │ │ │ │ ├── nl-NL.min.js │ │ │ │ ├── de-CH.min.js │ │ │ │ ├── de-LI.min.js │ │ │ │ ├── en-AU.min.js │ │ │ │ ├── en-NZ.min.js │ │ │ │ ├── en-ZA.min.js │ │ │ │ ├── es-CL.min.js │ │ │ │ ├── es-CO.min.js │ │ │ │ ├── es-ES.min.js │ │ │ │ ├── es-NI.min.js │ │ │ │ ├── es-PE.min.js │ │ │ │ ├── de-DE.min.js │ │ │ │ ├── es-AR.min.js │ │ │ │ ├── es-CR.min.js │ │ │ │ ├── es-PR.min.js │ │ │ │ ├── es-SV.min.js │ │ │ │ ├── sk-SK.min.js │ │ │ │ ├── cs-CZ.min.js │ │ │ │ ├── en-GB.min.js │ │ │ │ ├── et-EE.min.js │ │ │ │ ├── ru-UA.min.js │ │ │ │ ├── ru-RU.min.js │ │ │ │ ├── uk-UA.min.js │ │ │ │ └── tr-TR.min.js │ │ │ ├── LICENSE │ │ │ └── LICENSE-Numeraljs │ │ ├── moment │ │ │ ├── LICENSE │ │ │ └── locale │ │ │ │ ├── km.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── uz.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── da.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── sw.js │ │ │ │ └── nn.js │ │ ├── hot-formula-parser │ │ │ └── LICENSE │ │ └── handsontable.css.map │ ├── org.svg │ └── js │ │ ├── 404.39f83e7974c966efd3d3.js │ │ └── manifest.373ab3ea96e6b5f10ad2.js ├── theme │ └── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff └── index.html ├── .editorconfig ├── .babelrc ├── .eslintrc.js ├── README.md └── index.html /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /src/env/env.js: -------------------------------------------------------------------------------- 1 | export default { 2 | API_HOST: 'http://172.16.3.60:8081' 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | src/page/user/org.vue 4 | src/libs/*.js 5 | -------------------------------------------------------------------------------- /src/env/env.prod.js: -------------------------------------------------------------------------------- 1 | export default { 2 | API_HOST: 'http://172.16.3.60:8081' 3 | } 4 | -------------------------------------------------------------------------------- /src/env/env.test.js: -------------------------------------------------------------------------------- 1 | export default { 2 | API_HOST: 'http://139.196.58.18:8081' 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/src/assets/404.jpg -------------------------------------------------------------------------------- /src/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/src/assets/avatar.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/src/assets/logo.png -------------------------------------------------------------------------------- /src/transition/index.js: -------------------------------------------------------------------------------- 1 | // import * as shuidi from './shuidi' 2 | export default { 3 | // ...shuidi 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | /theme/ 5 | /static/font-awesome-4.7.0/ 6 | env.js 7 | -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dist/static/img/404.b77e004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/img/404.b77e004.jpg -------------------------------------------------------------------------------- /dist/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dist/static/img/avatar.69f978c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/img/avatar.69f978c.png -------------------------------------------------------------------------------- /dist/theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /dist/theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjj5855/vue2-admin-demo/master/dist/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/store/user/mutation-types.js: -------------------------------------------------------------------------------- 1 | 2 | export const UPDATE_BASE = 'UPDATE_BASE' // 更新员工列表 3 | 4 | export const FETCH_LIST_DATA = 'FETCH_LIST_DATA' 5 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /src/libs/intro.js: -------------------------------------------------------------------------------- 1 | import * as introPage from './intro/introPage' 2 | import * as introAction from './intro/introAction' 3 | 4 | export default { 5 | ...introPage, 6 | ...introAction 7 | } 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /src/page/home/index.js: -------------------------------------------------------------------------------- 1 | 2 | export default [ 3 | { 4 | path: '/', 5 | name: 'home', 6 | component: resolve => { 7 | require.ensure([], () => { 8 | resolve(require('./index.vue')) 9 | }, 'app') 10 | } 11 | } 12 | ] 13 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "stage-2" 5 | ], 6 | "plugins": ["transform-runtime","transform-vue-jsx"], 7 | "comments": false, 8 | "env": { 9 | "test": { 10 | "plugins": [ "istanbul" ] 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | 4 | import app from './app/index' 5 | import user from './user/index' 6 | 7 | Vue.use(Vuex) 8 | 9 | export default new Vuex.Store({ 10 | modules: { 11 | app, 12 | user 13 | }, 14 | plugins: [] 15 | }) 16 | -------------------------------------------------------------------------------- /src/page/user/index.vue: -------------------------------------------------------------------------------- 1 | 4 | 7 | 22 | -------------------------------------------------------------------------------- /src/page/setting/feature-setting/index.js: -------------------------------------------------------------------------------- 1 | 2 | const basePath = '/feature-setting' 3 | export default [ 4 | { 5 | name: 'custom-fields', 6 | path: basePath + '/custom-fields', 7 | component: resolve => { 8 | require.ensure(['./custom-fields.vue'], () => { 9 | resolve(require('./custom-fields.vue')) 10 | }, 'setting') 11 | } 12 | } 13 | ] 14 | -------------------------------------------------------------------------------- /src/store/app/mutation-types.js: -------------------------------------------------------------------------------- 1 | 2 | export const UPDATE_BREADCRUMB = 'UPDATE_BREADCRUMB' // 更新面包屑 3 | 4 | export const LOGIN_SUCCESS = 'LOGIN_SUCCESS' // 免登录成功 5 | 6 | export const LOGIN_ERROR = 'LOGIN_ERROR' // 免登录失败 7 | 8 | export const THEME_CHANGE = 'THEME_CHANGE' // 主题修改 9 | 10 | export const ADD_MENU = 'ADD_MENU' // 添加菜单列表 11 | 12 | export const DELETE_MENU = 'DELETE_MENU' // 删除菜单 13 | -------------------------------------------------------------------------------- /src/page/personal.vue: -------------------------------------------------------------------------------- 1 | 4 | 7 | 23 | -------------------------------------------------------------------------------- /src/components/anchor-scroll-menu.vue: -------------------------------------------------------------------------------- 1 | 4 | 7 | 23 | -------------------------------------------------------------------------------- /src/store/app/actions.js: -------------------------------------------------------------------------------- 1 | import * as mutations from './mutation-types' 2 | // import demoRouter from '../../page/demo' 3 | // import axios from 'axios' 4 | 5 | export function addMenu ({commit, dispatch, state}, payload) { 6 | // TODO 动态添加路由 7 | // console.log(payload.$router.options.routes[0]) 8 | // payload.$router.addRoutes(demoRouter) 9 | // payload.$router.onReady(() => { 10 | // console.log('$router.onReady') 11 | // }) 12 | commit(mutations.ADD_MENU, payload.index) 13 | } 14 | -------------------------------------------------------------------------------- /src/libs/intro/introAction.js: -------------------------------------------------------------------------------- 1 | import { introStart, getIntroOptions } from './introPage' 2 | 3 | export function importUser () { 4 | return introStart(getIntroOptions({ 5 | steps: [ 6 | { 7 | element: '#import-user-btn', 8 | intro: '点击按钮,导入员工数据', 9 | position: 'auto' 10 | } 11 | ] 12 | })) 13 | } 14 | 15 | export function createOrg () { 16 | return introStart(getIntroOptions({ 17 | steps: [ 18 | { 19 | element: '.tree-node-name', 20 | intro: '鼠标移动到这里,点击加号,开始创建组织架构', 21 | position: 'auto' 22 | } 23 | ] 24 | })) 25 | } 26 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/nn.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Norwegian Nynorsk (nn) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"nn",cultureCode:"nn",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"mil",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.language&&window.numbro.language("nn",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/nn.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Norwegian Nynorsk (nn) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"nn",cultureCode:"nn",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"mil",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.language&&window.numbro.language("nn",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/sl.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Slovene 4 | * locale: Slovenia 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"sl",cultureCode:"sl",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("sl",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/sl.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Slovene 4 | * locale: Slovenia 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"sl",cultureCode:"sl",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("sl",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-HANS.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese simplified (zh-HANS) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"zh-HANS",cultureCode:"zh-HANS",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&this.numbro&&this.numbro.culture&&this.numbro.culture("zh-HANS",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-HANS.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese simplified (zh-HANS) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"zh-HANS",cultureCode:"zh-HANS",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&this.numbro&&this.numbro.culture&&this.numbro.culture("zh-HANS",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-HANT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese traditional (zh-HANT) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"zh-HANT",cultureCode:"zh-HANT",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"$"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-HANT",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-HANT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese traditional (zh-HANT) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | !function(){"use strict";var a={langLocaleCode:"zh-HANT",cultureCode:"zh-HANT",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"$"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-HANT",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/bg.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Bulgarian 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"bg",cultureCode:"bg",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"И",million:"А",billion:"M",trillion:"T"},ordinal:function(){return"."},currency:{symbol:"лв."}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&this.numbro.culture("bg",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/el.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Greek (el) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"el",cultureCode:"el",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"χ",million:"ε",billion:"δ",trillion:"τ"},ordinal:function(){return"."},currency:{symbol:"€"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("el",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/id.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Indonesian 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"id",cultureCode:"id",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"r",million:"j",billion:"m",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"Rp"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("id",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/bg.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Bulgarian 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"bg",cultureCode:"bg",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"И",million:"А",billion:"M",trillion:"T"},ordinal:function(){return"."},currency:{symbol:"лв."}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&this.numbro.culture("bg",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/el.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Greek (el) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"el",cultureCode:"el",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"χ",million:"ε",billion:"δ",trillion:"τ"},ordinal:function(){return"."},currency:{symbol:"€"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("el",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/id.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Indonesian 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"id",cultureCode:"id",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"r",million:"j",billion:"m",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"Rp"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("id",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-MO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese traditional 4 | * locale: Macau 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"zh-MO",cultureCode:"zh-MO",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"MOP"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-MO",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-MO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese traditional 4 | * locale: Macau 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"zh-MO",cultureCode:"zh-MO",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"MOP"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-MO",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ro.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Romanian (ro) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"ro",cultureCode:"ro",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mie",million:"mln",billion:"mld",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"RON"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("ro",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ro.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Romanian (ro) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"ro",cultureCode:"ro",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mie",million:"mln",billion:"mld",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"RON"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("ro",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/nb.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Norwegian Bokmål (nb) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"nb",cultureCode:"nb",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"mil",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("nb",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: 'babel-eslint', 4 | parserOptions: { 5 | sourceType: 'module' 6 | }, 7 | // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style 8 | extends: 'standard', 9 | // required to lint *.vue files 10 | plugins: [ 11 | 'html' 12 | ], 13 | // add your custom rules here 14 | 'rules': { 15 | // allow paren-less arrow functions 16 | 'arrow-parens': 0, 17 | // allow async-await 18 | 'generator-star-spacing': 0, 19 | // allow debugger during development 20 | 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/nb.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Norwegian Bokmål (nb) 4 | * author : Tim McIntosh (StayinFront NZ) 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"nb",cultureCode:"nb",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"mil",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr"}}; 7 | // Node 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("nb",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/sr-Cyrl-RS.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Serbian (sr) 4 | * country : Serbia (Cyrillic) 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"sr-Cyrl-RS",cultureCode:"sr-Cyrl-RS",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"RSD"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("sr-Cyrl-RS",a)}(); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/sr-Cyrl-RS.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Serbian (sr) 4 | * country : Serbia (Cyrillic) 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | !function(){"use strict";var a={langLocaleCode:"sr-Cyrl-RS",cultureCode:"sr-Cyrl-RS",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"RSD"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("sr-Cyrl-RS",a)}(); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/de-AT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Austria 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-AT",cultureCode:"de-AT",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/de-AT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Austria 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-AT",cultureCode:"de-AT",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/it-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Italian 4 | * locale: Switzerland 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"it-CH",cultureCode:"it-CH",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"mila",million:"mil",billion:"b",trillion:"t"},ordinal:function(){return"°"},currency:{symbol:"CHF"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("it-CH",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/it-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Italian 4 | * locale: Switzerland 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"it-CH",cultureCode:"it-CH",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"mila",million:"mil",billion:"b",trillion:"t"},ordinal:function(){return"°"},currency:{symbol:"CHF"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("it-CH",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-SG.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese simplified 4 | * locale: Singapore 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-SG",cultureCode:"zh-SG",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"$"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-SG",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-SG.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese simplified 4 | * locale: Singapore 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-SG",cultureCode:"zh-SG",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"$"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("zh-SG",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fa-IR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Farsi 4 | * locale: Iran 5 | * author : neo13 : https://github.com/neo13 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fa-IR",cultureCode:"fa-IR",delimiters:{thousands:"،",decimal:"."},abbreviations:{thousand:"هزار",million:"میلیون",billion:"میلیارد",trillion:"تریلیون"},ordinal:function(){return"ام"},currency:{symbol:"﷼"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fa-IR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Farsi 4 | * locale: Iran 5 | * author : neo13 : https://github.com/neo13 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fa-IR",cultureCode:"fa-IR",delimiters:{thousands:"،",decimal:"."},abbreviations:{thousand:"هزار",million:"میلیون",billion:"میلیارد",trillion:"تریلیون"},ordinal:function(){return"ام"},currency:{symbol:"﷼"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/page/entry/index.js: -------------------------------------------------------------------------------- 1 | 2 | export default [ 3 | { 4 | path: '/', 5 | name: 'login', 6 | component: resolve => { 7 | require.ensure([], () => { 8 | resolve(require('./login.vue')) 9 | }, 'entry') 10 | } 11 | }, 12 | { 13 | path: 'signin', 14 | name: 'signin', 15 | component: resolve => { 16 | require.ensure([], () => { 17 | resolve(require('./signin.vue')) 18 | }, 'entry') 19 | } 20 | }, 21 | { 22 | path: 'forget-password', 23 | name: 'forget-password', 24 | component: resolve => { 25 | require.ensure([], () => { 26 | resolve(require('./forget-password.vue')) 27 | }, 'entry') 28 | } 29 | } 30 | ] 31 | -------------------------------------------------------------------------------- /static/org.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dist/static/org.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/en-IE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | + * numbro.js language configuration 3 | * language : English 4 | * locale: Ireland 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-IE",cultureCode:"en-IE",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("en-gb",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/en-IE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | + * numbro.js language configuration 3 | * language : English 4 | * locale: Ireland 5 | * author : Tim McIntosh (StayinFront NZ) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-IE",cultureCode:"en-IE",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"€"}}; 8 | // Node 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture("en-gb",a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/store/user/index.js: -------------------------------------------------------------------------------- 1 | import { 2 | UPDATE_BASE 3 | } from './mutation-types' 4 | import * as actions from './actions' 5 | 6 | const state = { 7 | base: { 8 | paramsData: { 9 | draw: 0, 10 | currentPage: 1, 11 | pageSize: 10, 12 | department: '', 13 | status0: 0, 14 | status1: 1, 15 | status2: 2, 16 | status3: '', 17 | 'search[value]': '' 18 | }, 19 | respData: { 20 | list: [], 21 | total: 0 22 | }, 23 | loading: false 24 | } 25 | } 26 | 27 | const mutations = { 28 | [UPDATE_BASE] (state, data) { 29 | state.base = { 30 | ...state.base, 31 | ...data 32 | } 33 | } 34 | } 35 | 36 | export default { 37 | state, 38 | mutations, 39 | actions 40 | } 41 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ko-KR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Korean 4 | * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway 5 | * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ko-KR",cultureCode:"ko-KR",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"천",million:"백만",billion:"십억",trillion:"일조"},ordinal:function(){return"."},currency:{symbol:"₩"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ko-KR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Korean 4 | * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway 5 | * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ko-KR",cultureCode:"ko-KR",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"천",million:"백만",billion:"십억",trillion:"일조"},ordinal:function(){return"."},currency:{symbol:"₩"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fil-PH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Filipino (Pilipino) 4 | * locale: Philippines 5 | * author : Michael Abadilla : https://github.com/mjmaix 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fil-PH",cultureCode:"fil-PH",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"₱"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fil-PH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Filipino (Pilipino) 4 | * locale: Philippines 5 | * author : Michael Abadilla : https://github.com/mjmaix 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fil-PH",cultureCode:"fil-PH",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"₱"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-TW.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese (Taiwan) 4 | * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway 5 | * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-TW",cultureCode:"zh-TW",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"第"},currency:{symbol:"NT$"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-TW.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Chinese (Taiwan) 4 | * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway 5 | * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-TW",cultureCode:"zh-TW",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百萬",billion:"十億",trillion:"兆"},ordinal:function(){return"第"},currency:{symbol:"NT$"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/page/setting/index.js: -------------------------------------------------------------------------------- 1 | import featureSettingRouter from './feature-setting/index' 2 | 3 | export default [ 4 | ...featureSettingRouter, 5 | { 6 | path: '/setting', 7 | component: resolve => { 8 | require.ensure(['./index.vue'], () => { 9 | resolve(require('./index.vue')) 10 | }, 'setting') 11 | } 12 | }, 13 | { 14 | path: '/feature-setting', 15 | component: resolve => { 16 | require.ensure(['./feature-setting.vue'], () => { 17 | resolve(require('./feature-setting.vue')) 18 | }, 'setting') 19 | } 20 | }, 21 | { 22 | path: '/setting/pre', 23 | component: resolve => { 24 | require.ensure(['./pre-setting.vue'], () => { 25 | resolve(require('./pre-setting.vue')) 26 | }, 'setting') 27 | } 28 | } 29 | ] 30 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/nb-NO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language: Norwegian Bokmål 4 | * locale: Norway 5 | * author : Benjamin Van Ryseghem 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nb-NO",cultureCode:"nb-NO",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"M",billion:"md",trillion:"t"},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/nb-NO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language: Norwegian Bokmål 4 | * locale: Norway 5 | * author : Benjamin Van Ryseghem 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nb-NO",cultureCode:"nb-NO",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"M",billion:"md",trillion:"t"},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/he-IL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Hebrew 4 | * locale : IL 5 | * author : Eli Zehavi : https://github.com/eli-zehavi 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"he-IL",cultureCode:"he-IL",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"אלף",million:"מליון",billion:"בליון",trillion:"טריליון"},currency:{symbol:"₪",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"₪ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"₪ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/sv-SE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Swedish 4 | * locale : Sweden 5 | * author : Benjamin Van Ryseghem (benjamin.vanryseghem.com) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"sv-SE",cultureCode:"sv-SE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"M",billion:"md",trillion:"tmd"},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/he-IL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Hebrew 4 | * locale : IL 5 | * author : Eli Zehavi : https://github.com/eli-zehavi 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"he-IL",cultureCode:"he-IL",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"אלף",million:"מליון",billion:"בליון",trillion:"טריליון"},currency:{symbol:"₪",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"₪ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"₪ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/sv-SE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Swedish 4 | * locale : Sweden 5 | * author : Benjamin Van Ryseghem (benjamin.vanryseghem.com) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"sv-SE",cultureCode:"sv-SE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"t",million:"M",billion:"md",trillion:"tmd"},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ro-RO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numeral.js language configuration 3 | * language : Romanian 4 | * author : Andrei Alecu https://github.com/andreialecu 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"ro-RO",cultureCode:"ro-RO",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mii",million:"mil",billion:"mld",trillion:"bln"},ordinal:function(){return"."},currency:{symbol:" lei",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 7 | // CommonJS 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ro-RO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numeral.js language configuration 3 | * language : Romanian 4 | * author : Andrei Alecu https://github.com/andreialecu 5 | */ 6 | (function(){"use strict";var a={langLocaleCode:"ro-RO",cultureCode:"ro-RO",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mii",million:"mil",billion:"mld",trillion:"bln"},ordinal:function(){return"."},currency:{symbol:" lei",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 7 | // CommonJS 8 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 9 | // Browser 10 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ja-JP.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Japanese 4 | * locale: Japan 5 | * author : teppeis : https://github.com/teppeis 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ja-JP",cultureCode:"ja-JP",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ja-JP.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Japanese 4 | * locale: Japan 5 | * author : teppeis : https://github.com/teppeis 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ja-JP",cultureCode:"ja-JP",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十億",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fi-FI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Finnish 4 | * locale: Finland 5 | * author : Sami Saada : https://github.com/samitheberber 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fi-FI",cultureCode:"fi-FI",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"M",billion:"G",trillion:"T"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/it-IT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Italian 4 | * locale: Italy 5 | * author : Giacomo Trombi : http://cinquepunti.it 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"it-IT",cultureCode:"it-IT",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mila",million:"mil",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fi-FI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Finnish 4 | * locale: Finland 5 | * author : Sami Saada : https://github.com/samitheberber 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fi-FI",cultureCode:"fi-FI",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"M",billion:"G",trillion:"T"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/it-IT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Italian 4 | * locale: Italy 5 | * author : Giacomo Trombi : http://cinquepunti.it 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"it-IT",cultureCode:"it-IT",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mila",million:"mil",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/pt-PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Portuguese 4 | * locale : Portugal 5 | * author : Diogo Resende : https://github.com/dresende 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pt-PT",cultureCode:"pt-PT",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/zh-CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : simplified chinese 4 | * locale : China 5 | * author : badplum : https://github.com/badplum 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-CN",cultureCode:"zh-CN",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/pt-PT.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Portuguese 4 | * locale : Portugal 5 | * author : Diogo Resende : https://github.com/dresende 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pt-PT",cultureCode:"pt-PT",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/zh-CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : simplified chinese 4 | * locale : China 5 | * author : badplum : https://github.com/badplum 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"zh-CN",cultureCode:"zh-CN",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"千",million:"百万",billion:"十亿",trillion:"兆"},ordinal:function(){return"."},currency:{symbol:"¥",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/da-DK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Danish 4 | * locale: Denmark 5 | * author : Michael Storgaard : https://github.com/mstorgaard 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"da-DK",cultureCode:"da-DK",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mio",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/da-DK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Danish 4 | * locale: Denmark 5 | * author : Michael Storgaard : https://github.com/mstorgaard 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"da-DK",cultureCode:"da-DK",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mio",billion:"mia",trillion:"b"},ordinal:function(){return"."},currency:{symbol:"kr",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fr-FR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: France 5 | * author : Adam Draper : https://github.com/adamwdraper 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-FR",cultureCode:"fr-FR",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/pl-PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Polish 4 | * locale : Poland 5 | * author : Dominik Bulaj : https://github.com/dominikbulaj 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pl-PL",cultureCode:"pl-PL",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tys.",million:"mln",billion:"mld",trillion:"bln"},ordinal:function(){return"."},currency:{symbol:" zł",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/pt-BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Portuguese 4 | * locale : Brazil 5 | * author : Ramiro Varandas Jr : https://github.com/ramirovjr 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pt-BR",cultureCode:"pt-BR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mil",million:"milhões",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"R$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fr-FR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: France 5 | * author : Adam Draper : https://github.com/adamwdraper 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-FR",cultureCode:"fr-FR",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/pl-PL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Polish 4 | * locale : Poland 5 | * author : Dominik Bulaj : https://github.com/dominikbulaj 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pl-PL",cultureCode:"pl-PL",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tys.",million:"mln",billion:"mld",trillion:"bln"},ordinal:function(){return"."},currency:{symbol:" zł",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/pt-BR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Portuguese 4 | * locale : Brazil 5 | * author : Ramiro Varandas Jr : https://github.com/ramirovjr 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"pt-BR",cultureCode:"pt-BR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"mil",million:"milhões",billion:"b",trillion:"t"},ordinal:function(){return"º"},currency:{symbol:"R$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fr-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: Switzerland 5 | * author : Adam Draper : https://github.com/adamwdraper 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-CH",cultureCode:"fr-CH",delimiters:{thousands:" ",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/th-TH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Thai 4 | * locale : Thailand 5 | * author : Sathit Jittanupat : https://github.com/jojosati 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"th-TH",cultureCode:"th-TH",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"พัน",million:"ล้าน",billion:"พันล้าน",trillion:"ล้านล้าน"},ordinal:function(){return"."},currency:{symbol:"฿",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fr-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: Switzerland 5 | * author : Adam Draper : https://github.com/adamwdraper 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-CH",cultureCode:"fr-CH",delimiters:{thousands:" ",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/th-TH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Thai 4 | * locale : Thailand 5 | * author : Sathit Jittanupat : https://github.com/jojosati 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"th-TH",cultureCode:"th-TH",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"พัน",million:"ล้าน",billion:"พันล้าน",trillion:"ล้านล้าน"},ordinal:function(){return"."},currency:{symbol:"฿",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/components/app-header.vue: -------------------------------------------------------------------------------- 1 | 10 | 23 | 38 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/lv-LV.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Latvian 4 | * locale: Latvia 5 | * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"lv-LV",cultureCode:"lv-LV",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:" tūkst.",million:" milj.",billion:" mljrd.",trillion:" trilj."},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/lv-LV.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Latvian 4 | * locale: Latvia 5 | * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"lv-LV",cultureCode:"lv-LV",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:" tūkst.",million:" milj.",billion:" mljrd.",trillion:" trilj."},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/fr-CA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: Canada 5 | * author : Léo Renaud-Allaire : https://github.com/renaudleo 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-CA",cultureCode:"fr-CA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"M",billion:"G",trillion:"T"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"$",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/fr-CA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : French 4 | * locale: Canada 5 | * author : Léo Renaud-Allaire : https://github.com/renaudleo 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"fr-CA",cultureCode:"fr-CA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"M",billion:"G",trillion:"T"},ordinal:function(a){return 1===a?"er":"ème"},currency:{symbol:"$",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/hu-HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Hungarian 4 | * locale: Hungary 5 | * author : Peter Bakondy : https://github.com/pbakondy 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"hu-HU",cultureCode:"hu-HU",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"E",// ezer 8 | million:"M",// millió 9 | billion:"Mrd",// milliárd 10 | trillion:"T"},ordinal:function(){return"."},currency:{symbol:" Ft",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/nl-BE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Dutch 4 | * locale: Belgium 5 | * author : Dieter Luypaert : https://github.com/moeriki 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nl-BE",cultureCode:"nl-BE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"mln",billion:"mld",trillion:"bln"},ordinal:function(a){var b=a%100;return 0!==a&&1>=b||8===b||b>=20?"ste":"de"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/nl-NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Dutch 4 | * locale: Netherlands 5 | * author : Dave Clayton : https://github.com/davedx 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nl-NL",cultureCode:"nl-NL",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mln",billion:"mrd",trillion:"bln"},ordinal:function(a){var b=a%100;return 0!==a&&1>=b||8===b||b>=20?"ste":"de"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/hu-HU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Hungarian 4 | * locale: Hungary 5 | * author : Peter Bakondy : https://github.com/pbakondy 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"hu-HU",cultureCode:"hu-HU",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"E",// ezer 8 | million:"M",// millió 9 | billion:"Mrd",// milliárd 10 | trillion:"T"},ordinal:function(){return"."},currency:{symbol:" Ft",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/nl-BE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Dutch 4 | * locale: Belgium 5 | * author : Dieter Luypaert : https://github.com/moeriki 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nl-BE",cultureCode:"nl-BE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"mln",billion:"mld",trillion:"bln"},ordinal:function(a){var b=a%100;return 0!==a&&1>=b||8===b||b>=20?"ste":"de"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/nl-NL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Dutch 4 | * locale: Netherlands 5 | * author : Dave Clayton : https://github.com/davedx 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"nl-NL",cultureCode:"nl-NL",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mln",billion:"mrd",trillion:"bln"},ordinal:function(a){var b=a%100;return 0!==a&&1>=b||8===b||b>=20?"ste":"de"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/de-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Switzerland 5 | * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-CH",cultureCode:"de-CH",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/de-LI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Liechtenstein 5 | * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-LI",cultureCode:"de-LI",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/de-CH.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Switzerland 5 | * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-CH",cultureCode:"de-CH",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/de-LI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Liechtenstein 5 | * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"de-LI",cultureCode:"de-LI",delimiters:{thousands:"'",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"CHF",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/en-AU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: Australia 5 | * author : Benedikt Huss : https://github.com/ben305 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-AU",cultureCode:"en-AU",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/en-NZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: New Zealand 5 | * author : Benedikt Huss : https://github.com/ben305 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-NZ",cultureCode:"en-NZ",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/en-ZA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: South Africa 5 | * author : Stewart Scott https://github.com/stewart42 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-ZA",cultureCode:"en-ZA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"R",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/en-AU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: Australia 5 | * author : Benedikt Huss : https://github.com/ben305 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-AU",cultureCode:"en-AU",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/en-NZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: New Zealand 5 | * author : Benedikt Huss : https://github.com/ben305 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-NZ",cultureCode:"en-NZ",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/en-ZA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: South Africa 5 | * author : Stewart Scott https://github.com/stewart42 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-ZA",cultureCode:"en-ZA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"R",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/page/user/index.js: -------------------------------------------------------------------------------- 1 | 2 | export default [ 3 | { 4 | path: '/user', 5 | component: resolve => { 6 | require.ensure(['./index.vue'], () => { 7 | resolve(require('./index.vue')) 8 | }, 'user') 9 | } 10 | }, 11 | { 12 | name: 'userList', 13 | path: '/user/list', 14 | component: resolve => { 15 | require.ensure(['./list.vue'], () => { 16 | resolve(require('./list.vue')) 17 | }, 'user') 18 | } 19 | }, 20 | { 21 | name: 'userOrg', 22 | path: '/user/org', 23 | component: resolve => { 24 | require.ensure(['./org.vue'], () => { 25 | resolve(require('./org.vue')) 26 | }, 'user') 27 | } 28 | }, 29 | { 30 | name: 'userDetail', 31 | path: '/user/:id', 32 | component: resolve => { 33 | require.ensure(['./detail.vue'], () => { 34 | resolve(require('./detail.vue')) 35 | }, 'user') 36 | } 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Chile 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CL",cultureCode:"es-CL",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:"$0,0"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-CL.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Chile 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CL",cultureCode:"es-CL",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:"$0,0"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-CO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Colombia 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CO",cultureCode:"es-CO",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-ES.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Spain 5 | * author : Hernan Garcia : https://github.com/hgarcia 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-ES",cultureCode:"es-ES",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-NI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Nicaragua 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-NI",cultureCode:"es-NI",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"C$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-PE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Peru 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-PE",cultureCode:"es-PE",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"S/.",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-CO.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Colombia 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CO",cultureCode:"es-CO",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-ES.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Spain 5 | * author : Hernan Garcia : https://github.com/hgarcia 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-ES",cultureCode:"es-ES",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-NI.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Nicaragua 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-NI",cultureCode:"es-NI",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"C$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-PE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Peru 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-PE",cultureCode:"es-PE",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"S/.",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/de-DE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Germany 5 | * author : Marco Krage : https://github.com/sinky 6 | * 7 | * Generally useful in Germany, Austria, Luxembourg, Belgium 8 | */ 9 | (function(){"use strict";var a={langLocaleCode:"de-DE",cultureCode:"de-DE",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 10 | // CommonJS 11 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 12 | // Browser 13 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-AR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Argentina 5 | * author : Hernan Garcia : https://github.com/hgarcia 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-AR",cultureCode:"es-AR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-CR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Costa Rica 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CR",cultureCode:"es-CR",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"₡",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-PR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Puerto Rico 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-PR",cultureCode:"es-PR",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/es-SV.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: El Salvador 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-SV",cultureCode:"es-SV",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/de-DE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : German 4 | * locale: Germany 5 | * author : Marco Krage : https://github.com/sinky 6 | * 7 | * Generally useful in Germany, Austria, Luxembourg, Belgium 8 | */ 9 | (function(){"use strict";var a={langLocaleCode:"de-DE",cultureCode:"de-DE",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 10 | // CommonJS 11 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 12 | // Browser 13 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-AR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Argentina 5 | * author : Hernan Garcia : https://github.com/hgarcia 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-AR",cultureCode:"es-AR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-CR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Costa Rica 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-CR",cultureCode:"es-CR",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"₡",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-PR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: Puerto Rico 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-PR",cultureCode:"es-PR",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/es-SV.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Spanish 4 | * locale: El Salvador 5 | * author : Gwyn Judd : https://github.com/gwynjudd 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"es-SV",cultureCode:"es-SV",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"mm",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===b||3===b?"er":2===b?"do":7===b||0===b?"mo":8===b?"vo":9===b?"no":"to"},currency:{symbol:"$",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/sk-SK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Slovak 4 | * locale : Slovakia 5 | * author : Jan Pesa : https://github.com/smajl (based on work from Ahmed Al Hafoudh : http://www.freevision.sk) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"sk-SK",cultureCode:"sk-SK",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"mld.",trillion:"bil."},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/sk-SK.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Slovak 4 | * locale : Slovakia 5 | * author : Jan Pesa : https://github.com/smajl (based on work from Ahmed Al Hafoudh : http://www.freevision.sk) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"sk-SK",cultureCode:"sk-SK",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"mld.",trillion:"bil."},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/page/demo/index.vue: -------------------------------------------------------------------------------- 1 | 13 | 16 | 35 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/cs-CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Czech 4 | * locale: Czech Republic 5 | * author : Jan Pesa : https://github.com/smajl (based on work from Anatoli Papirovski : https://github.com/apapirovski) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"cs-CZ",cultureCode:"cs-CZ",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"mld.",trillion:"bil."},ordinal:function(){return"."},currency:{symbol:"Kč",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/cs-CZ.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Czech 4 | * locale: Czech Republic 5 | * author : Jan Pesa : https://github.com/smajl (based on work from Anatoli Papirovski : https://github.com/apapirovski) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"cs-CZ",cultureCode:"cs-CZ",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"tis.",million:"mil.",billion:"mld.",trillion:"bil."},ordinal:function(){return"."},currency:{symbol:"Kč",position:"postfix",spaceSeparated:!0},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/js/404.39f83e7974c966efd3d3.js: -------------------------------------------------------------------------------- 1 | webpackJsonp([5],{455:function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={components:{},data:function(){return{}},computed:{},created:function(){},mounted:function(){},methods:{}}},498:function(t,e){},603:function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"page-404"},[s("div",{staticClass:"image"},[s("div",{staticClass:"text-title"},[t._v("班步系统维护升级中,稍后回来......")]),t._v(" "),s("div",{staticClass:"white-space"}),t._v(" "),s("div",{staticClass:"text-small"},[t._v("升级期间班步门户暂停服务,升级时间:2017.01.06 19:00-24:00")]),t._v(" "),s("div",{staticClass:"text-small"},[t._v("感谢您的配合,期待为您提供更优质的服务")]),t._v(" "),s("div",{staticClass:"text-small"},[t._v("知道了 "),s("a",[t._v("前往官网 >>")])])])])}]}},63:function(t,e,s){s(498);var a=s(7)(s(455),s(603),null,null);t.exports=a.exports}}); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/en-GB.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: United Kingdom of Great Britain and Northern Ireland 5 | * author : Dan Ristic : https://github.com/dristic 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-GB",cultureCode:"en-GB",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"£",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/en-GB.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : English 4 | * locale: United Kingdom of Great Britain and Northern Ireland 5 | * author : Dan Ristic : https://github.com/dristic 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"en-GB",cultureCode:"en-GB",delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(a){var b=a%10;return 1===~~(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th"},currency:{symbol:"£",position:"prefix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:"$ ,0.00",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:"$ ,0"}}; 8 | // CommonJS 9 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 10 | // Browser 11 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/et-EE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Estonian 4 | * locale: Estonia 5 | * author : Illimar Tambek : https://github.com/ragulka 6 | * 7 | * Note: in Estonian, abbreviations are always separated 8 | * from numbers with a space 9 | */ 10 | (function(){"use strict";var a={langLocaleCode:"et-EE",cultureCode:"et-EE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:" tuh",million:" mln",billion:" mld",trillion:" trl"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/et-EE.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Estonian 4 | * locale: Estonia 5 | * author : Illimar Tambek : https://github.com/ragulka 6 | * 7 | * Note: in Estonian, abbreviations are always separated 8 | * from numbers with a space 9 | */ 10 | (function(){"use strict";var a={langLocaleCode:"et-EE",cultureCode:"et-EE",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:" tuh",million:" mln",billion:" mld",trillion:" trl"},ordinal:function(){return"."},currency:{symbol:"€",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ru-UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Russian 4 | * locale : Ukraine 5 | * author : Anatoli Papirovski : https://github.com/apapirovski 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ru-UA",cultureCode:"ru-UA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){ 8 | // not ideal, but since in Russian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return"."},currency:{symbol:"₴",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ru-UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Russian 4 | * locale : Ukraine 5 | * author : Anatoli Papirovski : https://github.com/apapirovski 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ru-UA",cultureCode:"ru-UA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){ 8 | // not ideal, but since in Russian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return"."},currency:{symbol:"₴",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/ru-RU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Russian 4 | * locale : Russsia 5 | * author : Anatoli Papirovski : https://github.com/apapirovski 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ru-RU",cultureCode:"ru-RU",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){ 8 | // not ideal, but since in Russian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return"."},currency:{symbol:"руб.",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/ru-RU.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Russian 4 | * locale : Russsia 5 | * author : Anatoli Papirovski : https://github.com/apapirovski 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"ru-RU",cultureCode:"ru-RU",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тыс.",million:"млн",billion:"b",trillion:"t"},ordinal:function(){ 8 | // not ideal, but since in Russian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return"."},currency:{symbol:"руб.",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/uk-UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Ukrainian 4 | * locale : Ukraine 5 | * author : Michael Piefel : https://github.com/piefel (with help from Tetyana Kuzmenko) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"uk-UA",cultureCode:"uk-UA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тис.",million:"млн",billion:"млрд",trillion:"блн"},ordinal:function(){ 8 | // not ideal, but since in Ukrainian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return""},currency:{symbol:"₴",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/uk-UA.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Ukrainian 4 | * locale : Ukraine 5 | * author : Michael Piefel : https://github.com/piefel (with help from Tetyana Kuzmenko) 6 | */ 7 | (function(){"use strict";var a={langLocaleCode:"uk-UA",cultureCode:"uk-UA",delimiters:{thousands:" ",decimal:","},abbreviations:{thousand:"тис.",million:"млн",billion:"млрд",trillion:"блн"},ordinal:function(){ 8 | // not ideal, but since in Ukrainian it can taken on 9 | // different forms (masculine, feminine, neuter) 10 | // this is all we can do 11 | return""},currency:{symbol:"₴",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 12 | // CommonJS 13 | "undefined"!=typeof module&&module.exports&&(module.exports=a), 14 | // Browser 15 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(a.cultureCode,a)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /src/page/demo/scroll.vue: -------------------------------------------------------------------------------- 1 | 8 | 11 | 45 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Företagsplatsen 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/LICENSE-Numeraljs: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Adam Draper 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Företagsplatsen 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/LICENSE-Numeraljs: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Adam Draper 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /static/handsontable-pro/moment/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) JS Foundation and other contributors 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) JS Foundation and other contributors 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /src/store/user/actions.js: -------------------------------------------------------------------------------- 1 | import * as mutations from './mutation-types' 2 | import axios from 'axios' 3 | import { parseParams } from '../../libs/axiosConfig' 4 | 5 | export function FETCH_LIST_DATA ({commit, dispatch, state}, params = {}) { 6 | let base = state.base 7 | commit(mutations.UPDATE_BASE, { loading: true }) 8 | return new Promise((resolve, reject) => { 9 | axios.get('/v1/employee/employees/', { 10 | params: { 11 | ...parseParams(params), 12 | start: (params.currentPage - 1) * params.pageSize, 13 | length: params.pageSize, 14 | '-': new Date().getTime(), 15 | draw: params.draw + 1 16 | } 17 | }).then((data) => { 18 | commit(mutations.UPDATE_BASE, { 19 | paramsData: { 20 | ...params, 21 | draw: params.draw + 1 22 | }, 23 | respData: { 24 | ...state.base.respData, 25 | list: data, 26 | total: 4353 27 | } 28 | }) 29 | resolve(data) 30 | }).catch((err) => { 31 | commit(mutations.UPDATE_BASE, base) 32 | reject(err) 33 | }).finally(() => { 34 | commit(mutations.UPDATE_BASE, { loading: false }) 35 | }) 36 | }) 37 | } 38 | -------------------------------------------------------------------------------- /static/handsontable-pro/hot-formula-parser/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Handsoncode sp. z o.o. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/hot-formula-parser/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Handsoncode sp. z o.o. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/components/animated-integer.vue: -------------------------------------------------------------------------------- 1 | 4 | 7 | -------------------------------------------------------------------------------- /static/handsontable-pro/numbro/languages/tr-TR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Turkish 4 | * locale : Turkey 5 | * author : Ecmel Ercan : https://github.com/ecmel, 6 | * Erhan Gundogan : https://github.com/erhangundogan, 7 | * Burak Yiğit Kaya: https://github.com/BYK 8 | */ 9 | (function(){"use strict";var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},b={langLocaleCode:"tr-TR",cultureCode:"tr-TR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"bin",million:"milyon",billion:"milyar",trillion:"trilyon"},ordinal:function(b){if(0===b)// special case for zero 10 | return"'ıncı";var c=b%10,d=b%100-c,e=b>=100?100:null;return a[c]||a[d]||a[e]},currency:{symbol:"₺",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=b), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(b.cultureCode,b)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /dist/static/handsontable-pro/numbro/languages/tr-TR.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * numbro.js language configuration 3 | * language : Turkish 4 | * locale : Turkey 5 | * author : Ecmel Ercan : https://github.com/ecmel, 6 | * Erhan Gundogan : https://github.com/erhangundogan, 7 | * Burak Yiğit Kaya: https://github.com/BYK 8 | */ 9 | (function(){"use strict";var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},b={langLocaleCode:"tr-TR",cultureCode:"tr-TR",delimiters:{thousands:".",decimal:","},abbreviations:{thousand:"bin",million:"milyon",billion:"milyar",trillion:"trilyon"},ordinal:function(b){if(0===b)// special case for zero 10 | return"'ıncı";var c=b%10,d=b%100-c,e=b>=100?100:null;return a[c]||a[d]||a[e]},currency:{symbol:"₺",position:"postfix"},defaults:{currencyFormat:",4 a"},formats:{fourDigits:"4 a",fullWithTwoDecimals:",0.00 $",fullWithTwoDecimalsNoCurrency:",0.00",fullWithNoDecimals:",0 $"}}; 11 | // CommonJS 12 | "undefined"!=typeof module&&module.exports&&(module.exports=b), 13 | // Browser 14 | "undefined"!=typeof window&&window.numbro&&window.numbro.culture&&window.numbro.culture(b.cultureCode,b)}).call("undefined"==typeof window?this:window); -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | // see http://vuejs-templates.github.io/webpack for documentation. 2 | var path = require('path') 3 | 4 | module.exports = { 5 | build: { 6 | env: require('./prod.env'), 7 | index: path.resolve(__dirname, '../dist/index.html'), 8 | assetsRoot: path.resolve(__dirname, '../dist'), 9 | assetsSubDirectory: 'static', 10 | assetsPublicPath: './', 11 | themeSubDirectory: 'theme', 12 | productionSourceMap: true, 13 | // Gzip off by default as many popular static hosts such as 14 | // Surge or Netlify already gzip all static assets for you. 15 | // Before setting to `true`, make sure to: 16 | // npm install --save-dev compression-webpack-plugin 17 | productionGzip: false, 18 | productionGzipExtensions: ['js', 'css'] 19 | }, 20 | dev: { 21 | env: require('./dev.env'), 22 | port: 8089, 23 | assetsSubDirectory: 'static', 24 | assetsPublicPath: '/', 25 | themeSubDirectory: 'theme', 26 | proxyTable: {}, 27 | // CSS Sourcemaps off by default because relative paths are "buggy" 28 | // with this option, according to the CSS-Loader README 29 | // (https://github.com/webpack/css-loader#sourcemaps) 30 | // In our experience, they generally work as expected, 31 | // just be aware of this issue when enabling this option. 32 | cssSourceMap: false 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue2-admin-demo 2 | 3 | > [A Vue.js project](https://yjj5855.github.io/vue2-admin-demo/dist/index.html?#/) 4 | 5 | ## Build Setup 6 | 7 | ``` bash 8 | # 安装node环境 V7.4.0或以上 9 | 下载地址 https://nodejs.org/en 10 | 11 | # 安装依赖 12 | npm install --registry=https://registry.npm.taobao.org 13 | 14 | # 复制本地配置文件 15 | cp src/env/env.test.js src/env/env.js 16 | 17 | # 启动开发环境 serve with hot reload at localhost:8080 18 | npm run dev 19 | 20 | # build for production with minification 21 | npm run build 22 | ``` 23 | 24 | ## 自定义样式 25 | 26 | ``` 27 | # 全局安装 element-theme 28 | cnpm install element-theme -g 29 | 30 | # 修改 element-variables.css 中的变量 31 | 32 | # 编译css (会输出到theme目录下) 33 | et 34 | ``` 35 | 36 | ## 第三方文档 37 | 38 | ``` 39 | # vue 2.0 40 | https://cn.vuejs.org/ 41 | 42 | # vue-router 43 | https://router.vuejs.org/zh-cn/ 44 | 45 | # vuex 46 | https://vuex.vuejs.org/zh-cn/intro.html 47 | 48 | # element-ui 49 | http://element.eleme.io/#/zh-CN/component/installation 50 | 51 | # webpack 2.0 52 | https://doc.webpack-china.org/guides/ 53 | 54 | # echarts 3.0 55 | http://echarts.baidu.com/option.html#title 56 | 57 | # d3.js 3.0 (组织架构图) 58 | http://www.kancloud.cn/wizardforcel/d3-api-ref/101209 59 | 60 | ``` 61 | 62 | # 编译兼容element-ui的font-awesome 63 | ``` 64 | @fa-css-prefix: el-icon-fa; //修改为兼容element的class名称 65 | 66 | 67 | lessc ./static/font-awesome-4.7.0/less/font-awesome.less > ./static/el-font-awesome.css 68 | ``` 69 | 70 | # 问题 71 | 72 | ## 浏览器兼容 73 | vue.js 只兼容 IE9和IE9+ 的浏览器,需要统计一下目前IE8用户的占比,如果很少的话可以放弃兼容 74 | 75 | -------------------------------------------------------------------------------- /src/page/404.vue: -------------------------------------------------------------------------------- 1 | 14 | 53 | 77 | -------------------------------------------------------------------------------- /src/transition/shuidi.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Velocity from 'velocity-animate' 3 | 4 | export default Vue.component('my-special-transition', { 5 | functional: true, 6 | data: function () { 7 | return { 8 | x: 0, 9 | y: 0 10 | } 11 | }, 12 | render: function (createElement, context) { 13 | var data = { 14 | props: { 15 | name: 'very-special-transition', 16 | mode: 'out-in' 17 | }, 18 | on: { 19 | beforeEnter: function (el) { 20 | console.log('beforeEnter') 21 | el.style.opacity = 0 22 | el.style.transformOrigin = 'left' 23 | }, 24 | enter: function (el, done) { 25 | console.log('enter') 26 | Velocity(el, { opacity: 1, fontSize: '1.4em' }, { duration: 300 }) 27 | Velocity(el, { fontSize: '1em' }, { complete: done }) 28 | }, 29 | afterEnter: function (el) { 30 | 31 | }, 32 | 33 | beforeLeave: function (el) { 34 | el.style.transformOrigin = 'left' 35 | }, 36 | leave: function (el, done) { 37 | console.log('leave') 38 | Velocity(el, { translateX: '15px', rotateZ: '50deg' }, { duration: 600 }) 39 | Velocity(el, { rotateZ: '100deg' }, { loop: 2 }) 40 | Velocity(el, { 41 | rotateZ: '45deg', 42 | translateY: '30px', 43 | translateX: '30px', 44 | opacity: 0 45 | }, { complete: done }) 46 | }, 47 | afterLeave: function (el) { 48 | 49 | } 50 | } 51 | } 52 | return createElement('transition', data, context.children) 53 | } 54 | }) 55 | -------------------------------------------------------------------------------- /src/libs/intro/introPage.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @param steps 4 | * { 5 | // 第一步引导 6 | // 这个属性类似于jquery的选择器, 可以通过jquery选择器的方式来选择你需要选中的对象进行指引 7 | element: '.el-icon-fa-eye', 8 | // 这里是每个引导框具体的文字内容,中间可以编写HTML代码 9 | intro: '点击这个眼睛,可以在图表中显示数据', 10 | // 这里可以规定引导框相对于选中对象出现的位置 top,bottom,left,right 11 | position: 'bottom', 12 | // 这里可以自定义样式 13 | tooltipClass: '' 14 | } 15 | * @returns {{prevLabel: string, nextLabel: string, skipLabel: string, doneLabel: string, steps: Array}} 16 | */ 17 | export function getIntroOptions ({ steps = [] }) { 18 | return { 19 | // 对应的按钮 20 | prevLabel: '上一步', 21 | nextLabel: '下一步', 22 | skipLabel: '跳过', 23 | doneLabel: '结束', 24 | // 对应的数组,顺序出现每一步引导提示 25 | steps: steps.map(item => { 26 | item.tooltipClass = 'png' // zidingyi 27 | return item 28 | }) 29 | } 30 | } 31 | 32 | export function introStart (options) { 33 | return new Promise((resolve, reject) => { 34 | window.introJs() 35 | .setOptions(options) 36 | .start() 37 | .oncomplete(() => { 38 | resolve() 39 | }) 40 | }) 41 | } 42 | 43 | export function home () { 44 | return introStart(getIntroOptions({ 45 | steps: [ 46 | { 47 | element: '.el-icon-fa-eye', 48 | intro: '点击这个眼睛,可以在图表中显示数据', 49 | position: 'auto' 50 | }, 51 | { 52 | element: '.el-icon-fa-expand', 53 | intro: '点击这个图标,可以放大到整个窗口查看', 54 | position: 'auto' 55 | }, 56 | { 57 | element: '.el-icon-fa-download', 58 | intro: '点击这个图标,可以把图表下载为图片', 59 | position: 'auto' 60 | } 61 | ] 62 | })) 63 | } 64 | -------------------------------------------------------------------------------- /dist/static/js/manifest.373ab3ea96e6b5f10ad2.js: -------------------------------------------------------------------------------- 1 | !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r=window.webpackJsonp;window.webpackJsonp=function(n,a,c){for(var i,u,f,s=0,d=[];s { 6 | require.ensure(['./index.vue'], () => { 7 | resolve(require('./index.vue')) 8 | }, 'demo') 9 | } 10 | }, 11 | { 12 | path: '/tree', 13 | component: resolve => { 14 | require.ensure(['./tree.vue'], () => { 15 | resolve(require('./tree.vue')) 16 | }, 'demo') 17 | } 18 | }, 19 | { 20 | path: '/wifi', 21 | component: resolve => { 22 | require.ensure(['./wifi.vue'], () => { 23 | resolve(require('./wifi.vue')) 24 | }, 'demo') 25 | } 26 | }, 27 | { 28 | path: '/time', 29 | component: resolve => { 30 | require.ensure(['./time.vue'], () => { 31 | resolve(require('./time.vue')) 32 | }, 'demo') 33 | } 34 | }, 35 | { 36 | path: '/bigdata', 37 | component: resolve => { 38 | require.ensure(['./bigdata.vue'], () => { 39 | resolve(require('./bigdata.vue')) 40 | }, 'demo') 41 | } 42 | }, 43 | { 44 | path: '/calendar', 45 | component: resolve => { 46 | require.ensure(['./calendar.vue'], () => { 47 | resolve(require('./calendar.vue')) 48 | }, 'demo') 49 | } 50 | }, 51 | { 52 | path: '/editTable', 53 | component: resolve => { 54 | require.ensure(['./editTable.vue'], () => { 55 | resolve(require('./editTable.vue')) 56 | }, 'demo') 57 | } 58 | }, 59 | { 60 | path: '/handsontable', 61 | component: resolve => { 62 | require.ensure(['./handsontable.vue'], () => { 63 | resolve(require('./handsontable.vue')) 64 | }, 'demo') 65 | } 66 | }, 67 | { 68 | path: '/scroll', 69 | component: resolve => { 70 | require.ensure([], () => { 71 | resolve(require('./scroll.vue')) 72 | }, 'demo') 73 | } 74 | } 75 | ] 76 | -------------------------------------------------------------------------------- /src/components/tag-edit.vue: -------------------------------------------------------------------------------- 1 | 27 | 50 | 80 | -------------------------------------------------------------------------------- /src/components/password-strength.vue: -------------------------------------------------------------------------------- 1 | 10 | 36 | 85 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | vue2-demo
-------------------------------------------------------------------------------- /src/components/svg-circle.vue: -------------------------------------------------------------------------------- 1 | 13 | 35 | 76 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/km.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Cambodian [km] 3 | //! author : Kruy Vanna : https://github.com/kruyvanna 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var km = moment.defineLocale('km', { 14 | months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), 15 | monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), 16 | weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 17 | weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 18 | weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 19 | longDateFormat: { 20 | LT: 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L: 'DD/MM/YYYY', 23 | LL: 'D MMMM YYYY', 24 | LLL: 'D MMMM YYYY HH:mm', 25 | LLLL: 'dddd, D MMMM YYYY HH:mm' 26 | }, 27 | calendar: { 28 | sameDay: '[ថ្ងៃនេះ ម៉ោង] LT', 29 | nextDay: '[ស្អែក ម៉ោង] LT', 30 | nextWeek: 'dddd [ម៉ោង] LT', 31 | lastDay: '[ម្សិលមិញ ម៉ោង] LT', 32 | lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime: { 36 | future: '%sទៀត', 37 | past: '%sមុន', 38 | s: 'ប៉ុន្មានវិនាទី', 39 | m: 'មួយនាទី', 40 | mm: '%d នាទី', 41 | h: 'មួយម៉ោង', 42 | hh: '%d ម៉ោង', 43 | d: 'មួយថ្ងៃ', 44 | dd: '%d ថ្ងៃ', 45 | M: 'មួយខែ', 46 | MM: '%d ខែ', 47 | y: 'មួយឆ្នាំ', 48 | yy: '%d ឆ្នាំ' 49 | }, 50 | week: { 51 | dow: 1, // Monday is the first day of the week. 52 | doy: 4 // The week that contains Jan 4th is the first week of the year. 53 | } 54 | }); 55 | 56 | return km; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/km.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Cambodian [km] 3 | //! author : Kruy Vanna : https://github.com/kruyvanna 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var km = moment.defineLocale('km', { 14 | months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), 15 | monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), 16 | weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 17 | weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 18 | weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), 19 | longDateFormat: { 20 | LT: 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L: 'DD/MM/YYYY', 23 | LL: 'D MMMM YYYY', 24 | LLL: 'D MMMM YYYY HH:mm', 25 | LLLL: 'dddd, D MMMM YYYY HH:mm' 26 | }, 27 | calendar: { 28 | sameDay: '[ថ្ងៃនេះ ម៉ោង] LT', 29 | nextDay: '[ស្អែក ម៉ោង] LT', 30 | nextWeek: 'dddd [ម៉ោង] LT', 31 | lastDay: '[ម្សិលមិញ ម៉ោង] LT', 32 | lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime: { 36 | future: '%sទៀត', 37 | past: '%sមុន', 38 | s: 'ប៉ុន្មានវិនាទី', 39 | m: 'មួយនាទី', 40 | mm: '%d នាទី', 41 | h: 'មួយម៉ោង', 42 | hh: '%d ម៉ោង', 43 | d: 'មួយថ្ងៃ', 44 | dd: '%d ថ្ងៃ', 45 | M: 'មួយខែ', 46 | MM: '%d ខែ', 47 | y: 'មួយឆ្នាំ', 48 | yy: '%d ឆ្នាំ' 49 | }, 50 | week: { 51 | dow: 1, // Monday is the first day of the week. 52 | doy: 4 // The week that contains Jan 4th is the first week of the year. 53 | } 54 | }); 55 | 56 | return km; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Tunisia) [ar-tn] 3 | //! author : Nader Toukabri : https://github.com/naderio 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arTn = moment.defineLocale('ar-tn', { 14 | months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 15 | monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 16 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat: { 21 | LT: 'HH:mm', 22 | LTS: 'HH:mm:ss', 23 | L: 'DD/MM/YYYY', 24 | LL: 'D MMMM YYYY', 25 | LLL: 'D MMMM YYYY HH:mm', 26 | LLLL: 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar: { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime: { 37 | future: 'في %s', 38 | past: 'منذ %s', 39 | s: 'ثوان', 40 | m: 'دقيقة', 41 | mm: '%d دقائق', 42 | h: 'ساعة', 43 | hh: '%d ساعات', 44 | d: 'يوم', 45 | dd: '%d أيام', 46 | M: 'شهر', 47 | MM: '%d أشهر', 48 | y: 'سنة', 49 | yy: '%d سنوات' 50 | }, 51 | week: { 52 | dow: 1, // Monday is the first day of the week. 53 | doy: 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return arTn; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/uz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek [uz] 3 | //! author : Sardor Muminov : https://github.com/muminoff 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var uz = moment.defineLocale('uz', { 14 | months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'), 15 | monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), 16 | weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), 17 | weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), 18 | weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'D MMMM YYYY, dddd HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[Бугун соат] LT [да]', 29 | nextDay : '[Эртага] LT [да]', 30 | nextWeek : 'dddd [куни соат] LT [да]', 31 | lastDay : '[Кеча соат] LT [да]', 32 | lastWeek : '[Утган] dddd [куни соат] LT [да]', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'Якин %s ичида', 37 | past : 'Бир неча %s олдин', 38 | s : 'фурсат', 39 | m : 'бир дакика', 40 | mm : '%d дакика', 41 | h : 'бир соат', 42 | hh : '%d соат', 43 | d : 'бир кун', 44 | dd : '%d кун', 45 | M : 'бир ой', 46 | MM : '%d ой', 47 | y : 'бир йил', 48 | yy : '%d йил' 49 | }, 50 | week : { 51 | dow : 1, // Monday is the first day of the week. 52 | doy : 7 // The week that contains Jan 4th is the first week of the year. 53 | } 54 | }); 55 | 56 | return uz; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Tunisia) [ar-tn] 3 | //! author : Nader Toukabri : https://github.com/naderio 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arTn = moment.defineLocale('ar-tn', { 14 | months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 15 | monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 16 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat: { 21 | LT: 'HH:mm', 22 | LTS: 'HH:mm:ss', 23 | L: 'DD/MM/YYYY', 24 | LL: 'D MMMM YYYY', 25 | LLL: 'D MMMM YYYY HH:mm', 26 | LLLL: 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar: { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime: { 37 | future: 'في %s', 38 | past: 'منذ %s', 39 | s: 'ثوان', 40 | m: 'دقيقة', 41 | mm: '%d دقائق', 42 | h: 'ساعة', 43 | hh: '%d ساعات', 44 | d: 'يوم', 45 | dd: '%d أيام', 46 | M: 'شهر', 47 | MM: '%d أشهر', 48 | y: 'سنة', 49 | yy: '%d سنوات' 50 | }, 51 | week: { 52 | dow: 1, // Monday is the first day of the week. 53 | doy: 4 // The week that contains Jan 4th is the first week of the year. 54 | } 55 | }); 56 | 57 | return arTn; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/uz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek [uz] 3 | //! author : Sardor Muminov : https://github.com/muminoff 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var uz = moment.defineLocale('uz', { 14 | months : 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split('_'), 15 | monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), 16 | weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), 17 | weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), 18 | weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'D MMMM YYYY, dddd HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[Бугун соат] LT [да]', 29 | nextDay : '[Эртага] LT [да]', 30 | nextWeek : 'dddd [куни соат] LT [да]', 31 | lastDay : '[Кеча соат] LT [да]', 32 | lastWeek : '[Утган] dddd [куни соат] LT [да]', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'Якин %s ичида', 37 | past : 'Бир неча %s олдин', 38 | s : 'фурсат', 39 | m : 'бир дакика', 40 | mm : '%d дакика', 41 | h : 'бир соат', 42 | hh : '%d соат', 43 | d : 'бир кун', 44 | dd : '%d кун', 45 | M : 'бир ой', 46 | MM : '%d ой', 47 | y : 'бир йил', 48 | yy : '%d йил' 49 | }, 50 | week : { 51 | dow : 1, // Monday is the first day of the week. 52 | doy : 7 // The week that contains Jan 4th is the first week of the year. 53 | } 54 | }); 55 | 56 | return uz; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/tzm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Central Atlas Tamazight [tzm] 3 | //! author : Abdel Said : https://github.com/abdelsaid 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var tzm = moment.defineLocale('tzm', { 14 | months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 15 | monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 16 | weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 17 | weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 18 | weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS: 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'dddd D MMMM YYYY HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', 29 | nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', 30 | nextWeek: 'dddd [ⴴ] LT', 31 | lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', 32 | lastWeek: 'dddd [ⴴ] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', 37 | past : 'ⵢⴰⵏ %s', 38 | s : 'ⵉⵎⵉⴽ', 39 | m : 'ⵎⵉⵏⵓⴺ', 40 | mm : '%d ⵎⵉⵏⵓⴺ', 41 | h : 'ⵙⴰⵄⴰ', 42 | hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', 43 | d : 'ⴰⵙⵙ', 44 | dd : '%d oⵙⵙⴰⵏ', 45 | M : 'ⴰⵢoⵓⵔ', 46 | MM : '%d ⵉⵢⵢⵉⵔⵏ', 47 | y : 'ⴰⵙⴳⴰⵙ', 48 | yy : '%d ⵉⵙⴳⴰⵙⵏ' 49 | }, 50 | week : { 51 | dow : 6, // Saturday is the first day of the week. 52 | doy : 12 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return tzm; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/tzm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Central Atlas Tamazight [tzm] 3 | //! author : Abdel Said : https://github.com/abdelsaid 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var tzm = moment.defineLocale('tzm', { 14 | months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 15 | monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), 16 | weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 17 | weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 18 | weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS: 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'dddd D MMMM YYYY HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', 29 | nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', 30 | nextWeek: 'dddd [ⴴ] LT', 31 | lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', 32 | lastWeek: 'dddd [ⴴ] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', 37 | past : 'ⵢⴰⵏ %s', 38 | s : 'ⵉⵎⵉⴽ', 39 | m : 'ⵎⵉⵏⵓⴺ', 40 | mm : '%d ⵎⵉⵏⵓⴺ', 41 | h : 'ⵙⴰⵄⴰ', 42 | hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', 43 | d : 'ⴰⵙⵙ', 44 | dd : '%d oⵙⵙⴰⵏ', 45 | M : 'ⴰⵢoⵓⵔ', 46 | MM : '%d ⵉⵢⵢⵉⵔⵏ', 47 | y : 'ⴰⵙⴳⴰⵙ', 48 | yy : '%d ⵉⵙⴳⴰⵙⵏ' 49 | }, 50 | week : { 51 | dow : 6, // Saturday is the first day of the week. 52 | doy : 12 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return tzm; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Kuwait) [ar-kw] 3 | //! author : Nusret Parlak: https://github.com/nusretparlak 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arKw = moment.defineLocale('ar-kw', { 14 | months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 15 | monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 16 | weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD/MM/YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime : { 37 | future : 'في %s', 38 | past : 'منذ %s', 39 | s : 'ثوان', 40 | m : 'دقيقة', 41 | mm : '%d دقائق', 42 | h : 'ساعة', 43 | hh : '%d ساعات', 44 | d : 'يوم', 45 | dd : '%d أيام', 46 | M : 'شهر', 47 | MM : '%d أشهر', 48 | y : 'سنة', 49 | yy : '%d سنوات' 50 | }, 51 | week : { 52 | dow : 0, // Sunday is the first day of the week. 53 | doy : 12 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return arKw; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Kuwait) [ar-kw] 3 | //! author : Nusret Parlak: https://github.com/nusretparlak 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arKw = moment.defineLocale('ar-kw', { 14 | months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 15 | monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), 16 | weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD/MM/YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime : { 37 | future : 'في %s', 38 | past : 'منذ %s', 39 | s : 'ثوان', 40 | m : 'دقيقة', 41 | mm : '%d دقائق', 42 | h : 'ساعة', 43 | hh : '%d ساعات', 44 | d : 'يوم', 45 | dd : '%d أيام', 46 | M : 'شهر', 47 | MM : '%d أشهر', 48 | y : 'سنة', 49 | yy : '%d سنوات' 50 | }, 51 | week : { 52 | dow : 0, // Sunday is the first day of the week. 53 | doy : 12 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return arKw; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Algeria) [ar-dz] 3 | //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arDz = moment.defineLocale('ar-dz', { 14 | months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 15 | monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 16 | weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD/MM/YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime : { 37 | future : 'في %s', 38 | past : 'منذ %s', 39 | s : 'ثوان', 40 | m : 'دقيقة', 41 | mm : '%d دقائق', 42 | h : 'ساعة', 43 | hh : '%d ساعات', 44 | d : 'يوم', 45 | dd : '%d أيام', 46 | M : 'شهر', 47 | MM : '%d أشهر', 48 | y : 'سنة', 49 | yy : '%d سنوات' 50 | }, 51 | week : { 52 | dow : 0, // Sunday is the first day of the week. 53 | doy : 4 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return arDz; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Algeria) [ar-dz] 3 | //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var arDz = moment.defineLocale('ar-dz', { 14 | months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 15 | monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), 16 | weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 17 | weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 18 | weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD/MM/YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay: '[اليوم على الساعة] LT', 30 | nextDay: '[غدا على الساعة] LT', 31 | nextWeek: 'dddd [على الساعة] LT', 32 | lastDay: '[أمس على الساعة] LT', 33 | lastWeek: 'dddd [على الساعة] LT', 34 | sameElse: 'L' 35 | }, 36 | relativeTime : { 37 | future : 'في %s', 38 | past : 'منذ %s', 39 | s : 'ثوان', 40 | m : 'دقيقة', 41 | mm : '%d دقائق', 42 | h : 'ساعة', 43 | hh : '%d ساعات', 44 | d : 'يوم', 45 | dd : '%d أيام', 46 | M : 'شهر', 47 | MM : '%d أشهر', 48 | y : 'سنة', 49 | yy : '%d سنوات' 50 | }, 51 | week : { 52 | dow : 0, // Sunday is the first day of the week. 53 | doy : 4 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return arDz; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/da.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Danish [da] 3 | //! author : Ulrik Nielsen : https://github.com/mrbase 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var da = moment.defineLocale('da', { 14 | months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), 15 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 16 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 17 | weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'), 18 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D. MMMM YYYY', 24 | LLL : 'D. MMMM YYYY HH:mm', 25 | LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[i dag kl.] LT', 29 | nextDay : '[i morgen kl.] LT', 30 | nextWeek : 'på dddd [kl.] LT', 31 | lastDay : '[i går kl.] LT', 32 | lastWeek : '[i] dddd[s kl.] LT', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : '%s siden', 38 | s : 'få sekunder', 39 | m : 'et minut', 40 | mm : '%d minutter', 41 | h : 'en time', 42 | hh : '%d timer', 43 | d : 'en dag', 44 | dd : '%d dage', 45 | M : 'en måned', 46 | MM : '%d måneder', 47 | y : 'et år', 48 | yy : '%d år' 49 | }, 50 | dayOfMonthOrdinalParse: /\d{1,2}\./, 51 | ordinal : '%d.', 52 | week : { 53 | dow : 1, // Monday is the first day of the week. 54 | doy : 4 // The week that contains Jan 4th is the first week of the year. 55 | } 56 | }); 57 | 58 | return da; 59 | 60 | }))); 61 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek Latin [uz-latn] 3 | //! author : Rasulbek Mirzayev : github.com/Rasulbeeek 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var uzLatn = moment.defineLocale('uz-latn', { 14 | months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'), 15 | monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'), 16 | weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'), 17 | weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'), 18 | weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'D MMMM YYYY, dddd HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[Bugun soat] LT [da]', 29 | nextDay : '[Ertaga] LT [da]', 30 | nextWeek : 'dddd [kuni soat] LT [da]', 31 | lastDay : '[Kecha soat] LT [da]', 32 | lastWeek : '[O\'tgan] dddd [kuni soat] LT [da]', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'Yaqin %s ichida', 37 | past : 'Bir necha %s oldin', 38 | s : 'soniya', 39 | m : 'bir daqiqa', 40 | mm : '%d daqiqa', 41 | h : 'bir soat', 42 | hh : '%d soat', 43 | d : 'bir kun', 44 | dd : '%d kun', 45 | M : 'bir oy', 46 | MM : '%d oy', 47 | y : 'bir yil', 48 | yy : '%d yil' 49 | }, 50 | week : { 51 | dow : 1, // Monday is the first day of the week. 52 | doy : 7 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return uzLatn; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/da.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Danish [da] 3 | //! author : Ulrik Nielsen : https://github.com/mrbase 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var da = moment.defineLocale('da', { 14 | months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), 15 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 16 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 17 | weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'), 18 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D. MMMM YYYY', 24 | LLL : 'D. MMMM YYYY HH:mm', 25 | LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[i dag kl.] LT', 29 | nextDay : '[i morgen kl.] LT', 30 | nextWeek : 'på dddd [kl.] LT', 31 | lastDay : '[i går kl.] LT', 32 | lastWeek : '[i] dddd[s kl.] LT', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : '%s siden', 38 | s : 'få sekunder', 39 | m : 'et minut', 40 | mm : '%d minutter', 41 | h : 'en time', 42 | hh : '%d timer', 43 | d : 'en dag', 44 | dd : '%d dage', 45 | M : 'en måned', 46 | MM : '%d måneder', 47 | y : 'et år', 48 | yy : '%d år' 49 | }, 50 | dayOfMonthOrdinalParse: /\d{1,2}\./, 51 | ordinal : '%d.', 52 | week : { 53 | dow : 1, // Monday is the first day of the week. 54 | doy : 4 // The week that contains Jan 4th is the first week of the year. 55 | } 56 | }); 57 | 58 | return da; 59 | 60 | }))); 61 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek Latin [uz-latn] 3 | //! author : Rasulbek Mirzayev : github.com/Rasulbeeek 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var uzLatn = moment.defineLocale('uz-latn', { 14 | months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'), 15 | monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'), 16 | weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'), 17 | weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'), 18 | weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'D MMMM YYYY, dddd HH:mm' 26 | }, 27 | calendar : { 28 | sameDay : '[Bugun soat] LT [da]', 29 | nextDay : '[Ertaga] LT [da]', 30 | nextWeek : 'dddd [kuni soat] LT [da]', 31 | lastDay : '[Kecha soat] LT [da]', 32 | lastWeek : '[O\'tgan] dddd [kuni soat] LT [da]', 33 | sameElse : 'L' 34 | }, 35 | relativeTime : { 36 | future : 'Yaqin %s ichida', 37 | past : 'Bir necha %s oldin', 38 | s : 'soniya', 39 | m : 'bir daqiqa', 40 | mm : '%d daqiqa', 41 | h : 'bir soat', 42 | hh : '%d soat', 43 | d : 'bir kun', 44 | dd : '%d kun', 45 | M : 'bir oy', 46 | MM : '%d oy', 47 | y : 'bir yil', 48 | yy : '%d yil' 49 | }, 50 | week : { 51 | dow : 1, // Monday is the first day of the week. 52 | doy : 7 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return uzLatn; 57 | 58 | }))); 59 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | vue2-demo 6 | 7 | 8 | 9 | 10 | 26 | 27 | 28 |
29 | 30 |
31 |
32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/sw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Swahili [sw] 3 | //! author : Fahad Kassim : https://github.com/fadsel 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var sw = moment.defineLocale('sw', { 14 | months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'), 15 | monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'), 16 | weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'), 17 | weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'), 18 | weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD.MM.YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd, D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay : '[leo saa] LT', 30 | nextDay : '[kesho saa] LT', 31 | nextWeek : '[wiki ijayo] dddd [saat] LT', 32 | lastDay : '[jana] LT', 33 | lastWeek : '[wiki iliyopita] dddd [saat] LT', 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : '%s baadaye', 38 | past : 'tokea %s', 39 | s : 'hivi punde', 40 | m : 'dakika moja', 41 | mm : 'dakika %d', 42 | h : 'saa limoja', 43 | hh : 'masaa %d', 44 | d : 'siku moja', 45 | dd : 'masiku %d', 46 | M : 'mwezi mmoja', 47 | MM : 'miezi %d', 48 | y : 'mwaka mmoja', 49 | yy : 'miaka %d' 50 | }, 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 7 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return sw; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/sw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Swahili [sw] 3 | //! author : Fahad Kassim : https://github.com/fadsel 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var sw = moment.defineLocale('sw', { 14 | months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'), 15 | monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'), 16 | weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'), 17 | weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'), 18 | weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'), 19 | weekdaysParseExact : true, 20 | longDateFormat : { 21 | LT : 'HH:mm', 22 | LTS : 'HH:mm:ss', 23 | L : 'DD.MM.YYYY', 24 | LL : 'D MMMM YYYY', 25 | LLL : 'D MMMM YYYY HH:mm', 26 | LLLL : 'dddd, D MMMM YYYY HH:mm' 27 | }, 28 | calendar : { 29 | sameDay : '[leo saa] LT', 30 | nextDay : '[kesho saa] LT', 31 | nextWeek : '[wiki ijayo] dddd [saat] LT', 32 | lastDay : '[jana] LT', 33 | lastWeek : '[wiki iliyopita] dddd [saat] LT', 34 | sameElse : 'L' 35 | }, 36 | relativeTime : { 37 | future : '%s baadaye', 38 | past : 'tokea %s', 39 | s : 'hivi punde', 40 | m : 'dakika moja', 41 | mm : 'dakika %d', 42 | h : 'saa limoja', 43 | hh : 'masaa %d', 44 | d : 'siku moja', 45 | dd : 'masiku %d', 46 | M : 'mwezi mmoja', 47 | MM : 'miezi %d', 48 | y : 'mwaka mmoja', 49 | yy : 'miaka %d' 50 | }, 51 | week : { 52 | dow : 1, // Monday is the first day of the week. 53 | doy : 7 // The week that contains Jan 1st is the first week of the year. 54 | } 55 | }); 56 | 57 | return sw; 58 | 59 | }))); 60 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/nn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Nynorsk [nn] 3 | //! author : https://github.com/mechuwind 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var nn = moment.defineLocale('nn', { 14 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), 15 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), 16 | weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), 17 | weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'), 18 | weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD.MM.YYYY', 23 | LL : 'D. MMMM YYYY', 24 | LLL : 'D. MMMM YYYY [kl.] H:mm', 25 | LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[I dag klokka] LT', 29 | nextDay: '[I morgon klokka] LT', 30 | nextWeek: 'dddd [klokka] LT', 31 | lastDay: '[I går klokka] LT', 32 | lastWeek: '[Føregåande] dddd [klokka] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : '%s sidan', 38 | s : 'nokre sekund', 39 | m : 'eit minutt', 40 | mm : '%d minutt', 41 | h : 'ein time', 42 | hh : '%d timar', 43 | d : 'ein dag', 44 | dd : '%d dagar', 45 | M : 'ein månad', 46 | MM : '%d månader', 47 | y : 'eit år', 48 | yy : '%d år' 49 | }, 50 | dayOfMonthOrdinalParse: /\d{1,2}\./, 51 | ordinal : '%d.', 52 | week : { 53 | dow : 1, // Monday is the first day of the week. 54 | doy : 4 // The week that contains Jan 4th is the first week of the year. 55 | } 56 | }); 57 | 58 | return nn; 59 | 60 | }))); 61 | -------------------------------------------------------------------------------- /dist/static/handsontable-pro/moment/locale/nn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Nynorsk [nn] 3 | //! author : https://github.com/mechuwind 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var nn = moment.defineLocale('nn', { 14 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), 15 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), 16 | weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), 17 | weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'), 18 | weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD.MM.YYYY', 23 | LL : 'D. MMMM YYYY', 24 | LLL : 'D. MMMM YYYY [kl.] H:mm', 25 | LLLL : 'dddd D. MMMM YYYY [kl.] HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[I dag klokka] LT', 29 | nextDay: '[I morgon klokka] LT', 30 | nextWeek: 'dddd [klokka] LT', 31 | lastDay: '[I går klokka] LT', 32 | lastWeek: '[Føregåande] dddd [klokka] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'om %s', 37 | past : '%s sidan', 38 | s : 'nokre sekund', 39 | m : 'eit minutt', 40 | mm : '%d minutt', 41 | h : 'ein time', 42 | hh : '%d timar', 43 | d : 'ein dag', 44 | dd : '%d dagar', 45 | M : 'ein månad', 46 | MM : '%d månader', 47 | y : 'eit år', 48 | yy : '%d år' 49 | }, 50 | dayOfMonthOrdinalParse: /\d{1,2}\./, 51 | ordinal : '%d.', 52 | week : { 53 | dow : 1, // Monday is the first day of the week. 54 | doy : 4 // The week that contains Jan 4th is the first week of the year. 55 | } 56 | }); 57 | 58 | return nn; 59 | 60 | }))); 61 | -------------------------------------------------------------------------------- /static/handsontable-pro/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Central Atlas Tamazight Latin [tzm-latn] 3 | //! author : Abdel Said : https://github.com/abdelsaid 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | 13 | var tzmLatn = moment.defineLocale('tzm-latn', { 14 | months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), 15 | monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), 16 | weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 17 | weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 18 | weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 19 | longDateFormat : { 20 | LT : 'HH:mm', 21 | LTS : 'HH:mm:ss', 22 | L : 'DD/MM/YYYY', 23 | LL : 'D MMMM YYYY', 24 | LLL : 'D MMMM YYYY HH:mm', 25 | LLLL : 'dddd D MMMM YYYY HH:mm' 26 | }, 27 | calendar : { 28 | sameDay: '[asdkh g] LT', 29 | nextDay: '[aska g] LT', 30 | nextWeek: 'dddd [g] LT', 31 | lastDay: '[assant g] LT', 32 | lastWeek: 'dddd [g] LT', 33 | sameElse: 'L' 34 | }, 35 | relativeTime : { 36 | future : 'dadkh s yan %s', 37 | past : 'yan %s', 38 | s : 'imik', 39 | m : 'minuḍ', 40 | mm : '%d minuḍ', 41 | h : 'saɛa', 42 | hh : '%d tassaɛin', 43 | d : 'ass', 44 | dd : '%d ossan', 45 | M : 'ayowr', 46 | MM : '%d iyyirn', 47 | y : 'asgas', 48 | yy : '%d isgasn' 49 | }, 50 | week : { 51 | dow : 6, // Saturday is the first day of the week. 52 | doy : 12 // The week that contains Jan 1st is the first week of the year. 53 | } 54 | }); 55 | 56 | return tzmLatn; 57 | 58 | }))); 59 | --------------------------------------------------------------------------------