@lax-wp/design-system 0.3.82 → 0.3.83

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,5 +1,5 @@
1
1
  import React, { type ReactNode } from 'react';
2
- interface IconButtonProps {
2
+ export interface IconButtonProps {
3
3
  children: ReactNode;
4
4
  className?: string;
5
5
  onClick?(event: React.MouseEvent<HTMLButtonElement>): void;
@@ -24,6 +24,5 @@ export type TSearchBarProps = Omit<HTMLAttributes<HTMLInputElement>, 'onChange'>
24
24
  searchConfig?: TSearchConfig;
25
25
  hideSearchIcon?: boolean;
26
26
  allowAStarSearch?: boolean;
27
- isDark?: boolean;
28
27
  };
29
28
  export declare const SearchBar: FC<TSearchBarProps>;
package/dist/index.d.ts CHANGED
@@ -123,6 +123,8 @@ export { default as Button } from "./components/button/Button";
123
123
  export type { IButtonProps, IButtonStatus, IButtonAppearance, } from "./components/button/Button";
124
124
  export { OptionButton } from "./components/buttons/option-button/OptionButton";
125
125
  export type { OptionButtonProps, } from "./components/buttons/option-button/OptionButton";
126
+ export { default as IconButton } from "./components/button/IconButton";
127
+ export type { IconButtonProps, } from "./components/button/IconButton";
126
128
  export { FloatingBar } from "./components/floating-bar/FloatingBar";
127
129
  export type { FloatingBarProps, FloatingBarActionConfig, FloatingBarDeleteConfig, FloatingBarSize, FloatingBarPosition, FloatingBarTheme, } from "./components/floating-bar/FloatingBar";
128
130
  export { SearchBar } from "./components/forms/search-bar/SearchBar";