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.css
CHANGED
|
@@ -7654,6 +7654,7 @@ h5 {
|
|
|
7654
7654
|
width: 100%;
|
|
7655
7655
|
height: 100%;
|
|
7656
7656
|
max-height: 100%;
|
|
7657
|
+
overflow-y: auto;
|
|
7657
7658
|
overflow-y: overlay;
|
|
7658
7659
|
display: flex;
|
|
7659
7660
|
align-items: flex-start;
|
|
@@ -7917,6 +7918,10 @@ h5 {
|
|
|
7917
7918
|
color: #828a82; }
|
|
7918
7919
|
.component-date-picker-calendar .days {
|
|
7919
7920
|
display: flex;
|
|
7921
|
+
-webkit-user-select: none;
|
|
7922
|
+
-moz-user-select: none;
|
|
7923
|
+
-ms-user-select: none;
|
|
7924
|
+
user-select: none;
|
|
7920
7925
|
align-items: center;
|
|
7921
7926
|
justify-content: center;
|
|
7922
7927
|
max-width: 280px;
|
|
@@ -8646,6 +8651,7 @@ h5 {
|
|
|
8646
8651
|
position: fixed;
|
|
8647
8652
|
border-radius: 8px;
|
|
8648
8653
|
box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3);
|
|
8654
|
+
overflow: auto;
|
|
8649
8655
|
overflow: overlay;
|
|
8650
8656
|
max-height: calc(49% - 46px); }
|
|
8651
8657
|
|
|
@@ -10241,6 +10247,7 @@ h5 {
|
|
|
10241
10247
|
display: flex;
|
|
10242
10248
|
flex-flow: column;
|
|
10243
10249
|
flex: 1 1 auto;
|
|
10250
|
+
overflow-y: auto;
|
|
10244
10251
|
overflow-y: overlay;
|
|
10245
10252
|
position: relative;
|
|
10246
10253
|
padding: 0; }
|
|
@@ -12179,7 +12186,8 @@ h5 {
|
|
|
12179
12186
|
font-size: 16px;
|
|
12180
12187
|
padding-bottom: 2px;
|
|
12181
12188
|
text-align: left;
|
|
12182
|
-
transform-origin: right center;
|
|
12189
|
+
transform-origin: right center;
|
|
12190
|
+
color: #323c32; }
|
|
12183
12191
|
.component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon {
|
|
12184
12192
|
transition: transform 0.3s ease;
|
|
12185
12193
|
color: #3fa110;
|
|
@@ -12411,8 +12419,9 @@ h5 {
|
|
|
12411
12419
|
.component-menu-item .component-menu-item-label,
|
|
12412
12420
|
.component-menu-item-sub-item .component-menu-item-sub-item-label,
|
|
12413
12421
|
.component-menu-item-sub-item .component-menu-item-label {
|
|
12422
|
+
opacity: 1;
|
|
12414
12423
|
color: #323c32;
|
|
12415
|
-
transition: color 0.3s ease;
|
|
12424
|
+
transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
|
|
12416
12425
|
display: flex;
|
|
12417
12426
|
align-items: center;
|
|
12418
12427
|
justify-content: flex-start;
|
|
@@ -12591,6 +12600,7 @@ h5 {
|
|
|
12591
12600
|
top: 0;
|
|
12592
12601
|
left: 0;
|
|
12593
12602
|
box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
|
|
12603
|
+
overflow-y: auto;
|
|
12594
12604
|
overflow-y: overlay;
|
|
12595
12605
|
overflow-x: hidden;
|
|
12596
12606
|
z-index: 972; }
|
|
@@ -12599,10 +12609,14 @@ h5 {
|
|
|
12599
12609
|
@media (max-width: 991.98px) {
|
|
12600
12610
|
.component-menu.component-menu-short-on-md:not(:hover) {
|
|
12601
12611
|
overflow-y: hidden;
|
|
12602
|
-
width:
|
|
12612
|
+
width: 52px; }
|
|
12603
12613
|
.component-menu.component-menu-short-on-md:not(:hover) .sicredi-logo #Caminho_17 {
|
|
12604
12614
|
transform: translateX(270px) translateY(657.948px);
|
|
12605
12615
|
opacity: 0; }
|
|
12616
|
+
.component-menu.component-menu-short-on-md:not(:hover) .component-menu-sub-item-label,
|
|
12617
|
+
.component-menu.component-menu-short-on-md:not(:hover) .component-menu-item-label {
|
|
12618
|
+
transform: translate(15px);
|
|
12619
|
+
opacity: 0; }
|
|
12606
12620
|
.component-menu.component-menu-short-on-md:not(:hover) .component-menu-logo {
|
|
12607
12621
|
transform: translateX(60px); }
|
|
12608
12622
|
.component-menu.component-menu-short-on-md:not(:hover) .component-menu-items {
|
|
@@ -12629,6 +12643,7 @@ h5 {
|
|
|
12629
12643
|
.component-menu.component-menu-hamburger-menu.component-menu-opened {
|
|
12630
12644
|
width: 250px; }
|
|
12631
12645
|
.component-menu .component-menu-logo {
|
|
12646
|
+
transform: translateX(0px);
|
|
12632
12647
|
width: 100%;
|
|
12633
12648
|
padding: 30px 0 10px;
|
|
12634
12649
|
transition: transform 0.3s ease;
|
|
@@ -12865,6 +12880,7 @@ h5 {
|
|
|
12865
12880
|
display: flex;
|
|
12866
12881
|
flex: 1 1 auto;
|
|
12867
12882
|
flex-flow: column;
|
|
12883
|
+
overflow-y: auto;
|
|
12868
12884
|
overflow-y: overlay;
|
|
12869
12885
|
padding: 24px; }
|
|
12870
12886
|
.component-modal .component-modal-content.compense {
|
|
@@ -13188,162 +13204,6 @@ h5 {
|
|
|
13188
13204
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
13189
13205
|
background-color: #bfc7bf; }
|
|
13190
13206
|
|
|
13191
|
-
.component-modulos-title {
|
|
13192
|
-
width: 100%;
|
|
13193
|
-
position: relative;
|
|
13194
|
-
display: flex;
|
|
13195
|
-
align-items: center;
|
|
13196
|
-
justify-content: space-between;
|
|
13197
|
-
flex-wrap: wrap; }
|
|
13198
|
-
.component-modulos-title .component-modulos-title-wrapper {
|
|
13199
|
-
display: flex;
|
|
13200
|
-
align-items: center; }
|
|
13201
|
-
.component-modulos-title .component-modulos-title-icon {
|
|
13202
|
-
display: flex;
|
|
13203
|
-
align-items: center;
|
|
13204
|
-
margin-right: 12px; }
|
|
13205
|
-
.component-modulos-title .component-modulos-title-text {
|
|
13206
|
-
-webkit-user-select: none;
|
|
13207
|
-
-moz-user-select: none;
|
|
13208
|
-
-ms-user-select: none;
|
|
13209
|
-
user-select: none;
|
|
13210
|
-
color: #323c32;
|
|
13211
|
-
font-size: 26px;
|
|
13212
|
-
font-weight: 700; }
|
|
13213
|
-
@media screen and (max-width: 767.98px) {
|
|
13214
|
-
.component-modulos-title .component-modulos-title-text {
|
|
13215
|
-
font-size: 22px; } }
|
|
13216
|
-
@media screen and (max-width: 575.98px) {
|
|
13217
|
-
.component-modulos-title .component-modulos-title-text {
|
|
13218
|
-
font-size: 20px; } }
|
|
13219
|
-
.component-modulos-title .component-modulos-title-right-element {
|
|
13220
|
-
margin-left: auto; }
|
|
13221
|
-
|
|
13222
|
-
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
13223
|
-
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
13224
|
-
:export {
|
|
13225
|
-
white: #fefefe;
|
|
13226
|
-
darkenWhite: #efefef;
|
|
13227
|
-
black: #121212;
|
|
13228
|
-
transparent: rgba(0, 0, 0, 0);
|
|
13229
|
-
primary: #3fa110;
|
|
13230
|
-
primaryDark: #33820d;
|
|
13231
|
-
primaryLight: #d7e6c8;
|
|
13232
|
-
secondaryDarker: #323c32;
|
|
13233
|
-
secondaryDark: #5a645a;
|
|
13234
|
-
secondary: #828a82;
|
|
13235
|
-
secondaryLight: #cdd3cd;
|
|
13236
|
-
secondaryLighter: #f8f9f7;
|
|
13237
|
-
danger: #e60000;
|
|
13238
|
-
dangerLight: #ffb4b4;
|
|
13239
|
-
dangerDark: #ab4745;
|
|
13240
|
-
warning: #ffcd00;
|
|
13241
|
-
warningLight: #ffeb98;
|
|
13242
|
-
warningDark: #765f00; }
|
|
13243
|
-
|
|
13244
|
-
:root {
|
|
13245
|
-
--rowPadding: 0;
|
|
13246
|
-
--colPadding: 8px; }
|
|
13247
|
-
|
|
13248
|
-
:export {
|
|
13249
|
-
widthXs: 575.98px;
|
|
13250
|
-
widthSm: 767.98px;
|
|
13251
|
-
widthMd: 991.98px;
|
|
13252
|
-
widthLg: 1199.98px; }
|
|
13253
|
-
|
|
13254
|
-
body.sb-show-main.sb-main-padded {
|
|
13255
|
-
padding: 15px; }
|
|
13256
|
-
|
|
13257
|
-
*.nunito {
|
|
13258
|
-
font-family: "Nunito", sans-serif; }
|
|
13259
|
-
|
|
13260
|
-
*:not(.nunito) {
|
|
13261
|
-
font-family: "Exo 2", sans-serif; }
|
|
13262
|
-
|
|
13263
|
-
.document-grabbing {
|
|
13264
|
-
cursor: -webkit-grabbing !important;
|
|
13265
|
-
cursor: grabbing !important; }
|
|
13266
|
-
|
|
13267
|
-
h1 {
|
|
13268
|
-
font-size: 36px;
|
|
13269
|
-
font-weight: 600;
|
|
13270
|
-
margin: 0; }
|
|
13271
|
-
|
|
13272
|
-
h2 {
|
|
13273
|
-
font-size: 32px;
|
|
13274
|
-
font-weight: 500;
|
|
13275
|
-
margin: 0; }
|
|
13276
|
-
|
|
13277
|
-
h3 {
|
|
13278
|
-
font-size: 24px;
|
|
13279
|
-
font-weight: 500;
|
|
13280
|
-
margin: 0; }
|
|
13281
|
-
|
|
13282
|
-
h4 {
|
|
13283
|
-
font-size: 18px;
|
|
13284
|
-
font-weight: 500;
|
|
13285
|
-
margin: 0; }
|
|
13286
|
-
|
|
13287
|
-
h5 {
|
|
13288
|
-
font-family: "Nunito", sans-serif;
|
|
13289
|
-
font-size: 24px;
|
|
13290
|
-
font-weight: 400;
|
|
13291
|
-
margin: 0; }
|
|
13292
|
-
|
|
13293
|
-
.fade-enter {
|
|
13294
|
-
transition: opacity 0.2s ease;
|
|
13295
|
-
position: absolute;
|
|
13296
|
-
opacity: 0; }
|
|
13297
|
-
|
|
13298
|
-
.fade-enter-active {
|
|
13299
|
-
position: absolute;
|
|
13300
|
-
opacity: 1; }
|
|
13301
|
-
|
|
13302
|
-
.fade-exit {
|
|
13303
|
-
transition: opacity 0.15s ease;
|
|
13304
|
-
position: absolute;
|
|
13305
|
-
opacity: 1; }
|
|
13306
|
-
|
|
13307
|
-
.fade-exit-active {
|
|
13308
|
-
position: absolute;
|
|
13309
|
-
opacity: 0; }
|
|
13310
|
-
|
|
13311
|
-
.fade-exit-done {
|
|
13312
|
-
position: absolute;
|
|
13313
|
-
opacity: 0; }
|
|
13314
|
-
|
|
13315
|
-
* {
|
|
13316
|
-
box-sizing: border-box; }
|
|
13317
|
-
*::-webkit-scrollbar-track {
|
|
13318
|
-
background-color: #f8f9f7;
|
|
13319
|
-
border-radius: 20px; }
|
|
13320
|
-
*::-webkit-scrollbar {
|
|
13321
|
-
width: 12px;
|
|
13322
|
-
height: 12px; }
|
|
13323
|
-
*::-webkit-scrollbar-thumb {
|
|
13324
|
-
-webkit-transition: all 0.3s ease;
|
|
13325
|
-
transition: all 0.3s ease;
|
|
13326
|
-
border-radius: 10px;
|
|
13327
|
-
background-color: #cdd3cd;
|
|
13328
|
-
border-width: 3px;
|
|
13329
|
-
border-style: solid;
|
|
13330
|
-
border-color: #f8f9f7; }
|
|
13331
|
-
*::-webkit-scrollbar-thumb:hover {
|
|
13332
|
-
border-width: 2px;
|
|
13333
|
-
background-color: #bfc7bf; }
|
|
13334
|
-
*::-webkit-scrollbar-button {
|
|
13335
|
-
display: none; }
|
|
13336
|
-
|
|
13337
|
-
.scroll-white::-webkit-scrollbar-track {
|
|
13338
|
-
background-color: #fefefe;
|
|
13339
|
-
border-radius: 20px; }
|
|
13340
|
-
|
|
13341
|
-
.scroll-white::-webkit-scrollbar-thumb {
|
|
13342
|
-
background-color: #cdd3cd;
|
|
13343
|
-
border-color: #fefefe; }
|
|
13344
|
-
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
13345
|
-
background-color: #bfc7bf; }
|
|
13346
|
-
|
|
13347
13207
|
.component-nota-edit {
|
|
13348
13208
|
width: 100%;
|
|
13349
13209
|
height: 100%;
|
|
@@ -14240,6 +14100,143 @@ h5 {
|
|
|
14240
14100
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
14241
14101
|
background-color: #bfc7bf; }
|
|
14242
14102
|
|
|
14103
|
+
.qrcode {
|
|
14104
|
+
display: inline-block;
|
|
14105
|
+
display: flex;
|
|
14106
|
+
align-items: center;
|
|
14107
|
+
justify-content: center;
|
|
14108
|
+
padding: 12px; }
|
|
14109
|
+
.qrcode.button {
|
|
14110
|
+
cursor: pointer;
|
|
14111
|
+
transition: transform 0.3s ease; }
|
|
14112
|
+
.qrcode.button:active {
|
|
14113
|
+
transform: scale(0.95); }
|
|
14114
|
+
|
|
14115
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
14116
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
14117
|
+
:export {
|
|
14118
|
+
white: #fefefe;
|
|
14119
|
+
darkenWhite: #efefef;
|
|
14120
|
+
black: #121212;
|
|
14121
|
+
transparent: rgba(0, 0, 0, 0);
|
|
14122
|
+
primary: #3fa110;
|
|
14123
|
+
primaryDark: #33820d;
|
|
14124
|
+
primaryLight: #d7e6c8;
|
|
14125
|
+
secondaryDarker: #323c32;
|
|
14126
|
+
secondaryDark: #5a645a;
|
|
14127
|
+
secondary: #828a82;
|
|
14128
|
+
secondaryLight: #cdd3cd;
|
|
14129
|
+
secondaryLighter: #f8f9f7;
|
|
14130
|
+
danger: #e60000;
|
|
14131
|
+
dangerLight: #ffb4b4;
|
|
14132
|
+
dangerDark: #ab4745;
|
|
14133
|
+
warning: #ffcd00;
|
|
14134
|
+
warningLight: #ffeb98;
|
|
14135
|
+
warningDark: #765f00; }
|
|
14136
|
+
|
|
14137
|
+
:root {
|
|
14138
|
+
--rowPadding: 0;
|
|
14139
|
+
--colPadding: 8px; }
|
|
14140
|
+
|
|
14141
|
+
:export {
|
|
14142
|
+
widthXs: 575.98px;
|
|
14143
|
+
widthSm: 767.98px;
|
|
14144
|
+
widthMd: 991.98px;
|
|
14145
|
+
widthLg: 1199.98px; }
|
|
14146
|
+
|
|
14147
|
+
body.sb-show-main.sb-main-padded {
|
|
14148
|
+
padding: 15px; }
|
|
14149
|
+
|
|
14150
|
+
*.nunito {
|
|
14151
|
+
font-family: "Nunito", sans-serif; }
|
|
14152
|
+
|
|
14153
|
+
*:not(.nunito) {
|
|
14154
|
+
font-family: "Exo 2", sans-serif; }
|
|
14155
|
+
|
|
14156
|
+
.document-grabbing {
|
|
14157
|
+
cursor: -webkit-grabbing !important;
|
|
14158
|
+
cursor: grabbing !important; }
|
|
14159
|
+
|
|
14160
|
+
h1 {
|
|
14161
|
+
font-size: 36px;
|
|
14162
|
+
font-weight: 600;
|
|
14163
|
+
margin: 0; }
|
|
14164
|
+
|
|
14165
|
+
h2 {
|
|
14166
|
+
font-size: 32px;
|
|
14167
|
+
font-weight: 500;
|
|
14168
|
+
margin: 0; }
|
|
14169
|
+
|
|
14170
|
+
h3 {
|
|
14171
|
+
font-size: 24px;
|
|
14172
|
+
font-weight: 500;
|
|
14173
|
+
margin: 0; }
|
|
14174
|
+
|
|
14175
|
+
h4 {
|
|
14176
|
+
font-size: 18px;
|
|
14177
|
+
font-weight: 500;
|
|
14178
|
+
margin: 0; }
|
|
14179
|
+
|
|
14180
|
+
h5 {
|
|
14181
|
+
font-family: "Nunito", sans-serif;
|
|
14182
|
+
font-size: 24px;
|
|
14183
|
+
font-weight: 400;
|
|
14184
|
+
margin: 0; }
|
|
14185
|
+
|
|
14186
|
+
.fade-enter {
|
|
14187
|
+
transition: opacity 0.2s ease;
|
|
14188
|
+
position: absolute;
|
|
14189
|
+
opacity: 0; }
|
|
14190
|
+
|
|
14191
|
+
.fade-enter-active {
|
|
14192
|
+
position: absolute;
|
|
14193
|
+
opacity: 1; }
|
|
14194
|
+
|
|
14195
|
+
.fade-exit {
|
|
14196
|
+
transition: opacity 0.15s ease;
|
|
14197
|
+
position: absolute;
|
|
14198
|
+
opacity: 1; }
|
|
14199
|
+
|
|
14200
|
+
.fade-exit-active {
|
|
14201
|
+
position: absolute;
|
|
14202
|
+
opacity: 0; }
|
|
14203
|
+
|
|
14204
|
+
.fade-exit-done {
|
|
14205
|
+
position: absolute;
|
|
14206
|
+
opacity: 0; }
|
|
14207
|
+
|
|
14208
|
+
* {
|
|
14209
|
+
box-sizing: border-box; }
|
|
14210
|
+
*::-webkit-scrollbar-track {
|
|
14211
|
+
background-color: #f8f9f7;
|
|
14212
|
+
border-radius: 20px; }
|
|
14213
|
+
*::-webkit-scrollbar {
|
|
14214
|
+
width: 12px;
|
|
14215
|
+
height: 12px; }
|
|
14216
|
+
*::-webkit-scrollbar-thumb {
|
|
14217
|
+
-webkit-transition: all 0.3s ease;
|
|
14218
|
+
transition: all 0.3s ease;
|
|
14219
|
+
border-radius: 10px;
|
|
14220
|
+
background-color: #cdd3cd;
|
|
14221
|
+
border-width: 3px;
|
|
14222
|
+
border-style: solid;
|
|
14223
|
+
border-color: #f8f9f7; }
|
|
14224
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
14225
|
+
border-width: 2px;
|
|
14226
|
+
background-color: #bfc7bf; }
|
|
14227
|
+
*::-webkit-scrollbar-button {
|
|
14228
|
+
display: none; }
|
|
14229
|
+
|
|
14230
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
14231
|
+
background-color: #fefefe;
|
|
14232
|
+
border-radius: 20px; }
|
|
14233
|
+
|
|
14234
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
14235
|
+
background-color: #cdd3cd;
|
|
14236
|
+
border-color: #fefefe; }
|
|
14237
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
14238
|
+
background-color: #bfc7bf; }
|
|
14239
|
+
|
|
14243
14240
|
.component-search-bloco-de-notas {
|
|
14244
14241
|
width: 100%;
|
|
14245
14242
|
display: flex;
|
|
@@ -14447,6 +14444,7 @@ h5 {
|
|
|
14447
14444
|
padding: 0 16px;
|
|
14448
14445
|
margin-top: 16px; }
|
|
14449
14446
|
.component-select-panel .component-select-options {
|
|
14447
|
+
overflow-y: auto;
|
|
14450
14448
|
overflow-y: overlay;
|
|
14451
14449
|
max-height: 140px; }
|
|
14452
14450
|
.component-select-panel .component-select-options:last-child .component-select-single-option:last-child,
|
|
@@ -17480,6 +17478,162 @@ h5 {
|
|
|
17480
17478
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
17481
17479
|
background-color: #bfc7bf; }
|
|
17482
17480
|
|
|
17481
|
+
.component-title {
|
|
17482
|
+
width: 100%;
|
|
17483
|
+
position: relative;
|
|
17484
|
+
display: flex;
|
|
17485
|
+
align-items: center;
|
|
17486
|
+
justify-content: space-between;
|
|
17487
|
+
flex-wrap: wrap; }
|
|
17488
|
+
.component-title .component-title-wrapper {
|
|
17489
|
+
display: flex;
|
|
17490
|
+
align-items: center; }
|
|
17491
|
+
.component-title .component-title-icon {
|
|
17492
|
+
display: flex;
|
|
17493
|
+
align-items: center;
|
|
17494
|
+
margin-right: 12px; }
|
|
17495
|
+
.component-title .component-title-text {
|
|
17496
|
+
-webkit-user-select: none;
|
|
17497
|
+
-moz-user-select: none;
|
|
17498
|
+
-ms-user-select: none;
|
|
17499
|
+
user-select: none;
|
|
17500
|
+
color: #323c32;
|
|
17501
|
+
font-size: 26px;
|
|
17502
|
+
font-weight: 700; }
|
|
17503
|
+
@media screen and (max-width: 767.98px) {
|
|
17504
|
+
.component-title .component-title-text {
|
|
17505
|
+
font-size: 22px; } }
|
|
17506
|
+
@media screen and (max-width: 575.98px) {
|
|
17507
|
+
.component-title .component-title-text {
|
|
17508
|
+
font-size: 20px; } }
|
|
17509
|
+
.component-title .component-title-right-element {
|
|
17510
|
+
margin-left: auto; }
|
|
17511
|
+
|
|
17512
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
17513
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
17514
|
+
:export {
|
|
17515
|
+
white: #fefefe;
|
|
17516
|
+
darkenWhite: #efefef;
|
|
17517
|
+
black: #121212;
|
|
17518
|
+
transparent: rgba(0, 0, 0, 0);
|
|
17519
|
+
primary: #3fa110;
|
|
17520
|
+
primaryDark: #33820d;
|
|
17521
|
+
primaryLight: #d7e6c8;
|
|
17522
|
+
secondaryDarker: #323c32;
|
|
17523
|
+
secondaryDark: #5a645a;
|
|
17524
|
+
secondary: #828a82;
|
|
17525
|
+
secondaryLight: #cdd3cd;
|
|
17526
|
+
secondaryLighter: #f8f9f7;
|
|
17527
|
+
danger: #e60000;
|
|
17528
|
+
dangerLight: #ffb4b4;
|
|
17529
|
+
dangerDark: #ab4745;
|
|
17530
|
+
warning: #ffcd00;
|
|
17531
|
+
warningLight: #ffeb98;
|
|
17532
|
+
warningDark: #765f00; }
|
|
17533
|
+
|
|
17534
|
+
:root {
|
|
17535
|
+
--rowPadding: 0;
|
|
17536
|
+
--colPadding: 8px; }
|
|
17537
|
+
|
|
17538
|
+
:export {
|
|
17539
|
+
widthXs: 575.98px;
|
|
17540
|
+
widthSm: 767.98px;
|
|
17541
|
+
widthMd: 991.98px;
|
|
17542
|
+
widthLg: 1199.98px; }
|
|
17543
|
+
|
|
17544
|
+
body.sb-show-main.sb-main-padded {
|
|
17545
|
+
padding: 15px; }
|
|
17546
|
+
|
|
17547
|
+
*.nunito {
|
|
17548
|
+
font-family: "Nunito", sans-serif; }
|
|
17549
|
+
|
|
17550
|
+
*:not(.nunito) {
|
|
17551
|
+
font-family: "Exo 2", sans-serif; }
|
|
17552
|
+
|
|
17553
|
+
.document-grabbing {
|
|
17554
|
+
cursor: -webkit-grabbing !important;
|
|
17555
|
+
cursor: grabbing !important; }
|
|
17556
|
+
|
|
17557
|
+
h1 {
|
|
17558
|
+
font-size: 36px;
|
|
17559
|
+
font-weight: 600;
|
|
17560
|
+
margin: 0; }
|
|
17561
|
+
|
|
17562
|
+
h2 {
|
|
17563
|
+
font-size: 32px;
|
|
17564
|
+
font-weight: 500;
|
|
17565
|
+
margin: 0; }
|
|
17566
|
+
|
|
17567
|
+
h3 {
|
|
17568
|
+
font-size: 24px;
|
|
17569
|
+
font-weight: 500;
|
|
17570
|
+
margin: 0; }
|
|
17571
|
+
|
|
17572
|
+
h4 {
|
|
17573
|
+
font-size: 18px;
|
|
17574
|
+
font-weight: 500;
|
|
17575
|
+
margin: 0; }
|
|
17576
|
+
|
|
17577
|
+
h5 {
|
|
17578
|
+
font-family: "Nunito", sans-serif;
|
|
17579
|
+
font-size: 24px;
|
|
17580
|
+
font-weight: 400;
|
|
17581
|
+
margin: 0; }
|
|
17582
|
+
|
|
17583
|
+
.fade-enter {
|
|
17584
|
+
transition: opacity 0.2s ease;
|
|
17585
|
+
position: absolute;
|
|
17586
|
+
opacity: 0; }
|
|
17587
|
+
|
|
17588
|
+
.fade-enter-active {
|
|
17589
|
+
position: absolute;
|
|
17590
|
+
opacity: 1; }
|
|
17591
|
+
|
|
17592
|
+
.fade-exit {
|
|
17593
|
+
transition: opacity 0.15s ease;
|
|
17594
|
+
position: absolute;
|
|
17595
|
+
opacity: 1; }
|
|
17596
|
+
|
|
17597
|
+
.fade-exit-active {
|
|
17598
|
+
position: absolute;
|
|
17599
|
+
opacity: 0; }
|
|
17600
|
+
|
|
17601
|
+
.fade-exit-done {
|
|
17602
|
+
position: absolute;
|
|
17603
|
+
opacity: 0; }
|
|
17604
|
+
|
|
17605
|
+
* {
|
|
17606
|
+
box-sizing: border-box; }
|
|
17607
|
+
*::-webkit-scrollbar-track {
|
|
17608
|
+
background-color: #f8f9f7;
|
|
17609
|
+
border-radius: 20px; }
|
|
17610
|
+
*::-webkit-scrollbar {
|
|
17611
|
+
width: 12px;
|
|
17612
|
+
height: 12px; }
|
|
17613
|
+
*::-webkit-scrollbar-thumb {
|
|
17614
|
+
-webkit-transition: all 0.3s ease;
|
|
17615
|
+
transition: all 0.3s ease;
|
|
17616
|
+
border-radius: 10px;
|
|
17617
|
+
background-color: #cdd3cd;
|
|
17618
|
+
border-width: 3px;
|
|
17619
|
+
border-style: solid;
|
|
17620
|
+
border-color: #f8f9f7; }
|
|
17621
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
17622
|
+
border-width: 2px;
|
|
17623
|
+
background-color: #bfc7bf; }
|
|
17624
|
+
*::-webkit-scrollbar-button {
|
|
17625
|
+
display: none; }
|
|
17626
|
+
|
|
17627
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
17628
|
+
background-color: #fefefe;
|
|
17629
|
+
border-radius: 20px; }
|
|
17630
|
+
|
|
17631
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
17632
|
+
background-color: #cdd3cd;
|
|
17633
|
+
border-color: #fefefe; }
|
|
17634
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
17635
|
+
background-color: #bfc7bf; }
|
|
17636
|
+
|
|
17483
17637
|
.component-toast {
|
|
17484
17638
|
position: relative;
|
|
17485
17639
|
min-width: 300px;
|
package/dist/index.d.ts
CHANGED
|
@@ -148,13 +148,13 @@ import MenuItem from 'components/menu/components/menuItem/MenuItem';
|
|
|
148
148
|
import Menu from 'components/menu/Menu';
|
|
149
149
|
import Modal from 'components/modal/Modal';
|
|
150
150
|
import { ModalManager } from 'components/modalManager/ModalManager';
|
|
151
|
-
import ModulosTitle from 'components/modulosTitle/ModulosTitle';
|
|
152
151
|
import NotaEdit from 'components/notaEdit/NotaEdit';
|
|
153
152
|
import Notification from 'components/notification/Notification';
|
|
154
153
|
import PageTitle, { PageSubTitle } from 'components/pageTitle/PageTitle';
|
|
155
154
|
import Paginator from 'components/paginator/Paginator';
|
|
156
155
|
import PreviaVideo from 'components/previaVideo/PreviaVideo';
|
|
157
156
|
import ProgressBar from 'components/progressBar/ProgressBar';
|
|
157
|
+
import Qrcode from 'components/qrcode/Qrcode';
|
|
158
158
|
import RadioButton from 'components/radioButton/RadioButton';
|
|
159
159
|
import Row from 'components/row/Row';
|
|
160
160
|
import SearchBlocoDeNotas from 'components/searchBlocoDeNotas/SearchBlocoDeNotas';
|
|
@@ -168,6 +168,7 @@ import TableFileNameAndAction from 'components/tableFileNameAndAction/TableFileN
|
|
|
168
168
|
import TableWithOverflow from 'components/tableWithOverflow/TableWithOverflow';
|
|
169
169
|
import Tabs from 'components/tabs/Tabs';
|
|
170
170
|
import TextEditor from 'components/textEditor/TextEditor';
|
|
171
|
+
import Title from 'components/title/Title';
|
|
171
172
|
import Toast from 'components/toast/Toast';
|
|
172
173
|
import { ToastManager } from 'components/toastManager/ToastManager';
|
|
173
174
|
import Tooltip from 'components/tooltip/Tooltip';
|
|
@@ -188,6 +189,13 @@ import useStorageState from 'hooks/useStorageState/useStorageState';
|
|
|
188
189
|
import useTimeElapsed from 'hooks/useTimeElapsed/useTimeElapsed';
|
|
189
190
|
import useToastManager from 'hooks/useToastManager/useToastManager';
|
|
190
191
|
import useValidatedState from 'hooks/useValidatedState/useValidatedState';
|
|
192
|
+
import { CopyIcon } from 'assets/icons/CopyIcon';
|
|
193
|
+
import { PrintIcon } from 'assets/icons/PrintIcon';
|
|
194
|
+
import { QRCodeIcon } from 'assets/icons/QRCodeIcon';
|
|
195
|
+
import { CalendarCheckIcon } from 'assets/icons/CalendarCheckIcon';
|
|
196
|
+
import { DevicePlusIcon } from 'assets/icons/DevicePlusIcon';
|
|
197
|
+
import { NotebookIcon } from 'assets/icons/NotebookIcon';
|
|
198
|
+
import { AgencyIcon } from 'assets/icons/AgencyIcon';
|
|
191
199
|
export * from './components/modal/ModalTypes';
|
|
192
200
|
export * from './libraries/ActionCardThemes';
|
|
193
201
|
export * from './libraries/BlobFileTypes';
|
|
@@ -206,4 +214,8 @@ export * from './libraries/RadioButtonTheme';
|
|
|
206
214
|
export * from './libraries/SicrediLogoThemes';
|
|
207
215
|
export * from './libraries/Toast';
|
|
208
216
|
export * from './libraries/Tooltips';
|
|
209
|
-
export { Accordion, ActionCard, AdvancedSemiHeader, AssembleiaItem, AssembleiaPauta, Aconteceu, AnimatedLink, Banner, BannerAssembleia, BannerPesquisaCpfCnpj, BigBlockButton, BlocoDeNotas, BreadCrumb, Button, ButtonFileUpload, BlocoMinhasAssembleias, BottomNavigation, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, EditableVideoItem, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FooterSicredi, FullHeightContainer, Header, HeaderSeparator, HeaderSearchField, IconButton, IconButtonWithLabel, Information, Input, InputArea, ItemDropdownDownload, InformativoAssembleiasComImagem, InformativoAssembleiasComVideo, Menu, MenuItem, Modal, ModalManager,
|
|
217
|
+
export { Accordion, ActionCard, AdvancedSemiHeader, AssembleiaItem, AssembleiaPauta, Aconteceu, AnimatedLink, Banner, BannerAssembleia, BannerPesquisaCpfCnpj, BigBlockButton, BlocoDeNotas, BreadCrumb, Button, ButtonFileUpload, BlocoMinhasAssembleias, BottomNavigation, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, EditableVideoItem, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FooterSicredi, FullHeightContainer, Header, HeaderSeparator, HeaderSearchField, IconButton, IconButtonWithLabel, Information, Input, InputArea, ItemDropdownDownload, InformativoAssembleiasComImagem, InformativoAssembleiasComVideo, Menu, MenuItem, Modal, ModalManager, Title,
|
|
218
|
+
/**
|
|
219
|
+
* @deprecated
|
|
220
|
+
*/
|
|
221
|
+
Title as ModulosTitle, MoneyByMonth, MoneyMonthLineChart, NotaEdit, Notification, PageSubTitle, PageTitle, Paginator, PreviaVideo, ProgressBar, Qrcode, RadioButton, Row, SearchBlocoDeNotas, Select, Switch, Table, TypedTable, TableFileNameAndAction, TableActions, TableWithOverflow, TextEditor, LeftCheckboxWithLabel, ActionsColumn, Tabs, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, VideoItem, VideoPlayer, VideoModal, useCallbackedState, useCarouselBehaviour, useControlledTimer, useDraggableContainer, useDropOpened, useModalManager, useProgressiveCount, useScreenSize, useStorageState, useTimeElapsed, useToastManager, useValidatedState, AconteceuIcon, ChevronArrowRightIcon, FontIcon, PaymentIcon, AddCircleIcon, CircleArrowLeft, CopyIcon, QRCodeIcon, PrintIcon, FormacaoIcon, PercentLoaderIcon, AddIcon, CircleArrowRight, FundacaoLogo, PieChartIcon, AlignCenterIcon, ClockIcon, CalendarCheckIcon, DevicePlusIcon, NotebookIcon, AgencyIcon, FundoSocialIcon, PlayIcon, AlignJustifyIcon, CloseIcon, GlobeIcon, QRCodeWhatsapp, AlignLeftIcon, CloudDownloadIcon, GraduationIcon, RedoIcon, AlignRightIcon, CloudUploadIcon, HamburgerIcon, RefreshIcon, ArrowLeftIcon, ComitesIcon, HandUpIcon, SearchIcon, ArrowRightIcon, ComunidadeIcon, HomeIcon, SettingsIcon, AssembleiasIcon, CreditIcon, InformationIcon, SicrediLogo, ATMIcon, CrescerIcon, InvestimentIcon, SquaresIcon, BackOfficeIcon, CrescerLogo, ItalicIcon, SustentabilidadeIcon, BarChartIcon, DownloadIcon, LinkIcon, ThreeDotsLoader, BeeIcon, DraggableIcon, LinksUteisIcon, ThumbsUpIcon, BigPlayIcon, EditIcon, ListDotIcon, TimesCircleIcon, BoldIcon, EvidenciasIcon, ListIcon, TransferenciaIcon, CalendarIcon, ExclamationIcon, LoaderIcon, TrashIcon, CardsIcon, ExitIconArrowLeft, LocalIcon, TrianguloInferior, CataventoVerde, ExitIconArrowRight, LockIcon, TwoFileIcon, CheckCircleIcon, EyeIcon, MessageIcon, UnderlineIcon, CheckIcon, FilePlusIcon, MoneyFileIcon, UndoIcon, ChequeIcon, FilesIcon, NavigatorWithMouse, UserIcon, ChevronArrowDownIcon, FilterIcon, OptionsIcon, WebsiteIcon, ChevronArrowLeftIcon, FontColorIcon, ParticipantesIcon, };
|