@spash/frontlib 0.0.21-beta.3 → 0.0.21-beta.5

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/main.d.ts CHANGED
@@ -81,6 +81,20 @@ export declare interface CompetitionNgtvSessionDetail {
81
81
  status: string;
82
82
  }
83
83
 
84
+ export declare interface ComputerLog {
85
+ id: string;
86
+ computer_id: string;
87
+ event_type: 'keep_alive' | 'video_loading_timeout';
88
+ data: string;
89
+ created_at: string;
90
+ updated_at: string;
91
+ }
92
+
93
+ export declare interface ComputerLogPayload {
94
+ event_type: 'keep_alive' | 'video_loading_timeout';
95
+ data: Record<string, unknown>;
96
+ }
97
+
84
98
  declare const _default: (app: App, options?: AppOptions) => void;
85
99
  export default _default;
86
100
 
@@ -521,6 +535,7 @@ export declare interface SportCenter {
521
535
  updatedAt: string;
522
536
  vpnIp: string;
523
537
  interactive: boolean;
538
+ keepAliveInterval: number;
524
539
  }[];
525
540
  }
526
541
 
package/dist/main.js CHANGED
@@ -28567,9 +28567,9 @@ const o5 = /* @__PURE__ */ Mg(i5), a5 = { class: "absolute w-full bottom-0 left-
28567
28567
  const r = n, s = t, { keyboardClass: i, input: o, layout: a, locale: l } = St(r), c = me(), u = me(o.value), d = me(null), h = (y) => {
28568
28568
  var b;
28569
28569
  let R = y;
28570
- R.length >= r.max && (R = R.slice(0, r.max));
28571
- const I = ((b = d.value) == null ? void 0 : b.selectionStart) || R.length;
28572
- c.value.setInput(R), u.value = R, s("change", R), c.value.setCaretPosition(I);
28570
+ R.length >= r.max && (R = R.slice(0, r.max)), c.value.setInput(R), u.value = R, s("change", R);
28571
+ const I = Math.max(((b = d.value) == null ? void 0 : b.selectionStart) || R.length, R.length);
28572
+ c.value.setCaretPosition(I);
28573
28573
  }, g = (y) => {
28574
28574
  if (s("onKeyPress", y), (y === "{shift}" || y === "{unshift}" || y === "{lock}") && p(), y === "{clear}" && v(), y === "{enter}" && s("close"), y === "{bksp}") {
28575
28575
  const R = c.value.getInput().slice(0, c.value.getInput().length - 1);
@@ -31354,7 +31354,7 @@ const IL = () => {
31354
31354
  };
31355
31355
  }, uO = {
31356
31356
  commons: {
31357
- touchForPlay: "Touchez l'écran pour jouer",
31357
+ touchForPlay: "Touche l'écran pour jouer",
31358
31358
  hoursAbv: "h",
31359
31359
  hours: "heures",
31360
31360
  minutesAbv: "min",
@@ -37400,12 +37400,15 @@ const yL = /* @__PURE__ */ Mg(vL), ML = yL(function() {
37400
37400
  secondary: "rgb(var(--color-secondary))",
37401
37401
  "secondary-darker": "rgb(var(--color-secondary-darker))",
37402
37402
  "text-primary": "rgb(var(--color-text-primary))",
37403
+ "introduction-primary": "rgb(var(--color-introduction-primary))",
37403
37404
  "text-timer": "rgb(var(--color-text-timer))",
37404
37405
  "buzz-primary": "rgb(var(--color-buzz-primary))",
37405
37406
  "buzz-primary-darker": "rgb(var(--color-buzz-primary-darker))",
37406
37407
  "buzz-primary-text": "rgb(var(--color-buzz-primary-text))",
37407
37408
  "team-a": "rgb(var(--color-team-a))",
37408
37409
  "team-b": "rgb(var(--color-team-b))",
37410
+ "foot-team-a": "rgb(var(--color-foot-team-a))",
37411
+ "foot-team-b": "rgb(var(--color-foot-team-b))",
37409
37412
  "button-text-primary": "rgb(var(--color-button-text-primary))",
37410
37413
  "button-bg-primary": "rgb(var(--color-button-bg-primary))",
37411
37414
  "button-text-secondary": "rgb(var(--color-button-text-secondary))",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spash/frontlib",
3
- "version": "0.0.21-beta.3",
3
+ "version": "0.0.21-beta.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"