quasar-ui-danx 0.4.77 → 0.4.78

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.4.77",
3
+ "version": "0.4.78",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -1,4 +1,4 @@
1
- import { AnyObject } from "src/types";
1
+ import { AnyObject } from "../../types";
2
2
 
3
3
  export type DropZoneResolver = ((e: DragEvent) => HTMLElement) | string | null;
4
4
  export type DragAndDropCallback = ((e: DragEvent, data: DraggableData) => void) | null;
@@ -1,5 +1,5 @@
1
1
  import ExifReader from "exifreader";
2
- import { UploadedFile } from "src/types";
2
+ import { UploadedFile } from "../types";
3
3
  import { useCompatibility } from "./compatibility";
4
4
  import { FlashMessages } from "./FlashMessages";
5
5
 
@@ -64,7 +64,7 @@ export function useActionRoutes(baseUrl: string, extend?: object): ListControlsR
64
64
  }
65
65
  };
66
66
  data = data || {};
67
- const response = await request.post(`${baseUrl}/${target ? target.id : "new"}/apply-action`, {
67
+ const response = await request.post(`${baseUrl}/${target ? target.id + "/" : ""}apply-action`, {
68
68
  action,
69
69
  data
70
70
  }, options) as ApplyActionResponse;
@@ -1,5 +1,5 @@
1
- import { AnyObject } from "src/types";
2
1
  import { Ref, watch } from "vue";
2
+ import { AnyObject } from "../types";
3
3
 
4
4
  export { useDebounceFn } from "@vueuse/core";
5
5
 
@@ -1,4 +1,4 @@
1
- import { AnyObject, TypedObject } from "src/types/shared";
1
+ import { AnyObject, TypedObject } from "../types";
2
2
 
3
3
  export interface FileUploadOptions {
4
4
  directory?: string,