optimized-react-component-library-xyz123 0.1.136 → 0.1.138
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/index.css +0 -12
- package/dist/index.d.mts +13 -16
- package/dist/index.d.ts +13 -16
- package/dist/index.js +68 -109
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +68 -108
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +8 -4
- package/src/css/mobileView.css +149 -14
- package/src/css/styles.css +96 -82
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
--dark-error: #D75055;
|
|
6
6
|
--dark-main:#141414;
|
|
7
7
|
--dark-info: #808080;
|
|
8
|
-
--dark-
|
|
9
|
-
--dark-
|
|
8
|
+
--dark-orientation-active:#F4BF56;
|
|
9
|
+
--dark-background-second:#200827;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
@media (prefers-color-scheme: dark) {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
/*-----------HEADER--------------*/
|
|
54
54
|
|
|
55
55
|
.pts-header-container{
|
|
56
|
-
background-color: var(--dark-
|
|
56
|
+
background-color: var(--dark-background-second);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.pts-header-container svg path{
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
.pts-stepperDotActive {
|
|
167
|
-
background-color: var(--dark-
|
|
167
|
+
background-color: var(--dark-orientation-active);
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
.pts-stepper-step:not(:last-child)::after {
|
|
@@ -274,6 +274,10 @@
|
|
|
274
274
|
color: var(--dark-action);
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
.error-close svg path{
|
|
278
|
+
stroke: var(--dark-action);
|
|
279
|
+
}
|
|
280
|
+
|
|
277
281
|
.errorMessageAddingFile{
|
|
278
282
|
color: var(--dark-error);
|
|
279
283
|
}
|
package/src/css/mobileView.css
CHANGED
|
@@ -1,20 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
/********************************************/
|
|
3
|
+
/*************** WIDTH: 1085 *****************/
|
|
4
|
+
/********************************************/
|
|
5
|
+
|
|
1
6
|
@media (max-width: 1085px) {
|
|
2
|
-
.pts-footer-
|
|
7
|
+
.pts-footer-content {
|
|
8
|
+
display:flex;
|
|
3
9
|
height: auto;
|
|
4
10
|
flex-direction: column;
|
|
5
11
|
text-align: left;
|
|
6
12
|
padding: 1.6rem;
|
|
13
|
+
width: 90%;
|
|
7
14
|
}
|
|
8
15
|
|
|
9
16
|
.pts-footer-logo {
|
|
10
17
|
position: static;
|
|
11
18
|
padding-left: 0;
|
|
19
|
+
margin-left: -8px;
|
|
12
20
|
margin-bottom: 1.6rem;
|
|
13
21
|
align-self: flex-start;
|
|
14
22
|
}
|
|
15
23
|
|
|
16
24
|
.pts-footer-linkList {
|
|
17
25
|
width: 100%;
|
|
26
|
+
margin-bottom: 8px;
|
|
27
|
+
margin-left:0;
|
|
18
28
|
}
|
|
19
29
|
|
|
20
30
|
.pts-footer-linkList ul {
|
|
@@ -32,18 +42,80 @@
|
|
|
32
42
|
}
|
|
33
43
|
}
|
|
34
44
|
|
|
45
|
+
/********************************************/
|
|
46
|
+
/*************** WIDTH: 990 *****************/
|
|
47
|
+
/********************************************/
|
|
48
|
+
|
|
49
|
+
@media (max-width: 990px) {
|
|
50
|
+
.filePickLabel .filePickButton {
|
|
51
|
+
font-size: 1.4rem;
|
|
52
|
+
line-height: 14px;
|
|
53
|
+
text-align: center;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
/********************************************/
|
|
59
|
+
/*************** WIDTH: 750 *****************/
|
|
60
|
+
/********************************************/
|
|
35
61
|
@media (max-width: 750px) {
|
|
36
62
|
#main-content {
|
|
37
63
|
padding-top: 1.6rem;
|
|
38
64
|
padding-bottom: 0;
|
|
39
65
|
}
|
|
40
66
|
|
|
67
|
+
.pts-cookieBanner {
|
|
68
|
+
width: fit-content;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.pts-cookieBanner-Links {
|
|
72
|
+
margin-bottom: 1.6rem;
|
|
73
|
+
display: flex;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.pts-cookieBanner a {
|
|
77
|
+
padding-left: 10px;
|
|
78
|
+
position: relative;
|
|
79
|
+
top: 5px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.pts-header-container {
|
|
83
|
+
justify-content: center;
|
|
84
|
+
flex-direction: column;
|
|
85
|
+
padding: 0;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.pts-header-logo-container{
|
|
89
|
+
padding: 13px 0;
|
|
90
|
+
border-bottom: 2px solid #ddd;
|
|
91
|
+
width: 100%;
|
|
92
|
+
text-align: center;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.pts-languageButton{
|
|
96
|
+
margin: 0.4rem 0;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.pts-languageButton span:first-child{
|
|
100
|
+
margin: 0.4rem 0
|
|
101
|
+
}
|
|
102
|
+
|
|
41
103
|
section,
|
|
42
104
|
.pts-form-step-header {
|
|
43
105
|
margin-left: 0;
|
|
44
106
|
margin-right: 0;
|
|
45
107
|
border-radius: 0;
|
|
46
|
-
padding
|
|
108
|
+
padding: 1.6rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.pts-errorSummary-container{
|
|
112
|
+
margin: 0;
|
|
113
|
+
margin-top:1.6rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
#pts-error-summary{
|
|
117
|
+
padding: 1.6rem 0;
|
|
118
|
+
margin: 0;
|
|
47
119
|
}
|
|
48
120
|
|
|
49
121
|
/* --- ??? --- */
|
|
@@ -61,6 +133,9 @@
|
|
|
61
133
|
}
|
|
62
134
|
|
|
63
135
|
/* ---------- STEPPER ---------- */
|
|
136
|
+
.pts-stepper-container{
|
|
137
|
+
height: auto;
|
|
138
|
+
}
|
|
64
139
|
|
|
65
140
|
.pts-stepper-step {
|
|
66
141
|
margin: 0;
|
|
@@ -78,17 +153,13 @@
|
|
|
78
153
|
display: none;
|
|
79
154
|
}
|
|
80
155
|
|
|
81
|
-
.pts-
|
|
82
|
-
|
|
83
|
-
height: 4.2rem;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.pts-errorSummary-container {
|
|
87
|
-
margin-bottom: 1.6rem;
|
|
156
|
+
.pts-stepperDot{
|
|
157
|
+
margin-bottom: 0;
|
|
88
158
|
}
|
|
89
159
|
|
|
90
160
|
.pts-stepperButtons-container {
|
|
91
161
|
margin-right: 1.6rem;
|
|
162
|
+
margin-top: 1.6rem;
|
|
92
163
|
}
|
|
93
164
|
|
|
94
165
|
.pts-radioMultiple-container,
|
|
@@ -101,11 +172,60 @@
|
|
|
101
172
|
box-sizing: border-box;
|
|
102
173
|
}
|
|
103
174
|
|
|
104
|
-
.
|
|
105
|
-
|
|
175
|
+
.inputContainer {
|
|
176
|
+
margin-bottom: 16rem;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.fileItem {
|
|
180
|
+
display: grid !important;
|
|
181
|
+
grid-template-columns: 26px 75% 60px;
|
|
182
|
+
margin: 0;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.DropZoneContainer {
|
|
186
|
+
display: none;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.files-drop-zone {
|
|
190
|
+
padding: 2rem 1rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.pts-addFile-error-container {
|
|
194
|
+
margin: 1.6rem 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.errorMessageAddingFile {
|
|
198
|
+
margin-left: 12px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.pts-editPreviewLink-container{
|
|
202
|
+
width: 50%;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.pts-editPreviewLink-container a{
|
|
206
|
+
font-size: 1.3rem;
|
|
207
|
+
display: block;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.pts-preview-page dl{
|
|
211
|
+
display:flex;
|
|
106
212
|
flex-direction: column;
|
|
107
|
-
|
|
108
|
-
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.pts-preview-page dt,
|
|
216
|
+
.pts-preview-page dd {
|
|
217
|
+
padding: 0;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.pts-preview-page dt{
|
|
221
|
+
border: none;
|
|
222
|
+
padding-bottom: 8px;
|
|
223
|
+
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.pts-preview-page dd{
|
|
227
|
+
margin-bottom: 1.6rem;
|
|
228
|
+
padding-bottom: 4px;
|
|
109
229
|
}
|
|
110
230
|
|
|
111
231
|
.pts-footer-logo {
|
|
@@ -172,12 +292,27 @@
|
|
|
172
292
|
.pts-footer-container {
|
|
173
293
|
margin-top: 1.6rem;
|
|
174
294
|
}
|
|
295
|
+
|
|
296
|
+
.pts-footer-container {
|
|
297
|
+
height: auto;
|
|
298
|
+
flex-direction: column;
|
|
299
|
+
text-align: left;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
|
|
175
303
|
}
|
|
176
304
|
|
|
305
|
+
/********************************************/
|
|
306
|
+
/***************WIDTH: 480 ******************/
|
|
307
|
+
/********************************************/
|
|
177
308
|
@media (max-width: 480px) {
|
|
178
309
|
.pts-stepper-step:not(:last-child)::after {
|
|
179
310
|
left: calc(50% + 2rem) !important;
|
|
180
311
|
width: calc(33.33vw - 7.7rem) !important;
|
|
181
312
|
right: auto !important;
|
|
182
313
|
}
|
|
183
|
-
|
|
314
|
+
|
|
315
|
+
.files-upload {
|
|
316
|
+
padding: 0 0.5rem;
|
|
317
|
+
}
|
|
318
|
+
}
|