Skip to content

Commit 1c0fe4f

Browse files
Cleaning up
1 parent bfe021d commit 1c0fe4f

File tree

3 files changed

+4
-103
lines changed

3 files changed

+4
-103
lines changed

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"dev": "vite",
1111
"watch": "pnpm dev",
1212
"play": "sh src/playground/configs/build.sh && NODE_ENV=playground vite",
13-
"bundle": "rollup -c --bundleConfigAsCjs",
1413
"build": "vue-tsc && vite build --config vite.build.config.ts",
1514
"build:docs": "vite build",
1615
"predeploy": "npm run build",
@@ -77,9 +76,7 @@
7776
"@fortawesome/free-solid-svg-icons": "^6.4.0",
7877
"@fortawesome/vue-fontawesome": "^3.0.3",
7978
"@mdi/font": "^7.2.96",
80-
"@rollup/plugin-alias": "^5.0.0",
8179
"@rollup/plugin-commonjs": "^25.0.2",
82-
"@rollup/plugin-json": "^6.0.0",
8380
"@rollup/plugin-node-resolve": "^15.1.0",
8481
"@rollup/plugin-terser": "^0.4.3",
8582
"@types/node": "^20.3.1",
@@ -92,7 +89,6 @@
9289
"@vue/compiler-sfc": "^3.3.4",
9390
"@vue/eslint-config-typescript": "^11.0.3",
9491
"autoprefixer": "^10.4.14",
95-
"axios": "^1.4.0",
9692
"eslint": "^8.43.0",
9793
"eslint-config-prettier": "^8.8.0",
9894
"eslint-plugin-import": "^2.27.5",
@@ -101,7 +97,6 @@
10197
"gh-pages": "^5.0.0",
10298
"husky": "^8.0.3",
10399
"lint-staged": "^13.2.2",
104-
"miragejs": "^0.1.47",
105100
"pinia": "^2.1.4",
106101
"postcss": "^8.4.24",
107102
"postcss-html": "^1.5.0",

pnpm-lock.yaml

Lines changed: 4 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/types/index.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ import type {
1313
} from 'vuetify/components';
1414
import type { IconOptions } from 'vuetify';
1515
import type { EventBusKey } from '@vueuse/core';
16-
import {
17-
AxiosError,
18-
} from 'axios';
1916

2017

2118
// -------------------------------------------------- Types //
@@ -276,23 +273,6 @@ export interface UseDisplayValueStyles {
276273
): CSSProperties;
277274
}
278275

279-
export interface UseSaveValue {
280-
(
281-
options: {
282-
settings: {
283-
[key: string]: string | unknown;
284-
},
285-
emit: {
286-
(e: 'loading', response: boolean): void;
287-
(e: 'error', error: AxiosError): AxiosError;
288-
(e: 'update', response: unknown): void;
289-
},
290-
name: SharedProps['name'],
291-
value: FieldValue,
292-
}
293-
): Promise<{ [key: string]: string | unknown; } | undefined>;
294-
}
295-
296276
export interface UseToggleField {
297277
(
298278
options: {

0 commit comments

Comments
 (0)