@luizleon/sf.prefeiturasp.vuecomponents 0.0.21 → 0.0.22
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/package.json +4 -14
- package/src/common/appResult.ts +22 -0
- package/src/components/button/Button.d.ts +42 -0
- package/src/components/button/Button.vue +61 -0
- package/src/components/content/Content.d.ts +35 -0
- package/src/components/content/Content.vue +41 -0
- package/src/components/icon/Icon.d.ts +38 -0
- package/src/components/icon/Icon.vue +43 -0
- package/src/components/internal/HeaderAvatar.vue +49 -0
- package/src/components/internal/LoadingCircle.vue +16 -0
- package/src/components/internal/MenuIcon.vue +13 -0
- package/src/components/internal/ScrollToTop.vue +26 -0
- package/src/components/internal/ThemeToggle.ts +41 -0
- package/src/components/internal/ThemeToggle.vue +23 -0
- package/src/components/internal/cssClassBuilder.ts +44 -0
- package/src/components/layout/Layout.d.ts +44 -0
- package/src/components/layout/Layout.vue +51 -0
- package/src/components/navmenulink/NavMenuLink.d.ts +35 -0
- package/src/components/navmenulink/NavMenuLink.vue +41 -0
- package/src/components/tabnavigation/TabNavigation.d.ts +42 -0
- package/src/components/tabnavigation/TabNavigation.vue +117 -0
- package/src/enum/cor.ts +9 -0
- package/src/enum/index.ts +2 -0
- package/src/enum/tamanho.ts +5 -0
- package/src/index.ts +62 -0
- package/src/keycloak.d.ts +671 -0
- package/src/keycloak.js +1731 -0
- package/src/services/authService.ts +68 -0
- package/src/services/dialogService.ts +63 -0
- package/src/services/navMenuService.ts +21 -0
- package/src/style/componentes.scss +15 -0
- package/src/style/src/_animation.scss +441 -0
- package/src/style/src/_display.scss +10 -0
- package/src/style/src/_flexbox.scss +85 -0
- package/src/style/src/_functions.scss +171 -0
- package/src/style/src/_gap.scss +8 -0
- package/src/style/src/_grid.scss +100 -0
- package/src/style/src/_mixins.scss +633 -0
- package/src/style/src/_normalize.scss +351 -0
- package/src/style/src/_ripple.scss +30 -0
- package/src/style/src/_size.scss +98 -0
- package/src/style/src/_spacing.scss +42 -0
- package/src/style/src/_typography.scss +43 -0
- package/src/style/src/_variables.scss +87 -0
- package/src/style/src/components/_button.scss +107 -0
- package/src/style/src/components/_content.scss +57 -0
- package/src/style/src/components/_drawer.scss +99 -0
- package/src/style/src/components/_headerAvatar.scss +22 -0
- package/src/style/src/components/_icon.scss +120 -0
- package/src/style/src/components/_internal-icon-button.scss +5 -0
- package/src/style/src/components/_layout.scss +183 -0
- package/src/style/src/components/_loading-circle.scss +24 -0
- package/src/style/src/components/_navmenulink.scss +31 -0
- package/src/style/src/components/_scrollToTop.scss +28 -0
- package/src/style/src/components/_svg_icon.scss +5 -0
- package/src/style/src/components/_tab-navigation.scss +93 -0
- package/src/style/src/components/_themetoggle.scss +25 -0
- package/src/style/src/components/_tooltip.scss +55 -0
- package/src/style/src/sweetalert/_sweetalert.scss +9 -0
- package/src/style/src/sweetalert/scss/_animations.scss +197 -0
- package/src/style/src/sweetalert/scss/_body.scss +45 -0
- package/src/style/src/sweetalert/scss/_core.scss +863 -0
- package/src/style/src/sweetalert/scss/_mixins.scss +16 -0
- package/src/style/src/sweetalert/scss/_theming.scss +8 -0
- package/src/style/src/sweetalert/scss/_toasts-animations.scss +83 -0
- package/src/style/src/sweetalert/scss/_toasts-body.scss +85 -0
- package/src/style/src/sweetalert/scss/_toasts.scss +203 -0
- package/src/style/src/sweetalert/scss/_variables.scss +265 -0
- package/src/style/tema.scss +169 -0
- package/src/ts-helpers.d.ts +57 -0
- package/tsconfig.json +20 -0
- package/vite.config.js +26 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
.sf-tab-navigation {
|
|
2
|
+
background: var(--surface-100-color);
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
position: relative;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.sf-tab-navigation svg {
|
|
8
|
+
width: 36px;
|
|
9
|
+
height: 36px;
|
|
10
|
+
padding: 8px;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
color: var(--text-color);
|
|
13
|
+
border-radius: 50%;
|
|
14
|
+
pointer-events: auto;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.sf-tab-navigation ul {
|
|
18
|
+
padding: 0;
|
|
19
|
+
margin: 0;
|
|
20
|
+
display: flex;
|
|
21
|
+
height: 42px;
|
|
22
|
+
list-style: none;
|
|
23
|
+
overflow: scroll;
|
|
24
|
+
-ms-overflow-style: none;
|
|
25
|
+
scrollbar-width: none;
|
|
26
|
+
scroll-behavior: smooth;
|
|
27
|
+
background-color: var(--bg-color);
|
|
28
|
+
border-bottom: 1px solid var(--surface-border-color);
|
|
29
|
+
> li {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
padding: 0 1rem;
|
|
33
|
+
border-bottom: 2px solid transparent;
|
|
34
|
+
&[data-active="true"] {
|
|
35
|
+
border-bottom-color: var(--primary-color);
|
|
36
|
+
pointer-events: none;
|
|
37
|
+
}
|
|
38
|
+
&:not([data-active="true"]) {
|
|
39
|
+
> a {
|
|
40
|
+
&:hover,
|
|
41
|
+
&:focus {
|
|
42
|
+
color: var(--info-color);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
> a {
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sf-tab-navigation ul::-webkit-scrollbar {
|
|
53
|
+
display: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sf-tab-navigation .right-arrow,
|
|
57
|
+
.sf-tab-navigation .left-arrow {
|
|
58
|
+
position: absolute;
|
|
59
|
+
height: 100%;
|
|
60
|
+
width: 100px;
|
|
61
|
+
top: 0;
|
|
62
|
+
display: none;
|
|
63
|
+
align-items: center;
|
|
64
|
+
padding: 0 10px;
|
|
65
|
+
pointer-events: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.sf-tab-navigation .right-arrow.active,
|
|
69
|
+
.sf-tab-navigation .left-arrow.active {
|
|
70
|
+
display: flex;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.sf-tab-navigation .right-arrow {
|
|
74
|
+
right: 0;
|
|
75
|
+
background: linear-gradient(
|
|
76
|
+
to left,
|
|
77
|
+
var(--surface-100-color) 30%,
|
|
78
|
+
transparent
|
|
79
|
+
);
|
|
80
|
+
justify-content: flex-end;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.sf-tab-navigation .left-arrow {
|
|
84
|
+
background: linear-gradient(
|
|
85
|
+
to right,
|
|
86
|
+
var(--surface-100-color) 50%,
|
|
87
|
+
transparent
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.sf-tab-navigation svg:hover {
|
|
92
|
+
background: var(--surface-300-color);
|
|
93
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@import "../mixins";
|
|
2
|
+
|
|
3
|
+
html {
|
|
4
|
+
#sf-theme-toggle {
|
|
5
|
+
@include sf-internal-icon-button;
|
|
6
|
+
|
|
7
|
+
.toggle-circle {
|
|
8
|
+
transition: transform 500ms ease-out;
|
|
9
|
+
transform: translateX(-15%);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.toggle-sun {
|
|
13
|
+
transform-origin: center center;
|
|
14
|
+
transition: transform 750ms cubic-bezier(0.11, 0.14, 0.29, 1.32);
|
|
15
|
+
transform: rotate(0.5turn);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.dark #sf-theme-toggle {
|
|
20
|
+
.toggle-circle,
|
|
21
|
+
.toggle-sun {
|
|
22
|
+
transform: unset;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.sf-tooltip-wrapper {
|
|
2
|
+
--arrow-width: 7.5px;
|
|
3
|
+
pointer-events: none;
|
|
4
|
+
width: 120px;
|
|
5
|
+
color: var(--bg-color);
|
|
6
|
+
text-align: center;
|
|
7
|
+
text-transform: lowercase;
|
|
8
|
+
position: absolute;
|
|
9
|
+
opacity: 0;
|
|
10
|
+
transition: opacity 0.3s;
|
|
11
|
+
|
|
12
|
+
.sf-tooltip-inner {
|
|
13
|
+
position: relative;
|
|
14
|
+
padding: 6px 0;
|
|
15
|
+
border-radius: 4px;
|
|
16
|
+
background-color: var(--text-color);
|
|
17
|
+
font-size: 0.875rem;
|
|
18
|
+
|
|
19
|
+
&::after {
|
|
20
|
+
content: "";
|
|
21
|
+
position: absolute;
|
|
22
|
+
left: var(--arrow-width);
|
|
23
|
+
top: calc(var(--arrow-width) * -1);
|
|
24
|
+
border-left: var(--arrow-width) solid transparent;
|
|
25
|
+
border-right: var(--arrow-width) solid transparent;
|
|
26
|
+
border-bottom: var(--arrow-width) solid var(--text-color);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.visible {
|
|
31
|
+
opacity: 1;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.top .sf-tooltip-inner::after {
|
|
35
|
+
top: unset;
|
|
36
|
+
bottom: calc(var(--arrow-width) * -1);
|
|
37
|
+
border-bottom: unset;
|
|
38
|
+
border-top: var(--arrow-width) solid var(--text-color);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.left .sf-tooltip-inner::after {
|
|
42
|
+
left: unset;
|
|
43
|
+
right: var(--arrow-width);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.sf-tooltip-anchor {
|
|
48
|
+
display: inline !important;
|
|
49
|
+
border-radius: 50%;
|
|
50
|
+
&:has(.sf-component-disabled),
|
|
51
|
+
&:has(.sf-component-loading),
|
|
52
|
+
&:has(.sf-component-freeze) {
|
|
53
|
+
pointer-events: none !important;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
//@import 'toasts-animations';
|
|
2
|
+
|
|
3
|
+
// Appearance animation
|
|
4
|
+
@keyframes swal2-show {
|
|
5
|
+
0% {
|
|
6
|
+
transform: scale(0.7);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
45% {
|
|
10
|
+
transform: scale(1.05);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
80% {
|
|
14
|
+
transform: scale(0.95);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
100% {
|
|
18
|
+
transform: scale(1);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Disppearance animation
|
|
23
|
+
@keyframes swal2-hide {
|
|
24
|
+
0% {
|
|
25
|
+
transform: scale(1);
|
|
26
|
+
opacity: 1;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
100% {
|
|
30
|
+
transform: scale(0.5);
|
|
31
|
+
opacity: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Success icon animations
|
|
36
|
+
@keyframes swal2-animate-success-line-tip {
|
|
37
|
+
0% {
|
|
38
|
+
top: 1.1875em;
|
|
39
|
+
left: 0.0625em;
|
|
40
|
+
width: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
54% {
|
|
44
|
+
top: 1.0625em;
|
|
45
|
+
left: 0.125em;
|
|
46
|
+
width: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
70% {
|
|
50
|
+
top: 2.1875em;
|
|
51
|
+
left: -0.375em;
|
|
52
|
+
width: 3.125em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
84% {
|
|
56
|
+
top: 3em;
|
|
57
|
+
left: 1.3125em;
|
|
58
|
+
width: 1.0625em;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
100% {
|
|
62
|
+
top: 2.8125em;
|
|
63
|
+
left: 0.8125em;
|
|
64
|
+
width: 1.5625em;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes swal2-animate-success-line-long {
|
|
69
|
+
0% {
|
|
70
|
+
top: 3.375em;
|
|
71
|
+
right: 2.875em;
|
|
72
|
+
width: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
65% {
|
|
76
|
+
top: 3.375em;
|
|
77
|
+
right: 2.875em;
|
|
78
|
+
width: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
84% {
|
|
82
|
+
top: 2.1875em;
|
|
83
|
+
right: 0;
|
|
84
|
+
width: 3.4375em;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
100% {
|
|
88
|
+
top: 2.375em;
|
|
89
|
+
right: 0.5em;
|
|
90
|
+
width: 2.9375em;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@keyframes swal2-rotate-success-circular-line {
|
|
95
|
+
0% {
|
|
96
|
+
transform: rotate(-45deg);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
5% {
|
|
100
|
+
transform: rotate(-45deg);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
12% {
|
|
104
|
+
transform: rotate(-405deg);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
100% {
|
|
108
|
+
transform: rotate(-405deg);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// Error icon animations
|
|
113
|
+
@keyframes swal2-animate-error-x-mark {
|
|
114
|
+
0% {
|
|
115
|
+
margin-top: 1.625em;
|
|
116
|
+
transform: scale(0.4);
|
|
117
|
+
opacity: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
50% {
|
|
121
|
+
margin-top: 1.625em;
|
|
122
|
+
transform: scale(0.4);
|
|
123
|
+
opacity: 0;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
80% {
|
|
127
|
+
margin-top: -0.375em;
|
|
128
|
+
transform: scale(1.15);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
100% {
|
|
132
|
+
margin-top: 0;
|
|
133
|
+
transform: scale(1);
|
|
134
|
+
opacity: 1;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
@keyframes swal2-animate-error-icon {
|
|
139
|
+
0% {
|
|
140
|
+
transform: rotateX(100deg);
|
|
141
|
+
opacity: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
100% {
|
|
145
|
+
transform: rotateX(0deg);
|
|
146
|
+
opacity: 1;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@keyframes swal2-rotate-loading {
|
|
151
|
+
0% {
|
|
152
|
+
transform: rotate(0deg);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
100% {
|
|
156
|
+
transform: rotate(360deg);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// Question mark animation
|
|
161
|
+
@keyframes swal2-animate-question-mark {
|
|
162
|
+
0% {
|
|
163
|
+
transform: rotateY(-360deg);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
100% {
|
|
167
|
+
transform: rotateY(0);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Info and Warning mark animation
|
|
172
|
+
@keyframes swal2-animate-i-mark {
|
|
173
|
+
0% {
|
|
174
|
+
transform: rotateZ(45deg);
|
|
175
|
+
opacity: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
25% {
|
|
179
|
+
transform: rotateZ(-25deg);
|
|
180
|
+
opacity: 0.4;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
50% {
|
|
184
|
+
transform: rotateZ(15deg);
|
|
185
|
+
opacity: 0.8;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
75% {
|
|
189
|
+
transform: rotateZ(-5deg);
|
|
190
|
+
opacity: 1;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
100% {
|
|
194
|
+
transform: rotateX(0);
|
|
195
|
+
opacity: 1;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
//@import "toasts-body";
|
|
2
|
+
|
|
3
|
+
@mixin sweetalert2-body() {
|
|
4
|
+
&.swal2-shown {
|
|
5
|
+
@include not(".swal2-no-backdrop", ".swal2-toast-shown") {
|
|
6
|
+
overflow: hidden; // not overflow-y because of Sarari, #1253
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// SfLayout define height de html.
|
|
11
|
+
// &.swal2-height-auto {
|
|
12
|
+
// height: auto !important; // #781 #1107
|
|
13
|
+
// }
|
|
14
|
+
|
|
15
|
+
&.swal2-no-backdrop {
|
|
16
|
+
.swal2-container {
|
|
17
|
+
background-color: transparent !important;
|
|
18
|
+
pointer-events: none;
|
|
19
|
+
|
|
20
|
+
.swal2-popup {
|
|
21
|
+
pointer-events: all;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.swal2-modal {
|
|
25
|
+
box-shadow: 0 0 10px $swal2-backdrop;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@media print {
|
|
31
|
+
&.swal2-shown {
|
|
32
|
+
@include not(".swal2-no-backdrop", ".swal2-toast-shown") {
|
|
33
|
+
overflow-y: scroll !important;
|
|
34
|
+
|
|
35
|
+
> [aria-hidden="true"] {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.swal2-container {
|
|
40
|
+
position: static !important;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|