@jamsrui/chip 0.0.7 → 0.0.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.
@@ -10,8 +10,9 @@ import './styles.mjs';
10
10
  import 'tailwind-variants';
11
11
 
12
12
  declare const useChipConfig: () => ChipConfig.Props;
13
- declare const ChipConfig: (props: ChipConfig.Props & {
13
+ declare const ChipConfig: (props: Omit<Partial<ChipConfig.Props>, "children"> & {
14
14
  merge?: boolean;
15
+ children: React.ReactNode;
15
16
  }) => react_jsx_runtime.JSX.Element;
16
17
  declare namespace ChipConfig {
17
18
  interface Props extends Chip.Props, GlobalConfigProps<Chip.Props> {
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@jamsrui/chip",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "peerDependencies": {
5
5
  "react": ">=19"
6
6
  },
7
7
  "dependencies": {
8
- "@jamsrui/hooks": "^0.0.7",
9
- "@jamsrui/icons": "^0.0.7",
8
+ "@jamsrui/hooks": "^0.0.8",
9
+ "@jamsrui/utils": "^0.0.8",
10
10
  "@jamsrui/core": "^0.0.7",
11
- "@jamsrui/utils": "^0.0.7"
11
+ "@jamsrui/icons": "^0.0.7"
12
12
  },
13
13
  "exports": {
14
14
  ".": {