@everymatrix/lottery-hakuna-ticket-history 0.0.12 → 0.0.14

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.
Files changed (22) hide show
  1. package/dist/cjs/index.cjs.js +1 -1
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/lottery-button_8.cjs.entry.js +108 -27
  4. package/dist/cjs/{lottery-hakuna-ticket-history-155db5ed.js → lottery-hakuna-ticket-history-ec8bf5d5.js} +1 -1
  5. package/dist/cjs/lottery-hakuna-ticket-history.cjs.js +1 -1
  6. package/dist/collection/components/lottery-hakuna-ticket-history/lottery-hakuna-ticket-history.js +1 -1
  7. package/dist/collection/components/lottery-infinite-scroll/locale.utils.js +43 -0
  8. package/dist/collection/components/lottery-infinite-scroll/lottery-infinite-scroll.js +136 -4
  9. package/dist/esm/index.js +1 -1
  10. package/dist/esm/loader.js +1 -1
  11. package/dist/esm/lottery-button_8.entry.js +109 -28
  12. package/dist/esm/{lottery-hakuna-ticket-history-4cb107bf.js → lottery-hakuna-ticket-history-35d86d50.js} +1 -1
  13. package/dist/esm/lottery-hakuna-ticket-history.js +1 -1
  14. package/dist/lottery-hakuna-ticket-history/index.esm.js +1 -1
  15. package/dist/lottery-hakuna-ticket-history/lottery-button_8.entry.js +1 -1
  16. package/dist/lottery-hakuna-ticket-history/{lottery-hakuna-ticket-history-4cb107bf.js → lottery-hakuna-ticket-history-35d86d50.js} +1 -1
  17. package/dist/lottery-hakuna-ticket-history/lottery-hakuna-ticket-history.esm.js +1 -1
  18. package/dist/types/components/lottery-hakuna-ticket-history/lottery-hakuna-ticket-history.d.ts +2 -2
  19. package/dist/types/components/lottery-infinite-scroll/locale.utils.d.ts +3 -0
  20. package/dist/types/components/lottery-infinite-scroll/lottery-infinite-scroll.d.ts +25 -0
  21. package/dist/types/components.d.ts +40 -0
  22. package/package.json +1 -1
@@ -93,6 +93,14 @@ export namespace Components {
93
93
  "translationUrl": string;
94
94
  }
95
95
  interface LotteryInfiniteScroll {
96
+ /**
97
+ * Custom CSS styles to apply to the component.
98
+ */
99
+ "clientStyling": string;
100
+ /**
101
+ * URL to a custom CSS file for additional styling.
102
+ */
103
+ "clientStylingUrl": string;
96
104
  /**
97
105
  * The height of the scrollable container.
98
106
  */
@@ -118,6 +126,14 @@ export namespace Components {
118
126
  * The list of items to be displayed in the infinite scroll.
119
127
  */
120
128
  "items": any[];
129
+ /**
130
+ * The language code to use for translations. Defaults to 'en'.
131
+ */
132
+ "language": string;
133
+ /**
134
+ * The source for stream styling via a service.
135
+ */
136
+ "mbSource": string;
121
137
  /**
122
138
  * For Grid layout: The minimum width (in pixels) for each item. Used with CSS Grid's `auto-fill` to determine column count.
123
139
  * @default 340
@@ -150,6 +166,10 @@ export namespace Components {
150
166
  * The IntersectionObserver's rootMargin. Defines the distance from the bottom of the scroll container to trigger the `loadMore` event. E.g., '0px 0px 200px 0px' triggers when 200px from the bottom.
151
167
  */
152
168
  "threshold": string;
169
+ /**
170
+ * URL to fetch custom translation data from.
171
+ */
172
+ "translationUrl": string;
153
173
  }
154
174
  }
155
175
  export interface LotteryInfiniteScrollCustomEvent<T> extends CustomEvent<T> {
@@ -274,6 +294,14 @@ declare namespace LocalJSX {
274
294
  "translationUrl"?: string;
275
295
  }
276
296
  interface LotteryInfiniteScroll {
297
+ /**
298
+ * Custom CSS styles to apply to the component.
299
+ */
300
+ "clientStyling"?: string;
301
+ /**
302
+ * URL to a custom CSS file for additional styling.
303
+ */
304
+ "clientStylingUrl"?: string;
277
305
  /**
278
306
  * The height of the scrollable container.
279
307
  */
@@ -299,6 +327,14 @@ declare namespace LocalJSX {
299
327
  * The list of items to be displayed in the infinite scroll.
300
328
  */
301
329
  "items"?: any[];
330
+ /**
331
+ * The language code to use for translations. Defaults to 'en'.
332
+ */
333
+ "language"?: string;
334
+ /**
335
+ * The source for stream styling via a service.
336
+ */
337
+ "mbSource"?: string;
302
338
  /**
303
339
  * For Grid layout: The minimum width (in pixels) for each item. Used with CSS Grid's `auto-fill` to determine column count.
304
340
  * @default 340
@@ -339,6 +375,10 @@ declare namespace LocalJSX {
339
375
  * The IntersectionObserver's rootMargin. Defines the distance from the bottom of the scroll container to trigger the `loadMore` event. E.g., '0px 0px 200px 0px' triggers when 200px from the bottom.
340
376
  */
341
377
  "threshold"?: string;
378
+ /**
379
+ * URL to fetch custom translation data from.
380
+ */
381
+ "translationUrl"?: string;
342
382
  }
343
383
  interface IntrinsicElements {
344
384
  "lottery-hakuna-ticket-history": LotteryHakunaTicketHistory;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/lottery-hakuna-ticket-history",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",