@codeandfunction/callaloo 1.13.4 → 1.13.6
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/assets/index.css +1 -1
- package/dist/index.js +37 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2150,39 +2150,43 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
2150
2150
|
createTextVNode(toDisplayString(_ctx.prefix), 1)
|
|
2151
2151
|
], 64))
|
|
2152
2152
|
], 2)) : createCommentVNode("", true),
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2153
|
+
createElementVNode("span", {
|
|
2154
|
+
class: normalizeClass(`${cssPrefix$4}__input-border-control`)
|
|
2155
|
+
}, [
|
|
2156
|
+
withDirectives(createElementVNode("input", {
|
|
2157
|
+
id: _ctx.id,
|
|
2158
|
+
ref_key: "inputElem",
|
|
2159
|
+
ref: inputElem,
|
|
2160
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedColor.value = $event),
|
|
2161
|
+
name: _ctx.name,
|
|
2162
|
+
"aria-label": _ctx.ariaLabel,
|
|
2163
|
+
autocomplete: _ctx.autoComplete ? "on" : "off",
|
|
2164
|
+
class: normalizeClass([
|
|
2165
|
+
`${cssPrefix$4}__input`,
|
|
2166
|
+
{ "--input-group": _ctx.grouped || _ctx.prefix || _ctx.suffix }
|
|
2167
|
+
]),
|
|
2168
|
+
disabled: _ctx.disabled,
|
|
2169
|
+
form: _ctx.form,
|
|
2170
|
+
maxlength: _ctx.maxLength,
|
|
2171
|
+
minlength: _ctx.minLength,
|
|
2172
|
+
pattern: _ctx.pattern,
|
|
2173
|
+
placeholder: _ctx.placeholder,
|
|
2174
|
+
readonly: _ctx.readonly,
|
|
2175
|
+
required: _ctx.required,
|
|
2176
|
+
spellcheck: _ctx.spellCheck,
|
|
2177
|
+
type: _ctx.type,
|
|
2178
|
+
onBlur: _cache[1] || (_cache[1] = //@ts-ignore
|
|
2179
|
+
(...args) => _ctx.onBlur && _ctx.onBlur(...args)),
|
|
2180
|
+
onChange: _cache[2] || (_cache[2] = //@ts-ignore
|
|
2181
|
+
(...args) => _ctx.onChange && _ctx.onChange(...args)),
|
|
2182
|
+
onFocus: _cache[3] || (_cache[3] = //@ts-ignore
|
|
2183
|
+
(...args) => _ctx.onFocus && _ctx.onFocus(...args)),
|
|
2184
|
+
onInput: _cache[4] || (_cache[4] = //@ts-ignore
|
|
2185
|
+
(...args) => _ctx.onInput && _ctx.onInput(...args))
|
|
2186
|
+
}, null, 42, _hoisted_3$4), [
|
|
2187
|
+
[vModelDynamic, selectedColor.value]
|
|
2188
|
+
])
|
|
2189
|
+
], 2),
|
|
2186
2190
|
_ctx.type === unref(InputTypes).Color ? (openBlock(), createElementBlock("span", {
|
|
2187
2191
|
key: 1,
|
|
2188
2192
|
class: normalizeClass(`${cssPrefix$4}__selected-color`)
|