@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.
package/dist/index.js
CHANGED
|
@@ -3256,7 +3256,7 @@ class GapTheme extends BaseTheme {
|
|
|
3256
3256
|
return [];
|
|
3257
3257
|
}
|
|
3258
3258
|
// If gap is true or undefined, apply gap classes based on size
|
|
3259
|
-
if (gap === 'gap'
|
|
3259
|
+
if (gap === 'gap') {
|
|
3260
3260
|
const gapClass = this[size];
|
|
3261
3261
|
return gapClass ? [gapClass] : [];
|
|
3262
3262
|
}
|
|
@@ -4172,12 +4172,15 @@ const themeDefaults = {
|
|
|
4172
4172
|
},
|
|
4173
4173
|
check: {
|
|
4174
4174
|
default: true,
|
|
4175
|
+
filled: true,
|
|
4175
4176
|
},
|
|
4176
4177
|
wrapper: {
|
|
4178
|
+
transparent: true,
|
|
4177
4179
|
md: true,
|
|
4178
4180
|
inlineGrid: true,
|
|
4179
4181
|
itemsCenter: true,
|
|
4180
4182
|
justifyCenter: true,
|
|
4183
|
+
filled: true,
|
|
4181
4184
|
},
|
|
4182
4185
|
},
|
|
4183
4186
|
};
|
|
@@ -4778,6 +4781,9 @@ const defaultCheckboxWrapperTheme = new ComponentTheme("span", "", {
|
|
|
4778
4781
|
})
|
|
4779
4782
|
},
|
|
4780
4783
|
layout: defaultLayoutTheme,
|
|
4784
|
+
appearance: {
|
|
4785
|
+
variant: GenericVariantTheme.createSimpleUIElementBgAppearanceTheme()
|
|
4786
|
+
}
|
|
4781
4787
|
}, ((_c = themeDefaults.checkbox) === null || _c === void 0 ? void 0 : _c.wrapper) || {}, CHECKBOX_CATEGORIES);
|
|
4782
4788
|
|
|
4783
4789
|
const defaultLabelTheme = new ComponentTheme("label", "has-[input]:cursor-pointer cursor-default", {
|