optimized-react-component-library-xyz123 0.1.113 → 0.1.115

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "optimized-react-component-library-xyz123",
3
- "version": "0.1.113",
3
+ "version": "0.1.115",
4
4
  "description": "A modern React component library using TypeScript with React 19 support.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -236,6 +236,55 @@
236
236
  .textfield-about{
237
237
  color: var(--dark-info);
238
238
  }
239
+
240
+ /* ---------- ADD FILE QUESTION ---------- */
241
+ .filePickText{
242
+ color: var(--dark-text)!important;
243
+ }
244
+
245
+ .filePickButton {
246
+ color: var(--dark-main) !important;
247
+ }
248
+
249
+ .DropZone{
250
+ background-color:var(--dark-main);
251
+ color: var(--dark-text);
252
+ border-color: var(--dark-info);
253
+ }
254
+
255
+ .DropZone::before {
256
+ border-color: var(--dark-info);
257
+ }
258
+
259
+ .DropZone:hover {
260
+ background-color:var(--dark-background);
261
+ }
262
+
263
+ .DropZone svg {
264
+ background: var(--dark-action);
265
+ border-color: var(--dark-action);
266
+ }
267
+
268
+ .DropZone svg path{
269
+ fill: var(--dark-main);
270
+ }
271
+
272
+ .selectedFilesLinkButton,
273
+ .error-close{
274
+ color: var(--dark-action);
275
+ }
276
+
277
+ .errorMessageAddingFile{
278
+ color: var(--dark-error);
279
+ }
280
+
281
+ .selectedFilesLinkButton:hover,
282
+ .error-close:hover{
283
+ color: var(--dark-action);
284
+ }
285
+
286
+
287
+
239
288
 
240
289
  /* ---------- EDIT PREVIEW LINK ---------- */
241
290