yuyeon 0.3.2-rc.4 → 0.3.2-rc.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/yuyeon.js +6 -2
- package/dist/yuyeon.umd.cjs +1 -1
- package/lib/components/field-input/YFieldInput.js +4 -1
- package/lib/components/field-input/YFieldInput.js.map +1 -1
- package/lib/components/input/YInput.js +2 -1
- package/lib/components/input/YInput.js.map +1 -1
- package/lib/components/slider/YSlider.js +1 -0
- package/lib/components/slider/YSlider.js.map +1 -1
- package/lib/components/slider/YSlider.scss +3 -0
- package/lib/components/slider/index.js +1 -1
- package/lib/components/slider/index.js.map +1 -1
- package/lib/components/slider/slider.js +2 -0
- package/lib/components/slider/slider.js.map +1 -0
- package/package.json +1 -1
- package/types/components/input/YInput.d.ts +1 -0
- package/types/components/slider/index.d.ts +1 -0
- package/types/components/slider/slider.d.ts +0 -0
package/dist/yuyeon.js
CHANGED
|
@@ -1539,7 +1539,8 @@ const ge = "y-input", lt = F({
|
|
|
1539
1539
|
})]), t.default ? t.default({
|
|
1540
1540
|
value: e.modelValue,
|
|
1541
1541
|
loading: x.value,
|
|
1542
|
-
attrId: `y-input--${r}
|
|
1542
|
+
attrId: `y-input--${r}`,
|
|
1543
|
+
focused: o.value
|
|
1543
1544
|
}) : d("div", {
|
|
1544
1545
|
class: `${ge}__value`,
|
|
1545
1546
|
"data-id": `y-input--${r}`,
|
|
@@ -1723,7 +1724,10 @@ const ge = "y-input", lt = F({
|
|
|
1723
1724
|
class: [`${st}__field`],
|
|
1724
1725
|
"data-id": D.attrId,
|
|
1725
1726
|
ref: "field"
|
|
1726
|
-
}, [e.floating ? (E = (Y = r.value) == null ? void 0 : Y.createLabel) == null ? void 0 : E.call(Y) : void 0, ($ = i.default) == null ? void 0 : $.call(i,
|
|
1727
|
+
}, [e.floating ? (E = (Y = r.value) == null ? void 0 : Y.createLabel) == null ? void 0 : E.call(Y) : void 0, ($ = i.default) == null ? void 0 : $.call(i, {
|
|
1728
|
+
...D,
|
|
1729
|
+
focused: o.value
|
|
1730
|
+
}), d("input", {
|
|
1727
1731
|
ref: l,
|
|
1728
1732
|
value: h.value,
|
|
1729
1733
|
name: e.name,
|