@everymatrix/bonus-pagination-nav 1.29.9
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/dist/bonus-pagination-nav/bonus-pagination-nav.esm.js +1 -0
- package/dist/bonus-pagination-nav/index.esm.js +0 -0
- package/dist/bonus-pagination-nav/p-06373b64.js +1 -0
- package/dist/bonus-pagination-nav/p-fc173a41.entry.js +1 -0
- package/dist/cjs/bonus-pagination-nav.cjs.entry.js +188 -0
- package/dist/cjs/bonus-pagination-nav.cjs.js +19 -0
- package/dist/cjs/index-fb15607a.js +1189 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/bonus-pagination-nav/bonus-pagination-nav.css +51 -0
- package/dist/collection/components/bonus-pagination-nav/bonus-pagination-nav.js +359 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +65 -0
- package/dist/components/bonus-pagination-nav.d.ts +11 -0
- package/dist/components/bonus-pagination-nav.js +215 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/bonus-pagination-nav.entry.js +184 -0
- package/dist/esm/bonus-pagination-nav.js +17 -0
- package/dist/esm/index-7299a1fa.js +1163 -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/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +24 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/bonus-pagination-nav/.stencil/packages/bonus-pagination-nav/stencil.config.d.ts +2 -0
- package/dist/types/components/bonus-pagination-nav/bonus-pagination-nav.d.ts +55 -0
- package/dist/types/components.d.ts +118 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +17 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +19 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
export namespace Components {
|
|
9
|
+
interface BonusPaginationNav {
|
|
10
|
+
/**
|
|
11
|
+
* Customize pagination: Activate pagination arrows
|
|
12
|
+
*/
|
|
13
|
+
"arrowsActive": boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Customize pagination: Activate pagination numbered navigation
|
|
16
|
+
*/
|
|
17
|
+
"displayPageNumbers": boolean;
|
|
18
|
+
/**
|
|
19
|
+
* If show the page of message, eg: `1-20 of 100`
|
|
20
|
+
*/
|
|
21
|
+
"displayRangeOfTotal": boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Language
|
|
24
|
+
*/
|
|
25
|
+
"language": string;
|
|
26
|
+
/**
|
|
27
|
+
* The received limit for the number of pages
|
|
28
|
+
*/
|
|
29
|
+
"limit": number;
|
|
30
|
+
/**
|
|
31
|
+
* The offset of dataset
|
|
32
|
+
*/
|
|
33
|
+
"offset": number;
|
|
34
|
+
/**
|
|
35
|
+
* Customize pagination: Activate pagination secondary arrows
|
|
36
|
+
*/
|
|
37
|
+
"secondaryArrowsActive": boolean;
|
|
38
|
+
/**
|
|
39
|
+
* The table id, use to identify which table listen the page change message when there is more than 1 table on same page
|
|
40
|
+
*/
|
|
41
|
+
"tableId": string;
|
|
42
|
+
/**
|
|
43
|
+
* The received length of dataset
|
|
44
|
+
*/
|
|
45
|
+
"total": number;
|
|
46
|
+
/**
|
|
47
|
+
* Translation via url
|
|
48
|
+
*/
|
|
49
|
+
"translationUrl": string;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
declare global {
|
|
53
|
+
interface HTMLBonusPaginationNavElement extends Components.BonusPaginationNav, HTMLStencilElement {
|
|
54
|
+
}
|
|
55
|
+
var HTMLBonusPaginationNavElement: {
|
|
56
|
+
prototype: HTMLBonusPaginationNavElement;
|
|
57
|
+
new (): HTMLBonusPaginationNavElement;
|
|
58
|
+
};
|
|
59
|
+
interface HTMLElementTagNameMap {
|
|
60
|
+
"bonus-pagination-nav": HTMLBonusPaginationNavElement;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
declare namespace LocalJSX {
|
|
64
|
+
interface BonusPaginationNav {
|
|
65
|
+
/**
|
|
66
|
+
* Customize pagination: Activate pagination arrows
|
|
67
|
+
*/
|
|
68
|
+
"arrowsActive"?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Customize pagination: Activate pagination numbered navigation
|
|
71
|
+
*/
|
|
72
|
+
"displayPageNumbers"?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* If show the page of message, eg: `1-20 of 100`
|
|
75
|
+
*/
|
|
76
|
+
"displayRangeOfTotal"?: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Language
|
|
79
|
+
*/
|
|
80
|
+
"language"?: string;
|
|
81
|
+
/**
|
|
82
|
+
* The received limit for the number of pages
|
|
83
|
+
*/
|
|
84
|
+
"limit"?: number;
|
|
85
|
+
/**
|
|
86
|
+
* The offset of dataset
|
|
87
|
+
*/
|
|
88
|
+
"offset"?: number;
|
|
89
|
+
"onReloadPageByType"?: (event: CustomEvent<any>) => void;
|
|
90
|
+
/**
|
|
91
|
+
* Customize pagination: Activate pagination secondary arrows
|
|
92
|
+
*/
|
|
93
|
+
"secondaryArrowsActive"?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* The table id, use to identify which table listen the page change message when there is more than 1 table on same page
|
|
96
|
+
*/
|
|
97
|
+
"tableId"?: string;
|
|
98
|
+
/**
|
|
99
|
+
* The received length of dataset
|
|
100
|
+
*/
|
|
101
|
+
"total"?: number;
|
|
102
|
+
/**
|
|
103
|
+
* Translation via url
|
|
104
|
+
*/
|
|
105
|
+
"translationUrl"?: string;
|
|
106
|
+
}
|
|
107
|
+
interface IntrinsicElements {
|
|
108
|
+
"bonus-pagination-nav": BonusPaginationNav;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
export { LocalJSX as JSX };
|
|
112
|
+
declare module "@stencil/core" {
|
|
113
|
+
export namespace JSX {
|
|
114
|
+
interface IntrinsicElements {
|
|
115
|
+
"bonus-pagination-nav": LocalJSX.BonusPaginationNav & JSXBase.HTMLAttributes<HTMLBonusPaginationNavElement>;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|