magneto365.ui 2.43.2 → 2.43.5
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/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/ToggleButton/ToggleButton.interface.d.ts +5 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +9 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/ToggleButton/ToggleButton.interface.d.ts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
|
@@ -4,9 +4,13 @@ export interface IToggleButton {
|
|
|
4
4
|
*/
|
|
5
5
|
className?: string;
|
|
6
6
|
/**
|
|
7
|
-
* this property sets the background and border color
|
|
7
|
+
* this property sets the background and border color when is selected
|
|
8
8
|
*/
|
|
9
9
|
color?: string;
|
|
10
|
+
/**
|
|
11
|
+
* this property sets the background when is not selected
|
|
12
|
+
*/
|
|
13
|
+
baseColor?: string;
|
|
10
14
|
/**
|
|
11
15
|
* this property sets the button name
|
|
12
16
|
*/
|