plataforma-fundacao-componentes 2.23.14 → 2.23.15

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.
@@ -4867,30 +4867,22 @@ AnimatedLink.defaultProps = {
4867
4867
  var AnimatedLink$1 = memo(AnimatedLink);
4868
4868
 
4869
4869
  var rootClassName$1F = 'assembleia-item';
4870
- var AssembleiaModo;
4871
-
4872
- (function (AssembleiaModo) {
4873
- AssembleiaModo[AssembleiaModo["Presencial"] = 1] = "Presencial";
4874
- AssembleiaModo[AssembleiaModo["TabletDigital"] = 2] = "TabletDigital";
4875
- AssembleiaModo[AssembleiaModo["AgenciaDigital"] = 3] = "AgenciaDigital";
4876
- AssembleiaModo[AssembleiaModo["Digital"] = 4] = "Digital";
4877
- })(AssembleiaModo || (AssembleiaModo = {}));
4878
4870
 
4879
4871
  function AssembleiaItem(props) {
4880
4872
  var _props$presencial;
4881
4873
 
4882
4874
  return React.createElement("div", {
4883
- className: getMergedClassNames([rootClassName$1F, props.modo === AssembleiaModo.Presencial ? 'presencial' : ''])
4875
+ className: getMergedClassNames([rootClassName$1F, props.modo === 1 ? 'presencial' : ''])
4884
4876
  }, React.createElement("div", {
4885
4877
  onClick: props.onClick,
4886
- className: getMergedClassNames([rootClassName$1F + "-first", props.modo === AssembleiaModo.Presencial ? 'presencial' : ''])
4878
+ className: getMergedClassNames([rootClassName$1F + "-first", props.modo === 1 ? 'presencial' : ''])
4887
4879
  }, React.createElement("div", {
4888
4880
  className: rootClassName$1F + "-left"
4889
4881
  }, React.createElement("div", {
4890
4882
  className: rootClassName$1F + "-coop"
4891
- }, props.nomeCooperativa, props.modo === AssembleiaModo.Presencial ? " - " + props.language.presencial : ''), React.createElement("div", {
4883
+ }, props.nomeCooperativa, props.modo === 1 ? " - " + props.language.presencial : ''), React.createElement("div", {
4892
4884
  className: rootClassName$1F + "-endereco nunito"
4893
- }, props.modo === AssembleiaModo.Presencial ? (_props$presencial = props.presencial) === null || _props$presencial === void 0 ? void 0 : _props$presencial.endereco : props.language.enderecoDigital)), React.createElement("div", {
4885
+ }, props.modo === 1 ? (_props$presencial = props.presencial) === null || _props$presencial === void 0 ? void 0 : _props$presencial.endereco : props.language.enderecoDigital)), React.createElement("div", {
4894
4886
  className: rootClassName$1F + "-right"
4895
4887
  }, React.createElement("div", {
4896
4888
  className: rootClassName$1F + "-col-data"
@@ -4906,7 +4898,7 @@ function AssembleiaItem(props) {
4906
4898
  className: rootClassName$1F + "-value-data nunito"
4907
4899
  }, props.dataTermino)), React.createElement("div", {
4908
4900
  className: rootClassName$1F + "-icon"
4909
- }, React.createElement(ChevronArrowRightIcon, null)))), props.presencial && props.modo !== AssembleiaModo.Presencial && React.createElement("div", {
4901
+ }, React.createElement(ChevronArrowRightIcon, null)))), props.presencial && props.modo !== 1 && React.createElement("div", {
4910
4902
  className: rootClassName$1F + "-second"
4911
4903
  }, React.createElement("div", {
4912
4904
  className: rootClassName$1F + "-left"
@@ -13249,7 +13241,7 @@ function CalendarEvent(props) {
13249
13241
  ref: ref,
13250
13242
  className: useMergedClassNames([rootClassName$30, props.size, props.borderStyle]),
13251
13243
  disabled: props.disabled,
13252
- onClick: function onClick() {
13244
+ onClick: function onClick(evt) {
13253
13245
  if (typeof props.onClick === 'function') {
13254
13246
  props.onClick();
13255
13247
  }
@@ -13257,6 +13249,8 @@ function CalendarEvent(props) {
13257
13249
  if (!props.forceExpanded && props.expansible) {
13258
13250
  setExpanded(!expanded);
13259
13251
  }
13252
+
13253
+ evt.stopPropagation();
13260
13254
  },
13261
13255
  style: {
13262
13256
  color: props.color,
@@ -13302,15 +13296,23 @@ function CalendarMonthDay(props) {
13302
13296
  var classNames = useMemo(function () {
13303
13297
  return getMergedClassNames([rootClassName$32, props.pocket ? 'pocket' : '', props.isToday ? 'today' : '', props.disabled ? 'disabled' : '', props.highlightWeekends && (props.day.getDay() === 0 || props.day.getDay() === 6) ? 'highlight' : '']);
13304
13298
  }, [props.day, props.disabled, props.highlightWeekends, props.isToday, props.pocket]);
13299
+ var date = new Date();
13300
+ date.setDate(date.getDate() - 1);
13305
13301
  return React.createElement("div", {
13306
- className: classNames
13302
+ className: classNames,
13303
+ onClick: function onClick(evt) {
13304
+ if (typeof props.onDateClick === 'function') {
13305
+ props.onDateClick(props.day, evt);
13306
+ evt.stopPropagation();
13307
+ }
13308
+ }
13307
13309
  }, React.createElement("div", {
13308
13310
  className: rootClassName$32 + "-label-line"
13309
13311
  }, React.createElement("div", {
13310
13312
  className: rootClassName$32 + "-day nunito",
13311
13313
  onClick: function onClick(evt) {
13312
- if (props.pocket && !props.disabled && typeof props.onAddButtonClick === 'function') {
13313
- props.onAddButtonClick(props.day, evt);
13314
+ if (props.pocket && !props.disabled && typeof props.onPlusButtonClick === 'function') {
13315
+ props.onPlusButtonClick(props.day, evt);
13314
13316
  }
13315
13317
  }
13316
13318
  }, React.createElement(Notification, {
@@ -13323,6 +13325,7 @@ function CalendarMonthDay(props) {
13323
13325
  onClick: function onClick(evt) {
13324
13326
  if (typeof props.onPlusButtonClick === 'function') {
13325
13327
  props.onPlusButtonClick(props.day, evt);
13328
+ evt.stopPropagation();
13326
13329
  }
13327
13330
  },
13328
13331
  disabled: props.disabled
@@ -13335,11 +13338,12 @@ function CalendarMonthDay(props) {
13335
13338
  disabled: props.disabled
13336
13339
  }));
13337
13340
  })), props.showAddButton ? React.createElement("button", {
13338
- disabled: props.disabled,
13341
+ disabled: props.disabledPrevAddButton ? props.day < date ? true : false : false,
13339
13342
  className: rootClassName$32 + "-button",
13340
13343
  onClick: function onClick(evt) {
13341
13344
  if (typeof props.onAddButtonClick === 'function') {
13342
13345
  props.onAddButtonClick(props.day, evt);
13346
+ evt.stopPropagation();
13343
13347
  }
13344
13348
  }
13345
13349
  }, React.createElement("span", null, React.createElement(AddCircleIcon, null), props.language.addNew)) : undefined) : undefined);
@@ -13372,7 +13376,7 @@ function CalendarDays(props) {
13372
13376
  }, days.map(function (d) {
13373
13377
  var _props$eventos;
13374
13378
 
13375
- var k = "" + d.getFullYear() + (d.getMonth() + 1) + d.getDate();
13379
+ var k = "" + d.getFullYear() + getTwoNumbersIfNotTen(d.getMonth()) + getTwoNumbersIfNotTen(d.getDate());
13376
13380
  var eventos = (_props$eventos = props.eventos) === null || _props$eventos === void 0 ? void 0 : _props$eventos.get(k);
13377
13381
  return React.createElement(CalendarMonthDay$1, {
13378
13382
  pocket: props.pocket,
@@ -13382,10 +13386,12 @@ function CalendarDays(props) {
13382
13386
  eventos: eventos,
13383
13387
  isToday: d.getDate() === today.getDate() && d.getMonth() === today.getMonth() && d.getFullYear() === today.getFullYear(),
13384
13388
  disabled: disabledDay(d) || props.loading,
13389
+ disabledPrevAddButton: props.disabledPrevAddButton,
13385
13390
  showAddButton: props.showAddButton,
13386
13391
  onAddButtonClick: props.onAddButtonClick,
13387
13392
  showPlusIcon: props.showPlusIcon,
13388
13393
  onPlusButtonClick: props.onPlusButtonClick,
13394
+ onDateClick: props.onDateClick,
13389
13395
  highlightWeekends: props.highlightWeekends
13390
13396
  });
13391
13397
  }));
@@ -13441,11 +13447,13 @@ function Calendar(props) {
13441
13447
  referencia: props.referencia,
13442
13448
  disabledNextMonth: props.disabledNextMonth,
13443
13449
  disabledPrevMonth: props.disabledPrevMonth,
13450
+ disabledPrevAddButton: props.disabledPrevAddButton,
13444
13451
  language: props.language,
13445
13452
  showAddButton: props.showAddButton,
13446
13453
  onAddButtonClick: props.onAddButtonClick,
13447
13454
  showPlusIcon: props.showPlusIcon,
13448
13455
  onPlusButtonClick: props.onPlusButtonClick,
13456
+ onDateClick: props.onDateClick,
13449
13457
  highlightWeekends: props.highlightWeekends,
13450
13458
  loading: props.loading,
13451
13459
  eventos: props.eventos
@@ -13457,6 +13465,7 @@ Calendar.defaultProps = {
13457
13465
  loading: false,
13458
13466
  disabledNextMonth: true,
13459
13467
  disabledPrevMonth: true,
13468
+ disabledPrevAddButton: true,
13460
13469
  highlightWeekends: true,
13461
13470
  showAddButton: true,
13462
13471
  showPlusIcon: true,