magneto365.ui 2.43.2 → 2.43.4
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 +7 -6
- 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 +7 -6
- 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
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -926,9 +926,13 @@ interface IToggleButton {
|
|
|
926
926
|
*/
|
|
927
927
|
className?: string;
|
|
928
928
|
/**
|
|
929
|
-
* this property sets the background and border color
|
|
929
|
+
* this property sets the background and border color when is selected
|
|
930
930
|
*/
|
|
931
931
|
color?: string;
|
|
932
|
+
/**
|
|
933
|
+
* this property sets the background when is not selected
|
|
934
|
+
*/
|
|
935
|
+
baseColor?: string;
|
|
932
936
|
/**
|
|
933
937
|
* this property sets the button name
|
|
934
938
|
*/
|
package/package.json
CHANGED