@canton-network/core-wallet-ui-components 0.9.0 → 0.10.0

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.
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components-vite';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ export declare const Default: StoryObj;
5
+ export declare const Popup: StoryObj;
6
+ //# sourceMappingURL=discovery.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"discovery.stories.d.ts","sourceRoot":"","sources":["../../src/windows/discovery.stories.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAA;AAIpE,QAAA,MAAM,IAAI,EAAE,IAEX,CAAA;AAED,eAAe,IAAI,CAAA;AAEnB,eAAO,MAAM,OAAO,EAAE,QAiBrB,CAAA;AAED,eAAO,MAAM,KAAK,EAAE,QAKnB,CAAA"}
package/package.json CHANGED
@@ -1,23 +1,30 @@
1
1
  {
2
2
  "name": "@canton-network/core-wallet-ui-components",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "type": "module",
5
5
  "description": "Reusable UI components for the Splice wallet",
6
6
  "repository": "github:hyperledger-labs/splice-wallet-kernel",
7
7
  "license": "Apache-2.0",
8
8
  "author": "Marc Juchli <marc.juchli@digitalasset.com>",
9
- "main": "./dist/index.js",
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
10
11
  "types": "./dist/index.d.ts",
11
12
  "exports": {
12
- ".": "./dist/index.js",
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs",
17
+ "default": "./dist/index.js"
18
+ },
19
+ "./index.css": "./dist/index.css",
13
20
  "./themes": "./themes"
14
21
  },
15
22
  "scripts": {
16
- "build": "vite build && yarn workspace @canton-network/core-wallet-ui-components tsc --emitDeclarationOnly",
23
+ "build": "vite build && tsc -p tsconfig.types.json",
17
24
  "build:watch": "vite build --watch & tsc --emitDeclarationOnly --watch",
18
25
  "typecheck": "tsc --noEmit",
19
26
  "flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
20
- "clean": "rm -rf dist",
27
+ "clean": "tsc -b --clean; rm -rf dist",
21
28
  "dev": "storybook dev -p 6006"
22
29
  },
23
30
  "devDependencies": {
@@ -28,12 +35,14 @@
28
35
  "storybook": "^9.1.10",
29
36
  "tsx": "^4.20.4",
30
37
  "typescript": "^5.8.3",
31
- "vite": "^6.4.1"
38
+ "vite": "^6.4.1",
39
+ "vite-plugin-dts": "^4.5.4"
32
40
  },
33
41
  "packageManager": "yarn@4.9.4",
34
42
  "dependencies": {
35
- "@canton-network/core-types": "^0.9.0",
36
- "@canton-network/core-wallet-store": "^0.9.0",
43
+ "@canton-network/core-types": "^0.10.0",
44
+ "@canton-network/core-wallet-auth": "^0.11.0",
45
+ "@canton-network/core-wallet-store": "^0.10.0",
37
46
  "@popperjs/core": "^2.11.8",
38
47
  "bootstrap": "^5.3.7",
39
48
  "lit": "^3.3.0"