plataforma-fundacao-componentes 2.23.2 → 2.23.3
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/assets/icons/AgencyIcon.d.ts +3 -0
- package/dist/assets/icons/CalendarCheckIcon.d.ts +3 -0
- package/dist/assets/icons/CopyIcon.d.ts +3 -0
- package/dist/assets/icons/DevicePlusIcon.d.ts +3 -0
- package/dist/assets/icons/NotebookIcon.d.ts +3 -0
- package/dist/assets/icons/PrintIcon.d.ts +3 -0
- package/dist/assets/icons/QRCodeIcon.d.ts +3 -0
- package/dist/components/datePicker/components/datePickerCalendar/DatePickerCalendar.d.ts +13 -15
- package/dist/components/qrcode/Qrcode.d.ts +20 -0
- package/dist/components/qrcode/Qrcode.stories.d.ts +14 -0
- package/dist/components/title/Title.d.ts +13 -0
- package/dist/components/{modulosTitle/ModulosTitle.stories.d.ts → title/Title.stories.d.ts} +2 -2
- package/dist/hooks/useHTMLShare/useHTMLShare.d.ts +18 -0
- package/dist/hooks/useHTMLShare/useHTMLShare.stories.d.ts +6 -0
- package/dist/index.css +313 -159
- package/dist/index.d.ts +14 -2
- package/dist/index.js +316 -149
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +307 -148
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/MoedaUtils.d.ts +3 -4
- package/package.json +12 -8
- package/dist/components/modulosTitle/ModulosTitle.d.ts +0 -13
package/dist/index.modern.js
CHANGED
|
@@ -2,6 +2,7 @@ import React, { useState, useEffect, useMemo, Component, memo, useCallback, useL
|
|
|
2
2
|
import { CSSTransition, TransitionGroup } from 'react-transition-group';
|
|
3
3
|
import moment from 'moment';
|
|
4
4
|
import { Chart } from 'chart.js';
|
|
5
|
+
import QRCode from 'qrcode';
|
|
5
6
|
import Sortable from 'sortablejs';
|
|
6
7
|
|
|
7
8
|
var rootClassName = 'icon-component';
|
|
@@ -7720,7 +7721,7 @@ var languageValues = {
|
|
|
7720
7721
|
|
|
7721
7722
|
var numberToMoeda = function numberToMoeda(num, simbolo, delimitadorCentesimal, delimitadorDecimal) {
|
|
7722
7723
|
if (simbolo === void 0) {
|
|
7723
|
-
simbolo = 'R$';
|
|
7724
|
+
simbolo = 'R$ ';
|
|
7724
7725
|
}
|
|
7725
7726
|
|
|
7726
7727
|
if (delimitadorCentesimal === void 0) {
|
|
@@ -7734,11 +7735,11 @@ var numberToMoeda = function numberToMoeda(num, simbolo, delimitadorCentesimal,
|
|
|
7734
7735
|
if (isNaN(num)) return 'NaN';
|
|
7735
7736
|
num = parseFloat(num);
|
|
7736
7737
|
var negativo = num < 0;
|
|
7737
|
-
var numeroInteiro = parseInt(Math.abs(num));
|
|
7738
|
+
var numeroInteiro = parseInt(String(Math.abs(num)));
|
|
7738
7739
|
var numeroAbsoluto = Math.abs(numeroInteiro);
|
|
7739
|
-
var numerosDecimais = parseFloat(Math.abs(num) - numeroInteiro).
|
|
7740
|
+
var numerosDecimais = (parseFloat((Math.abs(num) - numeroInteiro).toFixed(2)) * 100).toFixed(0);
|
|
7740
7741
|
if (numerosDecimais < 10) numerosDecimais = "0" + numerosDecimais;
|
|
7741
|
-
return "" + simbolo + (negativo ? '
|
|
7742
|
+
return "" + simbolo + (negativo ? '- ' : '') + String(numeroAbsoluto).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1" + delimitadorCentesimal) + delimitadorDecimal + numerosDecimais;
|
|
7742
7743
|
};
|
|
7743
7744
|
|
|
7744
7745
|
function MoneyMonthLineChart(props) {
|
|
@@ -8052,7 +8053,7 @@ function DatePickerCalendar(props) {
|
|
|
8052
8053
|
}, [props.value]);
|
|
8053
8054
|
|
|
8054
8055
|
var getDaysInMonth = function getDaysInMonth(mes, ano) {
|
|
8055
|
-
var arr = new Array(31).fill('').map(function (
|
|
8056
|
+
var arr = new Array(31).fill('').map(function (_, i) {
|
|
8056
8057
|
return new Date(ano, mes, i + 1);
|
|
8057
8058
|
}).filter(function (v) {
|
|
8058
8059
|
return v.getMonth() === mes;
|
|
@@ -8085,34 +8086,34 @@ function DatePickerCalendar(props) {
|
|
|
8085
8086
|
monthPage = _useState4[0],
|
|
8086
8087
|
setMonthPage = _useState4[1];
|
|
8087
8088
|
|
|
8088
|
-
return
|
|
8089
|
+
return React.createElement("div", {
|
|
8089
8090
|
className: rootClassName$1Y
|
|
8090
|
-
},
|
|
8091
|
+
}, React.createElement(CSSTransition, {
|
|
8091
8092
|
"in": monthPage,
|
|
8092
8093
|
classNames: rootClassName$1Y + "-month-picker",
|
|
8093
8094
|
timeout: 300,
|
|
8094
8095
|
unmountOnExit: true
|
|
8095
|
-
},
|
|
8096
|
+
}, React.createElement("div", {
|
|
8096
8097
|
className: rootClassName$1Y + "-month-picker"
|
|
8097
|
-
},
|
|
8098
|
-
className:
|
|
8099
|
-
},
|
|
8100
|
-
className:
|
|
8098
|
+
}, React.createElement("div", {
|
|
8099
|
+
className: 'header'
|
|
8100
|
+
}, React.createElement("button", {
|
|
8101
|
+
className: 'prev',
|
|
8101
8102
|
onClick: function onClick() {
|
|
8102
8103
|
setYear(year - 1);
|
|
8103
8104
|
}
|
|
8104
|
-
},
|
|
8105
|
-
className:
|
|
8105
|
+
}, React.createElement(ChevronArrowLeftIcon, null)), React.createElement("button", {
|
|
8106
|
+
className: 'month',
|
|
8106
8107
|
disabled: true
|
|
8107
|
-
}, year),
|
|
8108
|
-
className:
|
|
8108
|
+
}, year), React.createElement("button", {
|
|
8109
|
+
className: 'next',
|
|
8109
8110
|
onClick: function onClick() {
|
|
8110
8111
|
setYear(year + 1);
|
|
8111
8112
|
}
|
|
8112
|
-
},
|
|
8113
|
+
}, React.createElement(ChevronArrowRightIcon, null))), React.createElement("div", {
|
|
8113
8114
|
className: rootClassName$1Y + "-months"
|
|
8114
8115
|
}, props.language.monthsAbrev.map(function (mes, index) {
|
|
8115
|
-
return
|
|
8116
|
+
return React.createElement("button", {
|
|
8116
8117
|
key: index,
|
|
8117
8118
|
onClick: function onClick() {
|
|
8118
8119
|
setMonth(index);
|
|
@@ -8120,16 +8121,16 @@ function DatePickerCalendar(props) {
|
|
|
8120
8121
|
},
|
|
8121
8122
|
className: getMergedClassNames([rootClassName$1Y + "-month", index === month ? 'selected' : ''])
|
|
8122
8123
|
}, mes);
|
|
8123
|
-
})))),
|
|
8124
|
+
})))), React.createElement(CSSTransition, {
|
|
8124
8125
|
"in": !monthPage,
|
|
8125
8126
|
timeout: 300,
|
|
8126
8127
|
classNames: rootClassName$1Y + "-bottom-page"
|
|
8127
|
-
},
|
|
8128
|
+
}, React.createElement("div", {
|
|
8128
8129
|
className: rootClassName$1Y + "-first-page"
|
|
8129
|
-
},
|
|
8130
|
-
className:
|
|
8131
|
-
},
|
|
8132
|
-
className:
|
|
8130
|
+
}, React.createElement("div", {
|
|
8131
|
+
className: 'header'
|
|
8132
|
+
}, React.createElement("button", {
|
|
8133
|
+
className: 'prev',
|
|
8133
8134
|
onClick: function onClick() {
|
|
8134
8135
|
if (month === 0) {
|
|
8135
8136
|
setYear(year - 1);
|
|
@@ -8138,13 +8139,13 @@ function DatePickerCalendar(props) {
|
|
|
8138
8139
|
setMonth(month - 1);
|
|
8139
8140
|
}
|
|
8140
8141
|
}
|
|
8141
|
-
},
|
|
8142
|
-
className:
|
|
8142
|
+
}, React.createElement(ChevronArrowLeftIcon, null)), React.createElement("button", {
|
|
8143
|
+
className: 'month',
|
|
8143
8144
|
onClick: function onClick() {
|
|
8144
8145
|
return setMonthPage(!monthPage);
|
|
8145
8146
|
}
|
|
8146
|
-
}, props.language.months[month] + " / " + year),
|
|
8147
|
-
className:
|
|
8147
|
+
}, props.language.months[month] + " / " + year), React.createElement("button", {
|
|
8148
|
+
className: 'next',
|
|
8148
8149
|
onClick: function onClick() {
|
|
8149
8150
|
if (month === 11) {
|
|
8150
8151
|
setYear(year + 1);
|
|
@@ -8153,38 +8154,31 @@ function DatePickerCalendar(props) {
|
|
|
8153
8154
|
setMonth(month + 1);
|
|
8154
8155
|
}
|
|
8155
8156
|
}
|
|
8156
|
-
},
|
|
8157
|
-
className:
|
|
8157
|
+
}, React.createElement(ChevronArrowRightIcon, null))), React.createElement("div", {
|
|
8158
|
+
className: 'week-days'
|
|
8158
8159
|
}, props.language && props.language.daysOfWeek ? props.language.daysOfWeek.map(function (day, index) {
|
|
8159
|
-
return
|
|
8160
|
+
return React.createElement("div", {
|
|
8160
8161
|
key: index,
|
|
8161
|
-
className:
|
|
8162
|
+
className: 'label'
|
|
8162
8163
|
}, day);
|
|
8163
|
-
}) : undefined),
|
|
8164
|
-
className:
|
|
8164
|
+
}) : undefined), React.createElement("div", {
|
|
8165
|
+
className: 'days'
|
|
8165
8166
|
}, getDaysInMonth(month, year).map(function (day, index) {
|
|
8166
|
-
|
|
8167
|
+
var _stringToDate, _stringToDate2, _stringToDate3;
|
|
8168
|
+
|
|
8169
|
+
return React.createElement("button", {
|
|
8167
8170
|
onClick: function onClick() {
|
|
8168
8171
|
if (typeof props.onChange === 'function') {
|
|
8169
8172
|
props.onChange(dateToString(day));
|
|
8170
8173
|
}
|
|
8171
8174
|
},
|
|
8172
8175
|
key: index,
|
|
8173
|
-
className: getMergedClassNames(['day', day.getFullYear() === today.getFullYear() && day.getMonth() === today.getMonth() && day.getDate() === today.getDate() ? 'today' : '', props.value && day.getFullYear() === stringToDate(props.value).getFullYear() && day.getMonth() === stringToDate(props.value).getMonth() && day.getDate() === stringToDate(props.value).getDate() ? 'selected' : '']),
|
|
8176
|
+
className: getMergedClassNames(['day', day.getFullYear() === today.getFullYear() && day.getMonth() === today.getMonth() && day.getDate() === today.getDate() ? 'today' : '', props.value && day.getFullYear() === ((_stringToDate = stringToDate(props.value)) === null || _stringToDate === void 0 ? void 0 : _stringToDate.getFullYear()) && day.getMonth() === ((_stringToDate2 = stringToDate(props.value)) === null || _stringToDate2 === void 0 ? void 0 : _stringToDate2.getMonth()) && day.getDate() === ((_stringToDate3 = stringToDate(props.value)) === null || _stringToDate3 === void 0 ? void 0 : _stringToDate3.getDate()) ? 'selected' : '']),
|
|
8174
8177
|
disabled: day.getMonth() !== month
|
|
8175
8178
|
}, day.getDate());
|
|
8176
8179
|
})))));
|
|
8177
8180
|
}
|
|
8178
8181
|
|
|
8179
|
-
DatePickerCalendar.propTypes = {
|
|
8180
|
-
value: propTypes.any,
|
|
8181
|
-
onChange: propTypes.func,
|
|
8182
|
-
language: propTypes.shape({
|
|
8183
|
-
daysOfWeek: propTypes.arrayOf(propTypes.string),
|
|
8184
|
-
months: propTypes.arrayOf(propTypes.string),
|
|
8185
|
-
monthsAbrev: propTypes.arrayOf(propTypes.string)
|
|
8186
|
-
})
|
|
8187
|
-
};
|
|
8188
8182
|
var DatePickerCalendar$1 = memo(DatePickerCalendar);
|
|
8189
8183
|
|
|
8190
8184
|
var rootClassName$1Z = 'component-date-picker';
|
|
@@ -10085,39 +10079,20 @@ var ModalManager = forwardRef(function (_props, ref) {
|
|
|
10085
10079
|
})));
|
|
10086
10080
|
});
|
|
10087
10081
|
|
|
10088
|
-
var rootClassName$2n = 'component-
|
|
10089
|
-
function ModulosTitle(props) {
|
|
10090
|
-
return React.createElement("div", {
|
|
10091
|
-
className: rootClassName$2n
|
|
10092
|
-
}, React.createElement("div", {
|
|
10093
|
-
className: rootClassName$2n + "-wrapper"
|
|
10094
|
-
}, props.showBackButton ? React.createElement("div", {
|
|
10095
|
-
className: rootClassName$2n + "-icon"
|
|
10096
|
-
}, React.createElement(IconButton$1, {
|
|
10097
|
-
icon: React.createElement(ArrowLeftIcon, null),
|
|
10098
|
-
onClick: props.onBackClick
|
|
10099
|
-
})) : undefined, React.createElement("div", {
|
|
10100
|
-
className: rootClassName$2n + "-text"
|
|
10101
|
-
}, props.children)), props.rightElement ? React.createElement("div", {
|
|
10102
|
-
className: rootClassName$2n + "-right-element"
|
|
10103
|
-
}, props.rightElement) : undefined);
|
|
10104
|
-
}
|
|
10105
|
-
ModulosTitle.defaultProps = {};
|
|
10106
|
-
|
|
10107
|
-
var rootClassName$2o = 'component-nota-edit';
|
|
10082
|
+
var rootClassName$2n = 'component-nota-edit';
|
|
10108
10083
|
function NotaEdit(props) {
|
|
10109
10084
|
return React.createElement("div", {
|
|
10110
|
-
className: rootClassName$
|
|
10085
|
+
className: rootClassName$2n
|
|
10111
10086
|
}, React.createElement("div", {
|
|
10112
|
-
className: rootClassName$
|
|
10087
|
+
className: rootClassName$2n + "-titulo"
|
|
10113
10088
|
}, React.createElement("input", Object.assign({}, props.inputTitleProps, {
|
|
10114
10089
|
className: getMergedClassNames([props.inputTitleProps && props.inputTitleProps.className ? props.inputTitleProps.className : '', 'scroll-white', 'nunito'])
|
|
10115
10090
|
}))), React.createElement("div", {
|
|
10116
|
-
className: rootClassName$
|
|
10091
|
+
className: rootClassName$2n + "-texto"
|
|
10117
10092
|
}, React.createElement("textarea", Object.assign({}, props.inputTextProps, {
|
|
10118
10093
|
className: getMergedClassNames([props.inputTextProps && props.inputTextProps.className ? props.inputTextProps.className : '', 'scroll-white', 'nunito'])
|
|
10119
10094
|
}))), !props.hideCloseButton ? React.createElement("div", {
|
|
10120
|
-
className: rootClassName$
|
|
10095
|
+
className: rootClassName$2n + "-close-button"
|
|
10121
10096
|
}, React.createElement(IconButton$1, {
|
|
10122
10097
|
theme: props.iconButtonTheme,
|
|
10123
10098
|
icon: React.createElement(CloseIcon, null),
|
|
@@ -10127,7 +10102,7 @@ function NotaEdit(props) {
|
|
|
10127
10102
|
}
|
|
10128
10103
|
}
|
|
10129
10104
|
})) : undefined, React.createElement("div", {
|
|
10130
|
-
className: rootClassName$
|
|
10105
|
+
className: rootClassName$2n + "-save-button"
|
|
10131
10106
|
}, React.createElement(Button$1, Object.assign({
|
|
10132
10107
|
theme: ButtonThemes.Blue
|
|
10133
10108
|
}, props.buttonSaveProps), props.buttonSaveProps ? props.buttonSaveProps.label : '')));
|
|
@@ -10155,7 +10130,7 @@ PageSubTitle.defaultProps = {
|
|
|
10155
10130
|
text: ''
|
|
10156
10131
|
};
|
|
10157
10132
|
|
|
10158
|
-
var rootClassName$
|
|
10133
|
+
var rootClassName$2o = 'component-paginator';
|
|
10159
10134
|
function Paginator(props) {
|
|
10160
10135
|
var _useState = useState([]),
|
|
10161
10136
|
arrOfNumbers = _useState[0],
|
|
@@ -10186,11 +10161,11 @@ function Paginator(props) {
|
|
|
10186
10161
|
}, [props.quantidadeDePaginas, props.maxLength, props.paginaAtual]);
|
|
10187
10162
|
return React.createElement("div", {
|
|
10188
10163
|
id: props.id ? props.id : undefined,
|
|
10189
|
-
className: getMergedClassNames([rootClassName$
|
|
10164
|
+
className: getMergedClassNames([rootClassName$2o, props.className || ''])
|
|
10190
10165
|
}, React.createElement("div", {
|
|
10191
|
-
className: rootClassName$
|
|
10166
|
+
className: rootClassName$2o + "-center-content"
|
|
10192
10167
|
}, props.quantidadeDePaginas > 1 ? React.createElement("div", {
|
|
10193
|
-
className: rootClassName$
|
|
10168
|
+
className: rootClassName$2o + "-left-arrow"
|
|
10194
10169
|
}, React.createElement(IconButton$1, {
|
|
10195
10170
|
disabled: props.paginaAtual === 1,
|
|
10196
10171
|
icon: React.createElement(ChevronArrowLeftIcon, null),
|
|
@@ -10200,11 +10175,11 @@ function Paginator(props) {
|
|
|
10200
10175
|
}
|
|
10201
10176
|
}
|
|
10202
10177
|
})) : undefined, React.createElement("div", {
|
|
10203
|
-
className: rootClassName$
|
|
10178
|
+
className: rootClassName$2o + "-numbers"
|
|
10204
10179
|
}, arrOfNumbers.map(function (num) {
|
|
10205
10180
|
return React.createElement("button", {
|
|
10206
10181
|
key: num,
|
|
10207
|
-
className: getMergedClassNames([rootClassName$
|
|
10182
|
+
className: getMergedClassNames([rootClassName$2o + "-number", num === props.paginaAtual ? 'active' : '']),
|
|
10208
10183
|
onClick: function onClick() {
|
|
10209
10184
|
if (typeof props.onChange === 'function' && num !== props.paginaAtual) {
|
|
10210
10185
|
props.onChange(num);
|
|
@@ -10212,7 +10187,7 @@ function Paginator(props) {
|
|
|
10212
10187
|
}
|
|
10213
10188
|
}, num);
|
|
10214
10189
|
})), props.quantidadeDePaginas > 1 ? React.createElement("div", {
|
|
10215
|
-
className: rootClassName$
|
|
10190
|
+
className: rootClassName$2o + "-right-arrow"
|
|
10216
10191
|
}, React.createElement(IconButton$1, {
|
|
10217
10192
|
icon: React.createElement(ChevronArrowRightIcon, null),
|
|
10218
10193
|
onClick: function onClick() {
|
|
@@ -10222,19 +10197,19 @@ function Paginator(props) {
|
|
|
10222
10197
|
},
|
|
10223
10198
|
disabled: props.paginaAtual >= props.quantidadeDePaginas
|
|
10224
10199
|
})) : undefined, React.createElement(CSSTransition, {
|
|
10225
|
-
classNames: rootClassName$
|
|
10200
|
+
classNames: rootClassName$2o + "-loader",
|
|
10226
10201
|
"in": props.loading,
|
|
10227
10202
|
timeout: 300,
|
|
10228
10203
|
unmountOnExit: true
|
|
10229
10204
|
}, React.createElement("div", {
|
|
10230
|
-
className: rootClassName$
|
|
10205
|
+
className: rootClassName$2o + "-loader"
|
|
10231
10206
|
}, React.createElement(ThreeDotsLoader, {
|
|
10232
10207
|
size: 2
|
|
10233
10208
|
})))));
|
|
10234
10209
|
}
|
|
10235
10210
|
Paginator.defaultProps = {};
|
|
10236
10211
|
|
|
10237
|
-
var rootClassName$
|
|
10212
|
+
var rootClassName$2p = 'previa-video';
|
|
10238
10213
|
|
|
10239
10214
|
function PreviaVideo(props) {
|
|
10240
10215
|
var _useState = useState(getUniqueKey()),
|
|
@@ -10278,21 +10253,21 @@ function PreviaVideo(props) {
|
|
|
10278
10253
|
}, [props.videoPlayerProps]);
|
|
10279
10254
|
return React.createElement("div", {
|
|
10280
10255
|
id: id,
|
|
10281
|
-
className: rootClassName$
|
|
10256
|
+
className: rootClassName$2p,
|
|
10282
10257
|
onClick: function onClick() {
|
|
10283
10258
|
if (!clicou) setClicou(true);
|
|
10284
10259
|
}
|
|
10285
10260
|
}, React.createElement("div", {
|
|
10286
|
-
className: rootClassName$
|
|
10261
|
+
className: rootClassName$2p + "-img",
|
|
10287
10262
|
style: {
|
|
10288
10263
|
backgroundImage: "url(" + props.imgUrl + ")"
|
|
10289
10264
|
}
|
|
10290
10265
|
}), React.createElement("div", {
|
|
10291
|
-
className: rootClassName$
|
|
10266
|
+
className: rootClassName$2p + "-icon"
|
|
10292
10267
|
}, React.createElement(BigPlayIcon, {
|
|
10293
10268
|
hideBackground: true
|
|
10294
10269
|
})), React.createElement("div", {
|
|
10295
|
-
className: rootClassName$
|
|
10270
|
+
className: rootClassName$2p + "-label"
|
|
10296
10271
|
}, props.label), React.createElement(CSSTransition, {
|
|
10297
10272
|
"in": clicou,
|
|
10298
10273
|
timeout: 300,
|
|
@@ -10304,7 +10279,7 @@ function PreviaVideo(props) {
|
|
|
10304
10279
|
el.style.height = firstHeight.current;
|
|
10305
10280
|
}
|
|
10306
10281
|
}, React.createElement("div", {
|
|
10307
|
-
className: rootClassName$
|
|
10282
|
+
className: rootClassName$2p + "-video"
|
|
10308
10283
|
}, React.createElement(VideoPlayer, Object.assign({
|
|
10309
10284
|
blackGround: true
|
|
10310
10285
|
}, videoPlayerProps, {
|
|
@@ -10314,7 +10289,7 @@ function PreviaVideo(props) {
|
|
|
10314
10289
|
|
|
10315
10290
|
var PreviaVideo$1 = memo(PreviaVideo);
|
|
10316
10291
|
|
|
10317
|
-
var rootClassName$
|
|
10292
|
+
var rootClassName$2q = 'progress-bar';
|
|
10318
10293
|
function ProgressBar(props) {
|
|
10319
10294
|
var _useProgressiveCount = useProgressiveCount(props.percent),
|
|
10320
10295
|
percent = _useProgressiveCount[0],
|
|
@@ -10334,27 +10309,69 @@ function ProgressBar(props) {
|
|
|
10334
10309
|
setRightValue(props.rightValue);
|
|
10335
10310
|
}, [props]);
|
|
10336
10311
|
return React.createElement("div", {
|
|
10337
|
-
className: rootClassName$
|
|
10312
|
+
className: rootClassName$2q + "-wrapper"
|
|
10338
10313
|
}, React.createElement("div", {
|
|
10339
|
-
className: rootClassName$
|
|
10314
|
+
className: rootClassName$2q + "-header"
|
|
10340
10315
|
}, React.createElement("p", {
|
|
10341
|
-
className: rootClassName$
|
|
10316
|
+
className: rootClassName$2q + "-title"
|
|
10342
10317
|
}, props.title), React.createElement("div", {
|
|
10343
|
-
className: rootClassName$
|
|
10318
|
+
className: rootClassName$2q + "-percent-container"
|
|
10344
10319
|
}, props.textPercent && React.createElement("span", {
|
|
10345
|
-
className: rootClassName$
|
|
10320
|
+
className: rootClassName$2q + "-span-text"
|
|
10346
10321
|
}, props.textPercent, " \u2022", ' '), React.createElement("p", null, percent, "%"))), React.createElement("div", {
|
|
10347
|
-
className: rootClassName$
|
|
10322
|
+
className: rootClassName$2q + "-fill"
|
|
10348
10323
|
}, React.createElement("div", {
|
|
10349
|
-
className: rootClassName$
|
|
10324
|
+
className: rootClassName$2q + "-filled",
|
|
10350
10325
|
style: {
|
|
10351
10326
|
width: percent + "%"
|
|
10352
10327
|
}
|
|
10353
10328
|
})), !props.hideDescription && React.createElement("div", {
|
|
10354
|
-
className: rootClassName$
|
|
10329
|
+
className: rootClassName$2q + "-bottom"
|
|
10355
10330
|
}, React.createElement("span", null, React.createElement("p", null, leftValue), props.leftText && React.createElement("p", null, props.leftText)), React.createElement("span", null, React.createElement("p", null, rightValue), props.rightText && React.createElement("p", null, props.rightText))));
|
|
10356
10331
|
}
|
|
10357
10332
|
|
|
10333
|
+
var rootClassName$2r = 'qrcode';
|
|
10334
|
+
|
|
10335
|
+
function QRcode(props) {
|
|
10336
|
+
var ref = createRef();
|
|
10337
|
+
useEffect(function () {
|
|
10338
|
+
QRCode.toString(props.text || '-', {
|
|
10339
|
+
type: 'svg',
|
|
10340
|
+
width: props.size,
|
|
10341
|
+
margin: props.margin,
|
|
10342
|
+
color: {
|
|
10343
|
+
dark: props.color,
|
|
10344
|
+
light: '#0000'
|
|
10345
|
+
}
|
|
10346
|
+
}).then(function (svg) {
|
|
10347
|
+
if (ref.current) {
|
|
10348
|
+
ref.current.innerHTML = svg;
|
|
10349
|
+
}
|
|
10350
|
+
});
|
|
10351
|
+
}, [props, ref]);
|
|
10352
|
+
var className = useMemo(function () {
|
|
10353
|
+
return getMergedClassNames([rootClassName$2r, props.button ? 'button' : '']);
|
|
10354
|
+
}, [props.button]);
|
|
10355
|
+
return React.createElement("div", {
|
|
10356
|
+
className: className,
|
|
10357
|
+
ref: ref,
|
|
10358
|
+
style: {
|
|
10359
|
+
width: props.size,
|
|
10360
|
+
height: props.size,
|
|
10361
|
+
backgroundColor: props.backgroundColor
|
|
10362
|
+
},
|
|
10363
|
+
onClick: props.onClick
|
|
10364
|
+
}, React.createElement(ThreeDotsLoader, {
|
|
10365
|
+
theme: 'secondary'
|
|
10366
|
+
}));
|
|
10367
|
+
}
|
|
10368
|
+
|
|
10369
|
+
QRcode.defaultProps = {
|
|
10370
|
+
margin: 0,
|
|
10371
|
+
color: '#3fa110'
|
|
10372
|
+
};
|
|
10373
|
+
var Qrcode = memo(QRcode);
|
|
10374
|
+
|
|
10358
10375
|
var rootClassName$2s = 'component-search-bloco-de-notas';
|
|
10359
10376
|
function SearchBlocoDeNotas(props) {
|
|
10360
10377
|
return /*#__PURE__*/React.createElement("div", {
|
|
@@ -12229,6 +12246,25 @@ TextEditor.defaultProps = {
|
|
|
12229
12246
|
onChange: function onChange() {}
|
|
12230
12247
|
};
|
|
12231
12248
|
|
|
12249
|
+
var rootClassName$2J = 'component-title';
|
|
12250
|
+
function Title(props) {
|
|
12251
|
+
return React.createElement("div", {
|
|
12252
|
+
className: rootClassName$2J
|
|
12253
|
+
}, React.createElement("div", {
|
|
12254
|
+
className: rootClassName$2J + "-wrapper"
|
|
12255
|
+
}, props.showBackButton ? React.createElement("div", {
|
|
12256
|
+
className: rootClassName$2J + "-icon"
|
|
12257
|
+
}, React.createElement(IconButton$1, {
|
|
12258
|
+
icon: React.createElement(ArrowLeftIcon, null),
|
|
12259
|
+
onClick: props.onBackClick
|
|
12260
|
+
})) : undefined, React.createElement("div", {
|
|
12261
|
+
className: rootClassName$2J + "-text"
|
|
12262
|
+
}, props.children)), props.rightElement ? React.createElement("div", {
|
|
12263
|
+
className: rootClassName$2J + "-right-element"
|
|
12264
|
+
}, props.rightElement) : undefined);
|
|
12265
|
+
}
|
|
12266
|
+
Title.defaultProps = {};
|
|
12267
|
+
|
|
12232
12268
|
var ToastTypes;
|
|
12233
12269
|
|
|
12234
12270
|
(function (ToastTypes) {
|
|
@@ -12237,17 +12273,17 @@ var ToastTypes;
|
|
|
12237
12273
|
ToastTypes["Error"] = "error";
|
|
12238
12274
|
})(ToastTypes || (ToastTypes = {}));
|
|
12239
12275
|
|
|
12240
|
-
var rootClassName$
|
|
12276
|
+
var rootClassName$2K = 'component-toast';
|
|
12241
12277
|
function Toast(props) {
|
|
12242
12278
|
var _useState = useState(props.id || getUniqueKey()),
|
|
12243
12279
|
id = _useState[0];
|
|
12244
12280
|
|
|
12245
12281
|
var getClassNames = function getClassNames() {
|
|
12246
|
-
return getMergedClassNames([rootClassName$
|
|
12282
|
+
return getMergedClassNames([rootClassName$2K, rootClassName$2K + "-" + props.theme]);
|
|
12247
12283
|
};
|
|
12248
12284
|
|
|
12249
12285
|
useEffect(function () {
|
|
12250
|
-
var el = document.querySelector("#" + id + " ." + rootClassName$
|
|
12286
|
+
var el = document.querySelector("#" + id + " ." + rootClassName$2K + "-fill");
|
|
12251
12287
|
|
|
12252
12288
|
if (el) {
|
|
12253
12289
|
el.style.animation = "fillToZero " + props.timeout + "ms linear forwards";
|
|
@@ -12294,22 +12330,22 @@ function Toast(props) {
|
|
|
12294
12330
|
id: id,
|
|
12295
12331
|
className: getClassNames()
|
|
12296
12332
|
}, React.createElement("div", {
|
|
12297
|
-
className: rootClassName$
|
|
12333
|
+
className: rootClassName$2K + "-left-content"
|
|
12298
12334
|
}, props.label), React.createElement("div", {
|
|
12299
|
-
className: rootClassName$
|
|
12335
|
+
className: rootClassName$2K + "-right-content"
|
|
12300
12336
|
}, props.showActionButton && React.createElement("div", {
|
|
12301
|
-
className: rootClassName$
|
|
12337
|
+
className: rootClassName$2K + "-action-button"
|
|
12302
12338
|
}, props.actionButtonText), React.createElement("div", {
|
|
12303
|
-
className: rootClassName$
|
|
12339
|
+
className: rootClassName$2K + "-close-button"
|
|
12304
12340
|
}, React.createElement(IconButton$1, {
|
|
12305
12341
|
icon: React.createElement(CloseIcon, null),
|
|
12306
12342
|
onClick: function onClick() {
|
|
12307
12343
|
if (typeof props.onClose === 'function') props.onClose();
|
|
12308
12344
|
}
|
|
12309
12345
|
}))), props.timeout ? React.createElement("div", {
|
|
12310
|
-
className: getMergedClassNames([rootClassName$
|
|
12346
|
+
className: getMergedClassNames([rootClassName$2K + "-bar", props.showStatusBar ? '' : 'hide'])
|
|
12311
12347
|
}, React.createElement("div", {
|
|
12312
|
-
className: rootClassName$
|
|
12348
|
+
className: rootClassName$2K + "-fill",
|
|
12313
12349
|
onAnimationEnd: function onAnimationEnd() {
|
|
12314
12350
|
if (typeof props.onClose === 'function') props.onClose();
|
|
12315
12351
|
}
|
|
@@ -12324,7 +12360,7 @@ Toast.defaultProps = {
|
|
|
12324
12360
|
onClose: function onClose() {}
|
|
12325
12361
|
};
|
|
12326
12362
|
|
|
12327
|
-
var rootClassName$
|
|
12363
|
+
var rootClassName$2L = 'comp-toast-manager';
|
|
12328
12364
|
var count = 0;
|
|
12329
12365
|
var ToastManager = forwardRef(function (props, ref) {
|
|
12330
12366
|
var _useState = useState([]),
|
|
@@ -12399,11 +12435,11 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12399
12435
|
});
|
|
12400
12436
|
|
|
12401
12437
|
var getClassNames = function getClassNames() {
|
|
12402
|
-
return getMergedClassNames([rootClassName$
|
|
12438
|
+
return getMergedClassNames([rootClassName$2L + "-toasts", rootClassName$2L + "-" + props.verticalPosition, rootClassName$2L + "-" + props.horizontalPosition, props.reverse ? rootClassName$2L + "-reverse" : '', props.animateSize ? rootClassName$2L + "-animate-size" : '']);
|
|
12403
12439
|
};
|
|
12404
12440
|
|
|
12405
12441
|
useLayoutEffect(function () {
|
|
12406
|
-
var wrapper = document.querySelector("." + rootClassName$
|
|
12442
|
+
var wrapper = document.querySelector("." + rootClassName$2L + "-toasts");
|
|
12407
12443
|
|
|
12408
12444
|
if (wrapper && wrapper.childElementCount > 0) {
|
|
12409
12445
|
var somaDasAlturas = 0;
|
|
@@ -12414,7 +12450,7 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12414
12450
|
for (var i = 0; i < wrapper.children.length; i++) {
|
|
12415
12451
|
var el = wrapper.children[i];
|
|
12416
12452
|
|
|
12417
|
-
if (!el.classList.contains(rootClassName$
|
|
12453
|
+
if (!el.classList.contains(rootClassName$2L + "-toast-exit")) {
|
|
12418
12454
|
el.style.transform = "translateY(" + somaDasAlturas + "px)";
|
|
12419
12455
|
somaDasAlturas += el.getBoundingClientRect().height + 12;
|
|
12420
12456
|
}
|
|
@@ -12423,7 +12459,7 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12423
12459
|
for (var _i = wrapper.children.length - 1; _i >= 0; _i--) {
|
|
12424
12460
|
var _el = wrapper.children[_i];
|
|
12425
12461
|
|
|
12426
|
-
if (!_el.classList.contains(rootClassName$
|
|
12462
|
+
if (!_el.classList.contains(rootClassName$2L + "-toast-exit")) {
|
|
12427
12463
|
somaDasAlturas += _el.getBoundingClientRect().height + 12;
|
|
12428
12464
|
_el.style.transform = "translateY(" + somaDasAlturas + "px)";
|
|
12429
12465
|
}
|
|
@@ -12432,7 +12468,7 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12432
12468
|
for (var _i2 = 0; _i2 < wrapper.children.length; _i2++) {
|
|
12433
12469
|
var _el2 = wrapper.children[_i2];
|
|
12434
12470
|
|
|
12435
|
-
if (!_el2.classList.contains(rootClassName$
|
|
12471
|
+
if (!_el2.classList.contains(rootClassName$2L + "-toast-exit")) {
|
|
12436
12472
|
somaDasAlturas += _el2.getBoundingClientRect().height + 12;
|
|
12437
12473
|
_el2.style.transform = "translateY(-" + somaDasAlturas + "px)";
|
|
12438
12474
|
}
|
|
@@ -12443,7 +12479,7 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12443
12479
|
for (var _i3 = wrapper.children.length - 1; _i3 >= 0; _i3--) {
|
|
12444
12480
|
var _el3 = wrapper.children[_i3];
|
|
12445
12481
|
|
|
12446
|
-
if (!_el3.classList.contains(rootClassName$
|
|
12482
|
+
if (!_el3.classList.contains(rootClassName$2L + "-toast-exit")) {
|
|
12447
12483
|
_el3.style.transform = "translateY(-" + somaDasAlturas + "px)";
|
|
12448
12484
|
somaDasAlturas += _el3.getBoundingClientRect().height + 12;
|
|
12449
12485
|
}
|
|
@@ -12456,11 +12492,11 @@ var ToastManager = forwardRef(function (props, ref) {
|
|
|
12456
12492
|
}, arrayOfToast.map(function (toast) {
|
|
12457
12493
|
return React.createElement(CSSTransition, {
|
|
12458
12494
|
timeout: 300,
|
|
12459
|
-
classNames: rootClassName$
|
|
12495
|
+
classNames: rootClassName$2L + "-toast",
|
|
12460
12496
|
key: toast.id,
|
|
12461
12497
|
unmountOnExit: true
|
|
12462
12498
|
}, React.createElement("div", {
|
|
12463
|
-
className: rootClassName$
|
|
12499
|
+
className: rootClassName$2L + "-toastzin"
|
|
12464
12500
|
}, React.createElement(Toast, {
|
|
12465
12501
|
theme: toast.type,
|
|
12466
12502
|
label: toast.label,
|
|
@@ -12490,7 +12526,7 @@ var TooltipPosition;
|
|
|
12490
12526
|
TooltipPosition["Bottom"] = "bottom";
|
|
12491
12527
|
})(TooltipPosition || (TooltipPosition = {}));
|
|
12492
12528
|
|
|
12493
|
-
var rootClassName$
|
|
12529
|
+
var rootClassName$2M = 'component-tooltip';
|
|
12494
12530
|
function Tooltip(props) {
|
|
12495
12531
|
var _useState = useState(props.id || getUniqueKey()),
|
|
12496
12532
|
id = _useState[0];
|
|
@@ -12498,13 +12534,13 @@ function Tooltip(props) {
|
|
|
12498
12534
|
var getProps = function getProps() {
|
|
12499
12535
|
return _extends({}, props, {
|
|
12500
12536
|
id: id,
|
|
12501
|
-
className: getMergedClassNames([rootClassName$
|
|
12537
|
+
className: getMergedClassNames([rootClassName$2M, props.className, rootClassName$2M + "-" + props.position])
|
|
12502
12538
|
});
|
|
12503
12539
|
};
|
|
12504
12540
|
|
|
12505
12541
|
useEffect(function () {
|
|
12506
12542
|
var element = document.querySelector("#" + id);
|
|
12507
|
-
var triangle = element.querySelector("." + rootClassName$
|
|
12543
|
+
var triangle = element.querySelector("." + rootClassName$2M + "-triangle");
|
|
12508
12544
|
var bounding = element.getBoundingClientRect();
|
|
12509
12545
|
var ScreenWidth = window.innerWidth;
|
|
12510
12546
|
|
|
@@ -12525,16 +12561,16 @@ function Tooltip(props) {
|
|
|
12525
12561
|
}
|
|
12526
12562
|
}, [id, props.position]);
|
|
12527
12563
|
return React.createElement("div", {
|
|
12528
|
-
className: rootClassName$
|
|
12564
|
+
className: rootClassName$2M + "-outer"
|
|
12529
12565
|
}, React.createElement("div", Object.assign({}, getProps()), props.children, React.createElement("div", {
|
|
12530
|
-
className: rootClassName$
|
|
12566
|
+
className: rootClassName$2M + "-triangle"
|
|
12531
12567
|
})));
|
|
12532
12568
|
}
|
|
12533
12569
|
Tooltip.defaultProps = {
|
|
12534
12570
|
position: TooltipPosition.Top
|
|
12535
12571
|
};
|
|
12536
12572
|
|
|
12537
|
-
var rootClassName$
|
|
12573
|
+
var rootClassName$2N = 'tooltip-manager';
|
|
12538
12574
|
function TooltipManager() {
|
|
12539
12575
|
var _useState = useState([]),
|
|
12540
12576
|
arrayOfTooltips = _useState[0],
|
|
@@ -12633,17 +12669,17 @@ function TooltipManager() {
|
|
|
12633
12669
|
};
|
|
12634
12670
|
}, []);
|
|
12635
12671
|
return React.createElement(React.Fragment, null, React.createElement(TransitionGroup, {
|
|
12636
|
-
className: rootClassName$
|
|
12672
|
+
className: rootClassName$2N
|
|
12637
12673
|
}, arrayOfTooltips.map(function (tooltip) {
|
|
12638
12674
|
return React.createElement(CSSTransition, {
|
|
12639
12675
|
timeout: 300,
|
|
12640
|
-
classNames: rootClassName$
|
|
12676
|
+
classNames: rootClassName$2N + "-tooltip",
|
|
12641
12677
|
key: tooltip.id,
|
|
12642
12678
|
unmountOnExit: true
|
|
12643
12679
|
}, React.createElement(Tooltip, {
|
|
12644
12680
|
id: tooltip.id,
|
|
12645
12681
|
position: tooltip.position,
|
|
12646
|
-
className: rootClassName$
|
|
12682
|
+
className: rootClassName$2N + "-tooltip",
|
|
12647
12683
|
style: _extends({}, tooltip.style),
|
|
12648
12684
|
onMouseLeave: function onMouseLeave() {
|
|
12649
12685
|
if (!document.querySelectorAll("[tooltip-id=" + tooltip.id + "]").length) {
|
|
@@ -12660,7 +12696,7 @@ function TooltipManager() {
|
|
|
12660
12696
|
TooltipManager.propTypes = {};
|
|
12661
12697
|
TooltipManager.defaultProps = {};
|
|
12662
12698
|
|
|
12663
|
-
var rootClassName$
|
|
12699
|
+
var rootClassName$2O = 'component-top-loader';
|
|
12664
12700
|
function TopLoader(props) {
|
|
12665
12701
|
return React.createElement(CSSTransition, {
|
|
12666
12702
|
classNames: 'fade',
|
|
@@ -12668,11 +12704,11 @@ function TopLoader(props) {
|
|
|
12668
12704
|
"in": props.opened,
|
|
12669
12705
|
unmountOnExit: true
|
|
12670
12706
|
}, React.createElement("div", {
|
|
12671
|
-
className: rootClassName$
|
|
12707
|
+
className: rootClassName$2O
|
|
12672
12708
|
}, React.createElement("div", {
|
|
12673
|
-
className: rootClassName$
|
|
12709
|
+
className: rootClassName$2O + "-logo"
|
|
12674
12710
|
}, props.logo), props.status && React.createElement("div", {
|
|
12675
|
-
className: rootClassName$
|
|
12711
|
+
className: rootClassName$2O + "-status"
|
|
12676
12712
|
}, props.status)));
|
|
12677
12713
|
}
|
|
12678
12714
|
TopLoader.defaultProps = {
|
|
@@ -12681,11 +12717,11 @@ TopLoader.defaultProps = {
|
|
|
12681
12717
|
})
|
|
12682
12718
|
};
|
|
12683
12719
|
|
|
12684
|
-
var rootClassName$
|
|
12720
|
+
var rootClassName$2P = 'component-video-item';
|
|
12685
12721
|
function VideoItem(props) {
|
|
12686
12722
|
var getProps = function getProps() {
|
|
12687
12723
|
var p = _extends({}, props, {
|
|
12688
|
-
className: getMergedClassNames([rootClassName$
|
|
12724
|
+
className: getMergedClassNames([rootClassName$2P, props.className])
|
|
12689
12725
|
});
|
|
12690
12726
|
|
|
12691
12727
|
delete p.url;
|
|
@@ -12702,20 +12738,20 @@ function VideoItem(props) {
|
|
|
12702
12738
|
blackGround: props.blackGround || false
|
|
12703
12739
|
})), React.createElement(Col$1, {
|
|
12704
12740
|
cols: [12, 12, 6, 8, 8],
|
|
12705
|
-
className: rootClassName$
|
|
12741
|
+
className: rootClassName$2P + "-text-col"
|
|
12706
12742
|
}, React.createElement(Row$1, {
|
|
12707
|
-
className: rootClassName$
|
|
12743
|
+
className: rootClassName$2P + "-text-row"
|
|
12708
12744
|
}, React.createElement(Col$1, {
|
|
12709
|
-
className: rootClassName$
|
|
12745
|
+
className: rootClassName$2P + "-title"
|
|
12710
12746
|
}, props.title), React.createElement(Col$1, {
|
|
12711
|
-
className: rootClassName$
|
|
12747
|
+
className: rootClassName$2P + "-description nunito"
|
|
12712
12748
|
}, props.description))));
|
|
12713
12749
|
}
|
|
12714
12750
|
VideoItem.defaultProps = {
|
|
12715
12751
|
url: ''
|
|
12716
12752
|
};
|
|
12717
12753
|
|
|
12718
|
-
var rootClassName$
|
|
12754
|
+
var rootClassName$2Q = 'video-modal';
|
|
12719
12755
|
function VideoModal(props) {
|
|
12720
12756
|
var handleClose = useCallback(function () {
|
|
12721
12757
|
props.onClose(props.modalKey);
|
|
@@ -12723,7 +12759,7 @@ function VideoModal(props) {
|
|
|
12723
12759
|
var filteredProps = useMemo(function () {
|
|
12724
12760
|
var p = _extends({}, props, {
|
|
12725
12761
|
id: props.id ? props.id : props.modalKey ? props.modalKey : "modal" + getUniqueKey(),
|
|
12726
|
-
className: getMergedClassNames([rootClassName$
|
|
12762
|
+
className: getMergedClassNames([rootClassName$2Q, props.className || '', props.mobileOnXS ? 'mobile-on-xs' : '', rootClassName$2Q + "-" + String(props.size).toLowerCase()])
|
|
12727
12763
|
});
|
|
12728
12764
|
|
|
12729
12765
|
delete p.urlVideo;
|
|
@@ -12742,12 +12778,12 @@ function VideoModal(props) {
|
|
|
12742
12778
|
return p;
|
|
12743
12779
|
}, [props]);
|
|
12744
12780
|
return React.createElement("div", Object.assign({}, filteredProps), React.createElement("div", {
|
|
12745
|
-
className: rootClassName$
|
|
12781
|
+
className: rootClassName$2Q + "-close-button"
|
|
12746
12782
|
}, React.createElement(IconButton$1, {
|
|
12747
12783
|
onClick: handleClose,
|
|
12748
12784
|
icon: React.createElement(CloseIcon, null)
|
|
12749
12785
|
})), React.createElement("div", {
|
|
12750
|
-
className: rootClassName$
|
|
12786
|
+
className: rootClassName$2Q + "-video-row"
|
|
12751
12787
|
}, React.createElement(VideoPlayer, Object.assign({
|
|
12752
12788
|
blackGround: true
|
|
12753
12789
|
}, props.videoPlayerProps, {
|
|
@@ -12787,7 +12823,7 @@ function useDropOpened(initialState) {
|
|
|
12787
12823
|
return [opened, toggleOpened];
|
|
12788
12824
|
}
|
|
12789
12825
|
|
|
12790
|
-
var rootClassName$
|
|
12826
|
+
var rootClassName$2R = 'comp-modal-manager';
|
|
12791
12827
|
var maskRootClassName$1 = 'component-modal-mask';
|
|
12792
12828
|
|
|
12793
12829
|
var hackFocus$1 = function hackFocus() {
|
|
@@ -12873,14 +12909,14 @@ function useModalManager() {
|
|
|
12873
12909
|
};
|
|
12874
12910
|
|
|
12875
12911
|
return [React.createElement(React.Fragment, null, React.createElement(TransitionGroup, {
|
|
12876
|
-
className: rootClassName$
|
|
12912
|
+
className: rootClassName$2R + "-modals"
|
|
12877
12913
|
}, arrayOfModal.map(function (obj) {
|
|
12878
12914
|
var _obj$props, _obj$props2, _obj$props3;
|
|
12879
12915
|
|
|
12880
12916
|
var M = obj.component;
|
|
12881
12917
|
return React.createElement(CSSTransition, {
|
|
12882
12918
|
timeout: 300,
|
|
12883
|
-
classNames: (_obj$props = obj.props) !== null && _obj$props !== void 0 && _obj$props.mobileOnXS ? rootClassName$
|
|
12919
|
+
classNames: (_obj$props = obj.props) !== null && _obj$props !== void 0 && _obj$props.mobileOnXS ? rootClassName$2R + "-mask-mobile-on-xs" : rootClassName$2R + "-mask",
|
|
12884
12920
|
key: (_obj$props2 = obj.props) === null || _obj$props2 === void 0 ? void 0 : _obj$props2.modalKey,
|
|
12885
12921
|
unmountOnExit: true
|
|
12886
12922
|
}, React.createElement(ModalMask, {
|
|
@@ -12920,7 +12956,7 @@ function useStorageState(storage, key, initialValue) {
|
|
|
12920
12956
|
return [value, setValue];
|
|
12921
12957
|
}
|
|
12922
12958
|
|
|
12923
|
-
var rootClassName$
|
|
12959
|
+
var rootClassName$2S = 'comp-toast-manager';
|
|
12924
12960
|
var count$1 = 0;
|
|
12925
12961
|
function useToastManager(props) {
|
|
12926
12962
|
var _useState = useState([]),
|
|
@@ -12968,10 +13004,10 @@ function useToastManager(props) {
|
|
|
12968
13004
|
setArrayOfToast([]);
|
|
12969
13005
|
}, []);
|
|
12970
13006
|
var classNames = useMemo(function () {
|
|
12971
|
-
return getMergedClassNames([rootClassName$
|
|
13007
|
+
return getMergedClassNames([rootClassName$2S + "-toasts", rootClassName$2S + "-" + verticalPosition, rootClassName$2S + "-" + horizontalPosition, reverse ? rootClassName$2S + "-reverse" : '', animateSize ? rootClassName$2S + "-animate-size" : '']);
|
|
12972
13008
|
}, [reverse, animateSize, horizontalPosition, verticalPosition]);
|
|
12973
13009
|
useLayoutEffect(function () {
|
|
12974
|
-
var wrapper = document.querySelector("." + rootClassName$
|
|
13010
|
+
var wrapper = document.querySelector("." + rootClassName$2S + "-toasts");
|
|
12975
13011
|
|
|
12976
13012
|
if (wrapper && wrapper.childElementCount > 0) {
|
|
12977
13013
|
var somaDasAlturas = 0;
|
|
@@ -12982,7 +13018,7 @@ function useToastManager(props) {
|
|
|
12982
13018
|
for (var i = 0; i < wrapper.children.length; i++) {
|
|
12983
13019
|
var el = wrapper.children[i];
|
|
12984
13020
|
|
|
12985
|
-
if (!el.classList.contains(rootClassName$
|
|
13021
|
+
if (!el.classList.contains(rootClassName$2S + "-toast-exit")) {
|
|
12986
13022
|
el.style.transform = "translateY(" + somaDasAlturas + "px)";
|
|
12987
13023
|
somaDasAlturas += el.getBoundingClientRect().height + 12;
|
|
12988
13024
|
}
|
|
@@ -12991,7 +13027,7 @@ function useToastManager(props) {
|
|
|
12991
13027
|
for (var _i = wrapper.children.length - 1; _i >= 0; _i--) {
|
|
12992
13028
|
var _el = wrapper.children[_i];
|
|
12993
13029
|
|
|
12994
|
-
if (!_el.classList.contains(rootClassName$
|
|
13030
|
+
if (!_el.classList.contains(rootClassName$2S + "-toast-exit")) {
|
|
12995
13031
|
somaDasAlturas += _el.getBoundingClientRect().height + 12;
|
|
12996
13032
|
_el.style.transform = "translateY(" + somaDasAlturas + "px)";
|
|
12997
13033
|
}
|
|
@@ -13000,7 +13036,7 @@ function useToastManager(props) {
|
|
|
13000
13036
|
for (var _i2 = 0; _i2 < wrapper.children.length; _i2++) {
|
|
13001
13037
|
var _el2 = wrapper.children[_i2];
|
|
13002
13038
|
|
|
13003
|
-
if (!_el2.classList.contains(rootClassName$
|
|
13039
|
+
if (!_el2.classList.contains(rootClassName$2S + "-toast-exit")) {
|
|
13004
13040
|
somaDasAlturas += _el2.getBoundingClientRect().height + 12;
|
|
13005
13041
|
_el2.style.transform = "translateY(-" + somaDasAlturas + "px)";
|
|
13006
13042
|
}
|
|
@@ -13011,7 +13047,7 @@ function useToastManager(props) {
|
|
|
13011
13047
|
for (var _i3 = wrapper.children.length - 1; _i3 >= 0; _i3--) {
|
|
13012
13048
|
var _el3 = wrapper.children[_i3];
|
|
13013
13049
|
|
|
13014
|
-
if (!_el3.classList.contains(rootClassName$
|
|
13050
|
+
if (!_el3.classList.contains(rootClassName$2S + "-toast-exit")) {
|
|
13015
13051
|
_el3.style.transform = "translateY(-" + somaDasAlturas + "px)";
|
|
13016
13052
|
somaDasAlturas += _el3.getBoundingClientRect().height + 12;
|
|
13017
13053
|
}
|
|
@@ -13024,11 +13060,11 @@ function useToastManager(props) {
|
|
|
13024
13060
|
}, arrayOfToast.map(function (toast) {
|
|
13025
13061
|
return React.createElement(CSSTransition, {
|
|
13026
13062
|
timeout: 300,
|
|
13027
|
-
classNames: rootClassName$
|
|
13063
|
+
classNames: rootClassName$2S + "-toast",
|
|
13028
13064
|
key: toast.id,
|
|
13029
13065
|
unmountOnExit: true
|
|
13030
13066
|
}, React.createElement("div", {
|
|
13031
|
-
className: rootClassName$
|
|
13067
|
+
className: rootClassName$2S + "-toastzin"
|
|
13032
13068
|
}, React.createElement(Toast, {
|
|
13033
13069
|
theme: toast.theme,
|
|
13034
13070
|
label: toast.label,
|
|
@@ -13057,6 +13093,129 @@ function useValidatedState(validation, initialValue) {
|
|
|
13057
13093
|
return [value, setValue, validation(value)];
|
|
13058
13094
|
}
|
|
13059
13095
|
|
|
13096
|
+
var rootClassName$2T = 'icon-component';
|
|
13097
|
+
var CopyIcon = function CopyIcon() {
|
|
13098
|
+
return React.createElement("svg", {
|
|
13099
|
+
className: rootClassName$2T,
|
|
13100
|
+
viewBox: '0 0 24 24',
|
|
13101
|
+
fill: 'currentColor',
|
|
13102
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13103
|
+
}, React.createElement("path", {
|
|
13104
|
+
fillRule: 'evenodd',
|
|
13105
|
+
clipRule: 'evenodd',
|
|
13106
|
+
d: 'M7 1H20C21.1046 1 22 1.89543 22 3V18C22 19.1046 21.1046 20 20 20H19V21C19 22.1046 18.1046 23 17 23H14H4C2.89543 23 2 22.1046 2 21V17V6C2 4.89543 2.89543 4 4 4H5V3C5 1.89543 5.89543 1 7 1ZM6 5H5H4C3.44772 5 3 5.44772 3 6V21C3 21.5523 3.44772 22 4 22H17C17.5523 22 18 21.5523 18 21V20V19V6C18 5.44772 17.5523 5 17 5H6ZM19 19V6C19 4.89543 18.1046 4 17 4H6V3C6 2.44772 6.44772 2 7 2H20C20.5523 2 21 2.44772 21 3V18C21 18.5523 20.5523 19 20 19H19Z'
|
|
13107
|
+
}));
|
|
13108
|
+
};
|
|
13109
|
+
|
|
13110
|
+
var rootClassName$2U = 'icon-component';
|
|
13111
|
+
var PrintIcon = function PrintIcon() {
|
|
13112
|
+
return React.createElement("svg", {
|
|
13113
|
+
className: rootClassName$2U,
|
|
13114
|
+
viewBox: '0 0 24 24',
|
|
13115
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13116
|
+
}, React.createElement("g", {
|
|
13117
|
+
clipPath: 'url(#clip0_4323_69268)'
|
|
13118
|
+
}, React.createElement("g", {
|
|
13119
|
+
clipPath: 'url(#clip1_4323_69268)'
|
|
13120
|
+
}, React.createElement("path", {
|
|
13121
|
+
d: 'M1.0038 8.34765C1.15251 7.71927 1.45773 7.25166 1.93638 6.91753C2.29274 6.65932 2.72147 6.51996 3.16161 6.51927C3.8462 6.51927 4.53079 6.51927 5.21537 6.51927C5.52537 6.51927 5.58 6.46336 5.58043 6.14787C5.58086 5.83237 5.58043 5.51992 5.58043 5.20572C5.58043 4.58774 5.57653 3.94895 5.58607 3.31797C5.60168 2.23454 6.01962 1.54115 6.89844 1.14245L6.95307 1.11688C7.0122 1.08764 7.0737 1.06343 7.1369 1.04451C7.23566 1.01654 7.33774 1.00197 7.44039 1.00117L16.2793 1.00117C16.9461 1.00117 17.678 1.48871 18.0005 1.95979C18.2667 2.34982 18.3972 2.80052 18.3994 3.3418C18.4016 3.90518 18.3994 4.4768 18.3994 5.03194L18.3994 5.04018C18.3994 5.41172 18.3994 5.78297 18.3994 6.15394C18.3994 6.4703 18.4514 6.52187 18.7679 6.5223L19.5267 6.5223C19.9437 6.5223 20.3751 6.5223 20.8026 6.5223C22.0092 6.52967 22.9934 7.50995 22.9964 8.70778C23.0012 10.8062 23.0012 13.0103 22.9964 15.2582C22.9938 16.4616 22.004 17.4462 20.79 17.4532L20.7497 17.4532C20.0994 17.4571 19.4278 17.4605 18.7584 17.4501C18.6717 17.448 18.5598 17.4566 18.4831 17.5329C18.4064 17.6092 18.3964 17.7236 18.3964 17.8146C18.4046 18.9275 18.4046 19.8341 18.3964 20.6666C18.3864 21.7674 17.7222 22.6541 16.7055 22.9258C16.4954 22.9754 16.2797 22.9974 16.0638 22.9912C15.3207 22.9912 14.5773 22.9898 13.8336 22.9869L13.8197 22.9869C13.0302 22.9869 12.2156 22.9825 11.4005 22.9825C10.0478 22.9825 8.94483 22.9886 7.93204 23.0016L7.90386 23.0016C7.28648 22.9972 6.69437 22.756 6.24984 22.3277C5.81628 21.9017 5.58563 21.3253 5.5826 20.661C5.58 20.0543 5.5826 19.4428 5.5826 18.8508C5.5826 18.5246 5.5826 18.1986 5.5826 17.8727C5.5826 17.6751 5.57956 17.5849 5.51323 17.5204C5.44689 17.4558 5.35628 17.454 5.15511 17.454L4.4211 17.454C4.03089 17.454 3.64069 17.454 3.25049 17.454C2.18524 17.451 1.34284 16.8114 1.05019 15.7843L1.00033 15.6109L1.00033 8.36239L1.0038 8.34765ZM17.603 14.1006C17.603 13.949 17.5596 13.8839 17.5232 13.851C17.4465 13.7743 17.3272 13.7704 17.2492 13.7704L17.2353 13.7704C15.9672 13.7734 14.6773 13.773 13.4261 13.773L6.76447 13.773C6.59365 13.773 6.50911 13.7756 6.44754 13.8354C6.38598 13.8952 6.38251 13.9836 6.38251 14.147L6.38251 15.5702C6.38251 17.2304 6.38251 18.9466 6.38251 20.6345C6.38251 21.3951 6.79092 21.9607 7.47247 22.1466C7.61341 22.1799 7.75831 22.1935 7.903 22.1869L9.03024 22.1869C11.3415 22.1869 13.7313 22.1869 16.0821 22.1869C16.986 22.1869 17.5952 21.5802 17.5995 20.6753C17.603 19.5646 17.603 18.4361 17.6025 17.3448C17.5999 16.2818 17.5999 15.1828 17.603 14.1006ZM5.58086 14.0226L5.58086 13.5984C5.58086 13.0783 5.69445 12.9674 6.21602 12.9674L17.7651 12.9674C18.2854 12.9674 18.3977 13.08 18.3981 13.6001C18.3981 14.0234 18.3981 14.4468 18.3981 14.8703L18.3981 14.905C18.3981 15.3635 18.3981 15.8221 18.3981 16.2809C18.3981 16.5947 18.4545 16.6501 18.7692 16.651L19.0697 16.651C19.577 16.651 20.1514 16.654 20.7172 16.651C21.5978 16.6441 22.1913 16.053 22.1913 15.181C22.1961 13.1256 22.1961 10.9795 22.1913 8.80226C22.1913 7.91905 21.5913 7.32447 20.7033 7.3236C18.5212 7.321 16.2204 7.3236 14.3734 7.3236L9.78767 7.3236C7.62248 7.3236 5.45744 7.3236 3.29255 7.3236C2.5529 7.3236 2.00315 7.72533 1.82236 8.39662C1.79064 8.53423 1.77765 8.67548 1.78377 8.81656L1.78377 8.82696C1.78377 9.45881 1.78449 10.0907 1.78594 10.7225C1.78897 12.17 1.79201 13.6664 1.77466 15.1394C1.77231 15.347 1.81219 15.5528 1.89186 15.7445C1.97153 15.9362 2.08934 16.1097 2.23814 16.2545C2.3795 16.3918 2.54758 16.4985 2.73194 16.5682C2.91631 16.6378 3.11303 16.6688 3.30989 16.6592C3.57002 16.6475 3.83016 16.6432 4.09506 16.6432C4.35997 16.6432 4.62313 16.6475 4.8837 16.6514L5.23055 16.6562C5.27997 16.6562 5.41221 16.6562 5.49718 16.5734C5.57349 16.4976 5.5839 16.3888 5.58173 16.3021C5.57826 15.5412 5.57956 14.7693 5.58216 14.0226L5.58086 14.0226ZM6.37817 6.16304C6.37817 6.25231 6.38598 6.36412 6.46055 6.43909C6.53512 6.51407 6.64048 6.52317 6.73456 6.52317L6.73933 6.52317C7.68535 6.5197 8.64264 6.51883 9.58866 6.51883L17.2084 6.51883C17.391 6.51883 17.4742 6.51624 17.5349 6.45643C17.5956 6.39663 17.5991 6.30865 17.5995 6.1327C17.5995 5.87615 17.5995 5.61945 17.5995 5.3626C17.5995 4.68741 17.6017 3.98926 17.5973 3.29977C17.5926 2.56304 17.1694 1.99619 16.4935 1.82024C16.3606 1.79095 16.2245 1.77901 16.0886 1.7847L14.9297 1.7847C12.6279 1.7847 10.2472 1.7847 7.90863 1.7847C7.00293 1.7847 6.39118 2.39792 6.38381 3.30843C6.38078 3.74874 6.38121 4.19597 6.38381 4.62847L6.38381 4.63714C6.38251 5.11212 6.38294 5.64906 6.37817 6.16304Z',
|
|
13122
|
+
fill: 'currentColor'
|
|
13123
|
+
}), React.createElement("path", {
|
|
13124
|
+
d: 'M15.2113 17.595C15.4406 17.595 15.6015 17.7398 15.6162 17.9612C15.6305 18.1584 15.4861 18.3318 15.275 18.3734C15.1882 18.3878 15.1002 18.3942 15.0123 18.3924L11.4103 18.3924L9.90498 18.3924C9.79264 18.3974 9.68018 18.3861 9.57114 18.3586C9.48762 18.3356 9.4145 18.2847 9.36394 18.2144C9.31338 18.144 9.28842 18.0585 9.29323 17.9721C9.298 17.7389 9.46145 17.5937 9.71985 17.5929C10.3962 17.5929 11.0773 17.5929 11.7363 17.5929L13.9496 17.5929C14.3693 17.5924 14.7925 17.5929 15.2113 17.595Z',
|
|
13125
|
+
fill: 'currentColor'
|
|
13126
|
+
}), React.createElement("path", {
|
|
13127
|
+
d: 'M9.64971 19.4364C9.73032 19.4241 9.81185 19.4189 9.89337 19.4208C11.4035 19.4208 13.1932 19.4208 15.0176 19.4208C15.1188 19.4194 15.2199 19.4294 15.3189 19.4507C15.3889 19.4649 15.4532 19.4995 15.5036 19.5501C15.5541 19.6006 15.5885 19.665 15.6025 19.735C15.6185 19.7901 15.6215 19.8481 15.6112 19.9045C15.6009 19.9609 15.5775 20.0142 15.5431 20.06C15.4993 20.112 15.4442 20.1534 15.3819 20.1808C15.3197 20.2083 15.2521 20.2213 15.1841 20.2186C14.7978 20.2186 14.4072 20.2186 14.0195 20.2186L11.6783 20.2186C11.0354 20.2186 10.3707 20.2186 9.71258 20.2186C9.47196 20.2186 9.31067 20.0847 9.29203 19.8719C9.27382 19.6418 9.40692 19.4789 9.64971 19.4364Z',
|
|
13128
|
+
fill: 'currentColor'
|
|
13129
|
+
}), React.createElement("path", {
|
|
13130
|
+
d: 'M15.1537 16.5393C14.9556 16.5428 14.7557 16.5419 14.5623 16.5393L14.297 16.5393L14.0369 16.5393L14.0269 16.5393L13.7759 16.5393C13.6614 16.5393 13.5461 16.5393 13.432 16.5359C13.1676 16.5298 12.9863 16.3716 12.9816 16.1424C12.9795 16.0922 12.9876 16.0422 13.0054 15.9952C13.0232 15.9483 13.0503 15.9055 13.0852 15.8693C13.1319 15.825 13.1868 15.7904 13.247 15.7675C13.3071 15.7446 13.3712 15.7338 13.4355 15.7359C13.9857 15.7298 14.5506 15.7298 15.1619 15.7359C15.4381 15.7359 15.6224 15.8997 15.6211 16.1376C15.6198 16.3755 15.4347 16.5341 15.1537 16.5393Z',
|
|
13131
|
+
fill: 'currentColor'
|
|
13132
|
+
}))), React.createElement("defs", null, React.createElement("clipPath", {
|
|
13133
|
+
id: 'clip0_4323_69268'
|
|
13134
|
+
}, React.createElement("rect", {
|
|
13135
|
+
width: '22',
|
|
13136
|
+
height: '23.1579',
|
|
13137
|
+
fill: 'white',
|
|
13138
|
+
transform: 'translate(1 1)'
|
|
13139
|
+
})), React.createElement("clipPath", {
|
|
13140
|
+
id: 'clip1_4323_69268'
|
|
13141
|
+
}, React.createElement("rect", {
|
|
13142
|
+
width: '22',
|
|
13143
|
+
height: '22',
|
|
13144
|
+
fill: 'white',
|
|
13145
|
+
transform: 'matrix(-1 -8.74228e-08 -8.74228e-08 1 23 1)'
|
|
13146
|
+
}))));
|
|
13147
|
+
};
|
|
13148
|
+
|
|
13149
|
+
var rootClassName$2V = 'icon-component';
|
|
13150
|
+
var QRCodeIcon = function QRCodeIcon() {
|
|
13151
|
+
return React.createElement("svg", {
|
|
13152
|
+
className: rootClassName$2V,
|
|
13153
|
+
viewBox: '0 0 24 24',
|
|
13154
|
+
fill: 'currentColor',
|
|
13155
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13156
|
+
}, React.createElement("path", {
|
|
13157
|
+
fillRule: 'evenodd',
|
|
13158
|
+
clipRule: 'evenodd',
|
|
13159
|
+
d: 'M2 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5C1.22386 1 1 1.22386 1 1.5V5.5C1 5.77614 1.22386 6 1.5 6C1.77614 6 2 5.77614 2 5.5V2ZM12 5.5C12 4.67157 11.2325 4 10.2857 4H5.71429C4.76751 4 4 4.67157 4 5.5V10.5C4 11.3284 4.76751 12 5.71429 12H10.2857C11.2325 12 12 11.3284 12 10.5V5.5ZM5.6 5H10.4C10.7314 5 11 5.22386 11 5.5V10.5C11 10.7761 10.7314 11 10.4 11H5.6C5.26863 11 5 10.7761 5 10.5V5.5C5 5.22386 5.26863 5 5.6 5ZM14 4.5C14 4.22386 14.2239 4 14.5 4H15.5C15.7761 4 16 4.22386 16 4.5V8.5C16 8.77614 15.7761 9 15.5 9H14.5C14.2239 9 14 8.77614 14 8.5V4.5ZM18 7.5C18 7.22386 18.2239 7 18.5 7H19.5C19.7761 7 20 7.22386 20 7.5V8.5C20 8.77614 19.7761 9 19.5 9H18.5C18.2239 9 18 8.77614 18 8.5V7.5ZM10 19.5C10 19.7761 10.2239 20 10.5 20H11.5C11.7761 20 12 19.7761 12 19.5V18.5C12 18.2239 11.7761 18 11.5 18H10.5C10.2239 18 10 18.2239 10 18.5V19.5ZM19.25 13C20.2165 13 21 13.7835 21 14.75V18.25C21 19.2165 20.2165 20 19.25 20H15.75C14.7835 20 14 19.2165 14 18.25V14.75C14 13.7835 14.7835 13 15.75 13H19.25ZM19.375 14H15.625C15.2798 14 15 14.2798 15 14.625V18.375C15 18.7202 15.2798 19 15.625 19H19.375C19.7202 19 20 18.7202 20 18.375V14.625C20 14.2798 19.7202 14 19.375 14ZM18.5 2H22V5.5C22 5.77614 22.2239 6 22.5 6C22.7761 6 23 5.77614 23 5.5V1.5C23 1.22386 22.7761 1 22.5 1H18.5C18.2239 1 18 1.22386 18 1.5C18 1.77614 18.2239 2 18.5 2ZM2 22H5.5C5.77614 22 6 22.2239 6 22.5C6 22.7761 5.77614 23 5.5 23H1.5C1.22386 23 1 22.7761 1 22.5V18.5C1 18.2239 1.22386 18 1.5 18C1.77614 18 2 18.2239 2 18.5V22ZM18.5 22H22V18.5C22 18.2239 22.2239 18 22.5 18C22.7761 18 23 18.2239 23 18.5V22.5C23 22.7761 22.7761 23 22.5 23H18.5C18.2239 23 18 22.7761 18 22.5C18 22.2239 18.2239 22 18.5 22Z'
|
|
13160
|
+
}));
|
|
13161
|
+
};
|
|
13162
|
+
|
|
13163
|
+
var rootClassName$2W = 'icon-component';
|
|
13164
|
+
var CalendarCheckIcon = function CalendarCheckIcon() {
|
|
13165
|
+
return React.createElement("svg", {
|
|
13166
|
+
className: rootClassName$2W,
|
|
13167
|
+
viewBox: '0 0 24 24',
|
|
13168
|
+
fill: 'currentColor',
|
|
13169
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13170
|
+
}, React.createElement("path", {
|
|
13171
|
+
fillRule: 'evenodd',
|
|
13172
|
+
clipRule: 'evenodd',
|
|
13173
|
+
d: 'M8 5.00288V6.51115C8 6.78113 7.77614 7 7.5 7C7.22386 7 7 6.78113 7 6.51115V5.00288H3.3002C3.13434 5.00288 3.0002 5.13745 3.0002 5.30383V9.9997H21.0002V5.30383C21.0002 5.13789 20.8655 5.00288 20.7002 5.00288H17V6.51115C17 6.78113 16.7761 7 16.5 7C16.2239 7 16 6.78113 16 6.51115V5.00288H12.5V6.51115C12.5 6.78113 12.2761 7 12 7C11.7239 7 11.5 6.78113 11.5 6.51115V5.00288H8ZM2.0002 20.6956V10.514L2 10.4997L2.0002 10.4854V5.30383C2.0002 4.58341 2.58206 3.9997 3.3002 3.9997H7V2.48885C7 2.21887 7.22386 2 7.5 2C7.77614 2 8 2.21887 8 2.48885V3.9997H11.5V2.48885C11.5 2.21887 11.7239 2 12 2C12.2761 2 12.5 2.21887 12.5 2.48885V3.9997H16V2.48885C16 2.21887 16.2239 2 16.5 2C16.7761 2 17 2.21887 17 2.48885V3.9997H20.7002C21.4176 3.9997 22.0002 4.58366 22.0002 5.30383V20.6956C22.0002 21.4157 21.4176 21.9997 20.7002 21.9997H3.3002C2.58206 21.9997 2.0002 21.416 2.0002 20.6956ZM21.0002 10.9997H3.0002V20.6956C3.0002 20.862 3.13434 20.9965 3.3002 20.9965H20.7002C20.8655 20.9965 21.0002 20.8615 21.0002 20.6956V10.9997ZM13.1438 14.821C13.3355 14.6258 13.6461 14.6259 13.8377 14.8213L15.1095 16.1181L17.6401 13.1705C17.8185 12.9626 18.1285 12.9416 18.3324 13.1234C18.5364 13.3052 18.557 13.6211 18.3786 13.8289L15.5025 17.1789C15.3156 17.3967 14.9869 17.4078 14.7862 17.2032L13.1436 15.5282C12.9521 15.3328 12.9521 15.0163 13.1438 14.821Z'
|
|
13174
|
+
}));
|
|
13175
|
+
};
|
|
13176
|
+
|
|
13177
|
+
var rootClassName$2X = 'icon-component';
|
|
13178
|
+
var DevicePlusIcon = function DevicePlusIcon() {
|
|
13179
|
+
return React.createElement("svg", {
|
|
13180
|
+
className: rootClassName$2X,
|
|
13181
|
+
viewBox: '0 0 24 24',
|
|
13182
|
+
fill: 'currentColor',
|
|
13183
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13184
|
+
}, React.createElement("path", {
|
|
13185
|
+
fillRule: 'evenodd',
|
|
13186
|
+
clipRule: 'evenodd',
|
|
13187
|
+
d: 'M16.184 22.137V12.314C19.3557 12.0595 21.851 9.40447 21.851 6.167C21.851 2.76119 19.0895 0 15.684 0C15.2697 0 14.8649 0.0408457 14.4735 0.118732C14.3863 0.0446762 14.2734 0 14.15 0H4.01299C2.98385 0 2.14999 0.833858 2.14999 1.863V22.137C2.14999 23.1661 2.98385 24 4.01299 24H14.321C15.3501 24 16.184 23.1661 16.184 22.137ZM15.184 22.137V12.314C12.0115 12.0595 9.51599 9.40467 9.51599 6.167C9.51599 4.0038 10.63 2.10076 12.3156 1H4.01299C3.53614 1 3.14999 1.38614 3.14999 1.863V22.137C3.14999 22.6139 3.53614 23 4.01299 23H14.321C14.7979 23 15.184 22.6139 15.184 22.137ZM20.851 6.167C20.851 9.0205 18.5372 11.334 15.684 11.334C12.8299 11.334 10.516 9.02064 10.516 6.167C10.516 3.31336 12.8299 1 15.684 1C18.5372 1 20.851 3.3135 20.851 6.167ZM12.8766 5.667H15.184V3.3606C15.184 3.08446 15.4079 2.8606 15.684 2.8606C15.9601 2.8606 16.184 3.08446 16.184 3.3606V5.667H18.4906C18.7667 5.667 18.9906 5.89086 18.9906 6.167C18.9906 6.44314 18.7667 6.667 18.4906 6.667H16.184V8.9736C16.184 9.24974 15.9601 9.4736 15.684 9.4736C15.4079 9.4736 15.184 9.24974 15.184 8.9736V6.667H12.8766C12.6005 6.667 12.3766 6.44314 12.3766 6.167C12.3766 5.89086 12.6005 5.667 12.8766 5.667ZM9.16669 21.3356C9.78069 21.3356 10.2787 20.8376 10.2787 20.2236C10.2787 19.6096 9.78069 19.1126 9.16669 19.1126C8.55269 19.1126 8.05469 19.6096 8.05469 20.2236C8.05469 20.8376 8.55269 21.3356 9.16669 21.3356Z'
|
|
13188
|
+
}));
|
|
13189
|
+
};
|
|
13190
|
+
|
|
13191
|
+
var rootClassName$2Y = 'icon-component';
|
|
13192
|
+
var NotebookIcon = function NotebookIcon() {
|
|
13193
|
+
return React.createElement("svg", {
|
|
13194
|
+
className: rootClassName$2Y,
|
|
13195
|
+
viewBox: '0 0 24 24',
|
|
13196
|
+
fill: 'currentColor',
|
|
13197
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13198
|
+
}, React.createElement("path", {
|
|
13199
|
+
fillRule: 'evenodd',
|
|
13200
|
+
clipRule: 'evenodd',
|
|
13201
|
+
d: 'M3.3379 2.7002H20.6619C21.73 2.7002 22.5959 3.56752 22.5959 4.63747V16.3387L23.9502 20.1515C24.1492 20.7111 23.7347 21.3002 23.1412 21.3002H0.859201C0.265715 21.3002 -0.148814 20.7111 0.0501298 20.1516L1.4039 16.3404V4.63747C1.4039 3.56752 2.26976 2.7002 3.3379 2.7002ZM2.25686 16.9272L1.05938 20.2985H22.941L21.7435 16.9272H2.25686ZM21.5959 4.63747C21.5959 4.12074 21.1778 3.70189 20.6619 3.70189H3.3379C2.82204 3.70189 2.4039 4.12074 2.4039 4.63747V15.9255H21.5959V4.63747Z'
|
|
13202
|
+
}));
|
|
13203
|
+
};
|
|
13204
|
+
|
|
13205
|
+
var rootClassName$2Z = 'icon-component';
|
|
13206
|
+
var AgencyIcon = function AgencyIcon() {
|
|
13207
|
+
return React.createElement("svg", {
|
|
13208
|
+
className: rootClassName$2Z,
|
|
13209
|
+
viewBox: '0 0 24 24',
|
|
13210
|
+
fill: 'currentColor',
|
|
13211
|
+
xmlns: 'http://www.w3.org/2000/svg'
|
|
13212
|
+
}, React.createElement("path", {
|
|
13213
|
+
fillRule: 'evenodd',
|
|
13214
|
+
clipRule: 'evenodd',
|
|
13215
|
+
d: 'M5.05577 4.43598H23V1.50752H6.06768L5.05577 4.43598ZM5.00883 1.50752L3.99692 4.43598H1V1.50752H5.00883ZM5.70066 0.500137H0.841C0.375976 0.500137 0 0.879656 0 1.34734V4.59615C0 5.06473 0.375858 5.44336 0.841 5.44336H1.6322V16.1904C1.6322 16.9136 2.21481 17.5 2.9322 17.5H7.5654H16.4344H21.0672C21.7846 17.5 22.3672 16.9136 22.3672 16.1904V5.44336H23.159C23.6233 5.44336 24 5.06461 24 4.59615V1.34734C24 0.879777 23.6231 0.500137 23.159 0.500137H5.72391C5.71614 0.499954 5.70839 0.499955 5.70066 0.500137ZM16.9344 16.4926H21.0672C21.2325 16.4926 21.3672 16.357 21.3672 16.1904V5.44366H2.6322V16.1904C2.6322 16.357 2.7669 16.4926 2.9322 16.4926H7.0654V8.53028C7.0654 8.14023 7.3793 7.82511 7.7654 7.82511H11.9772C11.9847 7.82477 11.9922 7.82461 11.9998 7.82461C12.0074 7.82461 12.0149 7.82477 12.0224 7.82511H16.2344C16.6205 7.82511 16.9344 8.14023 16.9344 8.53028V16.4926ZM8.0654 8.83249H11.4998V16.4926H8.0654V8.83249ZM15.9344 16.4926H12.4998V8.83249H15.9344V16.4926Z'
|
|
13216
|
+
}));
|
|
13217
|
+
};
|
|
13218
|
+
|
|
13060
13219
|
function AlertModal(props) {
|
|
13061
13220
|
var _useState = useState(false),
|
|
13062
13221
|
loading = _useState[0],
|
|
@@ -13208,5 +13367,5 @@ var ModalSizes;
|
|
|
13208
13367
|
ModalSizes["ExtraLarge"] = "extra-large";
|
|
13209
13368
|
})(ModalSizes || (ModalSizes = {}));
|
|
13210
13369
|
|
|
13211
|
-
export { ATMIcon, Accordion, Aconteceu, AconteceuIcon, ActionCard$1 as ActionCard, ActionCardThemes, ActionsColumn, AddCircleIcon, AddIcon, AdvancedSemiHeader, AlertModal, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnimatedLink$1 as AnimatedLink, ArrowLeftIcon, ArrowRightIcon, AssembleiaItem$1 as AssembleiaItem, AssembleiaPauta$1 as AssembleiaPauta, AssembleiasIcon, BackOfficeIcon, Banner, BannerAssembleia$1 as BannerAssembleia, BannerPesquisaCpfCnpj$1 as BannerPesquisaCpfCnpj, BarChartIcon, BeeIcon, BigBlockButton, BigPlayIcon, BlobFileTypes, BlocoDeNotas, BlocoMinhasAssembleias$1 as BlocoMinhasAssembleias, BoldIcon, BottomNavigation$1 as BottomNavigation, BreadCrumb, Button$1 as Button, ButtonFileUpload$1 as ButtonFileUpload, ButtonThemes, CalendarIcon, Card, CardTypes, CardsIcon, Carousel, CarouselPersona$1 as CarouselPersona, CarouselTouchFrendly$1 as CarouselTouchFrendly, CataventoVerde, CheckCircleIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxThemes, ChequeIcon, ChevronArrowDownIcon, ChevronArrowLeftIcon, ChevronArrowRightIcon, CircleArrowLeft, CircleArrowRight, ClockIcon, CloseIcon, CloudDownloadIcon, CloudUploadIcon, Col$1 as Col, Collapse$1 as Collapse, ComitesIcon, ComunidadeIcon, ConfirmModal, Container$1 as Container, CreditIcon, CrescerIcon, CrescerLogo, DatePicker$1 as DatePicker, DestructiveModal, Doughnut$1 as Doughnut, DoughnutSquare, DownloadIcon, DraggableIcon, DropdownItem$1 as DropdownItem, DropdownMenu, EditIcon, EditableVideoItem$1 as EditableVideoItem, ElementPaginator$1 as ElementPaginator, Etapas$1 as Etapas, Etiqueta, EtiquetasStyle, EvidenciasIcon, ExclamationIcon, ExitIconArrowLeft, ExitIconArrowRight, EyeIcon, FUNDACAO_LOGO_BRANCO, FUNDACAO_LOGO_VERDE, FileLoader, FilePlusIcon, FileUpload, FilesIcon, FilterIcon, FontColorIcon, FontIcon, FooterSicredi$1 as FooterSicredi, FormacaoIcon, FullHeightContainer$1 as FullHeightContainer, FundacaoLogo, FundacaoLogoTheme, FundoSocialIcon, GlobeIcon, GraduationIcon, HEADER_SEPARATOR_PRIMARY, HEADER_SEPARATOR_SECONDARY, HamburgerIcon, HandUpIcon, Header$1 as Header, HeaderSearchField, HeaderSeparator, HeaderType, HomeIcon, IconButton$1 as IconButton, IconButtonType, IconButtonWithLabel$1 as IconButtonWithLabel, ImageTypes, Information, InformationIcon, InformativoAssembleiasComImagem$1 as InformativoAssembleiasComImagem, InformativoAssembleiasComVideo$1 as InformativoAssembleiasComVideo, Input$1 as Input, InputArea$1 as InputArea, InvestimentIcon, ItalicIcon, ItemDropdownDownload$1 as ItemDropdownDownload, LeftCheckboxWithLabel, LinkIcon, LinksUteisIcon, ListDotIcon, ListIcon, LoaderIcon, LocalIcon, LockIcon, Menu$1 as Menu, MenuItem, MessageIcon, Modal, ModalManager, ModalSizes, ModulosTitle, MoneyByMonth, MoneyFileIcon, MoneyMonthLineChart, NavigatorWithMouse, NotaEdit, Notification, NotificationPosition, NotificationType, OptionsIcon, PageSubTitle, PageTitle, Paginator, ParticipantesIcon, PaymentIcon, PercentLoaderIcon, PieChartIcon, PlayIcon, PreviaVideo$1 as PreviaVideo, ProgressBar, QRCodeWhatsapp, RadioButton$1 as RadioButton, RadioButtonType, RedoIcon, RefreshIcon, Row$1 as Row, STATUS_PAUTA, STATUS_PAUTA_BLOQUEADA, STATUS_PAUTA_ENCERRADA, STATUS_PAUTA_LIBERADA, SearchBlocoDeNotas, SearchIcon, Select$1 as Select, SettingsIcon, SicrediLogo, SicrediLogoTheme, SquaresIcon, SustentabilidadeIcon, Switch, Table, TableActions, TableFileNameAndAction$1 as TableFileNameAndAction, TableWithOverflow$1 as TableWithOverflow, Tabs$1 as Tabs, TextEditor, ThreeDotsLoader, ThumbsUpIcon, TimesCircleIcon,
|
|
13370
|
+
export { ATMIcon, Accordion, Aconteceu, AconteceuIcon, ActionCard$1 as ActionCard, ActionCardThemes, ActionsColumn, AddCircleIcon, AddIcon, AdvancedSemiHeader, AgencyIcon, AlertModal, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnimatedLink$1 as AnimatedLink, ArrowLeftIcon, ArrowRightIcon, AssembleiaItem$1 as AssembleiaItem, AssembleiaPauta$1 as AssembleiaPauta, AssembleiasIcon, BackOfficeIcon, Banner, BannerAssembleia$1 as BannerAssembleia, BannerPesquisaCpfCnpj$1 as BannerPesquisaCpfCnpj, BarChartIcon, BeeIcon, BigBlockButton, BigPlayIcon, BlobFileTypes, BlocoDeNotas, BlocoMinhasAssembleias$1 as BlocoMinhasAssembleias, BoldIcon, BottomNavigation$1 as BottomNavigation, BreadCrumb, Button$1 as Button, ButtonFileUpload$1 as ButtonFileUpload, ButtonThemes, CalendarCheckIcon, CalendarIcon, Card, CardTypes, CardsIcon, Carousel, CarouselPersona$1 as CarouselPersona, CarouselTouchFrendly$1 as CarouselTouchFrendly, CataventoVerde, CheckCircleIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxThemes, ChequeIcon, ChevronArrowDownIcon, ChevronArrowLeftIcon, ChevronArrowRightIcon, CircleArrowLeft, CircleArrowRight, ClockIcon, CloseIcon, CloudDownloadIcon, CloudUploadIcon, Col$1 as Col, Collapse$1 as Collapse, ComitesIcon, ComunidadeIcon, ConfirmModal, Container$1 as Container, CopyIcon, CreditIcon, CrescerIcon, CrescerLogo, DatePicker$1 as DatePicker, DestructiveModal, DevicePlusIcon, Doughnut$1 as Doughnut, DoughnutSquare, DownloadIcon, DraggableIcon, DropdownItem$1 as DropdownItem, DropdownMenu, EditIcon, EditableVideoItem$1 as EditableVideoItem, ElementPaginator$1 as ElementPaginator, Etapas$1 as Etapas, Etiqueta, EtiquetasStyle, EvidenciasIcon, ExclamationIcon, ExitIconArrowLeft, ExitIconArrowRight, EyeIcon, FUNDACAO_LOGO_BRANCO, FUNDACAO_LOGO_VERDE, FileLoader, FilePlusIcon, FileUpload, FilesIcon, FilterIcon, FontColorIcon, FontIcon, FooterSicredi$1 as FooterSicredi, FormacaoIcon, FullHeightContainer$1 as FullHeightContainer, FundacaoLogo, FundacaoLogoTheme, FundoSocialIcon, GlobeIcon, GraduationIcon, HEADER_SEPARATOR_PRIMARY, HEADER_SEPARATOR_SECONDARY, HamburgerIcon, HandUpIcon, Header$1 as Header, HeaderSearchField, HeaderSeparator, HeaderType, HomeIcon, IconButton$1 as IconButton, IconButtonType, IconButtonWithLabel$1 as IconButtonWithLabel, ImageTypes, Information, InformationIcon, InformativoAssembleiasComImagem$1 as InformativoAssembleiasComImagem, InformativoAssembleiasComVideo$1 as InformativoAssembleiasComVideo, Input$1 as Input, InputArea$1 as InputArea, InvestimentIcon, ItalicIcon, ItemDropdownDownload$1 as ItemDropdownDownload, LeftCheckboxWithLabel, LinkIcon, LinksUteisIcon, ListDotIcon, ListIcon, LoaderIcon, LocalIcon, LockIcon, Menu$1 as Menu, MenuItem, MessageIcon, Modal, ModalManager, ModalSizes, Title as ModulosTitle, MoneyByMonth, MoneyFileIcon, MoneyMonthLineChart, NavigatorWithMouse, NotaEdit, NotebookIcon, Notification, NotificationPosition, NotificationType, OptionsIcon, PageSubTitle, PageTitle, Paginator, ParticipantesIcon, PaymentIcon, PercentLoaderIcon, PieChartIcon, PlayIcon, PreviaVideo$1 as PreviaVideo, PrintIcon, ProgressBar, QRCodeIcon, QRCodeWhatsapp, Qrcode, RadioButton$1 as RadioButton, RadioButtonType, RedoIcon, RefreshIcon, Row$1 as Row, STATUS_PAUTA, STATUS_PAUTA_BLOQUEADA, STATUS_PAUTA_ENCERRADA, STATUS_PAUTA_LIBERADA, SearchBlocoDeNotas, SearchIcon, Select$1 as Select, SettingsIcon, SicrediLogo, SicrediLogoTheme, SquaresIcon, SustentabilidadeIcon, Switch, Table, TableActions, TableFileNameAndAction$1 as TableFileNameAndAction, TableWithOverflow$1 as TableWithOverflow, Tabs$1 as Tabs, TextEditor, ThreeDotsLoader, ThumbsUpIcon, TimesCircleIcon, Title, Toast, ToastManager, ToastTypes, Tooltip, TooltipManager, TooltipPosition, TopLoader, TransferenciaIcon, TrashIcon, TrianguloInferior, TwoFileIcon, TypedTable, UnderlineIcon, UndoIcon, UserIcon, VideoItem, VideoModal, VideoPlayer, WebsiteIcon, getStatusClassName, useCallbackedState, useCarouselBehaviour, useControlledTimer, useDraggableContainer, useDropOpened, useModalManager, useProgressiveCount, useScreenSize, useStorageState, useTimeElapsed, useToastManager, useValidatedState };
|
|
13212
13371
|
//# sourceMappingURL=index.modern.js.map
|