@everymatrix/lottery-pagination 1.51.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/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/index-249d3d4d.js +1186 -0
- package/dist/cjs/index.cjs.js +10 -0
- package/dist/cjs/loader.cjs.js +15 -0
- package/dist/cjs/lottery-pagination-e934e1e8.js +247 -0
- package/dist/cjs/lottery-pagination.cjs.entry.js +10 -0
- package/dist/cjs/lottery-pagination.cjs.js +25 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/lottery-pagination/index.js +1 -0
- package/dist/collection/components/lottery-pagination/lottery-pagination.css +136 -0
- package/dist/collection/components/lottery-pagination/lottery-pagination.js +440 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +43 -0
- package/dist/collection/utils/utils.js +15 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/index-49de5c89.js +1159 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/loader.js +11 -0
- package/dist/esm/lottery-pagination-50564510.js +245 -0
- package/dist/esm/lottery-pagination.entry.js +2 -0
- package/dist/esm/lottery-pagination.js +20 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/lottery-pagination/index.esm.js +1 -0
- package/dist/lottery-pagination/lottery-pagination.esm.js +1 -0
- package/dist/lottery-pagination/p-9e29d391.js +1 -0
- package/dist/lottery-pagination/p-ce0101e8.js +2 -0
- package/dist/lottery-pagination/p-e0782a32.entry.js +1 -0
- package/dist/lottery-pagination/p-e1255160.js +1 -0
- package/dist/stencil.config.dev.js +16 -0
- package/dist/stencil.config.js +17 -0
- package/dist/storybook/main.js +21 -0
- package/dist/storybook/preview.js +9 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/lottery-pagination/.stencil/packages/stencil/lottery-pagination/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/lottery-pagination/.stencil/packages/stencil/lottery-pagination/stencil.config.dev.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/lottery-pagination/.stencil/packages/stencil/lottery-pagination/storybook/main.d.ts +3 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/lottery-pagination/.stencil/packages/stencil/lottery-pagination/storybook/preview.d.ts +70 -0
- package/dist/types/components/lottery-pagination/index.d.ts +1 -0
- package/dist/types/components/lottery-pagination/lottery-pagination.d.ts +97 -0
- package/dist/types/components.d.ts +146 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1680 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/dist/types/utils/utils.d.ts +8 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +26 -0
|
@@ -0,0 +1,146 @@
|
|
|
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 LotteryPagination {
|
|
10
|
+
/**
|
|
11
|
+
* Customize pagination: Activate pagination arrows
|
|
12
|
+
*/
|
|
13
|
+
"arrowsActive": boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Client custom styling via string
|
|
16
|
+
*/
|
|
17
|
+
"clientStyling": string;
|
|
18
|
+
/**
|
|
19
|
+
* Client custom styling via url content
|
|
20
|
+
*/
|
|
21
|
+
"clientStylingUrlContent": string;
|
|
22
|
+
"isReset": boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Language
|
|
25
|
+
*/
|
|
26
|
+
"language": string;
|
|
27
|
+
/**
|
|
28
|
+
* The received limit for the number of pages
|
|
29
|
+
*/
|
|
30
|
+
"limit": number;
|
|
31
|
+
/**
|
|
32
|
+
* Next page string value - determines if the next page is disabled or active
|
|
33
|
+
*/
|
|
34
|
+
"nextPage": boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Customize pagination: Activate pagination numbered navigation
|
|
37
|
+
*/
|
|
38
|
+
"numberedNavActive": boolean;
|
|
39
|
+
/**
|
|
40
|
+
* The received offset
|
|
41
|
+
*/
|
|
42
|
+
"offset": number;
|
|
43
|
+
/**
|
|
44
|
+
* Previous page string value - determines if the previous page is disabled or active
|
|
45
|
+
*/
|
|
46
|
+
"prevPage": boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Customize pagination: Activate pagination secondary arrows
|
|
49
|
+
*/
|
|
50
|
+
"secondaryArrowsActive": boolean;
|
|
51
|
+
/**
|
|
52
|
+
* The received total number of pages
|
|
53
|
+
*/
|
|
54
|
+
"total": number;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
export interface LotteryPaginationCustomEvent<T> extends CustomEvent<T> {
|
|
58
|
+
detail: T;
|
|
59
|
+
target: HTMLLotteryPaginationElement;
|
|
60
|
+
}
|
|
61
|
+
declare global {
|
|
62
|
+
interface HTMLLotteryPaginationElementEventMap {
|
|
63
|
+
"hpPageChange": any;
|
|
64
|
+
}
|
|
65
|
+
interface HTMLLotteryPaginationElement extends Components.LotteryPagination, HTMLStencilElement {
|
|
66
|
+
addEventListener<K extends keyof HTMLLotteryPaginationElementEventMap>(type: K, listener: (this: HTMLLotteryPaginationElement, ev: LotteryPaginationCustomEvent<HTMLLotteryPaginationElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
67
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
68
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
69
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
70
|
+
removeEventListener<K extends keyof HTMLLotteryPaginationElementEventMap>(type: K, listener: (this: HTMLLotteryPaginationElement, ev: LotteryPaginationCustomEvent<HTMLLotteryPaginationElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
71
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
72
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
73
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
74
|
+
}
|
|
75
|
+
var HTMLLotteryPaginationElement: {
|
|
76
|
+
prototype: HTMLLotteryPaginationElement;
|
|
77
|
+
new (): HTMLLotteryPaginationElement;
|
|
78
|
+
};
|
|
79
|
+
interface HTMLElementTagNameMap {
|
|
80
|
+
"lottery-pagination": HTMLLotteryPaginationElement;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
declare namespace LocalJSX {
|
|
84
|
+
interface LotteryPagination {
|
|
85
|
+
/**
|
|
86
|
+
* Customize pagination: Activate pagination arrows
|
|
87
|
+
*/
|
|
88
|
+
"arrowsActive"?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Client custom styling via string
|
|
91
|
+
*/
|
|
92
|
+
"clientStyling"?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Client custom styling via url content
|
|
95
|
+
*/
|
|
96
|
+
"clientStylingUrlContent"?: string;
|
|
97
|
+
"isReset"?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Language
|
|
100
|
+
*/
|
|
101
|
+
"language"?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The received limit for the number of pages
|
|
104
|
+
*/
|
|
105
|
+
"limit"?: number;
|
|
106
|
+
/**
|
|
107
|
+
* Next page string value - determines if the next page is disabled or active
|
|
108
|
+
*/
|
|
109
|
+
"nextPage"?: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Customize pagination: Activate pagination numbered navigation
|
|
112
|
+
*/
|
|
113
|
+
"numberedNavActive"?: boolean;
|
|
114
|
+
/**
|
|
115
|
+
* The received offset
|
|
116
|
+
*/
|
|
117
|
+
"offset"?: number;
|
|
118
|
+
/**
|
|
119
|
+
* Event that handles the navigation, updating the offset, limit and total values
|
|
120
|
+
*/
|
|
121
|
+
"onHpPageChange"?: (event: LotteryPaginationCustomEvent<any>) => void;
|
|
122
|
+
/**
|
|
123
|
+
* Previous page string value - determines if the previous page is disabled or active
|
|
124
|
+
*/
|
|
125
|
+
"prevPage"?: boolean;
|
|
126
|
+
/**
|
|
127
|
+
* Customize pagination: Activate pagination secondary arrows
|
|
128
|
+
*/
|
|
129
|
+
"secondaryArrowsActive"?: boolean;
|
|
130
|
+
/**
|
|
131
|
+
* The received total number of pages
|
|
132
|
+
*/
|
|
133
|
+
"total"?: number;
|
|
134
|
+
}
|
|
135
|
+
interface IntrinsicElements {
|
|
136
|
+
"lottery-pagination": LotteryPagination;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
export { LocalJSX as JSX };
|
|
140
|
+
declare module "@stencil/core" {
|
|
141
|
+
export namespace JSX {
|
|
142
|
+
interface IntrinsicElements {
|
|
143
|
+
"lottery-pagination": LocalJSX.LotteryPagination & JSXBase.HTMLAttributes<HTMLLotteryPaginationElement>;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components/lottery-pagination';
|