@true-engineering/true-react-common-ui-kit 3.0.0-alpha.7 → 3.0.0-alpha.9
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/Checkbox/Checkbox.d.ts +1 -1
- package/dist/components/Switch/Switch.d.ts +1 -1
- package/dist/true-react-common-ui-kit.js +6 -3
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +6 -3
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Checkbox/Checkbox.tsx +1 -1
- package/src/components/MultiSelectList/MultiSelectList.styles.ts +3 -0
- package/src/components/Switch/Switch.tsx +2 -2
|
@@ -11047,10 +11047,13 @@
|
|
|
11047
11047
|
padding: [
|
|
11048
11048
|
11,
|
|
11049
11049
|
16
|
|
11050
|
-
]
|
|
11050
|
+
],
|
|
11051
|
+
boxSizing: "border-box",
|
|
11052
|
+
width: "100%"
|
|
11051
11053
|
},
|
|
11052
11054
|
children: {
|
|
11053
|
-
marginRight: "auto"
|
|
11055
|
+
marginRight: "auto",
|
|
11056
|
+
overflow: "hidden"
|
|
11054
11057
|
}
|
|
11055
11058
|
};
|
|
11056
11059
|
var clearButtonStyles$2 = {
|
|
@@ -27686,7 +27689,7 @@
|
|
|
27686
27689
|
return target;
|
|
27687
27690
|
}
|
|
27688
27691
|
var Switch = function(param) {
|
|
27689
|
-
var isDisabled = param.isDisabled,
|
|
27692
|
+
var isDisabled = param.isDisabled, _param_isChecked = param.isChecked, isChecked = _param_isChecked === void 0 ? false : _param_isChecked, isInvalid = param.isInvalid, value = param.value, children = param.children, _param_labelPosition = param.labelPosition, labelPosition = _param_labelPosition === void 0 ? "right" : _param_labelPosition, _param_color = param.color, color = _param_color === void 0 ? "primary" : _param_color, data = param.data, tweakStyles = param.tweakStyles, testId = param.testId, onChange = param.onChange;
|
|
27690
27693
|
var classes = useStyles$5({
|
|
27691
27694
|
theme: tweakStyles
|
|
27692
27695
|
});
|