codexly-ui 0.12.38 → 0.12.39

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.
@@ -4973,7 +4973,7 @@ class ClxCheckboxComponent {
4973
4973
  _onTouched = () => { };
4974
4974
  _sizeConfig = computed(() => CHECKBOX_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeConfig" }] : /* istanbul ignore next */ []));
4975
4975
  _boxClass = computed(() => {
4976
- const base = `${this._sizeConfig().box} flex items-center justify-center rounded border-2 transition-colors duration-200`;
4976
+ const base = `${this._sizeConfig().box} shrink-0 flex items-center justify-center rounded border-2 transition-colors duration-200`;
4977
4977
  if (this._disabled()) {
4978
4978
  return this._checked()
4979
4979
  ? `${base} border-clx-border bg-clx-border text-white`