mozrest-sdk-react-dev 0.2.94 → 0.2.96

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/mozrest-sdk.es.js CHANGED
@@ -6532,6 +6532,7 @@ const Closed$1 = "Closed";
6532
6532
  const startTime$1 = "Start time";
6533
6533
  const endTime$1 = "End time";
6534
6534
  const add$6 = "Add";
6535
+ const youDontHaveReviewsYet$1 = "You don't have reviews yet";
6535
6536
  var en = {
6536
6537
  errors: errors$1,
6537
6538
  SPECIALCLOSINGDATES: SPECIALCLOSINGDATES$1,
@@ -6957,7 +6958,9 @@ var en = {
6957
6958
  startTime: startTime$1,
6958
6959
  endTime: endTime$1,
6959
6960
  add: add$6,
6960
- "Successfully Updated": "Successfully Updated"
6961
+ "Successfully Updated": "Successfully Updated",
6962
+ youDontHaveReviewsYet: youDontHaveReviewsYet$1,
6963
+ "Search ...": "Search ..."
6961
6964
  };
6962
6965
  const errors = {
6963
6966
  required: "Este campo es requerido",
@@ -7378,6 +7381,7 @@ const Closed = "Cerrado";
7378
7381
  const startTime = "Hora de inicio";
7379
7382
  const endTime = "Hora de fin";
7380
7383
  const add$5 = "Agregar";
7384
+ const youDontHaveReviewsYet = "A\xFAn no tienes rese\xF1as";
7381
7385
  var es = {
7382
7386
  errors,
7383
7387
  SPECIALCLOSINGDATES,
@@ -7803,7 +7807,9 @@ var es = {
7803
7807
  startTime,
7804
7808
  endTime,
7805
7809
  add: add$5,
7806
- "Successfully Updated": "Actualizado con \xE9xito"
7810
+ "Successfully Updated": "Actualizado con \xE9xito",
7811
+ youDontHaveReviewsYet,
7812
+ "Search ...": "Buscar ..."
7807
7813
  };
7808
7814
  instance.use(initReactI18next).init({
7809
7815
  resources: {
@@ -46028,7 +46034,7 @@ const Reviews = ({ reviews, isEmpty, onReload, multiVenue, setShowTemplate }) =>
46028
46034
  })
46029
46035
  }, isEmpty && /* @__PURE__ */ React__default.createElement("div", {
46030
46036
  className: styles$1P.empty
46031
- }, /* @__PURE__ */ React__default.createElement(Empty, null, "You don't have reviews yet")), /* @__PURE__ */ React__default.createElement("div", null, reviews == null ? void 0 : reviews.map(({ id: id2, ...restReview }, index2) => /* @__PURE__ */ React__default.createElement(Review, {
46037
+ }, /* @__PURE__ */ React__default.createElement(Empty, null, t2("youDontHaveReviewsYet"))), /* @__PURE__ */ React__default.createElement("div", null, reviews == null ? void 0 : reviews.map(({ id: id2, ...restReview }, index2) => /* @__PURE__ */ React__default.createElement(Review, {
46032
46038
  key: id2,
46033
46039
  id: id2,
46034
46040
  ...restReview,
@@ -103368,7 +103374,7 @@ var styles$n = {
103368
103374
  filtersContainer,
103369
103375
  filters
103370
103376
  };
103371
- const RestaurantsSelector = ({ open, onClose: onClose2, selectedRestaurants, setSelectedRestaurants, selectedBrand, setSelectedBrand }) => {
103377
+ const RestaurantsSelector = ({ open, onClose: onClose2, selectedRestaurants, setSelectedRestaurants, selectedBrand, setSelectedBrand, setShowRestaurantsSelector }) => {
103372
103378
  const { t: t2 } = useTranslation();
103373
103379
  const [searchValue, setSearchValue] = useState("");
103374
103380
  const [currentPage, setCurrentPage] = useState(1);
@@ -103424,6 +103430,11 @@ const RestaurantsSelector = ({ open, onClose: onClose2, selectedRestaurants, set
103424
103430
  setBrandToFilter(null);
103425
103431
  }
103426
103432
  }, [selectedBrand]);
103433
+ useEffect(() => {
103434
+ if (data2 && data2.total && data2.total > 1) {
103435
+ setShowRestaurantsSelector(true);
103436
+ }
103437
+ }, [data2]);
103427
103438
  const tableHeader = [
103428
103439
  {
103429
103440
  label: /* @__PURE__ */ React__default.createElement("input", {
@@ -103572,6 +103583,7 @@ const IconButton = ({
103572
103583
  };
103573
103584
  const ToolbarFormFields = ({ handleOnFilter, isExportLoading, onOpenExportDataModal }) => {
103574
103585
  const { t: t2 } = useTranslation();
103586
+ const [showRestaurantsSelector, setShowRestaurantsSelector] = useState(false);
103575
103587
  const [openRestaurantsSelector, setOpenRestaurantsSelector] = useState(false);
103576
103588
  const onOpenRestaurantsSelector = () => setOpenRestaurantsSelector(true);
103577
103589
  const onCloseRestaurantsSelector = () => setOpenRestaurantsSelector(false);
@@ -103629,7 +103641,7 @@ const ToolbarFormFields = ({ handleOnFilter, isExportLoading, onOpenExportDataMo
103629
103641
  xs: 24,
103630
103642
  sm: 12,
103631
103643
  md: 6,
103632
- lg: 3
103644
+ lg: showRestaurantsSelector ? 3 : 5
103633
103645
  }, /* @__PURE__ */ React__default.createElement(NewSelect, {
103634
103646
  options: partySizeOptions,
103635
103647
  placeholder: t2("ALL"),
@@ -103640,8 +103652,8 @@ const ToolbarFormFields = ({ handleOnFilter, isExportLoading, onOpenExportDataMo
103640
103652
  xs: 24,
103641
103653
  sm: 12,
103642
103654
  md: 8,
103643
- lg: 5
103644
- }, /* @__PURE__ */ React__default.createElement(SelectChannels, null)), /* @__PURE__ */ React__default.createElement(Col$1, {
103655
+ lg: showRestaurantsSelector ? 5 : 6
103656
+ }, /* @__PURE__ */ React__default.createElement(SelectChannels, null)), showRestaurantsSelector && /* @__PURE__ */ React__default.createElement(Col$1, {
103645
103657
  xs: 12,
103646
103658
  sm: 12,
103647
103659
  md: 8,
@@ -103671,7 +103683,8 @@ const ToolbarFormFields = ({ handleOnFilter, isExportLoading, onOpenExportDataMo
103671
103683
  selectedBrand,
103672
103684
  setSelectedBrand,
103673
103685
  open: openRestaurantsSelector,
103674
- onClose: onCloseRestaurantsSelector
103686
+ onClose: onCloseRestaurantsSelector,
103687
+ setShowRestaurantsSelector
103675
103688
  }));
103676
103689
  };
103677
103690
  const ExportReservationAnalytics = async ({ params }) => {
@@ -103681,13 +103694,33 @@ const ExportReservationAnalytics = async ({ params }) => {
103681
103694
  );
103682
103695
  return { data: "requested" };
103683
103696
  };
103684
- const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportLoading, setIsExportLoading, userEmail, userFullName }) => {
103697
+ const ExportResbookReservationAnalytics = async ({ params, venueId }) => {
103698
+ await instance$1.get(
103699
+ `reports/resbook-booking-summary/${venueId}`,
103700
+ { params }
103701
+ );
103702
+ return { data: "requested" };
103703
+ };
103704
+ const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportLoading, setIsExportLoading, userEmail, userFullName, venueId }) => {
103705
+ var _a2;
103685
103706
  const { t: t2 } = useTranslation();
103707
+ const roles = (_a2 = userData == null ? void 0 : userData.roles) != null ? _a2 : [];
103708
+ const [rolePos, setRolePos] = useState(false);
103686
103709
  const [exportFilters, setExportFilters] = useState(filters2 != null ? filters2 : {});
103687
103710
  const [openConfirmationModal, setOpenConfirmationModal] = useState(false);
103688
103711
  const onOpenConfirmationModal = () => setOpenConfirmationModal(true);
103689
103712
  const onCloseConfirmationModal = () => setOpenConfirmationModal(false);
103690
- const { isExecuting, execute, error: error3 } = useService(ExportReservationAnalytics, {
103713
+ const { isExecuting: isExecutingAnalytics, execute: executeAnalytics, error: errorAnalytics } = useService(ExportReservationAnalytics, {
103714
+ onSuccess: async () => {
103715
+ onClose2();
103716
+ setIsExportLoading(false);
103717
+ },
103718
+ onError: async () => {
103719
+ setIsExportLoading(false);
103720
+ },
103721
+ successText: "Successfully requested"
103722
+ });
103723
+ const { isExecuting: isExecutingResbookAnalytics, execute: executeResbookAnalytics, error: errorResbookAnalytics } = useService(ExportResbookReservationAnalytics, {
103691
103724
  onSuccess: async () => {
103692
103725
  onClose2();
103693
103726
  setIsExportLoading(false);
@@ -103700,18 +103733,41 @@ const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportL
103700
103733
  const onRequestExcel = () => {
103701
103734
  setIsExportLoading(true);
103702
103735
  onCloseConfirmationModal();
103703
- execute({
103704
- params: {
103705
- ...exportFilters,
103706
- ...userEmail ? {
103707
- ["filters[userEmail]"]: userEmail
103708
- } : {},
103709
- ...userFullName ? {
103710
- ["filters[userFullName]"]: userFullName
103711
- } : {}
103712
- }
103713
- });
103736
+ if (rolePos) {
103737
+ executeResbookAnalytics({
103738
+ venueId,
103739
+ params: {
103740
+ ...{
103741
+ ["filters[fromZ]"]: hooks(exportFilters["filters[from]"]).format("YYYY-MM-DD"),
103742
+ ["filters[tillZ]"]: hooks(exportFilters["filters[till]"]).format("YYYY-MM-DD")
103743
+ },
103744
+ ...userEmail ? {
103745
+ ["filters[userEmail]"]: userEmail
103746
+ } : {},
103747
+ ...userFullName ? {
103748
+ ["filters[userFullName]"]: userFullName
103749
+ } : {}
103750
+ }
103751
+ });
103752
+ } else {
103753
+ executeAnalytics({
103754
+ params: {
103755
+ ...exportFilters,
103756
+ ...userEmail ? {
103757
+ ["filters[userEmail]"]: userEmail
103758
+ } : {},
103759
+ ...userFullName ? {
103760
+ ["filters[userFullName]"]: userFullName
103761
+ } : {}
103762
+ }
103763
+ });
103764
+ }
103714
103765
  };
103766
+ useEffect(() => {
103767
+ if (!roles.includes("ROLE_SUPER_ADMIN") && roles.includes("ROLE_POS")) {
103768
+ setRolePos(true);
103769
+ }
103770
+ }, [roles]);
103715
103771
  useEffect(() => {
103716
103772
  setExportFilters(filters2);
103717
103773
  }, [filters2]);
@@ -103750,11 +103806,11 @@ const ExportDataModal = ({ open, onClose: onClose2, filters: filters2, isExportL
103750
103806
  onAccept: () => onRequestExcel(),
103751
103807
  message: `Do you want to export an excel file from ${exportFilters["filters[from]"]} until ${exportFilters["filters[till]"]}? You will receive shortly the report on you email inbox.`,
103752
103808
  width: 500,
103753
- isLoading: isExportLoading || isExecuting,
103809
+ isLoading: isExportLoading || isExecutingAnalytics || isExecutingResbookAnalytics,
103754
103810
  icon: "calendar"
103755
103811
  }));
103756
103812
  };
103757
- const ToolBar = ({ filters: filters2, setFilters, setTotalDays, userEmail, userFullName }) => {
103813
+ const ToolBar = ({ filters: filters2, setFilters, setTotalDays, userEmail, userFullName, venueId }) => {
103758
103814
  const [openExportDataModal, setOpenExportDataModal] = useState(false);
103759
103815
  const onOpenExportDataModal = () => setOpenExportDataModal(true);
103760
103816
  const onCloseExportDataModal = () => setOpenExportDataModal(false);
@@ -103808,6 +103864,7 @@ const ToolBar = ({ filters: filters2, setFilters, setTotalDays, userEmail, userF
103808
103864
  onOpenExportDataModal: () => onOpenExportDataModal()
103809
103865
  })), /* @__PURE__ */ React__default.createElement(ExportDataModal, {
103810
103866
  filters: filters2,
103867
+ venueId,
103811
103868
  userEmail,
103812
103869
  userFullName,
103813
103870
  open: openExportDataModal,
@@ -104018,7 +104075,7 @@ const StatsBar = ({ params }) => {
104018
104075
  loadingComparison: isLoadingPrevCancelations
104019
104076
  }, /* @__PURE__ */ React__default.createElement("small", null, t2("ComparedPeriod"), ": ", `${periodDates[0] ? periodDates[0] : ""}-${periodDates[1] ? periodDates[1] : ""}`))));
104020
104077
  };
104021
- const ReservationsAnalytics = ({ userEmail, userFullName }) => {
104078
+ const ReservationsAnalytics = ({ userEmail, userFullName, venueId }) => {
104022
104079
  const [filters2, setFilters] = useState({
104023
104080
  "filters[comparision]": "period",
104024
104081
  "filters[from]": hooks().startOf("week").format("YYYY-MM-DD"),
@@ -104031,6 +104088,7 @@ const ReservationsAnalytics = ({ userEmail, userFullName }) => {
104031
104088
  );
104032
104089
  return /* @__PURE__ */ React__default.createElement(LayoutPage$1, {
104033
104090
  header: /* @__PURE__ */ React__default.createElement(Container, null, /* @__PURE__ */ React__default.createElement(FiltersWrapper, null, /* @__PURE__ */ React__default.createElement(ToolBar, {
104091
+ venueId,
104034
104092
  userEmail,
104035
104093
  userFullName,
104036
104094
  filters: filters2,
@@ -104047,53 +104105,53 @@ const ReservationsAnalytics = ({ userEmail, userFullName }) => {
104047
104105
  totalDays
104048
104106
  }));
104049
104107
  };
104050
- const mainConatiner$2 = "_mainConatiner_vfmy1_48";
104051
- const mainTableContainer = "_mainTableContainer_vfmy1_58";
104052
- const mainSidebarContainer = "_mainSidebarContainer_vfmy1_66";
104053
- const headerReferece = "_headerReferece_vfmy1_76";
104054
- const sidebarCloseIcon = "_sidebarCloseIcon_vfmy1_79";
104055
- const headerContainer = "_headerContainer_vfmy1_131";
104056
- const searchContainer = "_searchContainer_vfmy1_137";
104057
- const buttonList = "_buttonList_vfmy1_148";
104058
- const buttonItem = "_buttonItem_vfmy1_153";
104059
- const addReservationButton = "_addReservationButton_vfmy1_162";
104060
- const tableTopHeader = "_tableTopHeader_vfmy1_171";
104061
- const tableTopHeaderContent = "_tableTopHeaderContent_vfmy1_185";
104062
- const tableTopHeaderContentText = "_tableTopHeaderContentText_vfmy1_192";
104063
- const tableRowContainer = "_tableRowContainer_vfmy1_201";
104064
- const tableRowCard = "_tableRowCard_vfmy1_207";
104065
- const fadeInX = "_fadeInX_vfmy1_1";
104066
- const canceled = "_canceled_vfmy1_215";
104067
- const noData = "_noData_vfmy1_218";
104068
- const tableRowHour = "_tableRowHour_vfmy1_225";
104069
- const tableRowHourText = "_tableRowHourText_vfmy1_241";
104070
- const hours = "_hours_vfmy1_249";
104071
- const tableRowContent = "_tableRowContent_vfmy1_255";
104072
- const rowImage = "_rowImage_vfmy1_270";
104073
- const rowContactContainer = "_rowContactContainer_vfmy1_284";
104074
- const rowContactText = "_rowContactText_vfmy1_296";
104075
- const rowContactPhone = "_rowContactPhone_vfmy1_302";
104076
- const rowSectionContainer = "_rowSectionContainer_vfmy1_309";
104077
- const rowSection = "_rowSection_vfmy1_309";
104078
- const rowSectionText = "_rowSectionText_vfmy1_322";
104079
- const rowSectionSecText = "_rowSectionSecText_vfmy1_328";
104080
- const rowActionButton = "_rowActionButton_vfmy1_335";
104081
- const bookingInfoContainer = "_bookingInfoContainer_vfmy1_348";
104082
- const bookingInfoCardColumn = "_bookingInfoCardColumn_vfmy1_353";
104083
- const bookingInfoCardContainer = "_bookingInfoCardContainer_vfmy1_361";
104084
- const bookingInfoCard = "_bookingInfoCard_vfmy1_353";
104085
- const bookingInfoCardContent = "_bookingInfoCardContent_vfmy1_373";
104086
- const bookingInfoCardTitle = "_bookingInfoCardTitle_vfmy1_379";
104087
- const bookingInfoCardText = "_bookingInfoCardText_vfmy1_382";
104108
+ const mainConatiner$2 = "_mainConatiner_3ro7q_48";
104109
+ const mainTableContainer = "_mainTableContainer_3ro7q_58";
104110
+ const mainSidebarContainer = "_mainSidebarContainer_3ro7q_66";
104111
+ const headerReferece = "_headerReferece_3ro7q_76";
104112
+ const sidebarCloseIcon = "_sidebarCloseIcon_3ro7q_79";
104113
+ const headerContainer = "_headerContainer_3ro7q_131";
104114
+ const searchContainer = "_searchContainer_3ro7q_137";
104115
+ const buttonList = "_buttonList_3ro7q_148";
104116
+ const buttonItem = "_buttonItem_3ro7q_153";
104117
+ const addReservationButton = "_addReservationButton_3ro7q_162";
104118
+ const tableTopHeader = "_tableTopHeader_3ro7q_171";
104119
+ const tableTopHeaderContent = "_tableTopHeaderContent_3ro7q_185";
104120
+ const tableTopHeaderContentText = "_tableTopHeaderContentText_3ro7q_192";
104121
+ const tableRowContainer = "_tableRowContainer_3ro7q_201";
104122
+ const tableRowCard = "_tableRowCard_3ro7q_207";
104123
+ const fadeInX = "_fadeInX_3ro7q_1";
104124
+ const canceled = "_canceled_3ro7q_215";
104125
+ const noData = "_noData_3ro7q_218";
104126
+ const tableRowHour = "_tableRowHour_3ro7q_225";
104127
+ const tableRowHourText = "_tableRowHourText_3ro7q_241";
104128
+ const hours = "_hours_3ro7q_249";
104129
+ const tableRowContent = "_tableRowContent_3ro7q_255";
104130
+ const rowImage = "_rowImage_3ro7q_270";
104131
+ const rowContactContainer = "_rowContactContainer_3ro7q_284";
104132
+ const rowContactText = "_rowContactText_3ro7q_296";
104133
+ const rowContactPhone = "_rowContactPhone_3ro7q_302";
104134
+ const rowSectionContainer = "_rowSectionContainer_3ro7q_309";
104135
+ const rowSection = "_rowSection_3ro7q_309";
104136
+ const rowSectionText = "_rowSectionText_3ro7q_322";
104137
+ const rowSectionSecText = "_rowSectionSecText_3ro7q_328";
104138
+ const rowActionButton = "_rowActionButton_3ro7q_335";
104139
+ const bookingInfoContainer = "_bookingInfoContainer_3ro7q_348";
104140
+ const bookingInfoCardColumn = "_bookingInfoCardColumn_3ro7q_353";
104141
+ const bookingInfoCardContainer = "_bookingInfoCardContainer_3ro7q_361";
104142
+ const bookingInfoCard = "_bookingInfoCard_3ro7q_353";
104143
+ const bookingInfoCardContent = "_bookingInfoCardContent_3ro7q_373";
104144
+ const bookingInfoCardTitle = "_bookingInfoCardTitle_3ro7q_379";
104145
+ const bookingInfoCardText = "_bookingInfoCardText_3ro7q_382";
104088
104146
  var styles$l = {
104089
104147
  mainConatiner: mainConatiner$2,
104090
104148
  mainTableContainer,
104091
104149
  mainSidebarContainer,
104092
104150
  headerReferece,
104093
104151
  sidebarCloseIcon,
104094
- "mainSidebarContainer--open": "_mainSidebarContainer--open_vfmy1_87",
104095
- "mainSidebarContainer--close": "_mainSidebarContainer--close_vfmy1_93",
104096
- "sidebarCloseIcon--show": "_sidebarCloseIcon--show_vfmy1_101",
104152
+ "mainSidebarContainer--open": "_mainSidebarContainer--open_3ro7q_87",
104153
+ "mainSidebarContainer--close": "_mainSidebarContainer--close_3ro7q_93",
104154
+ "sidebarCloseIcon--show": "_sidebarCloseIcon--show_3ro7q_101",
104097
104155
  headerContainer,
104098
104156
  searchContainer,
104099
104157
  buttonList,
@@ -107696,7 +107754,7 @@ const Input2 = ({
107696
107754
  ...props
107697
107755
  }) => {
107698
107756
  return /* @__PURE__ */ React__default.createElement("div", {
107699
- style: { display: "flex", flexDirection: "column", justifyContent: "start", textAlign: "left" }
107757
+ style: { display: "flex", flexDirection: "column", justifyContent: "start", textAlign: "left", width: "100%" }
107700
107758
  }, /* @__PURE__ */ React__default.createElement(Label, {
107701
107759
  isHidden: hideLabel,
107702
107760
  htmlFor: id2,
@@ -107740,7 +107798,9 @@ const TextInputField = ({ control, name: name2, ...props }) => {
107740
107798
  render: ({
107741
107799
  field: { value: value2, onChange: onChange3, onBlur: onBlur2 },
107742
107800
  fieldState: { error: error3 }
107743
- }) => /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(Input2, {
107801
+ }) => /* @__PURE__ */ React__default.createElement("div", {
107802
+ style: { width: "100%" }
107803
+ }, /* @__PURE__ */ React__default.createElement(Input2, {
107744
107804
  name: name2,
107745
107805
  value: value2 || "",
107746
107806
  onChange: (e3) => {
@@ -107898,13 +107958,6 @@ const ConfirmationModal = ({ onAccept, isLoading, title: title2, text: text2 = "
107898
107958
  isLoading
107899
107959
  }, t2("ACCEPT")))));
107900
107960
  };
107901
- const ExportResbookReservationAnalytics = async ({ params, venueId }) => {
107902
- await instance$1.get(
107903
- `reports/resbook-booking-summary/${venueId}`,
107904
- { params }
107905
- );
107906
- return { data: "requested" };
107907
- };
107908
107961
  const ExportBookingModal = ({ open, onClose: onClose2, isExportLoading, setIsExportLoading, userEmail, userFullName, currentVenue }) => {
107909
107962
  const { t: t2 } = useTranslation();
107910
107963
  const [exportFilters, setExportFilters] = useState({
@@ -108081,7 +108134,7 @@ const index$c = ({ filters: filters2, setFilters, currentVenue, userEmail, userF
108081
108134
  name: "criteria",
108082
108135
  label: "criteria",
108083
108136
  hideLabel: true,
108084
- placeholder: t2("Type to search ..."),
108137
+ placeholder: t2("Search ..."),
108085
108138
  icon: "search",
108086
108139
  iconPosition: "left",
108087
108140
  iconSize: "small",
@@ -108451,7 +108504,6 @@ const TableBody = ({ data: data2, filtersData, venueId }) => {
108451
108504
  ["asc"]
108452
108505
  ).fromPairs().value();
108453
108506
  setFormattedData(sortedGroupedByHour);
108454
- console.log(sortedGroupedByHour, "sortedGroupedByHour");
108455
108507
  }
108456
108508
  }, [data2, filtersData]);
108457
108509
  return /* @__PURE__ */ React__default.createElement("div", null, _23.isEmpty(formattedData) ? /* @__PURE__ */ React__default.createElement("div", {
@@ -111156,7 +111208,8 @@ const EmailEditDrawer = ({ isOpen, setIsOpen, venueId, data: data2, reload }) =>
111156
111208
  titleDesc: t2("EMAILS_DESC")
111157
111209
  }, /* @__PURE__ */ React__default.createElement("div", null, /* @__PURE__ */ React__default.createElement("div", null, fields.map((item2, index2) => /* @__PURE__ */ React__default.createElement("div", {
111158
111210
  key: item2.id,
111159
- className: styles$7.sectionFormRow
111211
+ className: styles$7.sectionFormRow,
111212
+ style: { justifyContent: "flex-start" }
111160
111213
  }, /* @__PURE__ */ React__default.createElement("div", {
111161
111214
  style: { color: "#FF4C51", cursor: "pointer", marginTop: 20 }
111162
111215
  }, /* @__PURE__ */ React__default.createElement(Icon, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mozrest-sdk-react-dev",
3
- "version": "0.2.94",
3
+ "version": "0.2.96",
4
4
  "main": "mozrest-sdk.es.js",
5
5
  "keywords": ["mozrest"],
6
6
  "author": {