@ramme-io/ui 1.1.3 → 1.1.4

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.
@@ -2,7 +2,7 @@ import { default as React } from 'react';
2
2
  import { VariantProps } from 'class-variance-authority';
3
3
 
4
4
  declare const badgeVariants: (props?: ({
5
- variant?: "primary" | "danger" | "outline" | "secondary" | "success" | null | undefined;
5
+ variant?: "primary" | "secondary" | "danger" | "success" | "outline" | null | undefined;
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
8
8
  }
@@ -32,7 +32,7 @@ import { IconName } from './Icon';
32
32
  * @id button
33
33
  */
34
34
  declare const buttonVariants: (props?: ({
35
- variant?: "link" | "ghost" | "primary" | "danger" | "outline" | "secondary" | "accent" | null | undefined;
35
+ variant?: "link" | "ghost" | "primary" | "secondary" | "danger" | "outline" | "accent" | null | undefined;
36
36
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
37
37
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
38
38
  export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@
2
2
  export type * from './lib/types/wizard';
3
3
  export type { ThemeName } from './contexts/ThemeContext';
4
4
  export type { MultiSelectOption } from './components/forms/MultiSelect';
5
+ export { AUTO_REGISTRY } from './component-registry';
5
6
  export type { ColDef, ColGroupDef, GridOptions, GridApi, ColumnApi, ValueFormatterParams, ValueGetterParams, ICellRendererParams, CellClickedEvent, RowSelectedEvent, IHeaderParams, } from 'ag-grid-community';
6
7
  export * from './data/mockData';
7
8
  export * from './blocks/ai/Loader';