@bagelink/vue 0.0.98 → 0.0.100

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.
@@ -1,9 +1,9 @@
1
1
  declare const ContactArray: import("@formkit/core").FormKitTypeDefinition;
2
2
  declare const Address: import("@formkit/core").FormKitTypeDefinition;
3
- declare const BankDetailsArray: import("@formkit/core").FormKitTypeDefinition;
3
+ declare const BankDetails: import("@formkit/core").FormKitTypeDefinition;
4
4
  declare const MiscFields: import("@formkit/core").FormKitTypeDefinition;
5
5
  declare const ToggleSwitch: import("@formkit/core").FormKitTypeDefinition;
6
6
  declare const FileUpload: import("@formkit/core").FormKitTypeDefinition;
7
7
  declare const TextVariables: import("@formkit/core").FormKitTypeDefinition;
8
8
  declare const PersonPreview: import("@formkit/core").FormKitTypeDefinition;
9
- export { TextVariables, ContactArray, PersonPreview, Address, BankDetailsArray, MiscFields, ToggleSwitch, FileUpload, };
9
+ export { TextVariables, ContactArray, PersonPreview, Address, BankDetails, MiscFields, ToggleSwitch, FileUpload, };
package/dist/index.cjs CHANGED
@@ -22137,11 +22137,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
22137
22137
  };
22138
22138
  }
22139
22139
  });
22140
- const BankDetailsArray$1 = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-277091e1"]]);
22141
- const B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
22142
- __proto__: null,
22143
- default: BankDetailsArray$1
22144
- }, Symbol.toStringTag, { value: "Module" }));
22140
+ const BankDetailsArray = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-277091e1"]]);
22145
22141
  const _hoisted_1$j = { class: "misc-wrap" };
22146
22142
  const _sfc_main$l = /* @__PURE__ */ defineComponent({
22147
22143
  __name: "MiscFields",
@@ -22645,7 +22641,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
22645
22641
  });
22646
22642
  const ContactArray = createInput(ContactArrayFormKit);
22647
22643
  const Address = createInput(AddressArray);
22648
- const BankDetailsArray = createInput(B);
22644
+ const BankDetails = createInput(BankDetailsArray);
22649
22645
  const MiscFields = createInput(MiscFieldsBtns);
22650
22646
  const ToggleSwitch = createInput(Toggle);
22651
22647
  const FileUpload = createInput(_sfc_main$j);
@@ -26417,7 +26413,7 @@ const DurationInput = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defin
26417
26413
  }, Symbol.toStringTag, { value: "Module" }));
26418
26414
  exports.Address = Address;
26419
26415
  exports.BagelVue = BagelVue;
26420
- exports.BankDetailsArray = BankDetailsArray;
26416
+ exports.BankDetails = BankDetails;
26421
26417
  exports.BarChart = BarChart$1;
26422
26418
  exports.Btn = Btn$1;
26423
26419
  exports.CheckInput = CheckInput$1;
package/dist/index.mjs CHANGED
@@ -22135,11 +22135,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
22135
22135
  };
22136
22136
  }
22137
22137
  });
22138
- const BankDetailsArray$1 = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-277091e1"]]);
22139
- const B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
22140
- __proto__: null,
22141
- default: BankDetailsArray$1
22142
- }, Symbol.toStringTag, { value: "Module" }));
22138
+ const BankDetailsArray = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-277091e1"]]);
22143
22139
  const _hoisted_1$j = { class: "misc-wrap" };
22144
22140
  const _sfc_main$l = /* @__PURE__ */ defineComponent({
22145
22141
  __name: "MiscFields",
@@ -22643,7 +22639,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
22643
22639
  });
22644
22640
  const ContactArray = createInput(ContactArrayFormKit);
22645
22641
  const Address = createInput(AddressArray);
22646
- const BankDetailsArray = createInput(B);
22642
+ const BankDetails = createInput(BankDetailsArray);
22647
22643
  const MiscFields = createInput(MiscFieldsBtns);
22648
22644
  const ToggleSwitch = createInput(Toggle);
22649
22645
  const FileUpload = createInput(_sfc_main$j);
