@celar-ui/svelte 0.0.6 → 0.0.7

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.
@@ -1,12 +1,12 @@
1
1
  <script lang="ts">
2
2
  import {
3
3
  RadioGroup as BitRadioGroup,
4
- type RadioGroupRootProps,
5
- type WithoutChildren
4
+ type RadioGroupRootProps as BitRadioGroupRootProps,
5
+ type WithoutChildrenOrChild
6
6
  } from 'bits-ui';
7
7
  import type { Snippet } from 'svelte';
8
8
 
9
- export type RadioGroupProps = WithoutChildren<RadioGroupRootProps> & {
9
+ export type RadioGroupProps = WithoutChildrenOrChild<BitRadioGroupRootProps> & {
10
10
  children?: Snippet;
11
11
  };
12
12
  let { value = $bindable(''), children, ...rest }: RadioGroupProps = $props();
@@ -1,6 +1,6 @@
1
- import { type RadioGroupRootProps, type WithoutChildren } from 'bits-ui';
1
+ import { type RadioGroupRootProps as BitRadioGroupRootProps, type WithoutChildrenOrChild } from 'bits-ui';
2
2
  import type { Snippet } from 'svelte';
3
- export type RadioGroupProps = WithoutChildren<RadioGroupRootProps> & {
3
+ export type RadioGroupProps = WithoutChildrenOrChild<BitRadioGroupRootProps> & {
4
4
  children?: Snippet;
5
5
  };
6
6
  declare const RadioGroup: import("svelte").Component<RadioGroupProps, {}, "value">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celar-ui/svelte",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "cuikho210",