acsi-core 0.1.99 → 0.2.0
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.css +1 -2
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -8
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -412,10 +412,7 @@ var CoreInput$1 = function CoreInput(props) {
|
|
|
412
412
|
className: "" + styles$4["core-checkbox"]
|
|
413
413
|
}, React.createElement(FormGroup, {
|
|
414
414
|
check: true,
|
|
415
|
-
|
|
416
|
-
display: "flex",
|
|
417
|
-
alignItems: "center"
|
|
418
|
-
}
|
|
415
|
+
inline: true
|
|
419
416
|
}, React.createElement(Input, {
|
|
420
417
|
id: "core-checkbox-" + name,
|
|
421
418
|
type: "checkbox",
|
|
@@ -425,10 +422,11 @@ var CoreInput$1 = function CoreInput(props) {
|
|
|
425
422
|
return _onChange === null || _onChange === void 0 ? void 0 : _onChange(name, e.target.checked);
|
|
426
423
|
},
|
|
427
424
|
disabled: disabled
|
|
428
|
-
}), React.createElement(
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
425
|
+
}), React.createElement(Label, {
|
|
426
|
+
htmlFor: "core-checkbox-" + name,
|
|
427
|
+
check: true,
|
|
428
|
+
cssModule: {
|
|
429
|
+
marginTop: '0px'
|
|
432
430
|
}
|
|
433
431
|
}, label)));
|
|
434
432
|
};
|