bianic-ui 2.8.1-beta.0 → 2.9.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/cjs/index.js CHANGED
@@ -2458,9 +2458,13 @@ var sizeConfig$9 = {
2458
2458
  checkClass: 'w-4 h-4',
2459
2459
  labelClass: 'text-size-sm font-normal',
2460
2460
  },
2461
+ tn: {
2462
+ checkClass: 'w-3 h-3',
2463
+ labelClass: 'text-size-sm font-normal',
2464
+ },
2461
2465
  };
2462
2466
 
2463
- var sizeUnion$3 = ['md', 'sm'];
2467
+ var sizeUnion$3 = ['md', 'sm', 'tn'];
2464
2468
  function Checkbox(_a) {
2465
2469
  var _b = _a.disabled, disabled = _b === void 0 ? false : _b, id = _a.id, _c = _a.size, size = _c === void 0 ? 'md' : _c, label = _a.label, _d = _a.onChange, onChange = _d === void 0 ? function () { } : _d, props = __rest(_a, ["disabled", "id", "size", "label", "onChange"]);
2466
2470
  var _e = sizeConfig$9[validUnion(size, sizeUnion$3)], checkClass = _e.checkClass, labelClass = _e.labelClass;