optimized-react-component-library-xyz123 0.28.7 → 0.29.1
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.d.mts +20 -2
- package/dist/index.d.ts +20 -2
- package/dist/index.js +299 -255
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +299 -255
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +14 -0
- package/src/css/questions.css +9 -1
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -143,9 +143,19 @@
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.errorDot {
|
|
146
|
+
color: var(--dark-main);
|
|
146
147
|
background-color: var(--dark-error);
|
|
147
148
|
}
|
|
148
149
|
|
|
150
|
+
.pts-validation-error-icon svg rect{
|
|
151
|
+
fill: var(--dark-error);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.pts-validation-error-icon svg path{
|
|
155
|
+
fill: var(--dark-main);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
|
|
149
159
|
.errorText,
|
|
150
160
|
.pts-root-mandatoryAsterisk {
|
|
151
161
|
color: var(--dark-error);
|
|
@@ -317,6 +327,10 @@
|
|
|
317
327
|
color: var(--dark-action);
|
|
318
328
|
}
|
|
319
329
|
|
|
330
|
+
.filePickLabel .filePickButton {
|
|
331
|
+
background: var(--dark-info);
|
|
332
|
+
}
|
|
333
|
+
|
|
320
334
|
/* ---------- EDIT PREVIEW LINK ---------- */
|
|
321
335
|
|
|
322
336
|
.pts-editPreviewLink-container button {
|
package/src/css/questions.css
CHANGED
|
@@ -84,6 +84,15 @@ div.pts-root-question:last-child {
|
|
|
84
84
|
margin-right: 9px;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
.pts-validation-error-icon{
|
|
88
|
+
margin-right: 0.9rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.pts-validation-error-icon svg{
|
|
92
|
+
width: 1.65rem;
|
|
93
|
+
height: 1.65rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
87
96
|
.errorText,
|
|
88
97
|
.pts-root-mandatoryAsterisk {
|
|
89
98
|
color: var(--error);
|
|
@@ -915,7 +924,6 @@ div.pts-root-question:last-child {
|
|
|
915
924
|
/* AddFiles.tsx */ /* SelectedFiles.tsx */
|
|
916
925
|
.lastCol {
|
|
917
926
|
display: flex;
|
|
918
|
-
justify-content: flex-end;
|
|
919
927
|
max-width: 62px;
|
|
920
928
|
padding: 0;
|
|
921
929
|
margin: 0;
|