optimized-react-component-library-xyz123 0.10.7 → 0.10.8
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 +33 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +256 -184
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +256 -185
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/mobileView.css +0 -9
- package/src/css/questions.css +1 -5
- package/src/css/styles.css +11 -36
package/package.json
CHANGED
package/src/css/mobileView.css
CHANGED
|
@@ -88,10 +88,6 @@
|
|
|
88
88
|
padding: 0;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.pts-header-content{
|
|
92
|
-
display:block;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
91
|
.pts-header-logo-container {
|
|
96
92
|
padding: 13px 0;
|
|
97
93
|
border-bottom: 2px solid #ddd;
|
|
@@ -99,11 +95,6 @@
|
|
|
99
95
|
text-align: center;
|
|
100
96
|
}
|
|
101
97
|
|
|
102
|
-
.pts-header-navigation-container{
|
|
103
|
-
align-items: center;
|
|
104
|
-
justify-content: center;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
98
|
.pts-languageButton {
|
|
108
99
|
margin: 0.4rem 0;
|
|
109
100
|
}
|
package/src/css/questions.css
CHANGED
|
@@ -259,7 +259,7 @@ div.pts-root-question:last-child {
|
|
|
259
259
|
/* ---------- TEXTFIELD / TEXTAREA ABOUT ---------- */
|
|
260
260
|
|
|
261
261
|
.pts-textField-container {
|
|
262
|
-
margin-
|
|
262
|
+
margin-top: 8px;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
.pts-about {
|
|
@@ -312,10 +312,6 @@ div.pts-root-question:last-child {
|
|
|
312
312
|
width: 100%;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
.pts-root-question-group-fieldset .pts-root-error{
|
|
316
|
-
margin-bottom: 1.6rem;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
315
|
/* ---------- FILE UPLOAD ---------- */
|
|
320
316
|
/* ---------- FILE UPLOAD ---------- */
|
|
321
317
|
/* ---------- FILE UPLOAD ---------- */
|
package/src/css/styles.css
CHANGED
|
@@ -287,27 +287,6 @@ textarea:focus-visible,
|
|
|
287
287
|
background-color: var(--main);
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
.pts-header-content{
|
|
291
|
-
width: 100%;
|
|
292
|
-
display: flex;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.pts-header-logo-container{
|
|
296
|
-
height:4rem;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.pts-header-logo svg{
|
|
300
|
-
height: 4rem;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.pts-header-navigation-container{
|
|
304
|
-
display: flex;
|
|
305
|
-
flex-direction: column;
|
|
306
|
-
justify-content: flex-end;
|
|
307
|
-
width: 100%;
|
|
308
|
-
align-items: flex-end;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
290
|
.pts-languageButton {
|
|
312
291
|
position: relative;
|
|
313
292
|
display: inline-flex;
|
|
@@ -316,16 +295,15 @@ textarea:focus-visible,
|
|
|
316
295
|
border: transparent;
|
|
317
296
|
color: var(--action);
|
|
318
297
|
cursor: pointer;
|
|
319
|
-
font-size: 1.6rem;
|
|
320
298
|
}
|
|
321
299
|
|
|
322
300
|
.pts-languageButton::after {
|
|
323
301
|
content: "";
|
|
324
302
|
position: absolute;
|
|
325
|
-
left:
|
|
326
|
-
right:
|
|
327
|
-
bottom:
|
|
328
|
-
height: 0.
|
|
303
|
+
left: 0.7rem;
|
|
304
|
+
right: -0.3rem;
|
|
305
|
+
bottom: 0;
|
|
306
|
+
height: 0.2rem;
|
|
329
307
|
background-color: currentColor;
|
|
330
308
|
opacity: 0;
|
|
331
309
|
}
|
|
@@ -335,25 +313,21 @@ textarea:focus-visible,
|
|
|
335
313
|
}
|
|
336
314
|
|
|
337
315
|
.languageIcon{
|
|
338
|
-
position: relative;
|
|
339
316
|
margin-top: 0.3rem;
|
|
340
317
|
padding-right: 0.6rem;
|
|
341
|
-
top: 0.2rem;
|
|
342
318
|
}
|
|
343
319
|
|
|
344
320
|
.pts-languageButton svg {
|
|
345
|
-
width: 1.
|
|
346
|
-
height: 1.
|
|
321
|
+
width: 1.5rem;
|
|
322
|
+
height: 1.5rem;
|
|
347
323
|
}
|
|
348
324
|
|
|
325
|
+
.languageIcon{
|
|
326
|
+
padding-left: 0.6rem;
|
|
327
|
+
}
|
|
349
328
|
|
|
350
329
|
/* ---------- TextBODY ---------- */
|
|
351
330
|
|
|
352
|
-
.pts-textBody-container p{
|
|
353
|
-
margin-bottom: 1.6rem;
|
|
354
|
-
|
|
355
|
-
}
|
|
356
|
-
|
|
357
331
|
.MoreInfoIcon{
|
|
358
332
|
margin-top: 2px;
|
|
359
333
|
}
|
|
@@ -788,7 +762,8 @@ textarea:focus-visible,
|
|
|
788
762
|
transform: rotate(360deg);
|
|
789
763
|
}
|
|
790
764
|
}
|
|
791
|
-
|
|
765
|
+
|
|
766
|
+
|
|
792
767
|
|
|
793
768
|
.cleanPadding {
|
|
794
769
|
padding: 0;
|