@homebound/beam 2.408.0 → 2.408.1
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/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4867,7 +4867,7 @@ declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonPro
|
|
|
4867
4867
|
|
|
4868
4868
|
interface SelectToggleProps {
|
|
4869
4869
|
id: string;
|
|
4870
|
-
disabled?: boolean;
|
|
4870
|
+
disabled?: boolean | ReactNode;
|
|
4871
4871
|
}
|
|
4872
4872
|
/** Provides a checkbox to show/drive this row's selected state. */
|
|
4873
4873
|
declare function SelectToggle({ id, disabled }: SelectToggleProps): _emotion_react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -4867,7 +4867,7 @@ declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonPro
|
|
|
4867
4867
|
|
|
4868
4868
|
interface SelectToggleProps {
|
|
4869
4869
|
id: string;
|
|
4870
|
-
disabled?: boolean;
|
|
4870
|
+
disabled?: boolean | ReactNode;
|
|
4871
4871
|
}
|
|
4872
4872
|
/** Provides a checkbox to show/drive this row's selected state. */
|
|
4873
4873
|
declare function SelectToggle({ id, disabled }: SelectToggleProps): _emotion_react_jsx_runtime.JSX.Element;
|