@bagelink/vue 0.0.256 → 0.0.258

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.cjs CHANGED
@@ -26011,7 +26011,10 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
26011
26011
  vue.watch(() => props2.options, updateOptionList, { immediate: true });
26012
26012
  return (_ctx, _cache) => {
26013
26013
  return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$n, [
26014
- vue.createElementVNode("label", { for: _ctx.id }, [
26014
+ vue.createElementVNode("label", {
26015
+ class: "txt-start",
26016
+ for: _ctx.id
26017
+ }, [
26015
26018
  vue.createTextVNode(vue.toDisplayString(_ctx.label) + " ", 1),
26016
26019
  vue.createVNode(vue.unref(Multiselect), {
26017
26020
  ref_key: "multiselect",
package/dist/index.mjs CHANGED
@@ -26009,7 +26009,10 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
26009
26009
  watch(() => props2.options, updateOptionList, { immediate: true });
26010
26010
  return (_ctx, _cache) => {
26011
26011
  return openBlock(), createElementBlock("div", _hoisted_1$n, [
26012
- createElementVNode("label", { for: _ctx.id }, [
26012
+ createElementVNode("label", {
26013
+ class: "txt-start",
26014
+ for: _ctx.id
26015
+ }, [
26013
26016
  createTextVNode(toDisplayString(_ctx.label) + " ", 1),
26014
26017
  createVNode(unref(Multiselect), {
26015
26018
  ref_key: "multiselect",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.256",
4
+ "version": "0.0.258",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="pb-1">
3
- <label :for="id">
3
+ <label class="txt-start" :for="id">
4
4
  {{ label }}
5
5
  <Multiselect
6
6
  ref="multiselect" :id="id" label="label" trackBy="value" :options="optionList" :required="required"