@xy-planning-network/trees 0.6.5-rc-5 → 0.6.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/config/eslint.js CHANGED
@@ -7,7 +7,7 @@ module.exports = {
7
7
  "plugin:vue/vue3-recommended",
8
8
  "eslint:recommended",
9
9
  "@vue/eslint-config-typescript",
10
- "@vue/eslint-config-prettier",
10
+ "@vue/eslint-config-prettier/skip-formatting",
11
11
  ],
12
12
  parserOptions: {
13
13
  ecmaVersion: "latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xy-planning-network/trees",
3
- "version": "0.6.5-rc-5",
3
+ "version": "0.6.5",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "repository": "github:xy-planning-network/trees",
@@ -25,8 +25,9 @@
25
25
  "build": "npm run lint && vue-tsc -p src --emitDeclarationOnly && vite build && npm run copy:types && tsc-alias -p src/tsconfig.json",
26
26
  "build:docs": "vue-tsc -p dev --noEmit && vite build --config vite.docs.config.ts",
27
27
  "copy:types": "copyfiles -f ./src/*.d.ts ./types",
28
- "lint": "eslint --ext .js,.ts,.vue src",
29
- "lint:fix": "eslint --fix --ext .js,.ts,.vue src dev && prettier -w -u src dev",
28
+ "format": "prettier --write src dev",
29
+ "lint": "eslint --ext .js,.ts,.vue src dev",
30
+ "lint:fix": "eslint --fix --ext .js,.ts,.vue src dev",
30
31
  "preview": "vite preview --config vite.docs.config.ts",
31
32
  "typecheck": "npm run typecheck:src && npm run typecheck:docs",
32
33
  "typecheck:src": "vue-tsc -p src --noEmit",
@@ -1 +0,0 @@
1
- export declare function getBaseUrl(): string;
@@ -1,19 +0,0 @@
1
- import { VNode } from "vue";
2
- import { Options, Placement } from "@popperjs/core";
3
- export declare type PopperPosition = Placement;
4
- export declare const offsetModifier: (skidding: number, distance: number) => {
5
- options: {
6
- offset: () => number[];
7
- };
8
- name: "offset";
9
- enabled: boolean;
10
- phase: import("@popperjs/core").ModifierPhases;
11
- requires?: string[] | undefined;
12
- requiresIfExists?: string[] | undefined;
13
- fn: (arg0: import("@popperjs/core").ModifierArguments<import("@popperjs/core/lib/modifiers/offset").Options>) => void | import("@popperjs/core").State;
14
- effect?: ((arg0: import("@popperjs/core").ModifierArguments<import("@popperjs/core/lib/modifiers/offset").Options>) => void | (() => void)) | undefined;
15
- data?: import("@popperjs/core").Obj | undefined;
16
- };
17
- export declare function usePopper(opts: Partial<Options>): import("vue").Ref<VNode<import("vue").RendererNode, import("vue").RendererElement, {
18
- [key: string]: any;
19
- }> | HTMLElement | undefined>[];
@@ -1,12 +0,0 @@
1
- export interface Pagination {
2
- page: number;
3
- perPage: number;
4
- totalItems: number;
5
- totalPages: number;
6
- }
7
- export interface PaginationItems<T = any> {
8
- items: T[];
9
- }
10
- export interface PaginationData<T = any> {
11
- data: Pagination & PaginationItems<T>;
12
- }