@vaneui/ui 0.2.1-alpha.20250820195901.10bc288 → 0.2.1-alpha.20250824103031.3e0b460

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.
@@ -41,5 +41,8 @@ export interface CheckboxWrapperTheme extends BaseComponentTheme {
41
41
  height: SizeTheme;
42
42
  };
43
43
  layout: DefaultLayoutThemes;
44
+ appearance: {
45
+ variant: GenericVariantTheme<AppearanceTheme>;
46
+ };
44
47
  }
45
48
  export declare const defaultCheckboxWrapperTheme: ComponentTheme<CheckboxProps, CheckboxWrapperTheme>;
package/dist/index.esm.js CHANGED
@@ -3254,7 +3254,7 @@ class GapTheme extends BaseTheme {
3254
3254
  return [];
3255
3255
  }
3256
3256
  // If gap is true or undefined, apply gap classes based on size
3257
- if (gap === 'gap' || gap === undefined) {
3257
+ if (gap === 'gap') {
3258
3258
  const gapClass = this[size];
3259
3259
  return gapClass ? [gapClass] : [];
3260
3260
  }
@@ -4170,12 +4170,15 @@ const themeDefaults = {
4170
4170
  },
4171
4171
  check: {
4172
4172
  default: true,
4173
+ filled: true,
4173
4174
  },
4174
4175
  wrapper: {
4176
+ transparent: true,
4175
4177
  md: true,
4176
4178
  inlineGrid: true,
4177
4179
  itemsCenter: true,
4178
4180
  justifyCenter: true,
4181
+ filled: true,
4179
4182
  },
4180
4183
  },
4181
4184
  };
@@ -4776,6 +4779,9 @@ const defaultCheckboxWrapperTheme = new ComponentTheme("span", "", {
4776
4779
  })
4777
4780
  },
4778
4781
  layout: defaultLayoutTheme,
4782
+ appearance: {
4783
+ variant: GenericVariantTheme.createSimpleUIElementBgAppearanceTheme()
4784
+ }
4779
4785
  }, ((_c = themeDefaults.checkbox) === null || _c === void 0 ? void 0 : _c.wrapper) || {}, CHECKBOX_CATEGORIES);
4780
4786
 
4781
4787
  const defaultLabelTheme = new ComponentTheme("label", "has-[input]:cursor-pointer cursor-default", {