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