@luizleon/sf.prefeiturasp.vuecomponents 0.0.2 → 0.0.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/components/tabnavigation/TabNavigation.d.ts +26 -0
- package/dist/index.d.ts +2 -1
- package/dist/lib.es.js +811 -716
- package/dist/lib.umd.js +33 -33
- package/dist/style.css +1 -1
- package/package.json +2 -3
- package/src/components/tabnavigation/TabNavigation.d.ts +37 -0
- package/src/components/tabnavigation/TabNavigation.vue +114 -0
- package/src/index.ts +2 -0
- package/src/style/componentes.scss +2 -11
- package/src/style/src/components/_tab-navigation.scss +88 -0
- package/src/sf-oidc-state.html +0 -15
- package/src/style/src/components/_button.scss +0 -110
- package/src/style/src/components/_checkbox.scss +0 -53
- package/src/style/src/components/_datefield.scss +0 -405
- package/src/style/src/components/_mark.scss +0 -9
- package/src/style/src/components/_mask.scss +0 -33
- package/src/style/src/components/_numpad.scss +0 -58
- package/src/style/src/components/_progress-circular.scss +0 -52
- package/src/style/src/components/_select.scss +0 -60
- package/src/style/src/components/_textfield.scss +0 -186
- package/src/style/src/components/_toast.scss +0 -66
- /package/src/style/src/components/{_internal_icon_button.scss → _internal-icon-button.scss} +0 -0
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
.sf-textfield {
|
|
2
|
-
position: relative;
|
|
3
|
-
display: block;
|
|
4
|
-
font-size: 1rem;
|
|
5
|
-
line-height: 1.5;
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.sf-textfield > input {
|
|
10
|
-
display: block;
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
margin: 0;
|
|
13
|
-
border: none;
|
|
14
|
-
border-top: 27px solid transparent;
|
|
15
|
-
border-bottom: 1px solid var(--secondary-color);
|
|
16
|
-
border-radius: 4px 4px 0 0;
|
|
17
|
-
padding: 0 12px 10px;
|
|
18
|
-
width: 100%;
|
|
19
|
-
height: inherit;
|
|
20
|
-
color: var(--text-color);
|
|
21
|
-
background-color: var(--surface-300-color);
|
|
22
|
-
box-shadow: none;
|
|
23
|
-
font-family: inherit;
|
|
24
|
-
font-size: inherit;
|
|
25
|
-
line-height: inherit;
|
|
26
|
-
caret-color: var(--primary-color);
|
|
27
|
-
transition: border-bottom 0.2s, background-color 0.2s;
|
|
28
|
-
white-space: nowrap;
|
|
29
|
-
overflow: hidden;
|
|
30
|
-
text-overflow: ellipsis;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.sf-textfield > input + span {
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: 0;
|
|
36
|
-
left: 0;
|
|
37
|
-
right: 0;
|
|
38
|
-
bottom: 0;
|
|
39
|
-
display: block;
|
|
40
|
-
box-sizing: border-box;
|
|
41
|
-
padding: 7px 12px 0;
|
|
42
|
-
color: var(--secondary-color);
|
|
43
|
-
font-size: 75%;
|
|
44
|
-
line-height: 18px;
|
|
45
|
-
pointer-events: none;
|
|
46
|
-
transition: color 0.2s, font-size 0.2s, line-height 0.2s;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.sf-textfield > input + span::after {
|
|
50
|
-
content: "";
|
|
51
|
-
position: absolute;
|
|
52
|
-
left: 0;
|
|
53
|
-
bottom: 0;
|
|
54
|
-
display: block;
|
|
55
|
-
width: 100%;
|
|
56
|
-
height: 2px;
|
|
57
|
-
background-color: var(--primary-color);
|
|
58
|
-
transform-origin: bottom center;
|
|
59
|
-
transform: scaleX(0);
|
|
60
|
-
transition: transform 0.3s;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.sf-textfield > input:hover {
|
|
64
|
-
border-bottom-color: var(--text-color);
|
|
65
|
-
background-color: var(--surface-500-color);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.sf-textfield > input:not(:focus):placeholder-shown + span {
|
|
69
|
-
font-size: inherit;
|
|
70
|
-
line-height: 48px;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.sf-textfield > input:focus {
|
|
74
|
-
background-color: var(--surface-500-color);
|
|
75
|
-
outline: none;
|
|
76
|
-
+ span {
|
|
77
|
-
color: var(--primary-color);
|
|
78
|
-
&::before {
|
|
79
|
-
opacity: 0.12;
|
|
80
|
-
}
|
|
81
|
-
&::after {
|
|
82
|
-
transform: scale(1);
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.sf-textfield > input:disabled {
|
|
88
|
-
border-bottom-color: var(--surface-1300-color);
|
|
89
|
-
color: var(--surface-1000-color);
|
|
90
|
-
background-color: var(--surface-100-color);
|
|
91
|
-
+ span {
|
|
92
|
-
color: var(--surface-1000-color);
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.sf-textfield-dense {
|
|
97
|
-
> input {
|
|
98
|
-
padding-bottom: 4px;
|
|
99
|
-
border-top-width: 18px;
|
|
100
|
-
font-size: 0.875rem;
|
|
101
|
-
}
|
|
102
|
-
> input + span {
|
|
103
|
-
top: -11px;
|
|
104
|
-
padding-top: 13px;
|
|
105
|
-
}
|
|
106
|
-
> input:not(:focus):placeholder-shown + span {
|
|
107
|
-
line-height: 42px;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.sf-textfield-empty-label {
|
|
112
|
-
> input {
|
|
113
|
-
border-top-width: 20px;
|
|
114
|
-
padding-bottom: 17px;
|
|
115
|
-
}
|
|
116
|
-
&.sf-textfield-dense {
|
|
117
|
-
> input {
|
|
118
|
-
border-top-width: 10px;
|
|
119
|
-
padding-bottom: 10px;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.sf-textfield-left {
|
|
125
|
-
> input {
|
|
126
|
-
text-align: left;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.sf-textfield-center {
|
|
131
|
-
> input {
|
|
132
|
-
text-align: center;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.sf-textfield-right {
|
|
137
|
-
> input {
|
|
138
|
-
text-align: right;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
Ícones
|
|
144
|
-
**/
|
|
145
|
-
.sf-textfield {
|
|
146
|
-
&:has(.sf-textfield-leading-icon) {
|
|
147
|
-
> input,
|
|
148
|
-
> span {
|
|
149
|
-
padding-left: 48px;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
&:has(.sf-textfield-clear-icon),
|
|
153
|
-
&:has(.sf-textfield-action-icon) {
|
|
154
|
-
> input,
|
|
155
|
-
> span {
|
|
156
|
-
padding-right: 36px;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
&:has(.sf-textfield-clear-icon):has(.sf-textfield-action-icon) {
|
|
160
|
-
> input,
|
|
161
|
-
> span {
|
|
162
|
-
padding-right: 72px;
|
|
163
|
-
}
|
|
164
|
-
.sf-textfield-clear-icon {
|
|
165
|
-
right: 36px;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
> .sf-icon {
|
|
169
|
-
position: absolute;
|
|
170
|
-
top: 50%;
|
|
171
|
-
transform: translateY(-50%);
|
|
172
|
-
&.sf-textfield-leading-icon {
|
|
173
|
-
pointer-events: none;
|
|
174
|
-
left: 12px;
|
|
175
|
-
}
|
|
176
|
-
&.sf-textfield-clear-icon,
|
|
177
|
-
&.sf-textfield-action-icon {
|
|
178
|
-
right: 4px;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
// Last Pass (e outros plugins...)
|
|
184
|
-
.sf-textfield > div:not(.sf-icon):not(.sf-textfield-action) {
|
|
185
|
-
visibility: hidden;
|
|
186
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
div.sf-toast {
|
|
2
|
-
transition: all 300ms ease;
|
|
3
|
-
background-color: var(--surface-600-color);
|
|
4
|
-
position: fixed;
|
|
5
|
-
border-radius: 4px;
|
|
6
|
-
bottom: -100px;
|
|
7
|
-
top: -100px;
|
|
8
|
-
opacity: 0;
|
|
9
|
-
width: 480px;
|
|
10
|
-
margin: 24px;
|
|
11
|
-
|
|
12
|
-
@include toast-colors;
|
|
13
|
-
|
|
14
|
-
@media screen and (max-width: #{$sm}) {
|
|
15
|
-
margin: 0;
|
|
16
|
-
margin-bottom: -1px;
|
|
17
|
-
width: 100vw;
|
|
18
|
-
min-height: 100px;
|
|
19
|
-
border-radius: 0;
|
|
20
|
-
.content .progress {
|
|
21
|
-
border-radius: 0 !important;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.content {
|
|
26
|
-
color: var(--text-color);
|
|
27
|
-
padding: 1.75rem 1.5rem;
|
|
28
|
-
position: relative;
|
|
29
|
-
.icon {
|
|
30
|
-
position: absolute;
|
|
31
|
-
top: 50%;
|
|
32
|
-
margin-top: -12px;
|
|
33
|
-
right: 12px;
|
|
34
|
-
cursor: pointer;
|
|
35
|
-
}
|
|
36
|
-
p {
|
|
37
|
-
padding-right: 18px;
|
|
38
|
-
font-size: 1.1rem;
|
|
39
|
-
}
|
|
40
|
-
.progress {
|
|
41
|
-
position: absolute;
|
|
42
|
-
border-top-left-radius: 4px;
|
|
43
|
-
border-top-right-radius: 4px;
|
|
44
|
-
height: 10px;
|
|
45
|
-
top: 0;
|
|
46
|
-
right: 0;
|
|
47
|
-
left: 0;
|
|
48
|
-
transition-property: left;
|
|
49
|
-
transition-timing-function: linear;
|
|
50
|
-
transition-delay: 300ms;
|
|
51
|
-
background-color: var(--animate-bg-color);
|
|
52
|
-
opacity: 0.75;
|
|
53
|
-
}
|
|
54
|
-
&.animate .progress {
|
|
55
|
-
left: 100%;
|
|
56
|
-
border-top-left-radius: 0;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&.visible {
|
|
61
|
-
opacity: 1;
|
|
62
|
-
top: auto !important;
|
|
63
|
-
bottom: 0;
|
|
64
|
-
right: 0;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
File without changes
|