@lax-wp/design-system 0.3.84 → 0.3.85

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.
@@ -0,0 +1,3 @@
1
+ import { type FC, type ButtonHTMLAttributes } from 'react';
2
+ export type TButtonThreeDotsProps = ButtonHTMLAttributes<HTMLButtonElement>;
3
+ export declare const ButtonThreeDots: FC<TButtonThreeDotsProps>;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- export interface IRadioProps {
2
+ export interface RadioProps {
3
3
  className?: string;
4
4
  isChecked?: boolean;
5
5
  onSelect?: (e: React.MouseEvent<HTMLInputElement>) => void;
6
6
  }
7
- declare const Radio: React.FC<IRadioProps>;
7
+ declare const Radio: React.FC<RadioProps>;
8
8
  export default Radio;
package/dist/index.d.ts CHANGED
@@ -126,7 +126,9 @@ export type { OptionButtonProps, } from "./components/buttons/option-button/Opti
126
126
  export { default as IconButton } from "./components/button/IconButton";
127
127
  export type { IconButtonProps, } from "./components/button/IconButton";
128
128
  export { default as Radio } from "./components/button/Radio";
129
- export type { IRadioProps, } from "./components/button/Radio";
129
+ export type { RadioProps, } from "./components/button/Radio";
130
+ export { ButtonThreeDots } from "./components/button/ButtonThreeDots";
131
+ export type { TButtonThreeDotsProps, } from "./components/button/ButtonThreeDots";
130
132
  export { FloatingBar } from "./components/floating-bar/FloatingBar";
131
133
  export type { FloatingBarProps, FloatingBarActionConfig, FloatingBarDeleteConfig, FloatingBarSize, FloatingBarPosition, FloatingBarTheme, } from "./components/floating-bar/FloatingBar";
132
134
  export { SearchBar } from "./components/forms/search-bar/SearchBar";