@idds/vue 1.3.3 → 1.3.5
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/components/Checkbox.vue.d.ts.map +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +6 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1990,6 +1990,9 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
1990
1990
|
if (props.disabled) {
|
|
1991
1991
|
classes.push("ina-checkbox--disabled");
|
|
1992
1992
|
}
|
|
1993
|
+
if (props.subtext) {
|
|
1994
|
+
classes.push("ina-checkbox--with-subtext");
|
|
1995
|
+
}
|
|
1993
1996
|
return classes;
|
|
1994
1997
|
});
|
|
1995
1998
|
const boxClasses = computed(() => {
|
|
@@ -2054,11 +2057,12 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
2054
2057
|
disabled: __props.disabled,
|
|
2055
2058
|
readonly: __props.readonly,
|
|
2056
2059
|
indeterminate: __props.indeterminate,
|
|
2057
|
-
class: "ina-checkbox__input peer"
|
|
2060
|
+
class: "ina-checkbox__input peer"
|
|
2061
|
+
}, _ctx.$attrs, {
|
|
2058
2062
|
onChange: handleChange,
|
|
2059
2063
|
onFocus: handleFocus,
|
|
2060
2064
|
onBlur: handleBlur
|
|
2061
|
-
}
|
|
2065
|
+
}), null, 16, _hoisted_2$v),
|
|
2062
2066
|
createElementVNode("div", {
|
|
2063
2067
|
class: normalizeClass(boxClasses.value)
|
|
2064
2068
|
}, [
|