lsp-uikit 1.0.7 → 1.0.9

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,5 +1,5 @@
1
1
  import { ComponentProps, FC } from 'react';
2
- type Props = ComponentProps<'div'> & {
2
+ type Props = Omit<ComponentProps<'div'>, 'onClick' | 'value' | 'label' | 'checked'> & {
3
3
  value: string;
4
4
  label?: string;
5
5
  checked: boolean;
package/dist/index.d.ts CHANGED
@@ -136,7 +136,7 @@ declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive
136
136
  rounded?: "default" | "small";
137
137
  } & React$1.RefAttributes<HTMLButtonElement>>;
138
138
 
139
- type Props$5 = ComponentProps<'div'> & {
139
+ type Props$5 = Omit<ComponentProps<'div'>, 'onClick' | 'value' | 'label' | 'checked'> & {
140
140
  value: string;
141
141
  label?: string;
142
142
  checked: boolean;