@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.
- package/dist/components/button/ButtonThreeDots.d.ts +3 -0
- package/dist/components/button/Radio.d.ts +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +2309 -2298
- package/dist/index.umd.js +56 -56
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export interface
|
|
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<
|
|
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 {
|
|
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";
|