@stonecrop/desktop 0.2.64 → 0.2.65

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.
@@ -3,6 +3,11 @@ import CommandPalette from '@/components/CommandPalette.vue';
3
3
  import Doctype from '@/components/Doctype.vue';
4
4
  import Records from '@/components/Records.vue';
5
5
  import SheetNav from '@/components/SheetNav.vue';
6
+ /**
7
+ * This is the main plugin file that will be used to register all the components
8
+ * that we want to use in our application.
9
+ * @public
10
+ */
6
11
  const plugin = {
7
12
  install: (app) => {
8
13
  app.component('ActionSet', ActionSet);
@@ -1,4 +1,9 @@
1
1
  import { type Plugin } from 'vue';
2
+ /**
3
+ * This is the main plugin file that will be used to register all the components
4
+ * that we want to use in our application.
5
+ * @public
6
+ */
2
7
  declare const plugin: Plugin;
3
8
  export default plugin;
4
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,KAAK,MAAM,EAAE,MAAM,KAAK,CAAA;AAQtC,QAAA,MAAM,MAAM,EAAE,MAQb,CAAA;AAED,eAAe,MAAM,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/plugins/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,KAAK,MAAM,EAAE,MAAM,KAAK,CAAA;AAQtC;;;;GAIG;AACH,QAAA,MAAM,MAAM,EAAE,MAQb,CAAA;AAED,eAAe,MAAM,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/desktop",
3
- "version": "0.2.64",
3
+ "version": "0.2.65",
4
4
  "description": "Desktop-specific components for Stonecrop UI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,15 +30,15 @@
30
30
  "dependencies": {
31
31
  "vue": "^3.5.11",
32
32
  "xstate": "^4.38.3",
33
- "@stonecrop/aform": "0.2.64",
34
- "@stonecrop/atable": "0.2.64",
35
- "@stonecrop/stonecrop": "0.2.64",
36
- "@stonecrop/themes": "0.2.64"
33
+ "@stonecrop/aform": "0.2.65",
34
+ "@stonecrop/atable": "0.2.65",
35
+ "@stonecrop/stonecrop": "0.2.65",
36
+ "@stonecrop/themes": "0.2.65"
37
37
  },
38
38
  "devDependencies": {
39
- "@microsoft/api-documenter": "^7.25.3",
39
+ "@microsoft/api-documenter": "^7.26.2",
40
40
  "@miragejs/graphql": "^0.1.13",
41
- "@rushstack/heft": "^0.67.2",
41
+ "@rushstack/heft": "^0.68.6",
42
42
  "@typescript-eslint/eslint-plugin": "^7.14.1",
43
43
  "@typescript-eslint/parser": "^7.14.1",
44
44
  "@vitejs/plugin-vue": "^5.1.3",
@@ -46,7 +46,7 @@
46
46
  "eslint-config-prettier": "^8.8.0",
47
47
  "eslint-plugin-vue": "^9.11.1",
48
48
  "miragejs": "^0.1.47",
49
- "typescript": "^5.5.2",
49
+ "typescript": "^5.6.3",
50
50
  "vite": "^5.4.5",
51
51
  "vue-router": "^4.4.0",
52
52
  "stonecrop-rig": "0.2.22"
@@ -6,6 +6,11 @@ import Doctype from '@/components/Doctype.vue'
6
6
  import Records from '@/components/Records.vue'
7
7
  import SheetNav from '@/components/SheetNav.vue'
8
8
 
9
+ /**
10
+ * This is the main plugin file that will be used to register all the components
11
+ * that we want to use in our application.
12
+ * @public
13
+ */
9
14
  const plugin: Plugin = {
10
15
  install: (app: App) => {
11
16
  app.component('ActionSet', ActionSet)