@dao42/d42paas-front 0.7.57 → 0.7.60
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/DaoPaaS.es.js +4675 -9633
- package/dist/DaoPaaS.umd.js +671 -616
- package/dist/editor.d.ts +14 -1
- package/dist/style.css +2 -2
- package/package.json +11 -27
package/dist/editor.d.ts
CHANGED
|
@@ -325,6 +325,12 @@ export interface BrowserProps {
|
|
|
325
325
|
* The open icon color
|
|
326
326
|
*/
|
|
327
327
|
openIconColor?: string;
|
|
328
|
+
|
|
329
|
+
inputTextColor?: string;
|
|
330
|
+
inputBgColor?: string;
|
|
331
|
+
bgColor?: string;
|
|
332
|
+
navBgColor?: string;
|
|
333
|
+
navBorder?: string;
|
|
328
334
|
}
|
|
329
335
|
|
|
330
336
|
/**
|
|
@@ -366,7 +372,7 @@ export interface Options {
|
|
|
366
372
|
/**
|
|
367
373
|
* The service worker origin
|
|
368
374
|
*/
|
|
369
|
-
serviceWorkerOrigin
|
|
375
|
+
serviceWorkerOrigin?: string;
|
|
370
376
|
|
|
371
377
|
/**
|
|
372
378
|
*
|
|
@@ -497,7 +503,14 @@ export class DaoPaaS {
|
|
|
497
503
|
* @param {unFollowUser} args
|
|
498
504
|
*
|
|
499
505
|
*/
|
|
506
|
+
dispose(): Promise<string>;
|
|
500
507
|
|
|
508
|
+
/**
|
|
509
|
+
*
|
|
510
|
+
* Replaying method for global calling.
|
|
511
|
+
* @param {unFollowUser} args
|
|
512
|
+
*
|
|
513
|
+
*/
|
|
501
514
|
unFollowUser(user: UserInfo, callback: (userInfo: UserInfo) => void): void;
|
|
502
515
|
|
|
503
516
|
/**
|