@tscircuit/props 0.0.319 → 0.0.320
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.
- package/README.md +6 -0
- package/dist/index.d.ts +107 -107
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +29 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -143,6 +143,10 @@ export interface SubcircuitGroupProps extends BaseGroupProps {
|
|
|
143
143
|
|
|
144
144
|
[Source](https://github.com/tscircuit/props/blob/main/lib/components/group.ts)
|
|
145
145
|
|
|
146
|
+
> **Note:** Autorouter preset strings now use `snake_case` (e.g., `auto_cloud`).
|
|
147
|
+
> Kebab-case forms like `auto-cloud` are deprecated but remain supported for
|
|
148
|
+
> backward compatibility.
|
|
149
|
+
|
|
146
150
|
### BatteryProps `<battery />`
|
|
147
151
|
|
|
148
152
|
```ts
|
|
@@ -211,6 +215,8 @@ export interface CadAssemblyProps {
|
|
|
211
215
|
* "top" and this is most intuitive.
|
|
212
216
|
*/
|
|
213
217
|
originalLayer?: LayerRef;
|
|
218
|
+
|
|
219
|
+
children?: any;
|
|
214
220
|
}
|
|
215
221
|
```
|
|
216
222
|
|