@modul/mbui 1.2.0-beta-dev-f817206e → 1.2.0-beta-dev-bfd8df1c

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,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
3
  declare const chipVariants: (props?: {
4
- variant?: "outline" | "primary" | "secondary" | "success" | "primary-outline" | "ghost";
4
+ variant?: "outline" | "primary" | "secondary" | "ghost" | "success" | "primary-outline";
5
5
  size?: "lg" | "md" | "sm" | "xs" | "xxs";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface IChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof chipVariants> {
@@ -1,4 +1,5 @@
1
1
  import { FC, ReactNode } from 'react';
2
+ export declare const PageNavbarCSS = "\n\tsticky\n\ttop-0\n\tcontainer\n\tflex\n\tjustify-between\n\tpx-[--page-content-padd-x]\n\tpt-[env(safe-area-inset-top)]\n\th-[--page-header-height]\n\tw-full\n";
2
3
  interface IProps {
3
4
  className?: string;
4
5
  children: ReactNode;
@@ -1,5 +1,5 @@
1
- import React, { FC } from 'react';
2
- declare const StickyFooter: FC<{
3
- children: React.ReactNode;
4
- }>;
1
+ import React from 'react';
2
+ declare const StickyFooter: ({ children }: {
3
+ children: any;
4
+ }) => React.JSX.Element;
5
5
  export { StickyFooter };