@bloomkit/react 0.2.7 → 0.2.8

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 +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -162,6 +162,18 @@ import { Checkbox } from "@bloomkit/react";
162
162
  <Checkbox />
163
163
  ```
164
164
 
165
+ ### Radio Group
166
+
167
+ ```tsx
168
+ import { RadioGroup, RadioGroupItem } from "@bloomkit/react";
169
+
170
+ <RadioGroup defaultValue="calm">
171
+ <RadioGroupItem value="calm" label="Calm" />
172
+ <RadioGroupItem value="focused" label="Focused" />
173
+ <RadioGroupItem value="energized" label="Energized" />
174
+ </RadioGroup>
175
+ ```
176
+
165
177
  ### Select
166
178
 
167
179
  ```tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloomkit/react",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "An ambient, organic UI component library. Components that breathe.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",