@umami/react-zen 0.1.0 → 0.3.0
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/index.d.ts +2 -1
- package/dist/index.js +7123 -6704
- package/dist/index.mjs +6757 -6154
- package/dist/{index.css → styles.css} +109 -109
- package/dist/zen.css +122 -0
- package/package.json +13 -4
package/dist/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ declare module "Row" {
|
|
|
134
134
|
export type { RowProps };
|
|
135
135
|
}
|
|
136
136
|
declare module "Button" {
|
|
137
|
+
import React from 'react';
|
|
137
138
|
import { ButtonProps } from 'react-aria-components';
|
|
138
139
|
interface _ButtonProps extends ButtonProps {
|
|
139
140
|
variant?: 'primary' | 'secondary' | 'outline' | 'quiet' | 'danger' | 'zero';
|
|
@@ -141,7 +142,7 @@ declare module "Button" {
|
|
|
141
142
|
asChild?: boolean;
|
|
142
143
|
slot?: string;
|
|
143
144
|
}
|
|
144
|
-
function _Button({ variant, size, asChild, className, children, ...props }: _ButtonProps):
|
|
145
|
+
function _Button({ variant, size, preventFocusOnPress, asChild, className, children, ...props }: _ButtonProps): React.JSX.Element;
|
|
145
146
|
export { _Button as Button };
|
|
146
147
|
export type { _ButtonProps as ButtonProps };
|
|
147
148
|
}
|