dromo-uploader-js 2.2.0 → 2.3.0
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/interfaces.d.ts +39 -0
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -438,6 +438,9 @@ export type IDeveloperStyleOverrides = {
|
|
|
438
438
|
backgroundColor?: string;
|
|
439
439
|
color?: string;
|
|
440
440
|
outline?: string;
|
|
441
|
+
activeBorderColor?: string;
|
|
442
|
+
acceptBorderColor?: string;
|
|
443
|
+
rejectBorderColor?: string;
|
|
441
444
|
};
|
|
442
445
|
helpText?: {
|
|
443
446
|
textColor?: string;
|
|
@@ -468,11 +471,47 @@ export type IDeveloperStyleOverrides = {
|
|
|
468
471
|
headerActiveTextColor?: string;
|
|
469
472
|
headerHighlightedBackgroundColor?: string;
|
|
470
473
|
headerHighlightedTextColor?: string;
|
|
474
|
+
cellBackgroundColor?: string;
|
|
475
|
+
cellTextColor?: string;
|
|
476
|
+
cellHoverBackgroundColor?: string;
|
|
477
|
+
cellHoverTextColor?: string;
|
|
478
|
+
oddRowBackgroundColor?: string;
|
|
479
|
+
rowSelectedBackgroundColor?: string;
|
|
480
|
+
rowSelectedBorderColor?: string;
|
|
481
|
+
borderColor?: string;
|
|
482
|
+
dividerColor?: string;
|
|
483
|
+
errorCellBackgroundColor?: string;
|
|
484
|
+
errorCellHoverBackgroundColor?: string;
|
|
485
|
+
warningCellBackgroundColor?: string;
|
|
486
|
+
warningCellHoverBackgroundColor?: string;
|
|
487
|
+
infoCellBackgroundColor?: string;
|
|
488
|
+
infoCellHoverBackgroundColor?: string;
|
|
489
|
+
readOnlyCellBackgroundColor?: string;
|
|
490
|
+
readOnlyCellTextColor?: string;
|
|
471
491
|
};
|
|
472
492
|
modalOverlay?: {
|
|
473
493
|
backgroundColor?: string;
|
|
474
494
|
opacity?: string;
|
|
475
495
|
};
|
|
496
|
+
card?: {
|
|
497
|
+
backgroundColor?: string;
|
|
498
|
+
containerBackgroundColor?: string;
|
|
499
|
+
borderColor?: string;
|
|
500
|
+
borderWidth?: string;
|
|
501
|
+
borderRadius?: string;
|
|
502
|
+
textColor?: string;
|
|
503
|
+
expandedBackgroundColor?: string;
|
|
504
|
+
iconColor?: string;
|
|
505
|
+
};
|
|
506
|
+
dropdown?: {
|
|
507
|
+
backgroundColor?: string;
|
|
508
|
+
borderColor?: string;
|
|
509
|
+
textColor?: string;
|
|
510
|
+
errorBorderColor?: string;
|
|
511
|
+
menuBackgroundColor?: string;
|
|
512
|
+
optionHoverBackgroundColor?: string;
|
|
513
|
+
optionSelectedBackgroundColor?: string;
|
|
514
|
+
};
|
|
476
515
|
};
|
|
477
516
|
export type TLocaleShorthand = "bn" | "en" | "hr" | "ja" | "nl" | "ru" | "uk" | "cs" | "es" | "hu" | "ko" | "no" | "sv" | "vi" | "da" | "fi" | "id" | "lt" | "pl" | "sw" | "zh_CN" | "de" | "fr" | "is" | "lv" | "pt" | "th" | "zh_TW" | "el" | "hi" | "it" | "ms" | "ro" | "tr";
|
|
478
517
|
export type IDeveloperSettings = {
|