@bagelink/vue 0.0.126 → 0.0.128

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
@@ -17911,7 +17911,7 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
17911
17911
  modalForm({
17912
17912
  side: true,
17913
17913
  title: `${first_name} ${last_name}`,
17914
- schema: props2.personSchema,
17914
+ schema: props2.personSchema(),
17915
17915
  modelValue: person.value,
17916
17916
  onSubmit: (newPerson) => bagel.put("/person", newPerson)
17917
17917
  // .then(() => toast.success(i18nT('updatedSuccessfully'))), // TODO: use toast
package/dist/index.mjs CHANGED
@@ -17909,7 +17909,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
17909
17909
  modalForm({
17910
17910
  side: true,
17911
17911
  title: `${first_name} ${last_name}`,
17912
- schema: props2.personSchema,
17912
+ schema: props2.personSchema(),
17913
17913
  modelValue: person.value,
17914
17914
  onSubmit: (newPerson) => bagel.put("/person", newPerson)
17915
17915
  // .then(() => toast.success(i18nT('updatedSuccessfully'))), // TODO: use toast
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.126",
4
+ "version": "0.0.128",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -99,7 +99,7 @@ const showEditForm = async () => {
99
99
  modalForm({
100
100
  side: true,
101
101
  title: `${first_name} ${last_name}`,
102
- schema: props.personSchema,
102
+ schema: props.personSchema(),
103
103
  modelValue: person,
104
104
  onSubmit: (newPerson) => bagel.put('/person', newPerson),
105
105
  // .then(() => toast.success(i18nT('updatedSuccessfully'))), // TODO: use toast