sag_components 2.0.0-beta234 → 2.0.0-beta235
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.d.ts +1 -2
- package/dist/index.esm.js +62 -60
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +62 -60
- package/dist/index.js.map +1 -1
- package/dist/types/components/ToggleSwitch/ToggleSwitch.d.ts +1 -2
- package/package.json +1 -1
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
* ToggleSwitch component for on/off states.
|
|
3
3
|
* Supports small/large sizes and disabled state.
|
|
4
4
|
*/
|
|
5
|
-
declare function ToggleSwitch({ checked, onChange, size, disabled,
|
|
5
|
+
declare function ToggleSwitch({ checked, onChange, size, disabled, ...props }: {
|
|
6
6
|
[x: string]: any;
|
|
7
7
|
checked: any;
|
|
8
8
|
onChange: any;
|
|
9
9
|
size?: string;
|
|
10
10
|
disabled?: boolean;
|
|
11
|
-
aa: any;
|
|
12
11
|
}): import("react/jsx-runtime").JSX.Element;
|
|
13
12
|
declare namespace ToggleSwitch {
|
|
14
13
|
namespace propTypes {
|