@xplortech/apollo-core 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/build/style.css +1129 -0
- package/dist/apollo-core/apollo-core.esm.js +1 -0
- package/dist/apollo-core/index.esm.js +0 -0
- package/dist/apollo-core/p-1c829417.js +1 -0
- package/dist/apollo-core/p-64ea0ce6.entry.js +1 -0
- package/dist/apollo-core/p-b76559ae.entry.js +1 -0
- package/dist/cjs/apollo-core.cjs.js +19 -0
- package/dist/cjs/index-3ceb30c2.js +980 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/xpl-pagination.cjs.entry.js +16 -0
- package/dist/cjs/xpl-table.cjs.entry.js +54 -0
- package/dist/collection/collection-manifest.json +13 -0
- package/dist/collection/components/xpl-pagination/xpl-pagination.js +9 -0
- package/dist/collection/components/xpl-table/xpl-table.js +157 -0
- package/dist/custom-elements/index.d.ts +51 -0
- package/dist/custom-elements/index.js +78 -0
- package/dist/esm/apollo-core.js +17 -0
- package/dist/esm/index-52844266.js +953 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/xpl-pagination.entry.js +12 -0
- package/dist/esm/xpl-table.entry.js +50 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/loader/cdn.js +3 -0
- package/dist/loader/index.cjs.js +3 -0
- package/dist/loader/index.d.ts +13 -0
- package/dist/loader/index.es2017.js +3 -0
- package/dist/loader/index.js +4 -0
- package/dist/loader/package.json +10 -0
- package/dist/types/.stencil/xpl-pagination/xpl-pagination.d.ts +3 -0
- package/dist/types/.stencil/xpl-table/xpl-table.d.ts +16 -0
- package/dist/types/components.d.ts +61 -0
- package/dist/types/stencil-public-runtime.d.ts +1562 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +13 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +56 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-3ceb30c2.js');
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
Stencil Client Patch Esm v2.6.0 | MIT Licensed | https://stenciljs.com
|
|
9
|
+
*/
|
|
10
|
+
const patchEsm = () => {
|
|
11
|
+
return index.promiseResolve();
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
const defineCustomElements = (win, options) => {
|
|
15
|
+
if (typeof window === 'undefined') return Promise.resolve();
|
|
16
|
+
return patchEsm().then(() => {
|
|
17
|
+
return index.bootstrapLazy([["xpl-pagination.cjs",[[1,"xpl-pagination"]]],["xpl-table.cjs",[[0,"xpl-table",{"columns":[16],"data":[16],"fixed":[4],"multiselect":[4],"striped":[4],"areAllSelected":[32],"selected":[32]}]]]], options);
|
|
18
|
+
});
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
exports.defineCustomElements = defineCustomElements;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-3ceb30c2.js');
|
|
6
|
+
|
|
7
|
+
const XplPagination = class {
|
|
8
|
+
constructor(hostRef) {
|
|
9
|
+
index.registerInstance(this, hostRef);
|
|
10
|
+
}
|
|
11
|
+
render() {
|
|
12
|
+
return (index.h(index.Host, null, index.h("slot", null)));
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
exports.xpl_pagination = XplPagination;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-3ceb30c2.js');
|
|
6
|
+
|
|
7
|
+
const XplTable = class {
|
|
8
|
+
constructor(hostRef) {
|
|
9
|
+
index.registerInstance(this, hostRef);
|
|
10
|
+
this.tableSelect = index.createEvent(this, "tableSelect", 7);
|
|
11
|
+
this.areAllSelected = false;
|
|
12
|
+
this.selectAll = (e) => {
|
|
13
|
+
const { target } = e;
|
|
14
|
+
if (!(target instanceof HTMLInputElement))
|
|
15
|
+
return;
|
|
16
|
+
const { checked } = target;
|
|
17
|
+
this.areAllSelected = checked;
|
|
18
|
+
this.selected = this.selected.map(() => checked);
|
|
19
|
+
this.onChange();
|
|
20
|
+
};
|
|
21
|
+
this.selectOne = (e, i) => {
|
|
22
|
+
const { target } = e;
|
|
23
|
+
if (!(target instanceof HTMLInputElement))
|
|
24
|
+
return;
|
|
25
|
+
const { checked } = target;
|
|
26
|
+
this.areAllSelected = false;
|
|
27
|
+
this.selected[i] = checked;
|
|
28
|
+
this.onChange();
|
|
29
|
+
};
|
|
30
|
+
this.onChange = () => {
|
|
31
|
+
this.tableSelect.emit({
|
|
32
|
+
selected: this.selected,
|
|
33
|
+
areAllSelected: this.areAllSelected,
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
componentWillLoad() {
|
|
38
|
+
this.areAllSelected = false;
|
|
39
|
+
this.selected = new Array(this.data.length).fill(false);
|
|
40
|
+
}
|
|
41
|
+
render() {
|
|
42
|
+
return (index.h(index.Host, null, index.h("div", { class: "xpl-table-container" }, index.h("table", { class: `xpl-table${this.striped ? " xpl-table--striped" : ""} xpl-table--sticky` }, this.columns && (index.h("thead", null, this.columns.map((column, i) => {
|
|
43
|
+
return (index.h("th", null, this.multiselect && i === 0 ? (index.h("input", { type: "checkbox", onChange: (e) => {
|
|
44
|
+
this.selectAll(e);
|
|
45
|
+
}, checked: this.areAllSelected })) : null, column));
|
|
46
|
+
}))), this.data && (index.h("tbody", null, this.data.map((row) => {
|
|
47
|
+
return (index.h("tr", null, row.map((cell, i) => {
|
|
48
|
+
return (index.h("td", null, this.multiselect && i === 0 ? (index.h("input", { checked: this.selected[i], type: "checkbox", onChange: (e) => this.selectOne(e, i) })) : null, cell));
|
|
49
|
+
})));
|
|
50
|
+
})))))));
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
exports.xpl_table = XplTable;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"entries": [
|
|
3
|
+
"./components/xpl-pagination/xpl-pagination.js",
|
|
4
|
+
"./components/xpl-table/xpl-table.js"
|
|
5
|
+
],
|
|
6
|
+
"compiler": {
|
|
7
|
+
"name": "@stencil/core",
|
|
8
|
+
"version": "2.6.0",
|
|
9
|
+
"typescriptVersion": "4.2.3"
|
|
10
|
+
},
|
|
11
|
+
"collections": [],
|
|
12
|
+
"bundles": []
|
|
13
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { Component, Host, Prop, State, Event, h, } from "@stencil/core";
|
|
2
|
+
export class XplTable {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.areAllSelected = false;
|
|
5
|
+
this.selectAll = (e) => {
|
|
6
|
+
const { target } = e;
|
|
7
|
+
if (!(target instanceof HTMLInputElement))
|
|
8
|
+
return;
|
|
9
|
+
const { checked } = target;
|
|
10
|
+
this.areAllSelected = checked;
|
|
11
|
+
this.selected = this.selected.map(() => checked);
|
|
12
|
+
this.onChange();
|
|
13
|
+
};
|
|
14
|
+
this.selectOne = (e, i) => {
|
|
15
|
+
const { target } = e;
|
|
16
|
+
if (!(target instanceof HTMLInputElement))
|
|
17
|
+
return;
|
|
18
|
+
const { checked } = target;
|
|
19
|
+
this.areAllSelected = false;
|
|
20
|
+
this.selected[i] = checked;
|
|
21
|
+
this.onChange();
|
|
22
|
+
};
|
|
23
|
+
this.onChange = () => {
|
|
24
|
+
this.tableSelect.emit({
|
|
25
|
+
selected: this.selected,
|
|
26
|
+
areAllSelected: this.areAllSelected,
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
componentWillLoad() {
|
|
31
|
+
this.areAllSelected = false;
|
|
32
|
+
this.selected = new Array(this.data.length).fill(false);
|
|
33
|
+
}
|
|
34
|
+
render() {
|
|
35
|
+
return (h(Host, null,
|
|
36
|
+
h("div", { class: "xpl-table-container" },
|
|
37
|
+
h("table", { class: `xpl-table${this.striped ? " xpl-table--striped" : ""} xpl-table--sticky` },
|
|
38
|
+
this.columns && (h("thead", null, this.columns.map((column, i) => {
|
|
39
|
+
return (h("th", null,
|
|
40
|
+
this.multiselect && i === 0 ? (h("input", { type: "checkbox", onChange: (e) => {
|
|
41
|
+
this.selectAll(e);
|
|
42
|
+
}, checked: this.areAllSelected })) : null,
|
|
43
|
+
column));
|
|
44
|
+
}))),
|
|
45
|
+
this.data && (h("tbody", null, this.data.map((row) => {
|
|
46
|
+
return (h("tr", null, row.map((cell, i) => {
|
|
47
|
+
return (h("td", null,
|
|
48
|
+
this.multiselect && i === 0 ? (h("input", { checked: this.selected[i], type: "checkbox", onChange: (e) => this.selectOne(e, i) })) : null,
|
|
49
|
+
cell));
|
|
50
|
+
})));
|
|
51
|
+
})))))));
|
|
52
|
+
}
|
|
53
|
+
static get is() { return "xpl-table"; }
|
|
54
|
+
static get properties() { return {
|
|
55
|
+
"columns": {
|
|
56
|
+
"type": "unknown",
|
|
57
|
+
"mutable": false,
|
|
58
|
+
"complexType": {
|
|
59
|
+
"original": "string[]",
|
|
60
|
+
"resolved": "string[]",
|
|
61
|
+
"references": {}
|
|
62
|
+
},
|
|
63
|
+
"required": false,
|
|
64
|
+
"optional": false,
|
|
65
|
+
"docs": {
|
|
66
|
+
"tags": [],
|
|
67
|
+
"text": ""
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"data": {
|
|
71
|
+
"type": "unknown",
|
|
72
|
+
"mutable": false,
|
|
73
|
+
"complexType": {
|
|
74
|
+
"original": "(string | number)[][]",
|
|
75
|
+
"resolved": "(string | number)[][]",
|
|
76
|
+
"references": {}
|
|
77
|
+
},
|
|
78
|
+
"required": false,
|
|
79
|
+
"optional": false,
|
|
80
|
+
"docs": {
|
|
81
|
+
"tags": [],
|
|
82
|
+
"text": ""
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"fixed": {
|
|
86
|
+
"type": "boolean",
|
|
87
|
+
"mutable": false,
|
|
88
|
+
"complexType": {
|
|
89
|
+
"original": "boolean",
|
|
90
|
+
"resolved": "boolean",
|
|
91
|
+
"references": {}
|
|
92
|
+
},
|
|
93
|
+
"required": false,
|
|
94
|
+
"optional": false,
|
|
95
|
+
"docs": {
|
|
96
|
+
"tags": [],
|
|
97
|
+
"text": ""
|
|
98
|
+
},
|
|
99
|
+
"attribute": "fixed",
|
|
100
|
+
"reflect": false
|
|
101
|
+
},
|
|
102
|
+
"multiselect": {
|
|
103
|
+
"type": "boolean",
|
|
104
|
+
"mutable": false,
|
|
105
|
+
"complexType": {
|
|
106
|
+
"original": "boolean",
|
|
107
|
+
"resolved": "boolean",
|
|
108
|
+
"references": {}
|
|
109
|
+
},
|
|
110
|
+
"required": false,
|
|
111
|
+
"optional": false,
|
|
112
|
+
"docs": {
|
|
113
|
+
"tags": [],
|
|
114
|
+
"text": ""
|
|
115
|
+
},
|
|
116
|
+
"attribute": "multiselect",
|
|
117
|
+
"reflect": false
|
|
118
|
+
},
|
|
119
|
+
"striped": {
|
|
120
|
+
"type": "boolean",
|
|
121
|
+
"mutable": false,
|
|
122
|
+
"complexType": {
|
|
123
|
+
"original": "boolean",
|
|
124
|
+
"resolved": "boolean",
|
|
125
|
+
"references": {}
|
|
126
|
+
},
|
|
127
|
+
"required": false,
|
|
128
|
+
"optional": false,
|
|
129
|
+
"docs": {
|
|
130
|
+
"tags": [],
|
|
131
|
+
"text": ""
|
|
132
|
+
},
|
|
133
|
+
"attribute": "striped",
|
|
134
|
+
"reflect": false
|
|
135
|
+
}
|
|
136
|
+
}; }
|
|
137
|
+
static get states() { return {
|
|
138
|
+
"areAllSelected": {},
|
|
139
|
+
"selected": {}
|
|
140
|
+
}; }
|
|
141
|
+
static get events() { return [{
|
|
142
|
+
"method": "tableSelect",
|
|
143
|
+
"name": "tableSelect",
|
|
144
|
+
"bubbles": true,
|
|
145
|
+
"cancelable": true,
|
|
146
|
+
"composed": true,
|
|
147
|
+
"docs": {
|
|
148
|
+
"tags": [],
|
|
149
|
+
"text": ""
|
|
150
|
+
},
|
|
151
|
+
"complexType": {
|
|
152
|
+
"original": "any",
|
|
153
|
+
"resolved": "any",
|
|
154
|
+
"references": {}
|
|
155
|
+
}
|
|
156
|
+
}]; }
|
|
157
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* ApolloCore custom elements bundle */
|
|
2
|
+
|
|
3
|
+
import type { Components, JSX } from "../types/components";
|
|
4
|
+
|
|
5
|
+
interface XplPagination extends Components.XplPagination, HTMLElement {}
|
|
6
|
+
export const XplPagination: {
|
|
7
|
+
prototype: XplPagination;
|
|
8
|
+
new (): XplPagination;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
interface XplTable extends Components.XplTable, HTMLElement {}
|
|
12
|
+
export const XplTable: {
|
|
13
|
+
prototype: XplTable;
|
|
14
|
+
new (): XplTable;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Utility to define all custom elements within this package using the tag name provided in the component's source.
|
|
19
|
+
* When defining each custom element, it will also check it's safe to define by:
|
|
20
|
+
*
|
|
21
|
+
* 1. Ensuring the "customElements" registry is available in the global context (window).
|
|
22
|
+
* 2. The component tag name is not already defined.
|
|
23
|
+
*
|
|
24
|
+
* Use the standard [customElements.define()](https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/define)
|
|
25
|
+
* method instead to define custom elements individually, or to provide a different tag name.
|
|
26
|
+
*/
|
|
27
|
+
export declare const defineCustomElements: (opts?: any) => void;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Used to manually set the base path where assets can be found.
|
|
31
|
+
* If the script is used as "module", it's recommended to use "import.meta.url",
|
|
32
|
+
* such as "setAssetPath(import.meta.url)". Other options include
|
|
33
|
+
* "setAssetPath(document.currentScript.src)", or using a bundler's replace plugin to
|
|
34
|
+
* dynamically set the path at build time, such as "setAssetPath(process.env.ASSET_PATH)".
|
|
35
|
+
* But do note that this configuration depends on how your script is bundled, or lack of
|
|
36
|
+
* bunding, and where your assets can be loaded from. Additionally custom bundling
|
|
37
|
+
* will have to ensure the static assets are copied to its build directory.
|
|
38
|
+
*/
|
|
39
|
+
export declare const setAssetPath: (path: string) => void;
|
|
40
|
+
|
|
41
|
+
export interface SetPlatformOptions {
|
|
42
|
+
raf?: (c: FrameRequestCallback) => number;
|
|
43
|
+
ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
44
|
+
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
45
|
+
ce?: (eventName: string, opts?: any) => CustomEvent;
|
|
46
|
+
}
|
|
47
|
+
export declare const setPlatformOptions: (opts: SetPlatformOptions) => void;
|
|
48
|
+
|
|
49
|
+
export type { Components, JSX };
|
|
50
|
+
|
|
51
|
+
export * from '../types/components';
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { attachShadow, h, Host, createEvent, proxyCustomElement } from '@stencil/core/internal/client';
|
|
2
|
+
export { setAssetPath, setPlatformOptions } from '@stencil/core/internal/client';
|
|
3
|
+
|
|
4
|
+
const XplPagination$1 = class extends HTMLElement {
|
|
5
|
+
constructor() {
|
|
6
|
+
super();
|
|
7
|
+
this.__registerHost();
|
|
8
|
+
attachShadow(this);
|
|
9
|
+
}
|
|
10
|
+
render() {
|
|
11
|
+
return (h(Host, null, h("slot", null)));
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const XplTable$1 = class extends HTMLElement {
|
|
16
|
+
constructor() {
|
|
17
|
+
super();
|
|
18
|
+
this.__registerHost();
|
|
19
|
+
this.tableSelect = createEvent(this, "tableSelect", 7);
|
|
20
|
+
this.areAllSelected = false;
|
|
21
|
+
this.selectAll = (e) => {
|
|
22
|
+
const { target } = e;
|
|
23
|
+
if (!(target instanceof HTMLInputElement))
|
|
24
|
+
return;
|
|
25
|
+
const { checked } = target;
|
|
26
|
+
this.areAllSelected = checked;
|
|
27
|
+
this.selected = this.selected.map(() => checked);
|
|
28
|
+
this.onChange();
|
|
29
|
+
};
|
|
30
|
+
this.selectOne = (e, i) => {
|
|
31
|
+
const { target } = e;
|
|
32
|
+
if (!(target instanceof HTMLInputElement))
|
|
33
|
+
return;
|
|
34
|
+
const { checked } = target;
|
|
35
|
+
this.areAllSelected = false;
|
|
36
|
+
this.selected[i] = checked;
|
|
37
|
+
this.onChange();
|
|
38
|
+
};
|
|
39
|
+
this.onChange = () => {
|
|
40
|
+
this.tableSelect.emit({
|
|
41
|
+
selected: this.selected,
|
|
42
|
+
areAllSelected: this.areAllSelected,
|
|
43
|
+
});
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
componentWillLoad() {
|
|
47
|
+
this.areAllSelected = false;
|
|
48
|
+
this.selected = new Array(this.data.length).fill(false);
|
|
49
|
+
}
|
|
50
|
+
render() {
|
|
51
|
+
return (h(Host, null, h("div", { class: "xpl-table-container" }, h("table", { class: `xpl-table${this.striped ? " xpl-table--striped" : ""} xpl-table--sticky` }, this.columns && (h("thead", null, this.columns.map((column, i) => {
|
|
52
|
+
return (h("th", null, this.multiselect && i === 0 ? (h("input", { type: "checkbox", onChange: (e) => {
|
|
53
|
+
this.selectAll(e);
|
|
54
|
+
}, checked: this.areAllSelected })) : null, column));
|
|
55
|
+
}))), this.data && (h("tbody", null, this.data.map((row) => {
|
|
56
|
+
return (h("tr", null, row.map((cell, i) => {
|
|
57
|
+
return (h("td", null, this.multiselect && i === 0 ? (h("input", { checked: this.selected[i], type: "checkbox", onChange: (e) => this.selectOne(e, i) })) : null, cell));
|
|
58
|
+
})));
|
|
59
|
+
})))))));
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const XplPagination = /*@__PURE__*/proxyCustomElement(XplPagination$1, [1,"xpl-pagination"]);
|
|
64
|
+
const XplTable = /*@__PURE__*/proxyCustomElement(XplTable$1, [0,"xpl-table",{"columns":[16],"data":[16],"fixed":[4],"multiselect":[4],"striped":[4],"areAllSelected":[32],"selected":[32]}]);
|
|
65
|
+
const defineCustomElements = (opts) => {
|
|
66
|
+
if (typeof customElements !== 'undefined') {
|
|
67
|
+
[
|
|
68
|
+
XplPagination,
|
|
69
|
+
XplTable
|
|
70
|
+
].forEach(cmp => {
|
|
71
|
+
if (!customElements.get(cmp.is)) {
|
|
72
|
+
customElements.define(cmp.is, cmp, opts);
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export { XplPagination, XplTable, defineCustomElements };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-52844266.js';
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
Stencil Client Patch Browser v2.6.0 | MIT Licensed | https://stenciljs.com
|
|
5
|
+
*/
|
|
6
|
+
const patchBrowser = () => {
|
|
7
|
+
const importMeta = import.meta.url;
|
|
8
|
+
const opts = {};
|
|
9
|
+
if (importMeta !== '') {
|
|
10
|
+
opts.resourcesUrl = new URL('.', importMeta).href;
|
|
11
|
+
}
|
|
12
|
+
return promiseResolve(opts);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
patchBrowser().then(options => {
|
|
16
|
+
return bootstrapLazy([["xpl-pagination",[[1,"xpl-pagination"]]],["xpl-table",[[0,"xpl-table",{"columns":[16],"data":[16],"fixed":[4],"multiselect":[4],"striped":[4],"areAllSelected":[32],"selected":[32]}]]]], options);
|
|
17
|
+
});
|