karsten-design-system 1.2.12 → 1.2.13

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,6 +2,5 @@ export type CardButtonProps = {
2
2
  label: string;
3
3
  description?: string;
4
4
  onClick?: () => void;
5
- isLight?: boolean;
6
5
  };
7
- export declare function CardButton({ label, description, onClick, isLight, }: CardButtonProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function CardButton({ label, description, onClick }: CardButtonProps): import("react/jsx-runtime").JSX.Element;
@@ -3,6 +3,5 @@ export type CardIconsButtonProps = {
3
3
  label: string;
4
4
  leftIcon?: ReactNode;
5
5
  onClick?: () => void;
6
- isLight?: boolean;
7
6
  };
8
- export declare function CardIconsButton({ label, leftIcon, onClick, isLight, }: CardIconsButtonProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function CardIconsButton({ label, leftIcon, onClick, }: CardIconsButtonProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  interface DataProps {
2
2
  message?: string;
3
3
  }
4
- export declare function EmptyContent({ message }: DataProps): import("react/jsx-runtime").JSX.Element;
4
+ export declare function EmptyContent({ message, }: DataProps): import("react/jsx-runtime").JSX.Element;
5
5
  export {};
@@ -2,7 +2,6 @@ interface ExpandablePanelProps {
2
2
  title: string;
3
3
  children: React.ReactNode;
4
4
  defaultOpen?: boolean;
5
- isLight?: boolean;
6
5
  }
7
- export declare function ExpandablePanel({ title, children, defaultOpen, isLight, }: ExpandablePanelProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function ExpandablePanel({ title, children, defaultOpen, }: ExpandablePanelProps): import("react/jsx-runtime").JSX.Element;
8
7
  export {};
@@ -1,6 +1,5 @@
1
1
  import '../.storybook/index.css';
2
2
  export * from './stories/components/accordion';
3
- export * from './stories/components/autoComplete';
4
3
  export * from './stories/components/basicHeader';
5
4
  export * from './stories/components/breadcrumb';
6
5
  export * from './stories/components/button';
@@ -2,6 +2,5 @@ export type CardButtonProps = {
2
2
  label: string;
3
3
  description?: string;
4
4
  onClick?: () => void;
5
- isLight?: boolean;
6
5
  };
7
- export declare function CardButton({ label, description, onClick, isLight, }: CardButtonProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function CardButton({ label, description, onClick }: CardButtonProps): import("react/jsx-runtime").JSX.Element;
@@ -3,6 +3,5 @@ export type CardIconsButtonProps = {
3
3
  label: string;
4
4
  leftIcon?: ReactNode;
5
5
  onClick?: () => void;
6
- isLight?: boolean;
7
6
  };
8
- export declare function CardIconsButton({ label, leftIcon, onClick, isLight, }: CardIconsButtonProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function CardIconsButton({ label, leftIcon, onClick, }: CardIconsButtonProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  interface DataProps {
2
2
  message?: string;
3
3
  }
4
- export declare function EmptyContent({ message }: DataProps): import("react/jsx-runtime").JSX.Element;
4
+ export declare function EmptyContent({ message, }: DataProps): import("react/jsx-runtime").JSX.Element;
5
5
  export {};
@@ -2,7 +2,6 @@ interface ExpandablePanelProps {
2
2
  title: string;
3
3
  children: React.ReactNode;
4
4
  defaultOpen?: boolean;
5
- isLight?: boolean;
6
5
  }
7
- export declare function ExpandablePanel({ title, children, defaultOpen, isLight, }: ExpandablePanelProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function ExpandablePanel({ title, children, defaultOpen, }: ExpandablePanelProps): import("react/jsx-runtime").JSX.Element;
8
7
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "karsten-design-system",
3
3
  "description": "Karsten Design System Components",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -1,7 +0,0 @@
1
- import { InputTextProps } from 'primereact/inputtext';
2
- export type AutoCompleteProps = {
3
- items: string[];
4
- onChange: (value: string) => void;
5
- error?: string;
6
- } & Omit<InputTextProps, 'onChange'>;
7
- export declare function AutoComplete({ items, onChange, error, ...props }: AutoCompleteProps): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +0,0 @@
1
- import { InputTextProps } from 'primereact/inputtext';
2
- export type AutoCompleteProps = {
3
- items: string[];
4
- onChange: (value: string) => void;
5
- error?: string;
6
- } & Omit<InputTextProps, 'onChange'>;
7
- export declare function AutoComplete({ items, onChange, error, ...props }: AutoCompleteProps): import("react/jsx-runtime").JSX.Element;