@stonecrop/desktop 0.4.31 → 0.4.32

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.
@@ -4,6 +4,6 @@ import Doctype from './components/Doctype.vue';
4
4
  import Records from './components/Records.vue';
5
5
  import SheetNav from './components/SheetNav.vue';
6
6
  import StonecropDesktop from './plugins';
7
- export type { ActionElements, BaseElement, ButtonElement, DropdownElement, ElementAction } from './types';
7
+ export type * from './types';
8
8
  export { ActionSet, CommandPalette, Doctype, Records, SheetNav, StonecropDesktop };
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAC5D,OAAO,OAAO,MAAM,0BAA0B,CAAA;AAC9C,OAAO,OAAO,MAAM,0BAA0B,CAAA;AAC9C,OAAO,QAAQ,MAAM,2BAA2B,CAAA;AAChD,OAAO,gBAAgB,MAAM,WAAW,CAAA;AACxC,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,aAAa,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEzG,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAClD,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAC5D,OAAO,OAAO,MAAM,0BAA0B,CAAA;AAC9C,OAAO,OAAO,MAAM,0BAA0B,CAAA;AAC9C,OAAO,QAAQ,MAAM,2BAA2B,CAAA;AAChD,OAAO,gBAAgB,MAAM,WAAW,CAAA;AACxC,mBAAmB,SAAS,CAAA;AAE5B,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAA"}
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.52.10"
9
+ }
10
+ ]
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/desktop",
3
- "version": "0.4.31",
3
+ "version": "0.4.32",
4
4
  "description": "Desktop-specific components for Stonecrop UI",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,21 +18,29 @@
18
18
  },
19
19
  "exports": {
20
20
  ".": {
21
- "import": "./dist/desktop.js",
21
+ "import": {
22
+ "types": "./dist/src/index.d.ts",
23
+ "default": "./dist/desktop.js"
24
+ },
22
25
  "require": "./dist/desktop.umd.cjs"
23
26
  },
27
+ "./types": {
28
+ "import": "./dist/src/types/index.d.ts",
29
+ "require": "./dist/src/types/index.d.ts"
30
+ },
24
31
  "./styles": "./dist/desktop.css"
25
32
  },
33
+ "typings": "./dist/src/index.d.ts",
26
34
  "files": [
27
35
  "dist/*",
28
36
  "src/*"
29
37
  ],
30
38
  "dependencies": {
31
39
  "vue": "^3.5.18",
32
- "@stonecrop/aform": "0.4.31",
33
- "@stonecrop/stonecrop": "0.4.31",
34
- "@stonecrop/atable": "0.4.31",
35
- "@stonecrop/themes": "0.4.31"
40
+ "@stonecrop/aform": "0.4.32",
41
+ "@stonecrop/atable": "0.4.32",
42
+ "@stonecrop/stonecrop": "0.4.32",
43
+ "@stonecrop/themes": "0.4.32"
36
44
  },
37
45
  "devDependencies": {
38
46
  "@microsoft/api-documenter": "^7.26.31",
package/src/index.ts CHANGED
@@ -4,6 +4,6 @@ import Doctype from './components/Doctype.vue'
4
4
  import Records from './components/Records.vue'
5
5
  import SheetNav from './components/SheetNav.vue'
6
6
  import StonecropDesktop from './plugins'
7
- export type { ActionElements, BaseElement, ButtonElement, DropdownElement, ElementAction } from './types'
7
+ export type * from './types'
8
8
 
9
9
  export { ActionSet, CommandPalette, Doctype, Records, SheetNav, StonecropDesktop }