@timardex/cluemart-shared 1.2.3 → 1.2.5

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
@@ -91,6 +91,7 @@ __export(index_exports, {
91
91
  packagingOptions: () => packagingOptions,
92
92
  paymentMethodOptions: () => paymentMethodOptions,
93
93
  producedIngOptions: () => producedIngOptions,
94
+ productLabelGroups: () => productLabelGroups,
94
95
  profileFields: () => profileFields,
95
96
  registerFields: () => registerFields,
96
97
  removeTypename: () => removeTypename,
@@ -560,6 +561,73 @@ var availableCityTypes = [
560
561
  "Wellington"
561
562
  ];
562
563
  var availableCityOptions = mapArrayToOptions(availableCityTypes);
564
+ var productLabelGroups = [
565
+ {
566
+ category: "Food Sensitivity",
567
+ items: [
568
+ { abbreviation: "DF", fullName: "Dairy-Free" },
569
+ { abbreviation: "EF", fullName: "Egg-Free" },
570
+ { abbreviation: "GF", fullName: "Gluten-Free" },
571
+ { abbreviation: "NF", fullName: "Nut-Free" }
572
+ ]
573
+ },
574
+ {
575
+ category: "Lifestyle",
576
+ items: [
577
+ { abbreviation: "KETO", fullName: "Keto-Friendly" },
578
+ { abbreviation: "P", fullName: "Paleo" },
579
+ { abbreviation: "V", fullName: "Vegan" },
580
+ { abbreviation: "VG", fullName: "Vegetarian" }
581
+ ]
582
+ },
583
+ {
584
+ category: "Natural",
585
+ items: [
586
+ { abbreviation: "ECO", fullName: "Eco-Friendly" },
587
+ { abbreviation: "ORGANIC", fullName: "Organic Product" }
588
+ ]
589
+ },
590
+ {
591
+ category: "Market Character",
592
+ items: [
593
+ { abbreviation: "HM", fullName: "Handmade" },
594
+ { abbreviation: "LOC", fullName: "Local Product" }
595
+ ]
596
+ },
597
+ {
598
+ category: "Cosmetic / Natural",
599
+ items: [
600
+ { abbreviation: "AROM", fullName: "Aromatherapy" },
601
+ { abbreviation: "CRF", fullName: "Cruelty-Free" },
602
+ { abbreviation: "HYPO", fullName: "Hypoallergenic" }
603
+ ]
604
+ },
605
+ {
606
+ category: "Animal Related",
607
+ items: [
608
+ { abbreviation: "GF-PET", fullName: "Grain-Free (Pet)" },
609
+ { abbreviation: "PF", fullName: "Pet-Friendly" }
610
+ ]
611
+ },
612
+ {
613
+ category: "Plant / Natural",
614
+ items: [
615
+ { abbreviation: "NPF", fullName: "Non-Pesticide / Chemical-Free" },
616
+ { abbreviation: "PLN", fullName: "Plant-Based" }
617
+ ]
618
+ },
619
+ {
620
+ category: "Gift / Design",
621
+ items: [
622
+ { abbreviation: "ART", fullName: "Artisan" },
623
+ { abbreviation: "LTD", fullName: "Limited Edition" }
624
+ ]
625
+ },
626
+ {
627
+ category: "Sustainability",
628
+ items: [{ abbreviation: "ZWP", fullName: "Zero-Waste Product" }]
629
+ }
630
+ ];
563
631
 
564
632
  // src/formFields/vendor/vendorInfo.ts
565
633
  var vendorElectricity = {
@@ -2391,9 +2459,10 @@ var VENDOR_DATETIME_FIELDS_FRAGMENT = import_client4.gql`
2391
2459
  `;
2392
2460
  var VENDOR_MENU_FIELDS_FRAGMENT = import_client4.gql`
2393
2461
  fragment VendorMenuFields on VendorMenuType {
2394
- name
2395
2462
  description
2463
+ name
2396
2464
  price
2465
+ productGroups
2397
2466
  }
2398
2467
  `;
2399
2468
  var VENDOR = import_client4.gql`
@@ -6142,6 +6211,7 @@ var fonts = {
6142
6211
  packagingOptions,
6143
6212
  paymentMethodOptions,
6144
6213
  producedIngOptions,
6214
+ productLabelGroups,
6145
6215
  profileFields,
6146
6216
  registerFields,
6147
6217
  removeTypename,