@stonecrop/desktop 0.16.2 → 0.16.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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.7"
8
+ "packageVersion": "7.58.11"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/desktop",
3
- "version": "0.16.2",
3
+ "version": "0.16.4",
4
4
  "description": "Desktop-specific components for Stonecrop UI",
5
5
  "bugs": {
6
6
  "url": "https://github.com/agritheory/stonecrop/issues"
@@ -33,11 +33,11 @@
33
33
  "src/*"
34
34
  ],
35
35
  "dependencies": {
36
- "@stonecrop/aform": "0.16.2",
37
- "@stonecrop/atable": "0.16.2",
38
- "@stonecrop/stonecrop": "0.16.2",
39
- "@stonecrop/themes": "0.16.2",
40
- "@stonecrop/schema": "0.16.2"
36
+ "@stonecrop/aform": "0.16.4",
37
+ "@stonecrop/atable": "0.16.4",
38
+ "@stonecrop/stonecrop": "0.16.4",
39
+ "@stonecrop/themes": "0.16.4",
40
+ "@stonecrop/schema": "0.16.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@microsoft/api-documenter": "^7.30.5",
@@ -71,8 +71,8 @@
71
71
  "access": "public"
72
72
  },
73
73
  "scripts": {
74
- "_phase:build": "heft build && vite build && rushx docs",
75
- "build": "heft build && vite build && rushx docs",
74
+ "_phase:build": "heft build --clean && vite build && rushx docs",
75
+ "build": "heft build --clean && vite build && rushx docs",
76
76
  "docs": "bash ../common/scripts/run-docs.sh desktop",
77
77
  "lint": "oxlint",
78
78
  "lint:fix": "oxlint --fix",
@@ -1,8 +0,0 @@
1
- declare const router: import("vue-router").Router;
2
- export default router;
3
- declare module 'vue-router' {
4
- interface RouteMeta {
5
- transition?: string;
6
- }
7
- }
8
- //# sourceMappingURL=router.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../../src/router.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,MAAM,6BAGV,CAAA;AAEF,eAAe,MAAM,CAAA;AAErB,OAAO,QAAQ,YAAY,CAAC;IAC3B,UAAU,SAAS;QAClB,UAAU,CAAC,EAAE,MAAM,CAAA;KACnB;CACD"}
@@ -1,6 +0,0 @@
1
- import { createRouter, createWebHistory } from 'vue-router';
2
- const router = createRouter({
3
- history: createWebHistory(),
4
- routes: [],
5
- });
6
- export default router;
package/src/router.ts DELETED
@@ -1,14 +0,0 @@
1
- import { createRouter, createWebHistory } from 'vue-router'
2
-
3
- const router = createRouter({
4
- history: createWebHistory(),
5
- routes: [],
6
- })
7
-
8
- export default router
9
-
10
- declare module 'vue-router' {
11
- interface RouteMeta {
12
- transition?: string
13
- }
14
- }