@spash/frontlib 0.0.24-beta.3 → 0.0.24-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.
Files changed (3) hide show
  1. package/dist/main.d.ts +4 -1
  2. package/dist/main.js +3523 -3500
  3. package/package.json +1 -1
package/dist/main.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { App } from 'vue';
2
2
  import { AxiosInstance } from 'axios';
3
+ import { ComputedRef } from 'vue';
3
4
  import { Config } from 'tailwindcss/types/config';
4
5
  import { DateTime } from 'luxon';
5
6
  import { DateTimeUnit } from 'luxon';
@@ -611,9 +612,10 @@ export declare const useDisplayImage: () => {
611
612
  reloadImages: (theme: string) => void;
612
613
  };
613
614
 
614
- export declare const useHelper: ({ t, router }?: {
615
+ export declare const useHelper: ({ t, router, apiUrlTemp }?: {
615
616
  t?: any;
616
617
  router?: any;
618
+ apiUrlTemp?: string;
617
619
  }) => {
618
620
  timeout: Ref<any, any>;
619
621
  getAndParseObjectFromLocalStorage: (key: string) => any;
@@ -631,6 +633,7 @@ export declare const useHelper: ({ t, router }?: {
631
633
  arrayUniqueValue: (array: any[], key: string) => any[];
632
634
  sleep: (ms: number) => Promise<unknown>;
633
635
  checkIfComponentExists: (componentName: string) => boolean;
636
+ apiUrl: ComputedRef<string>;
634
637
  };
635
638
 
636
639
  export { useI18n }