ets-fe-ng-sdk 20.3.13 → 20.3.15
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/fesm2022/ets-fe-ng-sdk.mjs +23 -18
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +9 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1354,9 +1354,14 @@ interface IValueLabel<T = string> {
|
|
|
1354
1354
|
*/
|
|
1355
1355
|
interface IConfigImages {
|
|
1356
1356
|
/** Path to favicon image displayed in browser tabs */
|
|
1357
|
-
favicon:
|
|
1357
|
+
favicon: {
|
|
1358
|
+
/** Dark theme logo path */
|
|
1359
|
+
dark: string;
|
|
1360
|
+
/** Light theme logo path */
|
|
1361
|
+
light: string;
|
|
1362
|
+
};
|
|
1358
1363
|
/** Path to watermark image used for document overlays */
|
|
1359
|
-
watermark
|
|
1364
|
+
watermark?: string;
|
|
1360
1365
|
/** Logo image paths for different themes */
|
|
1361
1366
|
logo: {
|
|
1362
1367
|
/** Dark theme logo path */
|
|
@@ -1365,14 +1370,14 @@ interface IConfigImages {
|
|
|
1365
1370
|
light: string;
|
|
1366
1371
|
};
|
|
1367
1372
|
/** Profile picture configuration */
|
|
1368
|
-
pp
|
|
1373
|
+
pp?: {
|
|
1369
1374
|
/** Source path for full-size profile pictures */
|
|
1370
1375
|
src: string;
|
|
1371
1376
|
/** Path for minimized/thumbnail profile pictures */
|
|
1372
1377
|
min: string;
|
|
1373
1378
|
};
|
|
1374
1379
|
/** Other image configuration */
|
|
1375
|
-
other
|
|
1380
|
+
other?: {
|
|
1376
1381
|
/** Source path for full-size images */
|
|
1377
1382
|
src: string;
|
|
1378
1383
|
/** Path for minimized/thumbnail images */
|