@@ -26416,7 +26412,7 @@ const DurationInput = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defin
26416
26412
  export {
26417
26413
  Address,
26418
26414
  BagelVue,
26419
- BankDetailsArray,
26415
+ BankDetails,
26420
26416
  BarChart$1 as BarChart,
26421
26417
  Btn$1 as Btn,
26422
26418
  CheckInput$1 as CheckInput,
@@ -1,4 +1,4 @@
1
- export interface BankDetails {
1
+ export interface BankDetailsInterface {
2
2
  bank_name: string;
3
3
  branch: string;
4
4
  account_number: string;
@@ -14,7 +14,7 @@ export interface NewPerson {
14
14
  email?: string;
15
15
  phone?: string;
16
16
  gender?: string;
17
- bank_details?: BankDetails;
17
+ bank_details?: BankDetailsInterface;
18
18
  }
19
19
  interface Email {
20
20
  id?: string;
@@ -42,6 +42,6 @@ export interface Person {
42
42
  date_of_birth: string;
43
43
  gender: string;
44
44
  roles: Role[];
45
- bank_details: BankDetails[];
45
+ bank_details: BankDetailsInterface[];
46
46
  }
47
47
  export {};
@@ -1,5 +1,5 @@
1
1
  export type { MaterialIcons } from './materialIcons';
2
- export type { BankDetails, NewPerson, Person } from './Person';
2
+ export type { BankDetailsInterface as BankDetails, NewPerson, Person } from './Person';
3
3
  export type { Tables, TableToTypeMapping } from '@bagelink/sdk';
4
4
  export type { StorageFile } from './file';
5
5
  export * from './BagelField';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.98",
4
+ "version": "0.0.100",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -52,7 +52,7 @@
52
52
  "dependencies": {},
53
53
  "devDependencies": {
54
54
  "@vue-macros/reactivity-transform": "^0.4.0",
55
- "@bagelink/sdk": "0.0.98"
55
+ "@bagelink/sdk": "0.0.100"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "@bagelink/sdk": "*",
@@ -1,7 +1,7 @@
1
1
  import { createInput } from '@formkit/vue';
2
2
  import ContactArrayFormKit from './ContactArrayFormKit.vue';
3
3
  import AddressArray from './AddressArray.vue';
4
- import * as B from './BankDetailsArray.vue';
4
+ import BankDetailsArray from './BankDetailsArray.vue';
5
5
  import MiscFieldsBtns from './MiscFields.vue';
6
6
  import Toggle from './Toggle.vue';
7
7
  import FileUploader from './FileUploader.vue';
@@ -10,7 +10,7 @@ import TextVariableExamples from '../whatsapp/form/TextVariableExamples.vue';
10
10
 
11
11
  const ContactArray = createInput(ContactArrayFormKit);
12
12
  const Address = createInput(AddressArray);
13
- const BankDetailsArray = createInput(B);
13
+ const BankDetails = createInput(BankDetailsArray);
14
14
  const MiscFields = createInput(MiscFieldsBtns);
15
15
  const ToggleSwitch = createInput(Toggle);
16
16
  const FileUpload = createInput(FileUploader);
@@ -22,7 +22,7 @@ export {
22
22
  ContactArray,
23
23
  PersonPreview,
24
24
  Address,
25
- BankDetailsArray,
25
+ BankDetails,
26
26
  MiscFields,
27
27
  ToggleSwitch,
28
28
  FileUpload,
@@ -1,4 +1,4 @@
1
- export interface BankDetails {
1
+ export interface BankDetailsInterface {
2
2
  bank_name: string;
3
3
  branch: string;
4
4
  account_number: string;
@@ -15,7 +15,7 @@ export interface NewPerson {
15
15
  email?: string;
16
16
  phone?: string;
17
17
  gender?: string;
18
- bank_details?: BankDetails;
18
+ bank_details?: BankDetailsInterface;
19
19
  }
20
20
 
21
21
  interface Email {
@@ -47,5 +47,5 @@ export interface Person {
47
47
  date_of_birth: string;
48
48
  gender: string;
49
49
  roles: Role[];
50
- bank_details: BankDetails[];
50
+ bank_details: BankDetailsInterface[];
51
51
  }
@@ -1,5 +1,5 @@
1
1
  export type { MaterialIcons } from './materialIcons';
2
- export type { BankDetails, NewPerson, Person } from './Person';
2
+ export type { BankDetailsInterface as BankDetails, NewPerson, Person } from './Person';
3
3
  export type { Tables, TableToTypeMapping } from '@bagelink/sdk';
4
4
  export type { StorageFile } from './file';
5
5
  export * from './BagelField';