@timardex/cluemart-shared 1.5.799 → 1.5.800

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,5 +1,5 @@
1
1
  import "../chunk-VA5YN2K3.mjs";
2
- import "../chunk-KSFDYCSS.mjs";
2
+ import "../chunk-VGOXRE34.mjs";
3
3
  import {
4
4
  SCHOOL_MIN_STUDENT_COUNT,
5
5
  normalizeUrl
package/dist/index.cjs CHANGED
@@ -138,6 +138,7 @@ __export(index_exports, {
138
138
  badgeFiles: () => badgeFiles,
139
139
  badgeIds: () => badgeIds,
140
140
  badges: () => badges,
141
+ bankAccountDetailsFields: () => bankAccountDetailsFields,
141
142
  buildApplicationShareDescription: () => buildApplicationShareDescription,
142
143
  buildCalendarSheetContentData: () => buildCalendarSheetContentData,
143
144
  buildFacebookShareQuote: () => buildFacebookShareQuote,
@@ -3008,6 +3009,45 @@ var tagOptions = availableTagTypes.map((tag) => ({
3008
3009
  value: tag.label
3009
3010
  }));
3010
3011
 
3012
+ // src/formFields/global.ts
3013
+ var emailField = {
3014
+ helperText: "Enter email address",
3015
+ keyboardType: "email-address",
3016
+ name: "email",
3017
+ placeholder: "Email"
3018
+ };
3019
+ var companyContactFields = [
3020
+ {
3021
+ ...emailField,
3022
+ name: "contactDetails.email"
3023
+ },
3024
+ {
3025
+ helperText: "Enter your mobile phone number",
3026
+ keyboardType: "phone-pad",
3027
+ name: "contactDetails.mobilePhone",
3028
+ placeholder: "Mobile Phone Number"
3029
+ },
3030
+ {
3031
+ helperText: "Enter your landline phone number",
3032
+ keyboardType: "phone-pad",
3033
+ name: "contactDetails.landlinePhone",
3034
+ placeholder: "Landline Phone Number"
3035
+ }
3036
+ ];
3037
+ var bankAccountDetailsFields = [
3038
+ {
3039
+ helperText: "Account holder name *",
3040
+ name: "accountHolderName",
3041
+ placeholder: "Account holder name"
3042
+ },
3043
+ {
3044
+ helperText: "Account number *",
3045
+ keyboardType: "number-pad",
3046
+ name: "accountNumber",
3047
+ placeholder: "Account number"
3048
+ }
3049
+ ];
3050
+
3011
3051
  // src/formFields/event/eventInfo.ts
3012
3052
  var eventInfo = [
3013
3053
  {
@@ -3030,17 +3070,7 @@ var eventInfo = [
3030
3070
  }
3031
3071
  ];
3032
3072
  var eventInfoPaymentInfo = [
3033
- {
3034
- helperText: "Account holder name *",
3035
- name: "accountHolderName",
3036
- placeholder: "Account holder name"
3037
- },
3038
- {
3039
- helperText: "Account number *",
3040
- keyboardType: "number-pad",
3041
- name: "accountNumber",
3042
- placeholder: "Account number"
3043
- },
3073
+ ...bankAccountDetailsFields,
3044
3074
  {
3045
3075
  helperText: "Payment link, where applicants can pay *",
3046
3076
  keyboardType: "url",
@@ -3281,32 +3311,6 @@ var refundPolicyOptions = [
3281
3311
  }
3282
3312
  ];
3283
3313
 
3284
- // src/formFields/global.ts
3285
- var emailField = {
3286
- helperText: "Enter email address",
3287
- keyboardType: "email-address",
3288
- name: "email",
3289
- placeholder: "Email"
3290
- };
3291
- var companyContactFields = [
3292
- {
3293
- ...emailField,
3294
- name: "contactDetails.email"
3295
- },
3296
- {
3297
- helperText: "Enter your mobile phone number",
3298
- keyboardType: "phone-pad",
3299
- name: "contactDetails.mobilePhone",
3300
- placeholder: "Mobile Phone Number"
3301
- },
3302
- {
3303
- helperText: "Enter your landline phone number",
3304
- keyboardType: "phone-pad",
3305
- name: "contactDetails.landlinePhone",
3306
- placeholder: "Landline Phone Number"
3307
- }
3308
- ];
3309
-
3310
3314
  // src/formFields/auth.ts
3311
3315
  var loginFields = [
3312
3316
  {
@@ -9165,6 +9169,7 @@ var fonts = {
9165
9169
  badgeFiles,
9166
9170
  badgeIds,
9167
9171
  badges,
9172
+ bankAccountDetailsFields,
9168
9173
  buildApplicationShareDescription,
9169
9174
  buildCalendarSheetContentData,
9170
9175
  buildFacebookShareQuote,