@sphereon/ui-components.ssi-react 0.4.1-next.8 → 0.4.1-unstable.12

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.
@@ -17,8 +17,6 @@ const Listbox = (props) => {
17
17
  flex
18
18
  flex-1
19
19
  outline-none
20
- rounded-[var(--border-radius-4)]
21
- bg-[var(--color-grey-50)]
22
20
  overflow-hidden
23
21
  `, children: selected && renderItem(selected, open) }), _jsx(ListboxOptions, { anchor: anchor, transition: true, className: `
24
22
  w-[var(--button-width)]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ui-components.ssi-react",
3
3
  "private": false,
4
- "version": "0.4.1-next.8+9d59106",
4
+ "version": "0.4.1-unstable.12+995ff66",
5
5
  "description": "SSI UI components for React",
6
6
  "repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
7
7
  "author": "Sphereon <dev@sphereon.com>",
@@ -13,11 +13,17 @@
13
13
  "Self-sovereign identity (SSI)"
14
14
  ],
15
15
  "scripts": {
16
- "build": "tsc && pnpm run copy-css && pnpm run generate-css",
17
- "copy-css": "cpy src/**/*.css dist --parents",
16
+ "build": "pnpm run copy-css && pnpm run generate-css && tsc",
17
+ "copy-css": "copy-files-from-to",
18
18
  "generate-css": "tailwindcss -i ./src/styles/css/tailwind.css -o ./dist/styles/css/tailwind.css",
19
19
  "build:clean": "tsc --build --clean && tsc --build"
20
20
  },
21
+ "copyFiles": [
22
+ {
23
+ "from": "src/**/*.css",
24
+ "to": "dist"
25
+ }
26
+ ],
21
27
  "source": "src/index.ts",
22
28
  "main": "dist/index.js",
23
29
  "types": "dist/index.d.ts",
@@ -43,7 +49,7 @@
43
49
  "@mui/system": "^5.15.12",
44
50
  "@mui/x-date-pickers": "^6.19.5",
45
51
  "@sphereon/ssi-sdk.data-store": "^0.33",
46
- "@sphereon/ui-components.core": "0.4.1-next.8+9d59106",
52
+ "@sphereon/ui-components.core": "0.4.1-unstable.12+995ff66",
47
53
  "@tanstack/react-table": "^8.9.3",
48
54
  "react-json-tree": "^0.18.0",
49
55
  "react-loader-spinner": "5.4.5",
@@ -56,12 +62,11 @@
56
62
  "@tailwindcss/cli": "^4.1.11",
57
63
  "@types/react": "~18.3.18",
58
64
  "ajv": "^8.12.0",
59
- "cpy-cli": "^5.0.0",
60
65
  "tailwindcss": "^4.1.11",
61
66
  "typescript": "4.9.5"
62
67
  },
63
68
  "peerDependencies": {
64
69
  "react": ">= 18"
65
70
  },
66
- "gitHead": "9d591066551d250da9eb55186a69c0b9fa44c352"
71
+ "gitHead": "995ff665773fb1731fee04f004fc4de2e9e38e13"
67
72
  }