@public-ui/solid 3.0.2-f97556ada8a20e9abe2dbb519562bad234f7191b.0 → 3.0.2-rc.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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -17,9 +17,9 @@ Provide an adapter for [SolidJS](https://www.solidjs.com/) to use the KoliBri co
17
17
  You can install the adapter with `npm`, `pnpm` or `yarn`:
18
18
 
19
19
  ```bash
20
- npm i -g @public-ui/solid
21
- pnpm i -g @public-ui/solid
22
- yarn add -g @public-ui/solid
20
+ npm i @public-ui/solid
21
+ pnpm i @public-ui/solid
22
+ yarn add @public-ui/solid
23
23
  ```
24
24
 
25
25
  ## Usage
@@ -49,3 +49,5 @@ import { KolButton } from '@public-ui/solid';
49
49
 
50
50
  export const AppComponent: Component = () => <KolButton _label="Hello World" />;
51
51
  ```
52
+
53
+ For customization options read the [default theme README](../../themes/default/README.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/solid",
3
- "version": "3.0.2-f97556ada8a20e9abe2dbb519562bad234f7191b.0",
3
+ "version": "3.0.2-rc.0",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -51,11 +51,11 @@
51
51
  "solid-js": "1.9.7",
52
52
  "typescript": "5.8.3",
53
53
  "unbuild": "3.5.0",
54
- "@public-ui/components": "3.0.2-f97556ada8a20e9abe2dbb519562bad234f7191b.0"
54
+ "@public-ui/components": "3.0.2-rc.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "solid-js": ">=1.9.7",
58
- "@public-ui/components": "3.0.2-f97556ada8a20e9abe2dbb519562bad234f7191b.0"
58
+ "@public-ui/components": "3.0.2-rc.0"
59
59
  },
60
60
  "sideEffects": false,
61
61
  "type": "module",