quirk-ui 0.0.607 → 0.0.608

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/dist/core.d.ts CHANGED
@@ -62,7 +62,7 @@ declare type AnchorProps = {
62
62
  as: "a";
63
63
  href: string;
64
64
  target?: string;
65
- } & default_2.AnchorHTMLAttributes<HTMLAnchorElement>;
65
+ } & Omit<default_2.AnchorHTMLAttributes<HTMLAnchorElement>, "href" | "target">;
66
66
 
67
67
  export declare function Avatar({ src, alt, size, initials, status, borderColor, backgroundColor, onClick, className, }: AvatarProps): JSX.Element;
68
68
 
@@ -960,7 +960,7 @@ export declare type RichContent = string | {
960
960
  declare type ScrollProps = {
961
961
  as: "scroll";
962
962
  scrollTarget: string;
963
- } & default_2.ButtonHTMLAttributes<HTMLButtonElement>;
963
+ } & Omit<default_2.ButtonHTMLAttributes<HTMLButtonElement>, "children">;
964
964
 
965
965
  export declare function Select({ id, name, label, options, defaultValue, required, disabled, onChange, className, ...restProps }: SelectProps): JSX.Element;
966
966
 
package/dist/main.d.ts CHANGED
@@ -111,7 +111,7 @@ declare type AnchorProps = {
111
111
  as: "a";
112
112
  href: string;
113
113
  target?: string;
114
- } & default_2.AnchorHTMLAttributes<HTMLAnchorElement>;
114
+ } & Omit<default_2.AnchorHTMLAttributes<HTMLAnchorElement>, "href" | "target">;
115
115
 
116
116
  export declare function AppThemeProvider({ children }: {
117
117
  children: default_2.ReactNode;
@@ -1098,7 +1098,7 @@ export { SanityImage }
1098
1098
  declare type ScrollProps = {
1099
1099
  as: "scroll";
1100
1100
  scrollTarget: string;
1101
- } & default_2.ButtonHTMLAttributes<HTMLButtonElement>;
1101
+ } & Omit<default_2.ButtonHTMLAttributes<HTMLButtonElement>, "children">;
1102
1102
 
1103
1103
  export declare function Select({ id, name, label, options, defaultValue, required, disabled, onChange, className, ...restProps }: SelectProps): JSX.Element;
1104
1104
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quirk-ui",
3
3
  "private": false,
4
- "version": "0.0.607",
4
+ "version": "0.0.608",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {