dromo-uploader-js 2.1.11 → 2.2.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 +18 -0
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -401,6 +401,7 @@ export type IDeveloperStyleOverrides = {
|
|
|
401
401
|
borderWidth?: string;
|
|
402
402
|
borderColor?: string;
|
|
403
403
|
borderStyle?: string;
|
|
404
|
+
backdropBlur?: boolean;
|
|
404
405
|
};
|
|
405
406
|
primaryButton?: {
|
|
406
407
|
borderRadius?: string;
|
|
@@ -455,6 +456,22 @@ export type IDeveloperStyleOverrides = {
|
|
|
455
456
|
};
|
|
456
457
|
dataTable?: {
|
|
457
458
|
headerFontWeight?: string;
|
|
459
|
+
headerBackgroundColor?: string;
|
|
460
|
+
headerTextColor?: string;
|
|
461
|
+
rowHeaderBackgroundColor?: string;
|
|
462
|
+
rowHeaderTextColor?: string;
|
|
463
|
+
cornerHeaderBackgroundColor?: string;
|
|
464
|
+
cellSelectionBorderColor?: string;
|
|
465
|
+
cellSelectionBackgroundColor?: string;
|
|
466
|
+
accentColor?: string;
|
|
467
|
+
headerActiveBackgroundColor?: string;
|
|
468
|
+
headerActiveTextColor?: string;
|
|
469
|
+
headerHighlightedBackgroundColor?: string;
|
|
470
|
+
headerHighlightedTextColor?: string;
|
|
471
|
+
};
|
|
472
|
+
modalOverlay?: {
|
|
473
|
+
backgroundColor?: string;
|
|
474
|
+
opacity?: string;
|
|
458
475
|
};
|
|
459
476
|
};
|
|
460
477
|
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";
|
|
@@ -490,6 +507,7 @@ export type IDeveloperSettings = {
|
|
|
490
507
|
helpText?: string | null;
|
|
491
508
|
sheetOverride?: string | null;
|
|
492
509
|
sheetSelectionHelpText?: string | null;
|
|
510
|
+
templateDownloadOverrideURL?: string | null;
|
|
493
511
|
};
|
|
494
512
|
matchingStep?: {
|
|
495
513
|
helpText?: string | null;
|