@spash/frontlib 0.0.24-beta.2 → 0.0.24-beta.4

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 (3) hide show
  1. package/dist/main.d.ts +4 -2
  2. package/dist/main.js +1708 -1706
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -6,8 +6,8 @@ import { DateTimeUnit } from 'luxon';
6
6
  import { MonthNumbers } from 'luxon';
7
7
  import { PluginCreator } from 'tailwindcss/types/config';
8
8
  import { Ref } from 'vue';
9
- import { default as useCookies } from './composables/useCookies.ts';
10
9
  import { useI18n } from 'vue-i18n';
10
+ import { VueCookies } from 'vue3-cookies/dist/interfaces';
11
11
 
12
12
  declare interface AppOptions {
13
13
  autoImport?: {
@@ -129,6 +129,8 @@ export declare interface DoohContent {
129
129
  competitionDetails: CompetitionDetail;
130
130
  highlight: SessionEvent;
131
131
  multiplexEvents: SessionEvent[];
132
+ orientation: 'landscape' | 'portrait';
133
+ type: 'lite' | 'full';
132
134
  }
133
135
 
134
136
  declare type DoohContentContentType = 'article' | 'highlights' | 'image' | 'video' | 'competition' | 'multiplex' | 'ads' | 'bookings' | 'error';
@@ -600,7 +602,7 @@ export declare const useCompetition: ({ t }?: {
600
602
  */
601
603
  export declare const useComponent: (app: App, components: any, moduleComponents: any) => void;
602
604
 
603
- export { useCookies }
605
+ export declare const useCookies: () => VueCookies;
604
606
 
605
607
  export declare const useDisplayImage: () => {
606
608
  logoInline: Ref<any, any>;