@umami/react-zen 0.72.0 → 0.73.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 CHANGED
@@ -26,7 +26,6 @@ declare module '@umami/react-zen' {
26
26
  export { Accordion, AccordionItem } from '@umami/react-zen/Accordion';
27
27
  export { AlertBanner } from '@umami/react-zen/AlertBanner';
28
28
  export { AlertDialog } from '@umami/react-zen/AlertDialog';
29
- export { Block } from '@umami/react-zen/Block';
30
29
  export { Blockquote } from '@umami/react-zen/Blockquote';
31
30
  export { Box } from '@umami/react-zen/Box';
32
31
  export { Breadcrumbs, Breadcrumb } from '@umami/react-zen/Breadcrumbs';
@@ -262,14 +261,6 @@ declare module '@umami/react-zen/AlertDialog' {
262
261
  export type { AlertDialogProps };
263
262
  }
264
263
 
265
- declare module '@umami/react-zen/Block' {
266
- import { HTMLAttributes } from 'react';
267
- export interface BlockProps extends HTMLAttributes<HTMLDivElement> {
268
- asChild?: boolean;
269
- }
270
- export function Block({ asChild, className, children, ...props }: BlockProps): import("react").JSX.Element;
271
- }
272
-
273
264
  declare module '@umami/react-zen/Blockquote' {
274
265
  import { HTMLAttributes } from 'react';
275
266
  import { FontWeight, Responsive, TextWrap } from '@/lib/types';
@@ -283,7 +274,7 @@ declare module '@umami/react-zen/Blockquote' {
283
274
 
284
275
  declare module '@umami/react-zen/Box' {
285
276
  import { HTMLAttributes } from 'react';
286
- import { BackgroundColor, BorderColor, BorderRadius, BoxShadow, Spacing, Responsive, Position, Display, TextAlign, FlexGrow, FlexShrink, Top, Right, Bottom, Left, Overflow, AlignSelf, JustifySelf, FontColor, FontSize, FontWeight } from '@/lib/types';
277
+ import { BackgroundColor, BorderColor, BorderRadius, BoxShadow, Spacing, Responsive, Position, Display, TextAlign, FlexGrow, FlexShrink, Top, Right, Bottom, Left, Overflow, AlignSelf, JustifySelf, FontColor, FontSize, FontWeight, Padding } from '@/lib/types';
287
278
  interface BoxProps extends HTMLAttributes<HTMLElement> {
288
279
  display?: Responsive<Display>;
289
280
  color?: FontColor;
@@ -298,13 +289,13 @@ declare module '@umami/react-zen/Box' {
298
289
  borderBottom?: Responsive<boolean>;
299
290
  borderLeft?: Responsive<boolean>;
300
291
  shadow?: Responsive<BoxShadow>;
301
- padding?: Responsive<Spacing>;
302
- paddingX?: Responsive<Spacing>;
303
- paddingY?: Responsive<Spacing>;
304
- paddingTop?: Responsive<Spacing>;
305
- paddingRight?: Responsive<Spacing>;
306
- paddingBottom?: Responsive<Spacing>;
307
- paddingLeft?: Responsive<Spacing>;
292
+ padding?: Responsive<Padding>;
293
+ paddingX?: Responsive<Padding>;
294
+ paddingY?: Responsive<Padding>;
295
+ paddingTop?: Responsive<Padding>;
296
+ paddingRight?: Responsive<Padding>;
297
+ paddingBottom?: Responsive<Padding>;
298
+ paddingLeft?: Responsive<Padding>;
308
299
  margin?: Responsive<Spacing>;
309
300
  marginX?: Responsive<Spacing>;
310
301
  marginY?: Responsive<Spacing>;