optimized-react-component-library-xyz123 0.23.8 → 0.23.9
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 +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/index.js +503 -476
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +503 -476
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +9 -5
- package/src/css/questions.css +5 -0
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -143,10 +143,18 @@
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.errorDot {
|
|
146
|
-
color: var(--dark-main);
|
|
147
146
|
background-color: var(--dark-error);
|
|
148
147
|
}
|
|
149
148
|
|
|
149
|
+
.pts-validation-error-icon svg{
|
|
150
|
+
fill: var(--dark-error);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.pts-validation-error-icon svg path{
|
|
154
|
+
fill: var(--dark-main);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
|
|
150
158
|
.errorText,
|
|
151
159
|
.pts-root-mandatoryAsterisk {
|
|
152
160
|
color: var(--dark-error);
|
|
@@ -318,10 +326,6 @@
|
|
|
318
326
|
color: var(--dark-action);
|
|
319
327
|
}
|
|
320
328
|
|
|
321
|
-
.filePickLabel .filePickButton {
|
|
322
|
-
background: var(--dark-info);
|
|
323
|
-
}
|
|
324
|
-
|
|
325
329
|
/* ---------- EDIT PREVIEW LINK ---------- */
|
|
326
330
|
|
|
327
331
|
.pts-editPreviewLink-container button {
|
package/src/css/questions.css
CHANGED
|
@@ -84,6 +84,10 @@ div.pts-root-question:last-child {
|
|
|
84
84
|
margin-right: 9px;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
.pts-validation-error-icon{
|
|
88
|
+
margin-right: 9px;
|
|
89
|
+
}
|
|
90
|
+
|
|
87
91
|
.errorText,
|
|
88
92
|
.pts-root-mandatoryAsterisk {
|
|
89
93
|
color: var(--error);
|
|
@@ -915,6 +919,7 @@ div.pts-root-question:last-child {
|
|
|
915
919
|
/* AddFiles.tsx */ /* SelectedFiles.tsx */
|
|
916
920
|
.lastCol {
|
|
917
921
|
display: flex;
|
|
922
|
+
justify-content: flex-end;
|
|
918
923
|
max-width: 62px;
|
|
919
924
|
padding: 0;
|
|
920
925
|
margin: 0;
|