@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.
- package/dist/components/button/ButtonThreeDots.d.ts +3 -0
- package/dist/components/button/Radio.d.ts +8 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.es.js +2317 -2296
- package/dist/index.umd.js +60 -60
- package/package.json +1 -1
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";
|