mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-31 12:13:04 -04:00
Update bootstrap-table to 1.21.1
This commit is contained in:
@@ -111,8 +111,6 @@ echo output_cache_busted_stylesheet_links(array(
|
||||
'css/reset.css',
|
||||
'css/font-awesome.min.css',
|
||||
'css/bootstrap.min.css',
|
||||
'css/bootstrap-table.min.css',
|
||||
'css/bootstrap-table-page-jump-to.min.css',
|
||||
));
|
||||
|
||||
echo output_link_if_exists(array(
|
||||
@@ -120,6 +118,8 @@ echo output_link_if_exists(array(
|
||||
'css/base/views/'.$basename.'.css',
|
||||
'js/dateTimePicker/jquery-ui-timepicker-addon.css',
|
||||
'js/jquery-ui-1.13.2/jquery-ui.structure.min.css',
|
||||
'js/bootstrap-table-1.21.1/bootstrap-table.min.css',
|
||||
'js/bootstrap-table-1.21.1/extensions/page-jump-to/bootstrap-table-page-jump-to.min.css',
|
||||
), true);
|
||||
if ( $css != 'base' )
|
||||
echo output_link_if_exists(array(
|
||||
@@ -945,13 +945,13 @@ function xhtmlFooter() {
|
||||
<script src="skins/<?php echo $skin; ?>/js/bootstrap-4.5.0.min.js"></script>
|
||||
<?php echo output_script_if_exists(array(
|
||||
'js/tableExport.min.js',
|
||||
'js/bootstrap-table.min.js',
|
||||
'js/bootstrap-table-locale-all.min.js',
|
||||
'js/bootstrap-table-export.min.js',
|
||||
'js/bootstrap-table-page-jump-to.min.js',
|
||||
'js/bootstrap-table-cookie.min.js',
|
||||
'js/bootstrap-table-toolbar.min.js',
|
||||
'js/bootstrap-table-auto-refresh.min.js',
|
||||
'js/bootstrap-table-1.21.1/bootstrap-table.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/locale/bootstrap-table-locale-all.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/export/bootstrap-table-export.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/page-jump-to/bootstrap-table-page-jump-to.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/cookie/bootstrap-table-cookie.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/toolbar/bootstrap-table-toolbar.min.js',
|
||||
'js/bootstrap-table-1.21.1/extensions/auto-refresh/bootstrap-table-auto-refresh.min.js',
|
||||
'js/chosen/chosen.jquery.js',
|
||||
'js/dateTimePicker/jquery-ui-timepicker-addon.js',
|
||||
'js/Server.js',
|
||||
|
||||
7016
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-locale-all.js
vendored
Normal file
7016
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-locale-all.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-locale-all.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-locale-all.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
209
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.esm.js
vendored
Normal file
209
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.esm.js
vendored
Normal file
@@ -0,0 +1,209 @@
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
const $ = window.jQuery;
|
||||
const deepCopy = arg => {
|
||||
if (arg === undefined) {
|
||||
return arg
|
||||
}
|
||||
return $.extend(true, Array.isArray(arg) ? [] : {}, arg)
|
||||
};
|
||||
|
||||
var script = {
|
||||
name: 'BootstrapTable',
|
||||
props: {
|
||||
columns: {
|
||||
type: Array,
|
||||
require: true
|
||||
},
|
||||
data: {
|
||||
type: [Array, Object],
|
||||
default () {
|
||||
return undefined
|
||||
}
|
||||
},
|
||||
options: {
|
||||
type: Object,
|
||||
default () {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.$table = $(this.$el);
|
||||
|
||||
this.$table.on('all.bs.table', (e, name, args) => {
|
||||
let eventName = $.fn.bootstrapTable.events[name];
|
||||
eventName = eventName.replace(/([A-Z])/g, '-$1').toLowerCase();
|
||||
this.$emit('on-all', ...args);
|
||||
this.$emit(eventName, ...args);
|
||||
});
|
||||
|
||||
this._initTable();
|
||||
},
|
||||
methods: {
|
||||
_initTable () {
|
||||
const options = {
|
||||
...deepCopy(this.options),
|
||||
columns: deepCopy(this.columns),
|
||||
data: deepCopy(this.data)
|
||||
};
|
||||
if (!this._hasInit) {
|
||||
this.$table.bootstrapTable(options);
|
||||
this._hasInit = true;
|
||||
} else {
|
||||
this.refreshOptions(options);
|
||||
}
|
||||
},
|
||||
...(() => {
|
||||
const res = {};
|
||||
for (const method of $.fn.bootstrapTable.methods) {
|
||||
res[method] = function (...args) {
|
||||
return this.$table.bootstrapTable(method, ...args)
|
||||
};
|
||||
}
|
||||
return res
|
||||
})()
|
||||
},
|
||||
watch: {
|
||||
options: {
|
||||
handler () {
|
||||
this._initTable();
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
columns: {
|
||||
handler () {
|
||||
this._initTable();
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
data: {
|
||||
handler () {
|
||||
this.load(deepCopy(this.data));
|
||||
},
|
||||
deep: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
|
||||
if (typeof shadowMode !== 'boolean') {
|
||||
createInjectorSSR = createInjector;
|
||||
createInjector = shadowMode;
|
||||
shadowMode = false;
|
||||
}
|
||||
// Vue.extend constructor export interop.
|
||||
const options = typeof script === 'function' ? script.options : script;
|
||||
// render functions
|
||||
if (template && template.render) {
|
||||
options.render = template.render;
|
||||
options.staticRenderFns = template.staticRenderFns;
|
||||
options._compiled = true;
|
||||
// functional template
|
||||
if (isFunctionalTemplate) {
|
||||
options.functional = true;
|
||||
}
|
||||
}
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = scopeId;
|
||||
}
|
||||
let hook;
|
||||
if (moduleIdentifier) {
|
||||
// server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__;
|
||||
}
|
||||
// inject component styles
|
||||
if (style) {
|
||||
style.call(this, createInjectorSSR(context));
|
||||
}
|
||||
// register component module identifier for async chunk inference
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier);
|
||||
}
|
||||
};
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook;
|
||||
}
|
||||
else if (style) {
|
||||
hook = shadowMode
|
||||
? function (context) {
|
||||
style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
|
||||
}
|
||||
: function (context) {
|
||||
style.call(this, createInjector(context));
|
||||
};
|
||||
}
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// register for functional component in vue file
|
||||
const originalRender = options.render;
|
||||
options.render = function renderWithStyleInjection(h, context) {
|
||||
hook.call(context);
|
||||
return originalRender(h, context);
|
||||
};
|
||||
}
|
||||
else {
|
||||
// inject component registration as beforeCreate hook
|
||||
const existing = options.beforeCreate;
|
||||
options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
|
||||
}
|
||||
}
|
||||
return script;
|
||||
}
|
||||
|
||||
/* script */
|
||||
const __vue_script__ = script;
|
||||
|
||||
/* template */
|
||||
var __vue_render__ = function () {
|
||||
var _vm = this;
|
||||
var _h = _vm.$createElement;
|
||||
var _c = _vm._self._c || _h;
|
||||
return _c("table")
|
||||
};
|
||||
var __vue_staticRenderFns__ = [];
|
||||
__vue_render__._withStripped = true;
|
||||
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = undefined;
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
const __vue_is_functional_template__ = false;
|
||||
/* style inject */
|
||||
|
||||
/* style inject SSR */
|
||||
|
||||
/* style inject shadow dom */
|
||||
|
||||
|
||||
|
||||
const __vue_component__ = /*#__PURE__*/normalizeComponent(
|
||||
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
|
||||
__vue_inject_styles__,
|
||||
__vue_script__,
|
||||
__vue_scope_id__,
|
||||
__vue_is_functional_template__,
|
||||
__vue_module_identifier__,
|
||||
false,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined
|
||||
);
|
||||
|
||||
export { __vue_component__ as default };
|
||||
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.esm.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.esm.min.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
const t=window.jQuery,e=e=>void 0===e?e:t.extend(!0,Array.isArray(e)?[]:{},e);function n(t,e,n,o,s,i,a,r,d,l){"boolean"!=typeof a&&(d=r,r=a,a=!1);const c="function"==typeof n?n.options:n;let h;if(t&&t.render&&(c.render=t.render,c.staticRenderFns=t.staticRenderFns,c._compiled=!0,s&&(c.functional=!0)),o&&(c._scopeId=o),i?(h=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,d(t)),t&&t._registeredComponents&&t._registeredComponents.add(i)},c._ssrRegister=h):e&&(h=a?function(t){e.call(this,l(t,this.$root.$options.shadowRoot))}:function(t){e.call(this,r(t))}),h)if(c.functional){const t=c.render;c.render=function(e,n){return h.call(n),t(e,n)}}else{const t=c.beforeCreate;c.beforeCreate=t?[].concat(t,h):[h]}return n}const o=n({render:function(){var t=this.$createElement;return(this._self._c||t)("table")},staticRenderFns:[]},undefined,{name:"BootstrapTable",props:{columns:{type:Array,require:!0},data:{type:[Array,Object],default(){}},options:{type:Object,default:()=>({})}},mounted(){this.$table=t(this.$el),this.$table.on("all.bs.table",((e,n,o)=>{let s=t.fn.bootstrapTable.events[n];s=s.replace(/([A-Z])/g,"-$1").toLowerCase(),this.$emit("on-all",...o),this.$emit(s,...o)})),this._initTable()},methods:{_initTable(){const t={...e(this.options),columns:e(this.columns),data:e(this.data)};this._hasInit?this.refreshOptions(t):(this.$table.bootstrapTable(t),this._hasInit=!0)},...(()=>{const e={};for(const n of t.fn.bootstrapTable.methods)e[n]=function(...t){return this.$table.bootstrapTable(n,...t)};return e})()},watch:{options:{handler(){this._initTable()},deep:!0},columns:{handler(){this._initTable()},deep:!0},data:{handler(){this.load(e(this.data))},deep:!0}}},undefined,false,undefined,!1,void 0,void 0,void 0);export{o as default};
|
||||
217
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.js
vendored
Normal file
217
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.js
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
typeof define === 'function' && define.amd ? define(factory) :
|
||||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.BootstrapTable = factory());
|
||||
})(this, (function () { 'use strict';
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
const $ = window.jQuery;
|
||||
const deepCopy = arg => {
|
||||
if (arg === undefined) {
|
||||
return arg
|
||||
}
|
||||
return $.extend(true, Array.isArray(arg) ? [] : {}, arg)
|
||||
};
|
||||
|
||||
var script = {
|
||||
name: 'BootstrapTable',
|
||||
props: {
|
||||
columns: {
|
||||
type: Array,
|
||||
require: true
|
||||
},
|
||||
data: {
|
||||
type: [Array, Object],
|
||||
default () {
|
||||
return undefined
|
||||
}
|
||||
},
|
||||
options: {
|
||||
type: Object,
|
||||
default () {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.$table = $(this.$el);
|
||||
|
||||
this.$table.on('all.bs.table', (e, name, args) => {
|
||||
let eventName = $.fn.bootstrapTable.events[name];
|
||||
eventName = eventName.replace(/([A-Z])/g, '-$1').toLowerCase();
|
||||
this.$emit('on-all', ...args);
|
||||
this.$emit(eventName, ...args);
|
||||
});
|
||||
|
||||
this._initTable();
|
||||
},
|
||||
methods: {
|
||||
_initTable () {
|
||||
const options = {
|
||||
...deepCopy(this.options),
|
||||
columns: deepCopy(this.columns),
|
||||
data: deepCopy(this.data)
|
||||
};
|
||||
if (!this._hasInit) {
|
||||
this.$table.bootstrapTable(options);
|
||||
this._hasInit = true;
|
||||
} else {
|
||||
this.refreshOptions(options);
|
||||
}
|
||||
},
|
||||
...(() => {
|
||||
const res = {};
|
||||
for (const method of $.fn.bootstrapTable.methods) {
|
||||
res[method] = function (...args) {
|
||||
return this.$table.bootstrapTable(method, ...args)
|
||||
};
|
||||
}
|
||||
return res
|
||||
})()
|
||||
},
|
||||
watch: {
|
||||
options: {
|
||||
handler () {
|
||||
this._initTable();
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
columns: {
|
||||
handler () {
|
||||
this._initTable();
|
||||
},
|
||||
deep: true
|
||||
},
|
||||
data: {
|
||||
handler () {
|
||||
this.load(deepCopy(this.data));
|
||||
},
|
||||
deep: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
|
||||
if (typeof shadowMode !== 'boolean') {
|
||||
createInjectorSSR = createInjector;
|
||||
createInjector = shadowMode;
|
||||
shadowMode = false;
|
||||
}
|
||||
// Vue.extend constructor export interop.
|
||||
const options = typeof script === 'function' ? script.options : script;
|
||||
// render functions
|
||||
if (template && template.render) {
|
||||
options.render = template.render;
|
||||
options.staticRenderFns = template.staticRenderFns;
|
||||
options._compiled = true;
|
||||
// functional template
|
||||
if (isFunctionalTemplate) {
|
||||
options.functional = true;
|
||||
}
|
||||
}
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = scopeId;
|
||||
}
|
||||
let hook;
|
||||
if (moduleIdentifier) {
|
||||
// server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__;
|
||||
}
|
||||
// inject component styles
|
||||
if (style) {
|
||||
style.call(this, createInjectorSSR(context));
|
||||
}
|
||||
// register component module identifier for async chunk inference
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier);
|
||||
}
|
||||
};
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook;
|
||||
}
|
||||
else if (style) {
|
||||
hook = shadowMode
|
||||
? function (context) {
|
||||
style.call(this, createInjectorShadow(context, this.$root.$options.shadowRoot));
|
||||
}
|
||||
: function (context) {
|
||||
style.call(this, createInjector(context));
|
||||
};
|
||||
}
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// register for functional component in vue file
|
||||
const originalRender = options.render;
|
||||
options.render = function renderWithStyleInjection(h, context) {
|
||||
hook.call(context);
|
||||
return originalRender(h, context);
|
||||
};
|
||||
}
|
||||
else {
|
||||
// inject component registration as beforeCreate hook
|
||||
const existing = options.beforeCreate;
|
||||
options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
|
||||
}
|
||||
}
|
||||
return script;
|
||||
}
|
||||
|
||||
/* script */
|
||||
const __vue_script__ = script;
|
||||
|
||||
/* template */
|
||||
var __vue_render__ = function () {
|
||||
var _vm = this;
|
||||
var _h = _vm.$createElement;
|
||||
var _c = _vm._self._c || _h;
|
||||
return _c("table")
|
||||
};
|
||||
var __vue_staticRenderFns__ = [];
|
||||
__vue_render__._withStripped = true;
|
||||
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = undefined;
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
const __vue_is_functional_template__ = false;
|
||||
/* style inject */
|
||||
|
||||
/* style inject SSR */
|
||||
|
||||
/* style inject shadow dom */
|
||||
|
||||
|
||||
|
||||
const __vue_component__ = /*#__PURE__*/normalizeComponent(
|
||||
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
|
||||
__vue_inject_styles__,
|
||||
__vue_script__,
|
||||
__vue_scope_id__,
|
||||
__vue_is_functional_template__,
|
||||
__vue_module_identifier__,
|
||||
false,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined
|
||||
);
|
||||
|
||||
return __vue_component__;
|
||||
|
||||
}));
|
||||
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table-vue.min.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).BootstrapTable=t()}(this,(function(){"use strict";const e=window.jQuery,t=t=>void 0===t?t:e.extend(!0,Array.isArray(t)?[]:{},t);function n(e,t,n,o,s,i,a,r,d,l){"boolean"!=typeof a&&(d=r,r=a,a=!1);const c="function"==typeof n?n.options:n;let f;if(e&&e.render&&(c.render=e.render,c.staticRenderFns=e.staticRenderFns,c._compiled=!0,s&&(c.functional=!0)),o&&(c._scopeId=o),i?(f=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,d(e)),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=f):t&&(f=a?function(e){t.call(this,l(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,r(e))}),f)if(c.functional){const e=c.render;c.render=function(t,n){return f.call(n),e(t,n)}}else{const e=c.beforeCreate;c.beforeCreate=e?[].concat(e,f):[f]}return n}return n({render:function(){var e=this.$createElement;return(this._self._c||e)("table")},staticRenderFns:[]},undefined,{name:"BootstrapTable",props:{columns:{type:Array,require:!0},data:{type:[Array,Object],default(){}},options:{type:Object,default:()=>({})}},mounted(){this.$table=e(this.$el),this.$table.on("all.bs.table",((t,n,o)=>{let s=e.fn.bootstrapTable.events[n];s=s.replace(/([A-Z])/g,"-$1").toLowerCase(),this.$emit("on-all",...o),this.$emit(s,...o)})),this._initTable()},methods:{_initTable(){const e={...t(this.options),columns:t(this.columns),data:t(this.data)};this._hasInit?this.refreshOptions(e):(this.$table.bootstrapTable(e),this._hasInit=!0)},...(()=>{const t={};for(const n of e.fn.bootstrapTable.methods)t[n]=function(...e){return this.$table.bootstrapTable(n,...e)};return t})()},watch:{options:{handler(){this._initTable()},deep:!0},columns:{handler(){this._initTable()},deep:!0},data:{handler(){this.load(t(this.data))},deep:!0}}},undefined,false,undefined,!1,void 0,void 0,void 0)}));
|
||||
378
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.css
vendored
Normal file
378
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.css
vendored
Normal file
@@ -0,0 +1,378 @@
|
||||
/**
|
||||
* @author zhixin wen <wenzhixin2010@gmail.com>
|
||||
* version: 1.21.1
|
||||
* https://github.com/wenzhixin/bootstrap-table/
|
||||
*/
|
||||
.bootstrap-table .fixed-table-toolbar::after {
|
||||
content: "";
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .bs-bars,
|
||||
.bootstrap-table .fixed-table-toolbar .search,
|
||||
.bootstrap-table .fixed-table-toolbar .columns {
|
||||
position: relative;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group {
|
||||
display: inline-block;
|
||||
margin-left: -1px !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group > .btn {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:first-child > .btn {
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:last-child > .btn {
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
|
||||
text-align: left;
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar;
|
||||
z-index: 1001;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns label {
|
||||
display: block;
|
||||
padding: 3px 20px;
|
||||
clear: both;
|
||||
font-weight: normal;
|
||||
line-height: 1.4286;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns-left {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .columns-right {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-toolbar .pull-right .dropdown-menu {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container {
|
||||
position: relative;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table {
|
||||
width: 100%;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table th,
|
||||
.bootstrap-table .fixed-table-container .table td {
|
||||
vertical-align: middle;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th {
|
||||
vertical-align: bottom;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th:focus {
|
||||
outline: 0 solid transparent;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th.detail {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .th-inner {
|
||||
padding: 0.75rem;
|
||||
vertical-align: bottom;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .sortable {
|
||||
cursor: pointer;
|
||||
background-position: right;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 30px !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .sortable.sortable-center {
|
||||
padding-left: 20px !important;
|
||||
padding-right: 20px !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .both {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC");
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .asc {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==");
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table thead th .desc {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII= ");
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table tbody tr.selected td {
|
||||
background-color: rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table tbody tr.no-records-found td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table tbody tr .card-view {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-title {
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
min-width: 30%;
|
||||
width: auto !important;
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-value {
|
||||
width: 100% !important;
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table .bs-checkbox {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table .bs-checkbox label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table .bs-checkbox label input[type="radio"],
|
||||
.bootstrap-table .fixed-table-container .table .bs-checkbox label input[type="checkbox"] {
|
||||
margin: 0 auto !important;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table.table-sm .th-inner {
|
||||
padding: 0.3rem;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container.fixed-height:not(.has-footer) {
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container.fixed-height.has-card-view {
|
||||
border-top: 1px solid #dee2e6;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container.fixed-height .fixed-table-border {
|
||||
border-left: 1px solid #dee2e6;
|
||||
border-right: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container.fixed-height .table thead th {
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container.fixed-height .table-dark thead th {
|
||||
border-bottom: 1px solid #32383e;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-header {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body {
|
||||
overflow-x: auto;
|
||||
overflow-y: auto;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
|
||||
align-items: center;
|
||||
background: #fff;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
z-index: 1000;
|
||||
transition: visibility 0s, opacity 0.15s ease-in-out;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.open {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap {
|
||||
align-items: baseline;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .loading-text {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot,
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after,
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
|
||||
content: "";
|
||||
animation-duration: 1.5s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: loading;
|
||||
background: #212529;
|
||||
border-radius: 50%;
|
||||
display: block;
|
||||
height: 5px;
|
||||
margin: 0 4px;
|
||||
opacity: 0;
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot {
|
||||
animation-delay: 0.3s;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after {
|
||||
animation-delay: 0.6s;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark {
|
||||
background: #212529;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-dot,
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-wrap::after,
|
||||
.bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-wrap::before {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .fixed-table-footer {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination::after {
|
||||
content: "";
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination-detail,
|
||||
.bootstrap-table .fixed-table-pagination > .pagination {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination-detail .pagination-info {
|
||||
line-height: 34px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination-detail .page-list {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a {
|
||||
color: #c8c8c8;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a::before {
|
||||
content: "\2B05";
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a::after {
|
||||
content: "\27A1";
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.disabled a {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.bootstrap-table.fullscreen {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1050;
|
||||
width: 100% !important;
|
||||
background: #fff;
|
||||
height: calc(100vh);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.bootstrap-table.bootstrap4 .pagination-lg .page-link, .bootstrap-table.bootstrap5 .pagination-lg .page-link {
|
||||
padding: .5rem 1rem;
|
||||
}
|
||||
|
||||
.bootstrap-table.bootstrap5 .float-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.bootstrap-table.bootstrap5 .float-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* calculate scrollbar width */
|
||||
div.fixed-table-scroll-inner {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
div.fixed-table-scroll-outer {
|
||||
top: 0;
|
||||
left: 0;
|
||||
visibility: hidden;
|
||||
width: 200px;
|
||||
height: 150px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@keyframes loading {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
8998
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.js
vendored
Normal file
8998
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.min.css
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/bootstrap-table.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2719
web/skins/classic/js/bootstrap-table-1.21.1/extensions/addrbar/bootstrap-table-addrbar.js
vendored
Normal file
2719
web/skins/classic/js/bootstrap-table-1.21.1/extensions/addrbar/bootstrap-table-addrbar.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/addrbar/bootstrap-table-addrbar.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/addrbar/bootstrap-table-addrbar.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1808
web/skins/classic/js/bootstrap-table-1.21.1/extensions/auto-refresh/bootstrap-table-auto-refresh.js
vendored
Normal file
1808
web/skins/classic/js/bootstrap-table-1.21.1/extensions/auto-refresh/bootstrap-table-auto-refresh.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
3514
web/skins/classic/js/bootstrap-table-1.21.1/extensions/cookie/bootstrap-table-cookie.js
vendored
Normal file
3514
web/skins/classic/js/bootstrap-table-1.21.1/extensions/cookie/bootstrap-table-cookie.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/cookie/bootstrap-table-cookie.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/cookie/bootstrap-table-cookie.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1846
web/skins/classic/js/bootstrap-table-1.21.1/extensions/copy-rows/bootstrap-table-copy-rows.js
vendored
Normal file
1846
web/skins/classic/js/bootstrap-table-1.21.1/extensions/copy-rows/bootstrap-table-copy-rows.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1867
web/skins/classic/js/bootstrap-table-1.21.1/extensions/custom-view/bootstrap-table-custom-view.js
vendored
Normal file
1867
web/skins/classic/js/bootstrap-table-1.21.1/extensions/custom-view/bootstrap-table-custom-view.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1400
web/skins/classic/js/bootstrap-table-1.21.1/extensions/defer-url/bootstrap-table-defer-url.js
vendored
Normal file
1400
web/skins/classic/js/bootstrap-table-1.21.1/extensions/defer-url/bootstrap-table-defer-url.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
2607
web/skins/classic/js/bootstrap-table-1.21.1/extensions/editable/bootstrap-table-editable.js
vendored
Normal file
2607
web/skins/classic/js/bootstrap-table-1.21.1/extensions/editable/bootstrap-table-editable.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/editable/bootstrap-table-editable.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/editable/bootstrap-table-editable.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3045
web/skins/classic/js/bootstrap-table-1.21.1/extensions/export/bootstrap-table-export.js
vendored
Normal file
3045
web/skins/classic/js/bootstrap-table-1.21.1/extensions/export/bootstrap-table-export.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/export/bootstrap-table-export.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/export/bootstrap-table-export.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,20 @@
|
||||
@charset "UTF-8";
|
||||
/**
|
||||
* @author: Dennis Hernández
|
||||
* @version: v2.1.1
|
||||
*/
|
||||
.no-filter-control {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.filter-control {
|
||||
margin: 0 2px 2px 2px;
|
||||
}
|
||||
|
||||
.ms-choice {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ms-parent > button:focus {
|
||||
outline: 0;
|
||||
}
|
||||
5353
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/bootstrap-table-filter-control.js
vendored
Normal file
5353
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/bootstrap-table-filter-control.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
@charset "UTF-8";.no-filter-control{height:40px}.filter-control{margin:0 2px 2px 2px}.ms-choice{border:0}.ms-parent>button:focus{outline:0}
|
||||
File diff suppressed because one or more lines are too long
3456
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/utils.js
vendored
Normal file
3456
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/utils.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/utils.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/filter-control/utils.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,25 @@
|
||||
.fixed-columns,
|
||||
.fixed-columns-right {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.fixed-columns {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.fixed-columns .fixed-table-body {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.fixed-columns-right {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.fixed-columns-right .fixed-table-body {
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
2210
web/skins/classic/js/bootstrap-table-1.21.1/extensions/fixed-columns/bootstrap-table-fixed-columns.js
vendored
Normal file
2210
web/skins/classic/js/bootstrap-table-1.21.1/extensions/fixed-columns/bootstrap-table-fixed-columns.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
.fixed-columns,.fixed-columns-right{position:absolute;top:0;height:100%;background-color:#fff;box-sizing:border-box;z-index:1}.fixed-columns{left:0}.fixed-columns .fixed-table-body{overflow:hidden!important}.fixed-columns-right{right:0}.fixed-columns-right .fixed-table-body{overflow-x:hidden!important}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,8 @@
|
||||
.bootstrap-table .table > tbody > tr.groupBy.expanded,
|
||||
.bootstrap-table .table > tbody > tr.groupBy.collapsed {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.bootstrap-table .table > tbody > tr.hidden {
|
||||
display: none;
|
||||
}
|
||||
2421
web/skins/classic/js/bootstrap-table-1.21.1/extensions/group-by-v2/bootstrap-table-group-by.js
vendored
Normal file
2421
web/skins/classic/js/bootstrap-table-1.21.1/extensions/group-by-v2/bootstrap-table-group-by.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
.bootstrap-table .table>tbody>tr.groupBy.collapsed,.bootstrap-table .table>tbody>tr.groupBy.expanded{cursor:pointer}.bootstrap-table .table>tbody>tr.hidden{display:none}
|
||||
File diff suppressed because one or more lines are too long
166
web/skins/classic/js/bootstrap-table-1.21.1/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js
vendored
Normal file
166
web/skins/classic/js/bootstrap-table-1.21.1/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js
vendored
Normal file
@@ -0,0 +1,166 @@
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
|
||||
typeof define === 'function' && define.amd ? define(['jquery'], factory) :
|
||||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery));
|
||||
})(this, (function ($) { 'use strict';
|
||||
|
||||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
||||
|
||||
var $__default = /*#__PURE__*/_interopDefaultLegacy($);
|
||||
|
||||
function _classCallCheck(instance, Constructor) {
|
||||
if (!(instance instanceof Constructor)) {
|
||||
throw new TypeError("Cannot call a class as a function");
|
||||
}
|
||||
}
|
||||
|
||||
function _defineProperties(target, props) {
|
||||
for (var i = 0; i < props.length; i++) {
|
||||
var descriptor = props[i];
|
||||
descriptor.enumerable = descriptor.enumerable || false;
|
||||
descriptor.configurable = true;
|
||||
if ("value" in descriptor) descriptor.writable = true;
|
||||
Object.defineProperty(target, descriptor.key, descriptor);
|
||||
}
|
||||
}
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) {
|
||||
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
||||
if (staticProps) _defineProperties(Constructor, staticProps);
|
||||
Object.defineProperty(Constructor, "prototype", {
|
||||
writable: false
|
||||
});
|
||||
return Constructor;
|
||||
}
|
||||
|
||||
function _inherits(subClass, superClass) {
|
||||
if (typeof superClass !== "function" && superClass !== null) {
|
||||
throw new TypeError("Super expression must either be null or a function");
|
||||
}
|
||||
|
||||
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
||||
constructor: {
|
||||
value: subClass,
|
||||
writable: true,
|
||||
configurable: true
|
||||
}
|
||||
});
|
||||
Object.defineProperty(subClass, "prototype", {
|
||||
writable: false
|
||||
});
|
||||
if (superClass) _setPrototypeOf(subClass, superClass);
|
||||
}
|
||||
|
||||
function _getPrototypeOf(o) {
|
||||
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
|
||||
return o.__proto__ || Object.getPrototypeOf(o);
|
||||
};
|
||||
return _getPrototypeOf(o);
|
||||
}
|
||||
|
||||
function _setPrototypeOf(o, p) {
|
||||
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
||||
o.__proto__ = p;
|
||||
return o;
|
||||
};
|
||||
return _setPrototypeOf(o, p);
|
||||
}
|
||||
|
||||
function _isNativeReflectConstruct() {
|
||||
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
||||
if (Reflect.construct.sham) return false;
|
||||
if (typeof Proxy === "function") return true;
|
||||
|
||||
try {
|
||||
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
||||
return true;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function _assertThisInitialized(self) {
|
||||
if (self === void 0) {
|
||||
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
function _possibleConstructorReturn(self, call) {
|
||||
if (call && (typeof call === "object" || typeof call === "function")) {
|
||||
return call;
|
||||
} else if (call !== void 0) {
|
||||
throw new TypeError("Derived constructors may only return object or undefined");
|
||||
}
|
||||
|
||||
return _assertThisInitialized(self);
|
||||
}
|
||||
|
||||
function _createSuper(Derived) {
|
||||
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
||||
|
||||
return function _createSuperInternal() {
|
||||
var Super = _getPrototypeOf(Derived),
|
||||
result;
|
||||
|
||||
if (hasNativeReflectConstruct) {
|
||||
var NewTarget = _getPrototypeOf(this).constructor;
|
||||
|
||||
result = Reflect.construct(Super, arguments, NewTarget);
|
||||
} else {
|
||||
result = Super.apply(this, arguments);
|
||||
}
|
||||
|
||||
return _possibleConstructorReturn(this, result);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @author: Jewway
|
||||
* @update zhixin wen <wenzhixin2010@gmail.com>
|
||||
*/
|
||||
|
||||
$__default["default"].fn.bootstrapTable.methods.push('changeTitle');
|
||||
$__default["default"].fn.bootstrapTable.methods.push('changeLocale');
|
||||
|
||||
$__default["default"].BootstrapTable = /*#__PURE__*/function (_$$BootstrapTable) {
|
||||
_inherits(_class, _$$BootstrapTable);
|
||||
|
||||
var _super = _createSuper(_class);
|
||||
|
||||
function _class() {
|
||||
_classCallCheck(this, _class);
|
||||
|
||||
return _super.apply(this, arguments);
|
||||
}
|
||||
|
||||
_createClass(_class, [{
|
||||
key: "changeTitle",
|
||||
value: function changeTitle(locale) {
|
||||
$__default["default"].each(this.options.columns, function (idx, columnList) {
|
||||
$__default["default"].each(columnList, function (idx, column) {
|
||||
if (column.field) {
|
||||
column.title = locale[column.field];
|
||||
}
|
||||
});
|
||||
});
|
||||
this.initHeader();
|
||||
this.initBody();
|
||||
this.initToolbar();
|
||||
}
|
||||
}, {
|
||||
key: "changeLocale",
|
||||
value: function changeLocale(localeId) {
|
||||
this.options.locale = localeId;
|
||||
this.initLocale();
|
||||
this.initPagination();
|
||||
this.initBody();
|
||||
this.initToolbar();
|
||||
}
|
||||
}]);
|
||||
|
||||
return _class;
|
||||
}($__default["default"].BootstrapTable);
|
||||
|
||||
}));
|
||||
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).jQuery)}(this,(function(t){"use strict";function e(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var n=e(t);function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function i(t){return i=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},i(t)}function u(t,e){return u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},u(t,e)}function f(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function c(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,o=i(t);if(e){var r=i(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return f(this,n)}}n.default.fn.bootstrapTable.methods.push("changeTitle"),n.default.fn.bootstrapTable.methods.push("changeLocale"),n.default.BootstrapTable=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&u(t,e)}(l,t);var e,i,f,a=c(l);function l(){return o(this,l),a.apply(this,arguments)}return e=l,(i=[{key:"changeTitle",value:function(t){n.default.each(this.options.columns,(function(e,o){n.default.each(o,(function(e,n){n.field&&(n.title=t[n.field])}))})),this.initHeader(),this.initBody(),this.initToolbar()}},{key:"changeLocale",value:function(t){this.options.locale=t,this.initLocale(),this.initPagination(),this.initBody(),this.initToolbar()}}])&&r(e.prototype,i),f&&r(e,f),Object.defineProperty(e,"prototype",{writable:!1}),l}(n.default.BootstrapTable)}));
|
||||
2085
web/skins/classic/js/bootstrap-table-1.21.1/extensions/key-events/bootstrap-table-key-events.js
vendored
Normal file
2085
web/skins/classic/js/bootstrap-table-1.21.1/extensions/key-events/bootstrap-table-key-events.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1932
web/skins/classic/js/bootstrap-table-1.21.1/extensions/mobile/bootstrap-table-mobile.js
vendored
Normal file
1932
web/skins/classic/js/bootstrap-table-1.21.1/extensions/mobile/bootstrap-table-mobile.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/mobile/bootstrap-table-mobile.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/mobile/bootstrap-table-mobile.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2601
web/skins/classic/js/bootstrap-table-1.21.1/extensions/multiple-sort/bootstrap-table-multiple-sort.js
vendored
Normal file
2601
web/skins/classic/js/bootstrap-table-1.21.1/extensions/multiple-sort/bootstrap-table-multiple-sort.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,14 @@
|
||||
.bootstrap-table.bootstrap3 .fixed-table-pagination > .pagination .page-jump-to {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bootstrap-table.bootstrap3 .fixed-table-pagination > .pagination .input-group-btn {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-pagination > .pagination .page-jump-to input {
|
||||
width: 70px;
|
||||
margin-left: 5px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
}
|
||||
1701
web/skins/classic/js/bootstrap-table-1.21.1/extensions/page-jump-to/bootstrap-table-page-jump-to.js
vendored
Normal file
1701
web/skins/classic/js/bootstrap-table-1.21.1/extensions/page-jump-to/bootstrap-table-page-jump-to.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
.bootstrap-table.bootstrap3 .fixed-table-pagination>.pagination .page-jump-to{display:inline-block}.bootstrap-table.bootstrap3 .fixed-table-pagination>.pagination .input-group-btn{width:auto}.bootstrap-table .fixed-table-pagination>.pagination .page-jump-to input{width:70px;margin-left:5px;text-align:center;float:left}
|
||||
File diff suppressed because one or more lines are too long
1764
web/skins/classic/js/bootstrap-table-1.21.1/extensions/pipeline/bootstrap-table-pipeline.js
vendored
Normal file
1764
web/skins/classic/js/bootstrap-table-1.21.1/extensions/pipeline/bootstrap-table-pipeline.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/pipeline/bootstrap-table-pipeline.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/pipeline/bootstrap-table-pipeline.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2478
web/skins/classic/js/bootstrap-table-1.21.1/extensions/print/bootstrap-table-print.js
vendored
Normal file
2478
web/skins/classic/js/bootstrap-table-1.21.1/extensions/print/bootstrap-table-print.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/print/bootstrap-table-print.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/print/bootstrap-table-print.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,14 @@
|
||||
.reorder_rows_onDragClass td {
|
||||
background-color: #eee;
|
||||
-webkit-box-shadow: 11px 5px 12px 2px #333, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
-webkit-box-shadow: 6px 3px 5px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
-moz-box-shadow: 6px 4px 5px 1px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
-box-shadow: 6px 4px 5px 1px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
}
|
||||
|
||||
.reorder_rows_onDragClass td:last-child {
|
||||
-webkit-box-shadow: 8px 7px 12px 0 #333, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
-webkit-box-shadow: 1px 8px 6px -4px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
|
||||
-moz-box-shadow: 0 9px 4px -4px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset, -1px 0 0 #ccc inset;
|
||||
-box-shadow: 0 9px 4px -4px #555, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset, -1px 0 0 #ccc inset;
|
||||
}
|
||||
1635
web/skins/classic/js/bootstrap-table-1.21.1/extensions/reorder-rows/bootstrap-table-reorder-rows.js
vendored
Normal file
1635
web/skins/classic/js/bootstrap-table-1.21.1/extensions/reorder-rows/bootstrap-table-reorder-rows.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
.reorder_rows_onDragClass td{background-color:#eee;-webkit-box-shadow:11px 5px 12px 2px #333,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-webkit-box-shadow:6px 3px 5px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-moz-box-shadow:6px 4px 5px 1px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-box-shadow:6px 4px 5px 1px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset}.reorder_rows_onDragClass td:last-child{-webkit-box-shadow:8px 7px 12px 0 #333,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-webkit-box-shadow:1px 8px 6px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset;-moz-box-shadow:0 9px 4px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset,-1px 0 0 #ccc inset;-box-shadow:0 9px 4px -4px #555,0 1px 0 #ccc inset,0 -1px 0 #ccc inset,-1px 0 0 #ccc inset}
|
||||
File diff suppressed because one or more lines are too long
1450
web/skins/classic/js/bootstrap-table-1.21.1/extensions/resizable/bootstrap-table-resizable.js
vendored
Normal file
1450
web/skins/classic/js/bootstrap-table-1.21.1/extensions/resizable/bootstrap-table-resizable.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @author vincent loh <vincent.ml@gmail.com>
|
||||
* @update zhixin wen <wenzhixin2010@gmail.com>
|
||||
*/
|
||||
.fix-sticky {
|
||||
position: fixed !important;
|
||||
overflow: hidden;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.fix-sticky table thead {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.fix-sticky table thead.thead-light {
|
||||
background: #e9ecef;
|
||||
}
|
||||
|
||||
.fix-sticky table thead.thead-dark {
|
||||
background: #212529;
|
||||
}
|
||||
1832
web/skins/classic/js/bootstrap-table-1.21.1/extensions/sticky-header/bootstrap-table-sticky-header.js
vendored
Normal file
1832
web/skins/classic/js/bootstrap-table-1.21.1/extensions/sticky-header/bootstrap-table-sticky-header.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
|
||||
*
|
||||
* @version v1.21.1
|
||||
* @homepage https://bootstrap-table.com
|
||||
* @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
.fix-sticky{position:fixed!important;overflow:hidden;z-index:100}.fix-sticky table thead{background:#fff}.fix-sticky table thead.thead-light{background:#e9ecef}.fix-sticky table thead.thead-dark{background:#212529}
|
||||
File diff suppressed because one or more lines are too long
2743
web/skins/classic/js/bootstrap-table-1.21.1/extensions/toolbar/bootstrap-table-toolbar.js
vendored
Normal file
2743
web/skins/classic/js/bootstrap-table-1.21.1/extensions/toolbar/bootstrap-table-toolbar.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/toolbar/bootstrap-table-toolbar.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/toolbar/bootstrap-table-toolbar.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1821
web/skins/classic/js/bootstrap-table-1.21.1/extensions/treegrid/bootstrap-table-treegrid.js
vendored
Normal file
1821
web/skins/classic/js/bootstrap-table-1.21.1/extensions/treegrid/bootstrap-table-treegrid.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/treegrid/bootstrap-table-treegrid.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/extensions/treegrid/bootstrap-table-treegrid.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-af-ZA.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-af-ZA.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-af-ZA.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-af-ZA.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ar-SA.js
vendored
Normal file
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ar-SA.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ar-SA.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ar-SA.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-bg-BG.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-bg-BG.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-bg-BG.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-bg-BG.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ca-ES.js
vendored
Normal file
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ca-ES.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ca-ES.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-ca-ES.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-cs-CZ.js
vendored
Normal file
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-cs-CZ.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-cs-CZ.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-cs-CZ.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-da-DK.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-da-DK.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-da-DK.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-da-DK.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1354
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-de-DE.js
vendored
Normal file
1354
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-de-DE.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-de-DE.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-de-DE.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-el-GR.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-el-GR.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-el-GR.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-el-GR.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-en-US.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-en-US.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-en-US.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-en-US.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-AR.js
vendored
Normal file
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-AR.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-AR.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-AR.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CL.js
vendored
Normal file
1316
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CL.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CL.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CL.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CR.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CR.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CR.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-CR.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-ES.js
vendored
Normal file
1315
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-ES.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-ES.min.js
vendored
Normal file
10
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-ES.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1318
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-MX.js
vendored
Normal file
1318
web/skins/classic/js/bootstrap-table-1.21.1/locale/bootstrap-table-es-MX.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user